diff --git a/data/Visibility/test_dem_read.py b/data/Visibility/test_dem_read.py new file mode 100644 index 0000000..11c2be6 --- /dev/null +++ b/data/Visibility/test_dem_read.py @@ -0,0 +1,19 @@ +#%% +from pyrad.io.read_data_dem import read_geotiff_data +f = read_geotiff_data('swisstopo_DEM.tif') + +#%% +def _proj4_str_to_dict(proj4str): + # COnverts proj4 string to dict as can be used by part + return dict(item.split("=") for item in proj4str.strip(' ').split("+") + if len(item.split('=')) == 2) + +from osgeo import gdal, osr +raster = gdal.Open('swisstopo_DEM.tif') +prj = raster.GetProjection() +try: + srs = osr.SpatialReference(wkt=prj) +except RuntimeError: + pass +projparams = _proj4_str_to_dict(srs.ExportToProj4()) + diff --git a/pyrad_config/00_plot_vol/jma_plot_vol_loc.txt b/pyrad_config/00_plot_vol/jma_plot_vol_loc.txt index b0645d8..52fa27b 100644 --- a/pyrad_config/00_plot_vol/jma_plot_vol_loc.txt +++ b/pyrad_config/00_plot_vol/jma_plot_vol_loc.txt @@ -40,7 +40,16 @@ ScanList STRARR 14 ScanPeriod INT 5 # identifier of each data type in file name -DataTypeID STRUCT 7 +DataTypeIDInFiles STRUCT 7 + dBZ STRING DBZH + ZDR STRING ZDR + RhoHV STRING RHOHV + uPhiDP STRING PHIDP + KDP STRING KDP + V STRING VEL + W STRING WIDTH + +DataTypeIDInFilenames STRUCT 7 dBZ STRING ref ZDR STRING zdr RhoHV STRING rhv @@ -49,7 +58,6 @@ DataTypeID STRUCT 7 V STRING vel W STRING vsw - # Image config ppiImageConfig STRUCT 6 xsize FLOAT 10. # image size [inches] (default dots per inch (dpi):72) @@ -79,4 +87,4 @@ ppiMapImageConfig STRUCT 8 mapres STRING 10m maps STRARR 2 countries - coastlines \ No newline at end of file + coastlines diff --git a/pyrad_config/00_plot_vol/jma_plot_vol_prod.txt b/pyrad_config/00_plot_vol/jma_plot_vol_prod.txt index 241aaba..4fb7142 100644 --- a/pyrad_config/00_plot_vol/jma_plot_vol_prod.txt +++ b/pyrad_config/00_plot_vol/jma_plot_vol_prod.txt @@ -4,9 +4,9 @@ # List of datasets to generate. # The detailed specification of each dataset is given below. -dataSetList STRARR 1 +dataSetList STRARR 2 dBZ - + RhoHV # dBZ # ZDR # RhoHV @@ -22,7 +22,7 @@ dataSetList STRARR 1 # ============================================================================ dBZ STRUCT 3 type STRING RAW - datatype STRING MFCFRADIAL:dBZ,D{}-F{%Y%m%d%H%M%S} + datatype STRING CFRADIAL:dBZ,D{}-F{%Y%m%d%H%M%S} products STRUCT 8 PPI_EL00 STRUCT 3 type STRING PPI_IMAGE @@ -63,7 +63,7 @@ dBZ STRUCT 3 ZDR STRUCT 3 type STRING RAW - datatype STRING MFCFRADIAL:ZDR,D{}-F{%Y%m%d%H%M%S} + datatype STRING CFRADIAL:ZDR,D{}-F{%Y%m%d%H%M%S} products STRUCT 5 PPI_EL00 STRUCT 5 type STRING PPI_IMAGE @@ -96,7 +96,7 @@ ZDR STRUCT 3 RhoHV STRUCT 3 type STRING RAW - datatype STRING MFCFRADIAL:RhoHV,D{}-F{%Y%m%d%H%M%S} + datatype STRING CFRADIAL:RhoHV,D{}-F{%Y%m%d%H%M%S} products STRUCT 5 PPI_EL00 STRUCT 5 type STRING PPI_IMAGE @@ -128,7 +128,7 @@ RhoHV STRUCT 3 PhiDP STRUCT 3 type STRING RAW - datatype STRING MFCFRADIAL:PhiDP,D{}-F{%Y%m%d%H%M%S} + datatype STRING CFRADIAL:PhiDP,D{}-F{%Y%m%d%H%M%S} products STRUCT 5 PPI_EL00 STRUCT 3 type STRING PPI_IMAGE @@ -153,7 +153,7 @@ PhiDP STRUCT 3 KDP STRUCT 3 type STRING RAW - datatype STRING MFCFRADIAL:KDP,D{}-F{%Y%m%d%H%M%S} + datatype STRING CFRADIAL:KDP,D{}-F{%Y%m%d%H%M%S} products STRUCT 5 PPI_EL00 STRUCT 3 type STRING PPI_IMAGE @@ -178,7 +178,7 @@ KDP STRUCT 3 V STRUCT 3 type STRING RAW - datatype STRING MFCFRADIAL:V,D{}-F{%Y%m%d%H%M%S} + datatype STRING CFRADIAL:V,D{}-F{%Y%m%d%H%M%S} products STRUCT 5 PPI_EL00 STRUCT 5 type STRING PPI_IMAGE @@ -209,7 +209,7 @@ V STRUCT 3 W STRUCT 3 type STRING RAW - datatype STRING MFCFRADIAL:W,D{}-F{%Y%m%d%H%M%S} + datatype STRING CFRADIAL:W,D{}-F{%Y%m%d%H%M%S} products STRUCT 5 PPI_EL00 STRUCT 5 type STRING PPI_IMAGE @@ -247,8 +247,8 @@ W STRUCT 3 dBZ_ZDR STRUCT 3 type STRING RAW datatype STRARR 2 - MFCFRADIAL:dBZ,D{}-F{%Y%m%d%H%M%S} - MFCFRADIAL:ZDR,D{}-F{%Y%m%d%H%M%S} + CFRADIAL:dBZ,D{}-F{%Y%m%d%H%M%S} + CFRADIAL:ZDR,D{}-F{%Y%m%d%H%M%S} products STRUCT 2 PPI_EL00 STRUCT 5 type STRING PPI_CONTOUR_OVERPLOT @@ -269,8 +269,8 @@ dBZ_ZDR STRUCT 3 dBZ_RhoHV STRUCT 3 type STRING RAW datatype STRARR 2 - MFCFRADIAL:dBZ,D{}-F{%Y%m%d%H%M%S} - MFCFRADIAL:RhoHV,D{}-F{%Y%m%d%H%M%S} + CFRADIAL:dBZ,D{}-F{%Y%m%d%H%M%S} + CFRADIAL:RhoHV,D{}-F{%Y%m%d%H%M%S} products STRUCT 2 PPI_EL00 STRUCT 5 type STRING PPI_CONTOUR_OVERPLOT diff --git a/pyrad_config/01_grid/jma_grid_loc.txt b/pyrad_config/01_grid/jma_grid_loc.txt index 985909e..01a2bb0 100644 --- a/pyrad_config/01_grid/jma_grid_loc.txt +++ b/pyrad_config/01_grid/jma_grid_loc.txt @@ -40,14 +40,14 @@ ScanList STRARR 14 ScanPeriod INT 5 # identifier of each data type in file name -DataTypeID STRUCT 7 - dBZ STRING ref - ZDR STRING zdr - RhoHV STRING rhv - PhiDP STRING psd - KDP STRING kdp - V STRING vel - W STRING vsw +DataTypeIDInFiles STRUCT 7 + dBZ STRING DBZH + ZDR STRING ZDR + RhoHV STRING RHOHV + uPhiDP STRING PHIDP + KDP STRING KDP + V STRING VEL + W STRING WIDTH # Image config @@ -77,4 +77,4 @@ gridMapImageConfig STRUCT 9 mapres STRING 10m maps STRARR 2 countries - coastlines \ No newline at end of file + coastlines diff --git a/pyrad_config/01_grid/jma_grid_prod.txt b/pyrad_config/01_grid/jma_grid_prod.txt index 645a90e..c0b63c7 100644 --- a/pyrad_config/01_grid/jma_grid_prod.txt +++ b/pyrad_config/01_grid/jma_grid_prod.txt @@ -18,8 +18,8 @@ dataSetList STRARR 4 grid STRUCT 12 type STRING VOL2GRID datatype STRARR 2 - MFCFRADIAL:dBZ,D{}-F{%Y%m%d%H%M%S} - MFCFRADIAL:RhoHV,D{}-F{%Y%m%d%H%M%S} + CFRADIAL:dBZ,D{}-F{%Y%m%d%H%M%S} + CFRADIAL:RhoHV,D{}-F{%Y%m%d%H%M%S} xmin FLOAT -30000 xmax FLOAT 80000 ymin FLOAT -30000 diff --git a/pyrad_config/02_clutter_filter/mf_pam_mtcy_filter_loc.txt b/pyrad_config/02_clutter_filter/mf_pam_mtcy_filter_loc.txt index 089502c..617a68e 100644 --- a/pyrad_config/02_clutter_filter/mf_pam_mtcy_filter_loc.txt +++ b/pyrad_config/02_clutter_filter/mf_pam_mtcy_filter_loc.txt @@ -23,6 +23,17 @@ ScanList STRARR 1 # Repetition time of the scans [min] ScanPeriod INT 15 +path_convention STRING ODIM + +DataTypeIDInFiles STRUCT 7 + dBuZ STRING TH + ZDR STRING ZDR + RhoHV STRING RHOHV + uPhiDP STRING PHIDP + KDP STRING KDP + V STRING VEL + W STRING WIDTH + # Image config ppiImageConfig STRUCT 6 diff --git a/pyrad_config/02_clutter_filter/mf_pam_mtcy_filter_prod.txt b/pyrad_config/02_clutter_filter/mf_pam_mtcy_filter_prod.txt index cd67802..4196078 100644 --- a/pyrad_config/02_clutter_filter/mf_pam_mtcy_filter_prod.txt +++ b/pyrad_config/02_clutter_filter/mf_pam_mtcy_filter_prod.txt @@ -18,10 +18,10 @@ dataSetList STRARR 6 echoID STRUCT 4 type STRING SAN datatype STRARR 4 - MFCFRADIAL:dBuZ,D{%Y-%m-%d}-F{%Y%m%d%H%M} - MFCFRADIAL:RhoHV,D{%Y-%m-%d}-F{%Y%m%d%H%M} - MFCFRADIAL:ZDR,D{%Y-%m-%d}-F{%Y%m%d%H%M} - MFCFRADIAL:uPhiDP,D{%Y-%m-%d}-F{%Y%m%d%H%M} + CFRADIAL:dBuZ,D{%Y-%m-%d}-F{%Y%m%d%H%M} + CFRADIAL:RhoHV,D{%Y-%m-%d}-F{%Y%m%d%H%M} + CFRADIAL:ZDR,D{%Y-%m-%d}-F{%Y%m%d%H%M} + CFRADIAL:uPhiDP,D{%Y-%m-%d}-F{%Y%m%d%H%M} MAKE_GLOBAL INT 1 products STRUCT 1 PPI_EL00_A STRUCT 3 @@ -32,11 +32,11 @@ echoID STRUCT 4 echoFilter STRUCT 3 type STRING ECHO_FILTER datatype STRARR 5 - MFCFRADIAL:echoID,D{%Y-%m-%d}-F{%Y%m%d%H%M} - MFCFRADIAL:dBuZ,D{%Y-%m-%d}-F{%Y%m%d%H%M} - MFCFRADIAL:RhoHV,D{%Y-%m-%d}-F{%Y%m%d%H%M} - MFCFRADIAL:ZDR,D{%Y-%m-%d}-F{%Y%m%d%H%M} - MFCFRADIAL:uPhiDP,D{%Y-%m-%d}-F{%Y%m%d%H%M} + CFRADIAL:echoID,D{%Y-%m-%d}-F{%Y%m%d%H%M} + CFRADIAL:dBuZ,D{%Y-%m-%d}-F{%Y%m%d%H%M} + CFRADIAL:RhoHV,D{%Y-%m-%d}-F{%Y%m%d%H%M} + CFRADIAL:ZDR,D{%Y-%m-%d}-F{%Y%m%d%H%M} + CFRADIAL:uPhiDP,D{%Y-%m-%d}-F{%Y%m%d%H%M} MAKE_GLOBAL INT 1 @@ -77,4 +77,4 @@ PhiDPc STRUCT 3 PPI_EL00_A STRUCT 3 type STRING PPI_IMAGE voltype STRING PhiDPc - anglenr INT 0 \ No newline at end of file + anglenr INT 0 diff --git a/pyrad_config/03_phidp_kdp/mf_pam_mtcy_kdp_loc.txt b/pyrad_config/03_phidp_kdp/mf_pam_mtcy_kdp_loc.txt index cf6deb3..c24cb69 100644 --- a/pyrad_config/03_phidp_kdp/mf_pam_mtcy_kdp_loc.txt +++ b/pyrad_config/03_phidp_kdp/mf_pam_mtcy_kdp_loc.txt @@ -19,6 +19,18 @@ ScanList STRARR 1 # Radar frequency frequency FLOAT 5.6E9 +path_convention STRING ODIM + +DataTypeIDInFiles STRUCT 7 + dBuZ STRING TH + ZDR STRING ZDR + RhoHV STRING RHOHV + uPhiDP STRING PHIDP + KDP STRING KDP + V STRING VEL + W STRING WIDTH + + # scan strategy # cycle 1: 90/5 /2.2/1.2/0.7/0.4 # cycle 2: 7/3.9/2.2/1.2/0.7/0.4 diff --git a/pyrad_config/03_phidp_kdp/mf_pam_mtcy_kdp_prod.txt b/pyrad_config/03_phidp_kdp/mf_pam_mtcy_kdp_prod.txt index 4f1e667..efd4038 100644 --- a/pyrad_config/03_phidp_kdp/mf_pam_mtcy_kdp_prod.txt +++ b/pyrad_config/03_phidp_kdp/mf_pam_mtcy_kdp_prod.txt @@ -23,7 +23,7 @@ dataSetList STRARR 9 # GRIB format as reference value H_ISO0_GRIB STRUCT 3 type STRING ISO0_GRIB - datatype STRING MFCFRADIAL:uPhiDP,D{%Y-%m-%d}-F{%Y%m%d%H%M} + datatype STRING CFRADIAL:uPhiDP,D{%Y-%m-%d}-F{%Y%m%d%H%M} MAKE_GLOBAL INT 1 products STRUCT 1 PPI_EL00_A STRUCT 5 @@ -40,20 +40,20 @@ H_ISO0_GRIB STRUCT 3 echoID STRUCT 3 type STRING SAN datatype STRARR 4 - MFCFRADIAL:dBuZ,D{%Y-%m-%d}-F{%Y%m%d%H%M} - MFCFRADIAL:RhoHV,D{%Y-%m-%d}-F{%Y%m%d%H%M} - MFCFRADIAL:ZDR,D{%Y-%m-%d}-F{%Y%m%d%H%M} - MFCFRADIAL:uPhiDP,D{%Y-%m-%d}-F{%Y%m%d%H%M} + CFRADIAL:dBuZ,D{%Y-%m-%d}-F{%Y%m%d%H%M} + CFRADIAL:RhoHV,D{%Y-%m-%d}-F{%Y%m%d%H%M} + CFRADIAL:ZDR,D{%Y-%m-%d}-F{%Y%m%d%H%M} + CFRADIAL:uPhiDP,D{%Y-%m-%d}-F{%Y%m%d%H%M} MAKE_GLOBAL INT 1 echoFilter STRUCT 3 type STRING ECHO_FILTER datatype STRARR 5 - MFCFRADIAL:echoID,D{%Y-%m-%d}-F{%Y%m%d%H%M} - MFCFRADIAL:dBuZ,D{%Y-%m-%d}-F{%Y%m%d%H%M} - MFCFRADIAL:uPhiDP,D{%Y-%m-%d}-F{%Y%m%d%H%M} - MFCFRADIAL:RhoHV,D{%Y-%m-%d}-F{%Y%m%d%H%M} - MFCFRADIAL:ZDR,D{%Y-%m-%d}-F{%Y%m%d%H%M} + CFRADIAL:echoID,D{%Y-%m-%d}-F{%Y%m%d%H%M} + CFRADIAL:dBuZ,D{%Y-%m-%d}-F{%Y%m%d%H%M} + CFRADIAL:uPhiDP,D{%Y-%m-%d}-F{%Y%m%d%H%M} + CFRADIAL:RhoHV,D{%Y-%m-%d}-F{%Y%m%d%H%M} + CFRADIAL:ZDR,D{%Y-%m-%d}-F{%Y%m%d%H%M} MAKE_GLOBAL INT 1 diff --git a/pyrad_config/04_hydroclass/mf_odim_coll_hydro_loc.txt b/pyrad_config/04_hydroclass/mf_odim_coll_hydro_loc.txt index 8b7253f..7244858 100644 --- a/pyrad_config/04_hydroclass/mf_odim_coll_hydro_loc.txt +++ b/pyrad_config/04_hydroclass/mf_odim_coll_hydro_loc.txt @@ -32,6 +32,16 @@ CosmoForecasted INT 24 radar_beam_width_h FLOAT 1.25 frequency FLOAT 2.81e9 +path_convention STRING ODIM + +DataTypeIDInFiles STRUCT 7 + dBuZ STRING TH + ZDR STRING ZDR + RhoHV STRING RHOHV + uPhiDP STRING PHIDP + KDP STRING KDP + V STRING VEL + W STRING WIDTH # Image config ppiImageConfig STRUCT 7 diff --git a/pyrad_config/05_ml/mf_odim_coll_ml_loc.txt b/pyrad_config/05_ml/mf_odim_coll_ml_loc.txt index 24b4b6a..61dfa98 100644 --- a/pyrad_config/05_ml/mf_odim_coll_ml_loc.txt +++ b/pyrad_config/05_ml/mf_odim_coll_ml_loc.txt @@ -32,6 +32,17 @@ CosmoForecasted INT 24 radar_beam_width_h FLOAT 1.25 frequency FLOAT 2.81e9 +path_convention STRING ODIM + +DataTypeIDInFiles STRUCT 7 + dBuZ STRING TH + ZDR STRING ZDR + RhoHV STRING RHOHV + uPhiDP STRING PHIDP + KDP STRING KDP + V STRING VEL + W STRING WIDTH + # Image config ppiImageConfig STRUCT 7 diff --git a/pyrad_config/07_VAD/mf_pag_mtcy_doppler_loc.txt b/pyrad_config/07_VAD/mf_pag_mtcy_doppler_loc.txt index bab0e98..014572a 100644 --- a/pyrad_config/07_VAD/mf_pag_mtcy_doppler_loc.txt +++ b/pyrad_config/07_VAD/mf_pag_mtcy_doppler_loc.txt @@ -24,6 +24,12 @@ ScanList STRARR 1 # Repetition time of the scans [min] ScanPeriod INT 15 +path_convention STRING ODIM + +DataTypeIDInFiles STRUCT 1 + V STRING VRAD + + # Image config ppiImageConfig STRUCT 6 xsize FLOAT 10. # image size [inches] (default dots per inch (dpi):72) diff --git a/pyrad_config/07_VAD/mf_pag_mtcy_doppler_prod.txt b/pyrad_config/07_VAD/mf_pag_mtcy_doppler_prod.txt index d2cb521..b027a97 100644 --- a/pyrad_config/07_VAD/mf_pag_mtcy_doppler_prod.txt +++ b/pyrad_config/07_VAD/mf_pag_mtcy_doppler_prod.txt @@ -14,7 +14,7 @@ dataSetList STRARR 1 VAD STRUCT 3 type STRING VAD datatype STRARR 1 - MFCFRADIAL:V,D{%Y-%m-%d}-F{%Y%m%d%H%M} + CFRADIAL:V,D{%Y-%m-%d}-F{%Y%m%d%H%M} products STRUCT 1 profile STRUCT 6 type STRING WIND_PROFILE diff --git a/pyrad_outputs/00_plot_vol/2023-08-01/RhoHV/BSCOPE_EL00/20230801200000_b-scope_RAW_RhoHV_ang0.6.png b/pyrad_outputs/00_plot_vol/2023-08-01/RhoHV/BSCOPE_EL00/20230801200000_b-scope_RAW_RhoHV_ang0.6.png new file mode 100644 index 0000000..9dd9729 Binary files /dev/null and b/pyrad_outputs/00_plot_vol/2023-08-01/RhoHV/BSCOPE_EL00/20230801200000_b-scope_RAW_RhoHV_ang0.6.png differ diff --git a/pyrad_outputs/00_plot_vol/2023-08-01/RhoHV/HIST/20230801200000_histogram_RAW_RhoHV.png b/pyrad_outputs/00_plot_vol/2023-08-01/RhoHV/HIST/20230801200000_histogram_RAW_RhoHV.png new file mode 100644 index 0000000..e47fc86 Binary files /dev/null and b/pyrad_outputs/00_plot_vol/2023-08-01/RhoHV/HIST/20230801200000_histogram_RAW_RhoHV.png differ diff --git a/pyrad_outputs/00_plot_vol/2023-08-01/RhoHV/PPI_EL00/20230801200000_ppi_RAW_RhoHV_el0.6.png b/pyrad_outputs/00_plot_vol/2023-08-01/RhoHV/PPI_EL00/20230801200000_ppi_RAW_RhoHV_el0.6.png new file mode 100644 index 0000000..153c816 Binary files /dev/null and b/pyrad_outputs/00_plot_vol/2023-08-01/RhoHV/PPI_EL00/20230801200000_ppi_RAW_RhoHV_el0.6.png differ diff --git a/pyrad_outputs/00_plot_vol/2023-08-01/RhoHV/PPI_EL01/20230801200000_ppi_RAW_RhoHV_el1.2.png b/pyrad_outputs/00_plot_vol/2023-08-01/RhoHV/PPI_EL01/20230801200000_ppi_RAW_RhoHV_el1.2.png new file mode 100644 index 0000000..d6c9e9e Binary files /dev/null and b/pyrad_outputs/00_plot_vol/2023-08-01/RhoHV/PPI_EL01/20230801200000_ppi_RAW_RhoHV_el1.2.png differ diff --git a/pyrad_outputs/00_plot_vol/2023-08-01/RhoHV/RHI_AZ000/20230801200000_rhi_RAW_RhoHV_az0.0.png b/pyrad_outputs/00_plot_vol/2023-08-01/RhoHV/RHI_AZ000/20230801200000_rhi_RAW_RhoHV_az0.0.png new file mode 100644 index 0000000..6aad2e8 Binary files /dev/null and b/pyrad_outputs/00_plot_vol/2023-08-01/RhoHV/RHI_AZ000/20230801200000_rhi_RAW_RhoHV_az0.0.png differ diff --git a/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/AZ000_ELE00_6/20230801200000_ALONG_RNG_RAW_dBZ.png b/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/AZ000_ELE00_6/20230801200000_ALONG_RNG_RAW_dBZ.png index b818a37..5b63d8b 100644 Binary files a/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/AZ000_ELE00_6/20230801200000_ALONG_RNG_RAW_dBZ.png and b/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/AZ000_ELE00_6/20230801200000_ALONG_RNG_RAW_dBZ.png differ diff --git a/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/BSCOPE_EL00/20230801200000_b-scope_RAW_dBZ_ang0.6.png b/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/BSCOPE_EL00/20230801200000_b-scope_RAW_dBZ_ang0.6.png index 259846e..b46c435 100644 Binary files a/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/BSCOPE_EL00/20230801200000_b-scope_RAW_dBZ_ang0.6.png and b/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/BSCOPE_EL00/20230801200000_b-scope_RAW_dBZ_ang0.6.png differ diff --git a/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/HIST/20230801200000_histogram_RAW_dBZ.png b/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/HIST/20230801200000_histogram_RAW_dBZ.png index 30c83ea..7b2427c 100644 Binary files a/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/HIST/20230801200000_histogram_RAW_dBZ.png and b/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/HIST/20230801200000_histogram_RAW_dBZ.png differ diff --git a/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/PPI_EL00/20230801200000_ppi_RAW_dBZ_el0.6.png b/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/PPI_EL00/20230801200000_ppi_RAW_dBZ_el0.6.png index 0ca716e..6338ab7 100644 Binary files a/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/PPI_EL00/20230801200000_ppi_RAW_dBZ_el0.6.png and b/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/PPI_EL00/20230801200000_ppi_RAW_dBZ_el0.6.png differ diff --git a/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/PPI_EL01/20230801200000_ppi_RAW_dBZ_el1.2.png b/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/PPI_EL01/20230801200000_ppi_RAW_dBZ_el1.2.png index 92be037..e5ff802 100644 Binary files a/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/PPI_EL01/20230801200000_ppi_RAW_dBZ_el1.2.png and b/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/PPI_EL01/20230801200000_ppi_RAW_dBZ_el1.2.png differ diff --git a/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/PPI_MAP_EL00/20230801200000_ppi_map_RAW_dBZ_el0.6.png b/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/PPI_MAP_EL00/20230801200000_ppi_map_RAW_dBZ_el0.6.png index 8c56b4e..566253b 100644 Binary files a/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/PPI_MAP_EL00/20230801200000_ppi_map_RAW_dBZ_el0.6.png and b/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/PPI_MAP_EL00/20230801200000_ppi_map_RAW_dBZ_el0.6.png differ diff --git a/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/PPI_MAP_EL01/20230801200000_ppi_map_RAW_dBZ_el1.2.png b/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/PPI_MAP_EL01/20230801200000_ppi_map_RAW_dBZ_el1.2.png index ecfc893..3ba5a00 100644 Binary files a/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/PPI_MAP_EL01/20230801200000_ppi_map_RAW_dBZ_el1.2.png and b/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/PPI_MAP_EL01/20230801200000_ppi_map_RAW_dBZ_el1.2.png differ diff --git a/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/RHI_AZ000/20230801200000_rhi_RAW_dBZ_az0.0.png b/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/RHI_AZ000/20230801200000_rhi_RAW_dBZ_az0.0.png index 746aa36..b711bf3 100644 Binary files a/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/RHI_AZ000/20230801200000_rhi_RAW_dBZ_az0.0.png and b/pyrad_outputs/00_plot_vol/2023-08-01/dBZ/RHI_AZ000/20230801200000_rhi_RAW_dBZ_az0.0.png differ diff --git a/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/HIST/20230801200000_histogram_RAW_GRID_RhoHV.png b/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/HIST/20230801200000_histogram_RAW_GRID_RhoHV.png index c7b5c81..ac5e7d2 100644 Binary files a/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/HIST/20230801200000_histogram_RAW_GRID_RhoHV.png and b/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/HIST/20230801200000_histogram_RAW_GRID_RhoHV.png differ diff --git a/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/LAT/20230801200000_lat_slice_RAW_GRID_RhoHV_lat26.50.png b/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/LAT/20230801200000_lat_slice_RAW_GRID_RhoHV_lat26.50.png index 8fa3399..8912a41 100644 Binary files a/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/LAT/20230801200000_lat_slice_RAW_GRID_RhoHV_lat26.50.png and b/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/LAT/20230801200000_lat_slice_RAW_GRID_RhoHV_lat26.50.png differ diff --git a/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/LATLON/20230801200000_lonlat_RAW_GRID_RhoHV_lon-lat1_127.50-26.00_lon-lat2_128.50-27.00.png b/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/LATLON/20230801200000_lonlat_RAW_GRID_RhoHV_lon-lat1_127.50-26.00_lon-lat2_128.50-27.00.png index 1e695af..b8ff3c2 100644 Binary files a/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/LATLON/20230801200000_lonlat_RAW_GRID_RhoHV_lon-lat1_127.50-26.00_lon-lat2_128.50-27.00.png and b/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/LATLON/20230801200000_lonlat_RAW_GRID_RhoHV_lon-lat1_127.50-26.00_lon-lat2_128.50-27.00.png differ diff --git a/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/LON/20230801200000_lon_slice_RAW_GRID_RhoHV_lon128.00.png b/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/LON/20230801200000_lon_slice_RAW_GRID_RhoHV_lon128.00.png index e31150e..e3bb25d 100644 Binary files a/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/LON/20230801200000_lon_slice_RAW_GRID_RhoHV_lon128.00.png and b/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/LON/20230801200000_lon_slice_RAW_GRID_RhoHV_lon128.00.png differ diff --git a/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/SURFACE_l0/20230801200000_surface_RAW_GRID_RhoHV_l0.png b/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/SURFACE_l0/20230801200000_surface_RAW_GRID_RhoHV_l0.png index 3e5ef4f..a55c689 100644 Binary files a/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/SURFACE_l0/20230801200000_surface_RAW_GRID_RhoHV_l0.png and b/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/SURFACE_l0/20230801200000_surface_RAW_GRID_RhoHV_l0.png differ diff --git a/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/SURFACE_l2_CONTOUR/20230801200000_surface_RAW_GRID_RhoHV_l2.png b/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/SURFACE_l2_CONTOUR/20230801200000_surface_RAW_GRID_RhoHV_l2.png index 3209e70..b4ba3b4 100644 Binary files a/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/SURFACE_l2_CONTOUR/20230801200000_surface_RAW_GRID_RhoHV_l2.png and b/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/SURFACE_l2_CONTOUR/20230801200000_surface_RAW_GRID_RhoHV_l2.png differ diff --git a/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/SURFACE_l2_RAW/20230801200000_surface_RAW_GRID_RhoHV_l2.png b/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/SURFACE_l2_RAW/20230801200000_surface_RAW_GRID_RhoHV_l2.png index 8a01cb3..61eee1c 100644 Binary files a/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/SURFACE_l2_RAW/20230801200000_surface_RAW_GRID_RhoHV_l2.png and b/pyrad_outputs/01_grid/2023-08-01/RhoHV_grid/SURFACE_l2_RAW/20230801200000_surface_RAW_GRID_RhoHV_l2.png differ diff --git a/pyrad_outputs/01_grid/2023-08-01/dBZ_RhoHV_grid/SURFACE_l2/20230801200000_surface-contour_RAW_GRID_dBZ-RhoHV_l2.png b/pyrad_outputs/01_grid/2023-08-01/dBZ_RhoHV_grid/SURFACE_l2/20230801200000_surface-contour_RAW_GRID_dBZ-RhoHV_l2.png index b3d3b76..97c4570 100644 Binary files a/pyrad_outputs/01_grid/2023-08-01/dBZ_RhoHV_grid/SURFACE_l2/20230801200000_surface-contour_RAW_GRID_dBZ-RhoHV_l2.png and b/pyrad_outputs/01_grid/2023-08-01/dBZ_RhoHV_grid/SURFACE_l2/20230801200000_surface-contour_RAW_GRID_dBZ-RhoHV_l2.png differ diff --git a/pyrad_outputs/01_grid/2023-08-01/dBZ_RhoHV_grid/SURFACE_l2_OVERPLOT/20230801200000_surface_overplot_RAW_GRID_dBZ-RhoHV_l2.png b/pyrad_outputs/01_grid/2023-08-01/dBZ_RhoHV_grid/SURFACE_l2_OVERPLOT/20230801200000_surface_overplot_RAW_GRID_dBZ-RhoHV_l2.png index 5826ae2..4bd0072 100644 Binary files a/pyrad_outputs/01_grid/2023-08-01/dBZ_RhoHV_grid/SURFACE_l2_OVERPLOT/20230801200000_surface_overplot_RAW_GRID_dBZ-RhoHV_l2.png and b/pyrad_outputs/01_grid/2023-08-01/dBZ_RhoHV_grid/SURFACE_l2_OVERPLOT/20230801200000_surface_overplot_RAW_GRID_dBZ-RhoHV_l2.png differ diff --git a/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/HIST/20230801200000_histogram_RAW_GRID_dBZ.png b/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/HIST/20230801200000_histogram_RAW_GRID_dBZ.png index 3952310..2b5754c 100644 Binary files a/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/HIST/20230801200000_histogram_RAW_GRID_dBZ.png and b/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/HIST/20230801200000_histogram_RAW_GRID_dBZ.png differ diff --git a/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/LAT/20230801200000_lat_slice_RAW_GRID_dBZ_lat26.50.png b/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/LAT/20230801200000_lat_slice_RAW_GRID_dBZ_lat26.50.png index a39fa0c..9e3163d 100644 Binary files a/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/LAT/20230801200000_lat_slice_RAW_GRID_dBZ_lat26.50.png and b/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/LAT/20230801200000_lat_slice_RAW_GRID_dBZ_lat26.50.png differ diff --git a/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/LATLON/20230801200000_lonlat_RAW_GRID_dBZ_lon-lat1_127.50-26.00_lon-lat2_128.50-27.00.png b/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/LATLON/20230801200000_lonlat_RAW_GRID_dBZ_lon-lat1_127.50-26.00_lon-lat2_128.50-27.00.png index 2129300..05e3ce6 100644 Binary files a/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/LATLON/20230801200000_lonlat_RAW_GRID_dBZ_lon-lat1_127.50-26.00_lon-lat2_128.50-27.00.png and b/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/LATLON/20230801200000_lonlat_RAW_GRID_dBZ_lon-lat1_127.50-26.00_lon-lat2_128.50-27.00.png differ diff --git a/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/LON/20230801200000_lon_slice_RAW_GRID_dBZ_lon128.00.png b/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/LON/20230801200000_lon_slice_RAW_GRID_dBZ_lon128.00.png index cd88224..3c0672e 100644 Binary files a/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/LON/20230801200000_lon_slice_RAW_GRID_dBZ_lon128.00.png and b/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/LON/20230801200000_lon_slice_RAW_GRID_dBZ_lon128.00.png differ diff --git a/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/SURFACE_l2/20230801200000_surface_RAW_GRID_dBZ_l2.png b/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/SURFACE_l2/20230801200000_surface_RAW_GRID_dBZ_l2.png index 66043bd..35202e4 100644 Binary files a/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/SURFACE_l2/20230801200000_surface_RAW_GRID_dBZ_l2.png and b/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/SURFACE_l2/20230801200000_surface_RAW_GRID_dBZ_l2.png differ diff --git a/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/SURFACE_l2_CONTOUR/20230801200000_surface_RAW_GRID_dBZ_l2.png b/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/SURFACE_l2_CONTOUR/20230801200000_surface_RAW_GRID_dBZ_l2.png index e8d8047..29fc942 100644 Binary files a/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/SURFACE_l2_CONTOUR/20230801200000_surface_RAW_GRID_dBZ_l2.png and b/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/SURFACE_l2_CONTOUR/20230801200000_surface_RAW_GRID_dBZ_l2.png differ diff --git a/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/SURFACE_l2_RAW/20230801200000_surface_RAW_GRID_dBZ_l2.png b/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/SURFACE_l2_RAW/20230801200000_surface_RAW_GRID_dBZ_l2.png index 500b0dd..12d0459 100644 Binary files a/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/SURFACE_l2_RAW/20230801200000_surface_RAW_GRID_dBZ_l2.png and b/pyrad_outputs/01_grid/2023-08-01/dBZ_grid/SURFACE_l2_RAW/20230801200000_surface_RAW_GRID_dBZ_l2.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114101500_ppi_RAW_PhiDPc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114101500_ppi_RAW_PhiDPc_el0.4.png index 62624e2..da8ffd0 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114101500_ppi_RAW_PhiDPc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114101500_ppi_RAW_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114103000_ppi_RAW_PhiDPc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114103000_ppi_RAW_PhiDPc_el0.4.png index b0b9281..675feb7 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114103000_ppi_RAW_PhiDPc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114103000_ppi_RAW_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114104500_ppi_RAW_PhiDPc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114104500_ppi_RAW_PhiDPc_el0.4.png index 3629a4f..43b7844 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114104500_ppi_RAW_PhiDPc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114104500_ppi_RAW_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114110000_ppi_RAW_PhiDPc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114110000_ppi_RAW_PhiDPc_el0.4.png index 5ba9554..cc9553f 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114110000_ppi_RAW_PhiDPc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114110000_ppi_RAW_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114111500_ppi_RAW_PhiDPc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114111500_ppi_RAW_PhiDPc_el0.4.png index fd42a80..bf8612f 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114111500_ppi_RAW_PhiDPc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114111500_ppi_RAW_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114113000_ppi_RAW_PhiDPc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114113000_ppi_RAW_PhiDPc_el0.4.png index 004c57d..0e73e8c 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114113000_ppi_RAW_PhiDPc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114113000_ppi_RAW_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114114500_ppi_RAW_PhiDPc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114114500_ppi_RAW_PhiDPc_el0.4.png index cecb211..59a49b7 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114114500_ppi_RAW_PhiDPc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114114500_ppi_RAW_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114120000_ppi_RAW_PhiDPc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114120000_ppi_RAW_PhiDPc_el0.4.png index fbc7432..d4b9a5f 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114120000_ppi_RAW_PhiDPc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/PhiDPc/PPI_EL00_A/20210114120000_ppi_RAW_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114101500_ppi_RAW_RhoHVc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114101500_ppi_RAW_RhoHVc_el0.4.png index 07dcd0e..60266d3 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114101500_ppi_RAW_RhoHVc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114101500_ppi_RAW_RhoHVc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114103000_ppi_RAW_RhoHVc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114103000_ppi_RAW_RhoHVc_el0.4.png index 7ee2267..b33d50c 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114103000_ppi_RAW_RhoHVc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114103000_ppi_RAW_RhoHVc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114104500_ppi_RAW_RhoHVc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114104500_ppi_RAW_RhoHVc_el0.4.png index f4da955..4793b51 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114104500_ppi_RAW_RhoHVc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114104500_ppi_RAW_RhoHVc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114110000_ppi_RAW_RhoHVc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114110000_ppi_RAW_RhoHVc_el0.4.png index 9da6203..8a90fac 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114110000_ppi_RAW_RhoHVc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114110000_ppi_RAW_RhoHVc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114111500_ppi_RAW_RhoHVc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114111500_ppi_RAW_RhoHVc_el0.4.png index b5bd68d..612ad14 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114111500_ppi_RAW_RhoHVc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114111500_ppi_RAW_RhoHVc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114113000_ppi_RAW_RhoHVc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114113000_ppi_RAW_RhoHVc_el0.4.png index a5df581..3301d37 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114113000_ppi_RAW_RhoHVc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114113000_ppi_RAW_RhoHVc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114114500_ppi_RAW_RhoHVc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114114500_ppi_RAW_RhoHVc_el0.4.png index d2d7b34..e4341ca 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114114500_ppi_RAW_RhoHVc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114114500_ppi_RAW_RhoHVc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114120000_ppi_RAW_RhoHVc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114120000_ppi_RAW_RhoHVc_el0.4.png index 6c00fb6..a29b1ba 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114120000_ppi_RAW_RhoHVc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/RhoHVc/PPI_EL00_A/20210114120000_ppi_RAW_RhoHVc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114101500_ppi_RAW_ZDRc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114101500_ppi_RAW_ZDRc_el0.4.png index 23a0289..ea32b3a 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114101500_ppi_RAW_ZDRc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114101500_ppi_RAW_ZDRc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114103000_ppi_RAW_ZDRc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114103000_ppi_RAW_ZDRc_el0.4.png index 5dda121..fc8b9af 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114103000_ppi_RAW_ZDRc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114103000_ppi_RAW_ZDRc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114104500_ppi_RAW_ZDRc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114104500_ppi_RAW_ZDRc_el0.4.png index 5a9aa95..4bbdb5d 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114104500_ppi_RAW_ZDRc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114104500_ppi_RAW_ZDRc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114110000_ppi_RAW_ZDRc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114110000_ppi_RAW_ZDRc_el0.4.png index 4eb6fa4..a28c8ac 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114110000_ppi_RAW_ZDRc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114110000_ppi_RAW_ZDRc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114111500_ppi_RAW_ZDRc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114111500_ppi_RAW_ZDRc_el0.4.png index 4cdee66..78236e3 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114111500_ppi_RAW_ZDRc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114111500_ppi_RAW_ZDRc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114113000_ppi_RAW_ZDRc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114113000_ppi_RAW_ZDRc_el0.4.png index 1ac9936..1506d81 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114113000_ppi_RAW_ZDRc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114113000_ppi_RAW_ZDRc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114114500_ppi_RAW_ZDRc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114114500_ppi_RAW_ZDRc_el0.4.png index 5fc41ad..a44c5f6 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114114500_ppi_RAW_ZDRc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114114500_ppi_RAW_ZDRc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114120000_ppi_RAW_ZDRc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114120000_ppi_RAW_ZDRc_el0.4.png index 7631a9d..1bab8fa 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114120000_ppi_RAW_ZDRc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/ZDRc/PPI_EL00_A/20210114120000_ppi_RAW_ZDRc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114101500_ppi_RAW_dBZc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114101500_ppi_RAW_dBZc_el0.4.png index 34183c3..174d7f5 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114101500_ppi_RAW_dBZc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114101500_ppi_RAW_dBZc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114103000_ppi_RAW_dBZc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114103000_ppi_RAW_dBZc_el0.4.png index f91f419..6d8fce4 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114103000_ppi_RAW_dBZc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114103000_ppi_RAW_dBZc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114104500_ppi_RAW_dBZc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114104500_ppi_RAW_dBZc_el0.4.png index 6da99b2..077b4b1 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114104500_ppi_RAW_dBZc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114104500_ppi_RAW_dBZc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114110000_ppi_RAW_dBZc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114110000_ppi_RAW_dBZc_el0.4.png index ec890ef..176dfee 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114110000_ppi_RAW_dBZc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114110000_ppi_RAW_dBZc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114111500_ppi_RAW_dBZc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114111500_ppi_RAW_dBZc_el0.4.png index 69d742a..3220a98 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114111500_ppi_RAW_dBZc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114111500_ppi_RAW_dBZc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114113000_ppi_RAW_dBZc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114113000_ppi_RAW_dBZc_el0.4.png index 5c75748..fce0979 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114113000_ppi_RAW_dBZc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114113000_ppi_RAW_dBZc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114114500_ppi_RAW_dBZc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114114500_ppi_RAW_dBZc_el0.4.png index 1e1a97b..e750916 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114114500_ppi_RAW_dBZc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114114500_ppi_RAW_dBZc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114120000_ppi_RAW_dBZc_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114120000_ppi_RAW_dBZc_el0.4.png index 0b4fd30..2fee870 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114120000_ppi_RAW_dBZc_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/dBZc/PPI_EL00_A/20210114120000_ppi_RAW_dBZc_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114101500_ppi_SAN_echoID_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114101500_ppi_SAN_echoID_el0.4.png index b579aa4..ee941cc 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114101500_ppi_SAN_echoID_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114101500_ppi_SAN_echoID_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114103000_ppi_SAN_echoID_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114103000_ppi_SAN_echoID_el0.4.png index 9e0629f..d49f6a9 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114103000_ppi_SAN_echoID_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114103000_ppi_SAN_echoID_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114104500_ppi_SAN_echoID_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114104500_ppi_SAN_echoID_el0.4.png index 3e1bc0b..2126dde 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114104500_ppi_SAN_echoID_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114104500_ppi_SAN_echoID_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114110000_ppi_SAN_echoID_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114110000_ppi_SAN_echoID_el0.4.png index f4ace29..d690dad 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114110000_ppi_SAN_echoID_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114110000_ppi_SAN_echoID_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114111500_ppi_SAN_echoID_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114111500_ppi_SAN_echoID_el0.4.png index df569cf..81934b9 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114111500_ppi_SAN_echoID_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114111500_ppi_SAN_echoID_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114113000_ppi_SAN_echoID_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114113000_ppi_SAN_echoID_el0.4.png index b621e88..be3e860 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114113000_ppi_SAN_echoID_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114113000_ppi_SAN_echoID_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114114500_ppi_SAN_echoID_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114114500_ppi_SAN_echoID_el0.4.png index 266562c..901086d 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114114500_ppi_SAN_echoID_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114114500_ppi_SAN_echoID_el0.4.png differ diff --git a/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114120000_ppi_SAN_echoID_el0.4.png b/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114120000_ppi_SAN_echoID_el0.4.png index 3ae71a7..3f91118 100644 Binary files a/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114120000_ppi_SAN_echoID_el0.4.png and b/pyrad_outputs/02_clutter_filter/2021-01-14/echoID/PPI_EL00_A/20210114120000_ppi_SAN_echoID_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114101500_ppi_ATTENUATION_Adp_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114101500_ppi_ATTENUATION_Adp_el0.4.png index 7ec6fe5..93bf84c 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114101500_ppi_ATTENUATION_Adp_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114101500_ppi_ATTENUATION_Adp_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114103000_ppi_ATTENUATION_Adp_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114103000_ppi_ATTENUATION_Adp_el0.4.png index 62edbcb..216b89b 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114103000_ppi_ATTENUATION_Adp_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114103000_ppi_ATTENUATION_Adp_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114104500_ppi_ATTENUATION_Adp_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114104500_ppi_ATTENUATION_Adp_el0.4.png index 2bad79c..1cd9665 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114104500_ppi_ATTENUATION_Adp_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114104500_ppi_ATTENUATION_Adp_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114110000_ppi_ATTENUATION_Adp_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114110000_ppi_ATTENUATION_Adp_el0.4.png index 421760e..241250e 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114110000_ppi_ATTENUATION_Adp_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114110000_ppi_ATTENUATION_Adp_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114111500_ppi_ATTENUATION_Adp_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114111500_ppi_ATTENUATION_Adp_el0.4.png index 79b1d0f..7a523ab 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114111500_ppi_ATTENUATION_Adp_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114111500_ppi_ATTENUATION_Adp_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114113000_ppi_ATTENUATION_Adp_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114113000_ppi_ATTENUATION_Adp_el0.4.png deleted file mode 100644 index aa99072..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114113000_ppi_ATTENUATION_Adp_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114114500_ppi_ATTENUATION_Adp_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114114500_ppi_ATTENUATION_Adp_el0.4.png deleted file mode 100644 index 884c70d..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114114500_ppi_ATTENUATION_Adp_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114120000_ppi_ATTENUATION_Adp_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114120000_ppi_ATTENUATION_Adp_el0.4.png deleted file mode 100644 index 9551076..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Adp/20210114120000_ppi_ATTENUATION_Adp_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114101500_ppi_ATTENUATION_Ah_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114101500_ppi_ATTENUATION_Ah_el0.4.png index d1a771a..d448edd 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114101500_ppi_ATTENUATION_Ah_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114101500_ppi_ATTENUATION_Ah_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114103000_ppi_ATTENUATION_Ah_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114103000_ppi_ATTENUATION_Ah_el0.4.png index 4ae4057..2080d7b 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114103000_ppi_ATTENUATION_Ah_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114103000_ppi_ATTENUATION_Ah_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114104500_ppi_ATTENUATION_Ah_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114104500_ppi_ATTENUATION_Ah_el0.4.png index 4c82d62..1251aeb 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114104500_ppi_ATTENUATION_Ah_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114104500_ppi_ATTENUATION_Ah_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114110000_ppi_ATTENUATION_Ah_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114110000_ppi_ATTENUATION_Ah_el0.4.png index 50b2938..2be82de 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114110000_ppi_ATTENUATION_Ah_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114110000_ppi_ATTENUATION_Ah_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114111500_ppi_ATTENUATION_Ah_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114111500_ppi_ATTENUATION_Ah_el0.4.png index 831f61c..062063d 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114111500_ppi_ATTENUATION_Ah_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114111500_ppi_ATTENUATION_Ah_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114113000_ppi_ATTENUATION_Ah_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114113000_ppi_ATTENUATION_Ah_el0.4.png deleted file mode 100644 index af7ce30..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114113000_ppi_ATTENUATION_Ah_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114114500_ppi_ATTENUATION_Ah_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114114500_ppi_ATTENUATION_Ah_el0.4.png deleted file mode 100644 index 158c60d..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114114500_ppi_ATTENUATION_Ah_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114120000_ppi_ATTENUATION_Ah_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114120000_ppi_ATTENUATION_Ah_el0.4.png deleted file mode 100644 index 685e78f..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_Ah/20210114120000_ppi_ATTENUATION_Ah_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114101500_ppi_ATTENUATION_PIA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114101500_ppi_ATTENUATION_PIA_el0.4.png index 82967ca..022ab1f 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114101500_ppi_ATTENUATION_PIA_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114101500_ppi_ATTENUATION_PIA_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114103000_ppi_ATTENUATION_PIA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114103000_ppi_ATTENUATION_PIA_el0.4.png index 4454b26..bb183d8 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114103000_ppi_ATTENUATION_PIA_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114103000_ppi_ATTENUATION_PIA_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114104500_ppi_ATTENUATION_PIA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114104500_ppi_ATTENUATION_PIA_el0.4.png index f626aa6..7b24dca 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114104500_ppi_ATTENUATION_PIA_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114104500_ppi_ATTENUATION_PIA_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114110000_ppi_ATTENUATION_PIA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114110000_ppi_ATTENUATION_PIA_el0.4.png index 83ec3fa..b7d9d9a 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114110000_ppi_ATTENUATION_PIA_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114110000_ppi_ATTENUATION_PIA_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114111500_ppi_ATTENUATION_PIA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114111500_ppi_ATTENUATION_PIA_el0.4.png index 93e9fbf..3833fbb 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114111500_ppi_ATTENUATION_PIA_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114111500_ppi_ATTENUATION_PIA_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114113000_ppi_ATTENUATION_PIA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114113000_ppi_ATTENUATION_PIA_el0.4.png deleted file mode 100644 index f51276b..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114113000_ppi_ATTENUATION_PIA_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114114500_ppi_ATTENUATION_PIA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114114500_ppi_ATTENUATION_PIA_el0.4.png deleted file mode 100644 index 54daa23..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114114500_ppi_ATTENUATION_PIA_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114120000_ppi_ATTENUATION_PIA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114120000_ppi_ATTENUATION_PIA_el0.4.png deleted file mode 100644 index 02d3f4b..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIA/20210114120000_ppi_ATTENUATION_PIA_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114101500_ppi_ATTENUATION_PIDA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114101500_ppi_ATTENUATION_PIDA_el0.4.png index c36d3fa..378ba36 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114101500_ppi_ATTENUATION_PIDA_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114101500_ppi_ATTENUATION_PIDA_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114103000_ppi_ATTENUATION_PIDA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114103000_ppi_ATTENUATION_PIDA_el0.4.png index 8e9e524..8a14af3 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114103000_ppi_ATTENUATION_PIDA_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114103000_ppi_ATTENUATION_PIDA_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114104500_ppi_ATTENUATION_PIDA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114104500_ppi_ATTENUATION_PIDA_el0.4.png index 554db8c..436e1fc 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114104500_ppi_ATTENUATION_PIDA_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114104500_ppi_ATTENUATION_PIDA_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114110000_ppi_ATTENUATION_PIDA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114110000_ppi_ATTENUATION_PIDA_el0.4.png index a0e338c..8f8bba8 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114110000_ppi_ATTENUATION_PIDA_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114110000_ppi_ATTENUATION_PIDA_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114111500_ppi_ATTENUATION_PIDA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114111500_ppi_ATTENUATION_PIDA_el0.4.png index 5714403..19beb23 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114111500_ppi_ATTENUATION_PIDA_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114111500_ppi_ATTENUATION_PIDA_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114113000_ppi_ATTENUATION_PIDA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114113000_ppi_ATTENUATION_PIDA_el0.4.png deleted file mode 100644 index 0571101..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114113000_ppi_ATTENUATION_PIDA_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114114500_ppi_ATTENUATION_PIDA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114114500_ppi_ATTENUATION_PIDA_el0.4.png deleted file mode 100644 index 69c3159..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114114500_ppi_ATTENUATION_PIDA_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114120000_ppi_ATTENUATION_PIDA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114120000_ppi_ATTENUATION_PIDA_el0.4.png deleted file mode 100644 index ff4a445..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_PIDA/20210114120000_ppi_ATTENUATION_PIDA_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114101500_ppi_ATTENUATION_ZDRc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114101500_ppi_ATTENUATION_ZDRc_el0.4.png index 1bfc159..517628b 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114101500_ppi_ATTENUATION_ZDRc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114101500_ppi_ATTENUATION_ZDRc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114103000_ppi_ATTENUATION_ZDRc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114103000_ppi_ATTENUATION_ZDRc_el0.4.png index a3119b8..2360289 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114103000_ppi_ATTENUATION_ZDRc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114103000_ppi_ATTENUATION_ZDRc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114104500_ppi_ATTENUATION_ZDRc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114104500_ppi_ATTENUATION_ZDRc_el0.4.png index b47f541..4b7c37e 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114104500_ppi_ATTENUATION_ZDRc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114104500_ppi_ATTENUATION_ZDRc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114110000_ppi_ATTENUATION_ZDRc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114110000_ppi_ATTENUATION_ZDRc_el0.4.png index a9f186b..1a44079 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114110000_ppi_ATTENUATION_ZDRc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114110000_ppi_ATTENUATION_ZDRc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114111500_ppi_ATTENUATION_ZDRc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114111500_ppi_ATTENUATION_ZDRc_el0.4.png index 2fc781b..d05d762 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114111500_ppi_ATTENUATION_ZDRc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114111500_ppi_ATTENUATION_ZDRc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114113000_ppi_ATTENUATION_ZDRc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114113000_ppi_ATTENUATION_ZDRc_el0.4.png deleted file mode 100644 index 35b389c..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114113000_ppi_ATTENUATION_ZDRc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114114500_ppi_ATTENUATION_ZDRc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114114500_ppi_ATTENUATION_ZDRc_el0.4.png deleted file mode 100644 index 80be026..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114114500_ppi_ATTENUATION_ZDRc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114120000_ppi_ATTENUATION_ZDRc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114120000_ppi_ATTENUATION_ZDRc_el0.4.png deleted file mode 100644 index c6be8a3..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_ZDRc/20210114120000_ppi_ATTENUATION_ZDRc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114101500_ppi_ATTENUATION_dBZc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114101500_ppi_ATTENUATION_dBZc_el0.4.png index 9e6fbf7..3c72614 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114101500_ppi_ATTENUATION_dBZc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114101500_ppi_ATTENUATION_dBZc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114103000_ppi_ATTENUATION_dBZc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114103000_ppi_ATTENUATION_dBZc_el0.4.png index c2c9300..2594734 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114103000_ppi_ATTENUATION_dBZc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114103000_ppi_ATTENUATION_dBZc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114104500_ppi_ATTENUATION_dBZc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114104500_ppi_ATTENUATION_dBZc_el0.4.png index 6564b2f..aa79a3e 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114104500_ppi_ATTENUATION_dBZc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114104500_ppi_ATTENUATION_dBZc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114110000_ppi_ATTENUATION_dBZc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114110000_ppi_ATTENUATION_dBZc_el0.4.png index 775754a..5023fe5 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114110000_ppi_ATTENUATION_dBZc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114110000_ppi_ATTENUATION_dBZc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114111500_ppi_ATTENUATION_dBZc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114111500_ppi_ATTENUATION_dBZc_el0.4.png index fde5f9c..78f2645 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114111500_ppi_ATTENUATION_dBZc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114111500_ppi_ATTENUATION_dBZc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114113000_ppi_ATTENUATION_dBZc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114113000_ppi_ATTENUATION_dBZc_el0.4.png deleted file mode 100644 index 30396f4..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114113000_ppi_ATTENUATION_dBZc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114114500_ppi_ATTENUATION_dBZc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114114500_ppi_ATTENUATION_dBZc_el0.4.png deleted file mode 100644 index c1559b3..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114114500_ppi_ATTENUATION_dBZc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114120000_ppi_ATTENUATION_dBZc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114120000_ppi_ATTENUATION_dBZc_el0.4.png deleted file mode 100644 index 30f897e..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_Philin/PPI_EL00_A_dBZc/20210114120000_ppi_ATTENUATION_dBZc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114101500_ppi_ATTENUATION_Adp_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114101500_ppi_ATTENUATION_Adp_el0.4.png index 731258a..49abb7e 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114101500_ppi_ATTENUATION_Adp_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114101500_ppi_ATTENUATION_Adp_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114103000_ppi_ATTENUATION_Adp_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114103000_ppi_ATTENUATION_Adp_el0.4.png index be189c1..9648ae2 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114103000_ppi_ATTENUATION_Adp_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114103000_ppi_ATTENUATION_Adp_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114104500_ppi_ATTENUATION_Adp_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114104500_ppi_ATTENUATION_Adp_el0.4.png index 12f5aa9..927531e 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114104500_ppi_ATTENUATION_Adp_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114104500_ppi_ATTENUATION_Adp_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114110000_ppi_ATTENUATION_Adp_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114110000_ppi_ATTENUATION_Adp_el0.4.png index 8c6a34b..19c89d4 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114110000_ppi_ATTENUATION_Adp_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114110000_ppi_ATTENUATION_Adp_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114111500_ppi_ATTENUATION_Adp_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114111500_ppi_ATTENUATION_Adp_el0.4.png index 7c61ab7..2b32047 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114111500_ppi_ATTENUATION_Adp_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114111500_ppi_ATTENUATION_Adp_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114113000_ppi_ATTENUATION_Adp_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114113000_ppi_ATTENUATION_Adp_el0.4.png deleted file mode 100644 index 070738f..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114113000_ppi_ATTENUATION_Adp_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114114500_ppi_ATTENUATION_Adp_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114114500_ppi_ATTENUATION_Adp_el0.4.png deleted file mode 100644 index 3660a50..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114114500_ppi_ATTENUATION_Adp_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114120000_ppi_ATTENUATION_Adp_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114120000_ppi_ATTENUATION_Adp_el0.4.png deleted file mode 100644 index b3f53fd..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Adp/20210114120000_ppi_ATTENUATION_Adp_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114101500_ppi_ATTENUATION_Ah_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114101500_ppi_ATTENUATION_Ah_el0.4.png index 2ba0ea2..29d5d49 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114101500_ppi_ATTENUATION_Ah_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114101500_ppi_ATTENUATION_Ah_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114103000_ppi_ATTENUATION_Ah_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114103000_ppi_ATTENUATION_Ah_el0.4.png index 17035d3..1945c5e 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114103000_ppi_ATTENUATION_Ah_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114103000_ppi_ATTENUATION_Ah_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114104500_ppi_ATTENUATION_Ah_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114104500_ppi_ATTENUATION_Ah_el0.4.png index 24f9c33..064e260 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114104500_ppi_ATTENUATION_Ah_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114104500_ppi_ATTENUATION_Ah_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114110000_ppi_ATTENUATION_Ah_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114110000_ppi_ATTENUATION_Ah_el0.4.png index e3dd96e..5be7f5d 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114110000_ppi_ATTENUATION_Ah_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114110000_ppi_ATTENUATION_Ah_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114111500_ppi_ATTENUATION_Ah_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114111500_ppi_ATTENUATION_Ah_el0.4.png index 07920a0..8159671 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114111500_ppi_ATTENUATION_Ah_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114111500_ppi_ATTENUATION_Ah_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114113000_ppi_ATTENUATION_Ah_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114113000_ppi_ATTENUATION_Ah_el0.4.png deleted file mode 100644 index 9de3bcc..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114113000_ppi_ATTENUATION_Ah_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114114500_ppi_ATTENUATION_Ah_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114114500_ppi_ATTENUATION_Ah_el0.4.png deleted file mode 100644 index 4004d06..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114114500_ppi_ATTENUATION_Ah_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114120000_ppi_ATTENUATION_Ah_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114120000_ppi_ATTENUATION_Ah_el0.4.png deleted file mode 100644 index 85c2214..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_Ah/20210114120000_ppi_ATTENUATION_Ah_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114101500_ppi_ATTENUATION_PIA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114101500_ppi_ATTENUATION_PIA_el0.4.png index 0c39567..dfb66a2 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114101500_ppi_ATTENUATION_PIA_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114101500_ppi_ATTENUATION_PIA_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114103000_ppi_ATTENUATION_PIA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114103000_ppi_ATTENUATION_PIA_el0.4.png index 0fe799b..8983ef0 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114103000_ppi_ATTENUATION_PIA_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114103000_ppi_ATTENUATION_PIA_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114104500_ppi_ATTENUATION_PIA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114104500_ppi_ATTENUATION_PIA_el0.4.png index 31800c3..bbdb9a6 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114104500_ppi_ATTENUATION_PIA_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114104500_ppi_ATTENUATION_PIA_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114110000_ppi_ATTENUATION_PIA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114110000_ppi_ATTENUATION_PIA_el0.4.png index a544993..2642ab1 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114110000_ppi_ATTENUATION_PIA_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114110000_ppi_ATTENUATION_PIA_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114111500_ppi_ATTENUATION_PIA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114111500_ppi_ATTENUATION_PIA_el0.4.png index 98802e6..098b3be 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114111500_ppi_ATTENUATION_PIA_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114111500_ppi_ATTENUATION_PIA_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114113000_ppi_ATTENUATION_PIA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114113000_ppi_ATTENUATION_PIA_el0.4.png deleted file mode 100644 index f932473..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114113000_ppi_ATTENUATION_PIA_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114114500_ppi_ATTENUATION_PIA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114114500_ppi_ATTENUATION_PIA_el0.4.png deleted file mode 100644 index dff7344..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114114500_ppi_ATTENUATION_PIA_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114120000_ppi_ATTENUATION_PIA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114120000_ppi_ATTENUATION_PIA_el0.4.png deleted file mode 100644 index 5436eb1..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIA/20210114120000_ppi_ATTENUATION_PIA_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114101500_ppi_ATTENUATION_PIDA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114101500_ppi_ATTENUATION_PIDA_el0.4.png index 99fb61b..0178534 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114101500_ppi_ATTENUATION_PIDA_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114101500_ppi_ATTENUATION_PIDA_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114103000_ppi_ATTENUATION_PIDA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114103000_ppi_ATTENUATION_PIDA_el0.4.png index a65073c..437f732 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114103000_ppi_ATTENUATION_PIDA_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114103000_ppi_ATTENUATION_PIDA_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114104500_ppi_ATTENUATION_PIDA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114104500_ppi_ATTENUATION_PIDA_el0.4.png index 69ff15f..9104258 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114104500_ppi_ATTENUATION_PIDA_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114104500_ppi_ATTENUATION_PIDA_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114110000_ppi_ATTENUATION_PIDA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114110000_ppi_ATTENUATION_PIDA_el0.4.png index 4751364..6fd3854 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114110000_ppi_ATTENUATION_PIDA_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114110000_ppi_ATTENUATION_PIDA_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114111500_ppi_ATTENUATION_PIDA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114111500_ppi_ATTENUATION_PIDA_el0.4.png index 1286f03..f9f56ff 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114111500_ppi_ATTENUATION_PIDA_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114111500_ppi_ATTENUATION_PIDA_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114113000_ppi_ATTENUATION_PIDA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114113000_ppi_ATTENUATION_PIDA_el0.4.png deleted file mode 100644 index 567b395..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114113000_ppi_ATTENUATION_PIDA_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114114500_ppi_ATTENUATION_PIDA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114114500_ppi_ATTENUATION_PIDA_el0.4.png deleted file mode 100644 index 090308f..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114114500_ppi_ATTENUATION_PIDA_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114120000_ppi_ATTENUATION_PIDA_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114120000_ppi_ATTENUATION_PIDA_el0.4.png deleted file mode 100644 index a5d1e30..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_PIDA/20210114120000_ppi_ATTENUATION_PIDA_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114101500_ppi_ATTENUATION_ZDRc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114101500_ppi_ATTENUATION_ZDRc_el0.4.png index 6bf762e..e9c076e 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114101500_ppi_ATTENUATION_ZDRc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114101500_ppi_ATTENUATION_ZDRc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114103000_ppi_ATTENUATION_ZDRc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114103000_ppi_ATTENUATION_ZDRc_el0.4.png index 9f6832f..46a7841 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114103000_ppi_ATTENUATION_ZDRc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114103000_ppi_ATTENUATION_ZDRc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114104500_ppi_ATTENUATION_ZDRc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114104500_ppi_ATTENUATION_ZDRc_el0.4.png index 7403ebf..bb8c5e2 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114104500_ppi_ATTENUATION_ZDRc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114104500_ppi_ATTENUATION_ZDRc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114110000_ppi_ATTENUATION_ZDRc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114110000_ppi_ATTENUATION_ZDRc_el0.4.png index 14fa7f1..fe59c10 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114110000_ppi_ATTENUATION_ZDRc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114110000_ppi_ATTENUATION_ZDRc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114111500_ppi_ATTENUATION_ZDRc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114111500_ppi_ATTENUATION_ZDRc_el0.4.png index 6fb68ea..bb0cefe 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114111500_ppi_ATTENUATION_ZDRc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114111500_ppi_ATTENUATION_ZDRc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114113000_ppi_ATTENUATION_ZDRc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114113000_ppi_ATTENUATION_ZDRc_el0.4.png deleted file mode 100644 index 75dc5b3..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114113000_ppi_ATTENUATION_ZDRc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114114500_ppi_ATTENUATION_ZDRc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114114500_ppi_ATTENUATION_ZDRc_el0.4.png deleted file mode 100644 index f8bd181..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114114500_ppi_ATTENUATION_ZDRc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114120000_ppi_ATTENUATION_ZDRc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114120000_ppi_ATTENUATION_ZDRc_el0.4.png deleted file mode 100644 index b8cbd8d..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_ZDRc/20210114120000_ppi_ATTENUATION_ZDRc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114101500_ppi_ATTENUATION_dBZc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114101500_ppi_ATTENUATION_dBZc_el0.4.png index 8e9c66a..d5dbbdb 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114101500_ppi_ATTENUATION_dBZc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114101500_ppi_ATTENUATION_dBZc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114103000_ppi_ATTENUATION_dBZc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114103000_ppi_ATTENUATION_dBZc_el0.4.png index baab1a1..37268d3 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114103000_ppi_ATTENUATION_dBZc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114103000_ppi_ATTENUATION_dBZc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114104500_ppi_ATTENUATION_dBZc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114104500_ppi_ATTENUATION_dBZc_el0.4.png index c5d2d01..f36834f 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114104500_ppi_ATTENUATION_dBZc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114104500_ppi_ATTENUATION_dBZc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114110000_ppi_ATTENUATION_dBZc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114110000_ppi_ATTENUATION_dBZc_el0.4.png index 39dd32c..2911439 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114110000_ppi_ATTENUATION_dBZc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114110000_ppi_ATTENUATION_dBZc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114111500_ppi_ATTENUATION_dBZc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114111500_ppi_ATTENUATION_dBZc_el0.4.png index 6d9bbdf..27e84e4 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114111500_ppi_ATTENUATION_dBZc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114111500_ppi_ATTENUATION_dBZc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114113000_ppi_ATTENUATION_dBZc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114113000_ppi_ATTENUATION_dBZc_el0.4.png deleted file mode 100644 index dbbd944..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114113000_ppi_ATTENUATION_dBZc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114114500_ppi_ATTENUATION_dBZc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114114500_ppi_ATTENUATION_dBZc_el0.4.png deleted file mode 100644 index 4d05057..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114114500_ppi_ATTENUATION_dBZc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114120000_ppi_ATTENUATION_dBZc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114120000_ppi_ATTENUATION_dBZc_el0.4.png deleted file mode 100644 index 0b594a3..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/Att_ZPhi/PPI_EL00_A_dBZc/20210114120000_ppi_ATTENUATION_dBZc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114101500_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114101500_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png index b2cb149..809efdb 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114101500_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114101500_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114103000_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114103000_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png index 728cb08..8671b8f 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114103000_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114103000_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114104500_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114104500_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png index a0e65a0..fda050e 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114104500_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114104500_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114110000_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114110000_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png index cc91f3b..4acb971 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114110000_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114110000_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114111500_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114111500_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png index 632c228..6298bb8 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114111500_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114111500_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114113000_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114113000_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png deleted file mode 100644 index f72ab65..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114113000_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114114500_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114114500_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png deleted file mode 100644 index 04627e2..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114114500_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114120000_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114120000_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png deleted file mode 100644 index a400a33..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/KDP_leastsquare_1W/PPI_EL00_A/20210114120000_ppi_KDP_LEASTSQUARE_1W_KDPc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114101500_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114101500_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png index cb46a0a..5a85230 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114101500_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114101500_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114103000_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114103000_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png index a04d7ff..1d5f9a7 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114103000_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114103000_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114104500_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114104500_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png index 023a3f2..2f3be1e 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114104500_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114104500_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114110000_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114110000_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png index e96a850..3296ff2 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114110000_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114110000_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114111500_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114111500_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png index 0cbb281..17a0583 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114111500_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114111500_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114113000_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114113000_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png deleted file mode 100644 index 2b137b9..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114113000_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114114500_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114114500_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png deleted file mode 100644 index abf2d67..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114114500_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114120000_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114120000_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png deleted file mode 100644 index de4bb2d..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_KDP/20210114120000_ppi_PHIDP_KDP_MAESAKA_KDPc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114101500_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114101500_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png index 795e43a..0f92c42 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114101500_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114101500_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114103000_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114103000_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png index d65340c..da6364c 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114103000_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114103000_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114104500_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114104500_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png index 679a4b6..95a05f9 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114104500_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114104500_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114110000_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114110000_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png index 68894ac..448a47b 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114110000_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114110000_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114111500_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114111500_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png index af38761..077ce90 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114111500_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114111500_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114113000_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114113000_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png deleted file mode 100644 index 46bdac7..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114113000_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114114500_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114114500_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png deleted file mode 100644 index c614197..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114114500_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114120000_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114120000_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png deleted file mode 100644 index 86ecbef..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Maesaka/PPI_EL00_A_PhiDP/20210114120000_ppi_PHIDP_KDP_MAESAKA_PhiDPc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114101500_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114101500_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png index 91e6a2c..3d4293a 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114101500_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114101500_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114103000_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114103000_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png index 8737840..dd59a95 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114103000_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114103000_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114104500_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114104500_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png index 59aa9f8..79f58b2 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114104500_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114104500_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114110000_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114110000_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png index 3b700c7..5151bf3 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114110000_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114110000_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114111500_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114111500_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png index aca80d3..490beb9 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114111500_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114111500_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114113000_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114113000_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png index e1b0149..877b2f0 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114113000_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114113000_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114114500_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114114500_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png deleted file mode 100644 index 8f9fec7..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114114500_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114120000_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114120000_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png deleted file mode 100644 index 0ff15fb..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_KDP/20210114120000_ppi_PHIDP_KDP_VULPIANI_KDPc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114101500_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114101500_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png index abbf034..d34b97d 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114101500_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114101500_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114103000_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114103000_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png index fe2b4d0..2064f43 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114103000_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114103000_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114104500_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114104500_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png index c8ab91d..9216924 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114104500_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114104500_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114110000_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114110000_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png index 431934d..8d0abcf 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114110000_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114110000_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114111500_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114111500_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png index 8182ece..71a2a7a 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114111500_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114111500_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114113000_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114113000_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png index 026deb1..15295d6 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114113000_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114113000_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114114500_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114114500_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png deleted file mode 100644 index b88ab0b..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114114500_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114120000_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114120000_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png deleted file mode 100644 index d3bde82..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_KDP_Vulpiani/PPI_EL00_A_PhiDP/20210114120000_ppi_PHIDP_KDP_VULPIANI_PhiDPc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114101500_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114101500_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png index 5479f97..220f588 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114101500_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114101500_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114103000_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114103000_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png index 842b262..be8a18e 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114103000_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114103000_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114104500_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114104500_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png index 8c03c0d..ced9598 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114104500_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114104500_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114110000_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114110000_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png index 4f528a0..311a24b 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114110000_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114110000_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114111500_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114111500_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png index cb699ca..9e47bc8 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114111500_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114111500_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114113000_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114113000_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png index 38200dc..3c89d9a 100644 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114113000_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png and b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114113000_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114114500_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114114500_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png deleted file mode 100644 index df267e2..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114114500_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114120000_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png b/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114120000_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png deleted file mode 100644 index 9199bd4..0000000 Binary files a/pyrad_outputs/03_phidp_kdp/2021-01-14/PhiDP_smooth_1W/PPI_EL00_A/20210114120000_ppi_PHIDP_SMOOTH_1W_PhiDPc_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516200500_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516200500_ppi_RAW_hydroMF_el2.2.png index c7d8a9e..ffc8937 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516200500_ppi_RAW_hydroMF_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516200500_ppi_RAW_hydroMF_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516201000_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516201000_ppi_RAW_hydroMF_el2.2.png index 2456031..599dfe3 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516201000_ppi_RAW_hydroMF_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516201000_ppi_RAW_hydroMF_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516201500_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516201500_ppi_RAW_hydroMF_el2.2.png index cb0fd1d..31783a8 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516201500_ppi_RAW_hydroMF_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516201500_ppi_RAW_hydroMF_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516202000_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516202000_ppi_RAW_hydroMF_el2.2.png index 2c68caf..e3d1e98 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516202000_ppi_RAW_hydroMF_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516202000_ppi_RAW_hydroMF_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516202500_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516202500_ppi_RAW_hydroMF_el2.2.png index a028100..372ad20 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516202500_ppi_RAW_hydroMF_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516202500_ppi_RAW_hydroMF_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516203000_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516203000_ppi_RAW_hydroMF_el2.2.png index 6901c5c..a7a9e27 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516203000_ppi_RAW_hydroMF_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516203000_ppi_RAW_hydroMF_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516203500_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516203500_ppi_RAW_hydroMF_el2.2.png index 7e3815a..127ce92 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516203500_ppi_RAW_hydroMF_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516203500_ppi_RAW_hydroMF_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516204000_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516204000_ppi_RAW_hydroMF_el2.2.png index 692138b..ee65eaa 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516204000_ppi_RAW_hydroMF_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516204000_ppi_RAW_hydroMF_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516204500_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516204500_ppi_RAW_hydroMF_el2.2.png index a5a4898..4772328 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516204500_ppi_RAW_hydroMF_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516204500_ppi_RAW_hydroMF_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516205000_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516205000_ppi_RAW_hydroMF_el2.2.png index 91d007f..93bcd4a 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516205000_ppi_RAW_hydroMF_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516205000_ppi_RAW_hydroMF_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516205500_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516205500_ppi_RAW_hydroMF_el2.2.png index 4610efa..181d0d5 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516205500_ppi_RAW_hydroMF_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516205500_ppi_RAW_hydroMF_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516210000_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516210000_ppi_RAW_hydroMF_el2.2.png index 040950e..2ae2232 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516210000_ppi_RAW_hydroMF_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516210000_ppi_RAW_hydroMF_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516210500_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516210500_ppi_RAW_hydroMF_el2.2.png index ceea240..8dbef22 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516210500_ppi_RAW_hydroMF_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516210500_ppi_RAW_hydroMF_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516211000_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516211000_ppi_RAW_hydroMF_el2.2.png index 07d71f5..da075ff 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516211000_ppi_RAW_hydroMF_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516211000_ppi_RAW_hydroMF_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516211500_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516211500_ppi_RAW_hydroMF_el2.2.png index 8c2a3f7..eb45afe 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516211500_ppi_RAW_hydroMF_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516211500_ppi_RAW_hydroMF_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516212000_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516212000_ppi_RAW_hydroMF_el2.2.png index a815704..caeeead 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516212000_ppi_RAW_hydroMF_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516212000_ppi_RAW_hydroMF_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516212500_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516212500_ppi_RAW_hydroMF_el2.2.png index 8aca230..c60a052 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516212500_ppi_RAW_hydroMF_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516212500_ppi_RAW_hydroMF_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516213000_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516213000_ppi_RAW_hydroMF_el2.2.png deleted file mode 100644 index 3496363..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516213000_ppi_RAW_hydroMF_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516213500_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516213500_ppi_RAW_hydroMF_el2.2.png deleted file mode 100644 index e3e8a6e..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516213500_ppi_RAW_hydroMF_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516214000_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516214000_ppi_RAW_hydroMF_el2.2.png deleted file mode 100644 index c9d4b2c..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516214000_ppi_RAW_hydroMF_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516214500_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516214500_ppi_RAW_hydroMF_el2.2.png deleted file mode 100644 index 33bb20d..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516214500_ppi_RAW_hydroMF_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516215000_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516215000_ppi_RAW_hydroMF_el2.2.png deleted file mode 100644 index c631b21..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516215000_ppi_RAW_hydroMF_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516215500_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516215500_ppi_RAW_hydroMF_el2.2.png deleted file mode 100644 index e718157..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516215500_ppi_RAW_hydroMF_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516220000_ppi_RAW_hydroMF_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516220000_ppi_RAW_hydroMF_el2.2.png deleted file mode 100644 index 396d966..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydroMF/PPI_EL03/20200516220000_ppi_RAW_hydroMF_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516200500_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516200500_ppi_hydroMF_to_hydro_hydro_el2.2.png index 3793866..b03398a 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516200500_ppi_hydroMF_to_hydro_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516200500_ppi_hydroMF_to_hydro_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516201000_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516201000_ppi_hydroMF_to_hydro_hydro_el2.2.png index f0900a7..d2fdb9d 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516201000_ppi_hydroMF_to_hydro_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516201000_ppi_hydroMF_to_hydro_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516201500_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516201500_ppi_hydroMF_to_hydro_hydro_el2.2.png index 370962b..020156f 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516201500_ppi_hydroMF_to_hydro_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516201500_ppi_hydroMF_to_hydro_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516202000_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516202000_ppi_hydroMF_to_hydro_hydro_el2.2.png index 3e12977..ce1c714 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516202000_ppi_hydroMF_to_hydro_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516202000_ppi_hydroMF_to_hydro_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516202500_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516202500_ppi_hydroMF_to_hydro_hydro_el2.2.png index b85a930..8596817 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516202500_ppi_hydroMF_to_hydro_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516202500_ppi_hydroMF_to_hydro_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516203000_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516203000_ppi_hydroMF_to_hydro_hydro_el2.2.png index fec2b9d..57ff95f 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516203000_ppi_hydroMF_to_hydro_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516203000_ppi_hydroMF_to_hydro_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516203500_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516203500_ppi_hydroMF_to_hydro_hydro_el2.2.png index 852c0e2..c2ace53 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516203500_ppi_hydroMF_to_hydro_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516203500_ppi_hydroMF_to_hydro_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516204000_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516204000_ppi_hydroMF_to_hydro_hydro_el2.2.png index 6eaa287..1185d9c 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516204000_ppi_hydroMF_to_hydro_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516204000_ppi_hydroMF_to_hydro_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516204500_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516204500_ppi_hydroMF_to_hydro_hydro_el2.2.png index 59e50fb..ac7dae7 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516204500_ppi_hydroMF_to_hydro_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516204500_ppi_hydroMF_to_hydro_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516205000_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516205000_ppi_hydroMF_to_hydro_hydro_el2.2.png index 522a96c..dcdc259 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516205000_ppi_hydroMF_to_hydro_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516205000_ppi_hydroMF_to_hydro_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516205500_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516205500_ppi_hydroMF_to_hydro_hydro_el2.2.png index 285731c..5d74482 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516205500_ppi_hydroMF_to_hydro_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516205500_ppi_hydroMF_to_hydro_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516210000_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516210000_ppi_hydroMF_to_hydro_hydro_el2.2.png index 71bd6d2..01c83d9 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516210000_ppi_hydroMF_to_hydro_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516210000_ppi_hydroMF_to_hydro_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516210500_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516210500_ppi_hydroMF_to_hydro_hydro_el2.2.png index 289e7e9..7c0bb6a 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516210500_ppi_hydroMF_to_hydro_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516210500_ppi_hydroMF_to_hydro_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516211000_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516211000_ppi_hydroMF_to_hydro_hydro_el2.2.png index 4e182dc..918a09e 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516211000_ppi_hydroMF_to_hydro_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516211000_ppi_hydroMF_to_hydro_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516211500_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516211500_ppi_hydroMF_to_hydro_hydro_el2.2.png index 14412e2..70de6eb 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516211500_ppi_hydroMF_to_hydro_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516211500_ppi_hydroMF_to_hydro_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516212000_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516212000_ppi_hydroMF_to_hydro_hydro_el2.2.png index d9bd1a8..2cd4005 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516212000_ppi_hydroMF_to_hydro_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516212000_ppi_hydroMF_to_hydro_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516212500_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516212500_ppi_hydroMF_to_hydro_hydro_el2.2.png index 0aecd8d..4706ba7 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516212500_ppi_hydroMF_to_hydro_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516212500_ppi_hydroMF_to_hydro_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516213000_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516213000_ppi_hydroMF_to_hydro_hydro_el2.2.png deleted file mode 100644 index 6f620aa..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516213000_ppi_hydroMF_to_hydro_hydro_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516213500_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516213500_ppi_hydroMF_to_hydro_hydro_el2.2.png deleted file mode 100644 index e86e457..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516213500_ppi_hydroMF_to_hydro_hydro_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516214000_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516214000_ppi_hydroMF_to_hydro_hydro_el2.2.png deleted file mode 100644 index 66c133c..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516214000_ppi_hydroMF_to_hydro_hydro_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516214500_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516214500_ppi_hydroMF_to_hydro_hydro_el2.2.png deleted file mode 100644 index ef70aa2..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516214500_ppi_hydroMF_to_hydro_hydro_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516215000_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516215000_ppi_hydroMF_to_hydro_hydro_el2.2.png deleted file mode 100644 index d628509..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516215000_ppi_hydroMF_to_hydro_hydro_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516215500_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516215500_ppi_hydroMF_to_hydro_hydro_el2.2.png deleted file mode 100644 index 662e6ce..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516215500_ppi_hydroMF_to_hydro_hydro_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516220000_ppi_hydroMF_to_hydro_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516220000_ppi_hydroMF_to_hydro_hydro_el2.2.png deleted file mode 100644 index ed8d1ed..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_fromMF/PPI_EL03/20200516220000_ppi_hydroMF_to_hydro_hydro_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516200500_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516200500_ppi_HYDROCLASS_hydro_el2.2.png index 67b6ba5..4558e6d 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516200500_ppi_HYDROCLASS_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516200500_ppi_HYDROCLASS_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516201000_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516201000_ppi_HYDROCLASS_hydro_el2.2.png index 78b954c..234b2e0 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516201000_ppi_HYDROCLASS_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516201000_ppi_HYDROCLASS_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516201500_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516201500_ppi_HYDROCLASS_hydro_el2.2.png index dcee3a5..78351d0 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516201500_ppi_HYDROCLASS_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516201500_ppi_HYDROCLASS_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516202000_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516202000_ppi_HYDROCLASS_hydro_el2.2.png index 35cbcbd..e4e94a6 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516202000_ppi_HYDROCLASS_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516202000_ppi_HYDROCLASS_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516202500_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516202500_ppi_HYDROCLASS_hydro_el2.2.png index 3f0e849..5e62d5c 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516202500_ppi_HYDROCLASS_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516202500_ppi_HYDROCLASS_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516203000_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516203000_ppi_HYDROCLASS_hydro_el2.2.png index abed663..9ec3171 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516203000_ppi_HYDROCLASS_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516203000_ppi_HYDROCLASS_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516203500_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516203500_ppi_HYDROCLASS_hydro_el2.2.png index c335e71..4c355c7 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516203500_ppi_HYDROCLASS_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516203500_ppi_HYDROCLASS_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516204000_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516204000_ppi_HYDROCLASS_hydro_el2.2.png index ae49029..5e2bbf5 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516204000_ppi_HYDROCLASS_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516204000_ppi_HYDROCLASS_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516204500_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516204500_ppi_HYDROCLASS_hydro_el2.2.png index 02f5740..eb3ac7b 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516204500_ppi_HYDROCLASS_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516204500_ppi_HYDROCLASS_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516205000_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516205000_ppi_HYDROCLASS_hydro_el2.2.png index 86ca498..8219611 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516205000_ppi_HYDROCLASS_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516205000_ppi_HYDROCLASS_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516205500_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516205500_ppi_HYDROCLASS_hydro_el2.2.png index 2d61e55..129b3ba 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516205500_ppi_HYDROCLASS_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516205500_ppi_HYDROCLASS_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516210000_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516210000_ppi_HYDROCLASS_hydro_el2.2.png index 414a99b..eb2d05d 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516210000_ppi_HYDROCLASS_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516210000_ppi_HYDROCLASS_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516210500_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516210500_ppi_HYDROCLASS_hydro_el2.2.png index de3be4a..36fc455 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516210500_ppi_HYDROCLASS_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516210500_ppi_HYDROCLASS_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516211000_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516211000_ppi_HYDROCLASS_hydro_el2.2.png index 80d15f4..cf7b8eb 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516211000_ppi_HYDROCLASS_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516211000_ppi_HYDROCLASS_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516211500_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516211500_ppi_HYDROCLASS_hydro_el2.2.png index b502efe..73c1f66 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516211500_ppi_HYDROCLASS_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516211500_ppi_HYDROCLASS_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516212000_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516212000_ppi_HYDROCLASS_hydro_el2.2.png index 7bef856..f402e93 100644 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516212000_ppi_HYDROCLASS_hydro_el2.2.png and b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516212000_ppi_HYDROCLASS_hydro_el2.2.png differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516212500_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516212500_ppi_HYDROCLASS_hydro_el2.2.png deleted file mode 100644 index 7326bff..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516212500_ppi_HYDROCLASS_hydro_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516213000_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516213000_ppi_HYDROCLASS_hydro_el2.2.png deleted file mode 100644 index 739c734..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516213000_ppi_HYDROCLASS_hydro_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516213500_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516213500_ppi_HYDROCLASS_hydro_el2.2.png deleted file mode 100644 index ccda8c2..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516213500_ppi_HYDROCLASS_hydro_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516214000_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516214000_ppi_HYDROCLASS_hydro_el2.2.png deleted file mode 100644 index e2e0009..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516214000_ppi_HYDROCLASS_hydro_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516214500_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516214500_ppi_HYDROCLASS_hydro_el2.2.png deleted file mode 100644 index 90b8fbc..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516214500_ppi_HYDROCLASS_hydro_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516215000_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516215000_ppi_HYDROCLASS_hydro_el2.2.png deleted file mode 100644 index b236512..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516215000_ppi_HYDROCLASS_hydro_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516215500_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516215500_ppi_HYDROCLASS_hydro_el2.2.png deleted file mode 100644 index c0554b1..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516215500_ppi_HYDROCLASS_hydro_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516220000_ppi_HYDROCLASS_hydro_el2.2.png b/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516220000_ppi_HYDROCLASS_hydro_el2.2.png deleted file mode 100644 index cf573a6..0000000 Binary files a/pyrad_outputs/04_hydroclass/2020-05-16/hydro_semisupervised/PPI_EL03/20200516220000_ppi_HYDROCLASS_hydro_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516200500_ppi_VPR_VPRcorr_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516200500_ppi_VPR_VPRcorr_el2.2.png deleted file mode 100644 index 76eeceb..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516200500_ppi_VPR_VPRcorr_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516201000_ppi_VPR_VPRcorr_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516201000_ppi_VPR_VPRcorr_el2.2.png deleted file mode 100644 index 8507727..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516201000_ppi_VPR_VPRcorr_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516201500_ppi_VPR_VPRcorr_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516201500_ppi_VPR_VPRcorr_el2.2.png deleted file mode 100644 index 4a09d2b..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516201500_ppi_VPR_VPRcorr_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516202000_ppi_VPR_VPRcorr_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516202000_ppi_VPR_VPRcorr_el2.2.png deleted file mode 100644 index baf443d..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516202000_ppi_VPR_VPRcorr_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516202500_ppi_VPR_VPRcorr_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516202500_ppi_VPR_VPRcorr_el2.2.png deleted file mode 100644 index 12e3e71..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516202500_ppi_VPR_VPRcorr_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516203000_ppi_VPR_VPRcorr_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516203000_ppi_VPR_VPRcorr_el2.2.png deleted file mode 100644 index fe52727..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516203000_ppi_VPR_VPRcorr_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516203500_ppi_VPR_VPRcorr_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516203500_ppi_VPR_VPRcorr_el2.2.png deleted file mode 100644 index bbfb158..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516203500_ppi_VPR_VPRcorr_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516204000_ppi_VPR_VPRcorr_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516204000_ppi_VPR_VPRcorr_el2.2.png deleted file mode 100644 index 6c2e9ed..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516204000_ppi_VPR_VPRcorr_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516204500_ppi_VPR_VPRcorr_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516204500_ppi_VPR_VPRcorr_el2.2.png deleted file mode 100644 index 80afd99..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516204500_ppi_VPR_VPRcorr_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516205000_ppi_VPR_VPRcorr_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516205000_ppi_VPR_VPRcorr_el2.2.png deleted file mode 100644 index eae555d..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516205000_ppi_VPR_VPRcorr_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516205500_ppi_VPR_VPRcorr_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516205500_ppi_VPR_VPRcorr_el2.2.png deleted file mode 100644 index d15d81e..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516205500_ppi_VPR_VPRcorr_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516210000_ppi_VPR_VPRcorr_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516210000_ppi_VPR_VPRcorr_el2.2.png deleted file mode 100644 index bd8da46..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516210000_ppi_VPR_VPRcorr_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516210500_ppi_VPR_VPRcorr_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516210500_ppi_VPR_VPRcorr_el2.2.png deleted file mode 100644 index ae33c3b..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516210500_ppi_VPR_VPRcorr_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516211000_ppi_VPR_VPRcorr_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516211000_ppi_VPR_VPRcorr_el2.2.png deleted file mode 100644 index 456221a..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_VPRcorr/20200516211000_ppi_VPR_VPRcorr_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516200500_ppi_VPR_dBZc_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516200500_ppi_VPR_dBZc_el2.2.png deleted file mode 100644 index b777a4a..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516200500_ppi_VPR_dBZc_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516201000_ppi_VPR_dBZc_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516201000_ppi_VPR_dBZc_el2.2.png deleted file mode 100644 index 27f9d01..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516201000_ppi_VPR_dBZc_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516201500_ppi_VPR_dBZc_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516201500_ppi_VPR_dBZc_el2.2.png deleted file mode 100644 index 3540dc5..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516201500_ppi_VPR_dBZc_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516202000_ppi_VPR_dBZc_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516202000_ppi_VPR_dBZc_el2.2.png deleted file mode 100644 index 46735bc..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516202000_ppi_VPR_dBZc_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516202500_ppi_VPR_dBZc_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516202500_ppi_VPR_dBZc_el2.2.png deleted file mode 100644 index 0c8ae4d..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516202500_ppi_VPR_dBZc_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516203000_ppi_VPR_dBZc_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516203000_ppi_VPR_dBZc_el2.2.png deleted file mode 100644 index 9201faa..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516203000_ppi_VPR_dBZc_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516203500_ppi_VPR_dBZc_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516203500_ppi_VPR_dBZc_el2.2.png deleted file mode 100644 index 8ffa5f8..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516203500_ppi_VPR_dBZc_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516204000_ppi_VPR_dBZc_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516204000_ppi_VPR_dBZc_el2.2.png deleted file mode 100644 index 6b82b8a..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516204000_ppi_VPR_dBZc_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516204500_ppi_VPR_dBZc_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516204500_ppi_VPR_dBZc_el2.2.png deleted file mode 100644 index 5f2caf9..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516204500_ppi_VPR_dBZc_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516205000_ppi_VPR_dBZc_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516205000_ppi_VPR_dBZc_el2.2.png deleted file mode 100644 index 3fa9b4a..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516205000_ppi_VPR_dBZc_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516205500_ppi_VPR_dBZc_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516205500_ppi_VPR_dBZc_el2.2.png deleted file mode 100644 index ea6d993..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516205500_ppi_VPR_dBZc_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516210000_ppi_VPR_dBZc_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516210000_ppi_VPR_dBZc_el2.2.png deleted file mode 100644 index b0d8ce3..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516210000_ppi_VPR_dBZc_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516210500_ppi_VPR_dBZc_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516210500_ppi_VPR_dBZc_el2.2.png deleted file mode 100644 index e05fa0c..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516210500_ppi_VPR_dBZc_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516211000_ppi_VPR_dBZc_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516211000_ppi_VPR_dBZc_el2.2.png deleted file mode 100644 index e7402e1..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/PPI_EL03_dBZc/20200516211000_ppi_VPR_dBZc_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516200500_info_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516200500_info_VPR_VPR.csv deleted file mode 100644 index f2b077c..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516200500_info_VPR_VPR.csv +++ /dev/null @@ -1,2 +0,0 @@ -ml_top_ref,best_ml_top,best_ml_thickness,best_val_ml,best_val_dr,best_error -2853.2989014422055,3053.2989014422055,200,6.0,-1.5,0.28795604242810197 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516201000_info_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516201000_info_VPR_VPR.csv deleted file mode 100644 index e08bdd1..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516201000_info_VPR_VPR.csv +++ /dev/null @@ -1,2 +0,0 @@ -ml_top_ref,best_ml_top,best_ml_thickness,best_val_ml,best_val_dr,best_error -2764.401000681017,2964.401000681017,200,6.0,-1.5,0.28760302507482177 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516201500_info_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516201500_info_VPR_VPR.csv deleted file mode 100644 index cfa4309..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516201500_info_VPR_VPR.csv +++ /dev/null @@ -1,2 +0,0 @@ -ml_top_ref,best_ml_top,best_ml_thickness,best_val_ml,best_val_dr,best_error -2845.065266899162,3045.065266899162,200,6.0,-1.5,0.20000338105770962 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516202000_info_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516202000_info_VPR_VPR.csv deleted file mode 100644 index 249936a..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516202000_info_VPR_VPR.csv +++ /dev/null @@ -1,2 +0,0 @@ -ml_top_ref,best_ml_top,best_ml_thickness,best_val_ml,best_val_dr,best_error -2839.431838650357,3039.431838650357,200,6.0,-1.5,0.199237291613636 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516202500_info_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516202500_info_VPR_VPR.csv deleted file mode 100644 index e4a71e7..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516202500_info_VPR_VPR.csv +++ /dev/null @@ -1,2 +0,0 @@ -ml_top_ref,best_ml_top,best_ml_thickness,best_val_ml,best_val_dr,best_error -2790.9210078696715,2990.9210078696715,200,6.0,-1.5,0.19334009825787882 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516203000_info_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516203000_info_VPR_VPR.csv deleted file mode 100644 index 4a096b2..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516203000_info_VPR_VPR.csv +++ /dev/null @@ -1,2 +0,0 @@ -ml_top_ref,best_ml_top,best_ml_thickness,best_val_ml,best_val_dr,best_error -2790.213670135883,2990.213670135883,200,6.0,-1.5,0.19348937795353408 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516203500_info_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516203500_info_VPR_VPR.csv deleted file mode 100644 index a68c276..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516203500_info_VPR_VPR.csv +++ /dev/null @@ -1,2 +0,0 @@ -ml_top_ref,best_ml_top,best_ml_thickness,best_val_ml,best_val_dr,best_error -2663.8448452230323,2863.8448452230323,200,5.0,-1.5,0.22532285736824287 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516204000_info_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516204000_info_VPR_VPR.csv deleted file mode 100644 index 40754d6..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516204000_info_VPR_VPR.csv +++ /dev/null @@ -1,2 +0,0 @@ -ml_top_ref,best_ml_top,best_ml_thickness,best_val_ml,best_val_dr,best_error -2784.2958427637263,2984.2958427637263,200,6.0,-1.5,0.17895597781280548 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516204500_info_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516204500_info_VPR_VPR.csv deleted file mode 100644 index 5e87151..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516204500_info_VPR_VPR.csv +++ /dev/null @@ -1,2 +0,0 @@ -ml_top_ref,best_ml_top,best_ml_thickness,best_val_ml,best_val_dr,best_error -2787.3685233970646,2987.3685233970646,200,6.0,-1.5,0.22343086299881815 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516205000_info_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516205000_info_VPR_VPR.csv deleted file mode 100644 index 76c3bcd..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516205000_info_VPR_VPR.csv +++ /dev/null @@ -1,2 +0,0 @@ -ml_top_ref,best_ml_top,best_ml_thickness,best_val_ml,best_val_dr,best_error -2828.6498436508614,3028.6498436508614,200,6.0,-1.5,0.20963408798249566 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516205500_info_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516205500_info_VPR_VPR.csv deleted file mode 100644 index 8a9ce9b..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516205500_info_VPR_VPR.csv +++ /dev/null @@ -1,2 +0,0 @@ -ml_top_ref,best_ml_top,best_ml_thickness,best_val_ml,best_val_dr,best_error -2714.8579373680896,2914.8579373680896,200,5.0,-1.5,0.4650191912764415 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516210000_info_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516210000_info_VPR_VPR.csv deleted file mode 100644 index 533f833..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516210000_info_VPR_VPR.csv +++ /dev/null @@ -1,2 +0,0 @@ -ml_top_ref,best_ml_top,best_ml_thickness,best_val_ml,best_val_dr,best_error -2779.601242196494,2979.601242196494,200,6.0,-1.5,0.2548845363604665 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516210500_info_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516210500_info_VPR_VPR.csv deleted file mode 100644 index 79333a2..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516210500_info_VPR_VPR.csv +++ /dev/null @@ -1,2 +0,0 @@ -ml_top_ref,best_ml_top,best_ml_thickness,best_val_ml,best_val_dr,best_error -2779.4517726855447,2979.4517726855447,200,6.0,-1.5,0.2080873575374374 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516211000_info_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516211000_info_VPR_VPR.csv deleted file mode 100644 index 975d273..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRinfo/20200516211000_info_VPR_VPR.csv +++ /dev/null @@ -1,2 +0,0 @@ -ml_top_ref,best_ml_top,best_ml_thickness,best_val_ml,best_val_dr,best_error -2807.779686611851,3007.779686611851,200,6.0,-1.5,0.20345698617697391 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516200500_theo_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516200500_theo_VPR_VPR.csv deleted file mode 100644 index c77423e..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516200500_theo_VPR_VPR.csv +++ /dev/null @@ -1,15008 +0,0 @@ -# Height Profile -# ============== -# -# Datatype (Unit) : normalized reflectivity (-) -# Fill value : -9999.0 -# Time : 2020-05-16 20:05:00 -# Sector specification: None -Altitude [m MSL],Znorm -0.0,1.0 -1.0,1.0 -2.0,1.0 -3.0,1.0 -4.0,1.0 -5.0,1.0 -6.0,1.0 -7.0,1.0 -8.0,1.0 -9.0,1.0 -10.0,1.0 -11.0,1.0 -12.0,1.0 -13.0,1.0 -14.0,1.0 -15.0,1.0 -16.0,1.0 -17.0,1.0 -18.0,1.0 -19.0,1.0 -20.0,1.0 -21.0,1.0 -22.0,1.0 -23.0,1.0 -24.0,1.0 -25.0,1.0 -26.0,1.0 -27.0,1.0 -28.0,1.0 -29.0,1.0 -30.0,1.0 -31.0,1.0 -32.0,1.0 -33.0,1.0 -34.0,1.0 -35.0,1.0 -36.0,1.0 -37.0,1.0 -38.0,1.0 -39.0,1.0 -40.0,1.0 -41.0,1.0 -42.0,1.0 -43.0,1.0 -44.0,1.0 -45.0,1.0 -46.0,1.0 -47.0,1.0 -48.0,1.0 -49.0,1.0 -50.0,1.0 -51.0,1.0 -52.0,1.0 -53.0,1.0 -54.0,1.0 -55.0,1.0 -56.0,1.0 -57.0,1.0 -58.0,1.0 -59.0,1.0 -60.0,1.0 -61.0,1.0 -62.0,1.0 -63.0,1.0 -64.0,1.0 -65.0,1.0 -66.0,1.0 -67.0,1.0 -68.0,1.0 -69.0,1.0 -70.0,1.0 -71.0,1.0 -72.0,1.0 -73.0,1.0 -74.0,1.0 -75.0,1.0 -76.0,1.0 -77.0,1.0 -78.0,1.0 -79.0,1.0 -80.0,1.0 -81.0,1.0 -82.0,1.0 -83.0,1.0 -84.0,1.0 -85.0,1.0 -86.0,1.0 -87.0,1.0 -88.0,1.0 -89.0,1.0 -90.0,1.0 -91.0,1.0 -92.0,1.0 -93.0,1.0 -94.0,1.0 -95.0,1.0 -96.0,1.0 -97.0,1.0 -98.0,1.0 -99.0,1.0 -100.0,1.0 -101.0,1.0 -102.0,1.0 -103.0,1.0 -104.0,1.0 -105.0,1.0 -106.0,1.0 -107.0,1.0 -108.0,1.0 -109.0,1.0 -110.0,1.0 -111.0,1.0 -112.0,1.0 -113.0,1.0 -114.0,1.0 -115.0,1.0 -116.0,1.0 -117.0,1.0 -118.0,1.0 -119.0,1.0 -120.0,1.0 -121.0,1.0 -122.0,1.0 -123.0,1.0 -124.0,1.0 -125.0,1.0 -126.0,1.0 -127.0,1.0 -128.0,1.0 -129.0,1.0 -130.0,1.0 -131.0,1.0 -132.0,1.0 -133.0,1.0 -134.0,1.0 -135.0,1.0 -136.0,1.0 -137.0,1.0 -138.0,1.0 -139.0,1.0 -140.0,1.0 -141.0,1.0 -142.0,1.0 -143.0,1.0 -144.0,1.0 -145.0,1.0 -146.0,1.0 -147.0,1.0 -148.0,1.0 -149.0,1.0 -150.0,1.0 -151.0,1.0 -152.0,1.0 -153.0,1.0 -154.0,1.0 -155.0,1.0 -156.0,1.0 -157.0,1.0 -158.0,1.0 -159.0,1.0 -160.0,1.0 -161.0,1.0 -162.0,1.0 -163.0,1.0 -164.0,1.0 -165.0,1.0 -166.0,1.0 -167.0,1.0 -168.0,1.0 -169.0,1.0 -170.0,1.0 -171.0,1.0 -172.0,1.0 -173.0,1.0 -174.0,1.0 -175.0,1.0 -176.0,1.0 -177.0,1.0 -178.0,1.0 -179.0,1.0 -180.0,1.0 -181.0,1.0 -182.0,1.0 -183.0,1.0 -184.0,1.0 -185.0,1.0 -186.0,1.0 -187.0,1.0 -188.0,1.0 -189.0,1.0 -190.0,1.0 -191.0,1.0 -192.0,1.0 -193.0,1.0 -194.0,1.0 -195.0,1.0 -196.0,1.0 -197.0,1.0 -198.0,1.0 -199.0,1.0 -200.0,1.0 -201.0,1.0 -202.0,1.0 -203.0,1.0 -204.0,1.0 -205.0,1.0 -206.0,1.0 -207.0,1.0 -208.0,1.0 -209.0,1.0 -210.0,1.0 -211.0,1.0 -212.0,1.0 -213.0,1.0 -214.0,1.0 -215.0,1.0 -216.0,1.0 -217.0,1.0 -218.0,1.0 -219.0,1.0 -220.0,1.0 -221.0,1.0 -222.0,1.0 -223.0,1.0 -224.0,1.0 -225.0,1.0 -226.0,1.0 -227.0,1.0 -228.0,1.0 -229.0,1.0 -230.0,1.0 -231.0,1.0 -232.0,1.0 -233.0,1.0 -234.0,1.0 -235.0,1.0 -236.0,1.0 -237.0,1.0 -238.0,1.0 -239.0,1.0 -240.0,1.0 -241.0,1.0 -242.0,1.0 -243.0,1.0 -244.0,1.0 -245.0,1.0 -246.0,1.0 -247.0,1.0 -248.0,1.0 -249.0,1.0 -250.0,1.0 -251.0,1.0 -252.0,1.0 -253.0,1.0 -254.0,1.0 -255.0,1.0 -256.0,1.0 -257.0,1.0 -258.0,1.0 -259.0,1.0 -260.0,1.0 -261.0,1.0 -262.0,1.0 -263.0,1.0 -264.0,1.0 -265.0,1.0 -266.0,1.0 -267.0,1.0 -268.0,1.0 -269.0,1.0 -270.0,1.0 -271.0,1.0 -272.0,1.0 -273.0,1.0 -274.0,1.0 -275.0,1.0 -276.0,1.0 -277.0,1.0 -278.0,1.0 -279.0,1.0 -280.0,1.0 -281.0,1.0 -282.0,1.0 -283.0,1.0 -284.0,1.0 -285.0,1.0 -286.0,1.0 -287.0,1.0 -288.0,1.0 -289.0,1.0 -290.0,1.0 -291.0,1.0 -292.0,1.0 -293.0,1.0 -294.0,1.0 -295.0,1.0 -296.0,1.0 -297.0,1.0 -298.0,1.0 -299.0,1.0 -300.0,1.0 -301.0,1.0 -302.0,1.0 -303.0,1.0 -304.0,1.0 -305.0,1.0 -306.0,1.0 -307.0,1.0 -308.0,1.0 -309.0,1.0 -310.0,1.0 -311.0,1.0 -312.0,1.0 -313.0,1.0 -314.0,1.0 -315.0,1.0 -316.0,1.0 -317.0,1.0 -318.0,1.0 -319.0,1.0 -320.0,1.0 -321.0,1.0 -322.0,1.0 -323.0,1.0 -324.0,1.0 -325.0,1.0 -326.0,1.0 -327.0,1.0 -328.0,1.0 -329.0,1.0 -330.0,1.0 -331.0,1.0 -332.0,1.0 -333.0,1.0 -334.0,1.0 -335.0,1.0 -336.0,1.0 -337.0,1.0 -338.0,1.0 -339.0,1.0 -340.0,1.0 -341.0,1.0 -342.0,1.0 -343.0,1.0 -344.0,1.0 -345.0,1.0 -346.0,1.0 -347.0,1.0 -348.0,1.0 -349.0,1.0 -350.0,1.0 -351.0,1.0 -352.0,1.0 -353.0,1.0 -354.0,1.0 -355.0,1.0 -356.0,1.0 -357.0,1.0 -358.0,1.0 -359.0,1.0 -360.0,1.0 -361.0,1.0 -362.0,1.0 -363.0,1.0 -364.0,1.0 -365.0,1.0 -366.0,1.0 -367.0,1.0 -368.0,1.0 -369.0,1.0 -370.0,1.0 -371.0,1.0 -372.0,1.0 -373.0,1.0 -374.0,1.0 -375.0,1.0 -376.0,1.0 -377.0,1.0 -378.0,1.0 -379.0,1.0 -380.0,1.0 -381.0,1.0 -382.0,1.0 -383.0,1.0 -384.0,1.0 -385.0,1.0 -386.0,1.0 -387.0,1.0 -388.0,1.0 -389.0,1.0 -390.0,1.0 -391.0,1.0 -392.0,1.0 -393.0,1.0 -394.0,1.0 -395.0,1.0 -396.0,1.0 -397.0,1.0 -398.0,1.0 -399.0,1.0 -400.0,1.0 -401.0,1.0 -402.0,1.0 -403.0,1.0 -404.0,1.0 -405.0,1.0 -406.0,1.0 -407.0,1.0 -408.0,1.0 -409.0,1.0 -410.0,1.0 -411.0,1.0 -412.0,1.0 -413.0,1.0 -414.0,1.0 -415.0,1.0 -416.0,1.0 -417.0,1.0 -418.0,1.0 -419.0,1.0 -420.0,1.0 -421.0,1.0 -422.0,1.0 -423.0,1.0 -424.0,1.0 -425.0,1.0 -426.0,1.0 -427.0,1.0 -428.0,1.0 -429.0,1.0 -430.0,1.0 -431.0,1.0 -432.0,1.0 -433.0,1.0 -434.0,1.0 -435.0,1.0 -436.0,1.0 -437.0,1.0 -438.0,1.0 -439.0,1.0 -440.0,1.0 -441.0,1.0 -442.0,1.0 -443.0,1.0 -444.0,1.0 -445.0,1.0 -446.0,1.0 -447.0,1.0 -448.0,1.0 -449.0,1.0 -450.0,1.0 -451.0,1.0 -452.0,1.0 -453.0,1.0 -454.0,1.0 -455.0,1.0 -456.0,1.0 -457.0,1.0 -458.0,1.0 -459.0,1.0 -460.0,1.0 -461.0,1.0 -462.0,1.0 -463.0,1.0 -464.0,1.0 -465.0,1.0 -466.0,1.0 -467.0,1.0 -468.0,1.0 -469.0,1.0 -470.0,1.0 -471.0,1.0 -472.0,1.0 -473.0,1.0 -474.0,1.0 -475.0,1.0 -476.0,1.0 -477.0,1.0 -478.0,1.0 -479.0,1.0 -480.0,1.0 -481.0,1.0 -482.0,1.0 -483.0,1.0 -484.0,1.0 -485.0,1.0 -486.0,1.0 -487.0,1.0 -488.0,1.0 -489.0,1.0 -490.0,1.0 -491.0,1.0 -492.0,1.0 -493.0,1.0 -494.0,1.0 -495.0,1.0 -496.0,1.0 -497.0,1.0 -498.0,1.0 -499.0,1.0 -500.0,1.0 -501.0,1.0 -502.0,1.0 -503.0,1.0 -504.0,1.0 -505.0,1.0 -506.0,1.0 -507.0,1.0 -508.0,1.0 -509.0,1.0 -510.0,1.0 -511.0,1.0 -512.0,1.0 -513.0,1.0 -514.0,1.0 -515.0,1.0 -516.0,1.0 -517.0,1.0 -518.0,1.0 -519.0,1.0 -520.0,1.0 -521.0,1.0 -522.0,1.0 -523.0,1.0 -524.0,1.0 -525.0,1.0 -526.0,1.0 -527.0,1.0 -528.0,1.0 -529.0,1.0 -530.0,1.0 -531.0,1.0 -532.0,1.0 -533.0,1.0 -534.0,1.0 -535.0,1.0 -536.0,1.0 -537.0,1.0 -538.0,1.0 -539.0,1.0 -540.0,1.0 -541.0,1.0 -542.0,1.0 -543.0,1.0 -544.0,1.0 -545.0,1.0 -546.0,1.0 -547.0,1.0 -548.0,1.0 -549.0,1.0 -550.0,1.0 -551.0,1.0 -552.0,1.0 -553.0,1.0 -554.0,1.0 -555.0,1.0 -556.0,1.0 -557.0,1.0 -558.0,1.0 -559.0,1.0 -560.0,1.0 -561.0,1.0 -562.0,1.0 -563.0,1.0 -564.0,1.0 -565.0,1.0 -566.0,1.0 -567.0,1.0 -568.0,1.0 -569.0,1.0 -570.0,1.0 -571.0,1.0 -572.0,1.0 -573.0,1.0 -574.0,1.0 -575.0,1.0 -576.0,1.0 -577.0,1.0 -578.0,1.0 -579.0,1.0 -580.0,1.0 -581.0,1.0 -582.0,1.0 -583.0,1.0 -584.0,1.0 -585.0,1.0 -586.0,1.0 -587.0,1.0 -588.0,1.0 -589.0,1.0 -590.0,1.0 -591.0,1.0 -592.0,1.0 -593.0,1.0 -594.0,1.0 -595.0,1.0 -596.0,1.0 -597.0,1.0 -598.0,1.0 -599.0,1.0 -600.0,1.0 -601.0,1.0 -602.0,1.0 -603.0,1.0 -604.0,1.0 -605.0,1.0 -606.0,1.0 -607.0,1.0 -608.0,1.0 -609.0,1.0 -610.0,1.0 -611.0,1.0 -612.0,1.0 -613.0,1.0 -614.0,1.0 -615.0,1.0 -616.0,1.0 -617.0,1.0 -618.0,1.0 -619.0,1.0 -620.0,1.0 -621.0,1.0 -622.0,1.0 -623.0,1.0 -624.0,1.0 -625.0,1.0 -626.0,1.0 -627.0,1.0 -628.0,1.0 -629.0,1.0 -630.0,1.0 -631.0,1.0 -632.0,1.0 -633.0,1.0 -634.0,1.0 -635.0,1.0 -636.0,1.0 -637.0,1.0 -638.0,1.0 -639.0,1.0 -640.0,1.0 -641.0,1.0 -642.0,1.0 -643.0,1.0 -644.0,1.0 -645.0,1.0 -646.0,1.0 -647.0,1.0 -648.0,1.0 -649.0,1.0 -650.0,1.0 -651.0,1.0 -652.0,1.0 -653.0,1.0 -654.0,1.0 -655.0,1.0 -656.0,1.0 -657.0,1.0 -658.0,1.0 -659.0,1.0 -660.0,1.0 -661.0,1.0 -662.0,1.0 -663.0,1.0 -664.0,1.0 -665.0,1.0 -666.0,1.0 -667.0,1.0 -668.0,1.0 -669.0,1.0 -670.0,1.0 -671.0,1.0 -672.0,1.0 -673.0,1.0 -674.0,1.0 -675.0,1.0 -676.0,1.0 -677.0,1.0 -678.0,1.0 -679.0,1.0 -680.0,1.0 -681.0,1.0 -682.0,1.0 -683.0,1.0 -684.0,1.0 -685.0,1.0 -686.0,1.0 -687.0,1.0 -688.0,1.0 -689.0,1.0 -690.0,1.0 -691.0,1.0 -692.0,1.0 -693.0,1.0 -694.0,1.0 -695.0,1.0 -696.0,1.0 -697.0,1.0 -698.0,1.0 -699.0,1.0 -700.0,1.0 -701.0,1.0 -702.0,1.0 -703.0,1.0 -704.0,1.0 -705.0,1.0 -706.0,1.0 -707.0,1.0 -708.0,1.0 -709.0,1.0 -710.0,1.0 -711.0,1.0 -712.0,1.0 -713.0,1.0 -714.0,1.0 -715.0,1.0 -716.0,1.0 -717.0,1.0 -718.0,1.0 -719.0,1.0 -720.0,1.0 -721.0,1.0 -722.0,1.0 -723.0,1.0 -724.0,1.0 -725.0,1.0 -726.0,1.0 -727.0,1.0 -728.0,1.0 -729.0,1.0 -730.0,1.0 -731.0,1.0 -732.0,1.0 -733.0,1.0 -734.0,1.0 -735.0,1.0 -736.0,1.0 -737.0,1.0 -738.0,1.0 -739.0,1.0 -740.0,1.0 -741.0,1.0 -742.0,1.0 -743.0,1.0 -744.0,1.0 -745.0,1.0 -746.0,1.0 -747.0,1.0 -748.0,1.0 -749.0,1.0 -750.0,1.0 -751.0,1.0 -752.0,1.0 -753.0,1.0 -754.0,1.0 -755.0,1.0 -756.0,1.0 -757.0,1.0 -758.0,1.0 -759.0,1.0 -760.0,1.0 -761.0,1.0 -762.0,1.0 -763.0,1.0 -764.0,1.0 -765.0,1.0 -766.0,1.0 -767.0,1.0 -768.0,1.0 -769.0,1.0 -770.0,1.0 -771.0,1.0 -772.0,1.0 -773.0,1.0 -774.0,1.0 -775.0,1.0 -776.0,1.0 -777.0,1.0 -778.0,1.0 -779.0,1.0 -780.0,1.0 -781.0,1.0 -782.0,1.0 -783.0,1.0 -784.0,1.0 -785.0,1.0 -786.0,1.0 -787.0,1.0 -788.0,1.0 -789.0,1.0 -790.0,1.0 -791.0,1.0 -792.0,1.0 -793.0,1.0 -794.0,1.0 -795.0,1.0 -796.0,1.0 -797.0,1.0 -798.0,1.0 -799.0,1.0 -800.0,1.0 -801.0,1.0 -802.0,1.0 -803.0,1.0 -804.0,1.0 -805.0,1.0 -806.0,1.0 -807.0,1.0 -808.0,1.0 -809.0,1.0 -810.0,1.0 -811.0,1.0 -812.0,1.0 -813.0,1.0 -814.0,1.0 -815.0,1.0 -816.0,1.0 -817.0,1.0 -818.0,1.0 -819.0,1.0 -820.0,1.0 -821.0,1.0 -822.0,1.0 -823.0,1.0 -824.0,1.0 -825.0,1.0 -826.0,1.0 -827.0,1.0 -828.0,1.0 -829.0,1.0 -830.0,1.0 -831.0,1.0 -832.0,1.0 -833.0,1.0 -834.0,1.0 -835.0,1.0 -836.0,1.0 -837.0,1.0 -838.0,1.0 -839.0,1.0 -840.0,1.0 -841.0,1.0 -842.0,1.0 -843.0,1.0 -844.0,1.0 -845.0,1.0 -846.0,1.0 -847.0,1.0 -848.0,1.0 -849.0,1.0 -850.0,1.0 -851.0,1.0 -852.0,1.0 -853.0,1.0 -854.0,1.0 -855.0,1.0 -856.0,1.0 -857.0,1.0 -858.0,1.0 -859.0,1.0 -860.0,1.0 -861.0,1.0 -862.0,1.0 -863.0,1.0 -864.0,1.0 -865.0,1.0 -866.0,1.0 -867.0,1.0 -868.0,1.0 -869.0,1.0 -870.0,1.0 -871.0,1.0 -872.0,1.0 -873.0,1.0 -874.0,1.0 -875.0,1.0 -876.0,1.0 -877.0,1.0 -878.0,1.0 -879.0,1.0 -880.0,1.0 -881.0,1.0 -882.0,1.0 -883.0,1.0 -884.0,1.0 -885.0,1.0 -886.0,1.0 -887.0,1.0 -888.0,1.0 -889.0,1.0 -890.0,1.0 -891.0,1.0 -892.0,1.0 -893.0,1.0 -894.0,1.0 -895.0,1.0 -896.0,1.0 -897.0,1.0 -898.0,1.0 -899.0,1.0 -900.0,1.0 -901.0,1.0 -902.0,1.0 -903.0,1.0 -904.0,1.0 -905.0,1.0 -906.0,1.0 -907.0,1.0 -908.0,1.0 -909.0,1.0 -910.0,1.0 -911.0,1.0 -912.0,1.0 -913.0,1.0 -914.0,1.0 -915.0,1.0 -916.0,1.0 -917.0,1.0 -918.0,1.0 -919.0,1.0 -920.0,1.0 -921.0,1.0 -922.0,1.0 -923.0,1.0 -924.0,1.0 -925.0,1.0 -926.0,1.0 -927.0,1.0 -928.0,1.0 -929.0,1.0 -930.0,1.0 -931.0,1.0 -932.0,1.0 -933.0,1.0 -934.0,1.0 -935.0,1.0 -936.0,1.0 -937.0,1.0 -938.0,1.0 -939.0,1.0 -940.0,1.0 -941.0,1.0 -942.0,1.0 -943.0,1.0 -944.0,1.0 -945.0,1.0 -946.0,1.0 -947.0,1.0 -948.0,1.0 -949.0,1.0 -950.0,1.0 -951.0,1.0 -952.0,1.0 -953.0,1.0 -954.0,1.0 -955.0,1.0 -956.0,1.0 -957.0,1.0 -958.0,1.0 -959.0,1.0 -960.0,1.0 -961.0,1.0 -962.0,1.0 -963.0,1.0 -964.0,1.0 -965.0,1.0 -966.0,1.0 -967.0,1.0 -968.0,1.0 -969.0,1.0 -970.0,1.0 -971.0,1.0 -972.0,1.0 -973.0,1.0 -974.0,1.0 -975.0,1.0 -976.0,1.0 -977.0,1.0 -978.0,1.0 -979.0,1.0 -980.0,1.0 -981.0,1.0 -982.0,1.0 -983.0,1.0 -984.0,1.0 -985.0,1.0 -986.0,1.0 -987.0,1.0 -988.0,1.0 -989.0,1.0 -990.0,1.0 -991.0,1.0 -992.0,1.0 -993.0,1.0 -994.0,1.0 -995.0,1.0 -996.0,1.0 -997.0,1.0 -998.0,1.0 -999.0,1.0 -1000.0,1.0 -1001.0,1.0 -1002.0,1.0 -1003.0,1.0 -1004.0,1.0 -1005.0,1.0 -1006.0,1.0 -1007.0,1.0 -1008.0,1.0 -1009.0,1.0 -1010.0,1.0 -1011.0,1.0 -1012.0,1.0 -1013.0,1.0 -1014.0,1.0 -1015.0,1.0 -1016.0,1.0 -1017.0,1.0 -1018.0,1.0 -1019.0,1.0 -1020.0,1.0 -1021.0,1.0 -1022.0,1.0 -1023.0,1.0 -1024.0,1.0 -1025.0,1.0 -1026.0,1.0 -1027.0,1.0 -1028.0,1.0 -1029.0,1.0 -1030.0,1.0 -1031.0,1.0 -1032.0,1.0 -1033.0,1.0 -1034.0,1.0 -1035.0,1.0 -1036.0,1.0 -1037.0,1.0 -1038.0,1.0 -1039.0,1.0 -1040.0,1.0 -1041.0,1.0 -1042.0,1.0 -1043.0,1.0 -1044.0,1.0 -1045.0,1.0 -1046.0,1.0 -1047.0,1.0 -1048.0,1.0 -1049.0,1.0 -1050.0,1.0 -1051.0,1.0 -1052.0,1.0 -1053.0,1.0 -1054.0,1.0 -1055.0,1.0 -1056.0,1.0 -1057.0,1.0 -1058.0,1.0 -1059.0,1.0 -1060.0,1.0 -1061.0,1.0 -1062.0,1.0 -1063.0,1.0 -1064.0,1.0 -1065.0,1.0 -1066.0,1.0 -1067.0,1.0 -1068.0,1.0 -1069.0,1.0 -1070.0,1.0 -1071.0,1.0 -1072.0,1.0 -1073.0,1.0 -1074.0,1.0 -1075.0,1.0 -1076.0,1.0 -1077.0,1.0 -1078.0,1.0 -1079.0,1.0 -1080.0,1.0 -1081.0,1.0 -1082.0,1.0 -1083.0,1.0 -1084.0,1.0 -1085.0,1.0 -1086.0,1.0 -1087.0,1.0 -1088.0,1.0 -1089.0,1.0 -1090.0,1.0 -1091.0,1.0 -1092.0,1.0 -1093.0,1.0 -1094.0,1.0 -1095.0,1.0 -1096.0,1.0 -1097.0,1.0 -1098.0,1.0 -1099.0,1.0 -1100.0,1.0 -1101.0,1.0 -1102.0,1.0 -1103.0,1.0 -1104.0,1.0 -1105.0,1.0 -1106.0,1.0 -1107.0,1.0 -1108.0,1.0 -1109.0,1.0 -1110.0,1.0 -1111.0,1.0 -1112.0,1.0 -1113.0,1.0 -1114.0,1.0 -1115.0,1.0 -1116.0,1.0 -1117.0,1.0 -1118.0,1.0 -1119.0,1.0 -1120.0,1.0 -1121.0,1.0 -1122.0,1.0 -1123.0,1.0 -1124.0,1.0 -1125.0,1.0 -1126.0,1.0 -1127.0,1.0 -1128.0,1.0 -1129.0,1.0 -1130.0,1.0 -1131.0,1.0 -1132.0,1.0 -1133.0,1.0 -1134.0,1.0 -1135.0,1.0 -1136.0,1.0 -1137.0,1.0 -1138.0,1.0 -1139.0,1.0 -1140.0,1.0 -1141.0,1.0 -1142.0,1.0 -1143.0,1.0 -1144.0,1.0 -1145.0,1.0 -1146.0,1.0 -1147.0,1.0 -1148.0,1.0 -1149.0,1.0 -1150.0,1.0 -1151.0,1.0 -1152.0,1.0 -1153.0,1.0 -1154.0,1.0 -1155.0,1.0 -1156.0,1.0 -1157.0,1.0 -1158.0,1.0 -1159.0,1.0 -1160.0,1.0 -1161.0,1.0 -1162.0,1.0 -1163.0,1.0 -1164.0,1.0 -1165.0,1.0 -1166.0,1.0 -1167.0,1.0 -1168.0,1.0 -1169.0,1.0 -1170.0,1.0 -1171.0,1.0 -1172.0,1.0 -1173.0,1.0 -1174.0,1.0 -1175.0,1.0 -1176.0,1.0 -1177.0,1.0 -1178.0,1.0 -1179.0,1.0 -1180.0,1.0 -1181.0,1.0 -1182.0,1.0 -1183.0,1.0 -1184.0,1.0 -1185.0,1.0 -1186.0,1.0 -1187.0,1.0 -1188.0,1.0 -1189.0,1.0 -1190.0,1.0 -1191.0,1.0 -1192.0,1.0 -1193.0,1.0 -1194.0,1.0 -1195.0,1.0 -1196.0,1.0 -1197.0,1.0 -1198.0,1.0 -1199.0,1.0 -1200.0,1.0 -1201.0,1.0 -1202.0,1.0 -1203.0,1.0 -1204.0,1.0 -1205.0,1.0 -1206.0,1.0 -1207.0,1.0 -1208.0,1.0 -1209.0,1.0 -1210.0,1.0 -1211.0,1.0 -1212.0,1.0 -1213.0,1.0 -1214.0,1.0 -1215.0,1.0 -1216.0,1.0 -1217.0,1.0 -1218.0,1.0 -1219.0,1.0 -1220.0,1.0 -1221.0,1.0 -1222.0,1.0 -1223.0,1.0 -1224.0,1.0 -1225.0,1.0 -1226.0,1.0 -1227.0,1.0 -1228.0,1.0 -1229.0,1.0 -1230.0,1.0 -1231.0,1.0 -1232.0,1.0 -1233.0,1.0 -1234.0,1.0 -1235.0,1.0 -1236.0,1.0 -1237.0,1.0 -1238.0,1.0 -1239.0,1.0 -1240.0,1.0 -1241.0,1.0 -1242.0,1.0 -1243.0,1.0 -1244.0,1.0 -1245.0,1.0 -1246.0,1.0 -1247.0,1.0 -1248.0,1.0 -1249.0,1.0 -1250.0,1.0 -1251.0,1.0 -1252.0,1.0 -1253.0,1.0 -1254.0,1.0 -1255.0,1.0 -1256.0,1.0 -1257.0,1.0 -1258.0,1.0 -1259.0,1.0 -1260.0,1.0 -1261.0,1.0 -1262.0,1.0 -1263.0,1.0 -1264.0,1.0 -1265.0,1.0 -1266.0,1.0 -1267.0,1.0 -1268.0,1.0 -1269.0,1.0 -1270.0,1.0 -1271.0,1.0 -1272.0,1.0 -1273.0,1.0 -1274.0,1.0 -1275.0,1.0 -1276.0,1.0 -1277.0,1.0 -1278.0,1.0 -1279.0,1.0 -1280.0,1.0 -1281.0,1.0 -1282.0,1.0 -1283.0,1.0 -1284.0,1.0 -1285.0,1.0 -1286.0,1.0 -1287.0,1.0 -1288.0,1.0 -1289.0,1.0 -1290.0,1.0 -1291.0,1.0 -1292.0,1.0 -1293.0,1.0 -1294.0,1.0 -1295.0,1.0 -1296.0,1.0 -1297.0,1.0 -1298.0,1.0 -1299.0,1.0 -1300.0,1.0 -1301.0,1.0 -1302.0,1.0 -1303.0,1.0 -1304.0,1.0 -1305.0,1.0 -1306.0,1.0 -1307.0,1.0 -1308.0,1.0 -1309.0,1.0 -1310.0,1.0 -1311.0,1.0 -1312.0,1.0 -1313.0,1.0 -1314.0,1.0 -1315.0,1.0 -1316.0,1.0 -1317.0,1.0 -1318.0,1.0 -1319.0,1.0 -1320.0,1.0 -1321.0,1.0 -1322.0,1.0 -1323.0,1.0 -1324.0,1.0 -1325.0,1.0 -1326.0,1.0 -1327.0,1.0 -1328.0,1.0 -1329.0,1.0 -1330.0,1.0 -1331.0,1.0 -1332.0,1.0 -1333.0,1.0 -1334.0,1.0 -1335.0,1.0 -1336.0,1.0 -1337.0,1.0 -1338.0,1.0 -1339.0,1.0 -1340.0,1.0 -1341.0,1.0 -1342.0,1.0 -1343.0,1.0 -1344.0,1.0 -1345.0,1.0 -1346.0,1.0 -1347.0,1.0 -1348.0,1.0 -1349.0,1.0 -1350.0,1.0 -1351.0,1.0 -1352.0,1.0 -1353.0,1.0 -1354.0,1.0 -1355.0,1.0 -1356.0,1.0 -1357.0,1.0 -1358.0,1.0 -1359.0,1.0 -1360.0,1.0 -1361.0,1.0 -1362.0,1.0 -1363.0,1.0 -1364.0,1.0 -1365.0,1.0 -1366.0,1.0 -1367.0,1.0 -1368.0,1.0 -1369.0,1.0 -1370.0,1.0 -1371.0,1.0 -1372.0,1.0 -1373.0,1.0 -1374.0,1.0 -1375.0,1.0 -1376.0,1.0 -1377.0,1.0 -1378.0,1.0 -1379.0,1.0 -1380.0,1.0 -1381.0,1.0 -1382.0,1.0 -1383.0,1.0 -1384.0,1.0 -1385.0,1.0 -1386.0,1.0 -1387.0,1.0 -1388.0,1.0 -1389.0,1.0 -1390.0,1.0 -1391.0,1.0 -1392.0,1.0 -1393.0,1.0 -1394.0,1.0 -1395.0,1.0 -1396.0,1.0 -1397.0,1.0 -1398.0,1.0 -1399.0,1.0 -1400.0,1.0 -1401.0,1.0 -1402.0,1.0 -1403.0,1.0 -1404.0,1.0 -1405.0,1.0 -1406.0,1.0 -1407.0,1.0 -1408.0,1.0 -1409.0,1.0 -1410.0,1.0 -1411.0,1.0 -1412.0,1.0 -1413.0,1.0 -1414.0,1.0 -1415.0,1.0 -1416.0,1.0 -1417.0,1.0 -1418.0,1.0 -1419.0,1.0 -1420.0,1.0 -1421.0,1.0 -1422.0,1.0 -1423.0,1.0 -1424.0,1.0 -1425.0,1.0 -1426.0,1.0 -1427.0,1.0 -1428.0,1.0 -1429.0,1.0 -1430.0,1.0 -1431.0,1.0 -1432.0,1.0 -1433.0,1.0 -1434.0,1.0 -1435.0,1.0 -1436.0,1.0 -1437.0,1.0 -1438.0,1.0 -1439.0,1.0 -1440.0,1.0 -1441.0,1.0 -1442.0,1.0 -1443.0,1.0 -1444.0,1.0 -1445.0,1.0 -1446.0,1.0 -1447.0,1.0 -1448.0,1.0 -1449.0,1.0 -1450.0,1.0 -1451.0,1.0 -1452.0,1.0 -1453.0,1.0 -1454.0,1.0 -1455.0,1.0 -1456.0,1.0 -1457.0,1.0 -1458.0,1.0 -1459.0,1.0 -1460.0,1.0 -1461.0,1.0 -1462.0,1.0 -1463.0,1.0 -1464.0,1.0 -1465.0,1.0 -1466.0,1.0 -1467.0,1.0 -1468.0,1.0 -1469.0,1.0 -1470.0,1.0 -1471.0,1.0 -1472.0,1.0 -1473.0,1.0 -1474.0,1.0 -1475.0,1.0 -1476.0,1.0 -1477.0,1.0 -1478.0,1.0 -1479.0,1.0 -1480.0,1.0 -1481.0,1.0 -1482.0,1.0 -1483.0,1.0 -1484.0,1.0 -1485.0,1.0 -1486.0,1.0 -1487.0,1.0 -1488.0,1.0 -1489.0,1.0 -1490.0,1.0 -1491.0,1.0 -1492.0,1.0 -1493.0,1.0 -1494.0,1.0 -1495.0,1.0 -1496.0,1.0 -1497.0,1.0 -1498.0,1.0 -1499.0,1.0 -1500.0,1.0 -1501.0,1.0 -1502.0,1.0 -1503.0,1.0 -1504.0,1.0 -1505.0,1.0 -1506.0,1.0 -1507.0,1.0 -1508.0,1.0 -1509.0,1.0 -1510.0,1.0 -1511.0,1.0 -1512.0,1.0 -1513.0,1.0 -1514.0,1.0 -1515.0,1.0 -1516.0,1.0 -1517.0,1.0 -1518.0,1.0 -1519.0,1.0 -1520.0,1.0 -1521.0,1.0 -1522.0,1.0 -1523.0,1.0 -1524.0,1.0 -1525.0,1.0 -1526.0,1.0 -1527.0,1.0 -1528.0,1.0 -1529.0,1.0 -1530.0,1.0 -1531.0,1.0 -1532.0,1.0 -1533.0,1.0 -1534.0,1.0 -1535.0,1.0 -1536.0,1.0 -1537.0,1.0 -1538.0,1.0 -1539.0,1.0 -1540.0,1.0 -1541.0,1.0 -1542.0,1.0 -1543.0,1.0 -1544.0,1.0 -1545.0,1.0 -1546.0,1.0 -1547.0,1.0 -1548.0,1.0 -1549.0,1.0 -1550.0,1.0 -1551.0,1.0 -1552.0,1.0 -1553.0,1.0 -1554.0,1.0 -1555.0,1.0 -1556.0,1.0 -1557.0,1.0 -1558.0,1.0 -1559.0,1.0 -1560.0,1.0 -1561.0,1.0 -1562.0,1.0 -1563.0,1.0 -1564.0,1.0 -1565.0,1.0 -1566.0,1.0 -1567.0,1.0 -1568.0,1.0 -1569.0,1.0 -1570.0,1.0 -1571.0,1.0 -1572.0,1.0 -1573.0,1.0 -1574.0,1.0 -1575.0,1.0 -1576.0,1.0 -1577.0,1.0 -1578.0,1.0 -1579.0,1.0 -1580.0,1.0 -1581.0,1.0 -1582.0,1.0 -1583.0,1.0 -1584.0,1.0 -1585.0,1.0 -1586.0,1.0 -1587.0,1.0 -1588.0,1.0 -1589.0,1.0 -1590.0,1.0 -1591.0,1.0 -1592.0,1.0 -1593.0,1.0 -1594.0,1.0 -1595.0,1.0 -1596.0,1.0 -1597.0,1.0 -1598.0,1.0 -1599.0,1.0 -1600.0,1.0 -1601.0,1.0 -1602.0,1.0 -1603.0,1.0 -1604.0,1.0 -1605.0,1.0 -1606.0,1.0 -1607.0,1.0 -1608.0,1.0 -1609.0,1.0 -1610.0,1.0 -1611.0,1.0 -1612.0,1.0 -1613.0,1.0 -1614.0,1.0 -1615.0,1.0 -1616.0,1.0 -1617.0,1.0 -1618.0,1.0 -1619.0,1.0 -1620.0,1.0 -1621.0,1.0 -1622.0,1.0 -1623.0,1.0 -1624.0,1.0 -1625.0,1.0 -1626.0,1.0 -1627.0,1.0 -1628.0,1.0 -1629.0,1.0 -1630.0,1.0 -1631.0,1.0 -1632.0,1.0 -1633.0,1.0 -1634.0,1.0 -1635.0,1.0 -1636.0,1.0 -1637.0,1.0 -1638.0,1.0 -1639.0,1.0 -1640.0,1.0 -1641.0,1.0 -1642.0,1.0 -1643.0,1.0 -1644.0,1.0 -1645.0,1.0 -1646.0,1.0 -1647.0,1.0 -1648.0,1.0 -1649.0,1.0 -1650.0,1.0 -1651.0,1.0 -1652.0,1.0 -1653.0,1.0 -1654.0,1.0 -1655.0,1.0 -1656.0,1.0 -1657.0,1.0 -1658.0,1.0 -1659.0,1.0 -1660.0,1.0 -1661.0,1.0 -1662.0,1.0 -1663.0,1.0 -1664.0,1.0 -1665.0,1.0 -1666.0,1.0 -1667.0,1.0 -1668.0,1.0 -1669.0,1.0 -1670.0,1.0 -1671.0,1.0 -1672.0,1.0 -1673.0,1.0 -1674.0,1.0 -1675.0,1.0 -1676.0,1.0 -1677.0,1.0 -1678.0,1.0 -1679.0,1.0 -1680.0,1.0 -1681.0,1.0 -1682.0,1.0 -1683.0,1.0 -1684.0,1.0 -1685.0,1.0 -1686.0,1.0 -1687.0,1.0 -1688.0,1.0 -1689.0,1.0 -1690.0,1.0 -1691.0,1.0 -1692.0,1.0 -1693.0,1.0 -1694.0,1.0 -1695.0,1.0 -1696.0,1.0 -1697.0,1.0 -1698.0,1.0 -1699.0,1.0 -1700.0,1.0 -1701.0,1.0 -1702.0,1.0 -1703.0,1.0 -1704.0,1.0 -1705.0,1.0 -1706.0,1.0 -1707.0,1.0 -1708.0,1.0 -1709.0,1.0 -1710.0,1.0 -1711.0,1.0 -1712.0,1.0 -1713.0,1.0 -1714.0,1.0 -1715.0,1.0 -1716.0,1.0 -1717.0,1.0 -1718.0,1.0 -1719.0,1.0 -1720.0,1.0 -1721.0,1.0 -1722.0,1.0 -1723.0,1.0 -1724.0,1.0 -1725.0,1.0 -1726.0,1.0 -1727.0,1.0 -1728.0,1.0 -1729.0,1.0 -1730.0,1.0 -1731.0,1.0 -1732.0,1.0 -1733.0,1.0 -1734.0,1.0 -1735.0,1.0 -1736.0,1.0 -1737.0,1.0 -1738.0,1.0 -1739.0,1.0 -1740.0,1.0 -1741.0,1.0 -1742.0,1.0 -1743.0,1.0 -1744.0,1.0 -1745.0,1.0 -1746.0,1.0 -1747.0,1.0 -1748.0,1.0 -1749.0,1.0 -1750.0,1.0 -1751.0,1.0 -1752.0,1.0 -1753.0,1.0 -1754.0,1.0 -1755.0,1.0 -1756.0,1.0 -1757.0,1.0 -1758.0,1.0 -1759.0,1.0 -1760.0,1.0 -1761.0,1.0 -1762.0,1.0 -1763.0,1.0 -1764.0,1.0 -1765.0,1.0 -1766.0,1.0 -1767.0,1.0 -1768.0,1.0 -1769.0,1.0 -1770.0,1.0 -1771.0,1.0 -1772.0,1.0 -1773.0,1.0 -1774.0,1.0 -1775.0,1.0 -1776.0,1.0 -1777.0,1.0 -1778.0,1.0 -1779.0,1.0 -1780.0,1.0 -1781.0,1.0 -1782.0,1.0 -1783.0,1.0 -1784.0,1.0 -1785.0,1.0 -1786.0,1.0 -1787.0,1.0 -1788.0,1.0 -1789.0,1.0 -1790.0,1.0 -1791.0,1.0 -1792.0,1.0 -1793.0,1.0 -1794.0,1.0 -1795.0,1.0 -1796.0,1.0 -1797.0,1.0 -1798.0,1.0 -1799.0,1.0 -1800.0,1.0 -1801.0,1.0 -1802.0,1.0 -1803.0,1.0 -1804.0,1.0 -1805.0,1.0 -1806.0,1.0 -1807.0,1.0 -1808.0,1.0 -1809.0,1.0 -1810.0,1.0 -1811.0,1.0 -1812.0,1.0 -1813.0,1.0 -1814.0,1.0 -1815.0,1.0 -1816.0,1.0 -1817.0,1.0 -1818.0,1.0 -1819.0,1.0 -1820.0,1.0 -1821.0,1.0 -1822.0,1.0 -1823.0,1.0 -1824.0,1.0 -1825.0,1.0 -1826.0,1.0 -1827.0,1.0 -1828.0,1.0 -1829.0,1.0 -1830.0,1.0 -1831.0,1.0 -1832.0,1.0 -1833.0,1.0 -1834.0,1.0 -1835.0,1.0 -1836.0,1.0 -1837.0,1.0 -1838.0,1.0 -1839.0,1.0 -1840.0,1.0 -1841.0,1.0 -1842.0,1.0 -1843.0,1.0 -1844.0,1.0 -1845.0,1.0 -1846.0,1.0 -1847.0,1.0 -1848.0,1.0 -1849.0,1.0 -1850.0,1.0 -1851.0,1.0 -1852.0,1.0 -1853.0,1.0 -1854.0,1.0 -1855.0,1.0 -1856.0,1.0 -1857.0,1.0 -1858.0,1.0 -1859.0,1.0 -1860.0,1.0 -1861.0,1.0 -1862.0,1.0 -1863.0,1.0 -1864.0,1.0 -1865.0,1.0 -1866.0,1.0 -1867.0,1.0 -1868.0,1.0 -1869.0,1.0 -1870.0,1.0 -1871.0,1.0 -1872.0,1.0 -1873.0,1.0 -1874.0,1.0 -1875.0,1.0 -1876.0,1.0 -1877.0,1.0 -1878.0,1.0 -1879.0,1.0 -1880.0,1.0 -1881.0,1.0 -1882.0,1.0 -1883.0,1.0 -1884.0,1.0 -1885.0,1.0 -1886.0,1.0 -1887.0,1.0 -1888.0,1.0 -1889.0,1.0 -1890.0,1.0 -1891.0,1.0 -1892.0,1.0 -1893.0,1.0 -1894.0,1.0 -1895.0,1.0 -1896.0,1.0 -1897.0,1.0 -1898.0,1.0 -1899.0,1.0 -1900.0,1.0 -1901.0,1.0 -1902.0,1.0 -1903.0,1.0 -1904.0,1.0 -1905.0,1.0 -1906.0,1.0 -1907.0,1.0 -1908.0,1.0 -1909.0,1.0 -1910.0,1.0 -1911.0,1.0 -1912.0,1.0 -1913.0,1.0 -1914.0,1.0 -1915.0,1.0 -1916.0,1.0 -1917.0,1.0 -1918.0,1.0 -1919.0,1.0 -1920.0,1.0 -1921.0,1.0 -1922.0,1.0 -1923.0,1.0 -1924.0,1.0 -1925.0,1.0 -1926.0,1.0 -1927.0,1.0 -1928.0,1.0 -1929.0,1.0 -1930.0,1.0 -1931.0,1.0 -1932.0,1.0 -1933.0,1.0 -1934.0,1.0 -1935.0,1.0 -1936.0,1.0 -1937.0,1.0 -1938.0,1.0 -1939.0,1.0 -1940.0,1.0 -1941.0,1.0 -1942.0,1.0 -1943.0,1.0 -1944.0,1.0 -1945.0,1.0 -1946.0,1.0 -1947.0,1.0 -1948.0,1.0 -1949.0,1.0 -1950.0,1.0 -1951.0,1.0 -1952.0,1.0 -1953.0,1.0 -1954.0,1.0 -1955.0,1.0 -1956.0,1.0 -1957.0,1.0 -1958.0,1.0 -1959.0,1.0 -1960.0,1.0 -1961.0,1.0 -1962.0,1.0 -1963.0,1.0 -1964.0,1.0 -1965.0,1.0 -1966.0,1.0 -1967.0,1.0 -1968.0,1.0 -1969.0,1.0 -1970.0,1.0 -1971.0,1.0 -1972.0,1.0 -1973.0,1.0 -1974.0,1.0 -1975.0,1.0 -1976.0,1.0 -1977.0,1.0 -1978.0,1.0 -1979.0,1.0 -1980.0,1.0 -1981.0,1.0 -1982.0,1.0 -1983.0,1.0 -1984.0,1.0 -1985.0,1.0 -1986.0,1.0 -1987.0,1.0 -1988.0,1.0 -1989.0,1.0 -1990.0,1.0 -1991.0,1.0 -1992.0,1.0 -1993.0,1.0 -1994.0,1.0 -1995.0,1.0 -1996.0,1.0 -1997.0,1.0 -1998.0,1.0 -1999.0,1.0 -2000.0,1.0 -2001.0,1.0 -2002.0,1.0 -2003.0,1.0 -2004.0,1.0 -2005.0,1.0 -2006.0,1.0 -2007.0,1.0 -2008.0,1.0 -2009.0,1.0 -2010.0,1.0 -2011.0,1.0 -2012.0,1.0 -2013.0,1.0 -2014.0,1.0 -2015.0,1.0 -2016.0,1.0 -2017.0,1.0 -2018.0,1.0 -2019.0,1.0 -2020.0,1.0 -2021.0,1.0 -2022.0,1.0 -2023.0,1.0 -2024.0,1.0 -2025.0,1.0 -2026.0,1.0 -2027.0,1.0 -2028.0,1.0 -2029.0,1.0 -2030.0,1.0 -2031.0,1.0 -2032.0,1.0 -2033.0,1.0 -2034.0,1.0 -2035.0,1.0 -2036.0,1.0 -2037.0,1.0 -2038.0,1.0 -2039.0,1.0 -2040.0,1.0 -2041.0,1.0 -2042.0,1.0 -2043.0,1.0 -2044.0,1.0 -2045.0,1.0 -2046.0,1.0 -2047.0,1.0 -2048.0,1.0 -2049.0,1.0 -2050.0,1.0 -2051.0,1.0 -2052.0,1.0 -2053.0,1.0 -2054.0,1.0 -2055.0,1.0 -2056.0,1.0 -2057.0,1.0 -2058.0,1.0 -2059.0,1.0 -2060.0,1.0 -2061.0,1.0 -2062.0,1.0 -2063.0,1.0 -2064.0,1.0 -2065.0,1.0 -2066.0,1.0 -2067.0,1.0 -2068.0,1.0 -2069.0,1.0 -2070.0,1.0 -2071.0,1.0 -2072.0,1.0 -2073.0,1.0 -2074.0,1.0 -2075.0,1.0 -2076.0,1.0 -2077.0,1.0 -2078.0,1.0 -2079.0,1.0 -2080.0,1.0 -2081.0,1.0 -2082.0,1.0 -2083.0,1.0 -2084.0,1.0 -2085.0,1.0 -2086.0,1.0 -2087.0,1.0 -2088.0,1.0 -2089.0,1.0 -2090.0,1.0 -2091.0,1.0 -2092.0,1.0 -2093.0,1.0 -2094.0,1.0 -2095.0,1.0 -2096.0,1.0 -2097.0,1.0 -2098.0,1.0 -2099.0,1.0 -2100.0,1.0 -2101.0,1.0 -2102.0,1.0 -2103.0,1.0 -2104.0,1.0 -2105.0,1.0 -2106.0,1.0 -2107.0,1.0 -2108.0,1.0 -2109.0,1.0 -2110.0,1.0 -2111.0,1.0 -2112.0,1.0 -2113.0,1.0 -2114.0,1.0 -2115.0,1.0 -2116.0,1.0 -2117.0,1.0 -2118.0,1.0 -2119.0,1.0 -2120.0,1.0 -2121.0,1.0 -2122.0,1.0 -2123.0,1.0 -2124.0,1.0 -2125.0,1.0 -2126.0,1.0 -2127.0,1.0 -2128.0,1.0 -2129.0,1.0 -2130.0,1.0 -2131.0,1.0 -2132.0,1.0 -2133.0,1.0 -2134.0,1.0 -2135.0,1.0 -2136.0,1.0 -2137.0,1.0 -2138.0,1.0 -2139.0,1.0 -2140.0,1.0 -2141.0,1.0 -2142.0,1.0 -2143.0,1.0 -2144.0,1.0 -2145.0,1.0 -2146.0,1.0 -2147.0,1.0 -2148.0,1.0 -2149.0,1.0 -2150.0,1.0 -2151.0,1.0 -2152.0,1.0 -2153.0,1.0 -2154.0,1.0 -2155.0,1.0 -2156.0,1.0 -2157.0,1.0 -2158.0,1.0 -2159.0,1.0 -2160.0,1.0 -2161.0,1.0 -2162.0,1.0 -2163.0,1.0 -2164.0,1.0 -2165.0,1.0 -2166.0,1.0 -2167.0,1.0 -2168.0,1.0 -2169.0,1.0 -2170.0,1.0 -2171.0,1.0 -2172.0,1.0 -2173.0,1.0 -2174.0,1.0 -2175.0,1.0 -2176.0,1.0 -2177.0,1.0 -2178.0,1.0 -2179.0,1.0 -2180.0,1.0 -2181.0,1.0 -2182.0,1.0 -2183.0,1.0 -2184.0,1.0 -2185.0,1.0 -2186.0,1.0 -2187.0,1.0 -2188.0,1.0 -2189.0,1.0 -2190.0,1.0 -2191.0,1.0 -2192.0,1.0 -2193.0,1.0 -2194.0,1.0 -2195.0,1.0 -2196.0,1.0 -2197.0,1.0 -2198.0,1.0 -2199.0,1.0 -2200.0,1.0 -2201.0,1.0 -2202.0,1.0 -2203.0,1.0 -2204.0,1.0 -2205.0,1.0 -2206.0,1.0 -2207.0,1.0 -2208.0,1.0 -2209.0,1.0 -2210.0,1.0 -2211.0,1.0 -2212.0,1.0 -2213.0,1.0 -2214.0,1.0 -2215.0,1.0 -2216.0,1.0 -2217.0,1.0 -2218.0,1.0 -2219.0,1.0 -2220.0,1.0 -2221.0,1.0 -2222.0,1.0 -2223.0,1.0 -2224.0,1.0 -2225.0,1.0 -2226.0,1.0 -2227.0,1.0 -2228.0,1.0 -2229.0,1.0 -2230.0,1.0 -2231.0,1.0 -2232.0,1.0 -2233.0,1.0 -2234.0,1.0 -2235.0,1.0 -2236.0,1.0 -2237.0,1.0 -2238.0,1.0 -2239.0,1.0 -2240.0,1.0 -2241.0,1.0 -2242.0,1.0 -2243.0,1.0 -2244.0,1.0 -2245.0,1.0 -2246.0,1.0 -2247.0,1.0 -2248.0,1.0 -2249.0,1.0 -2250.0,1.0 -2251.0,1.0 -2252.0,1.0 -2253.0,1.0 -2254.0,1.0 -2255.0,1.0 -2256.0,1.0 -2257.0,1.0 -2258.0,1.0 -2259.0,1.0 -2260.0,1.0 -2261.0,1.0 -2262.0,1.0 -2263.0,1.0 -2264.0,1.0 -2265.0,1.0 -2266.0,1.0 -2267.0,1.0 -2268.0,1.0 -2269.0,1.0 -2270.0,1.0 -2271.0,1.0 -2272.0,1.0 -2273.0,1.0 -2274.0,1.0 -2275.0,1.0 -2276.0,1.0 -2277.0,1.0 -2278.0,1.0 -2279.0,1.0 -2280.0,1.0 -2281.0,1.0 -2282.0,1.0 -2283.0,1.0 -2284.0,1.0 -2285.0,1.0 -2286.0,1.0 -2287.0,1.0 -2288.0,1.0 -2289.0,1.0 -2290.0,1.0 -2291.0,1.0 -2292.0,1.0 -2293.0,1.0 -2294.0,1.0 -2295.0,1.0 -2296.0,1.0 -2297.0,1.0 -2298.0,1.0 -2299.0,1.0 -2300.0,1.0 -2301.0,1.0 -2302.0,1.0 -2303.0,1.0 -2304.0,1.0 -2305.0,1.0 -2306.0,1.0 -2307.0,1.0 -2308.0,1.0 -2309.0,1.0 -2310.0,1.0 -2311.0,1.0 -2312.0,1.0 -2313.0,1.0 -2314.0,1.0 -2315.0,1.0 -2316.0,1.0 -2317.0,1.0 -2318.0,1.0 -2319.0,1.0 -2320.0,1.0 -2321.0,1.0 -2322.0,1.0 -2323.0,1.0 -2324.0,1.0 -2325.0,1.0 -2326.0,1.0 -2327.0,1.0 -2328.0,1.0 -2329.0,1.0 -2330.0,1.0 -2331.0,1.0 -2332.0,1.0 -2333.0,1.0 -2334.0,1.0 -2335.0,1.0 -2336.0,1.0 -2337.0,1.0 -2338.0,1.0 -2339.0,1.0 -2340.0,1.0 -2341.0,1.0 -2342.0,1.0 -2343.0,1.0 -2344.0,1.0 -2345.0,1.0 -2346.0,1.0 -2347.0,1.0 -2348.0,1.0 -2349.0,1.0 -2350.0,1.0 -2351.0,1.0 -2352.0,1.0 -2353.0,1.0 -2354.0,1.0 -2355.0,1.0 -2356.0,1.0 -2357.0,1.0 -2358.0,1.0 -2359.0,1.0 -2360.0,1.0 -2361.0,1.0 -2362.0,1.0 -2363.0,1.0 -2364.0,1.0 -2365.0,1.0 -2366.0,1.0 -2367.0,1.0 -2368.0,1.0 -2369.0,1.0 -2370.0,1.0 -2371.0,1.0 -2372.0,1.0 -2373.0,1.0 -2374.0,1.0 -2375.0,1.0 -2376.0,1.0 -2377.0,1.0 -2378.0,1.0 -2379.0,1.0 -2380.0,1.0 -2381.0,1.0 -2382.0,1.0 -2383.0,1.0 -2384.0,1.0 -2385.0,1.0 -2386.0,1.0 -2387.0,1.0 -2388.0,1.0 -2389.0,1.0 -2390.0,1.0 -2391.0,1.0 -2392.0,1.0 -2393.0,1.0 -2394.0,1.0 -2395.0,1.0 -2396.0,1.0 -2397.0,1.0 -2398.0,1.0 -2399.0,1.0 -2400.0,1.0 -2401.0,1.0 -2402.0,1.0 -2403.0,1.0 -2404.0,1.0 -2405.0,1.0 -2406.0,1.0 -2407.0,1.0 -2408.0,1.0 -2409.0,1.0 -2410.0,1.0 -2411.0,1.0 -2412.0,1.0 -2413.0,1.0 -2414.0,1.0 -2415.0,1.0 -2416.0,1.0 -2417.0,1.0 -2418.0,1.0 -2419.0,1.0 -2420.0,1.0 -2421.0,1.0 -2422.0,1.0 -2423.0,1.0 -2424.0,1.0 -2425.0,1.0 -2426.0,1.0 -2427.0,1.0 -2428.0,1.0 -2429.0,1.0 -2430.0,1.0 -2431.0,1.0 -2432.0,1.0 -2433.0,1.0 -2434.0,1.0 -2435.0,1.0 -2436.0,1.0 -2437.0,1.0 -2438.0,1.0 -2439.0,1.0 -2440.0,1.0 -2441.0,1.0 -2442.0,1.0 -2443.0,1.0 -2444.0,1.0 -2445.0,1.0 -2446.0,1.0 -2447.0,1.0 -2448.0,1.0 -2449.0,1.0 -2450.0,1.0 -2451.0,1.0 -2452.0,1.0 -2453.0,1.0 -2454.0,1.0 -2455.0,1.0 -2456.0,1.0 -2457.0,1.0 -2458.0,1.0 -2459.0,1.0 -2460.0,1.0 -2461.0,1.0 -2462.0,1.0 -2463.0,1.0 -2464.0,1.0 -2465.0,1.0 -2466.0,1.0 -2467.0,1.0 -2468.0,1.0 -2469.0,1.0 -2470.0,1.0 -2471.0,1.0 -2472.0,1.0 -2473.0,1.0 -2474.0,1.0 -2475.0,1.0 -2476.0,1.0 -2477.0,1.0 -2478.0,1.0 -2479.0,1.0 -2480.0,1.0 -2481.0,1.0 -2482.0,1.0 -2483.0,1.0 -2484.0,1.0 -2485.0,1.0 -2486.0,1.0 -2487.0,1.0 -2488.0,1.0 -2489.0,1.0 -2490.0,1.0 -2491.0,1.0 -2492.0,1.0 -2493.0,1.0 -2494.0,1.0 -2495.0,1.0 -2496.0,1.0 -2497.0,1.0 -2498.0,1.0 -2499.0,1.0 -2500.0,1.0 -2501.0,1.0 -2502.0,1.0 -2503.0,1.0 -2504.0,1.0 -2505.0,1.0 -2506.0,1.0 -2507.0,1.0 -2508.0,1.0 -2509.0,1.0 -2510.0,1.0 -2511.0,1.0 -2512.0,1.0 -2513.0,1.0 -2514.0,1.0 -2515.0,1.0 -2516.0,1.0 -2517.0,1.0 -2518.0,1.0 -2519.0,1.0 -2520.0,1.0 -2521.0,1.0 -2522.0,1.0 -2523.0,1.0 -2524.0,1.0 -2525.0,1.0 -2526.0,1.0 -2527.0,1.0 -2528.0,1.0 -2529.0,1.0 -2530.0,1.0 -2531.0,1.0 -2532.0,1.0 -2533.0,1.0 -2534.0,1.0 -2535.0,1.0 -2536.0,1.0 -2537.0,1.0 -2538.0,1.0 -2539.0,1.0 -2540.0,1.0 -2541.0,1.0 -2542.0,1.0 -2543.0,1.0 -2544.0,1.0 -2545.0,1.0 -2546.0,1.0 -2547.0,1.0 -2548.0,1.0 -2549.0,1.0 -2550.0,1.0 -2551.0,1.0 -2552.0,1.0 -2553.0,1.0 -2554.0,1.0 -2555.0,1.0 -2556.0,1.0 -2557.0,1.0 -2558.0,1.0 -2559.0,1.0 -2560.0,1.0 -2561.0,1.0 -2562.0,1.0 -2563.0,1.0 -2564.0,1.0 -2565.0,1.0 -2566.0,1.0 -2567.0,1.0 -2568.0,1.0 -2569.0,1.0 -2570.0,1.0 -2571.0,1.0 -2572.0,1.0 -2573.0,1.0 -2574.0,1.0 -2575.0,1.0 -2576.0,1.0 -2577.0,1.0 -2578.0,1.0 -2579.0,1.0 -2580.0,1.0 -2581.0,1.0 -2582.0,1.0 -2583.0,1.0 -2584.0,1.0 -2585.0,1.0 -2586.0,1.0 -2587.0,1.0 -2588.0,1.0 -2589.0,1.0 -2590.0,1.0 -2591.0,1.0 -2592.0,1.0 -2593.0,1.0 -2594.0,1.0 -2595.0,1.0 -2596.0,1.0 -2597.0,1.0 -2598.0,1.0 -2599.0,1.0 -2600.0,1.0 -2601.0,1.0 -2602.0,1.0 -2603.0,1.0 -2604.0,1.0 -2605.0,1.0 -2606.0,1.0 -2607.0,1.0 -2608.0,1.0 -2609.0,1.0 -2610.0,1.0 -2611.0,1.0 -2612.0,1.0 -2613.0,1.0 -2614.0,1.0 -2615.0,1.0 -2616.0,1.0 -2617.0,1.0 -2618.0,1.0 -2619.0,1.0 -2620.0,1.0 -2621.0,1.0 -2622.0,1.0 -2623.0,1.0 -2624.0,1.0 -2625.0,1.0 -2626.0,1.0 -2627.0,1.0 -2628.0,1.0 -2629.0,1.0 -2630.0,1.0 -2631.0,1.0 -2632.0,1.0 -2633.0,1.0 -2634.0,1.0 -2635.0,1.0 -2636.0,1.0 -2637.0,1.0 -2638.0,1.0 -2639.0,1.0 -2640.0,1.0 -2641.0,1.0 -2642.0,1.0 -2643.0,1.0 -2644.0,1.0 -2645.0,1.0 -2646.0,1.0 -2647.0,1.0 -2648.0,1.0 -2649.0,1.0 -2650.0,1.0 -2651.0,1.0 -2652.0,1.0 -2653.0,1.0 -2654.0,1.0 -2655.0,1.0 -2656.0,1.0 -2657.0,1.0 -2658.0,1.0 -2659.0,1.0 -2660.0,1.0 -2661.0,1.0 -2662.0,1.0 -2663.0,1.0 -2664.0,1.0 -2665.0,1.0 -2666.0,1.0 -2667.0,1.0 -2668.0,1.0 -2669.0,1.0 -2670.0,1.0 -2671.0,1.0 -2672.0,1.0 -2673.0,1.0 -2674.0,1.0 -2675.0,1.0 -2676.0,1.0 -2677.0,1.0 -2678.0,1.0 -2679.0,1.0 -2680.0,1.0 -2681.0,1.0 -2682.0,1.0 -2683.0,1.0 -2684.0,1.0 -2685.0,1.0 -2686.0,1.0 -2687.0,1.0 -2688.0,1.0 -2689.0,1.0 -2690.0,1.0 -2691.0,1.0 -2692.0,1.0 -2693.0,1.0 -2694.0,1.0 -2695.0,1.0 -2696.0,1.0 -2697.0,1.0 -2698.0,1.0 -2699.0,1.0 -2700.0,1.0 -2701.0,1.0 -2702.0,1.0 -2703.0,1.0 -2704.0,1.0 -2705.0,1.0 -2706.0,1.0 -2707.0,1.0 -2708.0,1.0 -2709.0,1.0 -2710.0,1.0 -2711.0,1.0 -2712.0,1.0 -2713.0,1.0 -2714.0,1.0 -2715.0,1.0 -2716.0,1.0 -2717.0,1.0 -2718.0,1.0 -2719.0,1.0 -2720.0,1.0 -2721.0,1.0 -2722.0,1.0 -2723.0,1.0 -2724.0,1.0 -2725.0,1.0 -2726.0,1.0 -2727.0,1.0 -2728.0,1.0 -2729.0,1.0 -2730.0,1.0 -2731.0,1.0 -2732.0,1.0 -2733.0,1.0 -2734.0,1.0 -2735.0,1.0 -2736.0,1.0 -2737.0,1.0 -2738.0,1.0 -2739.0,1.0 -2740.0,1.0 -2741.0,1.0 -2742.0,1.0 -2743.0,1.0 -2744.0,1.0 -2745.0,1.0 -2746.0,1.0 -2747.0,1.0 -2748.0,1.0 -2749.0,1.0 -2750.0,1.0 -2751.0,1.0 -2752.0,1.0 -2753.0,1.0 -2754.0,1.0 -2755.0,1.0 -2756.0,1.0 -2757.0,1.0 -2758.0,1.0 -2759.0,1.0 -2760.0,1.0 -2761.0,1.0 -2762.0,1.0 -2763.0,1.0 -2764.0,1.0 -2765.0,1.0 -2766.0,1.0 -2767.0,1.0 -2768.0,1.0 -2769.0,1.0 -2770.0,1.0 -2771.0,1.0 -2772.0,1.0 -2773.0,1.0 -2774.0,1.0 -2775.0,1.0 -2776.0,1.0 -2777.0,1.0 -2778.0,1.0 -2779.0,1.0 -2780.0,1.0 -2781.0,1.0 -2782.0,1.0 -2783.0,1.0 -2784.0,1.0 -2785.0,1.0 -2786.0,1.0 -2787.0,1.0 -2788.0,1.0 -2789.0,1.0 -2790.0,1.0 -2791.0,1.0 -2792.0,1.0 -2793.0,1.0 -2794.0,1.0 -2795.0,1.0 -2796.0,1.0 -2797.0,1.0 -2798.0,1.0 -2799.0,1.0 -2800.0,1.0 -2801.0,1.0 -2802.0,1.0 -2803.0,1.0 -2804.0,1.0 -2805.0,1.0 -2806.0,1.0 -2807.0,1.0 -2808.0,1.0 -2809.0,1.0 -2810.0,1.0 -2811.0,1.0 -2812.0,1.0 -2813.0,1.0 -2814.0,1.0 -2815.0,1.0 -2816.0,1.0 -2817.0,1.0 -2818.0,1.0 -2819.0,1.0 -2820.0,1.0 -2821.0,1.0 -2822.0,1.0 -2823.0,1.0 -2824.0,1.0 -2825.0,1.0 -2826.0,1.0 -2827.0,1.0 -2828.0,1.0 -2829.0,1.0 -2830.0,1.0 -2831.0,1.0 -2832.0,1.0 -2833.0,1.0 -2834.0,1.0 -2835.0,1.0 -2836.0,1.0 -2837.0,1.0 -2838.0,1.0 -2839.0,1.0 -2840.0,1.0 -2841.0,1.0 -2842.0,1.0 -2843.0,1.0 -2844.0,1.0 -2845.0,1.0 -2846.0,1.0 -2847.0,1.0 -2848.0,1.0 -2849.0,1.0 -2850.0,1.0 -2851.0,1.0 -2852.0,1.0 -2853.0,1.0 -2854.0,1.0350549278897234 -2855.0,1.0850549278897232 -2856.0,1.1350549278897233 -2857.0,1.1850549278897233 -2858.0,1.2350549278897234 -2859.0,1.2850549278897234 -2860.0,1.3350549278897232 -2861.0,1.3850549278897233 -2862.0,1.4350549278897233 -2863.0,1.4850549278897234 -2864.0,1.5350549278897234 -2865.0,1.5850549278897232 -2866.0,1.6350549278897235 -2867.0,1.6850549278897233 -2868.0,1.7350549278897234 -2869.0,1.7850549278897234 -2870.0,1.8350549278897232 -2871.0,1.8850549278897235 -2872.0,1.9350549278897233 -2873.0,1.9850549278897234 -2874.0,2.0350549278897234 -2875.0,2.0850549278897237 -2876.0,2.1350549278897235 -2877.0,2.1850549278897233 -2878.0,2.235054927889723 -2879.0,2.2850549278897234 -2880.0,2.3350549278897237 -2881.0,2.3850549278897235 -2882.0,2.4350549278897233 -2883.0,2.485054927889723 -2884.0,2.5350549278897234 -2885.0,2.5850549278897237 -2886.0,2.6350549278897235 -2887.0,2.6850549278897233 -2888.0,2.735054927889723 -2889.0,2.7850549278897234 -2890.0,2.8350549278897237 -2891.0,2.8850549278897235 -2892.0,2.9350549278897233 -2893.0,2.985054927889723 -2894.0,3.0350549278897234 -2895.0,3.0850549278897232 -2896.0,3.1350549278897235 -2897.0,3.1850549278897233 -2898.0,3.2350549278897236 -2899.0,3.2850549278897234 -2900.0,3.3350549278897232 -2901.0,3.3850549278897235 -2902.0,3.4350549278897233 -2903.0,3.4850549278897236 -2904.0,3.5350549278897234 -2905.0,3.5850549278897237 -2906.0,3.6350549278897235 -2907.0,3.6850549278897233 -2908.0,3.7350549278897236 -2909.0,3.7850549278897234 -2910.0,3.8350549278897237 -2911.0,3.8850549278897235 -2912.0,3.9350549278897233 -2913.0,3.9850549278897236 -2914.0,4.035054927889723 -2915.0,4.085054927889724 -2916.0,4.1350549278897235 -2917.0,4.185054927889723 -2918.0,4.235054927889724 -2919.0,4.285054927889723 -2920.0,4.335054927889724 -2921.0,4.3850549278897235 -2922.0,4.435054927889723 -2923.0,4.485054927889724 -2924.0,4.535054927889723 -2925.0,4.585054927889724 -2926.0,4.6350549278897235 -2927.0,4.685054927889723 -2928.0,4.735054927889724 -2929.0,4.785054927889723 -2930.0,4.835054927889724 -2931.0,4.8850549278897235 -2932.0,4.935054927889723 -2933.0,4.985054927889724 -2934.0,5.035054927889724 -2935.0,5.085054927889724 -2936.0,5.1350549278897235 -2937.0,5.185054927889723 -2938.0,5.235054927889723 -2939.0,5.285054927889724 -2940.0,5.335054927889724 -2941.0,5.3850549278897235 -2942.0,5.435054927889723 -2943.0,5.485054927889723 -2944.0,5.535054927889724 -2945.0,5.585054927889724 -2946.0,5.6350549278897235 -2947.0,5.685054927889723 -2948.0,5.735054927889723 -2949.0,5.785054927889724 -2950.0,5.835054927889724 -2951.0,5.8850549278897235 -2952.0,5.935054927889723 -2953.0,5.985054927889724 -2954.0,5.964945072110277 -2955.0,5.914945072110276 -2956.0,5.8649450721102765 -2957.0,5.814945072110277 -2958.0,5.764945072110277 -2959.0,5.714945072110277 -2960.0,5.664945072110276 -2961.0,5.6149450721102765 -2962.0,5.564945072110277 -2963.0,5.514945072110277 -2964.0,5.464945072110277 -2965.0,5.414945072110276 -2966.0,5.3649450721102765 -2967.0,5.314945072110277 -2968.0,5.264945072110277 -2969.0,5.214945072110277 -2970.0,5.164945072110276 -2971.0,5.1149450721102765 -2972.0,5.064945072110277 -2973.0,5.014945072110277 -2974.0,4.964945072110277 -2975.0,4.914945072110276 -2976.0,4.8649450721102765 -2977.0,4.814945072110277 -2978.0,4.764945072110277 -2979.0,4.714945072110277 -2980.0,4.664945072110276 -2981.0,4.6149450721102765 -2982.0,4.564945072110277 -2983.0,4.514945072110277 -2984.0,4.464945072110277 -2985.0,4.414945072110276 -2986.0,4.3649450721102765 -2987.0,4.314945072110277 -2988.0,4.264945072110277 -2989.0,4.214945072110277 -2990.0,4.164945072110276 -2991.0,4.1149450721102765 -2992.0,4.064945072110277 -2993.0,4.014945072110277 -2994.0,3.9649450721102766 -2995.0,3.9149450721102768 -2996.0,3.8649450721102765 -2997.0,3.8149450721102767 -2998.0,3.7649450721102764 -2999.0,3.7149450721102766 -3000.0,3.6649450721102768 -3001.0,3.6149450721102765 -3002.0,3.5649450721102767 -3003.0,3.5149450721102764 -3004.0,3.4649450721102766 -3005.0,3.4149450721102763 -3006.0,3.3649450721102765 -3007.0,3.3149450721102767 -3008.0,3.2649450721102764 -3009.0,3.2149450721102766 -3010.0,3.1649450721102763 -3011.0,3.1149450721102765 -3012.0,3.0649450721102767 -3013.0,3.0149450721102764 -3014.0,2.9649450721102766 -3015.0,2.9149450721102763 -3016.0,2.8649450721102765 -3017.0,2.8149450721102767 -3018.0,2.7649450721102764 -3019.0,2.7149450721102766 -3020.0,2.6649450721102763 -3021.0,2.6149450721102765 -3022.0,2.5649450721102767 -3023.0,2.5149450721102764 -3024.0,2.4649450721102766 -3025.0,2.4149450721102763 -3026.0,2.3649450721102765 -3027.0,2.3149450721102767 -3028.0,2.2649450721102764 -3029.0,2.2149450721102766 -3030.0,2.1649450721102763 -3031.0,2.1149450721102765 -3032.0,2.0649450721102767 -3033.0,2.0149450721102764 -3034.0,1.9649450721102761 -3035.0,1.9149450721102763 -3036.0,1.8649450721102765 -3037.0,1.8149450721102767 -3038.0,1.7649450721102768 -3039.0,1.7149450721102761 -3040.0,1.6649450721102763 -3041.0,1.6149450721102765 -3042.0,1.5649450721102767 -3043.0,1.5149450721102768 -3044.0,1.4649450721102761 -3045.0,1.4149450721102763 -3046.0,1.3649450721102765 -3047.0,1.3149450721102767 -3048.0,1.2649450721102768 -3049.0,1.2149450721102761 -3050.0,1.1649450721102763 -3051.0,1.1149450721102765 -3052.0,1.0649450721102767 -3053.0,1.014945072110276 -3054.0,0.9997578784529694 -3055.0,0.9994126339398873 -3056.0,0.9990675086494455 -3057.0,0.9987225025404728 -3058.0,0.9983776155718127 -3059.0,0.9980328477023226 -3060.0,0.9976881988908743 -3061.0,0.9973436690963536 -3062.0,0.9969992582776608 -3063.0,0.9966549663937099 -3064.0,0.9963107934034297 -3065.0,0.9959667392657625 -3066.0,0.9956228039396655 -3067.0,0.9952789873841097 -3068.0,0.9949352895580801 -3069.0,0.994591710420576 -3070.0,0.9942482499306112 -3071.0,0.9939049080472133 -3072.0,0.993561684729424 -3073.0,0.9932185799362993 -3074.0,0.9928755936269091 -3075.0,0.9925327257603381 -3076.0,0.9921899762956843 -3077.0,0.9918473451920603 -3078.0,0.9915048324085927 -3079.0,0.9911624379044223 -3080.0,0.9908201616387037 -3081.0,0.990478003570606 -3082.0,0.9901359636593123 -3083.0,0.9897940418640196 -3084.0,0.9894522381439393 -3085.0,0.9891105524582965 -3086.0,0.9887689847663307 -3087.0,0.9884275350272953 -3088.0,0.9880862032004579 -3089.0,0.9877449892451001 -3090.0,0.9874038931205176 -3091.0,0.9870629147860199 -3092.0,0.9867220542009311 -3093.0,0.9863813113245888 -3094.0,0.9860406861163449 -3095.0,0.9857001785355654 -3096.0,0.98535978854163 -3097.0,0.9850195160939328 -3098.0,0.9846793611518818 -3099.0,0.984339323674899 -3100.0,0.9839994036224203 -3101.0,0.9836596009538958 -3102.0,0.9833199156287895 -3103.0,0.9829803476065795 -3104.0,0.9826408968467577 -3105.0,0.9823015633088301 -3106.0,0.9819623469523169 -3107.0,0.9816232477367517 -3108.0,0.9812842656216826 -3109.0,0.9809454005666716 -3110.0,0.9806066525312944 -3111.0,0.980268021475141 -3112.0,0.9799295073578151 -3113.0,0.9795911101389345 -3114.0,0.9792528297781308 -3115.0,0.9789146662350495 -3116.0,0.9785766194693505 -3117.0,0.9782386894407069 -3118.0,0.9779008761088064 -3119.0,0.9775631794333501 -3120.0,0.9772255993740535 -3121.0,0.9768881358906456 -3122.0,0.9765507889428695 -3123.0,0.9762135584904822 -3124.0,0.9758764444932544 -3125.0,0.9755394469109712 -3126.0,0.9752025657034309 -3127.0,0.9748658008304462 -3128.0,0.9745291522518433 -3129.0,0.9741926199274629 -3130.0,0.9738562038171588 -3131.0,0.9735199038807991 -3132.0,0.9731837200782657 -3133.0,0.9728476523694544 -3134.0,0.9725117007142745 -3135.0,0.9721758650726496 -3136.0,0.9718401454045171 -3137.0,0.9715045416698279 -3138.0,0.9711690538285469 -3139.0,0.9708336818406529 -3140.0,0.9704984256661385 -3141.0,0.9701632852650101 -3142.0,0.9698282605972879 -3143.0,0.9694933516230058 -3144.0,0.9691585583022115 -3145.0,0.9688238805949669 -3146.0,0.9684893184613472 -3147.0,0.9681548718614417 -3148.0,0.9678205407553532 -3149.0,0.9674863251031985 -3150.0,0.9671522248651082 -3151.0,0.9668182400012265 -3152.0,0.9664843704717114 -3153.0,0.9661506162367347 -3154.0,0.9658169772564821 -3155.0,0.9654834534911527 -3156.0,0.9651500449009597 -3157.0,0.9648167514461299 -3158.0,0.9644835730869036 -3159.0,0.9641505097835353 -3160.0,0.9638175614962928 -3161.0,0.9634847281854579 -3162.0,0.9631520098113261 -3163.0,0.9628194063342063 -3164.0,0.9624869177144215 -3165.0,0.9621545439123081 -3166.0,0.9618222848882165 -3167.0,0.9614901406025105 -3168.0,0.9611581110155677 -3169.0,0.9608261960877794 -3170.0,0.9604943957795506 -3171.0,0.9601627100513 -3172.0,0.9598311388634598 -3173.0,0.9594996821764761 -3174.0,0.9591683399508083 -3175.0,0.95883711214693 -3176.0,0.9585059987253279 -3177.0,0.9581749996465027 -3178.0,0.9578441148709685 -3179.0,0.9575133443592533 -3180.0,0.9571826880718987 -3181.0,0.9568521459694594 -3182.0,0.9565217180125045 -3183.0,0.9561914041616163 -3184.0,0.9558612043773906 -3185.0,0.9555311186204373 -3186.0,0.9552011468513791 -3187.0,0.9548712890308532 -3188.0,0.9545415451195097 -3189.0,0.9542119150780127 -3190.0,0.9538823988670397 -3191.0,0.9535529964472819 -3192.0,0.9532237077794438 -3193.0,0.9528945328242437 -3194.0,0.9525654715424137 -3195.0,0.9522365238946988 -3196.0,0.9519076898418581 -3197.0,0.9515789693446643 -3198.0,0.9512503623639033 -3199.0,0.9509218688603744 -3200.0,0.9505934887948913 -3201.0,0.95026522212828 -3202.0,0.9499370688213812 -3203.0,0.9496090288350484 -3204.0,0.9492811021301487 -3205.0,0.9489532886675631 -3206.0,0.9486255884081857 -3207.0,0.9482980013129242 -3208.0,0.9479705273426999 -3209.0,0.9476431664584476 -3210.0,0.9473159186211154 -3211.0,0.9469887837916652 -3212.0,0.946661761931072 -3213.0,0.9463348530003247 -3214.0,0.9460080569604252 -3215.0,0.9456813737723894 -3216.0,0.945354803397246 -3217.0,0.9450283457960379 -3218.0,0.9447020009298209 -3219.0,0.9443757687596644 -3220.0,0.9440496492466516 -3221.0,0.9437236423518783 -3222.0,0.9433977480364547 -3223.0,0.9430719662615038 -3224.0,0.9427462969881621 -3225.0,0.9424207401775799 -3226.0,0.9420952957909206 -3227.0,0.9417699637893607 -3228.0,0.9414447441340908 -3229.0,0.9411196367863146 -3230.0,0.940794641707249 -3231.0,0.9404697588581246 -3232.0,0.940144988200185 -3233.0,0.9398203296946877 -3234.0,0.9394957833029032 -3235.0,0.9391713489861154 -3236.0,0.9388470267056217 -3237.0,0.9385228164227329 -3238.0,0.9381987180987731 -3239.0,0.9378747316950795 -3240.0,0.9375508571730031 -3241.0,0.9372270944939081 -3242.0,0.9369034436191717 -3243.0,0.9365799045101848 -3244.0,0.9362564771283517 -3245.0,0.9359331614350898 -3246.0,0.9356099573918297 -3247.0,0.9352868649600159 -3248.0,0.9349638841011054 -3249.0,0.9346410147765692 -3250.0,0.9343182569478914 -3251.0,0.9339956105765691 -3252.0,0.9336730756241132 -3253.0,0.9333506520520474 -3254.0,0.933028339821909 -3255.0,0.9327061388952487 -3256.0,0.9323840492336299 -3257.0,0.9320620707986299 -3258.0,0.9317402035518391 -3259.0,0.9314184474548609 -3260.0,0.9310968024693121 -3261.0,0.930775268556823 -3262.0,0.9304538456790369 -3263.0,0.9301325337976102 -3264.0,0.929811332874213 -3265.0,0.9294902428705282 -3266.0,0.9291692637482521 -3267.0,0.9288483954690944 -3268.0,0.9285276379947777 -3269.0,0.928206991287038 -3270.0,0.9278864553076245 -3271.0,0.9275660300182996 -3272.0,0.9272457153808389 -3273.0,0.9269255113570312 -3274.0,0.9266054179086785 -3275.0,0.926285434997596 -3276.0,0.9259655625856119 -3277.0,0.925645800634568 -3278.0,0.9253261491063189 -3279.0,0.9250066079627326 -3280.0,0.92468717716569 -3281.0,0.9243678566770854 -3282.0,0.9240486464588265 -3283.0,0.9237295464728333 -3284.0,0.9234105566810399 -3285.0,0.923091677045393 -3286.0,0.9227729075278526 -3287.0,0.9224542480903918 -3288.0,0.9221356986949969 -3289.0,0.9218172593036673 -3290.0,0.9214989298784154 -3291.0,0.9211807103812669 -3292.0,0.9208626007742606 -3293.0,0.9205446010194482 -3294.0,0.9202267110788948 -3295.0,0.9199089309146782 -3296.0,0.9195912604888897 -3297.0,0.9192736997636336 -3298.0,0.9189562487010272 -3299.0,0.9186389072632009 -3300.0,0.9183216754122979 -3301.0,0.9180045531104752 -3302.0,0.9176875403199022 -3303.0,0.9173706370027614 -3304.0,0.917053843121249 -3305.0,0.9167371586375734 -3306.0,0.9164205835139567 -3307.0,0.9161041177126337 -3308.0,0.9157877611958521 -3309.0,0.9154715139258733 -3310.0,0.9151553758649711 -3311.0,0.9148393469754326 -3312.0,0.9145234272195576 -3313.0,0.9142076165596595 -3314.0,0.9138919149580643 -3315.0,0.913576322377111 -3316.0,0.9132608387791518 -3317.0,0.9129454641265518 -3318.0,0.912630198381689 -3319.0,0.9123150415069546 -3320.0,0.9119999934647528 -3321.0,0.9116850542175003 -3322.0,0.9113702237276275 -3323.0,0.9110555019575773 -3324.0,0.9107408888698058 -3325.0,0.9104263844267817 -3326.0,0.910111988590987 -3327.0,0.9097977013249167 -3328.0,0.9094835225910785 -3329.0,0.9091694523519932 -3330.0,0.9088554905701944 -3331.0,0.908541637208229 -3332.0,0.9082278922286565 -3333.0,0.9079142555940493 -3334.0,0.9076007272669928 -3335.0,0.9072873072100855 -3336.0,0.9069739953859387 -3337.0,0.9066607917571764 -3338.0,0.9063476962864359 -3339.0,0.906034708936367 -3340.0,0.9057218296696327 -3341.0,0.9054090584489087 -3342.0,0.9050963952368838 -3343.0,0.9047838399962596 -3344.0,0.9044713926897503 -3345.0,0.9041590532800834 -3346.0,0.903846821729999 -3347.0,0.9035346980022502 -3348.0,0.9032226820596029 -3349.0,0.9029107738648359 -3350.0,0.9025989733807408 -3351.0,0.9022872805701221 -3352.0,0.901975695395797 -3353.0,0.9016642178205958 -3354.0,0.9013528478073616 -3355.0,0.90104158531895 -3356.0,0.9007304303182296 -3357.0,0.9004193827680822 -3358.0,0.9001084426314018 -3359.0,0.8997976098710957 -3360.0,0.8994868844500836 -3361.0,0.8991762663312985 -3362.0,0.8988657554776858 -3363.0,0.8985553518522037 -3364.0,0.8982450554178234 -3365.0,0.8979348661375289 -3366.0,0.8976247839743168 -3367.0,0.8973148088911965 -3368.0,0.8970049408511903 -3369.0,0.8966951798173332 -3370.0,0.8963855257526728 -3371.0,0.89607597862027 -3372.0,0.8957665383831978 -3373.0,0.8954572050045423 -3374.0,0.8951479784474022 -3375.0,0.8948388586748892 -3376.0,0.8945298456501274 -3377.0,0.894220939336254 -3378.0,0.8939121396964185 -3379.0,0.8936034466937834 -3380.0,0.8932948602915242 -3381.0,0.8929863804528283 -3382.0,0.8926780071408965 -3383.0,0.8923697403189422 -3384.0,0.8920615799501914 -3385.0,0.8917535259978828 -3386.0,0.8914455784252677 -3387.0,0.8911377371956104 -3388.0,0.8908300022721874 -3389.0,0.8905223736182886 -3390.0,0.8902148511972157 -3391.0,0.8899074349722836 -3392.0,0.8896001249068201 -3393.0,0.889292920964165 -3394.0,0.8889858231076713 -3395.0,0.8886788313007044 -3396.0,0.8883719455066423 -3397.0,0.8880651656888761 -3398.0,0.8877584918108089 -3399.0,0.8874519238358568 -3400.0,0.8871454617274486 -3401.0,0.8868391054490253 -3402.0,0.8865328549640412 -3403.0,0.8862267102359628 -3404.0,0.885920671228269 -3405.0,0.8856147379044518 -3406.0,0.8853089102280155 -3407.0,0.8850031881624771 -3408.0,0.8846975716713663 -3409.0,0.8843920607182251 -3410.0,0.8840866552666083 -3411.0,0.8837813552800834 -3412.0,0.8834761607222302 -3413.0,0.8831710715566413 -3414.0,0.8828660877469218 -3415.0,0.8825612092566891 -3416.0,0.8822564360495738 -3417.0,0.8819517680892184 -3418.0,0.8816472053392784 -3419.0,0.8813427477634216 -3420.0,0.8810383953253285 -3421.0,0.8807341479886919 -3422.0,0.8804300057172174 -3423.0,0.8801259684746232 -3424.0,0.8798220362246397 -3425.0,0.8795182089310102 -3426.0,0.87921448655749 -3427.0,0.8789108690678474 -3428.0,0.8786073564258631 -3429.0,0.8783039485953302 -3430.0,0.8780006455400544 -3431.0,0.8776974472238538 -3432.0,0.8773943536105591 -3433.0,0.8770913646640134 -3434.0,0.8767884803480723 -3435.0,0.876485700626604 -3436.0,0.876183025463489 -3437.0,0.8758804548226204 -3438.0,0.8755779886679037 -3439.0,0.875275626963257 -3440.0,0.8749733696726106 -3441.0,0.8746712167599076 -3442.0,0.8743691681891032 -3443.0,0.8740672239241651 -3444.0,0.8737653839290739 -3445.0,0.8734636481678221 -3446.0,0.8731620166044146 -3447.0,0.8728604892028693 -3448.0,0.8725590659272161 -3449.0,0.8722577467414974 -3450.0,0.8719565316097678 -3451.0,0.8716554204960947 -3452.0,0.8713544133645579 -3453.0,0.8710535101792491 -3454.0,0.8707527109042731 -3455.0,0.8704520155037464 -3456.0,0.8701514239417986 -3457.0,0.8698509361825709 -3458.0,0.8695505521902177 -3459.0,0.8692502719289051 -3460.0,0.868950095362812 -3461.0,0.8686500224561294 -3462.0,0.8683500531730609 -3463.0,0.8680501874778224 -3464.0,0.867750425334642 -3465.0,0.8674507667077601 -3466.0,0.86715121156143 -3467.0,0.8668517598599167 -3468.0,0.8665524115674978 -3469.0,0.8662531666484634 -3470.0,0.8659540250671156 -3471.0,0.865654986787769 -3472.0,0.8653560517747506 -3473.0,0.8650572199923995 -3474.0,0.8647584914050674 -3475.0,0.8644598659771181 -3476.0,0.8641613436729276 -3477.0,0.8638629244568847 -3478.0,0.8635646082933899 -3479.0,0.8632663951468563 -3480.0,0.8629682849817094 -3481.0,0.8626702777623866 -3482.0,0.8623723734533381 -3483.0,0.8620745720190257 -3484.0,0.8617768734239242 -3485.0,0.8614792776325201 -3486.0,0.8611817846093125 -3487.0,0.8608843943188127 -3488.0,0.8605871067255442 -3489.0,0.8602899217940426 -3490.0,0.8599928394888561 -3491.0,0.8596958597745448 -3492.0,0.8593989826156813 -3493.0,0.8591022079768502 -3494.0,0.8588055358226485 -3495.0,0.8585089661176855 -3496.0,0.8582124988265825 -3497.0,0.857916133913973 -3498.0,0.8576198713445029 -3499.0,0.8573237110828303 -3500.0,0.8570276530936255 -3501.0,0.8567316973415707 -3502.0,0.8564358437913608 -3503.0,0.8561400924077025 -3504.0,0.8558444431553147 -3505.0,0.8555488959989288 -3506.0,0.8552534509032882 -3507.0,0.8549581078331482 -3508.0,0.8546628667532767 -3509.0,0.8543677276284537 -3510.0,0.8540726904234711 -3511.0,0.8537777551031331 -3512.0,0.8534829216322561 -3513.0,0.8531881899756687 -3514.0,0.8528935600982114 -3515.0,0.8525990319647372 -3516.0,0.8523046055401108 -3517.0,0.8520102807892095 -3518.0,0.8517160576769224 -3519.0,0.8514219361681508 -3520.0,0.8511279162278081 -3521.0,0.8508339978208201 -3522.0,0.8505401809121244 -3523.0,0.8502464654666705 -3524.0,0.8499528514494207 -3525.0,0.8496593388253486 -3526.0,0.8493659275594406 -3527.0,0.8490726176166947 -3528.0,0.8487794089621213 -3529.0,0.8484863015607426 -3530.0,0.8481932953775931 -3531.0,0.8479003903777192 -3532.0,0.8476075865261797 -3533.0,0.847314883788045 -3534.0,0.8470222821283979 -3535.0,0.8467297815123331 -3536.0,0.8464373819049575 -3537.0,0.8461450832713899 -3538.0,0.8458528855767612 -3539.0,0.8455607887862144 -3540.0,0.8452687928649044 -3541.0,0.8449768977779982 -3542.0,0.844685103490675 -3543.0,0.8443934099681257 -3544.0,0.8441018171755535 -3545.0,0.8438103250781736 -3546.0,0.8435189336412128 -3547.0,0.8432276428299104 -3548.0,0.8429364526095177 -3549.0,0.8426453629452975 -3550.0,0.8423543738025251 -3551.0,0.8420634851464877 -3552.0,0.8417726969424842 -3553.0,0.8414820091558259 -3554.0,0.8411914217518358 -3555.0,0.8409009346958489 -3556.0,0.8406105479532122 -3557.0,0.8403202614892847 -3558.0,0.8400300752694374 -3559.0,0.8397399892590531 -3560.0,0.8394500034235267 -3561.0,0.839160117728265 -3562.0,0.8388703321386868 -3563.0,0.8385806466202227 -3564.0,0.8382910611383153 -3565.0,0.8380015756584193 -3566.0,0.8377121901460012 -3567.0,0.8374229045665392 -3568.0,0.8371337188855239 -3569.0,0.8368446330684574 -3570.0,0.836555647080854 -3571.0,0.8362667608882396 -3572.0,0.8359779744561523 -3573.0,0.835689287750142 -3574.0,0.8354007007357703 -3575.0,0.8351122133786112 -3576.0,0.8348238256442501 -3577.0,0.8345355374982842 -3578.0,0.8342473489063232 -3579.0,0.8339592598339882 -3580.0,0.8336712702469121 -3581.0,0.8333833801107401 -3582.0,0.8330955893911288 -3583.0,0.8328078980537469 -3584.0,0.8325203060642751 -3585.0,0.8322328133884055 -3586.0,0.8319454199918425 -3587.0,0.8316581258403022 -3588.0,0.8313709308995123 -3589.0,0.8310838351352127 -3590.0,0.8307968385131549 -3591.0,0.8305099409991024 -3592.0,0.8302231425588302 -3593.0,0.8299364431581256 -3594.0,0.8296498427627873 -3595.0,0.829363341338626 -3596.0,0.8290769388514642 -3597.0,0.828790635267136 -3598.0,0.8285044305514877 -3599.0,0.828218324670377 -3600.0,0.8279323175896738 -3601.0,0.8276464092752592 -3602.0,0.8273605996930267 -3603.0,0.827074888808881 -3604.0,0.8267892765887392 -3605.0,0.8265037629985297 -3606.0,0.8262183480041928 -3607.0,0.8259330315716805 -3608.0,0.8256478136669568 -3609.0,0.8253626942559973 -3610.0,0.8250776733047891 -3611.0,0.8247927507793315 -3612.0,0.8245079266456351 -3613.0,0.8242232008697227 -3614.0,0.8239385734176284 -3615.0,0.8236540442553983 -3616.0,0.8233696133490902 -3617.0,0.8230852806647736 -3618.0,0.8228010461685294 -3619.0,0.8225169098264509 -3620.0,0.8222328716046424 -3621.0,0.8219489314692203 -3622.0,0.8216650893863127 -3623.0,0.8213813453220591 -3624.0,0.8210976992426111 -3625.0,0.8208141511141318 -3626.0,0.8205307009027958 -3627.0,0.8202473485747898 -3628.0,0.8199640940963117 -3629.0,0.8196809374335713 -3630.0,0.8193978785527902 -3631.0,0.8191149174202016 -3632.0,0.8188320540020503 -3633.0,0.8185492882645925 -3634.0,0.8182666201740966 -3635.0,0.8179840496968421 -3636.0,0.8177015767991206 -3637.0,0.8174192014472351 -3638.0,0.8171369236075002 -3639.0,0.8168547432462424 -3640.0,0.8165726603297994 -3641.0,0.8162906748245209 -3642.0,0.8160087866967681 -3643.0,0.8157269959129138 -3644.0,0.8154453024393423 -3645.0,0.8151637062424497 -3646.0,0.8148822072886437 -3647.0,0.8146008055443434 -3648.0,0.8143195009759797 -3649.0,0.814038293549995 -3650.0,0.8137571832328433 -3651.0,0.8134761699909902 -3652.0,0.8131952537909127 -3653.0,0.8129144345991 -3654.0,0.8126337123820518 -3655.0,0.8123530871062805 -3656.0,0.8120725587383093 -3657.0,0.8117921272446733 -3658.0,0.8115117925919191 -3659.0,0.8112315547466047 -3660.0,0.8109514136752998 -3661.0,0.8106713693445856 -3662.0,0.810391421721055 -3663.0,0.8101115707713121 -3664.0,0.8098318164619729 -3665.0,0.8095521587596646 -3666.0,0.8092725976310261 -3667.0,0.8089931330427078 -3668.0,0.8087137649613717 -3669.0,0.8084344933536911 -3670.0,0.808155318186351 -3671.0,0.8078762394260479 -3672.0,0.8075972570394897 -3673.0,0.8073183709933957 -3674.0,0.8070395812544969 -3675.0,0.8067608877895359 -3676.0,0.8064822905652664 -3677.0,0.8062037895484538 -3678.0,0.805925384705875 -3679.0,0.8056470760043184 -3680.0,0.8053688634105837 -3681.0,0.8050907468914822 -3682.0,0.8048127264138366 -3683.0,0.8045348019444811 -3684.0,0.8042569734502614 -3685.0,0.8039792408980345 -3686.0,0.803701604254669 -3687.0,0.8034240634870448 -3688.0,0.8031466185620533 -3689.0,0.8028692694465973 -3690.0,0.8025920161075913 -3691.0,0.8023148585119609 -3692.0,0.8020377966266431 -3693.0,0.8017608304185866 -3694.0,0.8014839598547512 -3695.0,0.8012071849021083 -3696.0,0.8009305055276407 -3697.0,0.8006539216983426 -3698.0,0.8003774333812195 -3699.0,0.8001010405432885 -3700.0,0.7998247431515777 -3701.0,0.799548541173127 -3702.0,0.7992724345749874 -3703.0,0.7989964233242216 -3704.0,0.7987205073879035 -3705.0,0.798444686733118 -3706.0,0.7981689613269619 -3707.0,0.7978933311365433 -3708.0,0.7976177961289812 -3709.0,0.7973423562714067 -3710.0,0.7970670115309615 -3711.0,0.7967917618747992 -3712.0,0.7965166072700843 -3713.0,0.796241547683993 -3714.0,0.7959665830837127 -3715.0,0.7956917134364422 -3716.0,0.7954169387093913 -3717.0,0.7951422588697817 -3718.0,0.7948676738848459 -3719.0,0.7945931837218279 -3720.0,0.7943187883479831 -3721.0,0.7940444877305781 -3722.0,0.7937702818368909 -3723.0,0.7934961706342106 -3724.0,0.7932221540898379 -3725.0,0.7929482321710845 -3726.0,0.7926744048452735 -3727.0,0.7924006720797394 -3728.0,0.7921270338418278 -3729.0,0.7918534900988957 -3730.0,0.7915800408183113 -3731.0,0.7913066859674541 -3732.0,0.7910334255137149 -3733.0,0.7907602594244957 -3734.0,0.7904871876672097 -3735.0,0.7902142102092815 -3736.0,0.7899413270181468 -3737.0,0.7896685380612528 -3738.0,0.7893958433060576 -3739.0,0.7891232427200308 -3740.0,0.788850736270653 -3741.0,0.7885783239254164 -3742.0,0.788306005651824 -3743.0,0.7880337814173902 -3744.0,0.7877616511896408 -3745.0,0.7874896149361126 -3746.0,0.7872176726243535 -3747.0,0.7869458242219229 -3748.0,0.7866740696963913 -3749.0,0.7864024090153403 -3750.0,0.7861308421463629 -3751.0,0.7858593690570629 -3752.0,0.7855879897150556 -3753.0,0.7853167040879676 -3754.0,0.7850455121434363 -3755.0,0.7847744138491107 -3756.0,0.7845034091726506 -3757.0,0.7842324980817271 -3758.0,0.7839616805440225 -3759.0,0.7836909565272303 -3760.0,0.7834203259990551 -3761.0,0.7831497889272125 -3762.0,0.7828793452794297 -3763.0,0.7826089950234444 -3764.0,0.782338738127006 -3765.0,0.7820685745578748 -3766.0,0.7817985042838222 -3767.0,0.7815285272726309 -3768.0,0.7812586434920944 -3769.0,0.7809888529100177 -3770.0,0.7807191554942167 -3771.0,0.7804495512125185 -3772.0,0.7801800400327612 -3773.0,0.7799106219227941 -3774.0,0.7796412968504777 -3775.0,0.7793720647836834 -3776.0,0.7791029256902937 -3777.0,0.7788338795382024 -3778.0,0.7785649262953142 -3779.0,0.7782960659295448 -3780.0,0.7780272984088213 -3781.0,0.7777586237010817 -3782.0,0.777490041774275 -3783.0,0.7772215525963614 -3784.0,0.776953156135312 -3785.0,0.7766848523591091 -3786.0,0.776416641235746 -3787.0,0.7761485227332271 -3788.0,0.7758804968195678 -3789.0,0.7756125634627947 -3790.0,0.775344722630945 -3791.0,0.7750769742920676 -3792.0,0.7748093184142217 -3793.0,0.7745417549654782 -3794.0,0.7742742839139186 -3795.0,0.7740069052276356 -3796.0,0.7737396188747329 -3797.0,0.773472424823325 -3798.0,0.7732053230415379 -3799.0,0.7729383134975081 -3800.0,0.7726713961593833 -3801.0,0.7724045709953222 -3802.0,0.7721378379734948 -3803.0,0.7718711970620813 -3804.0,0.7716046482292738 -3805.0,0.7713381914432748 -3806.0,0.771071826672298 -3807.0,0.7708055538845678 -3808.0,0.7705393730483202 -3809.0,0.7702732841318014 -3810.0,0.7700072871032692 -3811.0,0.7697413819309918 -3812.0,0.769475568583249 -3813.0,0.769209847028331 -3814.0,0.7689442172345391 -3815.0,0.7686786791701857 -3816.0,0.7684132328035942 -3817.0,0.7681478781030985 -3818.0,0.7678826150370437 -3819.0,0.7676174435737861 -3820.0,0.7673523636816927 -3821.0,0.7670873753291412 -3822.0,0.7668224784845203 -3823.0,0.7665576731162301 -3824.0,0.7662929591926811 -3825.0,0.7660283366822949 -3826.0,0.7657638055535038 -3827.0,0.7654993657747512 -3828.0,0.7652350173144915 -3829.0,0.7649707601411898 -3830.0,0.7647065942233221 -3831.0,0.7644425195293754 -3832.0,0.7641785360278475 -3833.0,0.7639146436872469 -3834.0,0.7636508424760935 -3835.0,0.7633871323629176 -3836.0,0.7631235133162604 -3837.0,0.7628599853046741 -3838.0,0.762596548296722 -3839.0,0.7623332022609776 -3840.0,0.7620699471660258 -3841.0,0.7618067829804623 -3842.0,0.7615437096728934 -3843.0,0.7612807272119364 -3844.0,0.7610178355662194 -3845.0,0.7607550347043812 -3846.0,0.7604923245950719 -3847.0,0.7602297052069519 -3848.0,0.7599671765086926 -3849.0,0.7597047384689763 -3850.0,0.7594423910564961 -3851.0,0.7591801342399558 -3852.0,0.75891796798807 -3853.0,0.7586558922695643 -3854.0,0.758393907053175 -3855.0,0.758132012307649 -3856.0,0.7578702080017443 -3857.0,0.7576084941042297 -3858.0,0.7573468705838843 -3859.0,0.7570853374094986 -3860.0,0.7568238945498734 -3861.0,0.7565625419738206 -3862.0,0.7563012796501627 -3863.0,0.7560401075477331 -3864.0,0.7557790256353757 -3865.0,0.7555180338819455 -3866.0,0.755257132256308 -3867.0,0.7549963207273395 -3868.0,0.7547355992639271 -3869.0,0.7544749678349687 -3870.0,0.7542144264093729 -3871.0,0.753953974956059 -3872.0,0.7536936134439568 -3873.0,0.7534333418420074 -3874.0,0.7531731601191621 -3875.0,0.7529130682443831 -3876.0,0.7526530661866435 -3877.0,0.7523931539149269 -3878.0,0.7521333313982275 -3879.0,0.7518735986055506 -3880.0,0.7516139555059117 -3881.0,0.7513544020683376 -3882.0,0.7510949382618651 -3883.0,0.7508355640555424 -3884.0,0.7505762794184279 -3885.0,0.7503170843195908 -3886.0,0.7500579787281111 -3887.0,0.7497989626130793 -3888.0,0.7495400359435966 -3889.0,0.7492811986887753 -3890.0,0.7490224508177376 -3891.0,0.7487637922996169 -3892.0,0.7485052231035572 -3893.0,0.748246743198713 -3894.0,0.7479883525542494 -3895.0,0.7477300511393425 -3896.0,0.7474718389231789 -3897.0,0.7472137158749556 -3898.0,0.7469556819638803 -3899.0,0.7466977371591716 -3900.0,0.7464398814300586 -3901.0,0.7461821147457809 -3902.0,0.7459244370755888 -3903.0,0.7456668483887432 -3904.0,0.7454093486545157 -3905.0,0.7451519378421886 -3906.0,0.7448946159210544 -3907.0,0.7446373828604167 -3908.0,0.7443802386295895 -3909.0,0.744123183197897 -3910.0,0.7438662165346748 -3911.0,0.7436093386092684 -3912.0,0.7433525493910341 -3913.0,0.743095848849339 -3914.0,0.7428392369535605 -3915.0,0.7425827136730867 -3916.0,0.7423262789773162 -3917.0,0.7420699328356583 -3918.0,0.7418136752175326 -3919.0,0.7415575060923696 -3920.0,0.7413014254296102 -3921.0,0.7410454331987056 -3922.0,0.7407895293691181 -3923.0,0.7405337139103202 -3924.0,0.7402779867917948 -3925.0,0.7400223479830356 -3926.0,0.7397667974535468 -3927.0,0.7395113351728431 -3928.0,0.7392559611104496 -3929.0,0.7390006752359021 -3930.0,0.7387454775187469 -3931.0,0.7384903679285406 -3932.0,0.7382353464348508 -3933.0,0.737980413007255 -3934.0,0.7377255676153417 -3935.0,0.7374708102287096 -3936.0,0.737216140816968 -3937.0,0.7369615593497367 -3938.0,0.736707065796646 -3939.0,0.7364526601273367 -3940.0,0.73619834231146 -3941.0,0.7359441123186776 -3942.0,0.735689970118662 -3943.0,0.7354359156810955 -3944.0,0.7351819489756715 -3945.0,0.7349280699720936 -3946.0,0.7346742786400757 -3947.0,0.7344205749493427 -3948.0,0.7341669588696292 -3949.0,0.7339134303706809 -3950.0,0.7336599894222537 -3951.0,0.7334066359941138 -3952.0,0.7331533700560381 -3953.0,0.7329001915778138 -3954.0,0.7326471005292385 -3955.0,0.7323940968801204 -3956.0,0.7321411806002779 -3957.0,0.7318883516595399 -3958.0,0.7316356100277459 -3959.0,0.7313829556747455 -3960.0,0.731130388570399 -3961.0,0.730877908684577 -3962.0,0.7306255159871604 -3963.0,0.7303732104480406 -3964.0,0.7301209920371194 -3965.0,0.729868860724309 -3966.0,0.729616816479532 -3967.0,0.7293648592727213 -3968.0,0.7291129890738204 -3969.0,0.7288612058527828 -3970.0,0.7286095095795726 -3971.0,0.7283579002241645 -3972.0,0.7281063777565431 -3973.0,0.7278549421467038 -3974.0,0.727603593364652 -3975.0,0.7273523313804037 -3976.0,0.7271011561639852 -3977.0,0.726850067685433 -3978.0,0.7265990659147943 -3979.0,0.7263481508221262 -3980.0,0.7260973223774966 -3981.0,0.7258465805509832 -3982.0,0.7255959253126745 -3983.0,0.7253453566326692 -3984.0,0.7250948744810761 -3985.0,0.7248444788280147 -3986.0,0.7245941696436146 -3987.0,0.7243439468980155 -3988.0,0.724093810561368 -3989.0,0.7238437606038324 -3990.0,0.7235937969955797 -3991.0,0.723343919706791 -3992.0,0.7230941287076578 -3993.0,0.7228444239683818 -3994.0,0.7225948054591752 -3995.0,0.7223452731502601 -3996.0,0.7220958270118693 -3997.0,0.7218464670142456 -3998.0,0.7215971931276421 -3999.0,0.7213480053223225 -4000.0,0.7210989035685602 -4001.0,0.7208498878366394 -4002.0,0.7206009580968543 -4003.0,0.7203521143195093 -4004.0,0.7201033564749193 -4005.0,0.7198546845334092 -4006.0,0.7196060984653142 -4007.0,0.7193575982409799 -4008.0,0.7191091838307619 -4009.0,0.7188608552050264 -4010.0,0.7186126123341494 -4011.0,0.7183644551885174 -4012.0,0.7181163837385272 -4013.0,0.7178683979545855 -4014.0,0.7176204978071093 -4015.0,0.7173726832665264 -4016.0,0.7171249543032737 -4017.0,0.7168773108877994 -4018.0,0.7166297529905613 -4019.0,0.7163822805820276 -4020.0,0.7161348936326765 -4021.0,0.7158875921129967 -4022.0,0.7156403759934868 -4023.0,0.7153932452446559 -4024.0,0.7151461998370229 -4025.0,0.7148992397411171 -4026.0,0.7146523649274782 -4027.0,0.7144055753666555 -4028.0,0.714158871029209 -4029.0,0.7139122518857088 -4030.0,0.7136657179067348 -4031.0,0.7134192690628774 -4032.0,0.713172905324737 -4033.0,0.7129266266629243 -4034.0,0.7126804330480598 -4035.0,0.7124343244507747 -4036.0,0.7121883008417099 -4037.0,0.7119423621915166 -4038.0,0.7116965084708561 -4039.0,0.7114507396503998 -4040.0,0.7112050557008294 -4041.0,0.7109594565928364 -4042.0,0.7107139422971229 -4043.0,0.7104685127844006 -4044.0,0.7102231680253915 -4045.0,0.709977907990828 -4046.0,0.7097327326514522 -4047.0,0.7094876419780165 -4048.0,0.7092426359412835 -4049.0,0.7089977145120255 -4050.0,0.7087528776610253 -4051.0,0.7085081253590757 -4052.0,0.7082634575769795 -4053.0,0.7080188742855497 -4054.0,0.7077743754556091 -4055.0,0.7075299610579908 -4056.0,0.7072856310635381 -4057.0,0.7070413854431041 -4058.0,0.7067972241675522 -4059.0,0.7065531472077555 -4060.0,0.7063091545345977 -4061.0,0.7060652461189721 -4062.0,0.7058214219317822 -4063.0,0.7055776819439415 -4064.0,0.7053340261263737 -4065.0,0.7050904544500124 -4066.0,0.7048469668858012 -4067.0,0.704603563404694 -4068.0,0.7043602439776543 -4069.0,0.7041170085756561 -4070.0,0.703873857169683 -4071.0,0.7036307897307288 -4072.0,0.7033878062297976 -4073.0,0.7031449066379029 -4074.0,0.7029020909260687 -4075.0,0.702659359065329 -4076.0,0.7024167110267273 -4077.0,0.7021741467813178 -4078.0,0.7019316663001643 -4079.0,0.7016892695543405 -4080.0,0.7014469565149304 -4081.0,0.7012047271530276 -4082.0,0.7009625814397361 -4083.0,0.7007205193461695 -4084.0,0.7004785408434518 -4085.0,0.7002366459027166 -4086.0,0.6999948344951076 -4087.0,0.6997531065917785 -4088.0,0.6995114621638928 -4089.0,0.6992699011826242 -4090.0,0.6990284236191562 -4091.0,0.6987870294446823 -4092.0,0.6985457186304059 -4093.0,0.6983044911475405 -4094.0,0.6980633469673092 -4095.0,0.6978222860609454 -4096.0,0.6975813083996925 -4097.0,0.6973404139548032 -4098.0,0.6970996026975407 -4099.0,0.6968588745991781 -4100.0,0.6966182296309982 -4101.0,0.6963776677642938 -4102.0,0.6961371889703677 -4103.0,0.6958967932205324 -4104.0,0.6956564804861106 -4105.0,0.6954162507384346 -4106.0,0.6951761039488469 -4107.0,0.6949360400886995 -4108.0,0.6946960591293547 -4109.0,0.6944561610421847 -4110.0,0.6942163457985709 -4111.0,0.6939766133699057 -4112.0,0.6937369637275902 -4113.0,0.6934973968430364 -4114.0,0.6932579126876653 -4115.0,0.6930185112329087 -4116.0,0.6927791924502072 -4117.0,0.6925399563110123 -4118.0,0.6923008027867845 -4119.0,0.6920617318489948 -4120.0,0.6918227434691235 -4121.0,0.6915838376186614 -4122.0,0.6913450142691083 -4123.0,0.6911062733919748 -4124.0,0.6908676149587806 -4125.0,0.6906290389410554 -4126.0,0.690390545310339 -4127.0,0.6901521340381809 -4128.0,0.6899138050961402 -4129.0,0.689675558455786 -4130.0,0.6894373940886973 -4131.0,0.6891993119664628 -4132.0,0.688961312060681 -4133.0,0.6887233943429604 -4134.0,0.688485558784919 -4135.0,0.6882478053581847 -4136.0,0.6880101340343955 -4137.0,0.6877725447851987 -4138.0,0.6875350375822517 -4139.0,0.6872976123972215 -4140.0,0.6870602692017853 -4141.0,0.6868230079676296 -4142.0,0.686585828666451 -4143.0,0.6863487312699555 -4144.0,0.6861117157498593 -4145.0,0.6858747820778882 -4146.0,0.6856379302257776 -4147.0,0.6854011601652729 -4148.0,0.685164471868129 -4149.0,0.6849278653061109 -4150.0,0.6846913404509931 -4151.0,0.6844548972745599 -4152.0,0.6842185357486054 -4153.0,0.6839822558449333 -4154.0,0.6837460575353572 -4155.0,0.6835099407917004 -4156.0,0.6832739055857958 -4157.0,0.6830379518894861 -4158.0,0.6828020796746239 -4159.0,0.6825662889130713 -4160.0,0.6823305795767001 -4161.0,0.6820949516373919 -4162.0,0.681859405067038 -4163.0,0.6816239398375397 -4164.0,0.6813885559208073 -4165.0,0.6811532532887614 -4166.0,0.6809180319133321 -4167.0,0.6806828917664592 -4168.0,0.6804478328200924 -4169.0,0.6802128550461904 -4170.0,0.6799779584167225 -4171.0,0.6797431429036671 -4172.0,0.6795084084790124 -4173.0,0.6792737551147563 -4174.0,0.6790391827829064 -4175.0,0.67880469145548 -4176.0,0.6785702811045037 -4177.0,0.6783359517020143 -4178.0,0.678101703220058 -4179.0,0.6778675356306907 -4180.0,0.6776334489059779 -4181.0,0.6773994430179946 -4182.0,0.6771655179388256 -4183.0,0.6769316736405657 -4184.0,0.6766979100953187 -4185.0,0.6764642272751982 -4186.0,0.6762306251523277 -4187.0,0.6759971036988403 -4188.0,0.6757636628868783 -4189.0,0.6755303026885942 -4190.0,0.6752970230761496 -4191.0,0.675063824021716 -4192.0,0.6748307054974746 -4193.0,0.6745976674756159 -4194.0,0.6743647099283402 -4195.0,0.6741318328278575 -4196.0,0.673899036146387 -4197.0,0.6736663198561579 -4198.0,0.6734336839294089 -4199.0,0.6732011283383882 -4200.0,0.6729686530553535 -4201.0,0.6727362580525723 -4202.0,0.6725039433023215 -4203.0,0.6722717087768878 -4204.0,0.6720395544485671 -4205.0,0.6718074802896652 -4206.0,0.6715754862724974 -4207.0,0.6713435723693884 -4208.0,0.6711117385526726 -4209.0,0.6708799847946938 -4210.0,0.6706483110678058 -4211.0,0.6704167173443712 -4212.0,0.6701852035967628 -4213.0,0.6699537697973628 -4214.0,0.6697224159185625 -4215.0,0.6694911419327633 -4216.0,0.6692599478123759 -4217.0,0.6690288335298203 -4218.0,0.6687977990575267 -4219.0,0.6685668443679339 -4220.0,0.668335969433491 -4221.0,0.6681051742266562 -4222.0,0.6678744587198973 -4223.0,0.6676438228856916 -4224.0,0.6674132666965259 -4225.0,0.6671827901248967 -4226.0,0.6669523931433097 -4227.0,0.6667220757242801 -4228.0,0.6664918378403331 -4229.0,0.6662616794640025 -4230.0,0.6660316005678324 -4231.0,0.665801601124376 -4232.0,0.6655716811061961 -4233.0,0.6653418404858648 -4234.0,0.6651120792359638 -4235.0,0.6648823973290844 -4236.0,0.664652794737827 -4237.0,0.664423271434802 -4238.0,0.6641938273926286 -4239.0,0.6639644625839359 -4240.0,0.6637351769813625 -4241.0,0.6635059705575562 -4242.0,0.6632768432851744 -4243.0,0.6630477951368838 -4244.0,0.6628188260853607 -4245.0,0.6625899361032905 -4246.0,0.6623611251633688 -4247.0,0.6621323932382996 -4248.0,0.6619037403007973 -4249.0,0.661675166323585 -4250.0,0.6614466712793955 -4251.0,0.6612182551409711 -4252.0,0.6609899178810633 -4253.0,0.6607616594724333 -4254.0,0.6605334798878514 -4255.0,0.6603053791000975 -4256.0,0.6600773570819608 -4257.0,0.65984941380624 -4258.0,0.659621549245743 -4259.0,0.6593937633732875 -4260.0,0.6591660561616999 -4261.0,0.6589384275838167 -4262.0,0.6587108776124834 -4263.0,0.6584834062205549 -4264.0,0.6582560133808955 -4265.0,0.658028699066379 -4266.0,0.6578014632498883 -4267.0,0.657574305904316 -4268.0,0.6573472270025638 -4269.0,0.6571202265175428 -4270.0,0.6568933044221736 -4271.0,0.656666460689386 -4272.0,0.6564396952921191 -4273.0,0.6562130082033216 -4274.0,0.6559863993959513 -4275.0,0.6557598688429754 -4276.0,0.6555334165173705 -4277.0,0.6553070423921226 -4278.0,0.6550807464402267 -4279.0,0.6548545286346874 -4280.0,0.6546283889485187 -4281.0,0.6544023273547437 -4282.0,0.6541763438263948 -4283.0,0.6539504383365139 -4284.0,0.6537246108581523 -4285.0,0.6534988613643701 -4286.0,0.6532731898282371 -4287.0,0.6530475962228326 -4288.0,0.6528220805212447 -4289.0,0.652596642696571 -4290.0,0.6523712827219186 -4291.0,0.6521460005704034 -4292.0,0.6519207962151512 -4293.0,0.6516956696292965 -4294.0,0.6514706207859836 -4295.0,0.6512456496583656 -4296.0,0.6510207562196051 -4297.0,0.6507959404428741 -4298.0,0.6505712023013537 -4299.0,0.650346541768234 -4300.0,0.650121958816715 -4301.0,0.6498974534200054 -4302.0,0.6496730255513233 -4303.0,0.6494486751838963 -4304.0,0.6492244022909608 -4305.0,0.6490002068457628 -4306.0,0.6487760888215575 -4307.0,0.648552048191609 -4308.0,0.6483280849291911 -4309.0,0.6481041990075866 -4310.0,0.6478803904000875 -4311.0,0.647656659079995 -4312.0,0.6474330050206197 -4313.0,0.6472094281952814 -4314.0,0.6469859285773086 -4315.0,0.6467625061400398 -4316.0,0.6465391608568223 -4317.0,0.6463158927010125 -4318.0,0.6460927016459762 -4319.0,0.6458695876650884 -4320.0,0.645646550731733 -4321.0,0.6454235908193036 -4322.0,0.6452007079012025 -4323.0,0.6449779019508416 -4324.0,0.6447551729416416 -4325.0,0.6445325208470326 -4326.0,0.6443099456404539 -4327.0,0.6440874472953537 -4328.0,0.6438650257851899 -4329.0,0.6436426810834289 -4330.0,0.6434204131635468 -4331.0,0.6431982219990285 -4332.0,0.6429761075633684 -4333.0,0.6427540698300699 -4334.0,0.6425321087726452 -4335.0,0.6423102243646163 -4336.0,0.6420884165795138 -4337.0,0.6418666853908778 -4338.0,0.6416450307722572 -4339.0,0.6414234526972104 -4340.0,0.6412019511393047 -4341.0,0.6409805260721164 -4342.0,0.6407591774692314 -4343.0,0.6405379053042443 -4344.0,0.6403167095507588 -4345.0,0.6400955901823882 -4346.0,0.6398745471727542 -4347.0,0.6396535804954881 -4348.0,0.6394326901242304 -4349.0,0.6392118760326302 -4350.0,0.6389911381943462 -4351.0,0.6387704765830458 -4352.0,0.6385498911724058 -4353.0,0.6383293819361119 -4354.0,0.6381089488478591 -4355.0,0.6378885918813512 -4356.0,0.6376683110103012 -4357.0,0.6374481062084313 -4358.0,0.6372279774494726 -4359.0,0.6370079247071653 -4360.0,0.6367879479552588 -4361.0,0.6365680471675116 -4362.0,0.636348222317691 -4363.0,0.6361284733795733 -4364.0,0.6359088003269444 -4365.0,0.6356892031335988 -4366.0,0.6354696817733401 -4367.0,0.6352502362199809 -4368.0,0.6350308664473431 -4369.0,0.6348115724292575 -4370.0,0.6345923541395638 -4371.0,0.634373211552111 -4372.0,0.6341541446407569 -4373.0,0.6339351533793685 -4374.0,0.6337162377418215 -4375.0,0.6334973977020012 -4376.0,0.6332786332338013 -4377.0,0.6330599443111249 -4378.0,0.6328413309078841 -4379.0,0.6326227929979997 -4380.0,0.6324043305554019 -4381.0,0.6321859435540297 -4382.0,0.6319676319678311 -4383.0,0.6317493957707631 -4384.0,0.6315312349367916 -4385.0,0.6313131494398919 -4386.0,0.6310951392540477 -4387.0,0.6308772043532521 -4388.0,0.6306593447115071 -4389.0,0.6304415603028236 -4390.0,0.6302238511012215 -4391.0,0.6300062170807296 -4392.0,0.6297886582153858 -4393.0,0.6295711744792369 -4394.0,0.6293537658463388 -4395.0,0.6291364322907561 -4396.0,0.6289191737865625 -4397.0,0.6287019903078408 -4398.0,0.6284848818286823 -4399.0,0.6282678483231878 -4400.0,0.6280508897654667 -4401.0,0.6278340061296375 -4402.0,0.6276171973898274 -4403.0,0.6274004635201728 -4404.0,0.6271838044948189 -4405.0,0.6269672202879198 -4406.0,0.6267507108736388 -4407.0,0.6265342762261477 -4408.0,0.6263179163196274 -4409.0,0.626101631128268 -4410.0,0.625885420626268 -4411.0,0.6256692847878351 -4412.0,0.625453223587186 -4413.0,0.625237236998546 -4414.0,0.6250213249961496 -4415.0,0.62480548755424 -4416.0,0.6245897246470695 -4417.0,0.624374036248899 -4418.0,0.6241584223339985 -4419.0,0.6239428828766469 -4420.0,0.6237274178511318 -4421.0,0.6235120272317499 -4422.0,0.6232967109928066 -4423.0,0.6230814691086162 -4424.0,0.622866301553502 -4425.0,0.6226512083017961 -4426.0,0.6224361893278393 -4427.0,0.6222212446059816 -4428.0,0.6220063741105815 -4429.0,0.6217915778160066 -4430.0,0.6215768556966332 -4431.0,0.6213622077268467 -4432.0,0.6211476338810409 -4433.0,0.6209331341336188 -4434.0,0.6207187084589924 -4435.0,0.6205043568315818 -4436.0,0.6202900792258168 -4437.0,0.6200758756161355 -4438.0,0.619861745976985 -4439.0,0.6196476902828211 -4440.0,0.6194337085081086 -4441.0,0.6192198006273212 -4442.0,0.6190059666149409 -4443.0,0.6187922064454591 -4444.0,0.6185785200933757 -4445.0,0.6183649075331994 -4446.0,0.618151368739448 -4447.0,0.6179379036866477 -4448.0,0.6177245123493337 -4449.0,0.6175111947020501 -4450.0,0.6172979507193495 -4451.0,0.6170847803757934 -4452.0,0.6168716836459522 -4453.0,0.6166586605044052 -4454.0,0.6164457109257401 -4455.0,0.6162328348845536 -4456.0,0.6160200323554511 -4457.0,0.6158073033130469 -4458.0,0.6155946477319639 -4459.0,0.615382065586834 -4460.0,0.6151695568522974 -4461.0,0.6149571215030035 -4462.0,0.6147447595136105 -4463.0,0.6145324708587849 -4464.0,0.6143202555132024 -4465.0,0.6141081134515471 -4466.0,0.6138960446485121 -4467.0,0.6136840490787991 -4468.0,0.6134721267171186 -4469.0,0.6132602775381898 -4470.0,0.6130485015167406 -4471.0,0.6128367986275077 -4472.0,0.6126251688452364 -4473.0,0.612413612144681 -4474.0,0.6122021285006042 -4475.0,0.6119907178877776 -4476.0,0.6117793802809813 -4477.0,0.6115681156550046 -4478.0,0.6113569239846448 -4479.0,0.6111458052447084 -4480.0,0.6109347594100105 -4481.0,0.610723786455375 -4482.0,0.610512886355634 -4483.0,0.6103020590856292 -4484.0,0.6100913046202099 -4485.0,0.609880622934235 -4486.0,0.6096700140025715 -4487.0,0.6094594778000954 -4488.0,0.6092490143016912 -4489.0,0.6090386234822522 -4490.0,0.6088283053166803 -4491.0,0.6086180597798859 -4492.0,0.6084078868467886 -4493.0,0.608197786492316 -4494.0,0.6079877586914048 -4495.0,0.6077778034190001 -4496.0,0.6075679206500559 -4497.0,0.6073581103595347 -4498.0,0.6071483725224076 -4499.0,0.6069387071136544 -4500.0,0.6067291141082636 -4501.0,0.6065195934812322 -4502.0,0.606310145207566 -4503.0,0.6061007692622793 -4504.0,0.6058914656203951 -4505.0,0.6056822342569449 -4506.0,0.6054730751469691 -4507.0,0.6052639882655165 -4508.0,0.6050549735876445 -4509.0,0.6048460310884192 -4510.0,0.6046371607429153 -4511.0,0.604428362526216 -4512.0,0.6042196364134133 -4513.0,0.6040109823796076 -4514.0,0.6038024003999082 -4515.0,0.6035938904494326 -4516.0,0.603385452503307 -4517.0,0.6031770865366665 -4518.0,0.6029687925246545 -4519.0,0.6027605704424229 -4520.0,0.6025524202651326 -4521.0,0.6023443419679524 -4522.0,0.6021363355260605 -4523.0,0.601928400914643 -4524.0,0.6017205381088947 -4525.0,0.6015127470840195 -4526.0,0.6013050278152291 -4527.0,0.6010973802777442 -4528.0,0.600889804446794 -4529.0,0.6006823002976162 -4530.0,0.6004748678054569 -4531.0,0.6002675069455712 -4532.0,0.6000602176932224 -4533.0,0.5998530000236822 -4534.0,0.5996458539122312 -4535.0,0.5994387793341585 -4536.0,0.5992317762647613 -4537.0,0.5990248446793459 -4538.0,0.5988179845532268 -4539.0,0.598611195861727 -4540.0,0.5984044785801782 -4541.0,0.5981978326839206 -4542.0,0.5979912581483027 -4543.0,0.5977847549486818 -4544.0,0.5975783230604235 -4545.0,0.5973719624589019 -4546.0,0.5971656731195 -4547.0,0.5969594550176086 -4548.0,0.5967533081286276 -4549.0,0.5965472324279653 -4550.0,0.5963412278910379 -4551.0,0.5961352944932711 -4552.0,0.5959294322100983 -4553.0,0.5957236410169615 -4554.0,0.5955179208893117 -4555.0,0.5953122718026075 -4556.0,0.5951066937323168 -4557.0,0.5949011866539156 -4558.0,0.5946957505428883 -4559.0,0.5944903853747279 -4560.0,0.5942850911249359 -4561.0,0.5940798677690221 -4562.0,0.5938747152825048 -4563.0,0.5936696336409111 -4564.0,0.5934646228197759 -4565.0,0.5932596827946431 -4566.0,0.5930548135410648 -4567.0,0.5928500150346017 -4568.0,0.5926452872508226 -4569.0,0.5924406301653051 -4570.0,0.5922360437536351 -4571.0,0.592031527991407 -4572.0,0.5918270828542235 -4573.0,0.5916227083176958 -4574.0,0.5914184043574434 -4575.0,0.5912141709490945 -4576.0,0.5910100080682854 -4577.0,0.590805915690661 -4578.0,0.5906018937918746 -4579.0,0.5903979423475878 -4580.0,0.5901940613334709 -4581.0,0.589990250725202 -4582.0,0.5897865104984683 -4583.0,0.589582840628965 -4584.0,0.5893792410923957 -4585.0,0.5891757118644726 -4586.0,0.5889722529209159 -4587.0,0.5887688642374548 -4588.0,0.5885655457898261 -4589.0,0.5883622975537757 -4590.0,0.5881591195050574 -4591.0,0.5879560116194336 -4592.0,0.587752973872675 -4593.0,0.5875500062405608 -4594.0,0.5873471086988782 -4595.0,0.5871442812234231 -4596.0,0.5869415237899998 -4597.0,0.5867388363744206 -4598.0,0.5865362189525065 -4599.0,0.5863336715000868 -4600.0,0.5861311939929987 -4601.0,0.5859287864070886 -4602.0,0.5857264487182104 -4603.0,0.5855241809022269 -4604.0,0.5853219829350089 -4605.0,0.5851198547924357 -4606.0,0.5849177964503949 -4607.0,0.5847158078847823 -4608.0,0.5845138890715023 -4609.0,0.5843120399864673 -4610.0,0.5841102606055983 -4611.0,0.5839085509048245 -4612.0,0.5837069108600833 -4613.0,0.5835053404473206 -4614.0,0.5833038396424906 -4615.0,0.5831024084215554 -4616.0,0.582901046760486 -4617.0,0.5826997546352615 -4618.0,0.5824985320218689 -4619.0,0.582297378896304 -4620.0,0.5820962952345706 -4621.0,0.5818952810126812 -4622.0,0.5816943362066559 -4623.0,0.5814934607925235 -4624.0,0.5812926547463213 -4625.0,0.5810919180440943 -4626.0,0.5808912506618962 -4627.0,0.5806906525757889 -4628.0,0.5804901237618424 -4629.0,0.580289664196135 -4630.0,0.5800892738547536 -4631.0,0.579888952713793 -4632.0,0.5796887007493562 -4633.0,0.5794885179375547 -4634.0,0.5792884042545082 -4635.0,0.5790883596763445 -4636.0,0.5788883841791999 -4637.0,0.5786884777392185 -4638.0,0.5784886403325531 -4639.0,0.5782888719353646 -4640.0,0.578089172523822 -4641.0,0.5778895420741027 -4642.0,0.5776899805623922 -4643.0,0.5774904879648841 -4644.0,0.5772910642577808 -4645.0,0.577091709417292 -4646.0,0.5768924234196365 -4647.0,0.5766932062410407 -4648.0,0.5764940578577397 -4649.0,0.5762949782459763 -4650.0,0.5760959673820019 -4651.0,0.5758970252420758 -4652.0,0.5756981518024659 -4653.0,0.5754993470394477 -4654.0,0.5753006109293056 -4655.0,0.5751019434483317 -4656.0,0.5749033445728263 -4657.0,0.5747048142790981 -4658.0,0.5745063525434639 -4659.0,0.5743079593422488 -4660.0,0.5741096346517855 -4661.0,0.5739113784484158 -4662.0,0.5737131907084889 -4663.0,0.5735150714083626 -4664.0,0.5733170205244026 -4665.0,0.5731190380329828 -4666.0,0.5729211239104856 -4667.0,0.5727232781333009 -4668.0,0.5725255006778276 -4669.0,0.572327791520472 -4670.0,0.5721301506376488 -4671.0,0.5719325780057811 -4672.0,0.5717350736012997 -4673.0,0.571537637400644 -4674.0,0.5713402693802611 -4675.0,0.5711429695166065 -4676.0,0.5709457377861437 -4677.0,0.5707485741653445 -4678.0,0.5705514786306888 -4679.0,0.5703544511586643 -4680.0,0.5701574917257672 -4681.0,0.5699606003085018 -4682.0,0.5697637768833801 -4683.0,0.5695670214269227 -4684.0,0.5693703339156581 -4685.0,0.5691737143261228 -4686.0,0.5689771626348616 -4687.0,0.5687806788184273 -4688.0,0.5685842628533808 -4689.0,0.5683879147162912 -4690.0,0.5681916343837354 -4691.0,0.5679954218322989 -4692.0,0.5677992770385746 -4693.0,0.5676031999791641 -4694.0,0.5674071906306768 -4695.0,0.5672112489697301 -4696.0,0.5670153749729497 -4697.0,0.5668195686169694 -4698.0,0.5666238298784305 -4699.0,0.5664281587339833 -4700.0,0.5662325551602854 -4701.0,0.5660370191340026 -4702.0,0.5658415506318091 -4703.0,0.5656461496303868 -4704.0,0.565450816106426 -4705.0,0.5652555500366245 -4706.0,0.5650603513976887 -4707.0,0.5648652201663329 -4708.0,0.5646701563192791 -4709.0,0.5644751598332578 -4710.0,0.5642802306850073 -4711.0,0.564085368851274 -4712.0,0.5638905743088123 -4713.0,0.5636958470343845 -4714.0,0.5635011870047612 -4715.0,0.5633065941967208 -4716.0,0.5631120685870499 -4717.0,0.5629176101525428 -4718.0,0.5627232188700024 -4719.0,0.5625288947162389 -4720.0,0.562334637668071 -4721.0,0.5621404477023252 -4722.0,0.561946324795836 -4723.0,0.561752268925446 -4724.0,0.5615582800680058 -4725.0,0.561364358200374 -4726.0,0.5611705032994169 -4727.0,0.5609767153420092 -4728.0,0.5607829943050334 -4729.0,0.56058934016538 -4730.0,0.5603957528999474 -4731.0,0.5602022324856422 -4732.0,0.5600087788993785 -4733.0,0.559815392118079 -4734.0,0.559622072118674 -4735.0,0.5594288188781018 -4736.0,0.5592356323733088 -4737.0,0.5590425125812492 -4738.0,0.558849459478885 -4739.0,0.5586564730431867 -4740.0,0.5584635532511322 -4741.0,0.5582707000797077 -4742.0,0.5580779135059072 -4743.0,0.5578851935067327 -4744.0,0.557692540059194 -4745.0,0.557499953140309 -4746.0,0.5573074327271035 -4747.0,0.5571149787966112 -4748.0,0.5569225913258739 -4749.0,0.5567302702919409 -4750.0,0.5565380156718698 -4751.0,0.5563458274427262 -4752.0,0.5561537055815832 -4753.0,0.5559616500655222 -4754.0,0.5557696608716324 -4755.0,0.5555777379770108 -4756.0,0.5553858813587624 -4757.0,0.5551940909940003 -4758.0,0.555002366859845 -4759.0,0.5548107089334254 -4760.0,0.5546191171918782 -4761.0,0.5544275916123477 -4762.0,0.5542361321719862 -4763.0,0.5540447388479544 -4764.0,0.5538534116174201 -4765.0,0.5536621504575594 -4766.0,0.5534709553455565 -4767.0,0.5532798262586028 -4768.0,0.5530887631738984 -4769.0,0.5528977660686507 -4770.0,0.5527068349200751 -4771.0,0.5525159697053948 -4772.0,0.5523251704018413 -4773.0,0.5521344369866533 -4774.0,0.551943769437078 -4775.0,0.5517531677303699 -4776.0,0.5515626318437917 -4777.0,0.5513721617546139 -4778.0,0.5511817574401147 -4779.0,0.5509914188775803 -4780.0,0.5508011460443047 -4781.0,0.5506109389175899 -4782.0,0.5504207974747454 -4783.0,0.5502307216930886 -4784.0,0.550040711549945 -4785.0,0.5498507670226479 -4786.0,0.5496608880885381 -4787.0,0.5494710747249645 -4788.0,0.5492813269092837 -4789.0,0.5490916446188602 -4790.0,0.5489020278310662 -4791.0,0.548712476523282 -4792.0,0.5485229906728954 -4793.0,0.5483335702573022 -4794.0,0.5481442152539059 -4795.0,0.5479549256401176 -4796.0,0.5477657013933567 -4797.0,0.54757654249105 -4798.0,0.5473874489106323 -4799.0,0.547198420629546 -4800.0,0.5470094576252417 -4801.0,0.5468205598751771 -4802.0,0.5466317273568182 -4803.0,0.5464429600476387 -4804.0,0.5462542579251202 -4805.0,0.5460656209667516 -4806.0,0.54587704915003 -4807.0,0.5456885424524603 -4808.0,0.5455001008515549 -4809.0,0.5453117243248341 -4810.0,0.5451234128498259 -4811.0,0.5449351664040663 -4812.0,0.5447469849650987 -4813.0,0.5445588685104744 -4814.0,0.5443708170177527 -4815.0,0.5441828304645002 -4816.0,0.5439949088282916 -4817.0,0.5438070520867091 -4818.0,0.543619260217343 -4819.0,0.5434315331977907 -4820.0,0.5432438710056582 -4821.0,0.5430562736185583 -4822.0,0.5428687410141124 -4823.0,0.5426812731699492 -4824.0,0.5424938700637048 -4825.0,0.5423065316730237 -4826.0,0.5421192579755576 -4827.0,0.5419320489489663 -4828.0,0.541744904570917 -4829.0,0.5415578248190848 -4830.0,0.5413708096711524 -4831.0,0.5411838591048103 -4832.0,0.5409969730977566 -4833.0,0.5408101516276972 -4834.0,0.5406233946723458 -4835.0,0.5404367022094233 -4836.0,0.540250074216659 -4837.0,0.5400635106717895 -4838.0,0.5398770115525588 -4839.0,0.5396905768367194 -4840.0,0.5395042065020307 -4841.0,0.53931790052626 -4842.0,0.5391316588871826 -4843.0,0.5389454815625812 -4844.0,0.538759368530246 -4845.0,0.5385733197679752 -4846.0,0.5383873352535746 -4847.0,0.5382014149648574 -4848.0,0.5380155588796449 -4849.0,0.5378297669757658 -4850.0,0.5376440392310563 -4851.0,0.5374583756233605 -4852.0,0.5372727761305303 -4853.0,0.5370872407304247 -4854.0,0.5369017694009108 -4855.0,0.5367163621198634 -4856.0,0.5365310188651646 -4857.0,0.5363457396147043 -4858.0,0.5361605243463802 -4859.0,0.5359753730380972 -4860.0,0.5357902856677682 -4861.0,0.5356052622133136 -4862.0,0.5354203026526616 -4863.0,0.5352354069637478 -4864.0,0.5350505751245155 -4865.0,0.5348658071129155 -4866.0,0.5346811029069064 -4867.0,0.5344964624844544 -4868.0,0.5343118858235332 -4869.0,0.5341273729021241 -4870.0,0.533942923698216 -4871.0,0.5337585381898058 -4872.0,0.5335742163548972 -4873.0,0.5333899581715021 -4874.0,0.53320576361764 -4875.0,0.5330216326713377 -4876.0,0.5328375653106298 -4877.0,0.5326535615135582 -4878.0,0.5324696212581729 -4879.0,0.5322857445225309 -4880.0,0.5321019312846972 -4881.0,0.5319181815227442 -4882.0,0.5317344952147518 -4883.0,0.5315508723388076 -4884.0,0.5313673128730068 -4885.0,0.531183816795452 -4886.0,0.5310003840842535 -4887.0,0.5308170147175293 -4888.0,0.5306337086734044 -4889.0,0.530450465930012 -4890.0,0.5302672864654925 -4891.0,0.5300841702579939 -4892.0,0.5299011172856719 -4893.0,0.5297181275266893 -4894.0,0.5295352009592171 -4895.0,0.5293523375614334 -4896.0,0.5291695373115238 -4897.0,0.5289868001876817 -4898.0,0.5288041261681079 -4899.0,0.5286215152310105 -4900.0,0.5284389673546057 -4901.0,0.5282564825171167 -4902.0,0.5280740606967742 -4903.0,0.5278917018718168 -4904.0,0.5277094060204904 -4905.0,0.5275271731210485 -4906.0,0.527345003151752 -4907.0,0.5271628960908693 -4908.0,0.5269808519166763 -4909.0,0.5267988706074567 -4910.0,0.5266169521415013 -4911.0,0.5264350964971084 -4912.0,0.5262533036525842 -4913.0,0.526071573586242 -4914.0,0.5258899062764029 -4915.0,0.525708301701395 -4916.0,0.5255267598395544 -4917.0,0.5253452806692246 -4918.0,0.5251638641687562 -4919.0,0.5249825103165077 -4920.0,0.5248012190908449 -4921.0,0.524619990470141 -4922.0,0.5244388244327767 -4923.0,0.5242577209571403 -4924.0,0.5240766800216276 -4925.0,0.5238957016046415 -4926.0,0.5237147856845928 -4927.0,0.5235339322398994 -4928.0,0.5233531412489869 -4929.0,0.5231724126902882 -4930.0,0.5229917465422437 -4931.0,0.5228111427833013 -4932.0,0.5226306013919162 -4933.0,0.5224501223465512 -4934.0,0.5222697056256764 -4935.0,0.5220893512077694 -4936.0,0.5219090590713155 -4937.0,0.5217288291948067 -4938.0,0.5215486615567433 -4939.0,0.5213685561356323 -4940.0,0.5211885129099886 -4941.0,0.5210085318583344 -4942.0,0.520828612959199 -4943.0,0.5206487561911198 -4944.0,0.520468961532641 -4945.0,0.5202892289623143 -4946.0,0.5201095584586991 -4947.0,0.5199299500003619 -4948.0,0.5197504035658768 -4949.0,0.519570919133825 -4950.0,0.5193914966827957 -4951.0,0.5192121361913848 -4952.0,0.5190328376381961 -4953.0,0.5188536010018403 -4954.0,0.5186744262609361 -4955.0,0.5184953133941091 -4956.0,0.5183162623799925 -4957.0,0.5181372731972268 -4958.0,0.5179583458244598 -4959.0,0.5177794802403469 -4960.0,0.5176006764235507 -4961.0,0.5174219343527411 -4962.0,0.5172432540065957 -4963.0,0.5170646353637991 -4964.0,0.5168860784030433 -4965.0,0.516707583103028 -4966.0,0.5165291494424599 -4967.0,0.5163507774000531 -4968.0,0.5161724669545291 -4969.0,0.5159942180846169 -4970.0,0.5158160307690526 -4971.0,0.5156379049865798 -4972.0,0.5154598407159493 -4973.0,0.5152818379359195 -4974.0,0.5151038966252559 -4975.0,0.5149260167627313 -4976.0,0.514748198327126 -4977.0,0.5145704412972276 -4978.0,0.514392745651831 -4979.0,0.5142151113697382 -4980.0,0.514037538429759 -4981.0,0.5138600268107101 -4982.0,0.5136825764914157 -4983.0,0.5135051874507072 -4984.0,0.5133278596674234 -4985.0,0.5131505931204104 -4986.0,0.5129733877885218 -4987.0,0.5127962436506179 -4988.0,0.512619160685567 -4989.0,0.5124421388722442 -4990.0,0.5122651781895323 -4991.0,0.512088278616321 -4992.0,0.5119114401315076 -4993.0,0.5117346627139964 -4994.0,0.5115579463426992 -4995.0,0.5113812909965352 -4996.0,0.5112046966544306 -4997.0,0.5110281632953187 -4998.0,0.5108516908981408 -4999.0,0.5106752794418448 -5000.0,0.5104989289053862 -5001.0,0.5103226392677275 -5002.0,0.5101464105078387 -5003.0,0.5099702426046971 -5004.0,0.5097941355372871 -5005.0,0.5096180892846004 -5006.0,0.5094421038256359 -5007.0,0.5092661791394 -5008.0,0.509090315204906 -5009.0,0.5089145120011745 -5010.0,0.5087387695072338 -5011.0,0.5085630877021189 -5012.0,0.5083874665648722 -5013.0,0.5082119060745435 -5014.0,0.5080364062101895 -5015.0,0.5078609669508747 -5016.0,0.5076855882756702 -5017.0,0.5075102701636546 -5018.0,0.5073350125939139 -5019.0,0.507159815545541 -5020.0,0.5069846789976363 -5021.0,0.5068096029293072 -5022.0,0.5066345873196684 -5023.0,0.5064596321478417 -5024.0,0.5062847373929565 -5025.0,0.506109903034149 -5026.0,0.5059351290505627 -5027.0,0.5057604154213483 -5028.0,0.5055857621256639 -5029.0,0.5054111691426744 -5030.0,0.5052366364515523 -5031.0,0.5050621640314771 -5032.0,0.5048877518616355 -5033.0,0.5047133999212213 -5034.0,0.5045391081894358 -5035.0,0.5043648766454871 -5036.0,0.5041907052685907 -5037.0,0.5040165940379692 -5038.0,0.5038425429328525 -5039.0,0.5036685519324774 -5040.0,0.5034946210160881 -5041.0,0.503320750162936 -5042.0,0.5031469393522796 -5043.0,0.5029731885633844 -5044.0,0.5027994977755231 -5045.0,0.5026258669679761 -5046.0,0.50245229612003 -5047.0,0.5022787852109794 -5048.0,0.5021053342201255 -5049.0,0.5019319431267769 -5050.0,0.5017586119102495 -5051.0,0.501585340549866 -5052.0,0.5014121290249564 -5053.0,0.5012389773148578 -5054.0,0.5010658853989145 -5055.0,0.5008928532564778 -5056.0,0.5007198808669064 -5057.0,0.5005469682095659 -5058.0,0.5003741152638291 -5059.0,0.5002013220090757 -5060.0,0.5000285884246931 -5061.0,0.4998559144900751 -5062.0,0.49968330018462315 -5063.0,0.4995107454877455 -5064.0,0.4993382503788577 -5065.0,0.4991658148373823 -5066.0,0.4989934388427491 -5067.0,0.4988211223743948 -5068.0,0.4986488654117633 -5069.0,0.4984766679343057 -5070.0,0.49830452992147994 -5071.0,0.4981324513527513 -5072.0,0.4979604322075921 -5073.0,0.4977884724654817 -5074.0,0.4976165721059064 -5075.0,0.49744473110835996 -5076.0,0.4972729494523429 -5077.0,0.49710122711736293 -5078.0,0.4969295640829348 -5079.0,0.49675796032858044 -5080.0,0.4965864158338287 -5081.0,0.49641493057821556 -5082.0,0.4962435045412842 -5083.0,0.49607213770258457 -5084.0,0.49590083004167396 -5085.0,0.49572958153811664 -5086.0,0.49555839217148384 -5087.0,0.49538726192135396 -5088.0,0.4952161907673124 -5089.0,0.4950451786889516 -5090.0,0.4948742256658711 -5091.0,0.4947033316776774 -5092.0,0.49453249670398414 -5093.0,0.49436172072441187 -5094.0,0.49419100371858843 -5095.0,0.4940203456661484 -5096.0,0.4938497465467335 -5097.0,0.49367920633999257 -5098.0,0.4935087250255814 -5099.0,0.4933383025831628 -5100.0,0.4931679389924066 -5101.0,0.49299763423298965 -5102.0,0.4928273882845958 -5103.0,0.49265720112691613 -5104.0,0.49248707273964837 -5105.0,0.4923170031024975 -5106.0,0.49214699219517544 -5107.0,0.49197703999740117 -5108.0,0.4918071464889006 -5109.0,0.49163731164940666 -5110.0,0.49146753545865934 -5111.0,0.49129781789640553 -5112.0,0.49112815894239914 -5113.0,0.4909585585764012 -5114.0,0.49078901677817954 -5115.0,0.49061953352750903 -5116.0,0.49045010880417167 -5117.0,0.49028074258795623 -5118.0,0.4901114348586586 -5119.0,0.4899421855960816 -5120.0,0.48977299478003494 -5121.0,0.48960386239033554 -5122.0,0.48943478840680704 -5123.0,0.48926577280928013 -5124.0,0.48909681557759255 -5125.0,0.4889279166915889 -5126.0,0.4887590761311208 -5127.0,0.48859029387604674 -5128.0,0.48842156990623226 -5129.0,0.4882529042015499 -5130.0,0.4880842967418789 -5131.0,0.4879157475071057 -5132.0,0.4877472564771237 -5133.0,0.4875788236318331 -5134.0,0.487410448951141 -5135.0,0.4872421324149616 -5136.0,0.487073874003216 -5137.0,0.4869056736958321 -5138.0,0.4867375314727449 -5139.0,0.4865694473138963 -5140.0,0.48640142119923496 -5141.0,0.48623345310871663 -5142.0,0.48606554302230404 -5143.0,0.48589769091996665 -5144.0,0.48572989678168094 -5145.0,0.4855621605874303 -5146.0,0.485394482317205 -5147.0,0.4852268619510023 -5148.0,0.48505929946882625 -5149.0,0.48489179485068795 -5150.0,0.48472434807660514 -5151.0,0.4845569591266029 -5152.0,0.4843896279807128 -5153.0,0.48422235461897345 -5154.0,0.48405513902143044 -5155.0,0.483887981168136 -5156.0,0.4837208810391496 -5157.0,0.4835538386145374 -5158.0,0.4833868538743723 -5159.0,0.4832199267987344 -5160.0,0.4830530573677104 -5161.0,0.4828862455613941 -5162.0,0.48271949135988595 -5163.0,0.4825527947432935 -5164.0,0.482386155691731 -5165.0,0.48221957418531963 -5166.0,0.4820530502041874 -5167.0,0.4818865837284693 -5168.0,0.4817201747383071 -5169.0,0.4815538232138492 -5170.0,0.4813875291352514 -5171.0,0.4812212924826758 -5172.0,0.4810551132362917 -5173.0,0.480888991376275 -5174.0,0.4807229268828087 -5175.0,0.4805569197360825 -5176.0,0.4803909699162929 -5177.0,0.4802250774036433 -5178.0,0.480059242178344 -5179.0,0.47989346422061196 -5180.0,0.4797277435106712 -5181.0,0.47956208002875234 -5182.0,0.47939647375509303 -5183.0,0.47923092466993755 -5184.0,0.4790654327535372 -5185.0,0.47889999798614996 -5186.0,0.4787346203480406 -5187.0,0.4785692998194809 -5188.0,0.4784040363807492 -5189.0,0.47823883001213086 -5190.0,0.478073680693918 -5191.0,0.4779085884064094 -5192.0,0.4777435531299108 -5193.0,0.47757857484473476 -5194.0,0.47741365353120047 -5195.0,0.4772487891696341 -5196.0,0.4770839817403685 -5197.0,0.4769192312237433 -5198.0,0.476754537600105 -5199.0,0.4765899008498069 -5200.0,0.476425320953209 -5201.0,0.4762607978906781 -5202.0,0.47609633164258786 -5203.0,0.47593192218931857 -5204.0,0.4757675695112574 -5205.0,0.47560327358879834 -5206.0,0.47543903440234203 -5207.0,0.4752748519322959 -5208.0,0.47511072615907424 -5209.0,0.4749466570630981 -5210.0,0.474782644624795 -5211.0,0.47461868882459973 -5212.0,0.4744547896429534 -5213.0,0.4742909470603041 -5214.0,0.47412716105710656 -5215.0,0.4739634316138223 -5216.0,0.4737997587109196 -5217.0,0.4736361423288735 -5218.0,0.47347258244816576 -5219.0,0.4733090790492849 -5220.0,0.47314563211272603 -5221.0,0.4729822416189912 -5222.0,0.47281890754858924 -5223.0,0.47265562988203536 -5224.0,0.4724924085998519 -5225.0,0.4723292436825677 -5226.0,0.47216613511071825 -5227.0,0.4720030828648461 -5228.0,0.47184008692550017 -5229.0,0.4716771472732363 -5230.0,0.47151426388861695 -5231.0,0.4713514367522113 -5232.0,0.4711886658445953 -5233.0,0.47102595114635154 -5234.0,0.4708632926380693 -5235.0,0.47070069030034467 -5236.0,0.4705381441137804 -5237.0,0.47037565405898585 -5238.0,0.4702132201165772 -5239.0,0.47005084226717714 -5240.0,0.46988852049141533 -5241.0,0.4697262547699279 -5242.0,0.46956404508335775 -5243.0,0.4694018914123544 -5244.0,0.4692397937375742 -5245.0,0.4690777520396799 -5246.0,0.46891576629934123 -5247.0,0.4687538364972345 -5248.0,0.4685919626140427 -5249.0,0.4684301446304553 -5250.0,0.4682683825271687 -5251.0,0.4681066762848858 -5252.0,0.4679450258843163 -5253.0,0.46778343130617644 -5254.0,0.46762189253118913 -5255.0,0.46746040954008405 -5256.0,0.46729898231359746 -5257.0,0.4671376108324722 -5258.0,0.46697629507745786 -5259.0,0.4668150350293106 -5260.0,0.4666538306687934 -5261.0,0.4664926819766756 -5262.0,0.46633158893373344 -5263.0,0.46617055152074965 -5264.0,0.4660095697185136 -5265.0,0.46584864350782146 -5266.0,0.4656877728694758 -5267.0,0.46552695778428604 -5268.0,0.46536619823306796 -5269.0,0.4652054941966442 -5270.0,0.465044845655844 -5271.0,0.464884252591503 -5272.0,0.46472371498446374 -5273.0,0.46456323281557527 -5274.0,0.4644028060656931 -5275.0,0.46424243471567966 -5276.0,0.4640821187464037 -5277.0,0.46392185813874076 -5278.0,0.46376165287357285 -5279.0,0.46360150293178876 -5280.0,0.46344140829428365 -5281.0,0.4632813689419594 -5282.0,0.46312138485572457 -5283.0,0.4629614560164942 -5284.0,0.46280158240518987 -5285.0,0.46264176400273993 -5286.0,0.4624820007900792 -5287.0,0.462322292748149 -5288.0,0.4621626398578974 -5289.0,0.4620030421002789 -5290.0,0.4618434994562548 -5291.0,0.4616840119067927 -5292.0,0.46152457943286695 -5293.0,0.46136520201545833 -5294.0,0.4612058796355544 -5295.0,0.4610466122741491 -5296.0,0.46088739991224303 -5297.0,0.46072824253084327 -5298.0,0.4605691401109635 -5299.0,0.460410092633624 -5300.0,0.46025110007985154 -5301.0,0.46009216243067946 -5302.0,0.45993327966714764 -5303.0,0.45977445177030263 -5304.0,0.45961567872119735 -5305.0,0.4594569605008913 -5306.0,0.4592982970904506 -5307.0,0.4591396884709479 -5308.0,0.4589811346234622 -5309.0,0.4588226355290793 -5310.0,0.45866419116889146 -5311.0,0.45850580152399734 -5312.0,0.4583474665755022 -5313.0,0.4581891863045178 -5314.0,0.45803096069216265 -5315.0,0.45787278971956136 -5316.0,0.45771467336784544 -5317.0,0.45755661161815264 -5318.0,0.45739860445162744 -5319.0,0.45724065184942075 -5320.0,0.45708275379268987 -5321.0,0.45692491026259874 -5322.0,0.4567671212403179 -5323.0,0.45660938670702417 -5324.0,0.45645170664390095 -5325.0,0.45629408103213825 -5326.0,0.4561365098529324 -5327.0,0.4559789930874863 -5328.0,0.4558215307170094 -5329.0,0.4556641227227176 -5330.0,0.45550676908583326 -5331.0,0.45534946978758517 -5332.0,0.45519222480920873 -5333.0,0.4550350341319458 -5334.0,0.45487789773704457 -5335.0,0.45472081560575994 -5336.0,0.454563787719353 -5337.0,0.45440681405909167 -5338.0,0.45424989460625 -5339.0,0.4540930293421086 -5340.0,0.45393621824795466 -5341.0,0.45377946130508184 -5342.0,0.45362275849479006 -5343.0,0.45346610979838586 -5344.0,0.4533095151971822 -5345.0,0.4531529746724985 -5346.0,0.4529964882056605 -5347.0,0.4528400557780007 -5348.0,0.4526836773708577 -5349.0,0.4525273529655767 -5350.0,0.45237108254350944 -5351.0,0.45221486608601397 -5352.0,0.4520587035744547 -5353.0,0.45190259499020274 -5354.0,0.45174654031463535 -5355.0,0.45159053952913636 -5356.0,0.4514345926150961 -5357.0,0.45127869955391114 -5358.0,0.4511228603269846 -5359.0,0.450967074915726 -5360.0,0.4508113433015513 -5361.0,0.4506556654658829 -5362.0,0.4505000413901495 -5363.0,0.45034447105578623 -5364.0,0.45018895444423485 -5365.0,0.45003349153694316 -5366.0,0.44987808231536575 -5367.0,0.4497227267609633 -5368.0,0.44956742485520307 -5369.0,0.4494121765795587 -5370.0,0.44925698191551017 -5371.0,0.4491018408445439 -5372.0,0.44894675334815276 -5373.0,0.4487917194078358 -5374.0,0.4486367390050987 -5375.0,0.44848181212145344 -5376.0,0.4483269387384183 -5377.0,0.44817211883751806 -5378.0,0.44801735240028373 -5379.0,0.44786263940825305 -5380.0,0.44770797984296967 -5381.0,0.4475533736859839 -5382.0,0.44739882091885236 -5383.0,0.44724432152313803 -5384.0,0.44708987548041024 -5385.0,0.44693548277224476 -5386.0,0.44678114338022357 -5387.0,0.44662685728593515 -5388.0,0.44647262447097436 -5389.0,0.4463184449169422 -5390.0,0.44616431860544636 -5391.0,0.4460102455181006 -5392.0,0.44585622563652505 -5393.0,0.4457022589423464 -5394.0,0.44554834541719746 -5395.0,0.44539448504271745 -5396.0,0.445240677800552 -5397.0,0.445086923672353 -5398.0,0.44493322263977875 -5399.0,0.4447795746844938 -5400.0,0.4446259797881691 -5401.0,0.44447243793248187 -5402.0,0.4443189490991157 -5403.0,0.4441655132697604 -5404.0,0.4440121304261124 -5405.0,0.44385880054987403 -5406.0,0.4437055236227543 -5407.0,0.44355229962646825 -5408.0,0.44339912854273755 -5409.0,0.44324601035328987 -5410.0,0.4430929450398594 -5411.0,0.4429399325841865 -5412.0,0.442786972968018 -5413.0,0.44263406617310685 -5414.0,0.4424812121812124 -5415.0,0.44232841097410025 -5416.0,0.44217566253354235 -5417.0,0.442022966841317 -5418.0,0.4418703238792086 -5419.0,0.44171773362900807 -5420.0,0.44156519607251243 -5421.0,0.44141271119152514 -5422.0,0.44126027896785575 -5423.0,0.4411078993833203 -5424.0,0.440955572419741 -5425.0,0.4408032980589463 -5426.0,0.440651076282771 -5427.0,0.4404989070730562 -5428.0,0.4403467904116492 -5429.0,0.44019472628040357 -5430.0,0.44004271466117917 -5431.0,0.4398907555358421 -5432.0,0.43973884888626485 -5433.0,0.439586994694326 -5434.0,0.43943519294191036 -5435.0,0.4392834436109092 -5436.0,0.4391317466832199 -5437.0,0.4389801021407461 -5438.0,0.43882850996539785 -5439.0,0.4386769701390911 -5440.0,0.4385254826437484 -5441.0,0.4383740474612983 -5442.0,0.4382226645736758 -5443.0,0.4380713339628219 -5444.0,0.43792005561068403 -5445.0,0.4377688294992158 -5446.0,0.437617655610377 -5447.0,0.4374665339261337 -5448.0,0.43731546442845814 -5449.0,0.43716444709932895 -5450.0,0.43701348192073075 -5451.0,0.4368625688746545 -5452.0,0.4367117079430975 -5453.0,0.436560899108063 -5454.0,0.4364101423515606 -5455.0,0.4362594376556062 -5456.0,0.43610878500222183 -5457.0,0.4359581843734357 -5458.0,0.43580763575128223 -5459.0,0.43565713911780213 -5460.0,0.4355066944550422 -5461.0,0.43535630174505546 -5462.0,0.4352059609699012 -5463.0,0.43505567211164486 -5464.0,0.4349054351523581 -5465.0,0.4347552500741187 -5466.0,0.43460511685901065 -5467.0,0.43445503548912423 -5468.0,0.4343050059465558 -5469.0,0.4341550282134079 -5470.0,0.4340051022717893 -5471.0,0.43385522810381494 -5472.0,0.43370540569160587 -5473.0,0.4335556350172894 -5474.0,0.43340591606299905 -5475.0,0.4332562488108744 -5476.0,0.43310663324306115 -5477.0,0.43295706934171135 -5478.0,0.4328075570889831 -5479.0,0.4326580964670407 -5480.0,0.4325086874580545 -5481.0,0.43235933004420113 -5482.0,0.4322100242076634 -5483.0,0.4320607699306302 -5484.0,0.43191156719529655 -5485.0,0.4317624159838636 -5486.0,0.4316133162785388 -5487.0,0.4314642680615356 -5488.0,0.43131527131507363 -5489.0,0.43116632602137867 -5490.0,0.4310174321626826 -5491.0,0.4308685897212235 -5492.0,0.43071979867924554 -5493.0,0.4305710590189991 -5494.0,0.43042237072274053 -5495.0,0.4302737337727324 -5496.0,0.43012514815124353 -5497.0,0.4299766138405486 -5498.0,0.4298281308229286 -5499.0,0.4296796990806706 -5500.0,0.42953131859606775 -5501.0,0.4293829893514194 -5502.0,0.42923471132903085 -5503.0,0.4290864845112137 -5504.0,0.4289383088802855 -5505.0,0.4287901844185701 -5506.0,0.4286421111083972 -5507.0,0.4284940889321028 -5508.0,0.42834611787202886 -5509.0,0.4281981979105236 -5510.0,0.4280503290299412 -5511.0,0.42790251121264206 -5512.0,0.4277547444409925 -5513.0,0.42760702869736505 -5514.0,0.4274593639641383 -5515.0,0.4273117502236969 -5516.0,0.42716418745843165 -5517.0,0.4270166756507394 -5518.0,0.42686921478302303 -5519.0,0.4267218048376915 -5520.0,0.42657444579716 -5521.0,0.4264271376438495 -5522.0,0.4262798803601873 -5523.0,0.4261326739286067 -5524.0,0.4259855183315471 -5525.0,0.42583841355145374 -5526.0,0.42569135957077825 -5527.0,0.42554435637197807 -5528.0,0.4253974039375168 -5529.0,0.4252505022498641 -5530.0,0.42510365129149574 -5531.0,0.42495685104489334 -5532.0,0.42481010149254483 -5533.0,0.42466340261694396 -5534.0,0.4245167544005907 -5535.0,0.42437015682599094 -5536.0,0.42422360987565666 -5537.0,0.42407711353210586 -5538.0,0.42393066777786265 -5539.0,0.4237842725954571 -5540.0,0.4236379279674253 -5541.0,0.4234916338763094 -5542.0,0.4233453903046576 -5543.0,0.4231991972350242 -5544.0,0.4230530546499693 -5545.0,0.42290696253205917 -5546.0,0.42276092086386613 -5547.0,0.4226149296279685 -5548.0,0.42246898880695044 -5549.0,0.42232309838340243 -5550.0,0.4221772583399208 -5551.0,0.42203146865910784 -5552.0,0.42188572932357193 -5553.0,0.42174004031592743 -5554.0,0.4215944016187947 -5555.0,0.4214488132148001 -5556.0,0.42130327508657595 -5557.0,0.42115778721676067 -5558.0,0.42101234958799866 -5559.0,0.4208669621829402 -5560.0,0.4207216249842416 -5561.0,0.4205763379745653 -5562.0,0.4204311011365795 -5563.0,0.4202859144529586 -5564.0,0.4201407779063828 -5565.0,0.4199956914795385 -5566.0,0.4198506551551178 -5567.0,0.419705668915819 -5568.0,0.41956073274434635 -5569.0,0.4194158466234099 -5570.0,0.4192710105357259 -5571.0,0.4191262244640164 -5572.0,0.41898148839100946 -5573.0,0.4188368022994392 -5574.0,0.4186921661720455 -5575.0,0.4185475799915745 -5576.0,0.41840304374077797 -5577.0,0.41825855740241386 -5578.0,0.418114120959246 -5579.0,0.4179697343940441 -5580.0,0.41782539768958404 -5581.0,0.4176811108286474 -5582.0,0.4175368737940218 -5583.0,0.41739268656850087 -5584.0,0.4172485491348841 -5585.0,0.4171044614759769 -5586.0,0.41696042357459073 -5587.0,0.4168164354135429 -5588.0,0.4166724969756567 -5589.0,0.41652860824376126 -5590.0,0.4163847692006918 -5591.0,0.41624097982928926 -5592.0,0.4160972401124006 -5593.0,0.41595355003287887 -5594.0,0.4158099095735828 -5595.0,0.41566631871737714 -5596.0,0.4155227774471325 -5597.0,0.4153792857457255 -5598.0,0.4152358435960387 -5599.0,0.41509245098096037 -5600.0,0.41494910788338485 -5601.0,0.4148058142862124 -5602.0,0.4146625701723491 -5603.0,0.4145193755247069 -5604.0,0.4143762303262039 -5605.0,0.4142331345597638 -5606.0,0.41409008820831633 -5607.0,0.4139470912547971 -5608.0,0.4138041436821477 -5609.0,0.4136612454733154 -5610.0,0.41351839661125356 -5611.0,0.41337559707892135 -5612.0,0.4132328468592838 -5613.0,0.41309014593531185 -5614.0,0.4129474942899824 -5615.0,0.412804891906278 -5616.0,0.4126623387671874 -5617.0,0.41251983485570487 -5618.0,0.41237738015483083 -5619.0,0.41223497464757153 -5620.0,0.4120926183169389 -5621.0,0.411950311145951 -5622.0,0.41180805311763147 -5623.0,0.41166584421501007 -5624.0,0.4115236844211223 -5625.0,0.4113815737190095 -5626.0,0.411239512091719 -5627.0,0.4110974995223038 -5628.0,0.4109555359938228 -5629.0,0.41081362148934086 -5630.0,0.41067175599192857 -5631.0,0.4105299394846625 -5632.0,0.4103881719506248 -5633.0,0.4102464533729038 -5634.0,0.4101047837345934 -5635.0,0.40996316301879354 -5636.0,0.40982159120860984 -5637.0,0.4096800682871538 -5638.0,0.4095385942375428 -5639.0,0.4093971690429 -5640.0,0.4092557926863545 -5641.0,0.40911446515104094 -5642.0,0.40897318642010017 -5643.0,0.40883195647667847 -5644.0,0.40869077530392833 -5645.0,0.4085496428850078 -5646.0,0.4084085592030808 -5647.0,0.408267524241317 -5648.0,0.4081265379828921 -5649.0,0.4079856004109874 -5650.0,0.40784471150879004 -5651.0,0.40770387125949303 -5652.0,0.4075630796462952 -5653.0,0.4074223366524011 -5654.0,0.40728164226102104 -5655.0,0.40714099645537133 -5656.0,0.40700039921867387 -5657.0,0.40685985053415646 -5658.0,0.4067193503850527 -5659.0,0.4065788987546019 -5660.0,0.4064384956260492 -5661.0,0.4062981409826456 -5662.0,0.4061578348076477 -5663.0,0.4060175770843181 -5664.0,0.4058773677959251 -5665.0,0.4057372069257426 -5666.0,0.40559709445705056 -5667.0,0.4054570303731346 -5668.0,0.405317014657286 -5669.0,0.4051770472928019 -5670.0,0.4050371282629853 -5671.0,0.40489725755114486 -5672.0,0.404757435140595 -5673.0,0.4046176610146559 -5674.0,0.4044779351566536 -5675.0,0.40433825754991976 -5676.0,0.4041986281777919 -5677.0,0.4040590470236132 -5678.0,0.40391951407073273 -5679.0,0.4037800293025052 -5680.0,0.403640592702291 -5681.0,0.4035012042534564 -5682.0,0.4033618639393735 -5683.0,0.4032225717434199 -5684.0,0.4030833276489791 -5685.0,0.4029441316394402 -5686.0,0.4028049836981983 -5687.0,0.4026658838086539 -5688.0,0.4025268319542135 -5689.0,0.4023878281182892 -5690.0,0.4022488722842989 -5691.0,0.40210996443566605 -5692.0,0.4019711045558201 -5693.0,0.401832292628196 -5694.0,0.40169352863623453 -5695.0,0.4015548125633821 -5696.0,0.401416144393091 -5697.0,0.40127752410881906 -5698.0,0.40113895169402985 -5699.0,0.4010004271321928 -5700.0,0.4008619504067828 -5701.0,0.4007235215012807 -5702.0,0.400585140399173 -5703.0,0.40044680708395164 -5704.0,0.4003085215391146 -5705.0,0.40017028374816543 -5706.0,0.40003209369461334 -5707.0,0.39989395136197325 -5708.0,0.3997558567337658 -5709.0,0.3996178097935173 -5710.0,0.3994798105247598 -5711.0,0.3993418589110309 -5712.0,0.3992039549358741 -5713.0,0.3990660985828383 -5714.0,0.3989282898354784 -5715.0,0.39879052867735476 -5716.0,0.3986528150920335 -5717.0,0.3985151490630863 -5718.0,0.39837753057409075 -5719.0,0.39823995960862985 -5720.0,0.39810243615029245 -5721.0,0.39796496018267297 -5722.0,0.39782753168937157 -5723.0,0.39769015065399405 -5724.0,0.3975528170601518 -5725.0,0.39741553089146187 -5726.0,0.39727829213154714 -5727.0,0.39714110076403597 -5728.0,0.3970039567725624 -5729.0,0.3968668601407662 -5730.0,0.39672981085229275 -5731.0,0.39659280889079307 -5732.0,0.39645585423992374 -5733.0,0.3963189468833472 -5734.0,0.39618208680473127 -5735.0,0.39604527398774964 -5736.0,0.3959085084160815 -5737.0,0.3957717900734117 -5738.0,0.39563511894343073 -5739.0,0.39549849500983475 -5740.0,0.39536191825632555 -5741.0,0.39522538866661044 -5742.0,0.3950889062244025 -5743.0,0.3949524709134204 -5744.0,0.39481608271738833 -5745.0,0.39467974162003616 -5746.0,0.3945434476050994 -5747.0,0.3944072006563193 -5748.0,0.39427100075744237 -5749.0,0.39413484789222114 -5750.0,0.3939987420444135 -5751.0,0.393862683197783 -5752.0,0.3937266713360988 -5753.0,0.3935907064431357 -5754.0,0.3934547885026741 -5755.0,0.39331891749849995 -5756.0,0.3931830934144048 -5757.0,0.39304731623418593 -5758.0,0.39291158594164605 -5759.0,0.39277590252059347 -5760.0,0.39264026595484225 -5761.0,0.3925046762282119 -5762.0,0.3923691333245275 -5763.0,0.39223363722761984 -5764.0,0.39209818792132517 -5765.0,0.3919627853894854 -5766.0,0.3918274296159481 -5767.0,0.3916921205845661 -5768.0,0.39155685827919817 -5769.0,0.39142164268370844 -5770.0,0.39128647378196674 -5771.0,0.3911513515578483 -5772.0,0.39101627599523414 -5773.0,0.3908812470780107 -5774.0,0.39074626479006996 -5775.0,0.39061132911530955 -5776.0,0.39047644003763254 -5777.0,0.3903415975409478 -5778.0,0.3902068016091696 -5779.0,0.39007205222621766 -5780.0,0.38993734937601743 -5781.0,0.3898026930424998 -5782.0,0.3896680832096013 -5783.0,0.3895335198612639 -5784.0,0.38939900298143515 -5785.0,0.3892645325540683 -5786.0,0.3891301085631219 -5787.0,0.3889957309925602 -5788.0,0.38886139982635287 -5789.0,0.38872711504847524 -5790.0,0.3885928766429081 -5791.0,0.3884586845936378 -5792.0,0.3883245388846562 -5793.0,0.3881904394999606 -5794.0,0.3880563864235541 -5795.0,0.387922379639445 -5796.0,0.38778841913164735 -5797.0,0.38765450488418063 -5798.0,0.3875206368810698 -5799.0,0.38738681510634543 -5800.0,0.3872530395440435 -5801.0,0.3871193101782056 -5802.0,0.3869856269928788 -5803.0,0.38685198997211573 -5804.0,0.3867183990999743 -5805.0,0.38658485436051826 -5806.0,0.3864513557378166 -5807.0,0.38631790321594395 -5808.0,0.38618449677898037 -5809.0,0.38605113641101146 -5810.0,0.3859178220961283 -5811.0,0.3857845538184274 -5812.0,0.385651331562011 -5813.0,0.3855181553109865 -5814.0,0.3853850250494669 -5815.0,0.38525194076157093 -5816.0,0.3851189024314225 -5817.0,0.3849859100431511 -5818.0,0.38485296358089166 -5819.0,0.3847200630287847 -5820.0,0.38458720837097615 -5821.0,0.38445439959161737 -5822.0,0.3843216366748653 -5823.0,0.3841889196048823 -5824.0,0.38405624836583613 -5825.0,0.38392362294190013 -5826.0,0.383791043317253 -5827.0,0.38365850947607905 -5828.0,0.3835260214025678 -5829.0,0.3833935790809146 -5830.0,0.3832611824953199 -5831.0,0.38312883162998973 -5832.0,0.38299652646913573 -5833.0,0.3828642669969747 -5834.0,0.3827320531977292 -5835.0,0.38259988505562703 -5836.0,0.38246776255490145 -5837.0,0.38233568567979126 -5838.0,0.38220365441454063 -5839.0,0.3820716687433992 -5840.0,0.38193972865062203 -5841.0,0.3818078341204697 -5842.0,0.381675985137208 -5843.0,0.3815441816851085 -5844.0,0.38141242374844786 -5845.0,0.38128071131150837 -5846.0,0.3811490443585777 -5847.0,0.38101742287394896 -5848.0,0.3808858468419206 -5849.0,0.3807543162467967 -5850.0,0.3806228310728864 -5851.0,0.38049139130450466 -5852.0,0.3803599969259716 -5853.0,0.3802286479216129 -5854.0,0.3800973442757594 -5855.0,0.3799660859727478 -5856.0,0.3798348729969197 -5857.0,0.3797037053326225 -5858.0,0.37957258296420876 -5859.0,0.37944150587603664 -5860.0,0.3793104740524695 -5861.0,0.3791794874778762 -5862.0,0.37904854613663114 -5863.0,0.3789176500131138 -5864.0,0.37878679909170926 -5865.0,0.37865599335680805 -5866.0,0.3785252327928059 -5867.0,0.3783945173841041 -5868.0,0.37826384711510924 -5869.0,0.37813322197023325 -5870.0,0.3780026419338936 -5871.0,0.3778721069905129 -5872.0,0.3777416171245194 -5873.0,0.37761117232034663 -5874.0,0.37748077256243345 -5875.0,0.37735041783522405 -5876.0,0.37722010812316814 -5877.0,0.3770898434107207 -5878.0,0.3769596236823421 -5879.0,0.37682944892249803 -5880.0,0.3766993191156596 -5881.0,0.3765692342463034 -5882.0,0.3764391942989111 -5883.0,0.37630919925796996 -5884.0,0.37617924910797246 -5885.0,0.37604934383341654 -5886.0,0.3759194834188055 -5887.0,0.3757896678486478 -5888.0,0.3756598971074575 -5889.0,0.37553017117975385 -5890.0,0.3754004900500615 -5891.0,0.37527085370291047 -5892.0,0.37514126212283605 -5893.0,0.37501171529437893 -5894.0,0.37488221320208515 -5895.0,0.374752755830506 -5896.0,0.3746233431641981 -5897.0,0.3744939751877236 -5898.0,0.37436465188564977 -5899.0,0.37423537324254935 -5900.0,0.37410613924300024 -5901.0,0.3739769498715858 -5902.0,0.37384780511289467 -5903.0,0.3737187049515209 -5904.0,0.3735896493720637 -5905.0,0.3734606383591277 -5906.0,0.3733316718973228 -5907.0,0.37320274997126435 -5908.0,0.3730738725655728 -5909.0,0.37294503966487397 -5910.0,0.37281625125379914 -5911.0,0.3726875073169848 -5912.0,0.37255880783907264 -5913.0,0.37243015280470987 -5914.0,0.3723015421985488 -5915.0,0.3721729760052471 -5916.0,0.37204445420946786 -5917.0,0.3719159767958793 -5918.0,0.371787543749155 -5919.0,0.37165915505397384 -5920.0,0.37153081069502 -5921.0,0.37140251065698293 -5922.0,0.37127425492455735 -5923.0,0.3711460434824433 -5924.0,0.37101787631534605 -5925.0,0.3708897534079763 -5926.0,0.3707616747450498 -5927.0,0.37063364031128776 -5928.0,0.3705056500914166 -5929.0,0.370377704070168 -5930.0,0.370249802232279 -5931.0,0.37012194456249176 -5932.0,0.36999413104555384 -5933.0,0.369866361666218 -5934.0,0.3697386364092423 -5935.0,0.36961095525939003 -5936.0,0.36948331820142977 -5937.0,0.3693557252201354 -5938.0,0.36922817630028587 -5939.0,0.36910067142666564 -5940.0,0.3689732105840643 -5941.0,0.36884579375727666 -5942.0,0.3687184209311028 -5943.0,0.3685910920903482 -5944.0,0.36846380721982325 -5945.0,0.368336566304344 -5946.0,0.36820936932873144 -5947.0,0.36808221627781185 -5948.0,0.3679551071364169 -5949.0,0.36782804188938334 -5950.0,0.3677010205215532 -5951.0,0.3675740430177738 -5952.0,0.3674471093628976 -5953.0,0.36732021954178246 -5954.0,0.36719337353929116 -5955.0,0.367066571340292 -5956.0,0.36693981292965844 -5957.0,0.36681309829226905 -5958.0,0.3666864274130078 -5959.0,0.3665598002767636 -5960.0,0.366433216868431 -5961.0,0.36630667717290927 -5962.0,0.3661801811751033 -5963.0,0.366053728859923 -5964.0,0.3659273202122836 -5965.0,0.3658009552171053 -5966.0,0.3656746338593139 -5967.0,0.36554835612383996 -5968.0,0.3654221219956197 -5969.0,0.36529593145959405 -5970.0,0.3651697845007096 -5971.0,0.3650436811039178 -5972.0,0.3649176212541756 -5973.0,0.3647916049364448 -5974.0,0.3646656321356927 -5975.0,0.3645397028368916 -5976.0,0.364413817025019 -5977.0,0.36428797468505786 -5978.0,0.36416217580199584 -5979.0,0.36403642036082623 -5980.0,0.3639107083465472 -5981.0,0.3637850397441623 -5982.0,0.36365941453868017 -5983.0,0.3635338327151147 -5984.0,0.36340829425848475 -5985.0,0.3632827991538146 -5986.0,0.3631573473861336 -5987.0,0.36303193894047625 -5988.0,0.3629065738018822 -5989.0,0.36278125195539634 -5990.0,0.36265597338606864 -5991.0,0.3625307380789544 -5992.0,0.3624055460191138 -5993.0,0.3622803971916125 -5994.0,0.362155291581521 -5995.0,0.3620302291739152 -5996.0,0.36190520995387615 -5997.0,0.3617802339064898 -5998.0,0.3616553010168475 -5999.0,0.36153041127004565 -6000.0,0.3614055646511859 -6001.0,0.36128076114537483 -6002.0,0.3611560007377244 -6003.0,0.36103128341335144 -6004.0,0.3609066091573783 -6005.0,0.3607819779549321 -6006.0,0.36065738979114537 -6007.0,0.3605328446511554 -6008.0,0.36040834252010523 -6009.0,0.3602838833831423 -6010.0,0.36015946722541986 -6011.0,0.36003509403209566 -6012.0,0.3599107637883332 -6013.0,0.3597864764793005 -6014.0,0.3596622320901712 -6015.0,0.35953803060612377 -6016.0,0.3594138720123418 -6017.0,0.3592897562940143 -6018.0,0.35916568343633487 -6019.0,0.3590416534245028 -6020.0,0.358917666243722 -6021.0,0.3587937218792019 -6022.0,0.35866982031615663 -6023.0,0.35854596153980584 -6024.0,0.35842214553537394 -6025.0,0.35829837228809064 -6026.0,0.35817464178319064 -6027.0,0.3580509540059139 -6028.0,0.35792730894150526 -6029.0,0.3578037065752149 -6030.0,0.3576801468922977 -6031.0,0.35755662987801423 -6032.0,0.3574331555176295 -6033.0,0.3573097237964141 -6034.0,0.35718633469964356 -6035.0,0.3570629882125983 -6036.0,0.35693968432056417 -6037.0,0.3568164230088317 -6038.0,0.35669320426269696 -6039.0,0.35657002806746063 -6040.0,0.3564468944084288 -6041.0,0.35632380327091245 -6042.0,0.3562007546402279 -6043.0,0.35607774850169605 -6044.0,0.3559547848406434 -6045.0,0.35583186364240116 -6046.0,0.3557089848923058 -6047.0,0.3555861485756987 -6048.0,0.3554633546779265 -6049.0,0.35534060318434063 -6050.0,0.3552178940802979 -6051.0,0.35509522735115984 -6052.0,0.3549726029822933 -6053.0,0.3548500209590701 -6054.0,0.35472748126686704 -6055.0,0.35460498389106615 -6056.0,0.35448252881705417 -6057.0,0.3543601160302234 -6058.0,0.35423774551597054 -6059.0,0.354115417259698 -6060.0,0.35399313124681264 -6061.0,0.3538708874627268 -6062.0,0.3537486858928577 -6063.0,0.3536265265226275 -6064.0,0.3535044093374634 -6065.0,0.353382334322798 -6066.0,0.3532603014640683 -6067.0,0.3531383107467169 -6068.0,0.35301636215619114 -6069.0,0.3528944556779435 -6070.0,0.35277259129743116 -6071.0,0.3526507690001169 -6072.0,0.3525289887714681 -6073.0,0.35240725059695716 -6074.0,0.35228555446206183 -6075.0,0.3521639003522644 -6076.0,0.35204228825305267 -6077.0,0.35192071814991893 -6078.0,0.351799190028361 -6079.0,0.3516777038738813 -6080.0,0.35155625967198756 -6081.0,0.35143485740819214 -6082.0,0.3513134970680129 -6083.0,0.3511921786369723 -6084.0,0.35107090210059794 -6085.0,0.3509496674444224 -6086.0,0.35082847465398337 -6087.0,0.35070732371482327 -6088.0,0.35058621461248984 -6089.0,0.3504651473325355 -6090.0,0.3503441218605179 -6091.0,0.3502231381819996 -6092.0,0.3501021962825481 -6093.0,0.3499812961477359 -6094.0,0.34986043776314046 -6095.0,0.34973962111434437 -6096.0,0.3496188461869349 -6097.0,0.34949811296650474 -6098.0,0.349377421438651 -6099.0,0.34925677158897633 -6100.0,0.3491361634030879 -6101.0,0.34901559686659817 -6102.0,0.34889507196512426 -6103.0,0.3487745886842886 -6104.0,0.3486541470097183 -6105.0,0.34853374692704564 -6106.0,0.3484133884219076 -6107.0,0.34829307147994654 -6108.0,0.3481727960868093 -6109.0,0.348052562228148 -6110.0,0.3479323698896197 -6111.0,0.3478122190568861 -6112.0,0.3476921097156143 -6113.0,0.347572041851476 -6114.0,0.3474520154501481 -6115.0,0.3473320304973122 -6116.0,0.3472120869786551 -6117.0,0.34709218487986826 -6118.0,0.34697232418664836 -6119.0,0.3468525048846968 -6120.0,0.34673272695972013 -6121.0,0.34661299039742954 -6122.0,0.34649329518354155 -6123.0,0.3463736413037772 -6124.0,0.3462540287438628 -6125.0,0.3461344574895293 -6126.0,0.34601492752651286 -6127.0,0.3458954388405543 -6128.0,0.34577599141739956 -6129.0,0.3456565852427995 -6130.0,0.3455372203025097 -6131.0,0.34541789658229094 -6132.0,0.34529861406790857 -6133.0,0.34517937274513333 -6134.0,0.3450601725997403 -6135.0,0.34494101361751 -6136.0,0.34482189578422745 -6137.0,0.34470281908568295 -6138.0,0.3445837835076714 -6139.0,0.34446478903599276 -6140.0,0.34434583565645177 -6141.0,0.3442269233548583 -6142.0,0.34410805211702694 -6143.0,0.3439892219287772 -6144.0,0.3438704327759334 -6145.0,0.34375168464432504 -6146.0,0.3436329775197862 -6147.0,0.343514311388156 -6148.0,0.3433956862352786 -6149.0,0.3432771020470027 -6150.0,0.3431585588091821 -6151.0,0.3430400565076755 -6152.0,0.34292159512834647 -6153.0,0.34280317465706334 -6154.0,0.34268479507969946 -6155.0,0.342566456382133 -6156.0,0.3424481585502471 -6157.0,0.3423299015699295 -6158.0,0.34221168542707314 -6159.0,0.34209351010757566 -6160.0,0.3419753755973397 -6161.0,0.34185728188227255 -6162.0,0.34173922894828657 -6163.0,0.34162121678129875 -6164.0,0.34150324536723137 -6165.0,0.34138531469201105 -6166.0,0.3412674247415696 -6167.0,0.3411495755018437 -6168.0,0.3410317669587747 -6169.0,0.34091399909830894 -6170.0,0.34079627190639755 -6171.0,0.3406785853689966 -6172.0,0.3405609394720667 -6173.0,0.34044333420157397 -6174.0,0.34032576954348853 -6175.0,0.34020824548378614 -6176.0,0.34009076200844673 -6177.0,0.3399733191034556 -6178.0,0.33985591675480253 -6179.0,0.3397385549484824 -6180.0,0.3396212336704946 -6181.0,0.3395039529068438 -6182.0,0.3393867126435391 -6183.0,0.3392695128665947 -6184.0,0.33915235356202933 -6185.0,0.33903523471586694 -6186.0,0.3389181563141361 -6187.0,0.33880111834287 -6188.0,0.3386841207881071 -6189.0,0.33856716363589034 -6190.0,0.33845024687226766 -6191.0,0.3383333704832916 -6192.0,0.3382165344550198 -6193.0,0.33809973877351446 -6194.0,0.3379829834248428 -6195.0,0.33786626839507666 -6196.0,0.3377495936702929 -6197.0,0.337632959236573 -6198.0,0.3375163650800034 -6199.0,0.33739981118667506 -6200.0,0.33728329754268427 -6201.0,0.3371668241341315 -6202.0,0.3370503909471225 -6203.0,0.33693399796776763 -6204.0,0.33681764518218194 -6205.0,0.3367013325764856 -6206.0,0.3365850601368031 -6207.0,0.33646882784926424 -6208.0,0.3363526357000032 -6209.0,0.3362364836751591 -6210.0,0.33612037176087595 -6211.0,0.3360042999433024 -6212.0,0.3358882682085918 -6213.0,0.33577227654290265 -6214.0,0.3356563249323978 -6215.0,0.3355404133632452 -6216.0,0.33542454182161724 -6217.0,0.3353087102936916 -6218.0,0.3351929187656501 -6219.0,0.3350771672236799 -6220.0,0.33496145565397256 -6221.0,0.33484578404272464 -6222.0,0.3347301523761372 -6223.0,0.3346145606404163 -6224.0,0.33449900882177275 -6225.0,0.33438349690642194 -6226.0,0.3342680248805843 -6227.0,0.3341525927304847 -6228.0,0.3340372004423531 -6229.0,0.3339218480024238 -6230.0,0.33380653539693633 -6231.0,0.3336912626121346 -6232.0,0.3335760296342675 -6233.0,0.33346083644958846 -6234.0,0.33334568304435586 -6235.0,0.3332305694048327 -6236.0,0.3331154955172868 -6237.0,0.33300046136799066 -6238.0,0.3328854669432216 -6239.0,0.3327705122292614 -6240.0,0.3326555972123971 -6241.0,0.33254072187892003 -6242.0,0.33242588621512636 -6243.0,0.3323110902073172 -6244.0,0.332196333841798 -6245.0,0.3320816171048793 -6246.0,0.33196693998287624 -6247.0,0.3318523024621087 -6248.0,0.33173770452890106 -6249.0,0.3316231461695829 -6250.0,0.331508627370488 -6251.0,0.33139414811795526 -6252.0,0.331279708398328 -6253.0,0.3311653081979546 -6254.0,0.33105094750318775 -6255.0,0.33093662630038523 -6256.0,0.33082234457590914 -6257.0,0.33070810231612674 -6258.0,0.3305938995074095 -6259.0,0.3304797361361341 -6260.0,0.3303656121886816 -6261.0,0.3302515276514378 -6262.0,0.3301374825107933 -6263.0,0.33002347675314325 -6264.0,0.32990951036488775 -6265.0,0.3297955833324313 -6266.0,0.32968169564218336 -6267.0,0.3295678472805578 -6268.0,0.32945403823397357 -6269.0,0.3293402684888538 -6270.0,0.3292265380316268 -6271.0,0.32911284684872527 -6272.0,0.32899919492658675 -6273.0,0.32888558225165326 -6274.0,0.32877200881037183 -6275.0,0.3286584745891938 -6276.0,0.32854497957457546 -6277.0,0.32843152375297757 -6278.0,0.3283181071108658 -6279.0,0.32820472963471037 -6280.0,0.3280913913109861 -6281.0,0.3279780921261726 -6282.0,0.3278648320667541 -6283.0,0.3277516111192196 -6284.0,0.32763842927006237 -6285.0,0.327525286505781 -6286.0,0.3274121828128781 -6287.0,0.3272991181778614 -6288.0,0.327186092587243 -6289.0,0.3270731060275399 -6290.0,0.3269601584852735 -6291.0,0.32684724994697006 -6292.0,0.32673438039916036 -6293.0,0.32662154982837993 -6294.0,0.32650875822116887 -6295.0,0.32639600556407206 -6296.0,0.32628329184363875 -6297.0,0.3261706170464231 -6298.0,0.32605798115898393 -6299.0,0.3259453841678845 -6300.0,0.3258328260596928 -6301.0,0.3257203068209815 -6302.0,0.3256078264383279 -6303.0,0.32549538489831387 -6304.0,0.325382982187526 -6305.0,0.3252706182925554 -6306.0,0.3251582931999979 -6307.0,0.3250460068964539 -6308.0,0.3249337593685286 -6309.0,0.32482155060283147 -6310.0,0.3247093805859771 -6311.0,0.3245972493045841 -6312.0,0.32448515674527634 -6313.0,0.3243731028946818 -6314.0,0.32426108773943335 -6315.0,0.3241491112661683 -6316.0,0.32403717346152877 -6317.0,0.3239252743121614 -6318.0,0.3238134138047174 -6319.0,0.3237015919258527 -6320.0,0.3235898086622276 -6321.0,0.3234780640005073 -6322.0,0.32336635792736146 -6323.0,0.3232546904294644 -6324.0,0.32314306149349487 -6325.0,0.3230314711061365 -6326.0,0.32291991925407726 -6327.0,0.32280840592400994 -6328.0,0.32269693110263165 -6329.0,0.32258549477664444 -6330.0,0.3224740969327546 -6331.0,0.3223627375576733 -6332.0,0.32225141663811613 -6333.0,0.32214013416080334 -6334.0,0.3220288901124597 -6335.0,0.3219176844798146 -6336.0,0.32180651724960213 -6337.0,0.3216953884085607 -6338.0,0.32158429794343363 -6339.0,0.3214732458409684 -6340.0,0.32136223208791753 -6341.0,0.3212512566710377 -6342.0,0.32114031957709055 -6343.0,0.32102942079284186 -6344.0,0.32091856030506244 -6345.0,0.3208077381005273 -6346.0,0.32069695416601623 -6347.0,0.32058620848831343 -6348.0,0.3204755010542079 -6349.0,0.32036483185049286 -6350.0,0.32025420086396644 -6351.0,0.320143608081431 -6352.0,0.32003305348969385 -6353.0,0.31992253707556645 -6354.0,0.31981205882586505 -6355.0,0.3197016187274105 -6356.0,0.3195912167670279 -6357.0,0.3194808529315473 -6358.0,0.31937052720780296 -6359.0,0.31926023958263394 -6360.0,0.31914999004288364 -6361.0,0.31903977857540017 -6362.0,0.31892960516703595 -6363.0,0.3188194698046483 -6364.0,0.31870937247509873 -6365.0,0.31859931316525353 -6366.0,0.3184892918619833 -6367.0,0.3183793085521635 -6368.0,0.3182693632226737 -6369.0,0.3181594558603984 -6370.0,0.3180495864522263 -6371.0,0.31793975498505095 -6372.0,0.3178299614457701 -6373.0,0.3177202058212862 -6374.0,0.31761048809850634 -6375.0,0.31750080826434185 -6376.0,0.31739116630570885 -6377.0,0.31728156220952775 -6378.0,0.31717199596272366 -6379.0,0.317062467552226 -6380.0,0.316952976964969 -6381.0,0.316843524187891 -6382.0,0.31673410920793543 -6383.0,0.31662473201204955 -6384.0,0.31651539258718564 -6385.0,0.31640609092030014 -6386.0,0.3162968269983544 -6387.0,0.3161876008083138 -6388.0,0.3160784123371486 -6389.0,0.3159692615718333 -6390.0,0.3158601484993472 -6391.0,0.3157510731066736 -6392.0,0.3156420353808009 -6393.0,0.31553303530872157 -6394.0,0.3154240728774326 -6395.0,0.3153151480739358 -6396.0,0.31520626088523696 -6397.0,0.3150974112983469 -6398.0,0.31498859930028045 -6399.0,0.31487982487805727 -6400.0,0.3147710880187012 -6401.0,0.31466238870924096 -6402.0,0.3145537269367093 -6403.0,0.3144451026881438 -6404.0,0.31433651595058626 -6405.0,0.3142279667110832 -6406.0,0.3141194549566854 -6407.0,0.31401098067444827 -6408.0,0.3139025438514315 -6409.0,0.31379414447469955 -6410.0,0.31368578253132096 -6411.0,0.31357745800836906 -6412.0,0.31346917089292153 -6413.0,0.3133609211720605 -6414.0,0.31325270883287254 -6415.0,0.31314453386244867 -6416.0,0.31303639624788454 -6417.0,0.3129282959762799 -6418.0,0.31282023303473944 -6419.0,0.3127122074103718 -6420.0,0.3126042190902905 -6421.0,0.3124962680616132 -6422.0,0.31238835431146217 -6423.0,0.31228047782696405 -6424.0,0.3121726385952501 -6425.0,0.31206483660345563 -6426.0,0.31195707183872096 -6427.0,0.3118493442881902 -6428.0,0.3117416539390126 -6429.0,0.3116340007783412 -6430.0,0.31152638479333383 -6431.0,0.3114188059711528 -6432.0,0.3113112642989646 -6433.0,0.31120375976394044 -6434.0,0.3110962923532557 -6435.0,0.3109888620540903 -6436.0,0.31088146885362866 -6437.0,0.3107741127390595 -6438.0,0.31066679369757605 -6439.0,0.3105595117163759 -6440.0,0.31045226678266113 -6441.0,0.31034505888363817 -6442.0,0.31023788800651786 -6443.0,0.3101307541385156 -6444.0,0.310023657266851 -6445.0,0.30991659737874827 -6446.0,0.30980957446143587 -6447.0,0.3097025885021468 -6448.0,0.3095956394881184 -6449.0,0.3094887274065924 -6450.0,0.309381852244815 -6451.0,0.30927501399003676 -6452.0,0.3091682126295127 -6453.0,0.3090614481505021 -6454.0,0.3089547205402689 -6455.0,0.30884802978608106 -6456.0,0.30874137587521133 -6457.0,0.30863475879493657 -6458.0,0.3085281785325382 -6459.0,0.3084216350753019 -6460.0,0.30831512841051795 -6461.0,0.30820865852548074 -6462.0,0.30810222540748927 -6463.0,0.30799582904384676 -6464.0,0.307889469421861 -6465.0,0.307783146528844 -6466.0,0.3076768603521123 -6467.0,0.3075706108789865 -6468.0,0.3074643980967921 -6469.0,0.30735822199285856 -6470.0,0.30725208255451986 -6471.0,0.30714597976911434 -6472.0,0.30703991362398464 -6473.0,0.306933884106478 -6474.0,0.3068278912039457 -6475.0,0.3067219349037437 -6476.0,0.30661601519323206 -6477.0,0.30651013205977545 -6478.0,0.30640428549074267 -6479.0,0.30629847547350714 -6480.0,0.30619270199544635 -6481.0,0.3060869650439424 -6482.0,0.30598126460638153 -6483.0,0.30587560067015457 -6484.0,0.3057699732226565 -6485.0,0.30566438225128684 -6486.0,0.30555882774344917 -6487.0,0.30545330968655177 -6488.0,0.3053478280680071 -6489.0,0.3052423828752318 -6490.0,0.30513697409564733 -6491.0,0.30503160171667887 -6492.0,0.3049262657257565 -6493.0,0.30482096611031423 -6494.0,0.30471570285779076 -6495.0,0.3046104759556288 -6496.0,0.30450528539127564 -6497.0,0.30440013115218273 -6498.0,0.30429501322580604 -6499.0,0.30418993159960567 -6500.0,0.30408488626104624 -6501.0,0.3039798771975965 -6502.0,0.30387490439672976 -6503.0,0.3037699678459234 -6504.0,0.30366506753265937 -6505.0,0.30356020344442375 -6506.0,0.303455375568707 -6507.0,0.303350583893004 -6508.0,0.30324582840481384 -6509.0,0.30314110909164 -6510.0,0.30303642594099006 -6511.0,0.30293177894037626 -6512.0,0.30282716807731486 -6513.0,0.3027225933393267 -6514.0,0.30261805471393655 -6515.0,0.302513552188674 -6516.0,0.30240908575107234 -6517.0,0.30230465538866974 -6518.0,0.30220026108900827 -6519.0,0.30209590283963456 -6520.0,0.30199158062809933 -6521.0,0.3018872944419578 -6522.0,0.3017830442687693 -6523.0,0.3016788300960976 -6524.0,0.30157465191151067 -6525.0,0.30147050970258077 -6526.0,0.3013664034568847 -6527.0,0.30126233316200307 -6528.0,0.3011582988055213 -6529.0,0.30105430037502867 -6530.0,0.30095033785811903 -6531.0,0.3008464112423903 -6532.0,0.3007425205154449 -6533.0,0.3006386656648894 -6534.0,0.30053484667833463 -6535.0,0.30043106354339577 -6536.0,0.3003273162476923 -6537.0,0.3002236047788478 -6538.0,0.30011992912449037 -6539.0,0.3000162892722522 -6540.0,0.2999126852097698 -6541.0,0.29980911692468404 -6542.0,0.2997055844046399 -6543.0,0.2996020876372867 -6544.0,0.29949862661027804 -6545.0,0.29939520131127184 -6546.0,0.2992918117279301 -6547.0,0.29918845784791936 -6548.0,0.2990851396589101 -6549.0,0.29898185714857733 -6550.0,0.29887861030460006 -6551.0,0.2987753991146619 -6552.0,0.29867222356645023 -6553.0,0.2985690836476572 -6554.0,0.29846597934597885 -6555.0,0.2983629106491157 -6556.0,0.29825987754477223 -6557.0,0.29815688002065754 -6558.0,0.29805391806448456 -6559.0,0.29795099166397093 -6560.0,0.29784810080683805 -6561.0,0.29774524548081194 -6562.0,0.2976424256736226 -6563.0,0.2975396413730044 -6564.0,0.2974368925666961 -6565.0,0.2973341792424402 -6566.0,0.2972315013879841 -6567.0,0.29712885899107877 -6568.0,0.2970262520394799 -6569.0,0.2969236805209472 -6570.0,0.29682114442324464 -6571.0,0.2967186437341403 -6572.0,0.2966161784414068 -6573.0,0.29651374853282053 -6574.0,0.2964113539961626 -6575.0,0.2963089948192179 -6576.0,0.2962066709897758 -6577.0,0.2961043824956298 -6578.0,0.29600212932457776 -6579.0,0.29589991146442135 -6580.0,0.29579772890296696 -6581.0,0.2956955816280248 -6582.0,0.2955934696274095 -6583.0,0.29549139288893994 -6584.0,0.295389351400439 -6585.0,0.2952873451497339 -6586.0,0.295185374124656 -6587.0,0.295083438313041 -6588.0,0.2949815377027286 -6589.0,0.29487967228156287 -6590.0,0.29477784203739194 -6591.0,0.2946760469580683 -6592.0,0.29457428703144845 -6593.0,0.2944725622453932 -6594.0,0.2943708725877675 -6595.0,0.29426921804644063 -6596.0,0.29416759860928576 -6597.0,0.2940660142641806 -6598.0,0.2939644649990068 -6599.0,0.2938629508016503 -6600.0,0.2937614716600011 -6601.0,0.2936600275619536 -6602.0,0.29355861849540626 -6603.0,0.2934572444482616 -6604.0,0.2933559054084266 -6605.0,0.2932546013638121 -6606.0,0.29315333230233337 -6607.0,0.29305209821190964 -6608.0,0.29295089908046457 -6609.0,0.29284973489592564 -6610.0,0.29274860564622496 -6611.0,0.2926475113192983 -6612.0,0.29254645190308604 -6613.0,0.29244542738553236 -6614.0,0.2923444377545859 -6615.0,0.29224348299819924 -6616.0,0.2921425631043293 -6617.0,0.292041678060937 -6618.0,0.2919408278559876 -6619.0,0.2918400124774502 -6620.0,0.2917392319132984 -6621.0,0.2916384861515099 -6622.0,0.2915377751800663 -6623.0,0.29143709898695364 -6624.0,0.29133645756016185 -6625.0,0.2912358508876853 -6626.0,0.29113527895752217 -6627.0,0.29103474175767513 -6628.0,0.2909342392761507 -6629.0,0.29083377150095974 -6630.0,0.29073333842011717 -6631.0,0.29063294002164203 -6632.0,0.2905325762935575 -6633.0,0.29043224722389105 -6634.0,0.290331952800674 -6635.0,0.290231693011942 -6636.0,0.2901314678457348 -6637.0,0.2900312772900963 -6638.0,0.2899311213330744 -6639.0,0.2898309999627213 -6640.0,0.2897309131670933 -6641.0,0.2896308609342507 -6642.0,0.28953084325225803 -6643.0,0.28943086010918384 -6644.0,0.28933091149310103 -6645.0,0.28923099739208624 -6646.0,0.2891311177942207 -6647.0,0.2890312726875892 -6648.0,0.28893146206028125 -6649.0,0.28883168590038993 -6650.0,0.28873194419601284 -6651.0,0.28863223693525136 -6652.0,0.2885325641062113 -6653.0,0.28843292569700235 -6654.0,0.2883333216957384 -6655.0,0.2882337520905373 -6656.0,0.28813421686952134 -6657.0,0.2880347160208165 -6658.0,0.2879352495325531 -6659.0,0.2878358173928656 -6660.0,0.2877364195898924 -6661.0,0.2876370561117761 -6662.0,0.28753772694666324 -6663.0,0.2874384320827048 -6664.0,0.2873391715080554 -6665.0,0.28723994521087415 -6666.0,0.2871407531793239 -6667.0,0.287041595401572 -6668.0,0.2869424718657894 -6669.0,0.28684338256015157 -6670.0,0.2867443274728378 -6671.0,0.2866453065920316 -6672.0,0.28654631990592033 -6673.0,0.28644736740269583 -6674.0,0.28634844907055357 -6675.0,0.28624956489769354 -6676.0,0.28615071487231936 -6677.0,0.28605189898263905 -6678.0,0.28595311721686467 -6679.0,0.28585436956321214 -6680.0,0.2857556560099017 -6681.0,0.2856569765451574 -6682.0,0.2855583311572077 -6683.0,0.2854597198342847 -6684.0,0.28536114256462497 -6685.0,0.2852625993364688 -6686.0,0.2851640901380609 -6687.0,0.2850656149576496 -6688.0,0.2849671737834878 -6689.0,0.2848687666038319 -6690.0,0.2847703934069429 -6691.0,0.28467205418108543 -6692.0,0.2845737489145284 -6693.0,0.28447547759554465 -6694.0,0.28437724021241123 -6695.0,0.28427903675340904 -6696.0,0.2841808672068232 -6697.0,0.2840827315609427 -6698.0,0.28398462980406075 -6699.0,0.2838865619244746 -6700.0,0.28378852791048526 -6701.0,0.28369052775039816 -6702.0,0.28359256143252254 -6703.0,0.28349462894517174 -6704.0,0.28339673027666307 -6705.0,0.28329886541531807 -6706.0,0.283201034349462 -6707.0,0.28310323706742446 -6708.0,0.2830054735575389 -6709.0,0.2829077438081429 -6710.0,0.28281004780757785 -6711.0,0.28271238554418954 -6712.0,0.28261475700632743 -6713.0,0.28251716218234524 -6714.0,0.2824196010606005 -6715.0,0.28232207362945494 -6716.0,0.28222457987727434 -6717.0,0.28212711979242827 -6718.0,0.2820296933632906 -6719.0,0.28193230057823887 -6720.0,0.281834941425655 -6721.0,0.28173761589392465 -6722.0,0.2816403239714377 -6723.0,0.2815430656465878 -6724.0,0.28144584090777286 -6725.0,0.2813486497433946 -6726.0,0.28125149214185885 -6727.0,0.2811543680915754 -6728.0,0.2810572775809581 -6729.0,0.28096022059842474 -6730.0,0.2808631971323971 -6731.0,0.280766207171301 -6732.0,0.2806692507035663 -6733.0,0.28057232771762675 -6734.0,0.2804754382019201 -6735.0,0.28037858214488826 -6736.0,0.28028175953497686 -6737.0,0.28018497036063583 -6738.0,0.28008821461031874 -6739.0,0.27999149227248354 -6740.0,0.2798948033355918 -6741.0,0.27979814778810935 -6742.0,0.27970152561850575 -6743.0,0.27960493681525483 -6744.0,0.27950838136683415 -6745.0,0.2794118592617254 -6746.0,0.27931537048841415 -6747.0,0.2792189150353901 -6748.0,0.2791224928911466 -6749.0,0.27902610404418143 -6750.0,0.27892974848299595 -6751.0,0.27883342619609575 -6752.0,0.27873713717199017 -6753.0,0.2786408813991927 -6754.0,0.2785446588662207 -6755.0,0.2784484695615956 -6756.0,0.27835231347384265 -6757.0,0.2782561905914911 -6758.0,0.27816010090307425 -6759.0,0.2780640443971293 -6760.0,0.27796802106219737 -6761.0,0.27787203088682355 -6762.0,0.27777607385955705 -6763.0,0.27768014996895074 -6764.0,0.2775842592035617 -6765.0,0.2774884015519508 -6766.0,0.277392577002683 -6767.0,0.277296785544327 -6768.0,0.27720102716545575 -6769.0,0.27710530185464577 -6770.0,0.2770096096004779 -6771.0,0.27691395039153666 -6772.0,0.2768183242164106 -6773.0,0.27672273106369233 -6774.0,0.2766271709219781 -6775.0,0.2765316437798685 -6776.0,0.2764361496259676 -6777.0,0.2763406884488839 -6778.0,0.2762452602372293 -6779.0,0.27614986497962013 -6780.0,0.2760545026646763 -6781.0,0.27595917328102193 -6782.0,0.2758638768172847 -6783.0,0.2757686132620967 -6784.0,0.2756733826040934 -6785.0,0.2755781848319147 -6786.0,0.2754830199342041 -6787.0,0.27538788789960916 -6788.0,0.27529278871678126 -6789.0,0.2751977223743759 -6790.0,0.27510268886105216 -6791.0,0.27500768816547333 -6792.0,0.2749127202763066 -6793.0,0.27481778518222283 -6794.0,0.27472288287189717 -6795.0,0.2746280133340082 -6796.0,0.27453317655723897 -6797.0,0.27443837253027586 -6798.0,0.2743436012418097 -6799.0,0.2742488626805347 -6800.0,0.2741541568351495 -6801.0,0.2740594836943562 -6802.0,0.27396484324686105 -6803.0,0.2738702354813741 -6804.0,0.27377566038660944 -6805.0,0.2736811179512848 -6806.0,0.2735866081641221 -6807.0,0.2734921310138469 -6808.0,0.2733976864891889 -6809.0,0.2733032745788813 -6810.0,0.2732088952716617 -6811.0,0.2731145485562713 -6812.0,0.2730202344214551 -6813.0,0.2729259528559622 -6814.0,0.2728317038485455 -6815.0,0.27273748738796183 -6816.0,0.27264330346297166 -6817.0,0.2725491520623397 -6818.0,0.2724550331748344 -6819.0,0.27236094678922795 -6820.0,0.27226689289429656 -6821.0,0.27217287147882036 -6822.0,0.27207888253158313 -6823.0,0.2719849260413729 -6824.0,0.27189100199698113 -6825.0,0.2717971103872035 -6826.0,0.2717032512008393 -6827.0,0.27160942442669195 -6828.0,0.27151563005356855 -6829.0,0.27142186807028 -6830.0,0.2713281384656414 -6831.0,0.27123444122847135 -6832.0,0.2711407763475925 -6833.0,0.27104714381183126 -6834.0,0.270953543610018 -6835.0,0.27085997573098686 -6836.0,0.2707664401635759 -6837.0,0.27067293689662697 -6838.0,0.27057946591898596 -6839.0,0.2704860272195022 -6840.0,0.2703926207870294 -6841.0,0.2702992466104247 -6842.0,0.2702059046785493 -6843.0,0.27011259498026813 -6844.0,0.27001931750445013 -6845.0,0.26992607223996784 -6846.0,0.2698328591756979 -6847.0,0.26973967830052054 -6848.0,0.26964652960332003 -6849.0,0.2695534130729845 -6850.0,0.26946032869840575 -6851.0,0.26936727646847947 -6852.0,0.2692742563721052 -6853.0,0.2691812683981864 -6854.0,0.2690883125356302 -6855.0,0.2689953887733477 -6856.0,0.2689024971002537 -6857.0,0.268809637505267 -6858.0,0.26871680997731 -6859.0,0.2686240145053092 -6860.0,0.26853125107819464 -6861.0,0.2684385196849005 -6862.0,0.2683458203143644 -6863.0,0.2682531529555281 -6864.0,0.26816051759733694 -6865.0,0.2680679142287404 -6866.0,0.26797534283869134 -6867.0,0.26788280341614684 -6868.0,0.2677902959500676 -6869.0,0.26769782042941803 -6870.0,0.26760537684316665 -6871.0,0.2675129651802855 -6872.0,0.2674205854297506 -6873.0,0.26732823758054164 -6874.0,0.2672359216216423 -6875.0,0.26714363754203985 -6876.0,0.2670513853307256 -6877.0,0.26695916497669436 -6878.0,0.2668669764689451 -6879.0,0.26677481979648027 -6880.0,0.2666826949483063 -6881.0,0.26659060191343337 -6882.0,0.26649854068087553 -6883.0,0.26640651123965037 -6884.0,0.26631451357877955 -6885.0,0.2662225476872884 -6886.0,0.2661306135542061 -6887.0,0.2660387111685656 -6888.0,0.2659468405194035 -6889.0,0.2658550015957604 -6890.0,0.2657631943866805 -6891.0,0.26567141888121204 -6892.0,0.26557967506840663 -6893.0,0.26548796293732013 -6894.0,0.26539628247701175 -6895.0,0.26530463367654483 -6896.0,0.2652130165249863 -6897.0,0.2651214310114069 -6898.0,0.2650298771248811 -6899.0,0.2649383548544872 -6900.0,0.26484686418930725 -6901.0,0.2647554051184272 -6902.0,0.2646639776309365 -6903.0,0.2645725817159287 -6904.0,0.26448121736250063 -6905.0,0.26438988455975343 -6906.0,0.2642985832967918 -6907.0,0.264207313562724 -6908.0,0.26411607534666226 -6909.0,0.26402486863772257 -6910.0,0.26393369342502465 -6911.0,0.2638425496976919 -6912.0,0.2637514374448516 -6913.0,0.26366035665563464 -6914.0,0.2635693073191758 -6915.0,0.2634782894246136 -6916.0,0.2633873029610902 -6917.0,0.2632963479177516 -6918.0,0.26320542428374755 -6919.0,0.26311453204823143 -6920.0,0.2630236712003606 -6921.0,0.2629328417292959 -6922.0,0.2628420436242021 -6923.0,0.26275127687424765 -6924.0,0.2626605414686047 -6925.0,0.26256983739644923 -6926.0,0.26247916464696086 -6927.0,0.26238852320932304 -6928.0,0.2622979130727228 -6929.0,0.26220733422635123 -6930.0,0.2621167866594027 -6931.0,0.2620262703610756 -6932.0,0.2619357853205721 -6933.0,0.26184533152709794 -6934.0,0.2617549089698626 -6935.0,0.2616645176380794 -6936.0,0.2615741575209652 -6937.0,0.26148382860774083 -6938.0,0.2613935308876306 -6939.0,0.26130326434986273 -6940.0,0.26121302898366905 -6941.0,0.26112282477828513 -6942.0,0.2610326517229503 -6943.0,0.2609425098069075 -6944.0,0.26085239901940355 -6945.0,0.2607623193496888 -6946.0,0.2606722707870175 -6947.0,0.2605822533206474 -6948.0,0.2604922669398401 -6949.0,0.26040231163386096 -6950.0,0.260312387391979 -6951.0,0.2602224942034667 -6952.0,0.2601326320576007 -6953.0,0.2600428009436609 -6954.0,0.2599530008509312 -6955.0,0.25986323176869913 -6956.0,0.2597734936862559 -6957.0,0.2596837865928963 -6958.0,0.2595941104779191 -6959.0,0.2595044653306264 -6960.0,0.2594148511403243 -6961.0,0.25932526789632243 -6962.0,0.25923571558793423 -6963.0,0.25914619420447677 -6964.0,0.2590567037352707 -6965.0,0.25896724416964056 -6966.0,0.25887781549691435 -6967.0,0.2587884177064241 -6968.0,0.25869905078750505 -6969.0,0.25860971472949656 -6970.0,0.25852040952174143 -6971.0,0.2584311351535862 -6972.0,0.25834189161438104 -6973.0,0.25825267889347997 -6974.0,0.25816349698024044 -6975.0,0.2580743458640238 -6976.0,0.2579852255341948 -6977.0,0.25789613598012223 -6978.0,0.25780707719117824 -6979.0,0.2577180491567389 -6980.0,0.2576290518661836 -6981.0,0.25754008530889577 -6982.0,0.25745114947426234 -6983.0,0.2573622443516738 -6984.0,0.2572733699305246 -6985.0,0.2571845262002125 -6986.0,0.2570957131501392 -6987.0,0.2570069307697099 -6988.0,0.25691817904833353 -6989.0,0.25682945797542256 -6990.0,0.25674076754039343 -6991.0,0.2566521077326658 -6992.0,0.2565634785416633 -6993.0,0.2564748799568131 -6994.0,0.2563863119675461 -6995.0,0.2562977745632966 -6996.0,0.25620926773350294 -6997.0,0.2561207914676068 -6998.0,0.2560323457550536 -6999.0,0.25594393058529247 -7000.0,0.25585554594777604 -7001.0,0.2557671918319608 -7002.0,0.2556788682273065 -7003.0,0.2555905751232771 -7004.0,0.25550231250933964 -7005.0,0.25541408037496516 -7006.0,0.25532587870962814 -7007.0,0.2552377075028068 -7008.0,0.25514956674398287 -7009.0,0.255061456422642 -7010.0,0.254973376528273 -7011.0,0.2548853270503688 -7012.0,0.25479730797842565 -7013.0,0.25470931930194357 -7014.0,0.2546213610104261 -7015.0,0.25453343309338045 -7016.0,0.25444553554031746 -7017.0,0.2543576683407517 -7018.0,0.25426983148420107 -7019.0,0.2541820249601874 -7020.0,0.254094248758236 -7021.0,0.25400650286787574 -7022.0,0.2539187872786393 -7023.0,0.25383110198006276 -7024.0,0.25374344696168594 -7025.0,0.25365582221305216 -7026.0,0.2535682277237085 -7027.0,0.2534806634832056 -7028.0,0.2533931294810976 -7029.0,0.25330562570694237 -7030.0,0.2532181521503014 -7031.0,0.2531307088007396 -7032.0,0.2530432956478258 -7033.0,0.25295591268113204 -7034.0,0.2528685598902344 -7035.0,0.25278123726471213 -7036.0,0.25269394479414836 -7037.0,0.25260668246812973 -7038.0,0.25251945027624645 -7039.0,0.25243224820809246 -7040.0,0.2523450762532651 -7041.0,0.2522579344013654 -7042.0,0.2521708226419979 -7043.0,0.252083740964771 -7044.0,0.2519966893592963 -7045.0,0.2519096678151893 -7046.0,0.25182267632206884 -7047.0,0.25173571486955765 -7048.0,0.25164878344728164 -7049.0,0.25156188204487073 -7050.0,0.25147501065195804 -7051.0,0.25138816925818064 -7052.0,0.2513013578531788 -7053.0,0.25121457642659667 -7054.0,0.2511278249680818 -7055.0,0.2510411034672854 -7056.0,0.2509544119138622 -7057.0,0.25086775029747055 -7058.0,0.2507811186077724 -7059.0,0.2506945168344331 -7060.0,0.25060794496712185 -7061.0,0.2505214029955111 -7062.0,0.2504348909092771 -7063.0,0.2503484086980996 -7064.0,0.25026195635166193 -7065.0,0.25017553385965086 -7066.0,0.2500891412117569 -7067.0,0.25000277839767393 -7068.0,0.24991644540709967 -7069.0,0.24983014222973507 -7070.0,0.24974386885528488 -7071.0,0.24965762527345722 -7072.0,0.24957141147396397 -7073.0,0.24948522744652035 -7074.0,0.24939907318084534 -7075.0,0.24931294866666126 -7076.0,0.24922685389369414 -7077.0,0.24914078885167354 -7078.0,0.24905475353033243 -7079.0,0.24896874791940754 -7080.0,0.2488827720086389 -7081.0,0.24879682578777032 -7082.0,0.24871090924654896 -7083.0,0.24862502237472567 -7084.0,0.2485391651620547 -7085.0,0.24845333759829402 -7086.0,0.24836753967320488 -7087.0,0.24828177137655238 -7088.0,0.24819603269810483 -7089.0,0.24811032362763435 -7090.0,0.2480246441549164 -7091.0,0.2479389942697301 -7092.0,0.24785337396185794 -7093.0,0.2477677832210862 -7094.0,0.24768222203720439 -7095.0,0.2475966904000057 -7096.0,0.24751118829928695 -7097.0,0.24742571572484823 -7098.0,0.24734027266649336 -7099.0,0.24725485911402956 -7100.0,0.24716947505726766 -7101.0,0.24708412048602188 -7102.0,0.2469987953901102 -7103.0,0.24691349975935378 -7104.0,0.2468282335835776 -7105.0,0.24674299685260995 -7106.0,0.24665778955628276 -7107.0,0.24657261168443137 -7108.0,0.24648746322689477 -7109.0,0.24640234417351525 -7110.0,0.24631725451413886 -7111.0,0.24623219423861487 -7112.0,0.24614716333679637 -7113.0,0.24606216179853965 -7114.0,0.2459771896137047 -7115.0,0.24589224677215504 -7116.0,0.2458073332637575 -7117.0,0.2457224490783826 -7118.0,0.24563759420590417 -7119.0,0.24555276863619976 -7120.0,0.2454679723591502 -7121.0,0.24538320536463998 -7122.0,0.24529846764255697 -7123.0,0.24521375918279262 -7124.0,0.24512907997524178 -7125.0,0.24504443000980292 -7126.0,0.24495980927637778 -7127.0,0.2448752177648719 -7128.0,0.24479065546519393 -7129.0,0.2447061223672564 -7130.0,0.24462161846097497 -7131.0,0.24453714373626903 -7132.0,0.2444526981830613 -7133.0,0.24436828179127812 -7134.0,0.2442838945508492 -7135.0,0.2441995364517077 -7136.0,0.24411520748379043 -7137.0,0.24403090763703741 -7138.0,0.24394663690139243 -7139.0,0.24386239526680248 -7140.0,0.24377818272321825 -7141.0,0.2436939992605937 -7142.0,0.24360984486888648 -7143.0,0.24352571953805746 -7144.0,0.2434416232580712 -7145.0,0.24335755601889553 -7146.0,0.24327351781050194 -7147.0,0.24318950862286517 -7148.0,0.24310552844596367 -7149.0,0.2430215772697791 -7150.0,0.24293765508429682 -7151.0,0.2428537618795054 -7152.0,0.242769897645397 -7153.0,0.24268606237196735 -7154.0,0.2426022560492154 -7155.0,0.24251847866714377 -7156.0,0.24243473021575826 -7157.0,0.24235101068506848 -7158.0,0.24226732006508717 -7159.0,0.24218365834583072 -7160.0,0.24210002551731882 -7161.0,0.2420164215695748 -7162.0,0.2419328464926252 -7163.0,0.24184930027650023 -7164.0,0.24176578291123332 -7165.0,0.24168229438686156 -7166.0,0.2415988346934253 -7167.0,0.24151540382096848 -7168.0,0.24143200175953833 -7169.0,0.24134862849918567 -7170.0,0.24126528402996458 -7171.0,0.24118196834193276 -7172.0,0.24109868142515126 -7173.0,0.24101542326968448 -7174.0,0.2409321938656004 -7175.0,0.24084899320297032 -7176.0,0.24076582127186905 -7177.0,0.2406826780623747 -7178.0,0.240599563564569 -7179.0,0.24051647776853688 -7180.0,0.24043342066436693 -7181.0,0.24035039224215096 -7182.0,0.24026739249198434 -7183.0,0.24018442140396573 -7184.0,0.2401014789681974 -7185.0,0.24001856517478476 -7186.0,0.23993568001383697 -7187.0,0.2398528234754663 -7188.0,0.23976999554978867 -7189.0,0.23968719622692322 -7190.0,0.23960442549699262 -7191.0,0.23952168335012303 -7192.0,0.23943896977644377 -7193.0,0.23935628476608783 -7194.0,0.23927362830919138 -7195.0,0.23919100039589422 -7196.0,0.23910840101633934 -7197.0,0.23902583016067333 -7198.0,0.238943287819046 -7199.0,0.23886077398161074 -7200.0,0.23877828863852416 -7201.0,0.23869583177994644 -7202.0,0.23861340339604098 -7203.0,0.2385310034769748 -7204.0,0.23844863201291808 -7205.0,0.2383662889940446 -7206.0,0.23828397441053134 -7207.0,0.23820168825255889 -7208.0,0.23811943051031095 -7209.0,0.2380372011739749 -7210.0,0.23795500023374136 -7211.0,0.23787282767980433 -7212.0,0.23779068350236124 -7213.0,0.23770856769161286 -7214.0,0.23762648023776345 -7215.0,0.23754442113102045 -7216.0,0.23746239036159494 -7217.0,0.23738038791970112 -7218.0,0.23729841379555683 -7219.0,0.237216467979383 -7220.0,0.23713455046140428 -7221.0,0.23705266123184832 -7222.0,0.23697080028094647 -7223.0,0.2368889675989332 -7224.0,0.23680716317604658 -7225.0,0.23672538700252785 -7226.0,0.23664363906862182 -7227.0,0.2365619193645764 -7228.0,0.23648022788064313 -7229.0,0.2363985646070768 -7230.0,0.23631692953413558 -7231.0,0.236235322652081 -7232.0,0.2361537439511779 -7233.0,0.23607219342169464 -7234.0,0.2359906710539027 -7235.0,0.23590917683807722 -7236.0,0.23582771076449638 -7237.0,0.23574627282344196 -7238.0,0.23566486300519895 -7239.0,0.23558348130005585 -7240.0,0.2355021276983043 -7241.0,0.2354208021902395 -7242.0,0.23533950476615983 -7243.0,0.2352582354163672 -7244.0,0.23517699413116663 -7245.0,0.23509578090086677 -7246.0,0.23501459571577937 -7247.0,0.23493343856621968 -7248.0,0.23485230944250626 -7249.0,0.23477120833496093 -7250.0,0.234690135233909 -7251.0,0.23460909012967898 -7252.0,0.23452807301260284 -7253.0,0.23444708387301572 -7254.0,0.23436612270125634 -7255.0,0.2342851894876665 -7256.0,0.23420428422259157 -7257.0,0.23412340689638003 -7258.0,0.23404255749938394 -7259.0,0.23396173602195838 -7260.0,0.23388094245446212 -7261.0,0.23380017678725695 -7262.0,0.23371943901070819 -7263.0,0.23363872911518432 -7264.0,0.23355804709105737 -7265.0,0.23347739292870243 -7266.0,0.2333967666184981 -7267.0,0.23331616815082631 -7268.0,0.23323559751607215 -7269.0,0.23315505470462422 -7270.0,0.23307453970687425 -7271.0,0.2329940525132175 -7272.0,0.23291359311405233 -7273.0,0.23283316149978062 -7274.0,0.23275275766080736 -7275.0,0.23267238158754106 -7276.0,0.23259203327039335 -7277.0,0.23251171269977935 -7278.0,0.23243141986611732 -7279.0,0.23235115475982898 -7280.0,0.2322709173713392 -7281.0,0.23219070769107636 -7282.0,0.2321105257094719 -7283.0,0.23203037141696078 -7284.0,0.23195024480398124 -7285.0,0.2318701458609746 -7286.0,0.23179007457838577 -7287.0,0.2317100309466627 -7288.0,0.23163001495625696 -7289.0,0.23155002659762303 -7290.0,0.23147006586121902 -7291.0,0.23139013273750608 -7292.0,0.23131022721694888 -7293.0,0.2312303492900152 -7294.0,0.23115049894717626 -7295.0,0.2310706761789064 -7296.0,0.23099088097568343 -7297.0,0.2309111133279883 -7298.0,0.23083137322630537 -7299.0,0.23075166066112218 -7300.0,0.23067197562292965 -7301.0,0.23059231810222186 -7302.0,0.2305126880894963 -7303.0,0.23043308557525372 -7304.0,0.23035351054999803 -7305.0,0.23027396300423664 -7306.0,0.23019444292848 -7307.0,0.23011495031324197 -7308.0,0.23003548514903965 -7309.0,0.2299560474263935 -7310.0,0.22987663713582707 -7311.0,0.2297972542678674 -7312.0,0.22971789881304458 -7313.0,0.22963857076189217 -7314.0,0.22955927010494687 -7315.0,0.22947999683274872 -7316.0,0.22940075093584095 -7317.0,0.22932153240477018 -7318.0,0.2292423412300861 -7319.0,0.2291631774023419 -7320.0,0.22908404091209383 -7321.0,0.2290049317499015 -7322.0,0.22892584990632783 -7323.0,0.22884679537193883 -7324.0,0.22876776813730396 -7325.0,0.22868876819299577 -7326.0,0.22860979552959024 -7327.0,0.22853085013766639 -7328.0,0.2284519320078067 -7329.0,0.22837304113059675 -7330.0,0.2282941774966255 -7331.0,0.228215341096485 -7332.0,0.22813653192077077 -7333.0,0.22805774996008132 -7334.0,0.22797899520501866 -7335.0,0.2279002676461878 -7336.0,0.22782156727419722 -7337.0,0.22774289407965845 -7338.0,0.22766424805318644 -7339.0,0.2275856291853992 -7340.0,0.2275070374669181 -7341.0,0.22742847288836784 -7342.0,0.22734993544037604 -7343.0,0.22727142511357395 -7344.0,0.22719294189859568 -7345.0,0.2271144857860789 -7346.0,0.22703605676666427 -7347.0,0.22695765483099586 -7348.0,0.2268792799697208 -7349.0,0.22680093217348962 -7350.0,0.22672261143295594 -7351.0,0.22664431773877675 -7352.0,0.22656605108161207 -7353.0,0.22648781145212535 -7354.0,0.2264095988409831 -7355.0,0.22633141323885522 -7356.0,0.22625325463641463 -7357.0,0.2261751230243377 -7358.0,0.22609701839330376 -7359.0,0.22601894073399556 -7360.0,0.22594089003709908 -7361.0,0.22586286629330332 -7362.0,0.2257848694933007 -7363.0,0.2257068996277867 -7364.0,0.22562895668746016 -7365.0,0.225551040663023 -7366.0,0.22547315154518044 -7367.0,0.22539528932464084 -7368.0,0.22531745399211586 -7369.0,0.22523964553832024 -7370.0,0.22516186395397206 -7371.0,0.2250841092297925 -7372.0,0.22500638135650602 -7373.0,0.22492868032484023 -7374.0,0.224851006125526 -7375.0,0.2247733587492973 -7376.0,0.22469573818689145 -7377.0,0.2246181444290488 -7378.0,0.22454057746651299 -7379.0,0.22446303729003092 -7380.0,0.22438552389035255 -7381.0,0.22430803725823112 -7382.0,0.224230577384423 -7383.0,0.22415314425968788 -7384.0,0.22407573787478846 -7385.0,0.22399835822049077 -7386.0,0.22392100528756395 -7387.0,0.2238436790667804 -7388.0,0.22376637954891562 -7389.0,0.22368910672474843 -7390.0,0.2236118605850606 -7391.0,0.22353464112063737 -7392.0,0.2234574483222669 -7393.0,0.2233802821807408 -7394.0,0.22330314268685353 -7395.0,0.22322602983140308 -7396.0,0.22314894360519033 -7397.0,0.22307188399901948 -7398.0,0.22299485100369798 -7399.0,0.2229178446100362 -7400.0,0.22284086480884796 -7401.0,0.22276391159095005 -7402.0,0.2226869849471626 -7403.0,0.22261008486830872 -7404.0,0.2225332113452149 -7405.0,0.22245636436871055 -7406.0,0.22237954392962855 -7407.0,0.22230275001880462 -7408.0,0.22222598262707796 -7409.0,0.22214924174529063 -7410.0,0.22207252736428815 -7411.0,0.22199583947491894 -7412.0,0.22191917806803474 -7413.0,0.2218425431344904 -7414.0,0.22176593466514394 -7415.0,0.22168935265085649 -7416.0,0.22161279708249237 -7417.0,0.22153626795091919 -7418.0,0.2214597652470074 -7419.0,0.22138328896163093 -7420.0,0.2213068390856666 -7421.0,0.2212304156099946 -7422.0,0.22115401852549807 -7423.0,0.2210776478230635 -7424.0,0.2210013034935803 -7425.0,0.22092498552794126 -7426.0,0.22084869391704212 -7427.0,0.22077242865178193 -7428.0,0.2206961897230627 -7429.0,0.22061997712178982 -7430.0,0.22054379083887152 -7431.0,0.22046763086521945 -7432.0,0.2203914971917482 -7433.0,0.22031538980937568 -7434.0,0.2202393087090227 -7435.0,0.22016325388161342 -7436.0,0.22008722531807512 -7437.0,0.22001122300933798 -7438.0,0.21993524694633565 -7439.0,0.2198592971200046 -7440.0,0.2197833735212847 -7441.0,0.21970747614111866 -7442.0,0.21963160497045264 -7443.0,0.21955576000023563 -7444.0,0.21947994122141998 -7445.0,0.219404148624961 -7446.0,0.21932838220181722 -7447.0,0.2192526419429502 -7448.0,0.21917692783932477 -7449.0,0.2191012398819087 -7450.0,0.21902557806167303 -7451.0,0.2189499423695918 -7452.0,0.21887433279664234 -7453.0,0.2187987493338048 -7454.0,0.21872319197206275 -7455.0,0.21864766070240277 -7456.0,0.2185721555158144 -7457.0,0.2184966764032906 -7458.0,0.2184212233558271 -7459.0,0.21834579636442297 -7460.0,0.2182703954200803 -7461.0,0.21819502051380438 -7462.0,0.21811967163660342 -7463.0,0.21804434877948894 -7464.0,0.2179690519334754 -7465.0,0.21789378108958052 -7466.0,0.21781853623882494 -7467.0,0.2177433173722326 -7468.0,0.21766812448083034 -7469.0,0.21759295755564828 -7470.0,0.21751781658771946 -7471.0,0.2174427015680802 -7472.0,0.21736761248776978 -7473.0,0.21729254933783063 -7474.0,0.2172175121093083 -7475.0,0.2171425007932513 -7476.0,0.21706751538071142 -7477.0,0.2169925558627434 -7478.0,0.21691762223040517 -7479.0,0.21684271447475761 -7480.0,0.21676783258686486 -7481.0,0.21669297655779396 -7482.0,0.21661814637861523 -7483.0,0.2165433420404019 -7484.0,0.2164685635342304 -7485.0,0.21639381085118017 -7486.0,0.21631908398233382 -7487.0,0.21624438291877687 -7488.0,0.21616970765159815 -7489.0,0.21609505817188934 -7490.0,0.21602043447074543 -7491.0,0.2159458365392642 -7492.0,0.21587126436854673 -7493.0,0.21579671794969715 -7494.0,0.21572219727382255 -7495.0,0.21564770233203323 -7496.0,0.21557323311544238 -7497.0,0.2154987896151665 -7498.0,0.21542437182232488 -7499.0,0.21534997972804013 -7500.0,0.21527561332343773 -7501.0,0.21520127259964641 -7502.0,0.21512695754779776 -7503.0,0.21505266815902663 -7504.0,0.21497840442447072 -7505.0,0.21490416633527107 -7506.0,0.21482995388257145 -7507.0,0.214755767057519 -7508.0,0.21468160585126364 -7509.0,0.2146074702549586 -7510.0,0.21453336025975994 -7511.0,0.21445927585682692 -7512.0,0.21438521703732186 -7513.0,0.21431118379241001 -7514.0,0.21423717611325982 -7515.0,0.2141631939910426 -7516.0,0.21408923741693295 -7517.0,0.21401530638210828 -7518.0,0.21394140087774924 -7519.0,0.21386752089503938 -7520.0,0.21379366642516542 -7521.0,0.213719837459317 -7522.0,0.2136460339886869 -7523.0,0.21357225600447086 -7524.0,0.21349850349786778 -7525.0,0.21342477646007943 -7526.0,0.2133510748823108 -7527.0,0.2132773987557698 -7528.0,0.2132037480716674 -7529.0,0.21313012282121754 -7530.0,0.21305652299563735 -7531.0,0.21298294858614694 -7532.0,0.21290939958396932 -7533.0,0.2128358759803307 -7534.0,0.21276237776646023 -7535.0,0.2126889049335901 -7536.0,0.21261545747295554 -7537.0,0.21254203537579483 -7538.0,0.2124686386333492 -7539.0,0.21239526723686303 -7540.0,0.21232192117758353 -7541.0,0.21224860044676117 -7542.0,0.21217530503564921 -7543.0,0.21210203493550417 -7544.0,0.21202879013758533 -7545.0,0.21195557063315523 -7546.0,0.21188237641347923 -7547.0,0.21180920746982587 -7548.0,0.21173606379346657 -7549.0,0.21166294537567582 -7550.0,0.2115898522077312 -7551.0,0.21151678428091314 -7552.0,0.21144374158650522 -7553.0,0.21137072411579394 -7554.0,0.21129773186006895 -7555.0,0.21122476481062263 -7556.0,0.21115182295875073 -7557.0,0.21107890629575166 -7558.0,0.21100601481292713 -7559.0,0.2109331485015816 -7560.0,0.21086030735302275 -7561.0,0.21078749135856106 -7562.0,0.21071470050951022 -7563.0,0.2106419347971867 -7564.0,0.21056919421291023 -7565.0,0.21049647874800323 -7566.0,0.2104237883937914 -7567.0,0.21035112314160317 -7568.0,0.21027848298277024 -7569.0,0.21020586790862716 -7570.0,0.2101332779105114 -7571.0,0.21006071297976356 -7572.0,0.20998817310772713 -7573.0,0.2099156582857487 -7574.0,0.2098431685051777 -7575.0,0.2097707037573667 -7576.0,0.20969826403367112 -7577.0,0.2096258493254495 -7578.0,0.20955345962406322 -7579.0,0.20948109492087677 -7580.0,0.20940875520725752 -7581.0,0.20933644047457592 -7582.0,0.20926415071420532 -7583.0,0.2091918859175221 -7584.0,0.20911964607590555 -7585.0,0.20904743118073807 -7586.0,0.20897524122340483 -7587.0,0.2089030761952942 -7588.0,0.20883093608779738 -7589.0,0.20875882089230854 -7590.0,0.20868673060022497 -7591.0,0.20861466520294672 -7592.0,0.20854262469187698 -7593.0,0.20847060905842177 -7594.0,0.20839861829399023 -7595.0,0.20832665238999432 -7596.0,0.2082547113378491 -7597.0,0.20818279512897245 -7598.0,0.20811090375478536 -7599.0,0.20803903720671163 -7600.0,0.20796719547617823 -7601.0,0.20789537855461485 -7602.0,0.2078235864334543 -7603.0,0.2077518191041323 -7604.0,0.20768007655808757 -7605.0,0.20760835878676165 -7606.0,0.2075366657815992 -7607.0,0.20746499753404782 -7608.0,0.2073933540355579 -7609.0,0.20732173527758296 -7610.0,0.20725014125157937 -7611.0,0.20717857194900655 -7612.0,0.2071070273613267 -7613.0,0.20703550748000518 -7614.0,0.20696401229651007 -7615.0,0.20689254180231265 -7616.0,0.2068210959888869 -7617.0,0.20674967484770995 -7618.0,0.20667827837026168 -7619.0,0.2066069065480251 -7620.0,0.206535559372486 -7621.0,0.20646423683513326 -7622.0,0.20639293892745852 -7623.0,0.20632166564095655 -7624.0,0.2062504169671249 -7625.0,0.20617919289746417 -7626.0,0.20610799342347785 -7627.0,0.20603681853667233 -7628.0,0.205965668228557 -7629.0,0.2058945424906441 -7630.0,0.20582344131444888 -7631.0,0.20575236469148947 -7632.0,0.205681312613287 -7633.0,0.2056102850713654 -7634.0,0.20553928205725167 -7635.0,0.20546830356247558 -7636.0,0.20539734957857003 -7637.0,0.2053264200970706 -7638.0,0.20525551510951606 -7639.0,0.20518463460744782 -7640.0,0.20511377858241048 -7641.0,0.2050429470259513 -7642.0,0.20497213992962074 -7643.0,0.20490135728497189 -7644.0,0.20483059908356097 -7645.0,0.2047598653169471 -7646.0,0.2046891559766921 -7647.0,0.20461847105436104 -7648.0,0.20454781054152157 -7649.0,0.2044771744297445 -7650.0,0.20440656271060342 -7651.0,0.2043359753756749 -7652.0,0.20426541241653834 -7653.0,0.20419487382477614 -7654.0,0.20412435959197348 -7655.0,0.20405386970971864 -7656.0,0.2039834041696026 -7657.0,0.2039129629632194 -7658.0,0.20384254608216582 -7659.0,0.20377215351804176 -7660.0,0.2037017852624498 -7661.0,0.20363144130699565 -7662.0,0.20356112164328763 -7663.0,0.20349082626293719 -7664.0,0.20342055515755864 -7665.0,0.20335030831876907 -7666.0,0.20328008573818865 -7667.0,0.20320988740744023 -7668.0,0.20313971331814973 -7669.0,0.20306956346194585 -7670.0,0.2029994378304603 -7671.0,0.20292933641532745 -7672.0,0.2028592592081849 -7673.0,0.2027892062006728 -7674.0,0.20271917738443446 -7675.0,0.20264917275111582 -7676.0,0.20257919229236596 -7677.0,0.20250923599983664 -7678.0,0.20243930386518263 -7679.0,0.2023693958800615 -7680.0,0.2022995120361338 -7681.0,0.2022296523250628 -7682.0,0.2021598167385148 -7683.0,0.20209000526815896 -7684.0,0.2020202179056672 -7685.0,0.2019504546427145 -7686.0,0.2018807154709785 -7687.0,0.20181100038213992 -7688.0,0.20174130936788218 -7689.0,0.20167164241989172 -7690.0,0.20160199952985772 -7691.0,0.20153238068947232 -7692.0,0.20146278589043048 -7693.0,0.20139321512443012 -7694.0,0.20132366838317184 -7695.0,0.20125414565835933 -7696.0,0.20118464694169896 -7697.0,0.20111517222490008 -7698.0,0.20104572149967484 -7699.0,0.2009762947577383 -7700.0,0.2009068919908083 -7701.0,0.20083751319060564 -7702.0,0.20076815834885398 -7703.0,0.2006988274572797 -7704.0,0.2006295205076122 -7705.0,0.20056023749158364 -7706.0,0.20049097840092908 -7707.0,0.20042174322738635 -7708.0,0.20035253196269628 -7709.0,0.20028334459860242 -7710.0,0.20021418112685127 -7711.0,0.20014504153919205 -7712.0,0.20007592582737702 -7713.0,0.20000683398316105 -7714.0,0.19993776599830212 -7715.0,0.19986872186456084 -7716.0,0.19979970157370078 -7717.0,0.19973070511748828 -7718.0,0.19966173248769264 -7719.0,0.19959278367608585 -7720.0,0.19952385867444286 -7721.0,0.19945495747454145 -7722.0,0.19938608006816214 -7723.0,0.19931722644708844 -7724.0,0.1992483966031065 -7725.0,0.19917959052800555 -7726.0,0.19911080821357743 -7727.0,0.19904204965161698 -7728.0,0.19897331483392172 -7729.0,0.19890460375229221 -7730.0,0.1988359163985316 -7731.0,0.19876725276444607 -7732.0,0.19869861284184448 -7733.0,0.19862999662253866 -7734.0,0.1985614040983431 -7735.0,0.19849283526107536 -7736.0,0.19842429010255552 -7737.0,0.19835576861460677 -7738.0,0.1982872707890549 -7739.0,0.19821879661772862 -7740.0,0.19815034609245957 -7741.0,0.19808191920508197 -7742.0,0.1980135159474331 -7743.0,0.19794513631135288 -7744.0,0.19787678028868416 -7745.0,0.19780844787127252 -7746.0,0.19774013905096646 -7747.0,0.19767185381961713 -7748.0,0.19760359216907875 -7749.0,0.19753535409120807 -7750.0,0.19746713957786488 -7751.0,0.1973989486209116 -7752.0,0.19733078121221362 -7753.0,0.197262637343639 -7754.0,0.19719451700705876 -7755.0,0.19712642019434654 -7756.0,0.19705834689737897 -7757.0,0.19699029710803534 -7758.0,0.19692227081819783 -7759.0,0.19685426801975142 -7760.0,0.19678628870458384 -7761.0,0.1967183328645857 -7762.0,0.1966504004916503 -7763.0,0.19658249157767388 -7764.0,0.19651460611455532 -7765.0,0.19644674409419646 -7766.0,0.19637890550850176 -7767.0,0.19631109034937866 -7768.0,0.19624329860873724 -7769.0,0.1961755302784905 -7770.0,0.19610778535055412 -7771.0,0.19604006381684666 -7772.0,0.1959723656692894 -7773.0,0.1959046908998065 -7774.0,0.19583703950032477 -7775.0,0.195769411462774 -7776.0,0.19570180677908655 -7777.0,0.1956342254411977 -7778.0,0.1955666674410456 -7779.0,0.1954991327705709 -7780.0,0.19543162142171736 -7781.0,0.19536413338643124 -7782.0,0.19529666865666181 -7783.0,0.19522922722436095 -7784.0,0.19516180908148348 -7785.0,0.19509441421998677 -7786.0,0.1950270426318312 -7787.0,0.19495969430897983 -7788.0,0.19489236924339848 -7789.0,0.19482506742705571 -7790.0,0.194757788851923 -7791.0,0.19469053350997442 -7792.0,0.19462330139318698 -7793.0,0.19455609249354028 -7794.0,0.1944889068030169 -7795.0,0.19442174431360196 -7796.0,0.19435460501728352 -7797.0,0.1942874889060524 -7798.0,0.19422039597190208 -7799.0,0.19415332620682887 -7800.0,0.19408627960283184 -7801.0,0.19401925615191284 -7802.0,0.1939522558460764 -7803.0,0.19388527867732996 -7804.0,0.19381832463768356 -7805.0,0.1937513937191501 -7806.0,0.19368448591374518 -7807.0,0.19361760121348728 -7808.0,0.1935507396103974 -7809.0,0.19348390109649957 -7810.0,0.19341708566382035 -7811.0,0.19335029330438921 -7812.0,0.19328352401023824 -7813.0,0.19321677777340243 -7814.0,0.19315005458591938 -7815.0,0.1930833544398295 -7816.0,0.19301667732717603 -7817.0,0.19295002324000476 -7818.0,0.19288339217036446 -7819.0,0.1928167841103064 -7820.0,0.19275019905188487 -7821.0,0.19268363698715663 -7822.0,0.1926170979081814 -7823.0,0.19255058180702148 -7824.0,0.19248408867574204 -7825.0,0.1924176185064109 -7826.0,0.1923511712910987 -7827.0,0.19228474702187867 -7828.0,0.19221834569082702 -7829.0,0.19215196729002243 -7830.0,0.19208561181154654 -7831.0,0.19201927924748355 -7832.0,0.19195296958992053 -7833.0,0.19188668283094715 -7834.0,0.1918204189626559 -7835.0,0.1917541779771421 -7836.0,0.1916879598665035 -7837.0,0.1916217646228409 -7838.0,0.1915555922382576 -7839.0,0.19148944270485982 -7840.0,0.1914233160147563 -7841.0,0.1913572121600587 -7842.0,0.19129113113288118 -7843.0,0.1912250729253409 -7844.0,0.1911590375295575 -7845.0,0.19109302493765354 -7846.0,0.19102703514175406 -7847.0,0.19096106813398708 -7848.0,0.1908951239064831 -7849.0,0.1908292024513756 -7850.0,0.1907633037608005 -7851.0,0.1906974278268967 -7852.0,0.1906315746418055 -7853.0,0.19056574419767122 -7854.0,0.1904999364866408 -7855.0,0.19043415150086376 -7856.0,0.1903683892324925 -7857.0,0.19030264967368202 -7858.0,0.1902369328165901 -7859.0,0.19017123865337718 -7860.0,0.19010556717620644 -7861.0,0.1900399183772437 -7862.0,0.18997429224865764 -7863.0,0.18990868878261943 -7864.0,0.18984310797130316 -7865.0,0.1897775498068854 -7866.0,0.18971201428154566 -7867.0,0.18964650138746592 -7868.0,0.18958101111683107 -7869.0,0.1895155434618285 -7870.0,0.1894500984146485 -7871.0,0.18938467596748382 -7872.0,0.18931927611253016 -7873.0,0.18925389884198576 -7874.0,0.18918854414805156 -7875.0,0.18912321202293128 -7876.0,0.1890579024588312 -7877.0,0.18899261544796042 -7878.0,0.1889273509825306 -7879.0,0.1888621090547563 -7880.0,0.1887968896568545 -7881.0,0.1887316927810451 -7882.0,0.18866651841955048 -7883.0,0.18860136656459595 -7884.0,0.18853623720840926 -7885.0,0.188471130343221 -7886.0,0.18840604596126437 -7887.0,0.1883409840547753 -7888.0,0.18827594461599237 -7889.0,0.18821092763715688 -7890.0,0.1881459331105127 -7891.0,0.18808096102830651 -7892.0,0.18801601138278765 -7893.0,0.187951084166208 -7894.0,0.18788617937082236 -7895.0,0.18782129698888791 -7896.0,0.18775643701266478 -7897.0,0.18769159943441555 -7898.0,0.18762678424640564 -7899.0,0.18756199144090302 -7900.0,0.18749722101017843 -7901.0,0.18743247294650517 -7902.0,0.18736774724215932 -7903.0,0.18730304388941954 -7904.0,0.18723836288056722 -7905.0,0.18717370420788637 -7906.0,0.18710906786366371 -7907.0,0.18704445384018853 -7908.0,0.18697986212975293 -7909.0,0.18691529272465152 -7910.0,0.18685074561718168 -7911.0,0.1867862207996434 -7912.0,0.18672171826433934 -7913.0,0.18665723800357487 -7914.0,0.18659278000965784 -7915.0,0.186528344274899 -7916.0,0.18646393079161158 -7917.0,0.18639953955211155 -7918.0,0.18633517054871745 -7919.0,0.18627082377375062 -7920.0,0.18620649921953486 -7921.0,0.18614219687839678 -7922.0,0.18607791674266555 -7923.0,0.18601365880467308 -7924.0,0.18594942305675377 -7925.0,0.18588520949124485 -7926.0,0.185821018100486 -7927.0,0.1857568488768198 -7928.0,0.18569270181259123 -7929.0,0.185628576900148 -7930.0,0.1855644741318406 -7931.0,0.18550039350002187 -7932.0,0.18543633499704762 -7933.0,0.185372298615276 -7934.0,0.18530828434706803 -7935.0,0.1852442921847872 -7936.0,0.1851803221207998 -7937.0,0.18511637414747456 -7938.0,0.18505244825718306 -7939.0,0.1849885444422993 -7940.0,0.18492466269520016 -7941.0,0.18486080300826488 -7942.0,0.18479696537387555 -7943.0,0.18473314978441674 -7944.0,0.1846693562322758 -7945.0,0.1846055847098425 -7946.0,0.1845418352095095 -7947.0,0.18447810772367185 -7948.0,0.18441440224472735 -7949.0,0.18435071876507647 -7950.0,0.1842870572771221 -7951.0,0.18422341777327003 -7952.0,0.18415980024592843 -7953.0,0.18409620468750826 -7954.0,0.18403263109042298 -7955.0,0.18396907944708876 -7956.0,0.18390554974992432 -7957.0,0.18384204199135107 -7958.0,0.18377855616379296 -7959.0,0.18371509225967664 -7960.0,0.18365165027143124 -7961.0,0.18358823019148873 -7962.0,0.1835248320122834 -7963.0,0.18346145572625247 -7964.0,0.18339810132583545 -7965.0,0.18333476880347477 -7966.0,0.18327145815161522 -7967.0,0.18320816936270432 -7968.0,0.18314490242919224 -7969.0,0.1830816573435316 -7970.0,0.1830184340981778 -7971.0,0.18295523268558872 -7972.0,0.18289205309822495 -7973.0,0.18282889532854957 -7974.0,0.18276575936902836 -7975.0,0.1827026452121296 -7976.0,0.1826395528503243 -7977.0,0.18257648227608592 -7978.0,0.18251343348189072 -7979.0,0.18245040646021732 -7980.0,0.18238740120354713 -7981.0,0.18232441770436403 -7982.0,0.1822614559551546 -7983.0,0.1821985159484079 -7984.0,0.18213559767661575 -7985.0,0.18207270113227234 -7986.0,0.1820098263078746 -7987.0,0.1819469731959221 -7988.0,0.18188414178891685 -7989.0,0.18182133207936355 -7990.0,0.1817585440597694 -7991.0,0.18169577772264436 -7992.0,0.18163303306050074 -7993.0,0.1815703100658537 -7994.0,0.18150760873122068 -7995.0,0.181444929049122 -7996.0,0.18138227101208035 -7997.0,0.18131963461262113 -7998.0,0.18125701984327225 -7999.0,0.18119442669656424 -8000.0,0.18113185516503016 -8001.0,0.18106930524120576 -8002.0,0.1810067769176292 -8003.0,0.18094427018684137 -8004.0,0.1808817850413856 -8005.0,0.18081932147380794 -8006.0,0.18075687947665697 -8007.0,0.1806944590424837 -8008.0,0.18063206016384195 -8009.0,0.18056968283328786 -8010.0,0.1805073270433804 -8011.0,0.18044499278668089 -8012.0,0.18038268005575336 -8013.0,0.1803203888431643 -8014.0,0.18025811914148288 -8015.0,0.1801958709432807 -8016.0,0.18013364424113212 -8017.0,0.18007143902761386 -8018.0,0.18000925529530531 -8019.0,0.1799470930367884 -8020.0,0.17988495224464768 -8021.0,0.1798228329114701 -8022.0,0.1797607350298454 -8023.0,0.17969865859236567 -8024.0,0.17963660359162564 -8025.0,0.17957457002022267 -8026.0,0.17951255787075654 -8027.0,0.17945056713582969 -8028.0,0.17938859780804706 -8029.0,0.17932664988001618 -8030.0,0.1792647233443471 -8031.0,0.17920281819365244 -8032.0,0.17914093442054732 -8033.0,0.17907907201764958 -8034.0,0.17901723097757932 -8035.0,0.17895541129295953 -8036.0,0.1788936129564154 -8037.0,0.178831835960575 -8038.0,0.17877008029806865 -8039.0,0.17870834596152946 -8040.0,0.17864663294359287 -8041.0,0.17858494123689705 -8042.0,0.17852327083408256 -8043.0,0.17846162172779265 -8044.0,0.178399993910673 -8045.0,0.1783383873753718 -8046.0,0.17827680211453995 -8047.0,0.17821523812083065 -8048.0,0.1781536953868999 -8049.0,0.17809217390540596 -8050.0,0.1780306736690099 -8051.0,0.1779691946703751 -8052.0,0.17790773690216763 -8053.0,0.17784630035705593 -8054.0,0.17778488502771117 -8055.0,0.1777234909068069 -8056.0,0.17766211798701925 -8057.0,0.17760076626102686 -8058.0,0.17753943572151099 -8059.0,0.17747812636115526 -8060.0,0.17741683817264597 -8061.0,0.17735557114867184 -8062.0,0.1772943252819242 -8063.0,0.1772331005650969 -8064.0,0.17717189699088617 -8065.0,0.177110714551991 -8066.0,0.17704955324111266 -8067.0,0.1769884130509551 -8068.0,0.17692729397422474 -8069.0,0.17686619600363054 -8070.0,0.1768051191318839 -8071.0,0.17674406335169884 -8072.0,0.1766830286557918 -8073.0,0.1766220150368819 -8074.0,0.17656102248769054 -8075.0,0.17650005100094182 -8076.0,0.17643910056936224 -8077.0,0.17637817118568092 -8078.0,0.17631726284262933 -8079.0,0.17625637553294166 -8080.0,0.17619550924935443 -8081.0,0.17613466398460673 -8082.0,0.17607383973144022 -8083.0,0.17601303648259897 -8084.0,0.1759522542308296 -8085.0,0.17589149296888124 -8086.0,0.17583075268950554 -8087.0,0.17577003338545655 -8088.0,0.17570933504949096 -8089.0,0.17564865767436788 -8090.0,0.17558800125284896 -8091.0,0.1755273657776983 -8092.0,0.1754667512416826 -8093.0,0.17540615763757086 -8094.0,0.17534558495813485 -8095.0,0.17528503319614858 -8096.0,0.17522450234438874 -8097.0,0.1751639923956344 -8098.0,0.1751035033426672 -8099.0,0.17504303517827116 -8100.0,0.1749825878952329 -8101.0,0.1749221614863416 -8102.0,0.1748617559443887 -8103.0,0.17480137126216835 -8104.0,0.174741007432477 -8105.0,0.1746806644481138 -8106.0,0.17462034230188017 -8107.0,0.1745600409865802 -8108.0,0.17449976049502033 -8109.0,0.17443950082000956 -8110.0,0.17437926195435932 -8111.0,0.1743190438908836 -8112.0,0.17425884662239877 -8113.0,0.1741986701417238 -8114.0,0.17413851444168 -8115.0,0.1740783795150913 -8116.0,0.17401826535478399 -8117.0,0.17395817195358695 -8118.0,0.1738980993043314 -8119.0,0.17383804739985112 -8120.0,0.17377801623298247 -8121.0,0.17371800579656402 -8122.0,0.17365801608343706 -8123.0,0.1735980470864452 -8124.0,0.17353809879843463 -8125.0,0.17347817121225387 -8126.0,0.17341826432075408 -8127.0,0.17335837811678875 -8128.0,0.17329851259321397 -8129.0,0.17323866774288812 -8130.0,0.17317884355867222 -8131.0,0.17311904003342962 -8132.0,0.17305925716002626 -8133.0,0.17299949493133043 -8134.0,0.17293975334021297 -8135.0,0.17288003237954708 -8136.0,0.1728203320422086 -8137.0,0.17276065232107557 -8138.0,0.1727009932090287 -8139.0,0.17264135469895117 -8140.0,0.1725817367837284 -8141.0,0.17252213945624853 -8142.0,0.17246256270940197 -8143.0,0.17240300653608165 -8144.0,0.17234347092918295 -8145.0,0.17228395588160378 -8146.0,0.17222446138624428 -8147.0,0.17216498743600736 -8148.0,0.17210553402379808 -8149.0,0.17204610114252414 -8150.0,0.17198668878509563 -8151.0,0.17192729694442507 -8152.0,0.17186792561342745 -8153.0,0.17180857478502026 -8154.0,0.17174924445212328 -8155.0,0.1716899346076589 -8156.0,0.17163064524455185 -8157.0,0.17157137635572936 -8158.0,0.17151212793412113 -8159.0,0.17145289997265917 -8160.0,0.17139369246427807 -8161.0,0.1713345054019148 -8162.0,0.17127533877850878 -8163.0,0.17121619258700183 -8164.0,0.17115706682033827 -8165.0,0.1710979614714648 -8166.0,0.17103887653333064 -8167.0,0.17097981199888732 -8168.0,0.17092076786108892 -8169.0,0.17086174411289187 -8170.0,0.1708027407472551 -8171.0,0.1707437577571399 -8172.0,0.17068479513551008 -8173.0,0.17062585287533177 -8174.0,0.17056693096957365 -8175.0,0.1705080294112067 -8176.0,0.17044914819320445 -8177.0,0.17039028730854278 -8178.0,0.1703314467502 -8179.0,0.1702726265111569 -8180.0,0.1702138265843966 -8181.0,0.17015504696290476 -8182.0,0.17009628763966933 -8183.0,0.17003754860768083 -8184.0,0.16997882985993204 -8185.0,0.16992013138941833 -8186.0,0.16986145318913728 -8187.0,0.16980279525208913 -8188.0,0.16974415757127637 -8189.0,0.16968554013970394 -8190.0,0.1696269429503792 -8191.0,0.16956836599631195 -8192.0,0.16950980927051437 -8193.0,0.16945127276600114 -8194.0,0.16939275647578916 -8195.0,0.16933426039289795 -8196.0,0.16927578451034936 -8197.0,0.16921732882116758 -8198.0,0.16915889331837936 -8199.0,0.16910047799501368 -8200.0,0.16904208284410208 -8201.0,0.1689837078586784 -8202.0,0.16892535303177897 -8203.0,0.16886701835644244 -8204.0,0.16880870382570998 -8205.0,0.16875040943262498 -8206.0,0.1686921351702335 -8207.0,0.16863388103158367 -8208.0,0.16857564700972633 -8209.0,0.1685174330977145 -8210.0,0.16845923928860376 -8211.0,0.16840106557545195 -8212.0,0.16834291195131942 -8213.0,0.16828477840926884 -8214.0,0.16822666494236527 -8215.0,0.16816857154367626 -8216.0,0.16811049820627166 -8217.0,0.16805244492322377 -8218.0,0.16799441168760718 -8219.0,0.16793639849249906 -8220.0,0.16787840533097875 -8221.0,0.1678204321961282 -8222.0,0.1677624790810315 -8223.0,0.1677045459787754 -8224.0,0.16764663288244883 -8225.0,0.16758873978514321 -8226.0,0.16753086667995226 -8227.0,0.16747301355997224 -8228.0,0.16741518041830158 -8229.0,0.16735736724804132 -8230.0,0.16729957404229467 -8231.0,0.1672418007941674 -8232.0,0.16718404749676752 -8233.0,0.1671263141432055 -8234.0,0.16706860072659424 -8235.0,0.16701090724004886 -8236.0,0.166953233676687 -8237.0,0.16689558002962857 -8238.0,0.166837946291996 -8239.0,0.1667803324569139 -8240.0,0.16672273851750946 -8241.0,0.16666516446691207 -8242.0,0.1666076102982536 -8243.0,0.16655007600466823 -8244.0,0.16649256157929257 -8245.0,0.16643506701526553 -8246.0,0.1663775923057285 -8247.0,0.16632013744382507 -8248.0,0.16626270242270139 -8249.0,0.1662052872355058 -8250.0,0.16614789187538914 -8251.0,0.1660905163355045 -8252.0,0.16603316060900744 -8253.0,0.1659758246890559 -8254.0,0.16591850856881002 -8255.0,0.16586121224143247 -8256.0,0.16580393570008814 -8257.0,0.16574667893794445 -8258.0,0.16568944194817103 -8259.0,0.16563222472393996 -8260.0,0.1655750272584256 -8261.0,0.16551784954480475 -8262.0,0.16546069157625648 -8263.0,0.1654035533459623 -8264.0,0.165346434847106 -8265.0,0.16528933607287383 -8266.0,0.16523225701645422 -8267.0,0.16517519767103817 -8268.0,0.1651181580298188 -8269.0,0.1650611380859918 -8270.0,0.165004137832755 -8271.0,0.16494715726330877 -8272.0,0.16489019637085572 -8273.0,0.16483325514860084 -8274.0,0.16477633358975144 -8275.0,0.16471943168751718 -8276.0,0.16466254943511013 -8277.0,0.16460568682574458 -8278.0,0.16454884385263732 -8279.0,0.16449202050900733 -8280.0,0.16443521678807604 -8281.0,0.16437843268306712 -8282.0,0.16432166818720673 -8283.0,0.1642649232937232 -8284.0,0.16420819799584732 -8285.0,0.16415149228681214 -8286.0,0.16409480615985314 -8287.0,0.164038139608208 -8288.0,0.16398149262511694 -8289.0,0.16392486520382224 -8290.0,0.16386825733756874 -8291.0,0.16381166901960353 -8292.0,0.16375510024317602 -8293.0,0.16369855100153802 -8294.0,0.16364202128794353 -8295.0,0.16358551109564903 -8296.0,0.16352902041791323 -8297.0,0.16347254924799726 -8298.0,0.16341609757916442 -8299.0,0.16335966540468058 -8300.0,0.16330325271781365 -8301.0,0.1632468595118341 -8302.0,0.16319048578001458 -8303.0,0.1631341315156302 -8304.0,0.16307779671195816 -8305.0,0.1630214813622783 -8306.0,0.16296518545987243 -8307.0,0.162908908998025 -8308.0,0.1628526519700226 -8309.0,0.16279641436915415 -8310.0,0.16274019618871097 -8311.0,0.16268399742198655 -8312.0,0.16262781806227689 -8313.0,0.1625716581028801 -8314.0,0.1625155175370968 -8315.0,0.16245939635822976 -8316.0,0.1624032945595842 -8317.0,0.1623472121344675 -8318.0,0.16229114907618952 -8319.0,0.16223510537806227 -8320.0,0.16217908103340023 -8321.0,0.16212307603552 -8322.0,0.1620670903777407 -8323.0,0.16201112405338355 -8324.0,0.16195517705577225 -8325.0,0.1618992493782327 -8326.0,0.16184334101409312 -8327.0,0.16178745195668412 -8328.0,0.16173158219933845 -8329.0,0.16167573173539132 -8330.0,0.16161990055818012 -8331.0,0.16156408866104469 -8332.0,0.16150829603732697 -8333.0,0.16145252268037139 -8334.0,0.16139676858352453 -8335.0,0.1613410337401354 -8336.0,0.16128531814355518 -8337.0,0.16122962178713746 -8338.0,0.161173944664238 -8339.0,0.161118286768215 -8340.0,0.16106264809242882 -8341.0,0.16100702863024222 -8342.0,0.16095142837502016 -8343.0,0.16089584732013 -8344.0,0.16084028545894122 -8345.0,0.16078474278482574 -8346.0,0.1607292192911578 -8347.0,0.16067371497131377 -8348.0,0.16061822981867244 -8349.0,0.16056276382661475 -8350.0,0.16050731698852413 -8351.0,0.16045188929778606 -8352.0,0.16039648074778853 -8353.0,0.1603410913319216 -8354.0,0.1602857210435778 -8355.0,0.1602303698761518 -8356.0,0.16017503782304066 -8357.0,0.16011972487764362 -8358.0,0.1600644310333623 -8359.0,0.1600091562836005 -8360.0,0.15995390062176437 -8361.0,0.1598986640412623 -8362.0,0.159843446535505 -8363.0,0.15978824809790534 -8364.0,0.15973306872187865 -8365.0,0.15967790840084242 -8366.0,0.15962276712821635 -8367.0,0.1595676448974226 -8368.0,0.15951254170188534 -8369.0,0.15945745753503132 -8370.0,0.15940239239028928 -8371.0,0.15934734626109043 -8372.0,0.1592923191408681 -8373.0,0.15923731102305805 -8374.0,0.15918232190109807 -8375.0,0.15912735176842852 -8376.0,0.15907240061849173 -8377.0,0.15901746844473252 -8378.0,0.15896255524059782 -8379.0,0.15890766099953696 -8380.0,0.15885278571500136 -8381.0,0.15879792938044487 -8382.0,0.1587430919893235 -8383.0,0.15868827353509554 -8384.0,0.1586334740112216 -8385.0,0.15857869341116443 -8386.0,0.15852393172838916 -8387.0,0.15846918895636308 -8388.0,0.1584144650885558 -8389.0,0.15835976011843914 -8390.0,0.15830507403948724 -8391.0,0.15825040684517636 -8392.0,0.15819575852898524 -8393.0,0.15814112908439457 -8394.0,0.1580865185048876 -8395.0,0.1580319267839496 -8396.0,0.15797735391506823 -8397.0,0.15792279989173327 -8398.0,0.15786826470743692 -8399.0,0.15781374835567347 -8400.0,0.15775925082993952 -8401.0,0.1577047721237339 -8402.0,0.15765031223055773 -8403.0,0.15759587114391435 -8404.0,0.15754144885730928 -8405.0,0.1574870453642504 -8406.0,0.1574326606582477 -8407.0,0.1573782947328136 -8408.0,0.15732394758146248 -8409.0,0.15726961919771126 -8410.0,0.1572153095750789 -8411.0,0.15716101870708665 -8412.0,0.157106746587258 -8413.0,0.15705249320911877 -8414.0,0.15699825856619679 -8415.0,0.15694404265202236 -8416.0,0.15688984546012788 -8417.0,0.15683566698404805 -8418.0,0.1567815072173197 -8419.0,0.15672736615348207 -8420.0,0.15667324378607644 -8421.0,0.15661914010864642 -8422.0,0.1565650551147379 -8423.0,0.15651098879789885 -8424.0,0.15645694115167963 -8425.0,0.15640291216963267 -8426.0,0.15634890184531278 -8427.0,0.15629491017227687 -8428.0,0.15624093714408416 -8429.0,0.15618698275429602 -8430.0,0.15613304699647615 -8431.0,0.15607912986419034 -8432.0,0.1560252313510067 -8433.0,0.15597135145049554 -8434.0,0.15591749015622938 -8435.0,0.15586364746178294 -8436.0,0.15580982336073318 -8437.0,0.1557560178466593 -8438.0,0.15570223091314267 -8439.0,0.1556484625537669 -8440.0,0.15559471276211784 -8441.0,0.15554098153178353 -8442.0,0.1554872688563542 -8443.0,0.15543357472942237 -8444.0,0.15537989914458264 -8445.0,0.155326242095432 -8446.0,0.15527260357556946 -8447.0,0.15521898357859643 -8448.0,0.15516538209811634 -8449.0,0.155111799127735 -8450.0,0.15505823466106033 -8451.0,0.15500468869170247 -8452.0,0.15495116121327376 -8453.0,0.15489765221938884 -8454.0,0.15484416170366436 -8455.0,0.1547906896597194 -8456.0,0.15473723608117504 -8457.0,0.15468380096165474 -8458.0,0.154630384294784 -8459.0,0.15457698607419065 -8460.0,0.15452360629350473 -8461.0,0.1544702449463583 -8462.0,0.15441690202638583 -8463.0,0.15436357752722382 -8464.0,0.15431027144251117 -8465.0,0.1542569837658887 -8466.0,0.1542037144909997 -8467.0,0.15415046361148949 -8468.0,0.15409723112100562 -8469.0,0.15404401701319784 -8470.0,0.15399082128171812 -8471.0,0.15393764392022055 -8472.0,0.15388448492236154 -8473.0,0.1538313442817995 -8474.0,0.15377822199219524 -8475.0,0.1537251180472116 -8476.0,0.1536720324405137 -8477.0,0.15361896516576876 -8478.0,0.15356591621664628 -8479.0,0.15351288558681794 -8480.0,0.15345987326995753 -8481.0,0.15340687925974109 -8482.0,0.15335390354984674 -8483.0,0.153300946133955 -8484.0,0.15324800700574834 -8485.0,0.15319508615891153 -8486.0,0.1531421835871315 -8487.0,0.1530892992840974 -8488.0,0.1530364332435004 -8489.0,0.15298358545903415 -8490.0,0.15293075592439412 -8491.0,0.15287794463327822 -8492.0,0.15282515157938642 -8493.0,0.15277237675642094 -8494.0,0.15271962015808607 -8495.0,0.15266688177808838 -8496.0,0.1526141616101365 -8497.0,0.15256145964794132 -8498.0,0.15250877588521597 -8499.0,0.15245611031567555 -8500.0,0.1524034629330375 -8501.0,0.15235083373102135 -8502.0,0.15229822270334883 -8503.0,0.15224562984374382 -8504.0,0.15219305514593237 -8505.0,0.1521404986036427 -8506.0,0.15208796021060525 -8507.0,0.15203543996055247 -8508.0,0.1519829378472192 -8509.0,0.1519304538643422 -8510.0,0.1518779880056606 -8511.0,0.15182554026491557 -8512.0,0.1517731106358505 -8513.0,0.15172069911221087 -8514.0,0.15166830568774442 -8515.0,0.15161593035620097 -8516.0,0.1515635731113325 -8517.0,0.15151123394689325 -8518.0,0.15145891285663945 -8519.0,0.1514066098343297 -8520.0,0.15135432487372444 -8521.0,0.15130205796858665 -8522.0,0.15124980911268113 -8523.0,0.15119757829977504 -8524.0,0.1511453655236376 -8525.0,0.15109317077804024 -8526.0,0.15104099405675647 -8527.0,0.150988835353562 -8528.0,0.15093669466223467 -8529.0,0.15088457197655453 -8530.0,0.1508324672903036 -8531.0,0.15078038059726634 -8532.0,0.150728311891229 -8533.0,0.15067626116598035 -8534.0,0.15062422841531095 -8535.0,0.1505722136330138 -8536.0,0.15052021681288386 -8537.0,0.15046823794871825 -8538.0,0.15041627703431637 -8539.0,0.15036433406347957 -8540.0,0.15031240903001147 -8541.0,0.1502605019277178 -8542.0,0.15020861275040642 -8543.0,0.1501567414918873 -8544.0,0.15010488814597264 -8545.0,0.15005305270647662 -8546.0,0.15000123516721572 -8547.0,0.14994943552200848 -8548.0,0.14989765376467556 -8549.0,0.14984588988903977 -8550.0,0.1497941438889261 -8551.0,0.14974241575816155 -8552.0,0.14969070549057542 -8553.0,0.149639013079999 -8554.0,0.14958733852026573 -8555.0,0.14953568180521132 -8556.0,0.1494840429286734 -8557.0,0.14943242188449188 -8558.0,0.1493808186665087 -8559.0,0.14932923326856803 -8560.0,0.1492776656845161 -8561.0,0.14922611590820123 -8562.0,0.1491745839334739 -8563.0,0.1491230697541868 -8564.0,0.14907157336419458 -8565.0,0.14902009475735417 -8566.0,0.1489686339275245 -8567.0,0.14891719086856667 -8568.0,0.1488657655743439 -8569.0,0.14881435803872153 -8570.0,0.14876296825556704 -8571.0,0.14871159621875 -8572.0,0.14866024192214203 -8573.0,0.148608905359617 -8574.0,0.14855758652505086 -8575.0,0.14850628541232155 -8576.0,0.14845500201530937 -8577.0,0.1484037363278964 -8578.0,0.1483524883439672 -8579.0,0.14830125805740813 -8580.0,0.14825004546210785 -8581.0,0.14819885055195703 -8582.0,0.14814767332084855 -8583.0,0.14809651376267724 -8584.0,0.14804537187134026 -8585.0,0.14799424764073668 -8586.0,0.14794314106476777 -8587.0,0.1478920521373369 -8588.0,0.1478409808523495 -8589.0,0.14778992720371315 -8590.0,0.14773889118533756 -8591.0,0.14768787279113443 -8592.0,0.1476368720150177 -8593.0,0.14758588885090337 -8594.0,0.14753492329270945 -8595.0,0.14748397533435617 -8596.0,0.14743304496976578 -8597.0,0.14738213219286267 -8598.0,0.14733123699757333 -8599.0,0.14728035937782633 -8600.0,0.1472294993275523 -8601.0,0.1471786568406841 -8602.0,0.14712783191115647 -8603.0,0.14707702453290647 -8604.0,0.14702623469987308 -8605.0,0.14697546240599751 -8606.0,0.14692470764522292 -8607.0,0.14687397041149472 -8608.0,0.14682325069876026 -8609.0,0.14677254850096907 -8610.0,0.14672186381207275 -8611.0,0.14667119662602496 -8612.0,0.14662054693678153 -8613.0,0.14656991473830028 -8614.0,0.1465193000245412 -8615.0,0.14646870278946625 -8616.0,0.14641812302703963 -8617.0,0.14636756073122748 -8618.0,0.1463170158959981 -8619.0,0.1462664885153219 -8620.0,0.14621597858317129 -8621.0,0.1461654860935208 -8622.0,0.1461150110403471 -8623.0,0.1460645534176288 -8624.0,0.14601411321934676 -8625.0,0.14596369043948376 -8626.0,0.14591328507202478 -8627.0,0.14586289711095676 -8628.0,0.1458125265502689 -8629.0,0.14576217338395225 -8630.0,0.14571183760600007 -8631.0,0.14566151921040774 -8632.0,0.1456112181911725 -8633.0,0.145560934542294 -8634.0,0.14551066825777356 -8635.0,0.14546041933161494 -8636.0,0.14541018775782372 -8637.0,0.14535997353040767 -8638.0,0.14530977664337658 -8639.0,0.14525959709074238 -8640.0,0.14520943486651894 -8641.0,0.14515928996472235 -8642.0,0.1451091623793706 -8643.0,0.14505905210448392 -8644.0,0.14500895913408446 -8645.0,0.14495888346219654 -8646.0,0.14490882508284644 -8647.0,0.14485878399006263 -8648.0,0.14480876017787553 -8649.0,0.14475875364031765 -8650.0,0.14470876437142363 -8651.0,0.14465879236523002 -8652.0,0.14460883761577564 -8653.0,0.14455890011710118 -8654.0,0.1445089798632495 -8655.0,0.14445907684826542 -8656.0,0.14440919106619593 -8657.0,0.14435932251109 -8658.0,0.14430947117699866 -8659.0,0.14425963705797504 -8660.0,0.14420982014807426 -8661.0,0.14416002044135354 -8662.0,0.14411023793187216 -8663.0,0.1440604726136914 -8664.0,0.14401072448087465 -8665.0,0.14396099352748726 -8666.0,0.14391127974759677 -8667.0,0.1438615831352726 -8668.0,0.1438119036845864 -8669.0,0.14376224138961174 -8670.0,0.14371259624442423 -8671.0,0.1436629682431016 -8672.0,0.14361335737972358 -8673.0,0.143563763648372 -8674.0,0.14351418704313063 -8675.0,0.14346462755808537 -8676.0,0.1434150851873241 -8677.0,0.14336555992493685 -8678.0,0.14331605176501555 -8679.0,0.14326656070165428 -8680.0,0.14321708672894906 -8681.0,0.1431676298409981 -8682.0,0.14311819003190143 -8683.0,0.14306876729576137 -8684.0,0.14301936162668205 -8685.0,0.1429699730187698 -8686.0,0.14292060146613286 -8687.0,0.1428712469628816 -8688.0,0.1428219095031284 -8689.0,0.1427725890809876 -8690.0,0.1427232856905757 -8691.0,0.14267399932601116 -8692.0,0.14262472998141446 -8693.0,0.14257547765090808 -8694.0,0.14252624232861666 -8695.0,0.14247702400866671 -8696.0,0.14242782268518692 -8697.0,0.14237863835230785 -8698.0,0.14232947100416227 -8699.0,0.14228032063488474 -8700.0,0.14223118723861208 -8701.0,0.14218207080948297 -8702.0,0.14213297134163827 -8703.0,0.14208388882922066 -8704.0,0.14203482326637504 -8705.0,0.14198577464724818 -8706.0,0.141936742965989 -8707.0,0.14188772821674833 -8708.0,0.14183873039367909 -8709.0,0.1417897494909362 -8710.0,0.14174078550267658 -8711.0,0.1416918384230592 -8712.0,0.141642908246245 -8713.0,0.14159399496639702 -8714.0,0.14154509857768022 -8715.0,0.14149621907426163 -8716.0,0.14144735645031026 -8717.0,0.14139851069999723 -8718.0,0.1413496818174955 -8719.0,0.1413008697969802 -8720.0,0.14125207463262837 -8721.0,0.14120329631861914 -8722.0,0.1411545348491336 -8723.0,0.1411057902183549 -8724.0,0.14105706242046806 -8725.0,0.14100835144966029 -8726.0,0.14095965730012075 -8727.0,0.14091097996604052 -8728.0,0.14086231944161276 -8729.0,0.14081367572103265 -8730.0,0.14076504879849736 -8731.0,0.14071643866820596 -8732.0,0.14066784532435975 -8733.0,0.1406192687611618 -8734.0,0.14057070897281732 -8735.0,0.14052216595353345 -8736.0,0.14047363969751941 -8737.0,0.14042513019898634 -8738.0,0.14037663745214743 -8739.0,0.14032816145121782 -8740.0,0.14027970219041472 -8741.0,0.14023125966395722 -8742.0,0.14018283386606656 -8743.0,0.14013442479096583 -8744.0,0.14008603243288023 -8745.0,0.1400376567860369 -8746.0,0.13998929784466493 -8747.0,0.13994095560299552 -8748.0,0.13989263005526173 -8749.0,0.13984432119569873 -8750.0,0.13979602901854357 -8751.0,0.13974775351803542 -8752.0,0.13969949468841528 -8753.0,0.13965125252392627 -8754.0,0.1396030270188134 -8755.0,0.13955481816732385 -8756.0,0.1395066259637065 -8757.0,0.13945845040221247 -8758.0,0.13941029147709472 -8759.0,0.13936214918260825 -8760.0,0.13931402351301006 -8761.0,0.1392659144625591 -8762.0,0.13921782202551627 -8763.0,0.13916974619614453 -8764.0,0.1391216869687088 -8765.0,0.1390736443374759 -8766.0,0.1390256182967148 -8767.0,0.13897760884069624 -8768.0,0.1389296159636931 -8769.0,0.13888163965998016 -8770.0,0.1388336799238342 -8771.0,0.13878573674953396 -8772.0,0.13873781013136022 -8773.0,0.1386899000635956 -8774.0,0.13864200654052486 -8775.0,0.13859412955643458 -8776.0,0.13854626910561346 -8777.0,0.138498425182352 -8778.0,0.1384505977809429 -8779.0,0.13840278689568056 -8780.0,0.1383549925208616 -8781.0,0.13830721465078444 -8782.0,0.13825945327974953 -8783.0,0.13821170840205935 -8784.0,0.13816398001201818 -8785.0,0.13811626810393246 -8786.0,0.13806857267211045 -8787.0,0.13802089371086249 -8788.0,0.13797323121450075 -8789.0,0.13792558517733955 -8790.0,0.13787795559369492 -8791.0,0.13783034245788514 -8792.0,0.13778274576423022 -8793.0,0.13773516550705228 -8794.0,0.1376876016806753 -8795.0,0.13764005427942527 -8796.0,0.1375925232976301 -8797.0,0.13754500872961978 -8798.0,0.1374975105697261 -8799.0,0.1374500288122829 -8800.0,0.1374025634516259 -8801.0,0.1373551144820929 -8802.0,0.1373076818980236 -8803.0,0.13726026569375951 -8804.0,0.1372128658636444 -8805.0,0.13716548240202364 -8806.0,0.1371181153032449 -8807.0,0.13707076456165745 -8808.0,0.13702343017161284 -8809.0,0.13697611212746436 -8810.0,0.1369288104235673 -8811.0,0.13688152505427895 -8812.0,0.1368342560139585 -8813.0,0.13678700329696705 -8814.0,0.13673976689766776 -8815.0,0.13669254681042564 -8816.0,0.1366453430296077 -8817.0,0.13659815554958282 -8818.0,0.13655098436472196 -8819.0,0.13650382946939787 -8820.0,0.13645669085798534 -8821.0,0.1364095685248611 -8822.0,0.13636246246440376 -8823.0,0.13631537267099395 -8824.0,0.13626829913901412 -8825.0,0.13622124186284887 -8826.0,0.1361742008368845 -8827.0,0.13612717605550942 -8828.0,0.1360801675131139 -8829.0,0.13603317520409014 -8830.0,0.1359861991228323 -8831.0,0.13593923926373655 -8832.0,0.13589229562120084 -8833.0,0.13584536818962517 -8834.0,0.1357984569634114 -8835.0,0.13575156193696344 -8836.0,0.13570468310468697 -8837.0,0.13565782046098976 -8838.0,0.13561097400028135 -8839.0,0.1355641437169734 -8840.0,0.13551732960547935 -8841.0,0.1354705316602146 -8842.0,0.13542374987559655 -8843.0,0.1353769842460444 -8844.0,0.1353302347659794 -8845.0,0.13528350142982476 -8846.0,0.13523678423200536 -8847.0,0.13519008316694825 -8848.0,0.13514339822908236 -8849.0,0.13509672941283857 -8850.0,0.13505007671264949 -8851.0,0.13500344012294987 -8852.0,0.1349568196381763 -8853.0,0.13491021525276736 -8854.0,0.13486362696116339 -8855.0,0.13481705475780675 -8856.0,0.13477049863714174 -8857.0,0.13472395859361458 -8858.0,0.13467743462167342 -8859.0,0.13463092671576818 -8860.0,0.13458443487035085 -8861.0,0.1345379590798753 -8862.0,0.1344914993387974 -8863.0,0.13444505564157466 -8864.0,0.13439862798266677 -8865.0,0.13435221635653527 -8866.0,0.1343058207576436 -8867.0,0.13425944118045707 -8868.0,0.1342130776194429 -8869.0,0.13416673006907032 -8870.0,0.13412039852381044 -8871.0,0.13407408297813614 -8872.0,0.13402778342652233 -8873.0,0.13398149986344587 -8874.0,0.1339352322833855 -8875.0,0.1338889806808217 -8876.0,0.13384274505023708 -8877.0,0.13379652538611606 -8878.0,0.13375032168294493 -8879.0,0.13370413393521205 -8880.0,0.13365796213740738 -8881.0,0.13361180628402308 -8882.0,0.13356566636955305 -8883.0,0.1335195423884932 -8884.0,0.13347343433534117 -8885.0,0.13342734220459665 -8886.0,0.1333812659907612 -8887.0,0.13333520568833832 -8888.0,0.1332891612918332 -8889.0,0.1332431327957532 -8890.0,0.13319712019460742 -8891.0,0.13315112348290695 -8892.0,0.1331051426551646 -8893.0,0.13305917770589526 -8894.0,0.13301322862961565 -8895.0,0.13296729542084434 -8896.0,0.13292137807410195 -8897.0,0.13287547658391072 -8898.0,0.13282959094479502 -8899.0,0.132783721151281 -8900.0,0.13273786719789682 -8901.0,0.1326920290791723 -8902.0,0.13264620678963934 -8903.0,0.1326004003238317 -8904.0,0.13255460967628502 -8905.0,0.13250883484153672 -8906.0,0.13246307581412628 -8907.0,0.13241733258859492 -8908.0,0.1323716051594859 -8909.0,0.13232589352134416 -8910.0,0.13228019766871668 -8911.0,0.13223451759615232 -8912.0,0.13218885329820176 -8913.0,0.13214320476941752 -8914.0,0.1320975720043541 -8915.0,0.13205195499756786 -8916.0,0.13200635374361702 -8917.0,0.13196076823706177 -8918.0,0.13191519847246388 -8919.0,0.13186964444438737 -8920.0,0.13182410614739792 -8921.0,0.13177858357606326 -8922.0,0.13173307672495269 -8923.0,0.13168758558863766 -8924.0,0.13164211016169142 -8925.0,0.13159665043868912 -8926.0,0.13155120641420764 -8927.0,0.13150577808282593 -8928.0,0.13146036543912468 -8929.0,0.13141496847768658 -8930.0,0.13136958719309597 -8931.0,0.13132422157993923 -8932.0,0.1312788716328046 -8933.0,0.13123353734628218 -8934.0,0.13118821871496394 -8935.0,0.1311429157334436 -8936.0,0.1310976283963169 -8937.0,0.13105235669818138 -8938.0,0.13100710063363655 -8939.0,0.13096186019728354 -8940.0,0.13091663538372558 -8941.0,0.13087142618756764 -8942.0,0.1308262326034167 -8943.0,0.13078105462588135 -8944.0,0.13073589224957224 -8945.0,0.13069074546910184 -8946.0,0.13064561427908453 -8947.0,0.13060049867413634 -8948.0,0.13055539864887541 -8949.0,0.13051031419792164 -8950.0,0.1304652453158968 -8951.0,0.13042019199742438 -8952.0,0.13037515423712995 -8953.0,0.1303301320296408 -8954.0,0.13028512536958614 -8955.0,0.13024013425159703 -8956.0,0.13019515867030626 -8957.0,0.13015019862034863 -8958.0,0.13010525409636073 -8959.0,0.13006032509298104 -8960.0,0.13001541160484978 -8961.0,0.12997051362660914 -8962.0,0.1299256311529031 -8963.0,0.1298807641783776 -8964.0,0.1298359126976802 -8965.0,0.1297910767054605 -8966.0,0.12974625619636992 -8967.0,0.1297014511650617 -8968.0,0.1296566616061909 -8969.0,0.12961188751441444 -8970.0,0.12956712888439112 -8971.0,0.12952238571078156 -8972.0,0.12947765798824828 -8973.0,0.12943294571145547 -8974.0,0.12938824887506936 -8975.0,0.12934356747375791 -8976.0,0.12929890150219103 -8977.0,0.1292542509550403 -8978.0,0.12920961582697926 -8979.0,0.1291649961126833 -8980.0,0.12912039180682963 -8981.0,0.1290758029040972 -8982.0,0.1290312293991669 -8983.0,0.12898667128672148 -8984.0,0.1289421285614455 -8985.0,0.12889760121802527 -8986.0,0.128853089251149 -8987.0,0.12880859265550676 -8988.0,0.12876411142579053 -8989.0,0.12871964555669385 -8990.0,0.12867519504291236 -8991.0,0.1286307598791434 -8992.0,0.12858634006008623 -8993.0,0.1285419355804419 -8994.0,0.12849754643491323 -8995.0,0.1284531726182049 -8996.0,0.12840881412502347 -8997.0,0.12836447095007736 -8998.0,0.12832014308807663 -8999.0,0.12827583053373331 -9000.0,0.12823153328176132 -9001.0,0.1281872513268763 -9002.0,0.12814298466379567 -9003.0,0.12809873328723878 -9004.0,0.12805449719192674 -9005.0,0.1280102763725826 -9006.0,0.127966070823931 -9007.0,0.1279218805406986 -9008.0,0.12787770551761385 -9009.0,0.12783354574940697 -9010.0,0.12778940123081006 -9011.0,0.1277452719565569 -9012.0,0.12770115792138328 -9013.0,0.12765705912002667 -9014.0,0.12761297554722648 -9015.0,0.12756890719772376 -9016.0,0.12752485406626152 -9017.0,0.12748081614758452 -9018.0,0.12743679343643946 -9019.0,0.1273927859275746 -9020.0,0.12734879361574028 -9021.0,0.12730481649568845 -9022.0,0.1272608545621731 -9023.0,0.1272169078099497 -9024.0,0.12717297623377585 -9025.0,0.1271290598284108 -9026.0,0.12708515858861572 -9027.0,0.12704127250915337 -9028.0,0.12699740158478853 -9029.0,0.1269535458102877 -9030.0,0.12690970518041925 -9031.0,0.12686587968995333 -9032.0,0.1268220693336618 -9033.0,0.12677827410631842 -9034.0,0.12673449400269876 -9035.0,0.12669072901758024 -9036.0,0.12664697914574188 -9037.0,0.1266032443819647 -9038.0,0.1265595247210315 -9039.0,0.12651582015772686 -9040.0,0.12647213068683702 -9041.0,0.12642845630315025 -9042.0,0.12638479700145647 -9043.0,0.1263411527765475 -9044.0,0.1262975236232168 -9045.0,0.12625390953625984 -9046.0,0.12621031051047368 -9047.0,0.12616672654065736 -9048.0,0.1261231576216116 -9049.0,0.12607960374813892 -9050.0,0.12603606491504368 -9051.0,0.125992541117132 -9052.0,0.1259490323492119 -9053.0,0.12590553860609296 -9054.0,0.12586205988258675 -9055.0,0.12581859617350657 -9056.0,0.1257751474736676 -9057.0,0.1257317137778866 -9058.0,0.1256882950809823 -9059.0,0.12564489137777518 -9060.0,0.12560150266308753 -9061.0,0.12555812893174328 -9062.0,0.12551477017856832 -9063.0,0.1254714263983903 -9064.0,0.12542809758603862 -9065.0,0.12538478373634443 -9066.0,0.12534148484414068 -9067.0,0.1252982009042622 -9068.0,0.12525493191154546 -9069.0,0.1252116778608289 -9070.0,0.1251684387469525 -9071.0,0.12512521456475817 -9072.0,0.12508200530908964 -9073.0,0.12503881097479236 -9074.0,0.1249956315567135 -9075.0,0.1249524670497021 -9076.0,0.12490931744860893 -9077.0,0.12486618274828665 -9078.0,0.12482306294358946 -9079.0,0.12477995802937356 -9080.0,0.12473686800049684 -9081.0,0.12469379285181903 -9082.0,0.12465073257820147 -9083.0,0.12460768717450743 -9084.0,0.12456465663560193 -9085.0,0.12452164095635171 -9086.0,0.12447864013162539 -9087.0,0.12443565415629317 -9088.0,0.12439268302522717 -9089.0,0.12434972673330129 -9090.0,0.12430678527539119 -9091.0,0.12426385864637414 -9092.0,0.12422094684112939 -9093.0,0.12417804985453786 -9094.0,0.1241351676814823 -9095.0,0.12409230031684709 -9096.0,0.12404944775551852 -9097.0,0.12400660999238455 -9098.0,0.12396378702233507 -9099.0,0.12392097884026144 -9100.0,0.12387818544105705 -9101.0,0.12383540681961695 -9102.0,0.123792642970838 -9103.0,0.1237498938896187 -9104.0,0.12370715957085944 -9105.0,0.12366444000946232 -9106.0,0.12362173520033122 -9107.0,0.12357904513837181 -9108.0,0.12353636981849139 -9109.0,0.12349370923559913 -9110.0,0.12345106338460596 -9111.0,0.12340843226042458 -9112.0,0.1233658158579693 -9113.0,0.12332321417215636 -9114.0,0.12328062719790367 -9115.0,0.12323805493013099 -9116.0,0.12319549736375963 -9117.0,0.12315295449371284 -9118.0,0.12311042631491559 -9119.0,0.12306791282229461 -9120.0,0.12302541401077824 -9121.0,0.12298292987529676 -9122.0,0.12294046041078209 -9123.0,0.12289800561216795 -9124.0,0.12285556547438983 -9125.0,0.12281313999238486 -9126.0,0.12277072916109201 -9127.0,0.12272833297545199 -9128.0,0.1226859514304073 -9129.0,0.122643584520902 -9130.0,0.12260123224188212 -9131.0,0.1225588945882953 -9132.0,0.12251657155509106 -9133.0,0.12247426313722043 -9134.0,0.1224319693296364 -9135.0,0.12238969012729362 -9136.0,0.12234742552514855 -9137.0,0.1223051755181592 -9138.0,0.12226294010128552 -9139.0,0.12222071926948914 -9140.0,0.12217851301773348 -9141.0,0.12213632134098353 -9142.0,0.12209414423420617 -9143.0,0.12205198169236998 -9144.0,0.1220098337104453 -9145.0,0.12196770028340422 -9146.0,0.12192558140622041 -9147.0,0.12188347707386947 -9148.0,0.12184138728132866 -9149.0,0.12179931202357701 -9150.0,0.12175725129559516 -9151.0,0.12171520509236561 -9152.0,0.12167317340887257 -9153.0,0.12163115624010201 -9154.0,0.12158915358104148 -9155.0,0.12154716542668043 -9156.0,0.12150519177200997 -9157.0,0.121463232612023 -9158.0,0.12142128794171402 -9159.0,0.12137935775607936 -9160.0,0.12133744205011705 -9161.0,0.12129554081882687 -9162.0,0.12125365405721038 -9163.0,0.12121178176027064 -9164.0,0.12116992392301268 -9165.0,0.12112808054044316 -9166.0,0.1210862516075705 -9167.0,0.12104443711940474 -9168.0,0.12100263707095775 -9169.0,0.12096085145724308 -9170.0,0.1209190802732761 -9171.0,0.12087732351407367 -9172.0,0.12083558117465458 -9173.0,0.12079385325003926 -9174.0,0.12075213973524995 -9175.0,0.12071044062531042 -9176.0,0.12066875591524631 -9177.0,0.12062708560008495 -9178.0,0.12058542967485542 -9179.0,0.12054378813458835 -9180.0,0.1205021609743163 -9181.0,0.12046054818907344 -9182.0,0.12041894977389565 -9183.0,0.12037736572382061 -9184.0,0.12033579603388754 -9185.0,0.12029424069913752 -9186.0,0.12025269971461332 -9187.0,0.12021117307535945 -9188.0,0.12016966077642197 -9189.0,0.12012816281284881 -9190.0,0.1200866791796896 -9191.0,0.12004520987199567 -9192.0,0.12000375488481994 -9193.0,0.11996231421321718 -9194.0,0.11992088785224382 -9195.0,0.11987947579695804 -9196.0,0.11983807804241961 -9197.0,0.11979669458369009 -9198.0,0.11975532541583277 -9199.0,0.1197139705339126 -9200.0,0.11967262993299628 -9201.0,0.11963130360815209 -9202.0,0.11958999155445016 -9203.0,0.11954869376696224 -9204.0,0.11950741024076188 -9205.0,0.11946614097092413 -9206.0,0.11942488595252594 -9207.0,0.11938364518064588 -9208.0,0.11934241865036427 -9209.0,0.11930120635676299 -9210.0,0.11926000829492577 -9211.0,0.11921882445993796 -9212.0,0.11917765484688672 -9213.0,0.11913649945086068 -9214.0,0.11909535826695035 -9215.0,0.1190542312902479 -9216.0,0.11901311851584724 -9217.0,0.11897201993884379 -9218.0,0.11893093555433487 -9219.0,0.11888986535741938 -9220.0,0.11884880934319798 -9221.0,0.11880776750677301 -9222.0,0.1187667398432484 -9223.0,0.11872572634772986 -9224.0,0.11868472701532483 -9225.0,0.1186437418411424 -9226.0,0.11860277082029326 -9227.0,0.1185618139478899 -9228.0,0.11852087121904648 -9229.0,0.11847994262887886 -9230.0,0.11843902817250447 -9231.0,0.11839812784504257 -9232.0,0.11835724164161404 -9233.0,0.11831636955734151 -9234.0,0.11827551158734913 -9235.0,0.11823466772676289 -9236.0,0.11819383797071044 -9237.0,0.11815302231432105 -9238.0,0.11811222075272579 -9239.0,0.11807143328105722 -9240.0,0.11803065989444975 -9241.0,0.11798990058803939 -9242.0,0.11794915535696393 -9243.0,0.11790842419636265 -9244.0,0.11786770710137665 -9245.0,0.1178270040671487 -9246.0,0.11778631508882328 -9247.0,0.11774564016154639 -9248.0,0.11770497928046583 -9249.0,0.11766433244073107 -9250.0,0.1176236996374933 -9251.0,0.11758308086590522 -9252.0,0.11754247612112134 -9253.0,0.11750188539829783 -9254.0,0.11746130869259254 -9255.0,0.11742074599916488 -9256.0,0.11738019731317607 -9257.0,0.11733966262978895 -9258.0,0.11729914194416802 -9259.0,0.11725863525147949 -9260.0,0.11721814254689113 -9261.0,0.1171776638255725 -9262.0,0.11713719908269479 -9263.0,0.11709674831343089 -9264.0,0.11705631151295523 -9265.0,0.11701588867644402 -9266.0,0.11697547979907515 -9267.0,0.11693508487602815 -9268.0,0.11689470390248412 -9269.0,0.11685433687362594 -9270.0,0.11681398378463813 -9271.0,0.11677364463070691 -9272.0,0.11673331940702 -9273.0,0.11669300810876697 -9274.0,0.11665271073113895 -9275.0,0.11661242726932876 -9276.0,0.11657215771853095 -9277.0,0.11653190207394153 -9278.0,0.11649166033075835 -9279.0,0.11645143248418088 -9280.0,0.11641121852941026 -9281.0,0.11637101846164917 -9282.0,0.1163308322761021 -9283.0,0.1162906599679751 -9284.0,0.11625050153247596 -9285.0,0.116210356964814 -9286.0,0.1161702262602003 -9287.0,0.11613010941384753 -9288.0,0.11609000642097014 -9289.0,0.11604991727678401 -9290.0,0.11600984197650686 -9291.0,0.115969780515358 -9292.0,0.11592973288855841 -9293.0,0.11588969909133065 -9294.0,0.11584967911889898 -9295.0,0.11580967296648934 -9296.0,0.11576968062932927 -9297.0,0.11572970210264803 -9298.0,0.1156897373816764 -9299.0,0.11564978646164689 -9300.0,0.11560984933779367 -9301.0,0.11556992600535257 -9302.0,0.11553001645956094 -9303.0,0.11549012069565791 -9304.0,0.1154502387088842 -9305.0,0.11541037049448223 -9306.0,0.11537051604769591 -9307.0,0.11533067536377097 -9308.0,0.11529084843795466 -9309.0,0.11525103526549602 -9310.0,0.11521123584164548 -9311.0,0.11517145016165535 -9312.0,0.11513167822077947 -9313.0,0.11509192001427333 -9314.0,0.11505217553739414 -9315.0,0.11501244478540054 -9316.0,0.11497272775355302 -9317.0,0.11493302443711362 -9318.0,0.11489333483134606 -9319.0,0.11485365893151557 -9320.0,0.11481399673288917 -9321.0,0.11477434823073543 -9322.0,0.11473471342032461 -9323.0,0.1146950922969285 -9324.0,0.11465548485582061 -9325.0,0.11461589109227609 -9326.0,0.1145763110015717 -9327.0,0.11453674457898577 -9328.0,0.11449719181979834 -9329.0,0.11445765271929105 -9330.0,0.11441812727274724 -9331.0,0.1143786154754517 -9332.0,0.114339117322691 -9333.0,0.11429963280975333 -9334.0,0.11426016193192845 -9335.0,0.11422070468450783 -9336.0,0.11418126106278441 -9337.0,0.1141418310620529 -9338.0,0.11410241467760959 -9339.0,0.11406301190475246 -9340.0,0.1140236227387809 -9341.0,0.11398424717499617 -9342.0,0.11394488520870102 -9343.0,0.11390553683519992 -9344.0,0.1138662020497988 -9345.0,0.11382688084780535 -9346.0,0.11378757322452882 -9347.0,0.11374827917528017 -9348.0,0.1137089986953718 -9349.0,0.11366973178011788 -9350.0,0.11363047842483416 -9351.0,0.11359123862483801 -9352.0,0.11355201237544843 -9353.0,0.11351279967198595 -9354.0,0.1134736005097728 -9355.0,0.11343441488413282 -9356.0,0.1133952427903915 -9357.0,0.11335608422387579 -9358.0,0.11331693917991441 -9359.0,0.11327780765383764 -9360.0,0.11323868964097743 -9361.0,0.1131995851366672 -9362.0,0.11316049413624207 -9363.0,0.11312141663503883 -9364.0,0.11308235262839582 -9365.0,0.11304330211165292 -9366.0,0.11300426508015173 -9367.0,0.1129652415292354 -9368.0,0.11292623145424877 -9369.0,0.11288723485053812 -9370.0,0.11284825171345149 -9371.0,0.11280928203833848 -9372.0,0.11277032582055029 -9373.0,0.11273138305543977 -9374.0,0.11269245373836123 -9375.0,0.11265353786467075 -9376.0,0.11261463542972594 -9377.0,0.11257574642888608 -9378.0,0.11253687085751189 -9379.0,0.11249800871096587 -9380.0,0.112459159984612 -9381.0,0.112420324673816 -9382.0,0.112381502773945 -9383.0,0.11234269428036786 -9384.0,0.11230389918845501 -9385.0,0.11226511749357856 -9386.0,0.112226349191112 -9387.0,0.11218759427643063 -9388.0,0.11214885274491125 -9389.0,0.1121101245919323 -9390.0,0.11207140981287382 -9391.0,0.11203270840311734 -9392.0,0.1119940203580461 -9393.0,0.11195534567304491 -9394.0,0.1119166843435002 -9395.0,0.11187803636479987 -9396.0,0.11183940173233353 -9397.0,0.11180078044149236 -9398.0,0.11176217248766918 -9399.0,0.11172357786625821 -9400.0,0.11168499657265549 -9401.0,0.11164642860225851 -9402.0,0.11160787395046648 -9403.0,0.11156933261267997 -9404.0,0.11153080458430137 -9405.0,0.11149228986073455 -9406.0,0.11145378843738503 -9407.0,0.11141530030965976 -9408.0,0.11137682547296747 -9409.0,0.11133836392271837 -9410.0,0.11129991565432427 -9411.0,0.11126148066319864 -9412.0,0.11122305894475637 -9413.0,0.11118465049441406 -9414.0,0.11114625530758987 -9415.0,0.11110787337970358 -9416.0,0.11106950470617642 -9417.0,0.11103114928243132 -9418.0,0.11099280710389277 -9419.0,0.11095447816598687 -9420.0,0.11091616246414115 -9421.0,0.1108778599937849 -9422.0,0.11083957075034889 -9423.0,0.11080129472926556 -9424.0,0.11076303192596876 -9425.0,0.11072478233589404 -9426.0,0.11068654595447854 -9427.0,0.11064832277716091 -9428.0,0.11061011279938146 -9429.0,0.11057191601658194 -9430.0,0.11053373242420576 -9431.0,0.11049556201769795 -9432.0,0.11045740479250506 -9433.0,0.11041926074407513 -9434.0,0.1103811298678579 -9435.0,0.11034301215930464 -9436.0,0.11030490761386824 -9437.0,0.110266816227003 -9438.0,0.11022873799416495 -9439.0,0.11019067291081162 -9440.0,0.11015262097240218 -9441.0,0.11011458217439722 -9442.0,0.11007655651225902 -9443.0,0.11003854398145142 -9444.0,0.11000054457743984 -9445.0,0.10996255829569111 -9446.0,0.10992458513167383 -9447.0,0.10988662508085806 -9448.0,0.10984867813871543 -9449.0,0.10981074430071922 -9450.0,0.10977282356234408 -9451.0,0.10973491591906641 -9452.0,0.1096970213663641 -9453.0,0.10965913989971664 -9454.0,0.10962127151460496 -9455.0,0.1095834162065117 -9456.0,0.10954557397092098 -9457.0,0.10950774480331854 -9458.0,0.10946992869919155 -9459.0,0.10943212565402888 -9460.0,0.1093943356633209 -9461.0,0.10935655872255957 -9462.0,0.1093187948272383 -9463.0,0.10928104397285217 -9464.0,0.10924330615489779 -9465.0,0.10920558136887329 -9466.0,0.10916786961027845 -9467.0,0.10913017087461443 -9468.0,0.1090924851573841 -9469.0,0.1090548124540918 -9470.0,0.10901715276024354 -9471.0,0.10897950607134667 -9472.0,0.10894187238291025 -9473.0,0.1089042516904449 -9474.0,0.10886664398946276 -9475.0,0.10882904927547742 -9476.0,0.10879146754400414 -9477.0,0.1087538987905597 -9478.0,0.10871634301066249 -9479.0,0.10867880019983227 -9480.0,0.10864127035359049 -9481.0,0.10860375346746012 -9482.0,0.10856624953696573 -9483.0,0.10852875855763326 -9484.0,0.10849128052499037 -9485.0,0.1084538154345662 -9486.0,0.10841636328189144 -9487.0,0.10837892406249838 -9488.0,0.10834149777192068 -9489.0,0.1083040844056937 -9490.0,0.10826668395935432 -9491.0,0.10822929642844097 -9492.0,0.1081919218084935 -9493.0,0.10815456009505345 -9494.0,0.10811721128366382 -9495.0,0.10807987536986922 -9496.0,0.10804255234921567 -9497.0,0.10800524221725084 -9498.0,0.1079679449695239 -9499.0,0.10793066060158561 -9500.0,0.10789338910898813 -9501.0,0.10785613048728529 -9502.0,0.1078188847320324 -9503.0,0.10778165183878631 -9504.0,0.10774443180310546 -9505.0,0.10770722462054969 -9506.0,0.10767003028668047 -9507.0,0.10763284879706081 -9508.0,0.10759568014725528 -9509.0,0.10755852433282982 -9510.0,0.10752138134935207 -9511.0,0.10748425119239115 -9512.0,0.10744713385751774 -9513.0,0.1074100293403039 -9514.0,0.10737293763632343 -9515.0,0.10733585874115151 -9516.0,0.10729879265036496 -9517.0,0.10726173935954197 -9518.0,0.10722469886426243 -9519.0,0.10718767116010763 -9520.0,0.10715065624266053 -9521.0,0.10711365410750538 -9522.0,0.10707666475022817 -9523.0,0.10703968816641635 -9524.0,0.10700272435165885 -9525.0,0.10696577330154622 -9526.0,0.10692883501167037 -9527.0,0.10689190947762489 -9528.0,0.10685499669500484 -9529.0,0.10681809665940681 -9530.0,0.10678120936642883 -9531.0,0.10674433481167055 -9532.0,0.10670747299073309 -9533.0,0.10667062389921918 -9534.0,0.10663378753273288 -9535.0,0.10659696388687993 -9536.0,0.10656015295726755 -9537.0,0.10652335473950449 -9538.0,0.1064865692292009 -9539.0,0.1064497964219686 -9540.0,0.10641303631342085 -9541.0,0.10637628889917243 -9542.0,0.1063395541748397 -9543.0,0.10630283213604039 -9544.0,0.10626612277839387 -9545.0,0.10622942609752097 -9546.0,0.10619274208904408 -9547.0,0.106156070748587 -9548.0,0.10611941207177515 -9549.0,0.1060827660542354 -9550.0,0.10604613269159621 -9551.0,0.10600951197948738 -9552.0,0.10597290391354039 -9553.0,0.10593630848938813 -9554.0,0.10589972570266512 -9555.0,0.10586315554900719 -9556.0,0.10582659802405184 -9557.0,0.105790053123438 -9558.0,0.1057535208428062 -9559.0,0.10571700117779832 -9560.0,0.10568049412405785 -9561.0,0.10564399967722977 -9562.0,0.10560751783296059 -9563.0,0.1055710485868983 -9564.0,0.1055345919346923 -9565.0,0.10549814787199364 -9566.0,0.1054617163944548 -9567.0,0.10542529749772982 -9568.0,0.10538889117747409 -9569.0,0.10535249742934465 -9570.0,0.105316116249 -9571.0,0.10527974763210016 -9572.0,0.10524339157430655 -9573.0,0.10520704807128219 -9574.0,0.10517071711869155 -9575.0,0.10513439871220068 -9576.0,0.10509809284747697 -9577.0,0.10506179952018943 -9578.0,0.10502551872600853 -9579.0,0.10498925046060624 -9580.0,0.10495299471965606 -9581.0,0.10491675149883287 -9582.0,0.10488052079381313 -9583.0,0.10484430260027482 -9584.0,0.10480809691389739 -9585.0,0.10477190373036169 -9586.0,0.10473572304535018 -9587.0,0.10469955485454677 -9588.0,0.1046633991536369 -9589.0,0.10462725593830736 -9590.0,0.10459112520424658 -9591.0,0.10455500694714444 -9592.0,0.10451890116269233 -9593.0,0.104482807846583 -9594.0,0.10444672699451082 -9595.0,0.10441065860217162 -9596.0,0.10437460266526274 -9597.0,0.1043385591794829 -9598.0,0.10430252814053238 -9599.0,0.10426650954411297 -9600.0,0.10423050338592792 -9601.0,0.10419450966168198 -9602.0,0.10415852836708128 -9603.0,0.10412255949783357 -9604.0,0.10408660304964801 -9605.0,0.1040506590182353 -9606.0,0.1040147273993075 -9607.0,0.10397880818857828 -9608.0,0.10394290138176274 -9609.0,0.1039070069745775 -9610.0,0.10387112496274051 -9611.0,0.10383525534197138 -9612.0,0.10379939810799112 -9613.0,0.10376355325652226 -9614.0,0.10372772078328867 -9615.0,0.10369190068401586 -9616.0,0.10365609295443076 -9617.0,0.10362029759026176 -9618.0,0.10358451458723877 -9619.0,0.10354874394109306 -9620.0,0.10351298564755751 -9621.0,0.10347723970236639 -9622.0,0.1034415061012555 -9623.0,0.10340578483996204 -9624.0,0.10337007591422476 -9625.0,0.10333437931978381 -9626.0,0.10329869505238091 -9627.0,0.10326302310775912 -9628.0,0.10322736348166305 -9629.0,0.10319171616983877 -9630.0,0.10315608116803389 -9631.0,0.10312045847199729 -9632.0,0.1030848480774795 -9633.0,0.10304924998023246 -9634.0,0.10301366417600963 -9635.0,0.10297809066056578 -9636.0,0.10294252942965729 -9637.0,0.10290698047904198 -9638.0,0.10287144380447912 -9639.0,0.10283591940172947 -9640.0,0.10280040726655515 -9641.0,0.10276490739471987 -9642.0,0.10272941978198875 -9643.0,0.10269394442412842 -9644.0,0.10265848131690684 -9645.0,0.10262303045609357 -9646.0,0.10258759183745957 -9647.0,0.10255216545677731 -9648.0,0.10251675130982062 -9649.0,0.10248134939236488 -9650.0,0.10244595970018688 -9651.0,0.10241058222906496 -9652.0,0.10237521697477873 -9653.0,0.10233986393310945 -9654.0,0.10230452309983976 -9655.0,0.10226919447075371 -9656.0,0.10223387804163694 -9657.0,0.10219857380827635 -9658.0,0.10216328176646046 -9659.0,0.10212800191197917 -9660.0,0.10209273424062391 -9661.0,0.10205747874818741 -9662.0,0.10202223543046399 -9663.0,0.10198700428324937 -9664.0,0.1019517853023408 -9665.0,0.10191657848353679 -9666.0,0.10188138382263749 -9667.0,0.10184620131544443 -9668.0,0.10181103095776065 -9669.0,0.10177587274539047 -9670.0,0.10174072667413983 -9671.0,0.10170559273981605 -9672.0,0.10167047093822798 -9673.0,0.10163536126518571 -9674.0,0.10160026371650101 -9675.0,0.10156517828798695 -9676.0,0.10153010497545811 -9677.0,0.10149504377473056 -9678.0,0.10145999468162166 -9679.0,0.10142495769195034 -9680.0,0.10138993280153695 -9681.0,0.10135492000620332 -9682.0,0.10131991930177259 -9683.0,0.10128493068406948 -9684.0,0.10124995414892009 -9685.0,0.10121498969215204 -9686.0,0.10118003730959421 -9687.0,0.1011450969970771 -9688.0,0.10111016875043258 -9689.0,0.101075252565494 -9690.0,0.10104034843809605 -9691.0,0.10100545636407494 -9692.0,0.10097057633926831 -9693.0,0.10093570835951524 -9694.0,0.10090085242065626 -9695.0,0.10086600851853322 -9696.0,0.10083117664898957 -9697.0,0.10079635680787008 -9698.0,0.10076154899102106 -9699.0,0.10072675319429011 -9700.0,0.1006919694135264 -9701.0,0.10065719764458045 -9702.0,0.1006224378833043 -9703.0,0.10058769012555127 -9704.0,0.10055295436717626 -9705.0,0.10051823060403553 -9706.0,0.10048351883198686 -9707.0,0.10044881904688928 -9708.0,0.1004141312446034 -9709.0,0.10037945542099122 -9710.0,0.10034479157191624 -9711.0,0.10031013969324318 -9712.0,0.1002754997808384 -9713.0,0.1002408718305696 -9714.0,0.10020625583830592 -9715.0,0.10017165179991798 -9716.0,0.10013705971127766 -9717.0,0.10010247956825843 -9718.0,0.10006791136673514 -9719.0,0.10003335510258408 -9720.0,0.09999881077168288 -9721.0,0.09996427836991066 -9722.0,0.099929757893148 -9723.0,0.09989524933727686 -9724.0,0.09986075269818057 -9725.0,0.09982626797174395 -9726.0,0.09979179515385324 -9727.0,0.09975733424039611 -9728.0,0.09972288522726155 -9729.0,0.0996884481103401 -9730.0,0.09965402288552364 -9731.0,0.09961960954870548 -9732.0,0.09958520809578045 -9733.0,0.09955081852264458 -9734.0,0.0995164408251955 -9735.0,0.09948207499933222 -9736.0,0.09944772104095516 -9737.0,0.09941337894596608 -9738.0,0.09937904871026824 -9739.0,0.09934473032976632 -9740.0,0.0993104238003664 -9741.0,0.09927612911797591 -9742.0,0.09924184627850377 -9743.0,0.09920757527786027 -9744.0,0.0991733161119572 -9745.0,0.09913906877670758 -9746.0,0.09910483326802602 -9747.0,0.09907060958182846 -9748.0,0.09903639771403232 -9749.0,0.09900219766055626 -9750.0,0.09896800941732053 -9751.0,0.09893383298024673 -9752.0,0.09889966834525783 -9753.0,0.09886551550827831 -9754.0,0.09883137446523386 -9755.0,0.0987972452120518 -9756.0,0.09876312774466071 -9757.0,0.0987290220589907 -9758.0,0.09869492815097311 -9759.0,0.09866084601654083 -9760.0,0.09862677565162811 -9761.0,0.09859271705217065 -9762.0,0.09855867021410543 -9763.0,0.09852463513337092 -9764.0,0.09849061180590703 -9765.0,0.09845660022765503 -9766.0,0.09842260039455751 -9767.0,0.0983886123025586 -9768.0,0.09835463594760374 -9769.0,0.09832067132563982 -9770.0,0.09828671843261515 -9771.0,0.0982527772644793 -9772.0,0.09821884781718337 -9773.0,0.09818493008667986 -9774.0,0.09815102406892265 -9775.0,0.0981171297598669 -9776.0,0.09808324715546934 -9777.0,0.09804937625168801 -9778.0,0.0980155170444824 -9779.0,0.09798166952981327 -9780.0,0.09794783370364289 -9781.0,0.0979140095619349 -9782.0,0.09788019710065438 -9783.0,0.09784639631576765 -9784.0,0.09781260720324256 -9785.0,0.09777882975904834 -9786.0,0.09774506397915561 -9787.0,0.09771130985953627 -9788.0,0.09767756739616376 -9789.0,0.09764383658501284 -9790.0,0.09761011742205968 -9791.0,0.09757640990328185 -9792.0,0.09754271402465822 -9793.0,0.09750902978216916 -9794.0,0.09747535717179638 -9795.0,0.09744169618952304 -9796.0,0.09740804683133353 -9797.0,0.09737440909321377 -9798.0,0.09734078297115101 -9799.0,0.09730716846113398 -9800.0,0.09727356555915259 -9801.0,0.09723997426119832 -9802.0,0.09720639456326398 -9803.0,0.09717282646134379 -9804.0,0.09713926995143322 -9805.0,0.0971057250295293 -9806.0,0.09707219169163034 -9807.0,0.09703866993373605 -9808.0,0.0970051597518476 -9809.0,0.09697166114196737 -9810.0,0.09693817410009926 -9811.0,0.09690469862224851 -9812.0,0.09687123470442179 -9813.0,0.096837782342627 -9814.0,0.09680434153287357 -9815.0,0.09677091227117225 -9816.0,0.09673749455353522 -9817.0,0.0967040883759759 -9818.0,0.09667069373450922 -9819.0,0.09663731062515145 -9820.0,0.09660393904392027 -9821.0,0.0965705789868346 -9822.0,0.09653723044991487 -9823.0,0.09650389342918286 -9824.0,0.09647056792066173 -9825.0,0.09643725392037591 -9826.0,0.09640395142435133 -9827.0,0.09637066042861525 -9828.0,0.09633738092919628 -9829.0,0.09630411292212447 -9830.0,0.09627085640343111 -9831.0,0.09623761136914896 -9832.0,0.09620437781531216 -9833.0,0.09617115573795622 -9834.0,0.0961379451331179 -9835.0,0.09610474599683545 -9836.0,0.09607155832514848 -9837.0,0.09603838211409796 -9838.0,0.09600521735972614 -9839.0,0.09597206405807675 -9840.0,0.09593892220519484 -9841.0,0.09590579179712685 -9842.0,0.09587267282992053 -9843.0,0.09583956529962502 -9844.0,0.09580646920229086 -9845.0,0.0957733845339699 -9846.0,0.09574031129071546 -9847.0,0.09570724946858204 -9848.0,0.09567419906362565 -9849.0,0.09564116007190361 -9850.0,0.09560813248947465 -9851.0,0.09557511631239876 -9852.0,0.09554211153673738 -9853.0,0.09550911815855326 -9854.0,0.0954761361739106 -9855.0,0.09544316557887479 -9856.0,0.09541020636951272 -9857.0,0.09537725854189262 -9858.0,0.09534432209208407 -9859.0,0.09531139701615791 -9860.0,0.09527848331018648 -9861.0,0.0952455809702434 -9862.0,0.09521268999240366 -9863.0,0.09517981037274365 -9864.0,0.095146942107341 -9865.0,0.09511408519227478 -9866.0,0.09508123962362541 -9867.0,0.09504840539747472 -9868.0,0.09501558250990572 -9869.0,0.09498277095700292 -9870.0,0.09494997073485213 -9871.0,0.0949171818395406 -9872.0,0.09488440426715673 -9873.0,0.09485163801379047 -9874.0,0.09481888307553303 -9875.0,0.09478613944847702 -9876.0,0.0947534071287163 -9877.0,0.09472068611234616 -9878.0,0.09468797639546324 -9879.0,0.09465527797416554 -9880.0,0.0946225908445523 -9881.0,0.09458991500272422 -9882.0,0.09455725044478332 -9883.0,0.09452459716683295 -9884.0,0.09449195516497785 -9885.0,0.094459324435324 -9886.0,0.0944267049739788 -9887.0,0.09439409677705102 -9888.0,0.09436149984065076 -9889.0,0.09432891416088938 -9890.0,0.09429633973387967 -9891.0,0.09426377655573574 -9892.0,0.09423122462257309 -9893.0,0.09419868393050844 -9894.0,0.09416615447565993 -9895.0,0.09413363625414706 -9896.0,0.09410112926209067 -9897.0,0.09406863349561286 -9898.0,0.09403614895083712 -9899.0,0.0940036756238883 -9900.0,0.09397121351089258 -9901.0,0.0939387626079775 -9902.0,0.09390632291127181 -9903.0,0.09387389441690575 -9904.0,0.09384147712101082 -9905.0,0.09380907101971993 -9906.0,0.09377667610916716 -9907.0,0.09374429238548812 -9908.0,0.09371191984481962 -9909.0,0.09367955848329992 -9910.0,0.09364720829706848 -9911.0,0.09361486928226614 -9912.0,0.09358254143503515 -9913.0,0.09355022475151906 -9914.0,0.09351791922786262 -9915.0,0.09348562486021209 -9916.0,0.09345334164471496 -9917.0,0.09342106957752014 -9918.0,0.09338880865477771 -9919.0,0.09335655887263922 -9920.0,0.0933243202272575 -9921.0,0.09329209271478675 -9922.0,0.09325987633138247 -9923.0,0.0932276710732014 -9924.0,0.09319547693640173 -9925.0,0.09316329391714295 -9926.0,0.0931311220115859 -9927.0,0.0930989612158926 -9928.0,0.09306681152622656 -9929.0,0.09303467293875256 -9930.0,0.09300254544963674 -9931.0,0.09297042905504643 -9932.0,0.09293832375115042 -9933.0,0.09290622953411881 -9934.0,0.09287414640012301 -9935.0,0.09284207434533565 -9936.0,0.09281001336593082 -9937.0,0.09277796345808388 -9938.0,0.0927459246179715 -9939.0,0.09271389684177173 -9940.0,0.09268188012566381 -9941.0,0.09264987446582841 -9942.0,0.0926178798584475 -9943.0,0.09258589629970437 -9944.0,0.09255392378578357 -9945.0,0.09252196231287103 -9946.0,0.092490011877154 -9947.0,0.09245807247482105 -9948.0,0.09242614410206194 -9949.0,0.09239422675506793 -9950.0,0.0923623204300315 -9951.0,0.09233042512314649 -9952.0,0.09229854083060794 -9953.0,0.09226666754861233 -9954.0,0.09223480527335742 -9955.0,0.09220295400104231 -9956.0,0.09217111372786728 -9957.0,0.09213928445003407 -9958.0,0.09210746616374568 -9959.0,0.09207565886520641 -9960.0,0.09204386255062194 -9961.0,0.0920120772161991 -9962.0,0.09198030285814618 -9963.0,0.09194853947267274 -9964.0,0.09191678705598967 -9965.0,0.09188504560430906 -9966.0,0.09185331511384442 -9967.0,0.09182159558081056 -9968.0,0.09178988700142357 -9969.0,0.0917581893719008 -9970.0,0.09172650268846098 -9971.0,0.09169482694732412 -9972.0,0.09166316214471158 -9973.0,0.0916315082768459 -9974.0,0.09159986533995104 -9975.0,0.09156823333025223 -9976.0,0.09153661224397601 -9977.0,0.09150500207735024 -9978.0,0.09147340282660398 -9979.0,0.09144181448796772 -9980.0,0.09141023705767319 -9981.0,0.09137867053195349 -9982.0,0.09134711490704286 -9983.0,0.091315570179177 -9984.0,0.09128403634459287 -9985.0,0.09125251339952871 -9986.0,0.09122100134022401 -9987.0,0.09118950016291966 -9988.0,0.09115800986385778 -9989.0,0.09112653043928186 -9990.0,0.09109506188543653 -9991.0,0.09106360419856789 -9992.0,0.09103215737492326 -9993.0,0.0910007214107513 -9994.0,0.09096929630230184 -9995.0,0.09093788204582615 -9996.0,0.09090647863757673 -9997.0,0.09087508607380737 -9998.0,0.09084370435077323 -9999.0,0.0908123334647306 -10000.0,0.09078097341193722 -10001.0,0.09074962418865205 -10002.0,0.09071828579113539 -10003.0,0.09068695821564875 -10004.0,0.09065564145845498 -10005.0,0.09062433551581824 -10006.0,0.090593040384004 -10007.0,0.09056175605927888 -10008.0,0.09053048253791095 -10009.0,0.0904992198161695 -10010.0,0.09046796789032516 -10011.0,0.09043672675664971 -10012.0,0.09040549641141636 -10013.0,0.09037427685089956 -10014.0,0.09034306807137504 -10015.0,0.09031187006911985 -10016.0,0.09028068284041224 -10017.0,0.09024950638153181 -10018.0,0.09021834068875947 -10019.0,0.09018718575837739 -10020.0,0.09015604158666896 -10021.0,0.09012490816991892 -10022.0,0.0900937855044133 -10023.0,0.09006267358643942 -10024.0,0.09003157241228579 -10025.0,0.0900004819782423 -10026.0,0.08996940228060009 -10027.0,0.08993833331565161 -10028.0,0.08990727507969049 -10029.0,0.08987622756901173 -10030.0,0.08984519077991161 -10031.0,0.08981416470868771 -10032.0,0.08978314935163874 -10033.0,0.08975214470506485 -10034.0,0.08972115076526742 -10035.0,0.08969016752854908 -10036.0,0.08965919499121382 -10037.0,0.08962823314956674 -10038.0,0.08959728199991436 -10039.0,0.08956634153856444 -10040.0,0.08953541176182606 -10041.0,0.08950449266600942 -10042.0,0.08947358424742614 -10043.0,0.0894426865023891 -10044.0,0.08941179942721243 -10045.0,0.08938092301821148 -10046.0,0.08935005727170292 -10047.0,0.08931920218400471 -10048.0,0.08928835775143612 -10049.0,0.08925752397031753 -10050.0,0.08922670083697075 -10051.0,0.08919588834771879 -10052.0,0.08916508649888595 -10053.0,0.08913429528679785 -10054.0,0.08910351470778123 -10055.0,0.08907274475816422 -10056.0,0.08904198543427622 -10057.0,0.08901123673244786 -10058.0,0.08898049864901102 -10059.0,0.08894977118029887 -10060.0,0.08891905432264585 -10061.0,0.08888834807238773 -10062.0,0.08885765242586137 -10063.0,0.08882696737940506 -10064.0,0.0887962929293583 -10065.0,0.08876562907206187 -10066.0,0.08873497580385772 -10067.0,0.0887043331210892 -10068.0,0.08867370102010086 -10069.0,0.08864307949723853 -10070.0,0.08861246854884922 -10071.0,0.0885818681712813 -10072.0,0.08855127836088439 -10073.0,0.08852069911400931 -10074.0,0.08849013042700825 -10075.0,0.08845957229623451 -10076.0,0.08842902471804275 -10077.0,0.08839848768878887 -10078.0,0.08836796120483005 -10079.0,0.08833744526252467 -10080.0,0.0883069398582324 -10081.0,0.08827644498831419 -10082.0,0.08824596064913225 -10083.0,0.08821548683704994 -10084.0,0.08818502354843201 -10085.0,0.0881545707796444 -10086.0,0.08812412852705437 -10087.0,0.08809369678703027 -10088.0,0.08806327555594189 -10089.0,0.08803286483016018 -10090.0,0.08800246460605737 -10091.0,0.08797207488000698 -10092.0,0.08794169564838364 -10093.0,0.08791132690756338 -10094.0,0.08788096865392343 -10095.0,0.08785062088384232 -10096.0,0.08782028359369969 -10097.0,0.08778995677987655 -10098.0,0.08775964043875517 -10099.0,0.08772933456671904 -10100.0,0.08769903916015283 -10101.0,0.08766875421544254 -10102.0,0.08763847972897541 -10103.0,0.08760821569713995 -10104.0,0.08757796211632579 -10105.0,0.08754771898292397 -10106.0,0.08751748629332667 -10107.0,0.08748726404392743 -10108.0,0.08745705223112082 -10109.0,0.08742685085130289 -10110.0,0.0873966599008708 -10111.0,0.087366479376223 -10112.0,0.0873363092737592 -10113.0,0.08730614958988027 -10114.0,0.0872760003209884 -10115.0,0.08724586146348702 -10116.0,0.0872157330137808 -10117.0,0.08718561496827558 -10118.0,0.08715550732337853 -10119.0,0.08712541007549802 -10120.0,0.08709532322104371 -10121.0,0.08706524675642638 -10122.0,0.08703518067805817 -10123.0,0.08700512498235241 -10124.0,0.08697507966572372 -10125.0,0.08694504472458783 -10126.0,0.08691502015536183 -10127.0,0.08688500595446401 -10128.0,0.0868550021183139 -10129.0,0.08682500864333229 -10130.0,0.0867950255259411 -10131.0,0.08676505276256359 -10132.0,0.08673509034962426 -10133.0,0.08670513828354882 -10134.0,0.08667519656076415 -10135.0,0.08664526517769847 -10136.0,0.08661534413078115 -10137.0,0.08658543341644287 -10138.0,0.08655553303111545 -10139.0,0.08652564297123201 -10140.0,0.0864957632332269 -10141.0,0.0864658938135357 -10142.0,0.08643603470859515 -10143.0,0.08640618591484331 -10144.0,0.08637634742871943 -10145.0,0.08634651924666403 -10146.0,0.08631670136511876 -10147.0,0.08628689378052662 -10148.0,0.08625709648933175 -10149.0,0.08622730948797955 -10150.0,0.08619753277291671 -10151.0,0.08616776634059099 -10152.0,0.08613801018745153 -10153.0,0.08610826430994861 -10154.0,0.08607852870453382 -10155.0,0.08604880336765984 -10156.0,0.0860190882957807 -10157.0,0.0859893834853516 -10158.0,0.085959688932829 -10159.0,0.08593000463467049 -10160.0,0.085900330587335 -10161.0,0.08587066678728261 -10162.0,0.0858410132309747 -10163.0,0.08581136991487374 -10164.0,0.08578173683544353 -10165.0,0.08575211398914906 -10166.0,0.08572250137245654 -10167.0,0.08569289898183345 -10168.0,0.08566330681374834 -10169.0,0.08563372486467115 -10170.0,0.08560415313107295 -10171.0,0.08557459160942607 -10172.0,0.085545040296204 -10173.0,0.0855154991878815 -10174.0,0.08548596828093452 -10175.0,0.08545644757184029 -10176.0,0.08542693705707713 -10177.0,0.08539743673312468 -10178.0,0.08536794659646378 -10179.0,0.08533846664357649 -10180.0,0.08530899687094601 -10181.0,0.08527953727505684 -10182.0,0.08525008785239466 -10183.0,0.08522064859944642 -10184.0,0.08519121951270014 -10185.0,0.0851618005886452 -10186.0,0.08513239182377212 -10187.0,0.08510299321457267 -10188.0,0.08507360475753982 -10189.0,0.08504422644916768 -10190.0,0.08501485828595168 -10191.0,0.08498550026438839 -10192.0,0.08495615238097567 -10193.0,0.08492681463221245 -10194.0,0.08489748701459898 -10195.0,0.0848681695246367 -10196.0,0.08483886215882828 -10197.0,0.08480956491367748 -10198.0,0.08478027778568942 -10199.0,0.08475100077137032 -10200.0,0.08472173386722771 -10201.0,0.08469247706977018 -10202.0,0.08466323037550764 -10203.0,0.08463399378095118 -10204.0,0.0846047672826131 -10205.0,0.08457555087700688 -10206.0,0.0845463445606472 -10207.0,0.08451714833004996 -10208.0,0.08448796218173228 -10209.0,0.08445878611221248 -10210.0,0.08442962011801003 -10211.0,0.08440046419564565 -10212.0,0.08437131834164124 -10213.0,0.08434218255251998 -10214.0,0.0843130568248061 -10215.0,0.08428394115502513 -10216.0,0.08425483553970381 -10217.0,0.08422573997537007 -10218.0,0.08419665445855297 -10219.0,0.08416757898578282 -10220.0,0.08413851355359116 -10221.0,0.08410945815851073 -10222.0,0.08408041279707533 -10223.0,0.08405137746582014 -10224.0,0.08402235216128143 -10225.0,0.08399333687999669 -10226.0,0.08396433161850467 -10227.0,0.08393533637334515 -10228.0,0.08390635114105925 -10229.0,0.08387737591818928 -10230.0,0.0838484107012787 -10231.0,0.08381945548687211 -10232.0,0.0837905102715154 -10233.0,0.08376157505175563 -10234.0,0.08373264982414108 -10235.0,0.08370373458522108 -10236.0,0.08367482933154631 -10237.0,0.08364593405966857 -10238.0,0.08361704876614091 -10239.0,0.08358817344751747 -10240.0,0.08355930810035364 -10241.0,0.08353045272120602 -10242.0,0.08350160730663234 -10243.0,0.08347277185319163 -10244.0,0.08344394635744393 -10245.0,0.0834151308159506 -10246.0,0.08338632522527419 -10247.0,0.08335752958197841 -10248.0,0.08332874388262809 -10249.0,0.08329996812378933 -10250.0,0.0832712023020294 -10251.0,0.0832424464139168 -10252.0,0.08321370045602106 -10253.0,0.08318496442491305 -10254.0,0.08315623831716476 -10255.0,0.08312752212934942 -10256.0,0.08309881585804132 -10257.0,0.08307011949981606 -10258.0,0.08304143305125036 -10259.0,0.08301275650892218 -10260.0,0.08298408986941054 -10261.0,0.08295543312929576 -10262.0,0.08292678628515929 -10263.0,0.08289814933358379 -10264.0,0.08286952227115309 -10265.0,0.08284090509445213 -10266.0,0.08281229780006714 -10267.0,0.08278370038458546 -10268.0,0.08275511284459568 -10269.0,0.08272653517668742 -10270.0,0.08269796737745162 -10271.0,0.08266940944348035 -10272.0,0.08264086137136689 -10273.0,0.0826123231577056 -10274.0,0.08258379479909211 -10275.0,0.0825552762921232 -10276.0,0.08252676763339684 -10277.0,0.0824982688195121 -10278.0,0.0824697798470693 -10279.0,0.08244130071266992 -10280.0,0.08241283141291661 -10281.0,0.08238437194441323 -10282.0,0.08235592230376469 -10283.0,0.0823274824875772 -10284.0,0.0822990524924581 -10285.0,0.08227063231501591 -10286.0,0.08224222195186028 -10287.0,0.08221382139960207 -10288.0,0.08218543065485329 -10289.0,0.08215704971422719 -10290.0,0.08212867857433805 -10291.0,0.08210031723180145 -10292.0,0.08207196568323405 -10293.0,0.0820436239252538 -10294.0,0.08201529195447962 -10295.0,0.0819869697675318 -10296.0,0.08195865736103165 -10297.0,0.08193035473160179 -10298.0,0.08190206187586582 -10299.0,0.08187377879044867 -10300.0,0.08184550547197636 -10301.0,0.08181724191707608 -10302.0,0.08178898812237624 -10303.0,0.0817607440845063 -10304.0,0.081732509800097 -10305.0,0.08170428526578016 -10306.0,0.08167607047818887 -10307.0,0.0816478654339572 -10308.0,0.08161967012972059 -10309.0,0.08159148456211548 -10310.0,0.08156330872777963 -10311.0,0.08153514262335175 -10312.0,0.0815069862454719 -10313.0,0.0814788395907812 -10314.0,0.08145070265592202 -10315.0,0.08142257543753774 -10316.0,0.08139445793227304 -10317.0,0.0813663501367737 -10318.0,0.08133825204768665 -10319.0,0.08131016366166005 -10320.0,0.08128208497534307 -10321.0,0.08125401598538619 -10322.0,0.08122595668844096 -10323.0,0.08119790708116015 -10324.0,0.08116986716019758 -10325.0,0.08114183692220832 -10326.0,0.08111381636384858 -10327.0,0.08108580548177574 -10328.0,0.08105780427264823 -10329.0,0.08102981273312576 -10330.0,0.08100183085986913 -10331.0,0.08097385864954035 -10332.0,0.08094589609880246 -10333.0,0.08091794320431978 -10334.0,0.08088999996275771 -10335.0,0.08086206637078289 -10336.0,0.08083414242506294 -10337.0,0.08080622812226682 -10338.0,0.08077832345906451 -10339.0,0.08075042843212721 -10340.0,0.08072254303812729 -10341.0,0.08069466727373813 -10342.0,0.0806668011356344 -10343.0,0.0806389446204919 -10344.0,0.08061109772498755 -10345.0,0.08058326044579936 -10346.0,0.08055543277960658 -10347.0,0.08052761472308959 -10348.0,0.08049980627292991 -10349.0,0.08047200742581014 -10350.0,0.08044421817841409 -10351.0,0.08041643852742673 -10352.0,0.08038866846953419 -10353.0,0.0803609080014236 -10354.0,0.08033315711978342 -10355.0,0.08030541582130314 -10356.0,0.08027768410267344 -10357.0,0.08024996196058615 -10358.0,0.08022224939173415 -10359.0,0.0801945463928116 -10360.0,0.0801668529605137 -10361.0,0.08013916909153686 -10362.0,0.08011149478257855 -10363.0,0.08008383003033744 -10364.0,0.08005617483151334 -10365.0,0.0800285291828072 -10366.0,0.08000089308092106 -10367.0,0.07997326652255815 -10368.0,0.07994564950442282 -10369.0,0.0799180420232206 -10370.0,0.07989044407565805 -10371.0,0.07986285565844298 -10372.0,0.07983527676828428 -10373.0,0.07980770740189203 -10374.0,0.07978014755597733 -10375.0,0.07975259722725252 -10376.0,0.07972505641243106 -10377.0,0.07969752510822754 -10378.0,0.07967000331135769 -10379.0,0.07964249101853832 -10380.0,0.07961498822648741 -10381.0,0.0795874949319241 -10382.0,0.07956001113156867 -10383.0,0.07953253682214244 -10384.0,0.07950507200036795 -10385.0,0.07947761666296885 -10386.0,0.07945017080666995 -10387.0,0.07942273442819711 -10388.0,0.07939530752427738 -10389.0,0.07936789009163894 -10390.0,0.07934048212701114 -10391.0,0.07931308362712432 -10392.0,0.07928569458871007 -10393.0,0.07925831500850108 -10394.0,0.0792309448832312 -10395.0,0.07920358420963536 -10396.0,0.07917623298444958 -10397.0,0.0791488912044111 -10398.0,0.07912155886625824 -10399.0,0.07909423596673049 -10400.0,0.07906692250256835 -10401.0,0.07903961847051356 -10402.0,0.07901232386730896 -10403.0,0.07898503868969851 -10404.0,0.07895776293442724 -10405.0,0.07893049659824139 -10406.0,0.07890323967788827 -10407.0,0.07887599217011637 -10408.0,0.0788487540716752 -10409.0,0.07882152537931546 -10410.0,0.078794306089789 -10411.0,0.07876709619984877 -10412.0,0.07873989570624876 -10413.0,0.0787127046057442 -10414.0,0.07868552289509137 -10415.0,0.0786583505710477 -10416.0,0.07863118763037177 -10417.0,0.07860403406982316 -10418.0,0.07857688988616268 -10419.0,0.07854975507615225 -10420.0,0.07852262963655489 -10421.0,0.07849551356413469 -10422.0,0.07846840685565691 -10423.0,0.07844130950788793 -10424.0,0.07841422151759526 -10425.0,0.07838714288154745 -10426.0,0.07836007359651424 -10427.0,0.07833301365926645 -10428.0,0.07830596306657608 -10429.0,0.07827892181521612 -10430.0,0.07825188990196077 -10431.0,0.07822486732358533 -10432.0,0.07819785407686619 -10433.0,0.07817085015858091 -10434.0,0.07814385556550807 -10435.0,0.0781168702944274 -10436.0,0.0780898943421198 -10437.0,0.07806292770536724 -10438.0,0.07803597038095274 -10439.0,0.07800902236566051 -10440.0,0.07798208365627587 -10441.0,0.07795515424958525 -10442.0,0.07792823414237611 -10443.0,0.0779013233314371 -10444.0,0.07787442181355794 -10445.0,0.07784752958552954 -10446.0,0.07782064664414379 -10447.0,0.07779377298619375 -10448.0,0.0777669086084736 -10449.0,0.07774005350777867 -10450.0,0.07771320768090527 -10451.0,0.0776863711246509 -10452.0,0.07765954383581417 -10453.0,0.07763272581119478 -10454.0,0.07760591704759356 -10455.0,0.07757911754181238 -10456.0,0.07755232729065425 -10457.0,0.07752554629092331 -10458.0,0.07749877453942482 -10459.0,0.07747201203296503 -10460.0,0.07744525876835139 -10461.0,0.07741851474239245 -10462.0,0.07739177995189786 -10463.0,0.0773650543936783 -10464.0,0.07733833806454564 -10465.0,0.07731163096131281 -10466.0,0.07728493308079389 -10467.0,0.07725824441980393 -10468.0,0.07723156497515922 -10469.0,0.07720489474367709 -10470.0,0.07717823372217597 -10471.0,0.07715158190747544 -10472.0,0.07712493929639606 -10473.0,0.0770983058857596 -10474.0,0.07707168167238888 -10475.0,0.07704506665310787 -10476.0,0.07701846082474151 -10477.0,0.07699186418411595 -10478.0,0.07696527672805842 -10479.0,0.07693869845339726 -10480.0,0.07691212935696182 -10481.0,0.0768855694355826 -10482.0,0.07685901868609123 -10483.0,0.0768324771053204 -10484.0,0.07680594469010386 -10485.0,0.07677942143727651 -10486.0,0.07675290734367429 -10487.0,0.07672640240613435 -10488.0,0.07669990662149472 -10489.0,0.07667341998659472 -10490.0,0.07664694249827467 -10491.0,0.076620474153376 -10492.0,0.07659401494874125 -10493.0,0.07656756488121401 -10494.0,0.07654112394763896 -10495.0,0.07651469214486191 -10496.0,0.07648826946972978 -10497.0,0.07646185591909047 -10498.0,0.07643545148979304 -10499.0,0.07640905617868768 -10500.0,0.07638266998262562 -10501.0,0.07635629289845912 -10502.0,0.07632992492304164 -10503.0,0.07630356605322765 -10504.0,0.07627721628587276 -10505.0,0.07625087561783359 -10506.0,0.0762245440459679 -10507.0,0.07619822156713454 -10508.0,0.07617190817819343 -10509.0,0.0761456038760056 -10510.0,0.07611930865743308 -10511.0,0.07609302251933907 -10512.0,0.07606674545858783 -10513.0,0.07604047747204473 -10514.0,0.07601421855657611 -10515.0,0.07598796870904953 -10516.0,0.07596172792633357 -10517.0,0.07593549620529791 -10518.0,0.07590927354281325 -10519.0,0.07588305993575145 -10520.0,0.0758568553809854 -10521.0,0.07583065987538914 -10522.0,0.07580447341583767 -10523.0,0.07577829599920716 -10524.0,0.07575212762237482 -10525.0,0.07572596828221902 -10526.0,0.07569981797561906 -10527.0,0.07567367669945543 -10528.0,0.07564754445060967 -10529.0,0.0756214212259644 -10530.0,0.07559530702240332 -10531.0,0.07556920183681115 -10532.0,0.07554310566607376 -10533.0,0.07551701850707807 -10534.0,0.0754909403567121 -10535.0,0.07546487121186485 -10536.0,0.07543881106942649 -10537.0,0.07541275992628825 -10538.0,0.07538671777934244 -10539.0,0.07536068462548236 -10540.0,0.07533466046160248 -10541.0,0.0753086452845983 -10542.0,0.07528263909136643 -10543.0,0.07525664187880447 -10544.0,0.07523065364381115 -10545.0,0.07520467438328629 -10546.0,0.07517870409413074 -10547.0,0.07515274277324648 -10548.0,0.07512679041753642 -10549.0,0.0751008470239047 -10550.0,0.07507491258925643 -10551.0,0.07504898711049787 -10552.0,0.07502307058453624 -10553.0,0.0749971630082799 -10554.0,0.07497126437863828 -10555.0,0.07494537469252191 -10556.0,0.07491949394684225 -10557.0,0.07489362213851194 -10558.0,0.0748677592644447 -10559.0,0.07484190532155527 -10560.0,0.07481606030675941 -10561.0,0.07479022421697405 -10562.0,0.07476439704911712 -10563.0,0.07473857880010766 -10564.0,0.07471276946686567 -10565.0,0.07468696904631232 -10566.0,0.07466117753536981 -10567.0,0.0746353949309614 -10568.0,0.07460962123001146 -10569.0,0.07458385642944527 -10570.0,0.07455810052618936 -10571.0,0.0745323535171712 -10572.0,0.07450661539931942 -10573.0,0.07448088616956357 -10574.0,0.07445516582483437 -10575.0,0.0744294543620636 -10576.0,0.07440375177818405 -10577.0,0.07437805807012955 -10578.0,0.07435237323483508 -10579.0,0.0743266972692366 -10580.0,0.07430103017027119 -10581.0,0.0742753719348769 -10582.0,0.07424972255999293 -10583.0,0.07422408204255947 -10584.0,0.0741984503795178 -10585.0,0.0741728275678103 -10586.0,0.07414721360438027 -10587.0,0.07412160848617219 -10588.0,0.07409601221013155 -10589.0,0.07407042477320495 -10590.0,0.07404484617233993 -10591.0,0.07401927640448516 -10592.0,0.07399371546659038 -10593.0,0.07396816335560637 -10594.0,0.07394262006848488 -10595.0,0.07391708560217883 -10596.0,0.07389155995364213 -10597.0,0.07386604311982982 -10598.0,0.07384053509769782 -10599.0,0.07381503588420327 -10600.0,0.07378954547630429 -10601.0,0.07376406387096009 -10602.0,0.07373859106513084 -10603.0,0.07371312705577786 -10604.0,0.07368767183986347 -10605.0,0.07366222541435104 -10606.0,0.07363678777620504 -10607.0,0.07361135892239089 -10608.0,0.07358593884987512 -10609.0,0.07356052755562532 -10610.0,0.07353512503661014 -10611.0,0.07350973128979918 -10612.0,0.07348434631216318 -10613.0,0.07345897010067388 -10614.0,0.07343360265230414 -10615.0,0.07340824396402774 -10616.0,0.0733828940328196 -10617.0,0.07335755285565566 -10618.0,0.07333222042951293 -10619.0,0.07330689675136938 -10620.0,0.07328158181820411 -10621.0,0.07325627562699723 -10622.0,0.07323097817472989 -10623.0,0.07320568945838433 -10624.0,0.07318040947494373 -10625.0,0.07315513822139239 -10626.0,0.07312987569471564 -10627.0,0.07310462189189988 -10628.0,0.07307937680993246 -10629.0,0.07305414044580184 -10630.0,0.07302891279649751 -10631.0,0.07300369385901004 -10632.0,0.07297848363033091 -10633.0,0.07295328210745278 -10634.0,0.07292808928736927 -10635.0,0.07290290516707511 -10636.0,0.07287772974356593 -10637.0,0.07285256301383855 -10638.0,0.07282740497489074 -10639.0,0.07280225562372136 -10640.0,0.07277711495733022 -10641.0,0.07275198297271826 -10642.0,0.0727268596668874 -10643.0,0.07270174503684063 -10644.0,0.07267663907958198 -10645.0,0.07265154179211644 -10646.0,0.0726264531714501 -10647.0,0.07260137321459008 -10648.0,0.07257630191854456 -10649.0,0.07255123928032264 -10650.0,0.07252618529693458 -10651.0,0.07250113996539162 -10652.0,0.07247610328270605 -10653.0,0.07245107524589112 -10654.0,0.07242605585196121 -10655.0,0.07240104509793167 -10656.0,0.07237604298081896 -10657.0,0.07235104949764042 -10658.0,0.07232606464541455 -10659.0,0.07230108842116083 -10660.0,0.0722761208218998 -10661.0,0.07225116184465302 -10662.0,0.07222621148644301 -10663.0,0.0722012697442934 -10664.0,0.07217633661522885 -10665.0,0.07215141209627501 -10666.0,0.07212649618445852 -10667.0,0.07210158887680714 -10668.0,0.07207669017034958 -10669.0,0.07205180006211566 -10670.0,0.0720269185491361 -10671.0,0.07200204562844277 -10672.0,0.07197718129706847 -10673.0,0.07195232555204713 -10674.0,0.07192747839041357 -10675.0,0.07190263980920374 -10676.0,0.07187780980545456 -10677.0,0.07185298837620405 -10678.0,0.0718281755184911 -10679.0,0.07180337122935579 -10680.0,0.0717785755058391 -10681.0,0.07175378834498312 -10682.0,0.07172900974383095 -10683.0,0.0717042396994266 -10684.0,0.07167947820881523 -10685.0,0.07165472526904297 -10686.0,0.07162998087715701 -10687.0,0.07160524503020546 -10688.0,0.07158051772523755 -10689.0,0.07155579895930347 -10690.0,0.07153108872945452 -10691.0,0.07150638703274285 -10692.0,0.07148169386622179 -10693.0,0.0714570092269456 -10694.0,0.07143233311196964 -10695.0,0.07140766551835015 -10696.0,0.07138300644314449 -10697.0,0.07135835588341102 -10698.0,0.07133371383620912 -10699.0,0.07130908029859918 -10700.0,0.07128445526764257 -10701.0,0.0712598387404017 -10702.0,0.07123523071394003 -10703.0,0.071210631185322 -10704.0,0.07118604015161302 -10705.0,0.0711614576098796 -10706.0,0.07113688355718921 -10707.0,0.07111231799061037 -10708.0,0.07108776090721254 -10709.0,0.07106321230406625 -10710.0,0.07103867217824304 -10711.0,0.0710141405268155 -10712.0,0.0709896173468571 -10713.0,0.07096510263544245 -10714.0,0.0709405963896471 -10715.0,0.07091609860654768 -10716.0,0.07089160928322173 -10717.0,0.07086712841674786 -10718.0,0.07084265600420571 -10719.0,0.07081819204267588 -10720.0,0.07079373652924002 -10721.0,0.07076928946098072 -10722.0,0.07074485083498167 -10723.0,0.07072042064832748 -10724.0,0.07069599889810388 -10725.0,0.07067158558139743 -10726.0,0.07064718069529585 -10727.0,0.07062278423688782 -10728.0,0.07059839620326305 -10729.0,0.07057401659151216 -10730.0,0.07054964539872687 -10731.0,0.07052528262199988 -10732.0,0.0705009282584249 -10733.0,0.0704765823050966 -10734.0,0.07045224475911069 -10735.0,0.0704279156175639 -10736.0,0.07040359487755392 -10737.0,0.0703792825361795 -10738.0,0.07035497859054031 -10739.0,0.07033068303773708 -10740.0,0.07030639587487154 -10741.0,0.07028211709904643 -10742.0,0.0702578467073654 -10743.0,0.07023358469693321 -10744.0,0.07020933106485558 -10745.0,0.07018508580823926 -10746.0,0.0701608489241919 -10747.0,0.07013662040982226 -10748.0,0.07011240026224004 -10749.0,0.07008818847855598 -10750.0,0.07006398505588175 -10751.0,0.07003978999133008 -10752.0,0.07001560328201466 -10753.0,0.06999142492505024 -10754.0,0.06996725491755246 -10755.0,0.06994309325663803 -10756.0,0.06991893993942465 -10757.0,0.06989479496303101 -10758.0,0.06987065832457681 -10759.0,0.06984653002118266 -10760.0,0.06982241004997028 -10761.0,0.0697982984080623 -10762.0,0.06977419509258245 -10763.0,0.06975010010065529 -10764.0,0.0697260134294065 -10765.0,0.06970193507596271 -10766.0,0.06967786503745159 -10767.0,0.0696538033110017 -10768.0,0.06962974989374267 -10769.0,0.06960570478280512 -10770.0,0.06958166797532064 -10771.0,0.0695576394684218 -10772.0,0.06953361925924217 -10773.0,0.06950960734491633 -10774.0,0.06948560372257982 -10775.0,0.06946160838936924 -10776.0,0.06943762134242203 -10777.0,0.06941364257887675 -10778.0,0.06938967209587292 -10779.0,0.06936570989055105 -10780.0,0.06934175596005258 -10781.0,0.06931781030152 -10782.0,0.06929387291209677 -10783.0,0.06926994378892735 -10784.0,0.06924602292915714 -10785.0,0.06922211032993257 -10786.0,0.06919820598840104 -10787.0,0.06917430990171097 -10788.0,0.06915042206701166 -10789.0,0.06912654248145352 -10790.0,0.06910267114218785 -10791.0,0.06907880804636704 -10792.0,0.06905495319114432 -10793.0,0.06903110657367402 -10794.0,0.0690072681911114 -10795.0,0.06898343804061273 -10796.0,0.06895961611933527 -10797.0,0.06893580242443716 -10798.0,0.06891199695307765 -10799.0,0.06888819970241691 -10800.0,0.06886441066961616 -10801.0,0.06884062985183745 -10802.0,0.06881685724624392 -10803.0,0.06879309284999972 -10804.0,0.06876933666026992 -10805.0,0.06874558867422055 -10806.0,0.06872184888901865 -10807.0,0.06869811730183224 -10808.0,0.06867439390983036 -10809.0,0.06865067871018293 -10810.0,0.06862697170006091 -10811.0,0.06860327287663623 -10812.0,0.06857958223708178 -10813.0,0.0685558997785715 -10814.0,0.06853222549828017 -10815.0,0.06850855939338364 -10816.0,0.06848490146105875 -10817.0,0.06846125169848326 -10818.0,0.06843761010283592 -10819.0,0.06841397667129645 -10820.0,0.06839035140104556 -10821.0,0.06836673428926499 -10822.0,0.06834312533313729 -10823.0,0.06831952452984612 -10824.0,0.06829593187657611 -10825.0,0.06827234737051281 -10826.0,0.06824877100884275 -10827.0,0.06822520278875342 -10828.0,0.06820164270743335 -10829.0,0.068178090762072 -10830.0,0.06815454694985974 -10831.0,0.068131011267988 -10832.0,0.06810748371364912 -10833.0,0.06808396428403647 -10834.0,0.06806045297634436 -10835.0,0.06803694978776802 -10836.0,0.0680134547155037 -10837.0,0.06798996775674862 -10838.0,0.06796648890870098 -10839.0,0.06794301816855988 -10840.0,0.06791955553352544 -10841.0,0.06789610100079876 -10842.0,0.06787265456758192 -10843.0,0.06784921623107784 -10844.0,0.06782578598849055 -10845.0,0.06780236383702498 -10846.0,0.0677789497738871 -10847.0,0.06775554379628368 -10848.0,0.06773214590142261 -10849.0,0.0677087560865127 -10850.0,0.06768537434876369 -10851.0,0.06766200068538636 -10852.0,0.06763863509359233 -10853.0,0.0676152775705943 -10854.0,0.06759192811360587 -10855.0,0.06756858671984166 -10856.0,0.06754525338651715 -10857.0,0.06752192811084888 -10858.0,0.06749861089005431 -10859.0,0.0674753017213519 -10860.0,0.06745200060196097 -10861.0,0.06742870752910188 -10862.0,0.06740542249999597 -10863.0,0.06738214551186551 -10864.0,0.06735887656193368 -10865.0,0.06733561564742468 -10866.0,0.06731236276556367 -10867.0,0.06728911791357674 -10868.0,0.06726588108869097 -10869.0,0.06724265228813434 -10870.0,0.06721943150913583 -10871.0,0.06719621874892538 -10872.0,0.06717301400473391 -10873.0,0.06714981727379321 -10874.0,0.06712662855333609 -10875.0,0.06710344784059631 -10876.0,0.06708027513280862 -10877.0,0.06705711042720862 -10878.0,0.06703395372103296 -10879.0,0.06701080501151921 -10880.0,0.06698766429590593 -10881.0,0.06696453157143253 -10882.0,0.0669414068353395 -10883.0,0.06691829008486821 -10884.0,0.06689518131726103 -10885.0,0.06687208052976121 -10886.0,0.06684898771961299 -10887.0,0.06682590288406161 -10888.0,0.06680282602035317 -10889.0,0.06677975712573485 -10890.0,0.0667566961974546 -10891.0,0.06673364323276144 -10892.0,0.06671059822890538 -10893.0,0.06668756118313728 -10894.0,0.06666453209270896 -10895.0,0.06664151095487326 -10896.0,0.0666184977668839 -10897.0,0.06659549252599563 -10898.0,0.06657249522946401 -10899.0,0.06654950587454567 -10900.0,0.06652652445849815 -10901.0,0.06650355097857995 -10902.0,0.06648058543205046 -10903.0,0.06645762781617008 -10904.0,0.06643467812820013 -10905.0,0.06641173636540289 -10906.0,0.06638880252504159 -10907.0,0.06636587660438036 -10908.0,0.06634295860068429 -10909.0,0.06632004851121946 -10910.0,0.06629714633325288 -10911.0,0.06627425206405245 -10912.0,0.06625136570088705 -10913.0,0.06622848724102652 -10914.0,0.06620561668174166 -10915.0,0.06618275402030412 -10916.0,0.06615989925398655 -10917.0,0.06613705238006258 -10918.0,0.06611421339580677 -10919.0,0.06609138229849452 -10920.0,0.06606855908540228 -10921.0,0.06604574375380742 -10922.0,0.06602293630098825 -10923.0,0.06600013672422396 -10924.0,0.06597734502079476 -10925.0,0.06595456118798175 -10926.0,0.065931785223067 -10927.0,0.06590901712333352 -10928.0,0.06588625688606518 -10929.0,0.0658635045085469 -10930.0,0.06584075998806449 -10931.0,0.06581802332190469 -10932.0,0.06579529450735515 -10933.0,0.0657725735417045 -10934.0,0.0657498604222423 -10935.0,0.0657271551462591 -10936.0,0.06570445771104622 -10937.0,0.06568176811389607 -10938.0,0.06565908635210196 -10939.0,0.06563641242295813 -10940.0,0.0656137463237597 -10941.0,0.0655910880518028 -10942.0,0.06556843760438445 -10943.0,0.06554579497880264 -10944.0,0.06552316017235627 -10945.0,0.06550053318234514 -10946.0,0.06547791400607002 -10947.0,0.06545530264083263 -10948.0,0.0654326990839356 -10949.0,0.06541010333268248 -10950.0,0.06538751538437773 -10951.0,0.06536493523632682 -10952.0,0.06534236288583611 -10953.0,0.06531979833021284 -10954.0,0.06529724156676524 -10955.0,0.06527469259280246 -10956.0,0.06525215140563459 -10957.0,0.06522961800257257 -10958.0,0.06520709238092838 -10959.0,0.06518457453801485 -10960.0,0.06516206447114582 -10961.0,0.06513956217763593 -10962.0,0.06511706765480087 -10963.0,0.06509458089995718 -10964.0,0.06507210191042236 -10965.0,0.06504963068351487 -10966.0,0.06502716721655398 -10967.0,0.06500471150686002 -10968.0,0.06498226355175417 -10969.0,0.06495982334855858 -10970.0,0.06493739089459624 -10971.0,0.06491496618719117 -10972.0,0.06489254922366823 -10973.0,0.0648701400013533 -10974.0,0.06484773851757306 -10975.0,0.06482534476965518 -10976.0,0.06480295875492828 -10977.0,0.06478058047072188 -10978.0,0.06475820991436637 -10979.0,0.06473584708319313 -10980.0,0.06471349197453444 -10981.0,0.06469114458572349 -10982.0,0.06466880491409444 -10983.0,0.06464647295698227 -10984.0,0.06462414871172295 -10985.0,0.06460183217565338 -10986.0,0.06457952334611139 -10987.0,0.06455722222043563 -10988.0,0.06453492879596578 -10989.0,0.06451264307004238 -10990.0,0.06449036504000695 -10991.0,0.06446809470320182 -10992.0,0.06444583205697034 -10993.0,0.06442357709865672 -10994.0,0.06440132982560613 -10995.0,0.06437909023516461 -10996.0,0.06435685832467913 -10997.0,0.0643346340914976 -10998.0,0.06431241753296887 -10999.0,0.06429020864644261 -11000.0,0.06426800742926947 -11001.0,0.064245813878801 -11002.0,0.06422362799238972 -11003.0,0.064201449767389 -11004.0,0.06417927920115309 -11005.0,0.06415711629103724 -11006.0,0.06413496103439756 -11007.0,0.06411281342859114 -11008.0,0.06409067347097587 -11009.0,0.06406854115891064 -11010.0,0.06404641648975522 -11011.0,0.06402429946087033 -11012.0,0.06400219006961752 -11013.0,0.06398008831335933 -11014.0,0.06395799418945917 -11015.0,0.0639359076952814 -11016.0,0.06391382882819123 -11017.0,0.0638917575855548 -11018.0,0.06386969396473921 -11019.0,0.06384763796311241 -11020.0,0.06382558957804331 -11021.0,0.06380354880690164 -11022.0,0.06378151564705815 -11023.0,0.06375949009588441 -11024.0,0.06373747215075298 -11025.0,0.06371546180903721 -11026.0,0.06369345906811148 -11027.0,0.06367146392535099 -11028.0,0.06364947637813194 -11029.0,0.0636274964238313 -11030.0,0.06360552405982704 -11031.0,0.06358355928349804 -11032.0,0.0635616020922241 -11033.0,0.06353965248338579 -11034.0,0.06351771045436475 -11035.0,0.06349577600254341 -11036.0,0.06347384912530524 -11037.0,0.06345192982003442 -11038.0,0.06343001808411618 -11039.0,0.0634081139149366 -11040.0,0.06338621730988268 -11041.0,0.06336432826634236 -11042.0,0.06334244678170435 -11043.0,0.0633205728533584 -11044.0,0.0632987064786951 -11045.0,0.06327684765510597 -11046.0,0.06325499637998337 -11047.0,0.06323315265072062 -11048.0,0.06321131646471194 -11049.0,0.06318948781935244 -11050.0,0.06316766671203806 -11051.0,0.06314585314016577 -11052.0,0.06312404710113333 -11053.0,0.06310224859233947 -11054.0,0.06308045761118375 -11055.0,0.06305867415506668 -11056.0,0.06303689822138965 -11057.0,0.06301512980755497 -11058.0,0.06299336891096582 -11059.0,0.06297161552902626 -11060.0,0.06294986965914129 -11061.0,0.06292813129871677 -11062.0,0.06290640044515952 -11063.0,0.06288467709587715 -11064.0,0.06286296124827824 -11065.0,0.06284125289977224 -11066.0,0.06281955204776955 -11067.0,0.06279785868968137 -11068.0,0.06277617282291983 -11069.0,0.062754494444898 -11070.0,0.06273282355302981 -11071.0,0.06271116014473005 -11072.0,0.06268950421741444 -11073.0,0.06266785576849959 -11074.0,0.06264621479540303 -11075.0,0.06262458129554309 -11076.0,0.06260295526633909 -11077.0,0.0625813367052112 -11078.0,0.06255972560958047 -11079.0,0.06253812197686888 -11080.0,0.06251652580449923 -11081.0,0.0624949370898953 -11082.0,0.062473355830481685 -11083.0,0.06245178202368393 -11084.0,0.062430215666928385 -11085.0,0.06240865675764237 -11086.0,0.06238710529325407 -11087.0,0.06236556127119257 -11088.0,0.06234402468888777 -11089.0,0.062322495543770555 -11090.0,0.062300973833272634 -11091.0,0.062279459554826666 -11092.0,0.0622579527058661 -11093.0,0.06223645328382534 -11094.0,0.06221496128613968 -11095.0,0.06219347671024526 -11096.0,0.062171999553579174 -11097.0,0.06215052981357929 -11098.0,0.06212906748768445 -11099.0,0.062107612573334366 -11100.0,0.062086165067969636 -11101.0,0.06206472496903168 -11102.0,0.06204329227396288 -11103.0,0.062021866980206466 -11104.0,0.0620004490852066 -11105.0,0.06197903858640821 -11106.0,0.061957635481257205 -11107.0,0.06193623976720037 -11108.0,0.06191485144168536 -11109.0,0.06189347050216067 -11110.0,0.06187209694607572 -11111.0,0.0618507307708808 -11112.0,0.061829371974027124 -11113.0,0.06180802055296668 -11114.0,0.06178667650515242 -11115.0,0.061765339828038154 -11116.0,0.06174401051907859 -11117.0,0.06172268857572931 -11118.0,0.0617013739954467 -11119.0,0.06168006677568813 -11120.0,0.0616587669139118 -11121.0,0.06163747440757681 -11122.0,0.06161618925414307 -11123.0,0.061594911451071446 -11124.0,0.06157364099582365 -11125.0,0.0615523778858623 -11126.0,0.061531122118650805 -11127.0,0.06150987369165353 -11128.0,0.061488632602335704 -11129.0,0.06146739884816344 -11130.0,0.06144617242660365 -11131.0,0.06142495333512421 -11132.0,0.06140374157119383 -11133.0,0.0613825371322821 -11134.0,0.06136134001585953 -11135.0,0.06134015021939738 -11136.0,0.0613189677403679 -11137.0,0.06129779257624418 -11138.0,0.0612766247245002 -11139.0,0.061255464182610735 -11140.0,0.061234310948051505 -11141.0,0.0612131650182991 -11142.0,0.061192026390830975 -11143.0,0.06117089506312541 -11144.0,0.0611497710326616 -11145.0,0.06112865429691962 -11146.0,0.06110754485338041 -11147.0,0.06108644269952572 -11148.0,0.06106534783283824 -11149.0,0.061044260250801514 -11150.0,0.06102317995089997 -11151.0,0.06100210693061882 -11152.0,0.06098104118744424 -11153.0,0.06095998271886325 -11154.0,0.06093893152236371 -11155.0,0.06091788759543441 -11156.0,0.06089685093556489 -11157.0,0.06087582154024568 -11158.0,0.060854799406968106 -11159.0,0.06083378453322442 -11160.0,0.06081277691650764 -11161.0,0.06079177655431174 -11162.0,0.06077078344413153 -11163.0,0.06074979758346272 -11164.0,0.06072881896980178 -11165.0,0.06070784760064615 -11166.0,0.0606868834734941 -11167.0,0.060665926585844784 -11168.0,0.06064497693519815 -11169.0,0.060624034519055084 -11170.0,0.0606030993349173 -11171.0,0.060582171380287396 -11172.0,0.06056125065266884 -11173.0,0.06054033714956589 -11174.0,0.060519430868483735 -11175.0,0.060498531806928414 -11176.0,0.060477639962406855 -11177.0,0.060456755332426754 -11178.0,0.060435877914496755 -11179.0,0.06041500770612633 -11180.0,0.060394144704825854 -11181.0,0.060373288908106455 -11182.0,0.06035244031348022 -11183.0,0.060331598918460065 -11184.0,0.060310764720559795 -11185.0,0.060289937717293976 -11186.0,0.060269117906178137 -11187.0,0.060248305284728625 -11188.0,0.06022749985046267 -11189.0,0.06020670160089828 -11190.0,0.0601859105335544 -11191.0,0.06016512664595081 -11192.0,0.06014434993560815 -11193.0,0.060123580400047935 -11194.0,0.06010281803679245 -11195.0,0.06008206284336493 -11196.0,0.06006131481728943 -11197.0,0.06004057395609089 -11198.0,0.06001984025729501 -11199.0,0.059999113718428455 -11200.0,0.059978394337018695 -11201.0,0.05995768211059408 -11202.0,0.05993697703668374 -11203.0,0.05991627911281775 -11204.0,0.05989558833652698 -11205.0,0.059874904705343214 -11206.0,0.059854228216798984 -11207.0,0.059833558868427755 -11208.0,0.05981289665776384 -11209.0,0.05979224158234238 -11210.0,0.0597715936396994 -11211.0,0.05975095282737171 -11212.0,0.05973031914289702 -11213.0,0.05970969258381389 -11214.0,0.05968907314766175 -11215.0,0.059668460831980796 -11216.0,0.05964785563431216 -11217.0,0.05962725755219779 -11218.0,0.059606666583180506 -11219.0,0.05958608272480391 -11220.0,0.05956550597461252 -11221.0,0.05954493633015168 -11222.0,0.05952437378896761 -11223.0,0.059503818348607296 -11224.0,0.05948327000661865 -11225.0,0.05946272876055041 -11226.0,0.059442194607952165 -11227.0,0.0594216675463743 -11228.0,0.059401147573368104 -11229.0,0.05938063468648571 -11230.0,0.059360128883280065 -11231.0,0.059339630161305015 -11232.0,0.05931913851811515 -11233.0,0.05929865395126599 -11234.0,0.05927817645831388 -11235.0,0.05925770603681604 -11236.0,0.05923724268433043 -11237.0,0.05921678639841595 -11238.0,0.05919633717663232 -11239.0,0.05917589501654013 -11240.0,0.05915545991570071 -11241.0,0.05913503187167634 -11242.0,0.0591146108820301 -11243.0,0.05909419694432594 -11244.0,0.059073790056128575 -11245.0,0.05905339021500363 -11246.0,0.059032997418517565 -11247.0,0.059012611664237664 -11248.0,0.05899223294973208 -11249.0,0.05897186127256973 -11250.0,0.05895149663032045 -11251.0,0.05893113902055487 -11252.0,0.058910788440844526 -11253.0,0.058890444888761675 -11254.0,0.05887010836187952 -11255.0,0.05884977885777204 -11256.0,0.05882945637401411 -11257.0,0.05880914090818136 -11258.0,0.05878883245785032 -11259.0,0.05876853102059834 -11260.0,0.05874823659400365 -11261.0,0.058727949175645194 -11262.0,0.05870766876310287 -11263.0,0.05868739535395738 -11264.0,0.058667128945790264 -11265.0,0.05864686953618385 -11266.0,0.05862661712272136 -11267.0,0.058606371702986826 -11268.0,0.05858613327456511 -11269.0,0.058565901835041956 -11270.0,0.05854567738200384 -11271.0,0.05852545991303816 -11272.0,0.05850524942573312 -11273.0,0.05848504591767778 -11274.0,0.05846484938646196 -11275.0,0.058444659829676386 -11276.0,0.058424477244912586 -11277.0,0.05840430162976296 -11278.0,0.058384132981820644 -11279.0,0.0583639712986797 -11280.0,0.05834381657793498 -11281.0,0.05832366881718219 -11282.0,0.05830352801401782 -11283.0,0.058283394166039226 -11284.0,0.05826326727084459 -11285.0,0.058243147326032925 -11286.0,0.058223034329204094 -11287.0,0.05820292827795871 -11288.0,0.05818282916989829 -11289.0,0.05816273700262516 -11290.0,0.0581426517737425 -11291.0,0.05812257348085423 -11292.0,0.05810250212156519 -11293.0,0.058082437693481 -11294.0,0.05806238019420816 -11295.0,0.0580423296213539 -11296.0,0.05802228597252636 -11297.0,0.058002249245334474 -11298.0,0.05798221943738804 -11299.0,0.057962196546297584 -11300.0,0.05794218056967455 -11301.0,0.057922171505131195 -11302.0,0.05790216935028059 -11303.0,0.057882174102736585 -11304.0,0.05786218576011391 -11305.0,0.0578422043200281 -11306.0,0.057822229780095526 -11307.0,0.05780226213793339 -11308.0,0.057782301391159634 -11309.0,0.057762347537393136 -11310.0,0.057742400574253526 -11311.0,0.05772246049936132 -11312.0,0.057702527310337745 -11313.0,0.057682601004804955 -11314.0,0.05766268158038588 -11315.0,0.057642769034704305 -11316.0,0.05762286336538476 -11317.0,0.057602964570052664 -11318.0,0.05758307264633424 -11319.0,0.05756318759185656 -11320.0,0.057543309404247414 -11321.0,0.05752343808113551 -11322.0,0.05750357362015035 -11323.0,0.05748371601892225 -11324.0,0.057463865275082356 -11325.0,0.05744402138626258 -11326.0,0.05742418435009571 -11327.0,0.05740435416421534 -11328.0,0.057384530826255886 -11329.0,0.05736471433385253 -11330.0,0.057344904684641325 -11331.0,0.05732510187625913 -11332.0,0.05730530590634364 -11333.0,0.05728551677253329 -11334.0,0.0572657344724674 -11335.0,0.05724595900378609 -11336.0,0.05722619036413031 -11337.0,0.05720642855114177 -11338.0,0.057186673562463035 -11339.0,0.05716692539573749 -11340.0,0.057147184048609356 -11341.0,0.05712744951872357 -11342.0,0.057107721803725975 -11343.0,0.0570880009012632 -11344.0,0.05706828680898269 -11345.0,0.05704857952453271 -11346.0,0.05702887904556229 -11347.0,0.05700918536972132 -11348.0,0.05698949849466049 -11349.0,0.05696981841803133 -11350.0,0.05695014513748609 -11351.0,0.056930478650677935 -11352.0,0.056910818955260775 -11353.0,0.056891166048889386 -11354.0,0.05687151992921927 -11355.0,0.05685188059390682 -11356.0,0.05683224804060919 -11357.0,0.0568126222669844 -11358.0,0.05679300327069118 -11359.0,0.05677339104938915 -11360.0,0.056753785600738724 -11361.0,0.056734186922401106 -11362.0,0.05671459501203834 -11363.0,0.05669500986731322 -11364.0,0.05667543148588939 -11365.0,0.0566558598654313 -11366.0,0.05663629500360422 -11367.0,0.05661673689807415 -11368.0,0.056597185546507986 -11369.0,0.05657764094657339 -11370.0,0.05655810309593885 -11371.0,0.056538571992273606 -11372.0,0.05651904763324776 -11373.0,0.0564995300165322 -11374.0,0.05648001913979864 -11375.0,0.05646051500071952 -11376.0,0.056441017596968165 -11377.0,0.05642152692621868 -11378.0,0.056402042986146 -11379.0,0.05638256577442577 -11380.0,0.05636309528873454 -11381.0,0.05634363152674961 -11382.0,0.056324174486149105 -11383.0,0.05630472416461196 -11384.0,0.05628528055981785 -11385.0,0.05626584366944732 -11386.0,0.05624641349118168 -11387.0,0.05622699002270309 -11388.0,0.056207573261694406 -11389.0,0.056188163205839387 -11390.0,0.056168759852822554 -11391.0,0.056149363200329254 -11392.0,0.05612997324604555 -11393.0,0.0561105899876584 -11394.0,0.05609121342285551 -11395.0,0.05607184354932543 -11396.0,0.056052480364757414 -11397.0,0.056033123866841617 -11398.0,0.05601377405326894 -11399.0,0.05599443092173109 -11400.0,0.0559750944699206 -11401.0,0.05595576469553072 -11402.0,0.05593644159625558 -11403.0,0.055917125169790076 -11404.0,0.05589781541382991 -11405.0,0.055878512326071536 -11406.0,0.05585921590421225 -11407.0,0.05583992614595014 -11408.0,0.05582064304898409 -11409.0,0.055801366611013724 -11410.0,0.05578209682973953 -11411.0,0.055762833702862766 -11412.0,0.0557435772280855 -11413.0,0.05572432740311053 -11414.0,0.05570508422564151 -11415.0,0.055685847693382876 -11416.0,0.05566661780403987 -11417.0,0.05564739455531847 -11418.0,0.055628177944925486 -11419.0,0.05560896797056853 -11420.0,0.05558976462995599 -11421.0,0.05557056792079707 -11422.0,0.0555513778408017 -11423.0,0.05553219438768066 -11424.0,0.055513017559145506 -11425.0,0.05549384735290861 -11426.0,0.055474683766683054 -11427.0,0.05545552679818279 -11428.0,0.055436376445122525 -11429.0,0.05541723270521779 -11430.0,0.05539809557618483 -11431.0,0.05537896505574074 -11432.0,0.0553598411416034 -11433.0,0.05534072383149149 -11434.0,0.05532161312312439 -11435.0,0.05530250901422238 -11436.0,0.05528341150250646 -11437.0,0.05526432058569844 -11438.0,0.05524523626152094 -11439.0,0.0552261585276973 -11440.0,0.05520708738195169 -11441.0,0.055188022822009075 -11442.0,0.05516896484559521 -11443.0,0.05514991345043658 -11444.0,0.055130868634260505 -11445.0,0.05511183039479508 -11446.0,0.0550927987297692 -11447.0,0.055073773636912494 -11448.0,0.05505475511395542 -11449.0,0.055035743158629205 -11450.0,0.0550167377686659 -11451.0,0.05499773894179823 -11452.0,0.05497874667575981 -11453.0,0.054959760968285004 -11454.0,0.05494078181710898 -11455.0,0.0549218092199676 -11456.0,0.054902843174597614 -11457.0,0.054883883678736506 -11458.0,0.05486493073012254 -11459.0,0.0548459843264948 -11460.0,0.05482704446559306 -11461.0,0.05480811114515797 -11462.0,0.05478918436293091 -11463.0,0.05477026411665409 -11464.0,0.0547513504040704 -11465.0,0.05473244322292361 -11466.0,0.054713542570958215 -11467.0,0.05469464844591954 -11468.0,0.05467576084555361 -11469.0,0.05465687976760729 -11470.0,0.0546380052098282 -11471.0,0.05461913716996477 -11472.0,0.05460027564576614 -11473.0,0.05458142063498228 -11474.0,0.05456257213536394 -11475.0,0.054543730144662614 -11476.0,0.054524894660630624 -11477.0,0.05450606568102099 -11478.0,0.05448724320358756 -11479.0,0.05446842722608496 -11480.0,0.054449617746268615 -11481.0,0.054430814761894625 -11482.0,0.05441201827071997 -11483.0,0.05439322827050235 -11484.0,0.054374444759000294 -11485.0,0.05435566773397301 -11486.0,0.054336897193180564 -11487.0,0.054318133134383766 -11488.0,0.05429937555534422 -11489.0,0.054280624453824235 -11490.0,0.05426187982758698 -11491.0,0.05424314167439634 -11492.0,0.05422440999201702 -11493.0,0.05420568477821442 -11494.0,0.05418696603075479 -11495.0,0.05416825374740511 -11496.0,0.054149547925933135 -11497.0,0.05413084856410744 -11498.0,0.054112155659697264 -11499.0,0.05409346921047271 -11500.0,0.05407478921420462 -11501.0,0.054056115668664625 -11502.0,0.05403744857162507 -11503.0,0.054018787920859124 -11504.0,0.05400013371414071 -11505.0,0.05398148594924454 -11506.0,0.053962844623946016 -11507.0,0.053944209736021397 -11508.0,0.05392558128324768 -11509.0,0.05390695926340264 -11510.0,0.05388834367426477 -11511.0,0.05386973451361337 -11512.0,0.053851131779228525 -11513.0,0.05383253546889105 -11514.0,0.05381394558038258 -11515.0,0.053795362111485404 -11516.0,0.05377678505998269 -11517.0,0.05375821442365834 -11518.0,0.05373965020029702 -11519.0,0.05372109238768411 -11520.0,0.05370254098360583 -11521.0,0.05368399598584912 -11522.0,0.05366545739220173 -11523.0,0.05364692520045209 -11524.0,0.05362839940838947 -11525.0,0.05360988001380387 -11526.0,0.0535913670144861 -11527.0,0.05357286040822764 -11528.0,0.05355436019282081 -11529.0,0.053535866366058664 -11530.0,0.053517378925735055 -11531.0,0.05349889786964451 -11532.0,0.053480423195582404 -11533.0,0.053461954901344845 -11534.0,0.0534434929847287 -11535.0,0.05342503744353161 -11536.0,0.053406588275551926 -11537.0,0.05338814547858882 -11538.0,0.0533697090504422 -11539.0,0.05335127898891276 -11540.0,0.05333285529180187 -11541.0,0.05331443795691176 -11542.0,0.05329602698204535 -11543.0,0.0532776223650064 -11544.0,0.0532592241035993 -11545.0,0.053240832195629306 -11546.0,0.053222446638902396 -11547.0,0.053204067431225334 -11548.0,0.05318569457040556 -11549.0,0.05316732805425136 -11550.0,0.05314896788057173 -11551.0,0.05313061404717645 -11552.0,0.05311226655187605 -11553.0,0.05309392539248177 -11554.0,0.053075590566805664 -11555.0,0.053057262072660524 -11556.0,0.053038939907859906 -11557.0,0.05302062407021808 -11558.0,0.05300231455755011 -11559.0,0.052984011367671814 -11560.0,0.05296571449839977 -11561.0,0.05294742394755125 -11562.0,0.05292913971294435 -11563.0,0.0529108617923979 -11564.0,0.05289259018373149 -11565.0,0.05287432488476541 -11566.0,0.052856065893320765 -11567.0,0.052837813207219385 -11568.0,0.05281956682428389 -11569.0,0.05280132674233757 -11570.0,0.05278309295920454 -11571.0,0.052764865472709636 -11572.0,0.05274664428067846 -11573.0,0.05272842938093738 -11574.0,0.05271022077131344 -11575.0,0.0526920184496345 -11576.0,0.05267382241372918 -11577.0,0.05265563266142683 -11578.0,0.0526374491905575 -11579.0,0.05261927199895207 -11580.0,0.05260110108444212 -11581.0,0.05258293644486002 -11582.0,0.05256477807803882 -11583.0,0.052546625981812374 -11584.0,0.052528480154015275 -11585.0,0.05251034059248288 -11586.0,0.05249220729505122 -11587.0,0.05247408025955715 -11588.0,0.05245595948383826 -11589.0,0.05243784496573285 -11590.0,0.05241973670308003 -11591.0,0.05240163469371957 -11592.0,0.05238353893549205 -11593.0,0.05236544942623878 -11594.0,0.05234736616380183 -11595.0,0.052329289146023965 -11596.0,0.052311218370748744 -11597.0,0.052293153835820456 -11598.0,0.05227509553908416 -11599.0,0.05225704347838558 -11600.0,0.052238997651571265 -11601.0,0.05222095805648847 -11602.0,0.052202924690985246 -11603.0,0.05218489755291028 -11604.0,0.052166876640113095 -11605.0,0.05214886195044393 -11606.0,0.05213085348175378 -11607.0,0.05211285123189433 -11608.0,0.05209485519871806 -11609.0,0.05207686538007817 -11610.0,0.05205888177382861 -11611.0,0.05204090437782409 -11612.0,0.05202293318992 -11613.0,0.05200496820797251 -11614.0,0.051987009429838554 -11615.0,0.051969056853375786 -11616.0,0.051951110476442554 -11617.0,0.051933170296898014 -11618.0,0.051915236312602024 -11619.0,0.05189730852141522 -11620.0,0.051879386921198895 -11621.0,0.05186147150981516 -11622.0,0.05184356228512684 -11623.0,0.05182565924499752 -11624.0,0.05180776238729144 -11625.0,0.05178987170987367 -11626.0,0.05177198721060998 -11627.0,0.051754108887366874 -11628.0,0.05173623673801162 -11629.0,0.05171837076041216 -11630.0,0.051700510952437245 -11631.0,0.05168265731195632 -11632.0,0.0516648098368396 -11633.0,0.05164696852495796 -11634.0,0.051629133374183095 -11635.0,0.05161130438238739 -11636.0,0.05159348154744401 -11637.0,0.05157566486722677 -11638.0,0.0515578543396103 -11639.0,0.05154004996246992 -11640.0,0.051522251733681725 -11641.0,0.05150445965112248 -11642.0,0.05148667371266973 -11643.0,0.051468893916201755 -11644.0,0.05145112025959757 -11645.0,0.051433352740736855 -11646.0,0.05141559135750011 -11647.0,0.051397836107768526 -11648.0,0.05138008698942403 -11649.0,0.0513623440003493 -11650.0,0.05134460713842769 -11651.0,0.05132687640154335 -11652.0,0.05130915178758111 -11653.0,0.0512914332944266 -11654.0,0.05127372091996607 -11655.0,0.051256014662086596 -11656.0,0.05123831451867594 -11657.0,0.05122062048762264 -11658.0,0.05120293256681587 -11659.0,0.05118525075414563 -11660.0,0.051167575047502585 -11661.0,0.05114990544477819 -11662.0,0.05113224194386454 -11663.0,0.05111458454265453 -11664.0,0.05109693323904177 -11665.0,0.05107928803092057 -11666.0,0.051061648916186024 -11667.0,0.051044015892733864 -11668.0,0.05102638895846062 -11669.0,0.051008768111263536 -11670.0,0.050991153349040585 -11671.0,0.05097354466969041 -11672.0,0.050955942071112446 -11673.0,0.05093834555120684 -11674.0,0.05092075510787447 -11675.0,0.05090317073901689 -11676.0,0.05088559244253642 -11677.0,0.0508680202163361 -11678.0,0.05085045405831973 -11679.0,0.05083289396639173 -11680.0,0.05081533993845735 -11681.0,0.050797791972422505 -11682.0,0.05078025006619388 -11683.0,0.05076271421767881 -11684.0,0.05074518442478543 -11685.0,0.050727660685422546 -11686.0,0.05071014299749971 -11687.0,0.05069263135892721 -11688.0,0.050675125767615986 -11689.0,0.050657626221477785 -11690.0,0.05064013271842503 -11691.0,0.0506226452563709 -11692.0,0.050605163833229216 -11693.0,0.050587688446914594 -11694.0,0.05057021909534236 -11695.0,0.05055275577642856 -11696.0,0.0505352984880899 -11697.0,0.05051784722824389 -11698.0,0.05050040199480871 -11699.0,0.050482962785703286 -11700.0,0.05046552959884722 -11701.0,0.05044810243216087 -11702.0,0.050430681283565315 -11703.0,0.05041326615098232 -11704.0,0.05039585703233443 -11705.0,0.0503784539255448 -11706.0,0.0503610568285374 -11707.0,0.05034366573923688 -11708.0,0.050326280655568635 -11709.0,0.050308901575458705 -11710.0,0.05029152849683391 -11711.0,0.050274161417621775 -11712.0,0.05025680033575056 -11713.0,0.05023944524914915 -11714.0,0.050222096155747256 -11715.0,0.05020475305347525 -11716.0,0.05018741594026424 -11717.0,0.050170084814046 -11718.0,0.05015275967275307 -11719.0,0.05013544051431869 -11720.0,0.05011812733667683 -11721.0,0.05010082013776211 -11722.0,0.05008351891550993 -11723.0,0.05006622366785639 -11724.0,0.050048934392738276 -11725.0,0.05003165108809313 -11726.0,0.05001437375185915 -11727.0,0.049997102381975286 -11728.0,0.049979836976381184 -11729.0,0.04996257753301724 -11730.0,0.049945324049824484 -11731.0,0.049928076524744715 -11732.0,0.049910834955720434 -11733.0,0.049893599340694865 -11734.0,0.04987636967761189 -11735.0,0.04985914596441615 -11736.0,0.04984192819905298 -11737.0,0.04982471637946846 -11738.0,0.04980751050360929 -11739.0,0.049790310569422964 -11740.0,0.049773116574857654 -11741.0,0.04975592851786223 -11742.0,0.04973874639638632 -11743.0,0.04972157020838017 -11744.0,0.049704399951794806 -11745.0,0.049687235624581945 -11746.0,0.049670077224694034 -11747.0,0.049652924750084156 -11748.0,0.04963577819870616 -11749.0,0.04961863756851459 -11750.0,0.04960150285746472 -11751.0,0.04958437406351246 -11752.0,0.04956725118461449 -11753.0,0.04955013421872818 -11754.0,0.049533023163811606 -11755.0,0.04951591801782352 -11756.0,0.04949881877872342 -11757.0,0.04948172544447148 -11758.0,0.049464638013028625 -11759.0,0.049447556482356395 -11760.0,0.04943048085041712 -11761.0,0.04941341111517379 -11762.0,0.04939634727459013 -11763.0,0.04937928932663054 -11764.0,0.04936223726926012 -11765.0,0.04934519110044468 -11766.0,0.04932815081815075 -11767.0,0.04931111642034556 -11768.0,0.049294087904997 -11769.0,0.04927706527007371 -11770.0,0.049260048513545006 -11771.0,0.04924303763338094 -11772.0,0.0492260326275522 -11773.0,0.049209033494030226 -11774.0,0.049192040230787146 -11775.0,0.04917505283579582 -11776.0,0.04915807130702972 -11777.0,0.04914109564246309 -11778.0,0.04912412584007088 -11779.0,0.0491071618978287 -11780.0,0.049090203813712895 -11781.0,0.04907325158570045 -11782.0,0.04905630521176911 -11783.0,0.0490393646898973 -11784.0,0.04902243001806415 -11785.0,0.04900550119424945 -11786.0,0.04898857821643372 -11787.0,0.04897166108259819 -11788.0,0.048954749790724776 -11789.0,0.04893784433879604 -11790.0,0.048920944724795315 -11791.0,0.04890405094670659 -11792.0,0.0488871630025146 -11793.0,0.048870280890204676 -11794.0,0.04885340460776293 -11795.0,0.04883653415317616 -11796.0,0.04881966952443184 -11797.0,0.04880281071951812 -11798.0,0.04878595773642388 -11799.0,0.04876911057313868 -11800.0,0.048752269227652786 -11801.0,0.04873543369795716 -11802.0,0.048718603982043404 -11803.0,0.048701780077903885 -11804.0,0.04868496198353162 -11805.0,0.04866814969692037 -11806.0,0.048651343216064506 -11807.0,0.048634542538959144 -11808.0,0.0486177476636001 -11809.0,0.04860095858798389 -11810.0,0.048584175310107655 -11811.0,0.04856739782796928 -11812.0,0.04855062613956736 -11813.0,0.04853386024290115 -11814.0,0.04851710013597057 -11815.0,0.048500345816776286 -11816.0,0.04848359728331962 -11817.0,0.04846685453360261 -11818.0,0.04845011756562797 -11819.0,0.04843338637739907 -11820.0,0.04841666096692003 -11821.0,0.04839994133219561 -11822.0,0.04838322747123132 -11823.0,0.04836651938203326 -11824.0,0.04834981706260832 -11825.0,0.04833312051096401 -11826.0,0.048316429725108585 -11827.0,0.04829974470305092 -11828.0,0.04828306544280063 -11829.0,0.048266391942367995 -11830.0,0.04824972419976401 -11831.0,0.048233062213000305 -11832.0,0.048216405980089236 -11833.0,0.04819975549904383 -11834.0,0.04818311076787785 -11835.0,0.04816647178460564 -11836.0,0.048149838547242314 -11837.0,0.04813321105380365 -11838.0,0.04811658930230611 -11839.0,0.048099973290766866 -11840.0,0.048083363017203694 -11841.0,0.048066758479635145 -11842.0,0.04805015967608041 -11843.0,0.048033566604559395 -11844.0,0.048016979263092625 -11845.0,0.04800039764970137 -11846.0,0.04798382176240758 -11847.0,0.047967251599233866 -11848.0,0.04795068715820351 -11849.0,0.04793412843734051 -11850.0,0.047917575434669527 -11851.0,0.04790102814821593 -11852.0,0.04788448657600571 -11853.0,0.047867950716065595 -11854.0,0.047851420566422984 -11855.0,0.04783489612510594 -11856.0,0.047818377390143246 -11857.0,0.047801864359564294 -11858.0,0.047785357031399224 -11859.0,0.047768855403678825 -11860.0,0.047752359474434604 -11861.0,0.04773586924169867 -11862.0,0.04771938470350387 -11863.0,0.04770290585788373 -11864.0,0.04768643270287247 -11865.0,0.04766996523650491 -11866.0,0.04765350345681662 -11867.0,0.04763704736184384 -11868.0,0.04762059694962349 -11869.0,0.04760415221819312 -11870.0,0.04758771316559101 -11871.0,0.047571279789856105 -11872.0,0.047554852089028044 -11873.0,0.04753843006114707 -11874.0,0.0475220137042542 -11875.0,0.047505603016391056 -11876.0,0.04748919799559997 -11877.0,0.04747279863992397 -11878.0,0.04745640494740669 -11879.0,0.047440016916092495 -11880.0,0.04742363454402642 -11881.0,0.04740725782925418 -11882.0,0.04739088676982212 -11883.0,0.04737452136377732 -11884.0,0.04735816160916748 -11885.0,0.047341807504041045 -11886.0,0.047325459046447034 -11887.0,0.047309116234435226 -11888.0,0.047292779066056036 -11889.0,0.04727644753936059 -11890.0,0.0472601216524006 -11891.0,0.04724380140322853 -11892.0,0.0472274867898975 -11893.0,0.0472111778104613 -11894.0,0.04719487446297439 -11895.0,0.04717857674549188 -11896.0,0.04716228465606958 -11897.0,0.04714599819276396 -11898.0,0.04712971735363219 -11899.0,0.047113442136732034 -11900.0,0.047097172540122016 -11901.0,0.04708090856186128 -11902.0,0.04706465020000966 -11903.0,0.047048397452627636 -11904.0,0.04703215031777638 -11905.0,0.04701590879351773 -11906.0,0.04699967287791422 -11907.0,0.04698344256902896 -11908.0,0.04696721786492584 -11909.0,0.04695099876366935 -11910.0,0.046934785263324674 -11911.0,0.04691857736195769 -11912.0,0.046902375057634865 -11913.0,0.0468861783484234 -11914.0,0.04686998723239116 -11915.0,0.04685380170760666 -11916.0,0.046837621772139064 -11917.0,0.04682144742405823 -11918.0,0.04680527866143469 -11919.0,0.04678911548233964 -11920.0,0.04677295788484489 -11921.0,0.04675680586702298 -11922.0,0.04674065942694709 -11923.0,0.046724518562691095 -11924.0,0.04670838327232945 -11925.0,0.04669225355393737 -11926.0,0.04667612940559069 -11927.0,0.04666001082536594 -11928.0,0.04664389781134024 -11929.0,0.046627790361591454 -11930.0,0.04661168847419808 -11931.0,0.04659559214723929 -11932.0,0.04657950137879491 -11933.0,0.0465634161669454 -11934.0,0.04654733650977193 -11935.0,0.04653126240535631 -11936.0,0.046515193851781045 -11937.0,0.04649913084712923 -11938.0,0.04648307338948467 -11939.0,0.04646702147693186 -11940.0,0.04645097510755592 -11941.0,0.0464349342794426 -11942.0,0.046418898990678366 -11943.0,0.04640286923935033 -11944.0,0.04638684502354627 -11945.0,0.04637082634135459 -11946.0,0.04635481319086438 -11947.0,0.0463388055701654 -11948.0,0.046322803477348046 -11949.0,0.046306806910503415 -11950.0,0.04629081586772319 -11951.0,0.046274830347099775 -11952.0,0.04625885034672622 -11953.0,0.04624287586469624 -11954.0,0.04622690689910416 -11955.0,0.046210943448045015 -11956.0,0.04619498550961449 -11957.0,0.046179033081908925 -11958.0,0.04616308616302529 -11959.0,0.046147144751061235 -11960.0,0.04613120884411508 -11961.0,0.046115278440285803 -11962.0,0.04609935353767298 -11963.0,0.04608343413437691 -11964.0,0.04606752022849852 -11965.0,0.046051611818139424 -11966.0,0.046035708901401816 -11967.0,0.046019811476388624 -11968.0,0.04600391954120339 -11969.0,0.04598803309395033 -11970.0,0.04597215213273432 -11971.0,0.04595627665566085 -11972.0,0.0459404066608361 -11973.0,0.04592454214636689 -11974.0,0.04590868311036073 -11975.0,0.04589282955092572 -11976.0,0.04587698146617064 -11977.0,0.04586113885420496 -11978.0,0.04584530171313877 -11979.0,0.04582947004108278 -11980.0,0.04581364383614841 -11981.0,0.045797823096447705 -11982.0,0.04578200782009339 -11983.0,0.04576619800519877 -11984.0,0.04575039364987789 -11985.0,0.04573459475224538 -11986.0,0.045718801310416564 -11987.0,0.04570301332250741 -11988.0,0.04568723078663449 -11989.0,0.045671453700915084 -11990.0,0.045655682063467096 -11991.0,0.045639915872409106 -11992.0,0.045624155125860294 -11993.0,0.045608399821940517 -11994.0,0.0455926499587703 -11995.0,0.04557690553447081 -11996.0,0.04556116654716381 -11997.0,0.04554543299497178 -11998.0,0.045529704876017825 -11999.0,0.0455139821884257 -12000.0,0.04549826493031978 -12001.0,0.04548255309982512 -12002.0,0.04546684669506742 -12003.0,0.04545114571417304 -12004.0,0.04543545015526891 -12005.0,0.045419760016482714 -12006.0,0.04540407529594271 -12007.0,0.04538839599177784 -12008.0,0.04537272210211768 -12009.0,0.045357053625092424 -12010.0,0.045341390558832954 -12011.0,0.045325732901470774 -12012.0,0.04531008065113807 -12013.0,0.04529443380596759 -12014.0,0.04527879236409282 -12015.0,0.04526315632364782 -12016.0,0.04524752568276737 -12017.0,0.045231900439586796 -12018.0,0.04521628059224215 -12019.0,0.04520066613887008 -12020.0,0.04518505707760794 -12021.0,0.045169453406593625 -12022.0,0.045153855123965754 -12023.0,0.04513826222786357 -12024.0,0.045122674716426954 -12025.0,0.045107092587796445 -12026.0,0.04509151584011317 -12027.0,0.045075944471518956 -12028.0,0.04506037848015626 -12029.0,0.04504481786416818 -12030.0,0.04502926262169842 -12031.0,0.04501371275089137 -12032.0,0.044998168249892036 -12033.0,0.0449826291168461 -12034.0,0.04496709534989981 -12035.0,0.04495156694720013 -12036.0,0.04493604390689463 -12037.0,0.04492052622713154 -12038.0,0.044905013906059686 -12039.0,0.04488950694182857 -12040.0,0.044874005332588326 -12041.0,0.04485850907648975 -12042.0,0.04484301817168421 -12043.0,0.044827532616323766 -12044.0,0.04481205240856112 -12045.0,0.04479657754654958 -12046.0,0.04478110802844314 -12047.0,0.04476564385239635 -12048.0,0.04475018501656447 -12049.0,0.04473473151910338 -12050.0,0.0447192833581696 -12051.0,0.04470384053192024 -12052.0,0.044688403038513104 -12053.0,0.04467297087610662 -12054.0,0.04465754404285985 -12055.0,0.044642122536932456 -12056.0,0.044626706356484774 -12057.0,0.04461129549967778 -12058.0,0.04459588996467308 -12059.0,0.04458048974963287 -12060.0,0.04456509485272003 -12061.0,0.044549705272098075 -12062.0,0.04453432100593113 -12063.0,0.044518942052383985 -12064.0,0.04450356840962201 -12065.0,0.04448820007581125 -12066.0,0.044472837049118384 -12067.0,0.044457479327710735 -12068.0,0.04444212690975619 -12069.0,0.04442677979342335 -12070.0,0.0444114379768814 -12071.0,0.044396101458300204 -12072.0,0.044380770235850193 -12073.0,0.04436544430770247 -12074.0,0.04435012367202877 -12075.0,0.04433480832700148 -12076.0,0.04431949827079353 -12077.0,0.04430419350157859 -12078.0,0.04428889401753089 -12079.0,0.04427359981682534 -12080.0,0.04425831089763742 -12081.0,0.04424302725814329 -12082.0,0.04422774889651972 -12083.0,0.044212475810944105 -12084.0,0.044197207999594514 -12085.0,0.044181945460649553 -12086.0,0.044166688192288556 -12087.0,0.044151436192691414 -12088.0,0.044136189460038715 -12089.0,0.04412094799251158 -12090.0,0.04410571178829185 -12091.0,0.04409048084556194 -12092.0,0.044075255162504934 -12093.0,0.044060034737304486 -12094.0,0.044044819568144926 -12095.0,0.0440296096532112 -12096.0,0.044014404990688885 -12097.0,0.04399920557876414 -12098.0,0.04398401141562381 -12099.0,0.04396882249945534 -12100.0,0.04395363882844681 -12101.0,0.04393846040078692 -12102.0,0.04392328721466497 -12103.0,0.04390811926827093 -12104.0,0.04389295655979537 -12105.0,0.0438777990874295 -12106.0,0.043862646849365125 -12107.0,0.0438474998437947 -12108.0,0.043832358068911295 -12109.0,0.043817221522908636 -12110.0,0.043802090203981 -12111.0,0.043786964110323345 -12112.0,0.043771843240131246 -12113.0,0.04375672759160091 -12114.0,0.04374161716292911 -12115.0,0.04372651195231331 -12116.0,0.04371141195795155 -12117.0,0.04369631717804255 -12118.0,0.043681227610785564 -12119.0,0.043666143254380535 -12120.0,0.043651064107028015 -12121.0,0.04363599016692917 -12122.0,0.043620921432285804 -12123.0,0.043605857901300296 -12124.0,0.04359079957217568 -12125.0,0.04357574644311563 -12126.0,0.04356069851232442 -12127.0,0.04354565577800691 -12128.0,0.043530618238368624 -12129.0,0.0435155858916157 -12130.0,0.04350055873595491 -12131.0,0.043485536769593575 -12132.0,0.04347051999073971 -12133.0,0.04345550839760193 -12134.0,0.04344050198838946 -12135.0,0.04342550076131213 -12136.0,0.043410504714580404 -12137.0,0.04339551384640537 -12138.0,0.04338052815499873 -12139.0,0.04336554763857282 -12140.0,0.04335057229534053 -12141.0,0.04333560212351543 -12142.0,0.043320637121311685 -12143.0,0.04330567728694411 -12144.0,0.043290722618628055 -12145.0,0.04327577311457956 -12146.0,0.043260828773015264 -12147.0,0.04324588959215243 -12148.0,0.04323095557020888 -12149.0,0.04321602670540313 -12150.0,0.043201102995954255 -12151.0,0.043186184440081994 -12152.0,0.04317127103600663 -12153.0,0.043156362781949134 -12154.0,0.04314145967613105 -12155.0,0.04312656171677456 -12156.0,0.04311166890210241 -12157.0,0.04309678123033803 -12158.0,0.043081898699705405 -12159.0,0.04306702130842918 -12160.0,0.0430521490547346 -12161.0,0.04303728193684747 -12162.0,0.04302241995299428 -12163.0,0.0430075631014021 -12164.0,0.042992711380298636 -12165.0,0.04297786478791214 -12166.0,0.04296302332247155 -12167.0,0.04294818698220639 -12168.0,0.042933355765346806 -12169.0,0.0429185296701235 -12170.0,0.04290370869476785 -12171.0,0.04288889283751183 -12172.0,0.04287408209658802 -12173.0,0.042859276470229586 -12174.0,0.042844475956670326 -12175.0,0.042829680554144656 -12176.0,0.04281489026088759 -12177.0,0.04280010507513477 -12178.0,0.0427853249951224 -12179.0,0.04277055001908734 -12180.0,0.04275578014526705 -12181.0,0.042741015371899595 -12182.0,0.04272625569722362 -12183.0,0.04271150111947842 -12184.0,0.042696751636903875 -12185.0,0.0426820072477405 -12186.0,0.042667267950229376 -12187.0,0.04265253374261221 -12188.0,0.04263780462313132 -12189.0,0.04262308059002966 -12190.0,0.04260836164155072 -12191.0,0.042593647775938645 -12192.0,0.042578938991438185 -12193.0,0.042564235286294716 -12194.0,0.04254953665875415 -12195.0,0.042534843107063056 -12196.0,0.04252015462946861 -12197.0,0.042505471224218584 -12198.0,0.042490792889561375 -12199.0,0.04247611962374592 -12200.0,0.042461451425021834 -12201.0,0.0424467882916393 -12202.0,0.042432130221849135 -12203.0,0.042417477213902696 -12204.0,0.04240282926605202 -12205.0,0.04238818637654969 -12206.0,0.042373548543648956 -12207.0,0.04235891576560358 -12208.0,0.042344288040668004 -12209.0,0.042329665367097244 -12210.0,0.04231504774314695 -12211.0,0.04230043516707329 -12212.0,0.04228582763713312 -12213.0,0.04227122515158387 -12214.0,0.04225662770868357 -12215.0,0.04224203530669086 -12216.0,0.042227447943864946 -12217.0,0.04221286561846568 -12218.0,0.04219828832875349 -12219.0,0.04218371607298944 -12220.0,0.042169148849435116 -12221.0,0.042154586656352785 -12222.0,0.04214002949200528 -12223.0,0.042125477354656056 -12224.0,0.04211093024256911 -12225.0,0.042096388154009096 -12226.0,0.04208185108724125 -12227.0,0.042067319040531424 -12228.0,0.04205279201214602 -12229.0,0.042038270000352075 -12230.0,0.042023753003417236 -12231.0,0.04200924101960973 -12232.0,0.04199473404719836 -12233.0,0.04198023208445256 -12234.0,0.04196573512964236 -12235.0,0.04195124318103838 -12236.0,0.04193675623691184 -12237.0,0.04192227429553454 -12238.0,0.041907797355178876 -12239.0,0.04189332541411789 -12240.0,0.041878858470625176 -12241.0,0.041864396522974905 -12242.0,0.0418499395694419 -12243.0,0.04183548760830154 -12244.0,0.041821040637829834 -12245.0,0.041806598656303325 -12246.0,0.041792161661999214 -12247.0,0.04177772965319526 -12248.0,0.041763302628169865 -12249.0,0.041748880585201945 -12250.0,0.041734463522571076 -12251.0,0.0417200514385574 -12252.0,0.041705644331441666 -12253.0,0.041691242199505235 -12254.0,0.04167684504102999 -12255.0,0.04166245285429848 -12256.0,0.04164806563759382 -12257.0,0.04163368338919975 -12258.0,0.041619306107400514 -12259.0,0.04160493379048104 -12260.0,0.04159056643672681 -12261.0,0.04157620404442392 -12262.0,0.041561846611859014 -12263.0,0.04154749413731937 -12264.0,0.04153314661909284 -12265.0,0.04151880405546788 -12266.0,0.041504466444733504 -12267.0,0.04149013378517936 -12268.0,0.04147580607509564 -12269.0,0.041461483312773204 -12270.0,0.041447165496503395 -12271.0,0.04143285262457822 -12272.0,0.04141854469529027 -12273.0,0.04140424170693271 -12274.0,0.0413899436577993 -12275.0,0.04137565054618437 -12276.0,0.04136136237038286 -12277.0,0.04134707912869031 -12278.0,0.04133280081940284 -12279.0,0.04131852744081711 -12280.0,0.04130425899123045 -12281.0,0.04128999546894072 -12282.0,0.04127573687224641 -12283.0,0.04126148319944653 -12284.0,0.04124723444884075 -12285.0,0.04123299061872929 -12286.0,0.04121875170741299 -12287.0,0.0412045177131932 -12288.0,0.04119028863437195 -12289.0,0.041176064469251795 -12290.0,0.04116184521613591 -12291.0,0.041147630873328046 -12292.0,0.041133421439132505 -12293.0,0.04111921691185423 -12294.0,0.04110501728979871 -12295.0,0.04109082257127208 -12296.0,0.04107663275458094 -12297.0,0.04106244783803259 -12298.0,0.04104826781993486 -12299.0,0.04103409269859622 -12300.0,0.04101992247232561 -12301.0,0.04100575713943267 -12302.0,0.04099159669822757 -12303.0,0.04097744114702109 -12304.0,0.04096329048412454 -12305.0,0.04094914470784987 -12306.0,0.04093500381650959 -12307.0,0.04092086780841681 -12308.0,0.04090673668188517 -12309.0,0.04089261043522896 -12310.0,0.040878489066763016 -12311.0,0.04086437257480275 -12312.0,0.0408502609576642 -12313.0,0.04083615421366391 -12314.0,0.04082205234111907 -12315.0,0.04080795533834742 -12316.0,0.040793863203667326 -12317.0,0.040779775935397646 -12318.0,0.0407656935318579 -12319.0,0.04075161599136815 -12320.0,0.040737543312249075 -12321.0,0.040723475492821876 -12322.0,0.04070941253140836 -12323.0,0.040695354426330946 -12324.0,0.04068130117591261 -12325.0,0.04066725277847686 -12326.0,0.04065320923234785 -12327.0,0.04063917053585028 -12328.0,0.04062513668730945 -12329.0,0.04061110768505123 -12330.0,0.04059708352740203 -12331.0,0.04058306421268889 -12332.0,0.04056904973923941 -12333.0,0.04055504010538177 -12334.0,0.0405410353094447 -12335.0,0.040527035349757545 -12336.0,0.040513040224650215 -12337.0,0.0404990499324532 -12338.0,0.04048506447149754 -12339.0,0.04047108384011488 -12340.0,0.04045710803663743 -12341.0,0.040443137059398004 -12342.0,0.04042917090672993 -12343.0,0.040415209576967155 -12344.0,0.04040125306844421 -12345.0,0.040387301379496185 -12346.0,0.04037335450845873 -12347.0,0.04035941245366808 -12348.0,0.040345475213461074 -12349.0,0.04033154278617508 -12350.0,0.0403176151701481 -12351.0,0.04030369236371861 -12352.0,0.04028977436522576 -12353.0,0.04027586117300922 -12354.0,0.040261952785409276 -12355.0,0.04024804920076672 -12356.0,0.04023415041742296 -12357.0,0.04022025643371999 -12358.0,0.04020636724800038 -12359.0,0.0401924828586072 -12360.0,0.04017860326388417 -12361.0,0.04016472846217555 -12362.0,0.040150858451826206 -12363.0,0.0401369932311815 -12364.0,0.04012313279858744 -12365.0,0.040109277152390564 -12366.0,0.040095426290938006 -12367.0,0.040081580212577475 -12368.0,0.040067738915657194 -12369.0,0.04005390239852602 -12370.0,0.040040070659533356 -12371.0,0.040026243697029194 -12372.0,0.04001242150936404 -12373.0,0.039998604094889034 -12374.0,0.03998479145195585 -12375.0,0.03997098357891676 -12376.0,0.03995718047412456 -12377.0,0.03994338213593265 -12378.0,0.039929588562694976 -12379.0,0.0399157997527661 -12380.0,0.03990201570450108 -12381.0,0.0398882364162556 -12382.0,0.03987446188638588 -12383.0,0.03986069211324874 -12384.0,0.039846927095201524 -12385.0,0.03983316683060217 -12386.0,0.039819411317809174 -12387.0,0.039805660555181616 -12388.0,0.039791914541079144 -12389.0,0.039778173273861926 -12390.0,0.039764436751890744 -12391.0,0.03975070497352693 -12392.0,0.0397369779371324 -12393.0,0.039723255641069585 -12394.0,0.039709538083701534 -12395.0,0.03969582526339184 -12396.0,0.03968211717850468 -12397.0,0.03966841382740475 -12398.0,0.039654715208457356 -12399.0,0.03964102132002834 -12400.0,0.03962733216048416 -12401.0,0.03961364772819175 -12402.0,0.03959996802151868 -12403.0,0.039586293038833056 -12404.0,0.03957262277850356 -12405.0,0.039558957238899434 -12406.0,0.03954529641839046 -12407.0,0.039531640315347005 -12408.0,0.039517988928140006 -12409.0,0.03950434225514096 -12410.0,0.03949070029472189 -12411.0,0.039477063045255424 -12412.0,0.03946343050511474 -12413.0,0.039449802672673596 -12414.0,0.03943617954630625 -12415.0,0.03942256112438758 -12416.0,0.03940894740529301 -12417.0,0.03939533838739854 -12418.0,0.03938173406908067 -12419.0,0.03936813444871654 -12420.0,0.039354539524683804 -12421.0,0.0393409492953607 -12422.0,0.03932736375912598 -12423.0,0.03931378291435901 -12424.0,0.03930020675943969 -12425.0,0.039286635292748485 -12426.0,0.03927306851266644 -12427.0,0.0392595064175751 -12428.0,0.039245949005856616 -12429.0,0.03923239627589369 -12430.0,0.039218848226069615 -12431.0,0.03920530485476815 -12432.0,0.03919176616037369 -12433.0,0.03917823214127118 -12434.0,0.03916470279584612 -12435.0,0.039151178122484524 -12436.0,0.03913765811957301 -12437.0,0.03912414278549874 -12438.0,0.039110632118649465 -12439.0,0.039097126117413415 -12440.0,0.03908362478017943 -12441.0,0.03907012810533692 -12442.0,0.03905663609127582 -12443.0,0.039043148736386646 -12444.0,0.03902966603906042 -12445.0,0.03901618799768878 -12446.0,0.03900271461066388 -12447.0,0.038989245876378475 -12448.0,0.0389757817932258 -12449.0,0.03896232235959971 -12450.0,0.03894886757389459 -12451.0,0.0389354174345054 -12452.0,0.0389219719398276 -12453.0,0.03890853108825726 -12454.0,0.03889509487819098 -12455.0,0.03888166330802594 -12456.0,0.038868236376159826 -12457.0,0.0388548140809909 -12458.0,0.038841396420917995 -12459.0,0.0388279833943405 -12460.0,0.03881457499965829 -12461.0,0.038801171235271874 -12462.0,0.03878777209958227 -12463.0,0.03877437759099107 -12464.0,0.03876098770790041 -12465.0,0.03874760244871295 -12466.0,0.03873422181183194 -12467.0,0.038720845795661166 -12468.0,0.03870747439860499 -12469.0,0.03869410761906826 -12470.0,0.03868074545545644 -12471.0,0.03866738790617552 -12472.0,0.03865403496963206 -12473.0,0.038640686644233105 -12474.0,0.038627342928386335 -12475.0,0.038614003820499926 -12476.0,0.03860066931898264 -12477.0,0.038587339422243745 -12478.0,0.03857401412869309 -12479.0,0.03856069343674106 -12480.0,0.0385473773447986 -12481.0,0.03853406585127721 -12482.0,0.038520758954588896 -12483.0,0.038507456653146255 -12484.0,0.03849415894536243 -12485.0,0.03848086582965111 -12486.0,0.03846757730442648 -12487.0,0.03845429336810335 -12488.0,0.03844101401909703 -12489.0,0.03842773925582342 -12490.0,0.0384144690766989 -12491.0,0.03840120348014044 -12492.0,0.03838794246456556 -12493.0,0.03837468602839234 -12494.0,0.03836143417003934 -12495.0,0.03834818688792573 -12496.0,0.03833494418047121 -12497.0,0.038321706046096034 -12498.0,0.03830847248322095 -12499.0,0.03829524349026732 -12500.0,0.038282019065657015 -12501.0,0.038268799207812454 -12502.0,0.03825558391515663 -12503.0,0.03824237318611301 -12504.0,0.03822916701910568 -12505.0,0.03821596541255923 -12506.0,0.038202768364898824 -12507.0,0.03818957587455012 -12508.0,0.03817638793993937 -12509.0,0.03816320455949334 -12510.0,0.03815002573163937 -12511.0,0.03813685145480529 -12512.0,0.03812368172741952 -12513.0,0.038110516547911005 -12514.0,0.03809735591470926 -12515.0,0.038084199826244274 -12516.0,0.038071048280946644 -12517.0,0.03805790127724749 -12518.0,0.03804475881357846 -12519.0,0.038031620888371774 -12520.0,0.03801848750006014 -12521.0,0.038005358647076874 -12522.0,0.03799223432785578 -12523.0,0.037979114540831235 -12524.0,0.037965999284438126 -12525.0,0.03795288855711191 -12526.0,0.037939782357288565 -12527.0,0.03792668068340465 -12528.0,0.037913583533897184 -12529.0,0.03790049090720379 -12530.0,0.03788740280176262 -12531.0,0.03787431921601237 -12532.0,0.03786124014839223 -12533.0,0.03784816559734199 -12534.0,0.037835095561301935 -12535.0,0.03782203003871293 -12536.0,0.037808969028016316 -12537.0,0.03779591252765403 -12538.0,0.03778286053606853 -12539.0,0.03776981305170281 -12540.0,0.0377567700730004 -12541.0,0.03774373159840535 -12542.0,0.03773069762636228 -12543.0,0.03771766815531633 -12544.0,0.03770464318371319 -12545.0,0.037691622709999054 -12546.0,0.03767860673262068 -12547.0,0.03766559525002537 -12548.0,0.03765258826066096 -12549.0,0.03763958576297576 -12550.0,0.03762658775541871 -12551.0,0.03761359423643923 -12552.0,0.037600605204487304 -12553.0,0.03758762065801341 -12554.0,0.03757464059546859 -12555.0,0.037561665015304425 -12556.0,0.03754869391597303 -12557.0,0.037535727295927045 -12558.0,0.03752276515361963 -12559.0,0.0375098074875045 -12560.0,0.037496854296035914 -12561.0,0.03748390557766866 -12562.0,0.03747096133085802 -12563.0,0.03745802155405985 -12564.0,0.03744508624573053 -12565.0,0.037432155404327 -12566.0,0.037419229028306654 -12567.0,0.037406307116127496 -12568.0,0.037393389666248035 -12569.0,0.037380476677127336 -12570.0,0.03736756814722493 -12571.0,0.037354664075000946 -12572.0,0.03734176445891602 -12573.0,0.03732886929743134 -12574.0,0.03731597858900857 -12575.0,0.03730309233210997 -12576.0,0.03729021052519829 -12577.0,0.037277333166736835 -12578.0,0.037264460255189445 -12579.0,0.03725159178902043 -12580.0,0.03723872776669471 -12581.0,0.03722586818667769 -12582.0,0.03721301304743533 -12583.0,0.03720016234743408 -12584.0,0.03718731608514097 -12585.0,0.03717447425902351 -12586.0,0.0371616368675498 -12587.0,0.03714880390918839 -12588.0,0.03713597538240843 -12589.0,0.03712315128567956 -12590.0,0.03711033161747198 -12591.0,0.037097516376256356 -12592.0,0.03708470556050395 -12593.0,0.03707189916868652 -12594.0,0.03705909719927635 -12595.0,0.037046299650746295 -12596.0,0.03703350652156965 -12597.0,0.0370207178102203 -12598.0,0.03700793351517267 -12599.0,0.036995153634901676 -12600.0,0.03698237816788276 -12601.0,0.0369696071125919 -12602.0,0.036956840467505615 -12603.0,0.03694407823110095 -12604.0,0.03693132040185543 -12605.0,0.03691856697824716 -12606.0,0.036905817958754736 -12607.0,0.03689307334185732 -12608.0,0.03688033312603454 -12609.0,0.036867597309766596 -12610.0,0.0368548658915342 -12611.0,0.036842138869818596 -12612.0,0.036829416243101515 -12613.0,0.036816698009865256 -12614.0,0.03680398416859263 -12615.0,0.03679127471776696 -12616.0,0.03677856965587213 -12617.0,0.036765868981392474 -12618.0,0.03675317269281292 -12619.0,0.036740480788618884 -12620.0,0.03672779326729634 -12621.0,0.03671511012733172 -12622.0,0.03670243136721203 -12623.0,0.0366897569854248 -12624.0,0.03667708698045808 -12625.0,0.03666442135080039 -12626.0,0.03665176009494084 -12627.0,0.036639103211369026 -12628.0,0.03662645069857509 -12629.0,0.03661380255504965 -12630.0,0.0366011587792839 -12631.0,0.03658851936976952 -12632.0,0.03657588432499872 -12633.0,0.036563253643464244 -12634.0,0.036550627323659324 -12635.0,0.03653800536407774 -12636.0,0.03652538776321378 -12637.0,0.03651277451956228 -12638.0,0.03650016563161854 -12639.0,0.03648756109787842 -12640.0,0.03647496091683831 -12641.0,0.03646236508699509 -12642.0,0.03644977360684615 -12643.0,0.03643718647488944 -12644.0,0.03642460368962339 -12645.0,0.036412025249547 -12646.0,0.03639945115315972 -12647.0,0.036386881398961554 -12648.0,0.036374315985453036 -12649.0,0.036361754911135205 -12650.0,0.0363491981745096 -12651.0,0.0363366457740783 -12652.0,0.036324097708343904 -12653.0,0.03631155397580951 -12654.0,0.036299014574978763 -12655.0,0.03628647950435577 -12656.0,0.036273948762445204 -12657.0,0.03626142234775224 -12658.0,0.036248900258782586 -12659.0,0.036236382494042416 -12660.0,0.03622386905203846 -12661.0,0.03621135993127797 -12662.0,0.0361988551302687 -12663.0,0.0361863546475189 -12664.0,0.036173858481537355 -12665.0,0.03616136663083337 -12666.0,0.036148879093916786 -12667.0,0.03613639586929788 -12668.0,0.03612391695548752 -12669.0,0.036111442350997065 -12670.0,0.03609897205433838 -12671.0,0.03608650606402387 -12672.0,0.0360740443785664 -12673.0,0.03606158699647939 -12674.0,0.036049133916276774 -12675.0,0.036036685136473005 -12676.0,0.036024240655583004 -12677.0,0.03601180047212225 -12678.0,0.035999364584606716 -12679.0,0.03598693299155291 -12680.0,0.035974505691477796 -12681.0,0.03596208268289891 -12682.0,0.035949663964334286 -12683.0,0.03593724953430246 -12684.0,0.03592483939132246 -12685.0,0.03591243353391386 -12686.0,0.035900031960596726 -12687.0,0.03588763466989167 -12688.0,0.03587524166031974 -12689.0,0.03586285293040257 -12690.0,0.03585046847866225 -12691.0,0.03583808830362144 -12692.0,0.035825712403803264 -12693.0,0.035813340777731344 -12694.0,0.035800973423929856 -12695.0,0.03578861034092346 -12696.0,0.035776251527237346 -12697.0,0.03576389698139717 -12698.0,0.035751546701929135 -12699.0,0.035739200687359945 -12700.0,0.035726858936216827 -12701.0,0.03571452144702746 -12702.0,0.03570218821832011 -12703.0,0.03568985924862349 -12704.0,0.03567753453646687 -12705.0,0.03566521408037997 -12706.0,0.03565289787889306 -12707.0,0.03564058593053691 -12708.0,0.03562827823384279 -12709.0,0.035615974787342505 -12710.0,0.035603675589568305 -12711.0,0.03559138063905301 -12712.0,0.03557908993432992 -12713.0,0.03556680347393285 -12714.0,0.0355545212563961 -12715.0,0.03554224328025448 -12716.0,0.03552996954404335 -12717.0,0.03551770004629853 -12718.0,0.03550543478555634 -12719.0,0.03549317376035364 -12720.0,0.035480916969227776 -12721.0,0.03546866441071662 -12722.0,0.03545641608335849 -12723.0,0.03544417198569229 -12724.0,0.035431932116257364 -12725.0,0.03541969647359361 -12726.0,0.03540746505624137 -12727.0,0.03539523786274155 -12728.0,0.03538301489163553 -12729.0,0.03537079614146519 -12730.0,0.035358581610772946 -12731.0,0.03534637129810166 -12732.0,0.035334165201994755 -12733.0,0.03532196332099612 -12734.0,0.03530976565365019 -12735.0,0.035297572198501825 -12736.0,0.03528538295409645 -12737.0,0.035273197918979995 -12738.0,0.035261017091698876 -12739.0,0.03524884047079998 -12740.0,0.03523666805483074 -12741.0,0.03522449984233908 -12742.0,0.03521233583187343 -12743.0,0.035200176021982686 -12744.0,0.03518802041121629 -12745.0,0.03517586899812415 -12746.0,0.035163721781256714 -12747.0,0.03515157875916491 -12748.0,0.035139439930400126 -12749.0,0.03512730529351432 -12750.0,0.035115174847059914 -12751.0,0.03510304858958984 -12752.0,0.0350909265196575 -12753.0,0.03507880863581684 -12754.0,0.035066694936622275 -12755.0,0.035054585420628746 -12756.0,0.03504248008639165 -12757.0,0.035030378932466924 -12758.0,0.03501828195741098 -12759.0,0.035006189159780765 -12760.0,0.03499410053813366 -12761.0,0.0349820160910276 -12762.0,0.034969935817020986 -12763.0,0.03495785971467275 -12764.0,0.03494578778254229 -12765.0,0.0349337200191895 -12766.0,0.03492165642317479 -12767.0,0.034909596993059074 -12768.0,0.03489754172740375 -12769.0,0.0348854906247707 -12770.0,0.03487344368372231 -12771.0,0.034861400902821485 -12772.0,0.03484936228063161 -12773.0,0.03483732781571655 -12774.0,0.034825297506640686 -12775.0,0.034813271351968884 -12776.0,0.034801249350266544 -12777.0,0.034789231500099486 -12778.0,0.03477721780003408 -12779.0,0.03476520824863719 -12780.0,0.03475320284447618 -12781.0,0.034741201586118854 -12782.0,0.03472920447213356 -12783.0,0.03471721150108915 -12784.0,0.03470522267155493 -12785.0,0.03469323798210074 -12786.0,0.03468125743129687 -12787.0,0.03466928101771414 -12788.0,0.03465730873992385 -12789.0,0.03464534059649781 -12790.0,0.03463337658600828 -12791.0,0.03462141670702805 -12792.0,0.034609460958130396 -12793.0,0.034597509337889104 -12794.0,0.0345855618448784 -12795.0,0.03457361847767304 -12796.0,0.034561679234848285 -12797.0,0.03454974411497987 -12798.0,0.034537813116644014 -12799.0,0.03452588623841742 -12800.0,0.03451396347887733 -12801.0,0.034502044836601437 -12802.0,0.034490130310167906 -12803.0,0.03447821989815545 -12804.0,0.03446631359914323 -12805.0,0.034454411411710927 -12806.0,0.0344425133344387 -12807.0,0.03443061936590716 -12808.0,0.03441872950469747 -12809.0,0.03440684374939125 -12810.0,0.03439496209857063 -12811.0,0.0343830845508182 -12812.0,0.034371211104717046 -12813.0,0.03435934175885077 -12814.0,0.034347476511803456 -12815.0,0.034335615362159635 -12816.0,0.03432375830850438 -12817.0,0.034311905349423216 -12818.0,0.0343000564835022 -12819.0,0.03428821170932781 -12820.0,0.03427637102548708 -12821.0,0.034264534430567484 -12822.0,0.03425270192315702 -12823.0,0.034240873501844155 -12824.0,0.03422904916521782 -12825.0,0.03421722891186749 -12826.0,0.034205412740383065 -12827.0,0.034193600649355 -12828.0,0.034181792637374156 -12829.0,0.03416998870303195 -12830.0,0.034158188844920244 -12831.0,0.034146393061631426 -12832.0,0.03413460135175832 -12833.0,0.03412281371389426 -12834.0,0.034111030146633074 -12835.0,0.03409925064856909 -12836.0,0.03408747521829706 -12837.0,0.03407570385441228 -12838.0,0.03406393655551052 -12839.0,0.034052173320188034 -12840.0,0.034040414147041516 -12841.0,0.034028659034668216 -12842.0,0.03401690798166582 -12843.0,0.03400516098663252 -12844.0,0.03399341804816699 -12845.0,0.03398167916486837 -12846.0,0.033969944335336295 -12847.0,0.0339582135581709 -12848.0,0.033946486831972794 -12849.0,0.033934764155343036 -12850.0,0.033923045526883217 -12851.0,0.033911330945195384 -12852.0,0.033899620408882086 -12853.0,0.03388791391654632 -12854.0,0.03387621146679159 -12855.0,0.033864513058221885 -12856.0,0.033852818689441684 -12857.0,0.033841128359055915 -12858.0,0.033829442065670005 -12859.0,0.033817759807889876 -12860.0,0.03380608158432191 -12861.0,0.033794407393573006 -12862.0,0.03378273723425048 -12863.0,0.033771071104962185 -12864.0,0.03375940900431644 -12865.0,0.033747750930922055 -12866.0,0.03373609688338827 -12867.0,0.033724446860324865 -12868.0,0.03371280086034207 -12869.0,0.03370115888205063 -12870.0,0.033689520924061696 -12871.0,0.03367788698498697 -12872.0,0.0336662570634386 -12873.0,0.03365463115802925 -12874.0,0.03364300926737199 -12875.0,0.03363139139008043 -12876.0,0.03361977752476865 -12877.0,0.03360816767005121 -12878.0,0.03359656182454311 -12879.0,0.03358495998685987 -12880.0,0.03357336215561748 -12881.0,0.033561768329432404 -12882.0,0.03355017850692159 -12883.0,0.03353859268670243 -12884.0,0.03352701086739284 -12885.0,0.03351543304761119 -12886.0,0.03350385922597634 -12887.0,0.0334922894011076 -12888.0,0.03348072357162478 -12889.0,0.03346916173614816 -12890.0,0.03345760389329852 -12891.0,0.03344605004169706 -12892.0,0.0334345001799655 -12893.0,0.03342295430672603 -12894.0,0.033411412420601326 -12895.0,0.0333998745202145 -12896.0,0.033388340604189166 -12897.0,0.03337681067114943 -12898.0,0.03336528471971984 -12899.0,0.03335376274852546 -12900.0,0.03334224475619176 -12901.0,0.03333073074134475 -12902.0,0.033319220702610904 -12903.0,0.03330771463861715 -12904.0,0.03329621254799088 -12905.0,0.03328471442936 -12906.0,0.03327322028135286 -12907.0,0.03326173010259831 -12908.0,0.033250243891725616 -12909.0,0.033238761647364584 -12910.0,0.03322728336814546 -12911.0,0.03321580905269899 -12912.0,0.03320433869965634 -12913.0,0.03319287230764919 -12914.0,0.03318140987530969 -12915.0,0.033169951401270444 -12916.0,0.033158496884164564 -12917.0,0.03314704632262558 -12918.0,0.03313559971528753 -12919.0,0.033124157060784934 -12920.0,0.033112718357752764 -12921.0,0.03310128360482645 -12922.0,0.03308985280064191 -12923.0,0.03307842594383554 -12924.0,0.03306700303304422 -12925.0,0.033055584066905244 -12926.0,0.03304416904405642 -12927.0,0.03303275796313604 -12928.0,0.03302135082278284 -12929.0,0.03300994762163601 -12930.0,0.03299854835833524 -12931.0,0.032987153031520694 -12932.0,0.03297576163983299 -12933.0,0.032964374181913204 -12934.0,0.032952990656402906 -12935.0,0.03294161106194412 -12936.0,0.03293023539717935 -12937.0,0.032918863660751564 -12938.0,0.032907495851304175 -12939.0,0.03289613196748111 -12940.0,0.03288477200792673 -12941.0,0.03287341597128589 -12942.0,0.03286206385620386 -12943.0,0.032850715661326454 -12944.0,0.032839371385299895 -12945.0,0.03282803102677092 -12946.0,0.032816694584386664 -12947.0,0.032805362056794796 -12948.0,0.03279403344264343 -12949.0,0.03278270874058116 -12950.0,0.03277138794925699 -12951.0,0.03276007106732046 -12952.0,0.032748758093421544 -12953.0,0.03273744902621069 -12954.0,0.03272614386433881 -12955.0,0.03271484260645727 -12956.0,0.032703545251217915 -12957.0,0.03269225179727305 -12958.0,0.03268096224327548 -12959.0,0.0326696765878784 -12960.0,0.03265839482973553 -12961.0,0.03264711696750104 -12962.0,0.03263584299982958 -12963.0,0.03262457292537622 -12964.0,0.03261330674279653 -12965.0,0.032602044450746534 -12966.0,0.03259078604788275 -12967.0,0.0325795315328621 -12968.0,0.032568280904342 -12969.0,0.03255703416098036 -12970.0,0.03254579130143552 -12971.0,0.032534552324366264 -12972.0,0.03252331722843189 -12973.0,0.03251208601229211 -12974.0,0.03250085867460714 -12975.0,0.03248963521403765 -12976.0,0.032478415629244736 -12977.0,0.032467199918889994 -12978.0,0.032455988081635474 -12979.0,0.0324447801161437 -12980.0,0.03243357602107761 -12981.0,0.032422375795100655 -12982.0,0.032411179436876734 -12983.0,0.032399986945070215 -12984.0,0.03238879831834589 -12985.0,0.032377613555369035 -12986.0,0.032366432654805405 -12987.0,0.03235525561532121 -12988.0,0.03234408243558309 -12989.0,0.03233291311425817 -12990.0,0.032321747650014034 -12991.0,0.03231058604151872 -12992.0,0.03229942828744075 -12993.0,0.03228827438644906 -12994.0,0.032277124337213074 -12995.0,0.03226597813840268 -12996.0,0.03225483578868823 -12997.0,0.032243697286740494 -12998.0,0.03223256263123075 -12999.0,0.032221431820830704 -13000.0,0.03221030485421255 -13001.0,0.0321991817300489 -13002.0,0.032188062447012854 -13003.0,0.03217694700377796 -13004.0,0.03216583539901825 -13005.0,0.03215472763140816 -13006.0,0.03214362369962262 -13007.0,0.032132523602337024 -13008.0,0.03212142733822721 -13009.0,0.03211033490596946 -13010.0,0.03209924630424054 -13011.0,0.03208816153171765 -13012.0,0.03207708058707848 -13013.0,0.03206600346900114 -13014.0,0.032054930176164204 -13015.0,0.03204386070724671 -13016.0,0.032032795060928154 -13017.0,0.03202173323588851 -13018.0,0.03201067523080814 -13019.0,0.031999621044367925 -13020.0,0.031988570675249184 -13021.0,0.03197752412213369 -13022.0,0.031966481383703664 -13023.0,0.03195544245864178 -13024.0,0.031944407345631184 -13025.0,0.031933376043355485 -13026.0,0.0319223485504987 -13027.0,0.031911324865745334 -13028.0,0.031900304987780355 -13029.0,0.03188928891528916 -13030.0,0.03187827664695763 -13031.0,0.03186726818147206 -13032.0,0.031856263517519225 -13033.0,0.03184526265378636 -13034.0,0.031834265588961144 -13035.0,0.03182327232173168 -13036.0,0.03181228285078658 -13037.0,0.03180129717481486 -13038.0,0.03179031529250605 -13039.0,0.03177933720255003 -13040.0,0.03176836290363723 -13041.0,0.03175739239445849 -13042.0,0.03174642567370513 -13043.0,0.03173546274006886 -13044.0,0.031724503592241896 -13045.0,0.0317135482289169 -13046.0,0.031702596648786996 -13047.0,0.03169164885054569 -13048.0,0.03168070483288703 -13049.0,0.031669764594505455 -13050.0,0.03165882813409589 -13051.0,0.031647895450353694 -13052.0,0.031636966541974655 -13053.0,0.03162604140765505 -13054.0,0.031615120046091585 -13055.0,0.031604202455981445 -13056.0,0.03159328863602221 -13057.0,0.031582378584911946 -13058.0,0.03157147230134917 -13059.0,0.03156056978403286 -13060.0,0.03154967103166239 -13061.0,0.03153877604293764 -13062.0,0.0315278848165589 -13063.0,0.03151699735122697 -13064.0,0.03150611364564299 -13065.0,0.03149523369850866 -13066.0,0.031484357508526066 -13067.0,0.03147348507439776 -13068.0,0.03146261639482675 -13069.0,0.03145175146851646 -13070.0,0.0314408902941708 -13071.0,0.0314300328704941 -13072.0,0.031419179196191166 -13073.0,0.031408329269967214 -13074.0,0.03139748309052793 -13075.0,0.03138664065657946 -13076.0,0.03137580196682837 -13077.0,0.03136496701998168 -13078.0,0.03135413581474686 -13079.0,0.03134330834983183 -13080.0,0.031332484623944966 -13081.0,0.03132166463579505 -13082.0,0.03131084838409134 -13083.0,0.03130003586754355 -13084.0,0.031289227084861836 -13085.0,0.03127842203475675 -13086.0,0.031267620715939366 -13087.0,0.03125682312712114 -13088.0,0.03124602926701402 -13089.0,0.031235239134330375 -13090.0,0.031224452727782997 -13091.0,0.031213670046085162 -13092.0,0.031202891087950574 -13093.0,0.031192115852093395 -13094.0,0.031181344337228193 -13095.0,0.03117057654207002 -13096.0,0.03115981246533435 -13097.0,0.031149052105737124 -13098.0,0.031138295461994682 -13099.0,0.03112754253282385 -13100.0,0.031116793316941883 -13101.0,0.031106047813066487 -13102.0,0.031095306019915777 -13103.0,0.03108456793620835 -13104.0,0.03107383356066323 -13105.0,0.031063102891999886 -13106.0,0.031052375928938235 -13107.0,0.03104165267019861 -13108.0,0.03103093311450181 -13109.0,0.03102021726056908 -13110.0,0.0310095051071221 -13111.0,0.030998796652882965 -13112.0,0.030988091896574248 -13113.0,0.03097739083691895 -13114.0,0.030966693472640527 -13115.0,0.030955999802462834 -13116.0,0.030945309825110203 -13117.0,0.030934623539307406 -13118.0,0.030923940943779656 -13119.0,0.03091326203725257 -13120.0,0.030902586818452246 -13121.0,0.030891915286105208 -13122.0,0.030881247438938435 -13123.0,0.030870583275679302 -13124.0,0.030859922795055665 -13125.0,0.030849265995795808 -13126.0,0.030838612876628455 -13127.0,0.030827963436282774 -13128.0,0.030817317673488342 -13129.0,0.03080667558697521 -13130.0,0.030796037175473853 -13131.0,0.0307854024377152 -13132.0,0.03077477137243058 -13133.0,0.030764143978351793 -13134.0,0.030753520254211072 -13135.0,0.0307429001987411 -13136.0,0.030732283810674946 -13137.0,0.030721671088746176 -13138.0,0.030711062031688764 -13139.0,0.03070045663823714 -13140.0,0.030689854907126134 -13141.0,0.030679256837091048 -13142.0,0.03066866242686761 -13143.0,0.030658071675191984 -13144.0,0.030647484580800785 -13145.0,0.03063690114243102 -13146.0,0.03062632135882018 -13147.0,0.030615745228706172 -13148.0,0.03060517275082735 -13149.0,0.030594603923922475 -13150.0,0.030584038746730772 -13151.0,0.030573477217991894 -13152.0,0.030562919336445938 -13153.0,0.030552365100833402 -13154.0,0.030541814509895255 -13155.0,0.03053126756237289 -13156.0,0.030520724257008143 -13157.0,0.030510184592543253 -13158.0,0.030499648567720923 -13159.0,0.030489116181284283 -13160.0,0.030478587431976914 -13161.0,0.03046806231854278 -13162.0,0.03045754083972633 -13163.0,0.030447022994272422 -13164.0,0.030436508780926363 -13165.0,0.03042599819843389 -13166.0,0.030415491245541142 -13167.0,0.030404987920994733 -13168.0,0.03039448822354169 -13169.0,0.030383992151929485 -13170.0,0.030373499704905993 -13171.0,0.030363010881219555 -13172.0,0.030352525679618925 -13173.0,0.030342044098853313 -13174.0,0.030331566137672315 -13175.0,0.030321091794826 -13176.0,0.030310621069064857 -13177.0,0.030300153959139816 -13178.0,0.0302896904638022 -13179.0,0.0302792305818038 -13180.0,0.030268774311896837 -13181.0,0.030258321652833948 -13182.0,0.030247872603368222 -13183.0,0.03023742716225314 -13184.0,0.030226985328242643 -13185.0,0.030216547100091105 -13186.0,0.03020611247655333 -13187.0,0.030195681456384516 -13188.0,0.030185254038340333 -13189.0,0.030174830221176865 -13190.0,0.03016441000365064 -13191.0,0.03015399338451858 -13192.0,0.03014358036253807 -13193.0,0.030133170936466905 -13194.0,0.03012276510506334 -13195.0,0.030112362867086 -13196.0,0.030101964221293992 -13197.0,0.030091569166446834 -13198.0,0.030081177701304484 -13199.0,0.030070789824627287 -13200.0,0.030060405535176058 -13201.0,0.03005002483171203 -13202.0,0.030039647712996862 -13203.0,0.03002927417779265 -13204.0,0.03001890422486188 -13205.0,0.030008537852967507 -13206.0,0.029998175060872895 -13207.0,0.029987815847341857 -13208.0,0.029977460211138587 -13209.0,0.02996710815102774 -13210.0,0.0299567596657744 -13211.0,0.029946414754144075 -13212.0,0.02993607341490267 -13213.0,0.029925735646816547 -13214.0,0.029915401448652484 -13215.0,0.02990507081917771 -13216.0,0.029894743757159822 -13217.0,0.029884420261366895 -13218.0,0.029874100330567404 -13219.0,0.029863783963530264 -13220.0,0.029853471159024814 -13221.0,0.02984316191582079 -13222.0,0.029832856232688387 -13223.0,0.02982255410839821 -13224.0,0.029812255541721306 -13225.0,0.029801960531429104 -13226.0,0.0297916690762935 -13227.0,0.02978138117508679 -13228.0,0.029771096826581727 -13229.0,0.02976081602955143 -13230.0,0.029750538782769488 -13231.0,0.029740265085009904 -13232.0,0.02972999493504711 -13233.0,0.029719728331655926 -13234.0,0.029709465273611638 -13235.0,0.029699205759689935 -13236.0,0.029688949788666947 -13237.0,0.029678697359319182 -13238.0,0.029668448470423613 -13239.0,0.029658203120757627 -13240.0,0.029647961309099028 -13241.0,0.02963772303422605 -13242.0,0.029627488294917317 -13243.0,0.02961725708995192 -13244.0,0.02960702941810934 -13245.0,0.029596805278169505 -13246.0,0.02958658466891273 -13247.0,0.029576367589119783 -13248.0,0.029566154037571835 -13249.0,0.029555944013050502 -13250.0,0.029545737514337773 -13251.0,0.029535534540216103 -13252.0,0.02952533508946835 -13253.0,0.029515139160877807 -13254.0,0.02950494675322815 -13255.0,0.02949475786530351 -13256.0,0.029484572495888425 -13257.0,0.029474390643767858 -13258.0,0.0294642123077272 -13259.0,0.029454037486552224 -13260.0,0.029443866179029166 -13261.0,0.02943369838394465 -13262.0,0.02942353410008576 -13263.0,0.029413373326239937 -13264.0,0.029403216061195087 -13265.0,0.029393062303739528 -13266.0,0.029382912052661997 -13267.0,0.029372765306751623 -13268.0,0.02936262206479798 -13269.0,0.02935248232559106 -13270.0,0.029342346087921276 -13271.0,0.029332213350579422 -13272.0,0.02932208411235675 -13273.0,0.029311958372044915 -13274.0,0.029301836128436003 -13275.0,0.02929171738032248 -13276.0,0.029281602126497264 -13277.0,0.02927149036575368 -13278.0,0.02926138209688547 -13279.0,0.029251277318686802 -13280.0,0.029241176029952225 -13281.0,0.02923107822947674 -13282.0,0.029220983916055755 -13283.0,0.029210893088485106 -13284.0,0.029200805745561 -13285.0,0.02919072188608011 -13286.0,0.029180641508839502 -13287.0,0.02917056461263667 -13288.0,0.029160491196269494 -13289.0,0.029150421258536296 -13290.0,0.02914035479823581 -13291.0,0.029130291814167195 -13292.0,0.02912023230512998 -13293.0,0.029110176269924154 -13294.0,0.029100123707350108 -13295.0,0.029090074616208637 -13296.0,0.029080028995300978 -13297.0,0.029069986843428732 -13298.0,0.02905994815939396 -13299.0,0.029049912941999115 -13300.0,0.029039881190047086 -13301.0,0.029029852902341127 -13302.0,0.029019828077684957 -13303.0,0.029009806714882683 -13304.0,0.028999788812738844 -13305.0,0.028989774370058348 -13306.0,0.028979763385646562 -13307.0,0.028969755858309246 -13308.0,0.02895975178685259 -13309.0,0.028949751170083155 -13310.0,0.028939754006807948 -13311.0,0.02892976029583439 -13312.0,0.028919770035970307 -13313.0,0.028909783226023916 -13314.0,0.028899799864803875 -13315.0,0.028889819951119236 -13316.0,0.028879843483779474 -13317.0,0.02886987046159448 -13318.0,0.02885990088337452 -13319.0,0.028849934747930305 -13320.0,0.028839972054072956 -13321.0,0.028830012800614 -13322.0,0.02882005698636535 -13323.0,0.028810104610139366 -13324.0,0.028800155670748794 -13325.0,0.028790210167006815 -13326.0,0.028780268097726977 -13327.0,0.02877032946172328 -13328.0,0.02876039425781011 -13329.0,0.02875046248480229 -13330.0,0.028740534141515 -13331.0,0.028730609226763876 -13332.0,0.02872068773936495 -13333.0,0.02871076967813466 -13334.0,0.028700855041889864 -13335.0,0.028690943829447795 -13336.0,0.02868103603962613 -13337.0,0.02867113167124294 -13338.0,0.028661230723116722 -13339.0,0.028651333194066337 -13340.0,0.028641439082911096 -13341.0,0.028631548388470707 -13342.0,0.028621661109565287 -13343.0,0.028611777245015336 -13344.0,0.028601896793641793 -13345.0,0.028592019754265993 -13346.0,0.028582146125709685 -13347.0,0.028572275906794998 -13348.0,0.028562409096344495 -13349.0,0.028552545693181143 -13350.0,0.028542685696128316 -13351.0,0.028532829104009765 -13352.0,0.028522975915649684 -13353.0,0.02851312612987266 -13354.0,0.028503279745503686 -13355.0,0.02849343676136817 -13356.0,0.028483597176291894 -13357.0,0.028473760989101076 -13358.0,0.028463928198622333 -13359.0,0.028454098803682694 -13360.0,0.028444272803109565 -13361.0,0.028434450195730786 -13362.0,0.028424630980374586 -13363.0,0.028414815155869626 -13364.0,0.028405002721044917 -13365.0,0.02839519367472992 -13366.0,0.028385388015754496 -13367.0,0.028375585742948902 -13368.0,0.028365786855143783 -13369.0,0.028355991351170208 -13370.0,0.02834619922985965 -13371.0,0.02833641049004398 -13372.0,0.02832662513055548 -13373.0,0.02831684315022681 -13374.0,0.028307064547891062 -13375.0,0.028297289322381715 -13376.0,0.028287517472532674 -13377.0,0.0282777489971782 -13378.0,0.028267983895153 -13379.0,0.02825822216529217 -13380.0,0.02824846380643121 -13381.0,0.028238708817406005 -13382.0,0.028228957197052866 -13383.0,0.028219208944208492 -13384.0,0.028209464057710004 -13385.0,0.028199722536394876 -13386.0,0.028189984379101037 -13387.0,0.02818024958466679 -13388.0,0.028170518151930862 -13389.0,0.028160790079732337 -13390.0,0.028151065366910737 -13391.0,0.028141344012305978 -13392.0,0.028131626014758368 -13393.0,0.02812191137310864 -13394.0,0.028112200086197883 -13395.0,0.028102492152867618 -13396.0,0.028092787571959762 -13397.0,0.02808308634231664 -13398.0,0.028073388462780947 -13399.0,0.028063693932195804 -13400.0,0.028054002749404727 -13401.0,0.028044314913251638 -13402.0,0.028034630422580826 -13403.0,0.028024949276237013 -13404.0,0.028015271473065307 -13405.0,0.028005597011911236 -13406.0,0.027995925891620678 -13407.0,0.027986258111039948 -13408.0,0.027976593669015757 -13409.0,0.0279669325643952 -13410.0,0.027957274796025798 -13411.0,0.02794762036275542 -13412.0,0.027937969263432377 -13413.0,0.02792832149690536 -13414.0,0.027918677062023476 -13415.0,0.02790903595763619 -13416.0,0.0278993981825934 -13417.0,0.02788976373574539 -13418.0,0.02788013261594285 -13419.0,0.027870504822036835 -13420.0,0.027860880352878835 -13421.0,0.02785125920732072 -13422.0,0.027841641384214764 -13423.0,0.02783202688241361 -13424.0,0.027822415700770334 -13425.0,0.027812807838138387 -13426.0,0.027803203293371635 -13427.0,0.027793602065324302 -13428.0,0.027784004152851042 -13429.0,0.027774409554806898 -13430.0,0.027764818270047297 -13431.0,0.027755230297428088 -13432.0,0.02774564563580547 -13433.0,0.027736064284036074 -13434.0,0.02772648624097691 -13435.0,0.027716911505485407 -13436.0,0.02770734007641934 -13437.0,0.027697771952636924 -13438.0,0.027688207132996745 -13439.0,0.027678645616357807 -13440.0,0.027669087401579463 -13441.0,0.027659532487521503 -13442.0,0.027649980873044093 -13443.0,0.02764043255700781 -13444.0,0.027630887538273582 -13445.0,0.02762134581570277 -13446.0,0.027611807388157123 -13447.0,0.027602272254498766 -13448.0,0.027592740413590243 -13449.0,0.027583211864294455 -13450.0,0.027573686605474722 -13451.0,0.027564164635994752 -13452.0,0.027554645954718657 -13453.0,0.027545130560510903 -13454.0,0.02753561845223638 -13455.0,0.027526109628760374 -13456.0,0.027516604088948553 -13457.0,0.027507101831666953 -13458.0,0.027497602855782042 -13459.0,0.027488107160160657 -13460.0,0.02747861474367004 -13461.0,0.027469125605177797 -13462.0,0.027459639743551954 -13463.0,0.027450157157660915 -13464.0,0.027440677846373485 -13465.0,0.027431201808558833 -13466.0,0.027421729043086547 -13467.0,0.027412259548826597 -13468.0,0.027402793324649337 -13469.0,0.02739333036942553 -13470.0,0.02738387068202629 -13471.0,0.02737441426132316 -13472.0,0.02736496110618805 -13473.0,0.027355511215493292 -13474.0,0.02734606458811155 -13475.0,0.02733662122291592 -13476.0,0.027327181118779888 -13477.0,0.027317744274577317 -13478.0,0.02730831068918245 -13479.0,0.02729888036146993 -13480.0,0.027289453290314795 -13481.0,0.02728002947459247 -13482.0,0.027270608913178743 -13483.0,0.02726119160494982 -13484.0,0.027251777548782285 -13485.0,0.027242366743553112 -13486.0,0.027232959188139668 -13487.0,0.02722355488141968 -13488.0,0.027214153822271294 -13489.0,0.02720475600957303 -13490.0,0.027195361442203813 -13491.0,0.02718597011904291 -13492.0,0.027176582038970026 -13493.0,0.027167197200865224 -13494.0,0.027157815603608974 -13495.0,0.027148437246082097 -13496.0,0.027139062127165835 -13497.0,0.027129690245741803 -13498.0,0.027120321600692023 -13499.0,0.02711095619089885 -13500.0,0.02710159401524508 -13501.0,0.027092235072613866 -13502.0,0.02708287936188877 -13503.0,0.0270735268819537 -13504.0,0.027064177631692988 -13505.0,0.02705483160999133 -13506.0,0.02704548881573382 -13507.0,0.027036149247805938 -13508.0,0.02702681290509352 -13509.0,0.027017479786482824 -13510.0,0.027008149890860467 -13511.0,0.02699882321711348 -13512.0,0.02698949976412924 -13513.0,0.026980179530795526 -13514.0,0.02697086251600051 -13515.0,0.026961548718632752 -13516.0,0.026952238137581158 -13517.0,0.026942930771735058 -13518.0,0.026933626619984146 -13519.0,0.02692432568121852 -13520.0,0.026915027954328624 -13521.0,0.026905733438205317 -13522.0,0.026896442131739827 -13523.0,0.026887154033823777 -13524.0,0.026877869143349168 -13525.0,0.026868587459208365 -13526.0,0.026859308980294136 -13527.0,0.026850033705499626 -13528.0,0.026840761633718378 -13529.0,0.026831492763844278 -13530.0,0.026822227094771625 -13531.0,0.026812964625395095 -13532.0,0.026803705354609755 -13533.0,0.02679444928131102 -13534.0,0.026785196404394713 -13535.0,0.02677594672275704 -13536.0,0.02676670023529459 -13537.0,0.0267574569409043 -13538.0,0.026748216838483527 -13539.0,0.026738979926929994 -13540.0,0.026729746205141815 -13541.0,0.02672051567201745 -13542.0,0.02671128832645578 -13543.0,0.02670206416735604 -13544.0,0.026692843193617866 -13545.0,0.02668362540414127 -13546.0,0.026674410797826613 -13547.0,0.026665199373574672 -13548.0,0.026655991130286594 -13549.0,0.02664678606686391 -13550.0,0.0266375841822085 -13551.0,0.026628385475222664 -13552.0,0.026619189944809055 -13553.0,0.026609997589870732 -13554.0,0.026600808409311085 -13555.0,0.026591622402033926 -13556.0,0.026582439566943433 -13557.0,0.02657325990294417 -13558.0,0.026564083408941046 -13559.0,0.026554910083839388 -13560.0,0.02654573992654488 -13561.0,0.026536572935963593 -13562.0,0.02652740911100198 -13563.0,0.026518248450566845 -13564.0,0.026509090953565396 -13565.0,0.02649993661890521 -13566.0,0.026490785445494255 -13567.0,0.026481637432240843 -13568.0,0.026472492578053685 -13569.0,0.026463350881841874 -13570.0,0.026454212342514882 -13571.0,0.026445076958982523 -13572.0,0.026435944730155026 -13573.0,0.026426815654942985 -13574.0,0.026417689732257374 -13575.0,0.026408566961009516 -13576.0,0.026399447340111144 -13577.0,0.02639033086847435 -13578.0,0.026381217545011625 -13579.0,0.026372107368635784 -13580.0,0.026363000338260063 -13581.0,0.026353896452798065 -13582.0,0.026344795711163754 -13583.0,0.0263356981122715 -13584.0,0.02632660365503599 -13585.0,0.026317512338372345 -13586.0,0.026308424161196033 -13587.0,0.02629933912242291 -13588.0,0.026290257220969178 -13589.0,0.02628117845575144 -13590.0,0.026272102825686663 -13591.0,0.02626303032969221 -13592.0,0.026253960966685773 -13593.0,0.02624489473558545 -13594.0,0.026235831635309712 -13595.0,0.026226771664777403 -13596.0,0.026217714822907714 -13597.0,0.026208661108620242 -13598.0,0.026199610520834946 -13599.0,0.02619056305847215 -13600.0,0.02618151872045258 -13601.0,0.026172477505697282 -13602.0,0.026163439413127716 -13603.0,0.02615440444166571 -13604.0,0.026145372590233463 -13605.0,0.026136343857753517 -13606.0,0.026127318243148828 -13607.0,0.0261182957453427 -13608.0,0.026109276363258833 -13609.0,0.02610026009582125 -13610.0,0.02609124694195439 -13611.0,0.026082236900583054 -13612.0,0.026073229970632415 -13613.0,0.026064226151027995 -13614.0,0.026055225440695707 -13615.0,0.02604622783856184 -13616.0,0.026037233343553054 -13617.0,0.026028241954596347 -13618.0,0.026019253670619125 -13619.0,0.02601026849054915 -13620.0,0.026001286413314558 -13621.0,0.025992307437843865 -13622.0,0.025983331563065915 -13623.0,0.02597435878790997 -13624.0,0.02596538911130564 -13625.0,0.02595642253218292 -13626.0,0.02594745904947214 -13627.0,0.025938498662104036 -13628.0,0.02592954136900969 -13629.0,0.025920587169120584 -13630.0,0.02591163606136852 -13631.0,0.02590268804468571 -13632.0,0.025893743118004717 -13633.0,0.02588480128025849 -13634.0,0.02587586253038031 -13635.0,0.025866926867303856 -13636.0,0.025857994289963177 -13637.0,0.025849064797292678 -13638.0,0.025840138388227143 -13639.0,0.025831215061701704 -13640.0,0.025822294816651874 -13641.0,0.025813377652013535 -13642.0,0.02580446356672295 -13643.0,0.025795552559716706 -13644.0,0.025786644629931802 -13645.0,0.025777739776305583 -13646.0,0.025768837997775774 -13647.0,0.02575993929328044 -13648.0,0.02575104366175804 -13649.0,0.025742151102147386 -13650.0,0.025733261613387678 -13651.0,0.025724375194418437 -13652.0,0.025715491844179594 -13653.0,0.025706611561611428 -13654.0,0.0256977343456546 -13655.0,0.02568886019525009 -13656.0,0.025679989109339302 -13657.0,0.025671121086863972 -13658.0,0.02566225612676621 -13659.0,0.025653394227988506 -13660.0,0.02564453538947367 -13661.0,0.025635679610164927 -13662.0,0.025626826889005843 -13663.0,0.02561797722494036 -13664.0,0.025609130616912765 -13665.0,0.025600287063867726 -13666.0,0.025591446564750275 -13667.0,0.025582609118505812 -13668.0,0.025573774724080078 -13669.0,0.0255649433804192 -13670.0,0.025556115086469666 -13671.0,0.025547289841178333 -13672.0,0.025538467643492394 -13673.0,0.025529648492359433 -13674.0,0.025520832386727397 -13675.0,0.02551201932554458 -13676.0,0.025503209307759664 -13677.0,0.025494402332321656 -13678.0,0.02548559839817996 -13679.0,0.025476797504284325 -13680.0,0.025467999649584887 -13681.0,0.025459204833032097 -13682.0,0.025450413053576815 -13683.0,0.025441624310170243 -13684.0,0.025432838601763957 -13685.0,0.02542405592730987 -13686.0,0.025415276285760277 -13687.0,0.025406499676067833 -13688.0,0.025397726097185564 -13689.0,0.025388955548066826 -13690.0,0.025380188027665364 -13691.0,0.02537142353493528 -13692.0,0.025362662068831046 -13693.0,0.025353903628307455 -13694.0,0.0253451482123197 -13695.0,0.025336395819823332 -13696.0,0.025327646449774248 -13697.0,0.025318900101128725 -13698.0,0.025310156772843363 -13699.0,0.02530141646387516 -13700.0,0.02529267917318146 -13701.0,0.025283944899719978 -13702.0,0.025275213642448762 -13703.0,0.02526648540032624 -13704.0,0.0252577601723112 -13705.0,0.0252490379573628 -13706.0,0.025240318754440515 -13707.0,0.025231602562504223 -13708.0,0.025222889380514146 -13709.0,0.025214179207430874 -13710.0,0.025205472042215325 -13711.0,0.025196767883828807 -13712.0,0.025188066731232982 -13713.0,0.025179368583389865 -13714.0,0.02517067343926184 -13715.0,0.025161981297811616 -13716.0,0.025153292158002296 -13717.0,0.02514460601879733 -13718.0,0.025135922879160538 -13719.0,0.025127242738056058 -13720.0,0.025118565594448427 -13721.0,0.02510989144730252 -13722.0,0.025101220295583593 -13723.0,0.025092552138257212 -13724.0,0.025083886974289347 -13725.0,0.0250752248026463 -13726.0,0.025066565622294753 -13727.0,0.025057909432201705 -13728.0,0.025049256231334544 -13729.0,0.025040606018661014 -13730.0,0.02503195879314921 -13731.0,0.025023314553767564 -13732.0,0.02501467329948489 -13733.0,0.02500603502927035 -13734.0,0.024997399742093463 -13735.0,0.024988767436924113 -13736.0,0.024980138112732506 -13737.0,0.024971511768489236 -13738.0,0.024962888403165243 -13739.0,0.024954268015731838 -13740.0,0.024945650605160644 -13741.0,0.02493703617042368 -13742.0,0.02492842471049331 -13743.0,0.024919816224342257 -13744.0,0.02491121071094357 -13745.0,0.024902608169270684 -13746.0,0.02489400859829738 -13747.0,0.024885411996997803 -13748.0,0.024876818364346416 -13749.0,0.02486822769931808 -13750.0,0.02485964000088798 -13751.0,0.024851055268031674 -13752.0,0.024842473499725078 -13753.0,0.024833894694944424 -13754.0,0.024825318852666332 -13755.0,0.02481674597186777 -13756.0,0.02480817605152607 -13757.0,0.024799609090618877 -13758.0,0.024791045088124224 -13759.0,0.02478248404302049 -13760.0,0.02477392595428642 -13761.0,0.024765370820901068 -13762.0,0.02475681864184388 -13763.0,0.024748269416094648 -13764.0,0.02473972314263352 -13765.0,0.024731179820440968 -13766.0,0.024722639448497848 -13767.0,0.024714102025785348 -13768.0,0.024705567551285033 -13769.0,0.024697036023978783 -13770.0,0.024688507442848853 -13771.0,0.02467998180687785 -13772.0,0.024671459115048727 -13773.0,0.0246629393663448 -13774.0,0.0246544225597497 -13775.0,0.024645908694247452 -13776.0,0.024637397768822407 -13777.0,0.02462888978245929 -13778.0,0.024620384734143134 -13779.0,0.02461188262285936 -13780.0,0.024603383447593732 -13781.0,0.024594887207332366 -13782.0,0.024586393901061706 -13783.0,0.02457790352776857 -13784.0,0.02456941608644012 -13785.0,0.02456093157606388 -13786.0,0.024552449995627678 -13787.0,0.02454397134411974 -13788.0,0.02453549562052863 -13789.0,0.02452702282384325 -13790.0,0.02451855295305287 -13791.0,0.024510086007147068 -13792.0,0.02450162198511582 -13793.0,0.024493160885949425 -13794.0,0.024484702708638548 -13795.0,0.024476247452174166 -13796.0,0.02446779511554764 -13797.0,0.02445934569775067 -13798.0,0.02445089919777531 -13799.0,0.024442455614613938 -13800.0,0.0244340149472593 -13801.0,0.024425577194704486 -13802.0,0.02441714235594295 -13803.0,0.024408710429968453 -13804.0,0.02440028141577514 -13805.0,0.024391855312357484 -13806.0,0.024383432118710333 -13807.0,0.024375011833828834 -13808.0,0.02436659445670852 -13809.0,0.024358179986345263 -13810.0,0.024349768421735273 -13811.0,0.024341359761875122 -13812.0,0.0243329540057617 -13813.0,0.024324551152392276 -13814.0,0.02431615120076444 -13815.0,0.024307754149876157 -13816.0,0.024299359998725702 -13817.0,0.024290968746311717 -13818.0,0.02428258039163319 -13819.0,0.02427419493368946 -13820.0,0.024265812371480188 -13821.0,0.024257432704005398 -13822.0,0.024249055930265464 -13823.0,0.024240682049261105 -13824.0,0.024232311059993357 -13825.0,0.02422394296146363 -13826.0,0.024215577752673675 -13827.0,0.024207215432625582 -13828.0,0.0241988560003218 -13829.0,0.024190499454765084 -13830.0,0.024182145794958573 -13831.0,0.024173795019905735 -13832.0,0.024165447128610396 -13833.0,0.024157102120076688 -13834.0,0.024148759993309128 -13835.0,0.02414042074731256 -13836.0,0.024132084381092177 -13837.0,0.024123750893653498 -13838.0,0.024115420284002407 -13839.0,0.02410709255114512 -13840.0,0.024098767694088214 -13841.0,0.024090445711838573 -13842.0,0.024082126603403455 -13843.0,0.024073810367790445 -13844.0,0.024065497004007497 -13845.0,0.024057186511062856 -13846.0,0.024048878887965162 -13847.0,0.02404057413372337 -13848.0,0.024032272247346782 -13849.0,0.02402397322784506 -13850.0,0.024015677074228164 -13851.0,0.024007383785506438 -13852.0,0.023999093360690553 -13853.0,0.02399080579879153 -13854.0,0.0239825210988207 -13855.0,0.023974239259789778 -13856.0,0.023965960280710793 -13857.0,0.023957684160596137 -13858.0,0.023949410898458506 -13859.0,0.023941140493310975 -13860.0,0.02393287294416694 -13861.0,0.023924608250040155 -13862.0,0.023916346409944684 -13863.0,0.023908087422894957 -13864.0,0.023899831287905737 -13865.0,0.023891578003992126 -13866.0,0.023883327570169584 -13867.0,0.023875079985453868 -13868.0,0.02386683524886111 -13869.0,0.023858593359407782 -13870.0,0.023850354316110687 -13871.0,0.023842118117986952 -13872.0,0.02383388476405407 -13873.0,0.02382565425332986 -13874.0,0.023817426584832487 -13875.0,0.023809201757580438 -13876.0,0.02380097977059256 -13877.0,0.023792760622888022 -13878.0,0.02378454431348636 -13879.0,0.023776330841407404 -13880.0,0.02376812020567135 -13881.0,0.023759912405298744 -13882.0,0.023751707439310453 -13883.0,0.02374350530672767 -13884.0,0.023735306006571946 -13885.0,0.023727109537865165 -13886.0,0.02371891589962955 -13887.0,0.023710725090887674 -13888.0,0.023702537110662406 -13889.0,0.023694351957976992 -13890.0,0.023686169631855002 -13891.0,0.023677990131320357 -13892.0,0.02366981345539728 -13893.0,0.023661639603110365 -13894.0,0.023653468573484528 -13895.0,0.02364530036554504 -13896.0,0.023637134978317466 -13897.0,0.023628972410827752 -13898.0,0.02362081266210216 -13899.0,0.023612655731167297 -13900.0,0.023604501617050088 -13901.0,0.023596350318777815 -13902.0,0.023588201835378086 -13903.0,0.023580056165878844 -13904.0,0.023571913309308384 -13905.0,0.023563773264695304 -13906.0,0.02355563603106856 -13907.0,0.023547501607457444 -13908.0,0.023539369992891586 -13909.0,0.023531241186400927 -13910.0,0.023523115187015765 -13911.0,0.02351499199376673 -13912.0,0.0235068716056848 -13913.0,0.02349875402180124 -13914.0,0.0234906392411477 -13915.0,0.023482527262756143 -13916.0,0.02347441808565888 -13917.0,0.023466311708888524 -13918.0,0.023458208131478055 -13919.0,0.023450107352460774 -13920.0,0.023442009370870327 -13921.0,0.023433914185740666 -13922.0,0.023425821796106104 -13923.0,0.023417732201001275 -13924.0,0.02340964539946115 -13925.0,0.023401561390521047 -13926.0,0.023393480173216578 -13927.0,0.023385401746583726 -13928.0,0.02337732610965879 -13929.0,0.023369253261478415 -13930.0,0.023361183201079553 -13931.0,0.023353115927499515 -13932.0,0.02334505143977593 -13933.0,0.023336989736946773 -13934.0,0.023328930818050327 -13935.0,0.02332087468212523 -13936.0,0.02331282132821044 -13937.0,0.02330477075534526 -13938.0,0.023296722962569304 -13939.0,0.02328867794892253 -13940.0,0.02328063571344523 -13941.0,0.023272596255178028 -13942.0,0.023264559573161876 -13943.0,0.023256525666438044 -13944.0,0.023248494534048154 -13945.0,0.023240466175034148 -13946.0,0.023232440588438312 -13947.0,0.023224417773303235 -13948.0,0.02321639772867186 -13949.0,0.023208380453587456 -13950.0,0.02320036594709363 -13951.0,0.02319235420823429 -13952.0,0.023184345236053703 -13953.0,0.02317633902959646 -13954.0,0.023168335587907485 -13955.0,0.02316033491003201 -13956.0,0.023152336995015618 -13957.0,0.02314434184190422 -13958.0,0.023136349449744048 -13959.0,0.023128359817581684 -13960.0,0.023120372944463997 -13961.0,0.023112388829438228 -13962.0,0.023104407471551923 -13963.0,0.023096428869852977 -13964.0,0.023088453023389584 -13965.0,0.02308047993121029 -13966.0,0.023072509592363965 -13967.0,0.023064542005899816 -13968.0,0.023056577170867343 -13969.0,0.023048615086316417 -13970.0,0.023040655751297216 -13971.0,0.023032699164860258 -13972.0,0.02302474532605636 -13973.0,0.0230167942339367 -13974.0,0.023008845887552767 -13975.0,0.0230009002859564 -13976.0,0.022992957428199713 -13977.0,0.022985017313335198 -13978.0,0.02297707994041566 -13979.0,0.022969145308494227 -13980.0,0.02296121341662436 -13981.0,0.022953284263859827 -13982.0,0.022945357849254746 -13983.0,0.022937434171863558 -13984.0,0.02292951323074103 -13985.0,0.022921595024942232 -13986.0,0.02291367955352259 -13987.0,0.022905766815537854 -13988.0,0.022897856810044092 -13989.0,0.02288994953609768 -13990.0,0.022882044992755354 -13991.0,0.02287414317907415 -13992.0,0.02286624409411146 -13993.0,0.02285834773692495 -13994.0,0.02285045410657266 -13995.0,0.022842563202112934 -13996.0,0.022834675022604445 -13997.0,0.022826789567106202 -13998.0,0.022818906834677508 -13999.0,0.022811026824378015 -14000.0,0.022803149535267703 -14001.0,0.022795274966406875 -14002.0,0.022787403116856134 -14003.0,0.02277953398567643 -14004.0,0.02277166757192904 -14005.0,0.022763803874675567 -14006.0,0.022755942892977905 -14007.0,0.02274808462589831 -14008.0,0.022740229072499347 -14009.0,0.022732376231843918 -14010.0,0.02272452610299521 -14011.0,0.02271667868501678 -14012.0,0.02270883397697248 -14013.0,0.022700991977926504 -14014.0,0.02269315268694334 -14015.0,0.02268531610308783 -14016.0,0.022677482225425125 -14017.0,0.0226696510530207 -14018.0,0.022661822584940365 -14019.0,0.02265399682025022 -14020.0,0.022646173758016717 -14021.0,0.02263835339730662 -14022.0,0.022630535737187034 -14023.0,0.022622720776725343 -14024.0,0.02261490851498929 -14025.0,0.02260709895104693 -14026.0,0.022599292083966653 -14027.0,0.022591487912817128 -14028.0,0.022583686436667392 -14029.0,0.022575887654586783 -14030.0,0.02256809156564497 -14031.0,0.022560298168911922 -14032.0,0.02255250746345795 -14033.0,0.02254471944835368 -14034.0,0.02253693412267006 -14035.0,0.022529151485478367 -14036.0,0.022521371535850168 -14037.0,0.022513594272857384 -14038.0,0.022505819695572242 -14039.0,0.0224980478030673 -14040.0,0.02249027859441541 -14041.0,0.022482512068689776 -14042.0,0.022474748224963904 -14043.0,0.022466987062311632 -14044.0,0.022459228579807096 -14045.0,0.022451472776524768 -14046.0,0.022443719651539445 -14047.0,0.022435969203926237 -14048.0,0.02242822143276056 -14049.0,0.02242047633711817 -14050.0,0.02241273391607513 -14051.0,0.022404994168707837 -14052.0,0.022397257094092977 -14053.0,0.022389522691307583 -14054.0,0.022381790959428997 -14055.0,0.022374061897534877 -14056.0,0.022366335504703218 -14057.0,0.02235861178001229 -14058.0,0.022350890722540727 -14059.0,0.02234317233136746 -14060.0,0.02233545660557175 -14061.0,0.022327743544233145 -14062.0,0.02232003314643155 -14063.0,0.022312325411247166 -14064.0,0.022304620337760525 -14065.0,0.02229691792505245 -14066.0,0.02228921817220411 -14067.0,0.022281521078296982 -14068.0,0.022273826642412866 -14069.0,0.022266134863633852 -14070.0,0.022258445741042375 -14071.0,0.022250759273721183 -14072.0,0.022243075460753336 -14073.0,0.02223539430122222 -14074.0,0.022227715794211508 -14075.0,0.022220039938805218 -14076.0,0.022212366734087684 -14077.0,0.02220469617914355 -14078.0,0.02219702827305776 -14079.0,0.022189363014915597 -14080.0,0.02218170040380265 -14081.0,0.02217404043880484 -14082.0,0.022166383119008364 -14083.0,0.022158728443499774 -14084.0,0.02215107641136592 -14085.0,0.02214342702169398 -14086.0,0.022135780273571416 -14087.0,0.022128136166086044 -14088.0,0.02212049469832597 -14089.0,0.02211285586937964 -14090.0,0.02210521967833577 -14091.0,0.02209758612428343 -14092.0,0.022089955206311993 -14093.0,0.022082326923511152 -14094.0,0.02207470127497091 -14095.0,0.022067078259781568 -14096.0,0.022059457877033763 -14097.0,0.02205184012581844 -14098.0,0.022044225005226868 -14099.0,0.022036612514350594 -14100.0,0.02202900265228152 -14101.0,0.022021395418111843 -14102.0,0.022013790810934082 -14103.0,0.022006188829841043 -14104.0,0.02199858947392588 -14105.0,0.021990992742282042 -14106.0,0.021983398634003302 -14107.0,0.021975807148183726 -14108.0,0.021968218283917706 -14109.0,0.021960632040299948 -14110.0,0.021953048416425473 -14111.0,0.02194546741138962 -14112.0,0.021937889024288004 -14113.0,0.021930313254216592 -14114.0,0.02192274010027165 -14115.0,0.021915169561549767 -14116.0,0.021907601637147812 -14117.0,0.021900036326162997 -14118.0,0.021892473627692838 -14119.0,0.021884913540835164 -14120.0,0.021877356064688096 -14121.0,0.02186980119835009 -14122.0,0.02186224894091991 -14123.0,0.02185469929149663 -14124.0,0.02184715224917962 -14125.0,0.021839607813068578 -14126.0,0.021832065982263508 -14127.0,0.021824526755864732 -14128.0,0.02181699013297286 -14129.0,0.021809456112688835 -14130.0,0.02180192469411391 -14131.0,0.02179439587634963 -14132.0,0.021786869658497878 -14133.0,0.021779346039660814 -14134.0,0.02177182501894093 -14135.0,0.021764306595441027 -14136.0,0.021756790768264218 -14137.0,0.021749277536513904 -14138.0,0.021741766899293816 -14139.0,0.021734258855707997 -14140.0,0.021726753404860796 -14141.0,0.02171925054585685 -14142.0,0.021711750277801128 -14143.0,0.02170425259979891 -14144.0,0.02169675751095578 -14145.0,0.021689265010377618 -14146.0,0.02168177509717063 -14147.0,0.02167428777044132 -14148.0,0.021666803029296505 -14149.0,0.02165932087284332 -14150.0,0.02165184130018918 -14151.0,0.02164436431044184 -14152.0,0.021636889902709344 -14153.0,0.021629418076100065 -14154.0,0.02162194882972264 -14155.0,0.02161448216268606 -14156.0,0.021607018074099604 -14157.0,0.021599556563072872 -14158.0,0.021592097628715737 -14159.0,0.021584641270138413 -14160.0,0.02157718748645141 -14161.0,0.021569736276765564 -14162.0,0.02156228764019197 -14163.0,0.021554841575842074 -14164.0,0.021547398082827615 -14165.0,0.021539957160260647 -14166.0,0.021532518807253504 -14167.0,0.021525083022918855 -14168.0,0.021517649806369662 -14169.0,0.0215102191567192 -14170.0,0.021502791073081055 -14171.0,0.02149536555456909 -14172.0,0.02148794260029751 -14173.0,0.021480522209380803 -14174.0,0.021473104380933784 -14175.0,0.02146568911407154 -14176.0,0.021458276407909496 -14177.0,0.021450866261563367 -14178.0,0.02144345867414919 -14179.0,0.02143605364478327 -14180.0,0.02142865117258225 -14181.0,0.021421251256663075 -14182.0,0.021413853896142993 -14183.0,0.021406459090139534 -14184.0,0.021399066837770566 -14185.0,0.021391677138154243 -14186.0,0.02138428999040903 -14187.0,0.0213769053936537 -14188.0,0.021369523347007313 -14189.0,0.021362143849589246 -14190.0,0.02135476690051918 -14191.0,0.021347392498917112 -14192.0,0.02134002064390331 -14193.0,0.02133265133459837 -14194.0,0.021325284570123195 -14195.0,0.021317920349598986 -14196.0,0.02131055867214723 -14197.0,0.021303199536889743 -14198.0,0.02129584294294863 -14199.0,0.021288488889446316 -14200.0,0.021281137375505497 -14201.0,0.021273788400249197 -14202.0,0.02126644196280074 -14203.0,0.021259098062283755 -14204.0,0.021251756697822154 -14205.0,0.021244417868540175 -14206.0,0.02123708157356235 -14207.0,0.021229747812013505 -14208.0,0.02122241658301879 -14209.0,0.02121508788570363 -14210.0,0.021207761719193762 -14211.0,0.02120043808261524 -14212.0,0.021193116975094406 -14213.0,0.021185798395757897 -14214.0,0.021178482343732662 -14215.0,0.02117116881814595 -14216.0,0.021163857818125322 -14217.0,0.021156549342798613 -14218.0,0.021149243391293978 -14219.0,0.021141939962739872 -14220.0,0.021134639056265062 -14221.0,0.021127340670998584 -14222.0,0.0211200448060698 -14223.0,0.021112751460608366 -14224.0,0.021105460633744244 -14225.0,0.0210981723246077 -14226.0,0.021090886532329267 -14227.0,0.02108360325603982 -14228.0,0.021076322494870514 -14229.0,0.021069044247952813 -14230.0,0.021061768514418464 -14231.0,0.021054495293399526 -14232.0,0.021047224584028367 -14233.0,0.021039956385437642 -14234.0,0.0210326906967603 -14235.0,0.0210254275171296 -14236.0,0.0210181668456791 -14237.0,0.021010908681542664 -14238.0,0.021003653023854426 -14239.0,0.02099639987174885 -14240.0,0.020989149224360685 -14241.0,0.020981901080824993 -14242.0,0.020974655440277108 -14243.0,0.020967412301852683 -14244.0,0.020960171664687662 -14245.0,0.020952933527918296 -14246.0,0.020945697890681136 -14247.0,0.020938464752113 -14248.0,0.02093123411135104 -14249.0,0.020924005967532695 -14250.0,0.020916780319795707 -14251.0,0.02090955716727809 -14252.0,0.020902336509118182 -14253.0,0.02089511834445462 -14254.0,0.020887902672426326 -14255.0,0.020880689492172515 -14256.0,0.02087347880283271 -14257.0,0.020866270603546733 -14258.0,0.020859064893454706 -14259.0,0.02085186167169702 -14260.0,0.020844660937414394 -14261.0,0.020837462689747833 -14262.0,0.020830266927838636 -14263.0,0.020823073650828413 -14264.0,0.02081588285785904 -14265.0,0.020808694548072718 -14266.0,0.02080150872061193 -14267.0,0.020794325374619473 -14268.0,0.020787144509238405 -14269.0,0.02077996612361211 -14270.0,0.02077279021688426 -14271.0,0.020765616788198833 -14272.0,0.020758445836700067 -14273.0,0.02075127736153254 -14274.0,0.02074411136184109 -14275.0,0.020736947836770884 -14276.0,0.020729786785467347 -14277.0,0.020722628207076228 -14278.0,0.020715472100743558 -14279.0,0.020708318465615674 -14280.0,0.020701167300839183 -14281.0,0.02069401860556101 -14282.0,0.020686872378928373 -14283.0,0.020679728620088773 -14284.0,0.020672587328190026 -14285.0,0.020665448502380206 -14286.0,0.020658312141807716 -14287.0,0.020651178245621238 -14288.0,0.020644046812969757 -14289.0,0.02063691784300253 -14290.0,0.02062979133486913 -14291.0,0.02062266728771942 -14292.0,0.02061554570070356 -14293.0,0.020608426572971975 -14294.0,0.02060130990367542 -14295.0,0.020594195691964925 -14296.0,0.020587083936991827 -14297.0,0.020579974637907724 -14298.0,0.02057286779386454 -14299.0,0.020565763404014486 -14300.0,0.020558661467510047 -14301.0,0.020551561983504035 -14302.0,0.020544464951149508 -14303.0,0.020537370369599853 -14304.0,0.02053027823800874 -14305.0,0.020523188555530137 -14306.0,0.02051610132131828 -14307.0,0.020509016534527715 -14308.0,0.02050193419431329 -14309.0,0.020494854299830136 -14310.0,0.020487776850233654 -14311.0,0.02048070184467957 -14312.0,0.020473629282323883 -14313.0,0.020466559162322897 -14314.0,0.020459491483833185 -14315.0,0.020452426246011627 -14316.0,0.020445363448015397 -14317.0,0.02043830308900196 -14318.0,0.02043124516812905 -14319.0,0.020424189684554717 -14320.0,0.020417136637437296 -14321.0,0.020410086025935407 -14322.0,0.020403037849207974 -14323.0,0.02039599210641418 -14324.0,0.020388948796713532 -14325.0,0.020381907919265814 -14326.0,0.020374869473231107 -14327.0,0.02036783345776976 -14328.0,0.020360799872042437 -14329.0,0.02035376871521008 -14330.0,0.020346739986433934 -14331.0,0.020339713684875506 -14332.0,0.020332689809696613 -14333.0,0.020325668360059366 -14334.0,0.02031864933512616 -14335.0,0.020311632734059663 -14336.0,0.02030461855602285 -14337.0,0.020297606800178985 -14338.0,0.020290597465691614 -14339.0,0.020283590551724583 -14340.0,0.020276586057442002 -14341.0,0.020269583982008295 -14342.0,0.020262584324588166 -14343.0,0.02025558708434661 -14344.0,0.0202485922604489 -14345.0,0.020241599852060605 -14346.0,0.020234609858347585 -14347.0,0.020227622278475993 -14348.0,0.020220637111612243 -14349.0,0.020213654356923065 -14350.0,0.020206674013575465 -14351.0,0.020199696080736754 -14352.0,0.02019272055757449 -14353.0,0.02018574744325656 -14354.0,0.02017877673695112 -14355.0,0.02017180843782662 -14356.0,0.02016484254505178 -14357.0,0.02015787905779563 -14358.0,0.02015091797522747 -14359.0,0.020143959296516897 -14360.0,0.020137003020833804 -14361.0,0.020130049147348335 -14362.0,0.020123097675230954 -14363.0,0.020116148603652403 -14364.0,0.020109201931783716 -14365.0,0.020102257658796186 -14366.0,0.020095315783861426 -14367.0,0.020088376306151314 -14368.0,0.020081439224838037 -14369.0,0.020074504539094026 -14370.0,0.02006757224809204 -14371.0,0.0200606423510051 -14372.0,0.020053714847006535 -14373.0,0.020046789735269924 -14374.0,0.02003986701496916 -14375.0,0.020032946685278417 -14376.0,0.020026028745372144 -14377.0,0.020019113194425092 -14378.0,0.02001220003161227 -14379.0,0.020005289256108998 -14380.0,0.019998380867090867 -14381.0,0.019991474863733767 -14382.0,0.01998457124521385 -14383.0,0.019977670010707563 -14384.0,0.019970771159391647 -14385.0,0.019963874690443122 -14386.0,0.01995698060303928 -14387.0,0.01995008889635771 -14388.0,0.019943199569576284 -14389.0,0.01993631262187316 -14390.0,0.019929428052426763 -14391.0,0.01992254586041582 -14392.0,0.019915666045019334 -14393.0,0.019908788605416606 -14394.0,0.01990191354078719 -14395.0,0.019895040850310946 -14396.0,0.019888170533168017 -14397.0,0.01988130258853882 -14398.0,0.01987443701560407 -14399.0,0.01986757381354473 -14400.0,0.019860712981542093 -14401.0,0.0198538545187777 -14402.0,0.0198469984244334 -14403.0,0.01984014469769129 -14404.0,0.019833293337733784 -14405.0,0.01982644434374356 -14406.0,0.019819597714903596 -14407.0,0.019812753450397118 -14408.0,0.019805911549407668 -14409.0,0.01979907201111905 -14410.0,0.019792234834715376 -14411.0,0.01978540001938099 -14412.0,0.019778567564300572 -14413.0,0.019771737468659047 -14414.0,0.019764909731641644 -14415.0,0.019758084352433865 -14416.0,0.019751261330221478 -14417.0,0.019744440664190555 -14418.0,0.01973762235352744 -14419.0,0.019730806397418768 -14420.0,0.019723992795051427 -14421.0,0.01971718154561261 -14422.0,0.01971037264828979 -14423.0,0.01970356610227072 -14424.0,0.01969676190674341 -14425.0,0.01968996006089618 -14426.0,0.019683160563917623 -14427.0,0.01967636341499661 -14428.0,0.019669568613322277 -14429.0,0.019662776158084063 -14430.0,0.01965598604847168 -14431.0,0.019649198283675118 -14432.0,0.019642412862884637 -14433.0,0.019635629785290792 -14434.0,0.01962884905008441 -14435.0,0.019622070656456596 -14436.0,0.019615294603598753 -14437.0,0.019608520890702523 -14438.0,0.019601749516959865 -14439.0,0.019594980481563 -14440.0,0.019588213783704442 -14441.0,0.019581449422576957 -14442.0,0.019574687397373614 -14443.0,0.019567927707287748 -14444.0,0.019561170351512995 -14445.0,0.019554415329243225 -14446.0,0.019547662639672628 -14447.0,0.019540912281995657 -14448.0,0.01953416425540705 -14449.0,0.019527418559101797 -14450.0,0.0195206751922752 -14451.0,0.019513934154122822 -14452.0,0.019507195443840507 -14453.0,0.019500459060624382 -14454.0,0.019493725003670827 -14455.0,0.019486993272176536 -14456.0,0.01948026386533845 -14457.0,0.01947353678235382 -14458.0,0.01946681202242013 -14459.0,0.019460089584735177 -14460.0,0.019453369468497017 -14461.0,0.019446651672904006 -14462.0,0.01943993619715474 -14463.0,0.019433223040448113 -14464.0,0.019426512201983305 -14465.0,0.019419803680959767 -14466.0,0.019413097476577202 -14467.0,0.01940639358803562 -14468.0,0.019399692014535296 -14469.0,0.019392992755276787 -14470.0,0.019386295809460902 -14471.0,0.019379601176288758 -14472.0,0.01937290885496173 -14473.0,0.019366218844681475 -14474.0,0.01935953114464993 -14475.0,0.019352845754069287 -14476.0,0.019346162672142033 -14477.0,0.019339481898070925 -14478.0,0.01933280343105901 -14479.0,0.019326127270309572 -14480.0,0.0193194534150262 -14481.0,0.01931278186441276 -14482.0,0.019306112617673392 -14483.0,0.01929944567401248 -14484.0,0.019292781032634716 -14485.0,0.019286118692745064 -14486.0,0.019279458653548756 -14487.0,0.019272800914251285 -14488.0,0.019266145474058437 -14489.0,0.019259492332176272 -14490.0,0.01925284148781111 -14491.0,0.019246192940169573 -14492.0,0.019239546688458512 -14493.0,0.019232902731885087 -14494.0,0.019226261069656726 -14495.0,0.019219621700981137 -14496.0,0.01921298462506627 -14497.0,0.01920634984112038 -14498.0,0.019199717348351988 -14499.0,0.01919308714596989 -14500.0,0.01918645923318314 -14501.0,0.01917983360920108 -14502.0,0.01917321027323332 -14503.0,0.019166589224489758 -14504.0,0.019159970462180535 -14505.0,0.019153353985516083 -14506.0,0.01914673979370711 -14507.0,0.019140127885964597 -14508.0,0.019133518261499775 -14509.0,0.019126910919524176 -14510.0,0.019120305859249585 -14511.0,0.01911370307988807 -14512.0,0.019107102580651982 -14513.0,0.019100504360753903 -14514.0,0.019093908419406728 -14515.0,0.019087314755823606 -14516.0,0.019080723369217973 -14517.0,0.019074134258803502 -14518.0,0.019067547423794174 -14519.0,0.019060962863404227 -14520.0,0.01905438057684818 -14521.0,0.019047800563340794 -14522.0,0.01904122282209713 -14523.0,0.019034647352332512 -14524.0,0.019028074153262547 -14525.0,0.01902150322410308 -14526.0,0.019014934564070253 -14527.0,0.019008368172380476 -14528.0,0.019001804048250425 -14529.0,0.01899524219089706 -14530.0,0.018988682599537576 -14531.0,0.018982125273389477 -14532.0,0.018975570211670515 -14533.0,0.018969017413598733 -14534.0,0.018962466878392408 -14535.0,0.01895591860527012 -14536.0,0.01894937259345071 -14537.0,0.018942828842153293 -14538.0,0.01893628735059723 -14539.0,0.018929748118002177 -14540.0,0.01892321114358805 -14541.0,0.018916676426575046 -14542.0,0.018910143966183603 -14543.0,0.018903613761634457 -14544.0,0.0188970858121486 -14545.0,0.018890560116947303 -14546.0,0.018884036675252083 -14547.0,0.018877515486284746 -14548.0,0.01887099654926737 -14549.0,0.01886447986342228 -14550.0,0.018857965427972107 -14551.0,0.018851453242139694 -14552.0,0.018844943305148205 -14553.0,0.018838435616221047 -14554.0,0.01883193017458191 -14555.0,0.018825426979454725 -14556.0,0.018818926030063715 -14557.0,0.018812427325633364 -14558.0,0.018805930865388436 -14559.0,0.018799436648553932 -14560.0,0.018792944674355144 -14561.0,0.018786454942017635 -14562.0,0.018779967450767227 -14563.0,0.018773482199829997 -14564.0,0.01876699918843231 -14565.0,0.01876051841580079 -14566.0,0.01875403988116233 -14567.0,0.018747563583744093 -14568.0,0.018741089522773487 -14569.0,0.018734617697478216 -14570.0,0.018728148107086232 -14571.0,0.018721680750825778 -14572.0,0.01871521562792532 -14573.0,0.01870875273761363 -14574.0,0.018702292079119727 -14575.0,0.018695833651672912 -14576.0,0.018689377454502727 -14577.0,0.018682923486839004 -14578.0,0.01867647174791183 -14579.0,0.018670022236951564 -14580.0,0.018663574953188815 -14581.0,0.018657129895854475 -14582.0,0.0186506870641797 -14583.0,0.01864424645739591 -14584.0,0.01863780807473477 -14585.0,0.01863137191542824 -14586.0,0.018624937978708532 -14587.0,0.018618506263808128 -14588.0,0.01861207676995977 -14589.0,0.01860564949639646 -14590.0,0.018599224442351472 -14591.0,0.01859280160705835 -14592.0,0.0185863809897509 -14593.0,0.018579962589663174 -14594.0,0.018573546406029512 -14595.0,0.018567132438084513 -14596.0,0.01856072068506304 -14597.0,0.01855431114620021 -14598.0,0.018547903820731407 -14599.0,0.018541498707892293 -14600.0,0.018535095806918794 -14601.0,0.018528695117047068 -14602.0,0.01852229663751357 -14603.0,0.018515900367555013 -14604.0,0.01850950630640836 -14605.0,0.01850311445331086 -14606.0,0.018496724807499993 -14607.0,0.01849033736821353 -14608.0,0.018483952134689497 -14609.0,0.01847756910616619 -14610.0,0.018471188281882142 -14611.0,0.01846480966107618 -14612.0,0.018458433242987373 -14613.0,0.018452059026855074 -14614.0,0.018445687011918867 -14615.0,0.01843931719741863 -14616.0,0.018432949582594487 -14617.0,0.018426584166686837 -14618.0,0.018420220948936316 -14619.0,0.018413859928583846 -14620.0,0.018407501104870605 -14621.0,0.018401144477038035 -14622.0,0.018394790044327827 -14623.0,0.01838843780598195 -14624.0,0.018382087761242626 -14625.0,0.018375739909352342 -14626.0,0.018369394249553854 -14627.0,0.018363050781090153 -14628.0,0.01835670950320452 -14629.0,0.018350370415140486 -14630.0,0.01834403351614185 -14631.0,0.018337698805452655 -14632.0,0.018331366282317223 -14633.0,0.018325035945980124 -14634.0,0.01831870779568621 -14635.0,0.01831238183068056 -14636.0,0.018306058050208542 -14637.0,0.01829973645351577 -14638.0,0.01829341703984813 -14639.0,0.01828709980845176 -14640.0,0.018280784758573077 -14641.0,0.01827447188945871 -14642.0,0.018268161200355588 -14643.0,0.0182618526905109 -14644.0,0.01825554635917209 -14645.0,0.01824924220558685 -14646.0,0.018242940229003142 -14647.0,0.01823664042866919 -14648.0,0.01823034280383347 -14649.0,0.01822404735374474 -14650.0,0.018217754077651967 -14651.0,0.018211462974804422 -14652.0,0.018205174044451624 -14653.0,0.018198887285843353 -14654.0,0.01819260269822964 -14655.0,0.018186320280860778 -14656.0,0.018180040032987323 -14657.0,0.018173761953860106 -14658.0,0.018167486042730163 -14659.0,0.018161212298848838 -14660.0,0.018154940721467724 -14661.0,0.01814867130983866 -14662.0,0.018142404063213758 -14663.0,0.018136138980845377 -14664.0,0.01812987606198614 -14665.0,0.018123615305888928 -14666.0,0.018117356711806892 -14667.0,0.0181111002789934 -14668.0,0.018104846006702112 -14669.0,0.018098593894186946 -14670.0,0.01809234394070207 -14671.0,0.018086096145501905 -14672.0,0.018079850507841142 -14673.0,0.018073607026974716 -14674.0,0.018067365702157844 -14675.0,0.018061126532645952 -14676.0,0.018054889517694763 -14677.0,0.01804865465656025 -14678.0,0.01804242194849864 -14679.0,0.018036191392766413 -14680.0,0.018029962988620314 -14681.0,0.018023736735317337 -14682.0,0.018017512632114735 -14683.0,0.018011290678270033 -14684.0,0.018005070873040967 -14685.0,0.017998853215685576 -14686.0,0.01799263770546214 -14687.0,0.017986424341629188 -14688.0,0.017980213123445516 -14689.0,0.017974004050170172 -14690.0,0.017967797121062456 -14691.0,0.017961592335381943 -14692.0,0.017955389692388416 -14693.0,0.01794918919134196 -14694.0,0.017942990831502904 -14695.0,0.017936794612131823 -14696.0,0.017930600532489557 -14697.0,0.017924408591837197 -14698.0,0.01791821878943609 -14699.0,0.017912031124547832 -14700.0,0.017905845596434305 -14701.0,0.017899662204357583 -14702.0,0.017893480947580052 -14703.0,0.01788730182536433 -14704.0,0.01788112483697329 -14705.0,0.01787494998167007 -14706.0,0.01786877725871805 -14707.0,0.01786260666738087 -14708.0,0.017856438206922436 -14709.0,0.01785027187660687 -14710.0,0.017844107675698585 -14711.0,0.017837945603462243 -14712.0,0.017831785659162745 -14713.0,0.017825627842065258 -14714.0,0.0178194721514352 -14715.0,0.017813318586538247 -14716.0,0.01780716714664033 -14717.0,0.017801017831007602 -14718.0,0.017794870638906505 -14719.0,0.01778872556960373 -14720.0,0.017782582622366212 -14721.0,0.01777644179646114 -14722.0,0.017770303091155962 -14723.0,0.017764166505718375 -14724.0,0.017758032039416328 -14725.0,0.017751899691518035 -14726.0,0.017745769461291926 -14727.0,0.017739641348006728 -14728.0,0.017733515350931393 -14729.0,0.01772739146933514 -14730.0,0.01772126970248743 -14731.0,0.01771515004965799 -14732.0,0.017709032510116778 -14733.0,0.01770291708313404 -14734.0,0.017696803767980215 -14735.0,0.01769069256392605 -14736.0,0.017684583470242515 -14737.0,0.017678476486200845 -14738.0,0.01767237161107252 -14739.0,0.017666268844129276 -14740.0,0.017660168184643093 -14741.0,0.017654069631886208 -14742.0,0.017647973185131123 -14743.0,0.01764187884365055 -14744.0,0.017635786606717486 -14745.0,0.01762969647360518 -14746.0,0.017623608443587114 -14747.0,0.01761752251593704 -14748.0,0.017611438689928947 -14749.0,0.017605356964837077 -14750.0,0.017599277339935944 -14751.0,0.01759319981450026 -14752.0,0.017587124387805034 -14753.0,0.017581051059125514 -14754.0,0.017574979827737196 -14755.0,0.01756891069291583 -14756.0,0.017562843653937406 -14757.0,0.017556778710078172 -14758.0,0.01755071586061463 -14759.0,0.017544655104823535 -14760.0,0.017538596441981854 -14761.0,0.01753253987136685 -14762.0,0.017526485392256017 -14763.0,0.0175204330039271 -14764.0,0.017514382705658093 -14765.0,0.01750833449672724 -14766.0,0.017502288376413034 -14767.0,0.01749624434399423 -14768.0,0.017490202398749793 -14769.0,0.01748416253995897 -14770.0,0.017478124766901262 -14771.0,0.017472089078856397 -14772.0,0.017466055475104363 -14773.0,0.017460023954925397 -14774.0,0.017453994517599984 -14775.0,0.017447967162408852 -14776.0,0.017441941888633 -14777.0,0.017435918695553623 -14778.0,0.017429897582452218 -14779.0,0.017423878548610505 -14780.0,0.017417861593310463 -14781.0,0.017411846715834307 -14782.0,0.01740583391546451 -14783.0,0.017399823191483785 -14784.0,0.017393814543175116 -14785.0,0.017387807969821686 -14786.0,0.01738180347070696 -14787.0,0.01737580104511466 -14788.0,0.017369800692328723 -14789.0,0.017363802411633364 -14790.0,0.017357806202313027 -14791.0,0.01735181206365241 -14792.0,0.01734581999493647 -14793.0,0.017339829995450362 -14794.0,0.017333842064479545 -14795.0,0.0173278562013097 -14796.0,0.017321872405226757 -14797.0,0.01731589067551689 -14798.0,0.017309911011466526 -14799.0,0.017303933412362336 -14800.0,0.017297957877491228 -14801.0,0.01729198440614039 -14802.0,0.017286012997597192 -14803.0,0.017280043651149306 -14804.0,0.017274076366084638 -14805.0,0.017268111141691325 -14806.0,0.017262147977257763 -14807.0,0.017256186872072594 -14808.0,0.017250227825424697 -14809.0,0.017244270836603216 -14810.0,0.0172383159048975 -14811.0,0.01723236302959718 -14812.0,0.01722641220999212 -14813.0,0.01722046344537244 -14814.0,0.01721451673502848 -14815.0,0.017208572078250856 -14816.0,0.017202629474330405 -14817.0,0.017196688922558222 -14818.0,0.017190750422225655 -14819.0,0.017184813972624256 -14820.0,0.017178879573045862 -14821.0,0.017172947222782547 -14822.0,0.01716701692112662 -14823.0,0.01716108866737064 -14824.0,0.01715516246080741 -14825.0,0.017149238300729983 -14826.0,0.017143316186431657 -14827.0,0.01713739611720594 -14828.0,0.017131478092346622 -14829.0,0.01712556211114773 -14830.0,0.017119648172903533 -14831.0,0.017113736276908535 -14832.0,0.017107826422457496 -14833.0,0.01710191860884541 -14834.0,0.017096012835367515 -14835.0,0.017090109101319317 -14836.0,0.017084207405996508 -14837.0,0.017078307748695076 -14838.0,0.017072410128711236 -14839.0,0.017066514545341444 -14840.0,0.0170606209978824 -14841.0,0.017054729485631043 -14842.0,0.017048840007884567 -14843.0,0.01704295256394041 -14844.0,0.017037067153096205 -14845.0,0.017031183774649898 -14846.0,0.01702530242789963 -14847.0,0.017019423112143807 -14848.0,0.017013545826681065 -14849.0,0.017007670570810294 -14850.0,0.01700179734383061 -14851.0,0.016995926145041383 -14852.0,0.016990056973742236 -14853.0,0.01698418982923299 -14854.0,0.016978324710813758 -14855.0,0.01697246161778487 -14856.0,0.016966600549446896 -14857.0,0.01696074150510066 -14858.0,0.016954884484047222 -14859.0,0.016949029485587876 -14860.0,0.016943176509024185 -14861.0,0.016937325553657897 -14862.0,0.01693147661879105 -14863.0,0.016925629703725912 -14864.0,0.016919784807764987 -14865.0,0.01691394193021102 -14866.0,0.016908101070367006 -14867.0,0.01690226222753616 -14868.0,0.01689642540102198 -14869.0,0.016890590590128134 -14870.0,0.01688475779415859 -14871.0,0.01687892701241754 -14872.0,0.016873098244209413 -14873.0,0.01686727148883888 -14874.0,0.016861446745610846 -14875.0,0.01685562401383047 -14876.0,0.01684980329280314 -14877.0,0.0168439845818345 -14878.0,0.01683816788023039 -14879.0,0.016832353187296933 -14880.0,0.016826540502340483 -14881.0,0.01682072982466763 -14882.0,0.016814921153585193 -14883.0,0.01680911448840025 -14884.0,0.016803309828420106 -14885.0,0.016797507172952322 -14886.0,0.01679170652130465 -14887.0,0.01678590787278513 -14888.0,0.016780111226702032 -14889.0,0.016774316582363856 -14890.0,0.016768523939079336 -14891.0,0.016762733296157458 -14892.0,0.016756944652907443 -14893.0,0.01675115800863874 -14894.0,0.01674537336266107 -14895.0,0.016739590714284325 -14896.0,0.0167338100628187 -14897.0,0.016728031407574607 -14898.0,0.016722254747862687 -14899.0,0.016716480082993836 -14900.0,0.01671070741227917 -14901.0,0.016704936735030054 -14902.0,0.016699168050558107 -14903.0,0.016693401358175135 -14904.0,0.016687636657193226 -14905.0,0.016681873946924695 -14906.0,0.016676113226682093 -14907.0,0.01667035449577821 -14908.0,0.016664597753526068 -14909.0,0.016658842999238928 -14910.0,0.016653090232230296 -14911.0,0.01664733945181392 -14912.0,0.016641590657303744 -14913.0,0.016635843848013993 -14914.0,0.01663009902325912 -14915.0,0.0166243561823538 -14916.0,0.01661861532461296 -14917.0,0.01661287644935176 -14918.0,0.016607139555885587 -14919.0,0.01660140464353009 -14920.0,0.016595671711601107 -14921.0,0.016589940759414754 -14922.0,0.01658421178628737 -14923.0,0.016578484791535533 -14924.0,0.016572759774476052 -14925.0,0.01656703673442597 -14926.0,0.01656131567070258 -14927.0,0.016555596582623396 -14928.0,0.016549879469506187 -14929.0,0.01654416433066891 -14930.0,0.01653845116542981 -14931.0,0.01653273997310735 -14932.0,0.016527030753020217 -14933.0,0.016521323504487352 -14934.0,0.01651561822682792 -14935.0,0.01650991491936132 -14936.0,0.016504213581407207 -14937.0,0.01649851421228542 -14938.0,0.016492816811316084 -14939.0,0.016487121377819536 -14940.0,0.01648142791111636 -14941.0,0.01647573641052736 -14942.0,0.01647004687537358 -14943.0,0.01646435930497631 -14944.0,0.01645867369865707 -14945.0,0.016452990055737582 -14946.0,0.016447308375539843 -14947.0,0.016441628657386072 -14948.0,0.01643595090059872 -14949.0,0.016430275104500465 -14950.0,0.016424601268414236 -14951.0,0.01641892939166318 -14952.0,0.016413259473570682 -14953.0,0.016407591513460384 -14954.0,0.016401925510656102 -14955.0,0.016396261464481945 -14956.0,0.016390599374262228 -14957.0,0.016384939239321505 -14958.0,0.01637928105898457 -14959.0,0.016373624832576435 -14960.0,0.016367970559422358 -14961.0,0.016362318238847838 -14962.0,0.01635666787017857 -14963.0,0.016351019452740513 -14964.0,0.01634537298585986 -14965.0,0.016339728468863023 -14966.0,0.016334085901076652 -14967.0,0.016328445281827635 -14968.0,0.01632280661044308 -14969.0,0.016317169886250343 -14970.0,0.016311535108577014 -14971.0,0.016305902276750873 -14972.0,0.016300271390099985 -14973.0,0.01629464244795262 -14974.0,0.01628901544963729 -14975.0,0.016283390394482736 -14976.0,0.01627776728181793 -14977.0,0.01627214611097207 -14978.0,0.016266526881274612 -14979.0,0.016260909592055194 -14980.0,0.016255294242643725 -14981.0,0.016249680832370335 -14982.0,0.01624406936056539 -14983.0,0.016238459826559474 -14984.0,0.016232852229683417 -14985.0,0.016227246569268276 -14986.0,0.016221642844645327 -14987.0,0.01621604105514611 -14988.0,0.01621044120010234 -14989.0,0.01620484327884601 -14990.0,0.016199247290709325 -14991.0,0.016193653235024728 -14992.0,0.01618806111112489 -14993.0,0.016182470918342712 -14994.0,0.01617688265601132 -14995.0,0.016171296323464094 -14996.0,0.016165711920034593 -14997.0,0.016160129445056657 -14998.0,0.016154548897864333 -14999.0,0.016148970277791906 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516200500_theo_VPR_VPR.png b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516200500_theo_VPR_VPR.png deleted file mode 100644 index 49b33b3..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516200500_theo_VPR_VPR.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516201000_theo_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516201000_theo_VPR_VPR.csv deleted file mode 100644 index 8960e5a..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516201000_theo_VPR_VPR.csv +++ /dev/null @@ -1,15008 +0,0 @@ -# Height Profile -# ============== -# -# Datatype (Unit) : normalized reflectivity (-) -# Fill value : -9999.0 -# Time : 2020-05-16 20:10:00 -# Sector specification: None -Altitude [m MSL],Znorm -0.0,1.0 -1.0,1.0 -2.0,1.0 -3.0,1.0 -4.0,1.0 -5.0,1.0 -6.0,1.0 -7.0,1.0 -8.0,1.0 -9.0,1.0 -10.0,1.0 -11.0,1.0 -12.0,1.0 -13.0,1.0 -14.0,1.0 -15.0,1.0 -16.0,1.0 -17.0,1.0 -18.0,1.0 -19.0,1.0 -20.0,1.0 -21.0,1.0 -22.0,1.0 -23.0,1.0 -24.0,1.0 -25.0,1.0 -26.0,1.0 -27.0,1.0 -28.0,1.0 -29.0,1.0 -30.0,1.0 -31.0,1.0 -32.0,1.0 -33.0,1.0 -34.0,1.0 -35.0,1.0 -36.0,1.0 -37.0,1.0 -38.0,1.0 -39.0,1.0 -40.0,1.0 -41.0,1.0 -42.0,1.0 -43.0,1.0 -44.0,1.0 -45.0,1.0 -46.0,1.0 -47.0,1.0 -48.0,1.0 -49.0,1.0 -50.0,1.0 -51.0,1.0 -52.0,1.0 -53.0,1.0 -54.0,1.0 -55.0,1.0 -56.0,1.0 -57.0,1.0 -58.0,1.0 -59.0,1.0 -60.0,1.0 -61.0,1.0 -62.0,1.0 -63.0,1.0 -64.0,1.0 -65.0,1.0 -66.0,1.0 -67.0,1.0 -68.0,1.0 -69.0,1.0 -70.0,1.0 -71.0,1.0 -72.0,1.0 -73.0,1.0 -74.0,1.0 -75.0,1.0 -76.0,1.0 -77.0,1.0 -78.0,1.0 -79.0,1.0 -80.0,1.0 -81.0,1.0 -82.0,1.0 -83.0,1.0 -84.0,1.0 -85.0,1.0 -86.0,1.0 -87.0,1.0 -88.0,1.0 -89.0,1.0 -90.0,1.0 -91.0,1.0 -92.0,1.0 -93.0,1.0 -94.0,1.0 -95.0,1.0 -96.0,1.0 -97.0,1.0 -98.0,1.0 -99.0,1.0 -100.0,1.0 -101.0,1.0 -102.0,1.0 -103.0,1.0 -104.0,1.0 -105.0,1.0 -106.0,1.0 -107.0,1.0 -108.0,1.0 -109.0,1.0 -110.0,1.0 -111.0,1.0 -112.0,1.0 -113.0,1.0 -114.0,1.0 -115.0,1.0 -116.0,1.0 -117.0,1.0 -118.0,1.0 -119.0,1.0 -120.0,1.0 -121.0,1.0 -122.0,1.0 -123.0,1.0 -124.0,1.0 -125.0,1.0 -126.0,1.0 -127.0,1.0 -128.0,1.0 -129.0,1.0 -130.0,1.0 -131.0,1.0 -132.0,1.0 -133.0,1.0 -134.0,1.0 -135.0,1.0 -136.0,1.0 -137.0,1.0 -138.0,1.0 -139.0,1.0 -140.0,1.0 -141.0,1.0 -142.0,1.0 -143.0,1.0 -144.0,1.0 -145.0,1.0 -146.0,1.0 -147.0,1.0 -148.0,1.0 -149.0,1.0 -150.0,1.0 -151.0,1.0 -152.0,1.0 -153.0,1.0 -154.0,1.0 -155.0,1.0 -156.0,1.0 -157.0,1.0 -158.0,1.0 -159.0,1.0 -160.0,1.0 -161.0,1.0 -162.0,1.0 -163.0,1.0 -164.0,1.0 -165.0,1.0 -166.0,1.0 -167.0,1.0 -168.0,1.0 -169.0,1.0 -170.0,1.0 -171.0,1.0 -172.0,1.0 -173.0,1.0 -174.0,1.0 -175.0,1.0 -176.0,1.0 -177.0,1.0 -178.0,1.0 -179.0,1.0 -180.0,1.0 -181.0,1.0 -182.0,1.0 -183.0,1.0 -184.0,1.0 -185.0,1.0 -186.0,1.0 -187.0,1.0 -188.0,1.0 -189.0,1.0 -190.0,1.0 -191.0,1.0 -192.0,1.0 -193.0,1.0 -194.0,1.0 -195.0,1.0 -196.0,1.0 -197.0,1.0 -198.0,1.0 -199.0,1.0 -200.0,1.0 -201.0,1.0 -202.0,1.0 -203.0,1.0 -204.0,1.0 -205.0,1.0 -206.0,1.0 -207.0,1.0 -208.0,1.0 -209.0,1.0 -210.0,1.0 -211.0,1.0 -212.0,1.0 -213.0,1.0 -214.0,1.0 -215.0,1.0 -216.0,1.0 -217.0,1.0 -218.0,1.0 -219.0,1.0 -220.0,1.0 -221.0,1.0 -222.0,1.0 -223.0,1.0 -224.0,1.0 -225.0,1.0 -226.0,1.0 -227.0,1.0 -228.0,1.0 -229.0,1.0 -230.0,1.0 -231.0,1.0 -232.0,1.0 -233.0,1.0 -234.0,1.0 -235.0,1.0 -236.0,1.0 -237.0,1.0 -238.0,1.0 -239.0,1.0 -240.0,1.0 -241.0,1.0 -242.0,1.0 -243.0,1.0 -244.0,1.0 -245.0,1.0 -246.0,1.0 -247.0,1.0 -248.0,1.0 -249.0,1.0 -250.0,1.0 -251.0,1.0 -252.0,1.0 -253.0,1.0 -254.0,1.0 -255.0,1.0 -256.0,1.0 -257.0,1.0 -258.0,1.0 -259.0,1.0 -260.0,1.0 -261.0,1.0 -262.0,1.0 -263.0,1.0 -264.0,1.0 -265.0,1.0 -266.0,1.0 -267.0,1.0 -268.0,1.0 -269.0,1.0 -270.0,1.0 -271.0,1.0 -272.0,1.0 -273.0,1.0 -274.0,1.0 -275.0,1.0 -276.0,1.0 -277.0,1.0 -278.0,1.0 -279.0,1.0 -280.0,1.0 -281.0,1.0 -282.0,1.0 -283.0,1.0 -284.0,1.0 -285.0,1.0 -286.0,1.0 -287.0,1.0 -288.0,1.0 -289.0,1.0 -290.0,1.0 -291.0,1.0 -292.0,1.0 -293.0,1.0 -294.0,1.0 -295.0,1.0 -296.0,1.0 -297.0,1.0 -298.0,1.0 -299.0,1.0 -300.0,1.0 -301.0,1.0 -302.0,1.0 -303.0,1.0 -304.0,1.0 -305.0,1.0 -306.0,1.0 -307.0,1.0 -308.0,1.0 -309.0,1.0 -310.0,1.0 -311.0,1.0 -312.0,1.0 -313.0,1.0 -314.0,1.0 -315.0,1.0 -316.0,1.0 -317.0,1.0 -318.0,1.0 -319.0,1.0 -320.0,1.0 -321.0,1.0 -322.0,1.0 -323.0,1.0 -324.0,1.0 -325.0,1.0 -326.0,1.0 -327.0,1.0 -328.0,1.0 -329.0,1.0 -330.0,1.0 -331.0,1.0 -332.0,1.0 -333.0,1.0 -334.0,1.0 -335.0,1.0 -336.0,1.0 -337.0,1.0 -338.0,1.0 -339.0,1.0 -340.0,1.0 -341.0,1.0 -342.0,1.0 -343.0,1.0 -344.0,1.0 -345.0,1.0 -346.0,1.0 -347.0,1.0 -348.0,1.0 -349.0,1.0 -350.0,1.0 -351.0,1.0 -352.0,1.0 -353.0,1.0 -354.0,1.0 -355.0,1.0 -356.0,1.0 -357.0,1.0 -358.0,1.0 -359.0,1.0 -360.0,1.0 -361.0,1.0 -362.0,1.0 -363.0,1.0 -364.0,1.0 -365.0,1.0 -366.0,1.0 -367.0,1.0 -368.0,1.0 -369.0,1.0 -370.0,1.0 -371.0,1.0 -372.0,1.0 -373.0,1.0 -374.0,1.0 -375.0,1.0 -376.0,1.0 -377.0,1.0 -378.0,1.0 -379.0,1.0 -380.0,1.0 -381.0,1.0 -382.0,1.0 -383.0,1.0 -384.0,1.0 -385.0,1.0 -386.0,1.0 -387.0,1.0 -388.0,1.0 -389.0,1.0 -390.0,1.0 -391.0,1.0 -392.0,1.0 -393.0,1.0 -394.0,1.0 -395.0,1.0 -396.0,1.0 -397.0,1.0 -398.0,1.0 -399.0,1.0 -400.0,1.0 -401.0,1.0 -402.0,1.0 -403.0,1.0 -404.0,1.0 -405.0,1.0 -406.0,1.0 -407.0,1.0 -408.0,1.0 -409.0,1.0 -410.0,1.0 -411.0,1.0 -412.0,1.0 -413.0,1.0 -414.0,1.0 -415.0,1.0 -416.0,1.0 -417.0,1.0 -418.0,1.0 -419.0,1.0 -420.0,1.0 -421.0,1.0 -422.0,1.0 -423.0,1.0 -424.0,1.0 -425.0,1.0 -426.0,1.0 -427.0,1.0 -428.0,1.0 -429.0,1.0 -430.0,1.0 -431.0,1.0 -432.0,1.0 -433.0,1.0 -434.0,1.0 -435.0,1.0 -436.0,1.0 -437.0,1.0 -438.0,1.0 -439.0,1.0 -440.0,1.0 -441.0,1.0 -442.0,1.0 -443.0,1.0 -444.0,1.0 -445.0,1.0 -446.0,1.0 -447.0,1.0 -448.0,1.0 -449.0,1.0 -450.0,1.0 -451.0,1.0 -452.0,1.0 -453.0,1.0 -454.0,1.0 -455.0,1.0 -456.0,1.0 -457.0,1.0 -458.0,1.0 -459.0,1.0 -460.0,1.0 -461.0,1.0 -462.0,1.0 -463.0,1.0 -464.0,1.0 -465.0,1.0 -466.0,1.0 -467.0,1.0 -468.0,1.0 -469.0,1.0 -470.0,1.0 -471.0,1.0 -472.0,1.0 -473.0,1.0 -474.0,1.0 -475.0,1.0 -476.0,1.0 -477.0,1.0 -478.0,1.0 -479.0,1.0 -480.0,1.0 -481.0,1.0 -482.0,1.0 -483.0,1.0 -484.0,1.0 -485.0,1.0 -486.0,1.0 -487.0,1.0 -488.0,1.0 -489.0,1.0 -490.0,1.0 -491.0,1.0 -492.0,1.0 -493.0,1.0 -494.0,1.0 -495.0,1.0 -496.0,1.0 -497.0,1.0 -498.0,1.0 -499.0,1.0 -500.0,1.0 -501.0,1.0 -502.0,1.0 -503.0,1.0 -504.0,1.0 -505.0,1.0 -506.0,1.0 -507.0,1.0 -508.0,1.0 -509.0,1.0 -510.0,1.0 -511.0,1.0 -512.0,1.0 -513.0,1.0 -514.0,1.0 -515.0,1.0 -516.0,1.0 -517.0,1.0 -518.0,1.0 -519.0,1.0 -520.0,1.0 -521.0,1.0 -522.0,1.0 -523.0,1.0 -524.0,1.0 -525.0,1.0 -526.0,1.0 -527.0,1.0 -528.0,1.0 -529.0,1.0 -530.0,1.0 -531.0,1.0 -532.0,1.0 -533.0,1.0 -534.0,1.0 -535.0,1.0 -536.0,1.0 -537.0,1.0 -538.0,1.0 -539.0,1.0 -540.0,1.0 -541.0,1.0 -542.0,1.0 -543.0,1.0 -544.0,1.0 -545.0,1.0 -546.0,1.0 -547.0,1.0 -548.0,1.0 -549.0,1.0 -550.0,1.0 -551.0,1.0 -552.0,1.0 -553.0,1.0 -554.0,1.0 -555.0,1.0 -556.0,1.0 -557.0,1.0 -558.0,1.0 -559.0,1.0 -560.0,1.0 -561.0,1.0 -562.0,1.0 -563.0,1.0 -564.0,1.0 -565.0,1.0 -566.0,1.0 -567.0,1.0 -568.0,1.0 -569.0,1.0 -570.0,1.0 -571.0,1.0 -572.0,1.0 -573.0,1.0 -574.0,1.0 -575.0,1.0 -576.0,1.0 -577.0,1.0 -578.0,1.0 -579.0,1.0 -580.0,1.0 -581.0,1.0 -582.0,1.0 -583.0,1.0 -584.0,1.0 -585.0,1.0 -586.0,1.0 -587.0,1.0 -588.0,1.0 -589.0,1.0 -590.0,1.0 -591.0,1.0 -592.0,1.0 -593.0,1.0 -594.0,1.0 -595.0,1.0 -596.0,1.0 -597.0,1.0 -598.0,1.0 -599.0,1.0 -600.0,1.0 -601.0,1.0 -602.0,1.0 -603.0,1.0 -604.0,1.0 -605.0,1.0 -606.0,1.0 -607.0,1.0 -608.0,1.0 -609.0,1.0 -610.0,1.0 -611.0,1.0 -612.0,1.0 -613.0,1.0 -614.0,1.0 -615.0,1.0 -616.0,1.0 -617.0,1.0 -618.0,1.0 -619.0,1.0 -620.0,1.0 -621.0,1.0 -622.0,1.0 -623.0,1.0 -624.0,1.0 -625.0,1.0 -626.0,1.0 -627.0,1.0 -628.0,1.0 -629.0,1.0 -630.0,1.0 -631.0,1.0 -632.0,1.0 -633.0,1.0 -634.0,1.0 -635.0,1.0 -636.0,1.0 -637.0,1.0 -638.0,1.0 -639.0,1.0 -640.0,1.0 -641.0,1.0 -642.0,1.0 -643.0,1.0 -644.0,1.0 -645.0,1.0 -646.0,1.0 -647.0,1.0 -648.0,1.0 -649.0,1.0 -650.0,1.0 -651.0,1.0 -652.0,1.0 -653.0,1.0 -654.0,1.0 -655.0,1.0 -656.0,1.0 -657.0,1.0 -658.0,1.0 -659.0,1.0 -660.0,1.0 -661.0,1.0 -662.0,1.0 -663.0,1.0 -664.0,1.0 -665.0,1.0 -666.0,1.0 -667.0,1.0 -668.0,1.0 -669.0,1.0 -670.0,1.0 -671.0,1.0 -672.0,1.0 -673.0,1.0 -674.0,1.0 -675.0,1.0 -676.0,1.0 -677.0,1.0 -678.0,1.0 -679.0,1.0 -680.0,1.0 -681.0,1.0 -682.0,1.0 -683.0,1.0 -684.0,1.0 -685.0,1.0 -686.0,1.0 -687.0,1.0 -688.0,1.0 -689.0,1.0 -690.0,1.0 -691.0,1.0 -692.0,1.0 -693.0,1.0 -694.0,1.0 -695.0,1.0 -696.0,1.0 -697.0,1.0 -698.0,1.0 -699.0,1.0 -700.0,1.0 -701.0,1.0 -702.0,1.0 -703.0,1.0 -704.0,1.0 -705.0,1.0 -706.0,1.0 -707.0,1.0 -708.0,1.0 -709.0,1.0 -710.0,1.0 -711.0,1.0 -712.0,1.0 -713.0,1.0 -714.0,1.0 -715.0,1.0 -716.0,1.0 -717.0,1.0 -718.0,1.0 -719.0,1.0 -720.0,1.0 -721.0,1.0 -722.0,1.0 -723.0,1.0 -724.0,1.0 -725.0,1.0 -726.0,1.0 -727.0,1.0 -728.0,1.0 -729.0,1.0 -730.0,1.0 -731.0,1.0 -732.0,1.0 -733.0,1.0 -734.0,1.0 -735.0,1.0 -736.0,1.0 -737.0,1.0 -738.0,1.0 -739.0,1.0 -740.0,1.0 -741.0,1.0 -742.0,1.0 -743.0,1.0 -744.0,1.0 -745.0,1.0 -746.0,1.0 -747.0,1.0 -748.0,1.0 -749.0,1.0 -750.0,1.0 -751.0,1.0 -752.0,1.0 -753.0,1.0 -754.0,1.0 -755.0,1.0 -756.0,1.0 -757.0,1.0 -758.0,1.0 -759.0,1.0 -760.0,1.0 -761.0,1.0 -762.0,1.0 -763.0,1.0 -764.0,1.0 -765.0,1.0 -766.0,1.0 -767.0,1.0 -768.0,1.0 -769.0,1.0 -770.0,1.0 -771.0,1.0 -772.0,1.0 -773.0,1.0 -774.0,1.0 -775.0,1.0 -776.0,1.0 -777.0,1.0 -778.0,1.0 -779.0,1.0 -780.0,1.0 -781.0,1.0 -782.0,1.0 -783.0,1.0 -784.0,1.0 -785.0,1.0 -786.0,1.0 -787.0,1.0 -788.0,1.0 -789.0,1.0 -790.0,1.0 -791.0,1.0 -792.0,1.0 -793.0,1.0 -794.0,1.0 -795.0,1.0 -796.0,1.0 -797.0,1.0 -798.0,1.0 -799.0,1.0 -800.0,1.0 -801.0,1.0 -802.0,1.0 -803.0,1.0 -804.0,1.0 -805.0,1.0 -806.0,1.0 -807.0,1.0 -808.0,1.0 -809.0,1.0 -810.0,1.0 -811.0,1.0 -812.0,1.0 -813.0,1.0 -814.0,1.0 -815.0,1.0 -816.0,1.0 -817.0,1.0 -818.0,1.0 -819.0,1.0 -820.0,1.0 -821.0,1.0 -822.0,1.0 -823.0,1.0 -824.0,1.0 -825.0,1.0 -826.0,1.0 -827.0,1.0 -828.0,1.0 -829.0,1.0 -830.0,1.0 -831.0,1.0 -832.0,1.0 -833.0,1.0 -834.0,1.0 -835.0,1.0 -836.0,1.0 -837.0,1.0 -838.0,1.0 -839.0,1.0 -840.0,1.0 -841.0,1.0 -842.0,1.0 -843.0,1.0 -844.0,1.0 -845.0,1.0 -846.0,1.0 -847.0,1.0 -848.0,1.0 -849.0,1.0 -850.0,1.0 -851.0,1.0 -852.0,1.0 -853.0,1.0 -854.0,1.0 -855.0,1.0 -856.0,1.0 -857.0,1.0 -858.0,1.0 -859.0,1.0 -860.0,1.0 -861.0,1.0 -862.0,1.0 -863.0,1.0 -864.0,1.0 -865.0,1.0 -866.0,1.0 -867.0,1.0 -868.0,1.0 -869.0,1.0 -870.0,1.0 -871.0,1.0 -872.0,1.0 -873.0,1.0 -874.0,1.0 -875.0,1.0 -876.0,1.0 -877.0,1.0 -878.0,1.0 -879.0,1.0 -880.0,1.0 -881.0,1.0 -882.0,1.0 -883.0,1.0 -884.0,1.0 -885.0,1.0 -886.0,1.0 -887.0,1.0 -888.0,1.0 -889.0,1.0 -890.0,1.0 -891.0,1.0 -892.0,1.0 -893.0,1.0 -894.0,1.0 -895.0,1.0 -896.0,1.0 -897.0,1.0 -898.0,1.0 -899.0,1.0 -900.0,1.0 -901.0,1.0 -902.0,1.0 -903.0,1.0 -904.0,1.0 -905.0,1.0 -906.0,1.0 -907.0,1.0 -908.0,1.0 -909.0,1.0 -910.0,1.0 -911.0,1.0 -912.0,1.0 -913.0,1.0 -914.0,1.0 -915.0,1.0 -916.0,1.0 -917.0,1.0 -918.0,1.0 -919.0,1.0 -920.0,1.0 -921.0,1.0 -922.0,1.0 -923.0,1.0 -924.0,1.0 -925.0,1.0 -926.0,1.0 -927.0,1.0 -928.0,1.0 -929.0,1.0 -930.0,1.0 -931.0,1.0 -932.0,1.0 -933.0,1.0 -934.0,1.0 -935.0,1.0 -936.0,1.0 -937.0,1.0 -938.0,1.0 -939.0,1.0 -940.0,1.0 -941.0,1.0 -942.0,1.0 -943.0,1.0 -944.0,1.0 -945.0,1.0 -946.0,1.0 -947.0,1.0 -948.0,1.0 -949.0,1.0 -950.0,1.0 -951.0,1.0 -952.0,1.0 -953.0,1.0 -954.0,1.0 -955.0,1.0 -956.0,1.0 -957.0,1.0 -958.0,1.0 -959.0,1.0 -960.0,1.0 -961.0,1.0 -962.0,1.0 -963.0,1.0 -964.0,1.0 -965.0,1.0 -966.0,1.0 -967.0,1.0 -968.0,1.0 -969.0,1.0 -970.0,1.0 -971.0,1.0 -972.0,1.0 -973.0,1.0 -974.0,1.0 -975.0,1.0 -976.0,1.0 -977.0,1.0 -978.0,1.0 -979.0,1.0 -980.0,1.0 -981.0,1.0 -982.0,1.0 -983.0,1.0 -984.0,1.0 -985.0,1.0 -986.0,1.0 -987.0,1.0 -988.0,1.0 -989.0,1.0 -990.0,1.0 -991.0,1.0 -992.0,1.0 -993.0,1.0 -994.0,1.0 -995.0,1.0 -996.0,1.0 -997.0,1.0 -998.0,1.0 -999.0,1.0 -1000.0,1.0 -1001.0,1.0 -1002.0,1.0 -1003.0,1.0 -1004.0,1.0 -1005.0,1.0 -1006.0,1.0 -1007.0,1.0 -1008.0,1.0 -1009.0,1.0 -1010.0,1.0 -1011.0,1.0 -1012.0,1.0 -1013.0,1.0 -1014.0,1.0 -1015.0,1.0 -1016.0,1.0 -1017.0,1.0 -1018.0,1.0 -1019.0,1.0 -1020.0,1.0 -1021.0,1.0 -1022.0,1.0 -1023.0,1.0 -1024.0,1.0 -1025.0,1.0 -1026.0,1.0 -1027.0,1.0 -1028.0,1.0 -1029.0,1.0 -1030.0,1.0 -1031.0,1.0 -1032.0,1.0 -1033.0,1.0 -1034.0,1.0 -1035.0,1.0 -1036.0,1.0 -1037.0,1.0 -1038.0,1.0 -1039.0,1.0 -1040.0,1.0 -1041.0,1.0 -1042.0,1.0 -1043.0,1.0 -1044.0,1.0 -1045.0,1.0 -1046.0,1.0 -1047.0,1.0 -1048.0,1.0 -1049.0,1.0 -1050.0,1.0 -1051.0,1.0 -1052.0,1.0 -1053.0,1.0 -1054.0,1.0 -1055.0,1.0 -1056.0,1.0 -1057.0,1.0 -1058.0,1.0 -1059.0,1.0 -1060.0,1.0 -1061.0,1.0 -1062.0,1.0 -1063.0,1.0 -1064.0,1.0 -1065.0,1.0 -1066.0,1.0 -1067.0,1.0 -1068.0,1.0 -1069.0,1.0 -1070.0,1.0 -1071.0,1.0 -1072.0,1.0 -1073.0,1.0 -1074.0,1.0 -1075.0,1.0 -1076.0,1.0 -1077.0,1.0 -1078.0,1.0 -1079.0,1.0 -1080.0,1.0 -1081.0,1.0 -1082.0,1.0 -1083.0,1.0 -1084.0,1.0 -1085.0,1.0 -1086.0,1.0 -1087.0,1.0 -1088.0,1.0 -1089.0,1.0 -1090.0,1.0 -1091.0,1.0 -1092.0,1.0 -1093.0,1.0 -1094.0,1.0 -1095.0,1.0 -1096.0,1.0 -1097.0,1.0 -1098.0,1.0 -1099.0,1.0 -1100.0,1.0 -1101.0,1.0 -1102.0,1.0 -1103.0,1.0 -1104.0,1.0 -1105.0,1.0 -1106.0,1.0 -1107.0,1.0 -1108.0,1.0 -1109.0,1.0 -1110.0,1.0 -1111.0,1.0 -1112.0,1.0 -1113.0,1.0 -1114.0,1.0 -1115.0,1.0 -1116.0,1.0 -1117.0,1.0 -1118.0,1.0 -1119.0,1.0 -1120.0,1.0 -1121.0,1.0 -1122.0,1.0 -1123.0,1.0 -1124.0,1.0 -1125.0,1.0 -1126.0,1.0 -1127.0,1.0 -1128.0,1.0 -1129.0,1.0 -1130.0,1.0 -1131.0,1.0 -1132.0,1.0 -1133.0,1.0 -1134.0,1.0 -1135.0,1.0 -1136.0,1.0 -1137.0,1.0 -1138.0,1.0 -1139.0,1.0 -1140.0,1.0 -1141.0,1.0 -1142.0,1.0 -1143.0,1.0 -1144.0,1.0 -1145.0,1.0 -1146.0,1.0 -1147.0,1.0 -1148.0,1.0 -1149.0,1.0 -1150.0,1.0 -1151.0,1.0 -1152.0,1.0 -1153.0,1.0 -1154.0,1.0 -1155.0,1.0 -1156.0,1.0 -1157.0,1.0 -1158.0,1.0 -1159.0,1.0 -1160.0,1.0 -1161.0,1.0 -1162.0,1.0 -1163.0,1.0 -1164.0,1.0 -1165.0,1.0 -1166.0,1.0 -1167.0,1.0 -1168.0,1.0 -1169.0,1.0 -1170.0,1.0 -1171.0,1.0 -1172.0,1.0 -1173.0,1.0 -1174.0,1.0 -1175.0,1.0 -1176.0,1.0 -1177.0,1.0 -1178.0,1.0 -1179.0,1.0 -1180.0,1.0 -1181.0,1.0 -1182.0,1.0 -1183.0,1.0 -1184.0,1.0 -1185.0,1.0 -1186.0,1.0 -1187.0,1.0 -1188.0,1.0 -1189.0,1.0 -1190.0,1.0 -1191.0,1.0 -1192.0,1.0 -1193.0,1.0 -1194.0,1.0 -1195.0,1.0 -1196.0,1.0 -1197.0,1.0 -1198.0,1.0 -1199.0,1.0 -1200.0,1.0 -1201.0,1.0 -1202.0,1.0 -1203.0,1.0 -1204.0,1.0 -1205.0,1.0 -1206.0,1.0 -1207.0,1.0 -1208.0,1.0 -1209.0,1.0 -1210.0,1.0 -1211.0,1.0 -1212.0,1.0 -1213.0,1.0 -1214.0,1.0 -1215.0,1.0 -1216.0,1.0 -1217.0,1.0 -1218.0,1.0 -1219.0,1.0 -1220.0,1.0 -1221.0,1.0 -1222.0,1.0 -1223.0,1.0 -1224.0,1.0 -1225.0,1.0 -1226.0,1.0 -1227.0,1.0 -1228.0,1.0 -1229.0,1.0 -1230.0,1.0 -1231.0,1.0 -1232.0,1.0 -1233.0,1.0 -1234.0,1.0 -1235.0,1.0 -1236.0,1.0 -1237.0,1.0 -1238.0,1.0 -1239.0,1.0 -1240.0,1.0 -1241.0,1.0 -1242.0,1.0 -1243.0,1.0 -1244.0,1.0 -1245.0,1.0 -1246.0,1.0 -1247.0,1.0 -1248.0,1.0 -1249.0,1.0 -1250.0,1.0 -1251.0,1.0 -1252.0,1.0 -1253.0,1.0 -1254.0,1.0 -1255.0,1.0 -1256.0,1.0 -1257.0,1.0 -1258.0,1.0 -1259.0,1.0 -1260.0,1.0 -1261.0,1.0 -1262.0,1.0 -1263.0,1.0 -1264.0,1.0 -1265.0,1.0 -1266.0,1.0 -1267.0,1.0 -1268.0,1.0 -1269.0,1.0 -1270.0,1.0 -1271.0,1.0 -1272.0,1.0 -1273.0,1.0 -1274.0,1.0 -1275.0,1.0 -1276.0,1.0 -1277.0,1.0 -1278.0,1.0 -1279.0,1.0 -1280.0,1.0 -1281.0,1.0 -1282.0,1.0 -1283.0,1.0 -1284.0,1.0 -1285.0,1.0 -1286.0,1.0 -1287.0,1.0 -1288.0,1.0 -1289.0,1.0 -1290.0,1.0 -1291.0,1.0 -1292.0,1.0 -1293.0,1.0 -1294.0,1.0 -1295.0,1.0 -1296.0,1.0 -1297.0,1.0 -1298.0,1.0 -1299.0,1.0 -1300.0,1.0 -1301.0,1.0 -1302.0,1.0 -1303.0,1.0 -1304.0,1.0 -1305.0,1.0 -1306.0,1.0 -1307.0,1.0 -1308.0,1.0 -1309.0,1.0 -1310.0,1.0 -1311.0,1.0 -1312.0,1.0 -1313.0,1.0 -1314.0,1.0 -1315.0,1.0 -1316.0,1.0 -1317.0,1.0 -1318.0,1.0 -1319.0,1.0 -1320.0,1.0 -1321.0,1.0 -1322.0,1.0 -1323.0,1.0 -1324.0,1.0 -1325.0,1.0 -1326.0,1.0 -1327.0,1.0 -1328.0,1.0 -1329.0,1.0 -1330.0,1.0 -1331.0,1.0 -1332.0,1.0 -1333.0,1.0 -1334.0,1.0 -1335.0,1.0 -1336.0,1.0 -1337.0,1.0 -1338.0,1.0 -1339.0,1.0 -1340.0,1.0 -1341.0,1.0 -1342.0,1.0 -1343.0,1.0 -1344.0,1.0 -1345.0,1.0 -1346.0,1.0 -1347.0,1.0 -1348.0,1.0 -1349.0,1.0 -1350.0,1.0 -1351.0,1.0 -1352.0,1.0 -1353.0,1.0 -1354.0,1.0 -1355.0,1.0 -1356.0,1.0 -1357.0,1.0 -1358.0,1.0 -1359.0,1.0 -1360.0,1.0 -1361.0,1.0 -1362.0,1.0 -1363.0,1.0 -1364.0,1.0 -1365.0,1.0 -1366.0,1.0 -1367.0,1.0 -1368.0,1.0 -1369.0,1.0 -1370.0,1.0 -1371.0,1.0 -1372.0,1.0 -1373.0,1.0 -1374.0,1.0 -1375.0,1.0 -1376.0,1.0 -1377.0,1.0 -1378.0,1.0 -1379.0,1.0 -1380.0,1.0 -1381.0,1.0 -1382.0,1.0 -1383.0,1.0 -1384.0,1.0 -1385.0,1.0 -1386.0,1.0 -1387.0,1.0 -1388.0,1.0 -1389.0,1.0 -1390.0,1.0 -1391.0,1.0 -1392.0,1.0 -1393.0,1.0 -1394.0,1.0 -1395.0,1.0 -1396.0,1.0 -1397.0,1.0 -1398.0,1.0 -1399.0,1.0 -1400.0,1.0 -1401.0,1.0 -1402.0,1.0 -1403.0,1.0 -1404.0,1.0 -1405.0,1.0 -1406.0,1.0 -1407.0,1.0 -1408.0,1.0 -1409.0,1.0 -1410.0,1.0 -1411.0,1.0 -1412.0,1.0 -1413.0,1.0 -1414.0,1.0 -1415.0,1.0 -1416.0,1.0 -1417.0,1.0 -1418.0,1.0 -1419.0,1.0 -1420.0,1.0 -1421.0,1.0 -1422.0,1.0 -1423.0,1.0 -1424.0,1.0 -1425.0,1.0 -1426.0,1.0 -1427.0,1.0 -1428.0,1.0 -1429.0,1.0 -1430.0,1.0 -1431.0,1.0 -1432.0,1.0 -1433.0,1.0 -1434.0,1.0 -1435.0,1.0 -1436.0,1.0 -1437.0,1.0 -1438.0,1.0 -1439.0,1.0 -1440.0,1.0 -1441.0,1.0 -1442.0,1.0 -1443.0,1.0 -1444.0,1.0 -1445.0,1.0 -1446.0,1.0 -1447.0,1.0 -1448.0,1.0 -1449.0,1.0 -1450.0,1.0 -1451.0,1.0 -1452.0,1.0 -1453.0,1.0 -1454.0,1.0 -1455.0,1.0 -1456.0,1.0 -1457.0,1.0 -1458.0,1.0 -1459.0,1.0 -1460.0,1.0 -1461.0,1.0 -1462.0,1.0 -1463.0,1.0 -1464.0,1.0 -1465.0,1.0 -1466.0,1.0 -1467.0,1.0 -1468.0,1.0 -1469.0,1.0 -1470.0,1.0 -1471.0,1.0 -1472.0,1.0 -1473.0,1.0 -1474.0,1.0 -1475.0,1.0 -1476.0,1.0 -1477.0,1.0 -1478.0,1.0 -1479.0,1.0 -1480.0,1.0 -1481.0,1.0 -1482.0,1.0 -1483.0,1.0 -1484.0,1.0 -1485.0,1.0 -1486.0,1.0 -1487.0,1.0 -1488.0,1.0 -1489.0,1.0 -1490.0,1.0 -1491.0,1.0 -1492.0,1.0 -1493.0,1.0 -1494.0,1.0 -1495.0,1.0 -1496.0,1.0 -1497.0,1.0 -1498.0,1.0 -1499.0,1.0 -1500.0,1.0 -1501.0,1.0 -1502.0,1.0 -1503.0,1.0 -1504.0,1.0 -1505.0,1.0 -1506.0,1.0 -1507.0,1.0 -1508.0,1.0 -1509.0,1.0 -1510.0,1.0 -1511.0,1.0 -1512.0,1.0 -1513.0,1.0 -1514.0,1.0 -1515.0,1.0 -1516.0,1.0 -1517.0,1.0 -1518.0,1.0 -1519.0,1.0 -1520.0,1.0 -1521.0,1.0 -1522.0,1.0 -1523.0,1.0 -1524.0,1.0 -1525.0,1.0 -1526.0,1.0 -1527.0,1.0 -1528.0,1.0 -1529.0,1.0 -1530.0,1.0 -1531.0,1.0 -1532.0,1.0 -1533.0,1.0 -1534.0,1.0 -1535.0,1.0 -1536.0,1.0 -1537.0,1.0 -1538.0,1.0 -1539.0,1.0 -1540.0,1.0 -1541.0,1.0 -1542.0,1.0 -1543.0,1.0 -1544.0,1.0 -1545.0,1.0 -1546.0,1.0 -1547.0,1.0 -1548.0,1.0 -1549.0,1.0 -1550.0,1.0 -1551.0,1.0 -1552.0,1.0 -1553.0,1.0 -1554.0,1.0 -1555.0,1.0 -1556.0,1.0 -1557.0,1.0 -1558.0,1.0 -1559.0,1.0 -1560.0,1.0 -1561.0,1.0 -1562.0,1.0 -1563.0,1.0 -1564.0,1.0 -1565.0,1.0 -1566.0,1.0 -1567.0,1.0 -1568.0,1.0 -1569.0,1.0 -1570.0,1.0 -1571.0,1.0 -1572.0,1.0 -1573.0,1.0 -1574.0,1.0 -1575.0,1.0 -1576.0,1.0 -1577.0,1.0 -1578.0,1.0 -1579.0,1.0 -1580.0,1.0 -1581.0,1.0 -1582.0,1.0 -1583.0,1.0 -1584.0,1.0 -1585.0,1.0 -1586.0,1.0 -1587.0,1.0 -1588.0,1.0 -1589.0,1.0 -1590.0,1.0 -1591.0,1.0 -1592.0,1.0 -1593.0,1.0 -1594.0,1.0 -1595.0,1.0 -1596.0,1.0 -1597.0,1.0 -1598.0,1.0 -1599.0,1.0 -1600.0,1.0 -1601.0,1.0 -1602.0,1.0 -1603.0,1.0 -1604.0,1.0 -1605.0,1.0 -1606.0,1.0 -1607.0,1.0 -1608.0,1.0 -1609.0,1.0 -1610.0,1.0 -1611.0,1.0 -1612.0,1.0 -1613.0,1.0 -1614.0,1.0 -1615.0,1.0 -1616.0,1.0 -1617.0,1.0 -1618.0,1.0 -1619.0,1.0 -1620.0,1.0 -1621.0,1.0 -1622.0,1.0 -1623.0,1.0 -1624.0,1.0 -1625.0,1.0 -1626.0,1.0 -1627.0,1.0 -1628.0,1.0 -1629.0,1.0 -1630.0,1.0 -1631.0,1.0 -1632.0,1.0 -1633.0,1.0 -1634.0,1.0 -1635.0,1.0 -1636.0,1.0 -1637.0,1.0 -1638.0,1.0 -1639.0,1.0 -1640.0,1.0 -1641.0,1.0 -1642.0,1.0 -1643.0,1.0 -1644.0,1.0 -1645.0,1.0 -1646.0,1.0 -1647.0,1.0 -1648.0,1.0 -1649.0,1.0 -1650.0,1.0 -1651.0,1.0 -1652.0,1.0 -1653.0,1.0 -1654.0,1.0 -1655.0,1.0 -1656.0,1.0 -1657.0,1.0 -1658.0,1.0 -1659.0,1.0 -1660.0,1.0 -1661.0,1.0 -1662.0,1.0 -1663.0,1.0 -1664.0,1.0 -1665.0,1.0 -1666.0,1.0 -1667.0,1.0 -1668.0,1.0 -1669.0,1.0 -1670.0,1.0 -1671.0,1.0 -1672.0,1.0 -1673.0,1.0 -1674.0,1.0 -1675.0,1.0 -1676.0,1.0 -1677.0,1.0 -1678.0,1.0 -1679.0,1.0 -1680.0,1.0 -1681.0,1.0 -1682.0,1.0 -1683.0,1.0 -1684.0,1.0 -1685.0,1.0 -1686.0,1.0 -1687.0,1.0 -1688.0,1.0 -1689.0,1.0 -1690.0,1.0 -1691.0,1.0 -1692.0,1.0 -1693.0,1.0 -1694.0,1.0 -1695.0,1.0 -1696.0,1.0 -1697.0,1.0 -1698.0,1.0 -1699.0,1.0 -1700.0,1.0 -1701.0,1.0 -1702.0,1.0 -1703.0,1.0 -1704.0,1.0 -1705.0,1.0 -1706.0,1.0 -1707.0,1.0 -1708.0,1.0 -1709.0,1.0 -1710.0,1.0 -1711.0,1.0 -1712.0,1.0 -1713.0,1.0 -1714.0,1.0 -1715.0,1.0 -1716.0,1.0 -1717.0,1.0 -1718.0,1.0 -1719.0,1.0 -1720.0,1.0 -1721.0,1.0 -1722.0,1.0 -1723.0,1.0 -1724.0,1.0 -1725.0,1.0 -1726.0,1.0 -1727.0,1.0 -1728.0,1.0 -1729.0,1.0 -1730.0,1.0 -1731.0,1.0 -1732.0,1.0 -1733.0,1.0 -1734.0,1.0 -1735.0,1.0 -1736.0,1.0 -1737.0,1.0 -1738.0,1.0 -1739.0,1.0 -1740.0,1.0 -1741.0,1.0 -1742.0,1.0 -1743.0,1.0 -1744.0,1.0 -1745.0,1.0 -1746.0,1.0 -1747.0,1.0 -1748.0,1.0 -1749.0,1.0 -1750.0,1.0 -1751.0,1.0 -1752.0,1.0 -1753.0,1.0 -1754.0,1.0 -1755.0,1.0 -1756.0,1.0 -1757.0,1.0 -1758.0,1.0 -1759.0,1.0 -1760.0,1.0 -1761.0,1.0 -1762.0,1.0 -1763.0,1.0 -1764.0,1.0 -1765.0,1.0 -1766.0,1.0 -1767.0,1.0 -1768.0,1.0 -1769.0,1.0 -1770.0,1.0 -1771.0,1.0 -1772.0,1.0 -1773.0,1.0 -1774.0,1.0 -1775.0,1.0 -1776.0,1.0 -1777.0,1.0 -1778.0,1.0 -1779.0,1.0 -1780.0,1.0 -1781.0,1.0 -1782.0,1.0 -1783.0,1.0 -1784.0,1.0 -1785.0,1.0 -1786.0,1.0 -1787.0,1.0 -1788.0,1.0 -1789.0,1.0 -1790.0,1.0 -1791.0,1.0 -1792.0,1.0 -1793.0,1.0 -1794.0,1.0 -1795.0,1.0 -1796.0,1.0 -1797.0,1.0 -1798.0,1.0 -1799.0,1.0 -1800.0,1.0 -1801.0,1.0 -1802.0,1.0 -1803.0,1.0 -1804.0,1.0 -1805.0,1.0 -1806.0,1.0 -1807.0,1.0 -1808.0,1.0 -1809.0,1.0 -1810.0,1.0 -1811.0,1.0 -1812.0,1.0 -1813.0,1.0 -1814.0,1.0 -1815.0,1.0 -1816.0,1.0 -1817.0,1.0 -1818.0,1.0 -1819.0,1.0 -1820.0,1.0 -1821.0,1.0 -1822.0,1.0 -1823.0,1.0 -1824.0,1.0 -1825.0,1.0 -1826.0,1.0 -1827.0,1.0 -1828.0,1.0 -1829.0,1.0 -1830.0,1.0 -1831.0,1.0 -1832.0,1.0 -1833.0,1.0 -1834.0,1.0 -1835.0,1.0 -1836.0,1.0 -1837.0,1.0 -1838.0,1.0 -1839.0,1.0 -1840.0,1.0 -1841.0,1.0 -1842.0,1.0 -1843.0,1.0 -1844.0,1.0 -1845.0,1.0 -1846.0,1.0 -1847.0,1.0 -1848.0,1.0 -1849.0,1.0 -1850.0,1.0 -1851.0,1.0 -1852.0,1.0 -1853.0,1.0 -1854.0,1.0 -1855.0,1.0 -1856.0,1.0 -1857.0,1.0 -1858.0,1.0 -1859.0,1.0 -1860.0,1.0 -1861.0,1.0 -1862.0,1.0 -1863.0,1.0 -1864.0,1.0 -1865.0,1.0 -1866.0,1.0 -1867.0,1.0 -1868.0,1.0 -1869.0,1.0 -1870.0,1.0 -1871.0,1.0 -1872.0,1.0 -1873.0,1.0 -1874.0,1.0 -1875.0,1.0 -1876.0,1.0 -1877.0,1.0 -1878.0,1.0 -1879.0,1.0 -1880.0,1.0 -1881.0,1.0 -1882.0,1.0 -1883.0,1.0 -1884.0,1.0 -1885.0,1.0 -1886.0,1.0 -1887.0,1.0 -1888.0,1.0 -1889.0,1.0 -1890.0,1.0 -1891.0,1.0 -1892.0,1.0 -1893.0,1.0 -1894.0,1.0 -1895.0,1.0 -1896.0,1.0 -1897.0,1.0 -1898.0,1.0 -1899.0,1.0 -1900.0,1.0 -1901.0,1.0 -1902.0,1.0 -1903.0,1.0 -1904.0,1.0 -1905.0,1.0 -1906.0,1.0 -1907.0,1.0 -1908.0,1.0 -1909.0,1.0 -1910.0,1.0 -1911.0,1.0 -1912.0,1.0 -1913.0,1.0 -1914.0,1.0 -1915.0,1.0 -1916.0,1.0 -1917.0,1.0 -1918.0,1.0 -1919.0,1.0 -1920.0,1.0 -1921.0,1.0 -1922.0,1.0 -1923.0,1.0 -1924.0,1.0 -1925.0,1.0 -1926.0,1.0 -1927.0,1.0 -1928.0,1.0 -1929.0,1.0 -1930.0,1.0 -1931.0,1.0 -1932.0,1.0 -1933.0,1.0 -1934.0,1.0 -1935.0,1.0 -1936.0,1.0 -1937.0,1.0 -1938.0,1.0 -1939.0,1.0 -1940.0,1.0 -1941.0,1.0 -1942.0,1.0 -1943.0,1.0 -1944.0,1.0 -1945.0,1.0 -1946.0,1.0 -1947.0,1.0 -1948.0,1.0 -1949.0,1.0 -1950.0,1.0 -1951.0,1.0 -1952.0,1.0 -1953.0,1.0 -1954.0,1.0 -1955.0,1.0 -1956.0,1.0 -1957.0,1.0 -1958.0,1.0 -1959.0,1.0 -1960.0,1.0 -1961.0,1.0 -1962.0,1.0 -1963.0,1.0 -1964.0,1.0 -1965.0,1.0 -1966.0,1.0 -1967.0,1.0 -1968.0,1.0 -1969.0,1.0 -1970.0,1.0 -1971.0,1.0 -1972.0,1.0 -1973.0,1.0 -1974.0,1.0 -1975.0,1.0 -1976.0,1.0 -1977.0,1.0 -1978.0,1.0 -1979.0,1.0 -1980.0,1.0 -1981.0,1.0 -1982.0,1.0 -1983.0,1.0 -1984.0,1.0 -1985.0,1.0 -1986.0,1.0 -1987.0,1.0 -1988.0,1.0 -1989.0,1.0 -1990.0,1.0 -1991.0,1.0 -1992.0,1.0 -1993.0,1.0 -1994.0,1.0 -1995.0,1.0 -1996.0,1.0 -1997.0,1.0 -1998.0,1.0 -1999.0,1.0 -2000.0,1.0 -2001.0,1.0 -2002.0,1.0 -2003.0,1.0 -2004.0,1.0 -2005.0,1.0 -2006.0,1.0 -2007.0,1.0 -2008.0,1.0 -2009.0,1.0 -2010.0,1.0 -2011.0,1.0 -2012.0,1.0 -2013.0,1.0 -2014.0,1.0 -2015.0,1.0 -2016.0,1.0 -2017.0,1.0 -2018.0,1.0 -2019.0,1.0 -2020.0,1.0 -2021.0,1.0 -2022.0,1.0 -2023.0,1.0 -2024.0,1.0 -2025.0,1.0 -2026.0,1.0 -2027.0,1.0 -2028.0,1.0 -2029.0,1.0 -2030.0,1.0 -2031.0,1.0 -2032.0,1.0 -2033.0,1.0 -2034.0,1.0 -2035.0,1.0 -2036.0,1.0 -2037.0,1.0 -2038.0,1.0 -2039.0,1.0 -2040.0,1.0 -2041.0,1.0 -2042.0,1.0 -2043.0,1.0 -2044.0,1.0 -2045.0,1.0 -2046.0,1.0 -2047.0,1.0 -2048.0,1.0 -2049.0,1.0 -2050.0,1.0 -2051.0,1.0 -2052.0,1.0 -2053.0,1.0 -2054.0,1.0 -2055.0,1.0 -2056.0,1.0 -2057.0,1.0 -2058.0,1.0 -2059.0,1.0 -2060.0,1.0 -2061.0,1.0 -2062.0,1.0 -2063.0,1.0 -2064.0,1.0 -2065.0,1.0 -2066.0,1.0 -2067.0,1.0 -2068.0,1.0 -2069.0,1.0 -2070.0,1.0 -2071.0,1.0 -2072.0,1.0 -2073.0,1.0 -2074.0,1.0 -2075.0,1.0 -2076.0,1.0 -2077.0,1.0 -2078.0,1.0 -2079.0,1.0 -2080.0,1.0 -2081.0,1.0 -2082.0,1.0 -2083.0,1.0 -2084.0,1.0 -2085.0,1.0 -2086.0,1.0 -2087.0,1.0 -2088.0,1.0 -2089.0,1.0 -2090.0,1.0 -2091.0,1.0 -2092.0,1.0 -2093.0,1.0 -2094.0,1.0 -2095.0,1.0 -2096.0,1.0 -2097.0,1.0 -2098.0,1.0 -2099.0,1.0 -2100.0,1.0 -2101.0,1.0 -2102.0,1.0 -2103.0,1.0 -2104.0,1.0 -2105.0,1.0 -2106.0,1.0 -2107.0,1.0 -2108.0,1.0 -2109.0,1.0 -2110.0,1.0 -2111.0,1.0 -2112.0,1.0 -2113.0,1.0 -2114.0,1.0 -2115.0,1.0 -2116.0,1.0 -2117.0,1.0 -2118.0,1.0 -2119.0,1.0 -2120.0,1.0 -2121.0,1.0 -2122.0,1.0 -2123.0,1.0 -2124.0,1.0 -2125.0,1.0 -2126.0,1.0 -2127.0,1.0 -2128.0,1.0 -2129.0,1.0 -2130.0,1.0 -2131.0,1.0 -2132.0,1.0 -2133.0,1.0 -2134.0,1.0 -2135.0,1.0 -2136.0,1.0 -2137.0,1.0 -2138.0,1.0 -2139.0,1.0 -2140.0,1.0 -2141.0,1.0 -2142.0,1.0 -2143.0,1.0 -2144.0,1.0 -2145.0,1.0 -2146.0,1.0 -2147.0,1.0 -2148.0,1.0 -2149.0,1.0 -2150.0,1.0 -2151.0,1.0 -2152.0,1.0 -2153.0,1.0 -2154.0,1.0 -2155.0,1.0 -2156.0,1.0 -2157.0,1.0 -2158.0,1.0 -2159.0,1.0 -2160.0,1.0 -2161.0,1.0 -2162.0,1.0 -2163.0,1.0 -2164.0,1.0 -2165.0,1.0 -2166.0,1.0 -2167.0,1.0 -2168.0,1.0 -2169.0,1.0 -2170.0,1.0 -2171.0,1.0 -2172.0,1.0 -2173.0,1.0 -2174.0,1.0 -2175.0,1.0 -2176.0,1.0 -2177.0,1.0 -2178.0,1.0 -2179.0,1.0 -2180.0,1.0 -2181.0,1.0 -2182.0,1.0 -2183.0,1.0 -2184.0,1.0 -2185.0,1.0 -2186.0,1.0 -2187.0,1.0 -2188.0,1.0 -2189.0,1.0 -2190.0,1.0 -2191.0,1.0 -2192.0,1.0 -2193.0,1.0 -2194.0,1.0 -2195.0,1.0 -2196.0,1.0 -2197.0,1.0 -2198.0,1.0 -2199.0,1.0 -2200.0,1.0 -2201.0,1.0 -2202.0,1.0 -2203.0,1.0 -2204.0,1.0 -2205.0,1.0 -2206.0,1.0 -2207.0,1.0 -2208.0,1.0 -2209.0,1.0 -2210.0,1.0 -2211.0,1.0 -2212.0,1.0 -2213.0,1.0 -2214.0,1.0 -2215.0,1.0 -2216.0,1.0 -2217.0,1.0 -2218.0,1.0 -2219.0,1.0 -2220.0,1.0 -2221.0,1.0 -2222.0,1.0 -2223.0,1.0 -2224.0,1.0 -2225.0,1.0 -2226.0,1.0 -2227.0,1.0 -2228.0,1.0 -2229.0,1.0 -2230.0,1.0 -2231.0,1.0 -2232.0,1.0 -2233.0,1.0 -2234.0,1.0 -2235.0,1.0 -2236.0,1.0 -2237.0,1.0 -2238.0,1.0 -2239.0,1.0 -2240.0,1.0 -2241.0,1.0 -2242.0,1.0 -2243.0,1.0 -2244.0,1.0 -2245.0,1.0 -2246.0,1.0 -2247.0,1.0 -2248.0,1.0 -2249.0,1.0 -2250.0,1.0 -2251.0,1.0 -2252.0,1.0 -2253.0,1.0 -2254.0,1.0 -2255.0,1.0 -2256.0,1.0 -2257.0,1.0 -2258.0,1.0 -2259.0,1.0 -2260.0,1.0 -2261.0,1.0 -2262.0,1.0 -2263.0,1.0 -2264.0,1.0 -2265.0,1.0 -2266.0,1.0 -2267.0,1.0 -2268.0,1.0 -2269.0,1.0 -2270.0,1.0 -2271.0,1.0 -2272.0,1.0 -2273.0,1.0 -2274.0,1.0 -2275.0,1.0 -2276.0,1.0 -2277.0,1.0 -2278.0,1.0 -2279.0,1.0 -2280.0,1.0 -2281.0,1.0 -2282.0,1.0 -2283.0,1.0 -2284.0,1.0 -2285.0,1.0 -2286.0,1.0 -2287.0,1.0 -2288.0,1.0 -2289.0,1.0 -2290.0,1.0 -2291.0,1.0 -2292.0,1.0 -2293.0,1.0 -2294.0,1.0 -2295.0,1.0 -2296.0,1.0 -2297.0,1.0 -2298.0,1.0 -2299.0,1.0 -2300.0,1.0 -2301.0,1.0 -2302.0,1.0 -2303.0,1.0 -2304.0,1.0 -2305.0,1.0 -2306.0,1.0 -2307.0,1.0 -2308.0,1.0 -2309.0,1.0 -2310.0,1.0 -2311.0,1.0 -2312.0,1.0 -2313.0,1.0 -2314.0,1.0 -2315.0,1.0 -2316.0,1.0 -2317.0,1.0 -2318.0,1.0 -2319.0,1.0 -2320.0,1.0 -2321.0,1.0 -2322.0,1.0 -2323.0,1.0 -2324.0,1.0 -2325.0,1.0 -2326.0,1.0 -2327.0,1.0 -2328.0,1.0 -2329.0,1.0 -2330.0,1.0 -2331.0,1.0 -2332.0,1.0 -2333.0,1.0 -2334.0,1.0 -2335.0,1.0 -2336.0,1.0 -2337.0,1.0 -2338.0,1.0 -2339.0,1.0 -2340.0,1.0 -2341.0,1.0 -2342.0,1.0 -2343.0,1.0 -2344.0,1.0 -2345.0,1.0 -2346.0,1.0 -2347.0,1.0 -2348.0,1.0 -2349.0,1.0 -2350.0,1.0 -2351.0,1.0 -2352.0,1.0 -2353.0,1.0 -2354.0,1.0 -2355.0,1.0 -2356.0,1.0 -2357.0,1.0 -2358.0,1.0 -2359.0,1.0 -2360.0,1.0 -2361.0,1.0 -2362.0,1.0 -2363.0,1.0 -2364.0,1.0 -2365.0,1.0 -2366.0,1.0 -2367.0,1.0 -2368.0,1.0 -2369.0,1.0 -2370.0,1.0 -2371.0,1.0 -2372.0,1.0 -2373.0,1.0 -2374.0,1.0 -2375.0,1.0 -2376.0,1.0 -2377.0,1.0 -2378.0,1.0 -2379.0,1.0 -2380.0,1.0 -2381.0,1.0 -2382.0,1.0 -2383.0,1.0 -2384.0,1.0 -2385.0,1.0 -2386.0,1.0 -2387.0,1.0 -2388.0,1.0 -2389.0,1.0 -2390.0,1.0 -2391.0,1.0 -2392.0,1.0 -2393.0,1.0 -2394.0,1.0 -2395.0,1.0 -2396.0,1.0 -2397.0,1.0 -2398.0,1.0 -2399.0,1.0 -2400.0,1.0 -2401.0,1.0 -2402.0,1.0 -2403.0,1.0 -2404.0,1.0 -2405.0,1.0 -2406.0,1.0 -2407.0,1.0 -2408.0,1.0 -2409.0,1.0 -2410.0,1.0 -2411.0,1.0 -2412.0,1.0 -2413.0,1.0 -2414.0,1.0 -2415.0,1.0 -2416.0,1.0 -2417.0,1.0 -2418.0,1.0 -2419.0,1.0 -2420.0,1.0 -2421.0,1.0 -2422.0,1.0 -2423.0,1.0 -2424.0,1.0 -2425.0,1.0 -2426.0,1.0 -2427.0,1.0 -2428.0,1.0 -2429.0,1.0 -2430.0,1.0 -2431.0,1.0 -2432.0,1.0 -2433.0,1.0 -2434.0,1.0 -2435.0,1.0 -2436.0,1.0 -2437.0,1.0 -2438.0,1.0 -2439.0,1.0 -2440.0,1.0 -2441.0,1.0 -2442.0,1.0 -2443.0,1.0 -2444.0,1.0 -2445.0,1.0 -2446.0,1.0 -2447.0,1.0 -2448.0,1.0 -2449.0,1.0 -2450.0,1.0 -2451.0,1.0 -2452.0,1.0 -2453.0,1.0 -2454.0,1.0 -2455.0,1.0 -2456.0,1.0 -2457.0,1.0 -2458.0,1.0 -2459.0,1.0 -2460.0,1.0 -2461.0,1.0 -2462.0,1.0 -2463.0,1.0 -2464.0,1.0 -2465.0,1.0 -2466.0,1.0 -2467.0,1.0 -2468.0,1.0 -2469.0,1.0 -2470.0,1.0 -2471.0,1.0 -2472.0,1.0 -2473.0,1.0 -2474.0,1.0 -2475.0,1.0 -2476.0,1.0 -2477.0,1.0 -2478.0,1.0 -2479.0,1.0 -2480.0,1.0 -2481.0,1.0 -2482.0,1.0 -2483.0,1.0 -2484.0,1.0 -2485.0,1.0 -2486.0,1.0 -2487.0,1.0 -2488.0,1.0 -2489.0,1.0 -2490.0,1.0 -2491.0,1.0 -2492.0,1.0 -2493.0,1.0 -2494.0,1.0 -2495.0,1.0 -2496.0,1.0 -2497.0,1.0 -2498.0,1.0 -2499.0,1.0 -2500.0,1.0 -2501.0,1.0 -2502.0,1.0 -2503.0,1.0 -2504.0,1.0 -2505.0,1.0 -2506.0,1.0 -2507.0,1.0 -2508.0,1.0 -2509.0,1.0 -2510.0,1.0 -2511.0,1.0 -2512.0,1.0 -2513.0,1.0 -2514.0,1.0 -2515.0,1.0 -2516.0,1.0 -2517.0,1.0 -2518.0,1.0 -2519.0,1.0 -2520.0,1.0 -2521.0,1.0 -2522.0,1.0 -2523.0,1.0 -2524.0,1.0 -2525.0,1.0 -2526.0,1.0 -2527.0,1.0 -2528.0,1.0 -2529.0,1.0 -2530.0,1.0 -2531.0,1.0 -2532.0,1.0 -2533.0,1.0 -2534.0,1.0 -2535.0,1.0 -2536.0,1.0 -2537.0,1.0 -2538.0,1.0 -2539.0,1.0 -2540.0,1.0 -2541.0,1.0 -2542.0,1.0 -2543.0,1.0 -2544.0,1.0 -2545.0,1.0 -2546.0,1.0 -2547.0,1.0 -2548.0,1.0 -2549.0,1.0 -2550.0,1.0 -2551.0,1.0 -2552.0,1.0 -2553.0,1.0 -2554.0,1.0 -2555.0,1.0 -2556.0,1.0 -2557.0,1.0 -2558.0,1.0 -2559.0,1.0 -2560.0,1.0 -2561.0,1.0 -2562.0,1.0 -2563.0,1.0 -2564.0,1.0 -2565.0,1.0 -2566.0,1.0 -2567.0,1.0 -2568.0,1.0 -2569.0,1.0 -2570.0,1.0 -2571.0,1.0 -2572.0,1.0 -2573.0,1.0 -2574.0,1.0 -2575.0,1.0 -2576.0,1.0 -2577.0,1.0 -2578.0,1.0 -2579.0,1.0 -2580.0,1.0 -2581.0,1.0 -2582.0,1.0 -2583.0,1.0 -2584.0,1.0 -2585.0,1.0 -2586.0,1.0 -2587.0,1.0 -2588.0,1.0 -2589.0,1.0 -2590.0,1.0 -2591.0,1.0 -2592.0,1.0 -2593.0,1.0 -2594.0,1.0 -2595.0,1.0 -2596.0,1.0 -2597.0,1.0 -2598.0,1.0 -2599.0,1.0 -2600.0,1.0 -2601.0,1.0 -2602.0,1.0 -2603.0,1.0 -2604.0,1.0 -2605.0,1.0 -2606.0,1.0 -2607.0,1.0 -2608.0,1.0 -2609.0,1.0 -2610.0,1.0 -2611.0,1.0 -2612.0,1.0 -2613.0,1.0 -2614.0,1.0 -2615.0,1.0 -2616.0,1.0 -2617.0,1.0 -2618.0,1.0 -2619.0,1.0 -2620.0,1.0 -2621.0,1.0 -2622.0,1.0 -2623.0,1.0 -2624.0,1.0 -2625.0,1.0 -2626.0,1.0 -2627.0,1.0 -2628.0,1.0 -2629.0,1.0 -2630.0,1.0 -2631.0,1.0 -2632.0,1.0 -2633.0,1.0 -2634.0,1.0 -2635.0,1.0 -2636.0,1.0 -2637.0,1.0 -2638.0,1.0 -2639.0,1.0 -2640.0,1.0 -2641.0,1.0 -2642.0,1.0 -2643.0,1.0 -2644.0,1.0 -2645.0,1.0 -2646.0,1.0 -2647.0,1.0 -2648.0,1.0 -2649.0,1.0 -2650.0,1.0 -2651.0,1.0 -2652.0,1.0 -2653.0,1.0 -2654.0,1.0 -2655.0,1.0 -2656.0,1.0 -2657.0,1.0 -2658.0,1.0 -2659.0,1.0 -2660.0,1.0 -2661.0,1.0 -2662.0,1.0 -2663.0,1.0 -2664.0,1.0 -2665.0,1.0 -2666.0,1.0 -2667.0,1.0 -2668.0,1.0 -2669.0,1.0 -2670.0,1.0 -2671.0,1.0 -2672.0,1.0 -2673.0,1.0 -2674.0,1.0 -2675.0,1.0 -2676.0,1.0 -2677.0,1.0 -2678.0,1.0 -2679.0,1.0 -2680.0,1.0 -2681.0,1.0 -2682.0,1.0 -2683.0,1.0 -2684.0,1.0 -2685.0,1.0 -2686.0,1.0 -2687.0,1.0 -2688.0,1.0 -2689.0,1.0 -2690.0,1.0 -2691.0,1.0 -2692.0,1.0 -2693.0,1.0 -2694.0,1.0 -2695.0,1.0 -2696.0,1.0 -2697.0,1.0 -2698.0,1.0 -2699.0,1.0 -2700.0,1.0 -2701.0,1.0 -2702.0,1.0 -2703.0,1.0 -2704.0,1.0 -2705.0,1.0 -2706.0,1.0 -2707.0,1.0 -2708.0,1.0 -2709.0,1.0 -2710.0,1.0 -2711.0,1.0 -2712.0,1.0 -2713.0,1.0 -2714.0,1.0 -2715.0,1.0 -2716.0,1.0 -2717.0,1.0 -2718.0,1.0 -2719.0,1.0 -2720.0,1.0 -2721.0,1.0 -2722.0,1.0 -2723.0,1.0 -2724.0,1.0 -2725.0,1.0 -2726.0,1.0 -2727.0,1.0 -2728.0,1.0 -2729.0,1.0 -2730.0,1.0 -2731.0,1.0 -2732.0,1.0 -2733.0,1.0 -2734.0,1.0 -2735.0,1.0 -2736.0,1.0 -2737.0,1.0 -2738.0,1.0 -2739.0,1.0 -2740.0,1.0 -2741.0,1.0 -2742.0,1.0 -2743.0,1.0 -2744.0,1.0 -2745.0,1.0 -2746.0,1.0 -2747.0,1.0 -2748.0,1.0 -2749.0,1.0 -2750.0,1.0 -2751.0,1.0 -2752.0,1.0 -2753.0,1.0 -2754.0,1.0 -2755.0,1.0 -2756.0,1.0 -2757.0,1.0 -2758.0,1.0 -2759.0,1.0 -2760.0,1.0 -2761.0,1.0 -2762.0,1.0 -2763.0,1.0 -2764.0,1.0 -2765.0,1.0299499659491402 -2766.0,1.0799499659491403 -2767.0,1.1299499659491403 -2768.0,1.1799499659491404 -2769.0,1.2299499659491402 -2770.0,1.2799499659491402 -2771.0,1.3299499659491403 -2772.0,1.3799499659491403 -2773.0,1.4299499659491404 -2774.0,1.4799499659491402 -2775.0,1.5299499659491405 -2776.0,1.5799499659491403 -2777.0,1.6299499659491403 -2778.0,1.6799499659491404 -2779.0,1.7299499659491402 -2780.0,1.7799499659491405 -2781.0,1.8299499659491403 -2782.0,1.8799499659491403 -2783.0,1.9299499659491404 -2784.0,1.9799499659491402 -2785.0,2.0299499659491405 -2786.0,2.0799499659491403 -2787.0,2.12994996594914 -2788.0,2.1799499659491404 -2789.0,2.2299499659491406 -2790.0,2.2799499659491405 -2791.0,2.3299499659491403 -2792.0,2.37994996594914 -2793.0,2.4299499659491404 -2794.0,2.4799499659491406 -2795.0,2.5299499659491405 -2796.0,2.5799499659491403 -2797.0,2.62994996594914 -2798.0,2.6799499659491404 -2799.0,2.7299499659491406 -2800.0,2.7799499659491405 -2801.0,2.8299499659491403 -2802.0,2.87994996594914 -2803.0,2.9299499659491404 -2804.0,2.9799499659491406 -2805.0,3.0299499659491405 -2806.0,3.0799499659491403 -2807.0,3.1299499659491405 -2808.0,3.1799499659491404 -2809.0,3.22994996594914 -2810.0,3.2799499659491405 -2811.0,3.3299499659491403 -2812.0,3.3799499659491405 -2813.0,3.4299499659491404 -2814.0,3.4799499659491406 -2815.0,3.5299499659491405 -2816.0,3.5799499659491403 -2817.0,3.6299499659491405 -2818.0,3.6799499659491404 -2819.0,3.7299499659491406 -2820.0,3.7799499659491405 -2821.0,3.8299499659491403 -2822.0,3.8799499659491405 -2823.0,3.9299499659491404 -2824.0,3.9799499659491406 -2825.0,4.0299499659491405 -2826.0,4.07994996594914 -2827.0,4.129949965949141 -2828.0,4.17994996594914 -2829.0,4.229949965949141 -2830.0,4.2799499659491405 -2831.0,4.32994996594914 -2832.0,4.379949965949141 -2833.0,4.42994996594914 -2834.0,4.479949965949141 -2835.0,4.5299499659491405 -2836.0,4.57994996594914 -2837.0,4.629949965949141 -2838.0,4.67994996594914 -2839.0,4.729949965949141 -2840.0,4.7799499659491405 -2841.0,4.82994996594914 -2842.0,4.879949965949141 -2843.0,4.92994996594914 -2844.0,4.979949965949141 -2845.0,5.0299499659491405 -2846.0,5.07994996594914 -2847.0,5.12994996594914 -2848.0,5.179949965949141 -2849.0,5.229949965949141 -2850.0,5.2799499659491405 -2851.0,5.32994996594914 -2852.0,5.37994996594914 -2853.0,5.429949965949141 -2854.0,5.479949965949141 -2855.0,5.5299499659491405 -2856.0,5.57994996594914 -2857.0,5.62994996594914 -2858.0,5.679949965949141 -2859.0,5.729949965949141 -2860.0,5.7799499659491405 -2861.0,5.82994996594914 -2862.0,5.879949965949141 -2863.0,5.929949965949141 -2864.0,5.979949965949141 -2865.0,5.9700500340508595 -2866.0,5.92005003405086 -2867.0,5.87005003405086 -2868.0,5.82005003405086 -2869.0,5.770050034050859 -2870.0,5.7200500340508595 -2871.0,5.67005003405086 -2872.0,5.62005003405086 -2873.0,5.57005003405086 -2874.0,5.520050034050859 -2875.0,5.4700500340508595 -2876.0,5.42005003405086 -2877.0,5.37005003405086 -2878.0,5.32005003405086 -2879.0,5.270050034050859 -2880.0,5.2200500340508595 -2881.0,5.17005003405086 -2882.0,5.12005003405086 -2883.0,5.07005003405086 -2884.0,5.020050034050859 -2885.0,4.9700500340508595 -2886.0,4.92005003405086 -2887.0,4.87005003405086 -2888.0,4.82005003405086 -2889.0,4.770050034050859 -2890.0,4.7200500340508595 -2891.0,4.67005003405086 -2892.0,4.62005003405086 -2893.0,4.57005003405086 -2894.0,4.520050034050859 -2895.0,4.4700500340508595 -2896.0,4.42005003405086 -2897.0,4.37005003405086 -2898.0,4.32005003405086 -2899.0,4.270050034050859 -2900.0,4.2200500340508595 -2901.0,4.17005003405086 -2902.0,4.12005003405086 -2903.0,4.07005003405086 -2904.0,4.020050034050859 -2905.0,3.9700500340508595 -2906.0,3.9200500340508597 -2907.0,3.8700500340508595 -2908.0,3.8200500340508596 -2909.0,3.77005003405086 -2910.0,3.7200500340508595 -2911.0,3.6700500340508597 -2912.0,3.6200500340508595 -2913.0,3.5700500340508596 -2914.0,3.5200500340508594 -2915.0,3.4700500340508595 -2916.0,3.4200500340508597 -2917.0,3.3700500340508595 -2918.0,3.3200500340508596 -2919.0,3.2700500340508594 -2920.0,3.2200500340508595 -2921.0,3.1700500340508597 -2922.0,3.1200500340508595 -2923.0,3.0700500340508596 -2924.0,3.0200500340508594 -2925.0,2.9700500340508595 -2926.0,2.9200500340508597 -2927.0,2.8700500340508595 -2928.0,2.8200500340508596 -2929.0,2.7700500340508594 -2930.0,2.7200500340508595 -2931.0,2.6700500340508597 -2932.0,2.6200500340508595 -2933.0,2.5700500340508596 -2934.0,2.5200500340508594 -2935.0,2.4700500340508595 -2936.0,2.4200500340508597 -2937.0,2.3700500340508595 -2938.0,2.3200500340508596 -2939.0,2.2700500340508594 -2940.0,2.2200500340508595 -2941.0,2.1700500340508597 -2942.0,2.1200500340508595 -2943.0,2.0700500340508596 -2944.0,2.0200500340508594 -2945.0,1.9700500340508595 -2946.0,1.9200500340508597 -2947.0,1.87005003405086 -2948.0,1.8200500340508592 -2949.0,1.7700500340508594 -2950.0,1.7200500340508595 -2951.0,1.6700500340508597 -2952.0,1.62005003405086 -2953.0,1.5700500340508592 -2954.0,1.5200500340508594 -2955.0,1.4700500340508595 -2956.0,1.4200500340508597 -2957.0,1.37005003405086 -2958.0,1.3200500340508592 -2959.0,1.2700500340508594 -2960.0,1.2200500340508595 -2961.0,1.1700500340508597 -2962.0,1.120050034050859 -2963.0,1.0700500340508592 -2964.0,1.0200500340508594 -2965.0,0.9997931343642564 -2966.0,0.9994478776763167 -2967.0,0.9991027402152214 -2968.0,0.9987577219397982 -2969.0,0.998412822808889 -2970.0,0.9980680427813498 -2971.0,0.9977233818160508 -2972.0,0.9973788398718766 -2973.0,0.9970344169077258 -2974.0,0.9966901128825111 -2975.0,0.9963459277551597 -2976.0,0.9960018614846129 -2977.0,0.995657914029826 -2978.0,0.9953140853497685 -2979.0,0.9949703754034243 -2980.0,0.9946267841497911 -2981.0,0.9942833115478812 -2982.0,0.9939399575567206 -2983.0,0.9935967221353499 -2984.0,0.9932536052428235 -2985.0,0.9929106068382101 -2986.0,0.9925677268805924 -2987.0,0.9922249653290673 -2988.0,0.9918823221427461 -2989.0,0.9915397972807537 -2990.0,0.9911973907022296 -2991.0,0.9908551023663269 -2992.0,0.9905129322322133 -2993.0,0.9901708802590704 -2994.0,0.9898289464060939 -2995.0,0.9894871306324934 -2996.0,0.989145432897493 -2997.0,0.9888038531603305 -2998.0,0.988462391380258 -2999.0,0.9881210475165416 -3000.0,0.9877798215284616 -3001.0,0.9874387133753119 -3002.0,0.987097723016401 -3003.0,0.9867568504110512 -3004.0,0.986416095518599 -3005.0,0.9860754582983946 -3006.0,0.9857349387098026 -3007.0,0.9853945367122015 -3008.0,0.9850542522649837 -3009.0,0.9847140853275559 -3010.0,0.9843740358593386 -3011.0,0.9840341038197664 -3012.0,0.9836942891682878 -3013.0,0.9833545918643656 -3014.0,0.9830150118674762 -3015.0,0.9826755491371102 -3016.0,0.9823362036327722 -3017.0,0.9819969753139807 -3018.0,0.9816578641402683 -3019.0,0.9813188700711816 -3020.0,0.9809799930662809 -3021.0,0.9806412330851408 -3022.0,0.9803025900873497 -3023.0,0.9799640640325097 -3024.0,0.9796256548802373 -3025.0,0.9792873625901629 -3026.0,0.9789491871219305 -3027.0,0.9786111284351983 -3028.0,0.9782731864896382 -3029.0,0.9779353612449365 -3030.0,0.9775976526607929 -3031.0,0.9772600606969213 -3032.0,0.9769225853130494 -3033.0,0.9765852264689189 -3034.0,0.9762479841242853 -3035.0,0.975910858238918 -3036.0,0.9755738487726004 -3037.0,0.9752369556851298 -3038.0,0.9749001789363172 -3039.0,0.9745635184859877 -3040.0,0.97422697429398 -3041.0,0.9738905463201469 -3042.0,0.9735542345243551 -3043.0,0.973218038866485 -3044.0,0.9728819593064307 -3045.0,0.9725459958041007 -3046.0,0.9722101483194169 -3047.0,0.971874416812315 -3048.0,0.9715388012427447 -3049.0,0.9712033015706697 -3050.0,0.9708679177560672 -3051.0,0.9705326497589284 -3052.0,0.9701974975392581 -3053.0,0.9698624610570754 -3054.0,0.9695275402724126 -3055.0,0.9691927351453162 -3056.0,0.9688580456358465 -3057.0,0.9685234717040774 -3058.0,0.9681890133100965 -3059.0,0.9678546704140056 -3060.0,0.96752044297592 -3061.0,0.9671863309559686 -3062.0,0.9668523343142945 -3063.0,0.9665184530110542 -3064.0,0.9661846870064182 -3065.0,0.9658510362605706 -3066.0,0.9655175007337092 -3067.0,0.9651840803860458 -3068.0,0.9648507751778056 -3069.0,0.964517585069228 -3070.0,0.9641845100205656 -3071.0,0.963851549992085 -3072.0,0.9635187049440667 -3073.0,0.9631859748368045 -3074.0,0.9628533596306061 -3075.0,0.9625208592857931 -3076.0,0.9621884737627007 -3077.0,0.9618562030216774 -3078.0,0.9615240470230859 -3079.0,0.9611920057273026 -3080.0,0.960860079094717 -3081.0,0.960528267085733 -3082.0,0.9601965696607677 -3083.0,0.9598649867802521 -3084.0,0.9595335184046307 -3085.0,0.9592021644943618 -3086.0,0.9588709250099173 -3087.0,0.9585397999117826 -3088.0,0.9582087891604572 -3089.0,0.9578778927164535 -3090.0,0.9575471105402983 -3091.0,0.9572164425925316 -3092.0,0.9568858888337071 -3093.0,0.9565554492243922 -3094.0,0.9562251237251678 -3095.0,0.9558949122966285 -3096.0,0.9555648148993825 -3097.0,0.9552348314940516 -3098.0,0.9549049620412712 -3099.0,0.9545752065016903 -3100.0,0.9542455648359712 -3101.0,0.9539160370047904 -3102.0,0.9535866229688376 -3103.0,0.9532573226888158 -3104.0,0.9529281361254421 -3105.0,0.9525990632394471 -3106.0,0.9522701039915745 -3107.0,0.951941258342582 -3108.0,0.9516125262532408 -3109.0,0.9512839076843354 -3110.0,0.950955402596664 -3111.0,0.9506270109510385 -3112.0,0.950298732708284 -3113.0,0.9499705678292395 -3114.0,0.949642516274757 -3115.0,0.9493145780057027 -3116.0,0.9489867529829558 -3117.0,0.9486590411674091 -3118.0,0.9483314425199689 -3119.0,0.9480039570015554 -3120.0,0.9476765845731017 -3121.0,0.9473493251955546 -3122.0,0.9470221788298747 -3123.0,0.9466951454370356 -3124.0,0.9463682249780248 -3125.0,0.9460414174138428 -3126.0,0.9457147227055042 -3127.0,0.9453881408140363 -3128.0,0.9450616717004806 -3129.0,0.9447353153258915 -3130.0,0.9444090716513371 -3131.0,0.9440829406378991 -3132.0,0.9437569222466722 -3133.0,0.9434310164387649 -3134.0,0.943105223175299 -3135.0,0.9427795424174098 -3136.0,0.9424539741262458 -3137.0,0.9421285182629692 -3138.0,0.9418031747887555 -3139.0,0.9414779436647935 -3140.0,0.9411528248522856 -3141.0,0.9408278183124474 -3142.0,0.940502924006508 -3143.0,0.94017814189571 -3144.0,0.9398534719413092 -3145.0,0.9395289141045748 -3146.0,0.9392044683467894 -3147.0,0.9388801346292491 -3148.0,0.9385559129132631 -3149.0,0.9382318031601542 -3150.0,0.9379078053312585 -3151.0,0.9375839193879254 -3152.0,0.9372601452915176 -3153.0,0.9369364830034113 -3154.0,0.9366129324849959 -3155.0,0.9362894936976741 -3156.0,0.9359661666028622 -3157.0,0.9356429511619895 -3158.0,0.9353198473364989 -3159.0,0.9349968550878462 -3160.0,0.934673974377501 -3161.0,0.934351205166946 -3162.0,0.934028547417677 -3163.0,0.9337060010912035 -3164.0,0.9333835661490479 -3165.0,0.9330612425527463 -3166.0,0.9327390302638475 -3167.0,0.9324169292439142 -3168.0,0.9320949394545219 -3169.0,0.9317730608572597 -3170.0,0.9314512934137298 -3171.0,0.9311296370855477 -3172.0,0.9308080918343422 -3173.0,0.9304866576217552 -3174.0,0.9301653344094419 -3175.0,0.9298441221590709 -3176.0,0.9295230208323239 -3177.0,0.9292020303908958 -3178.0,0.9288811507964947 -3179.0,0.9285603820108422 -3180.0,0.9282397239956729 -3181.0,0.9279191767127345 -3182.0,0.9275987401237882 -3183.0,0.9272784141906081 -3184.0,0.9269581988749818 -3185.0,0.9266380941387098 -3186.0,0.9263180999436059 -3187.0,0.9259982162514974 -3188.0,0.9256784430242243 -3189.0,0.92535878022364 -3190.0,0.9250392278116111 -3191.0,0.9247197857500173 -3192.0,0.9244004540007515 -3193.0,0.9240812325257198 -3194.0,0.9237621212868413 -3195.0,0.9234431202460485 -3196.0,0.9231242293652868 -3197.0,0.9228054486065148 -3198.0,0.9224867779317044 -3199.0,0.9221682173028404 -3200.0,0.9218497666819209 -3201.0,0.9215314260309571 -3202.0,0.9212131953119732 -3203.0,0.9208950744870067 -3204.0,0.9205770635181079 -3205.0,0.9202591623673406 -3206.0,0.9199413709967815 -3207.0,0.9196236893685203 -3208.0,0.9193061174446601 -3209.0,0.9189886551873166 -3210.0,0.9186713025586192 -3211.0,0.9183540595207097 -3212.0,0.9180369260357435 -3213.0,0.9177199020658889 -3214.0,0.9174029875733272 -3215.0,0.9170861825202529 -3216.0,0.9167694868688733 -3217.0,0.916452900581409 -3218.0,0.9161364236200937 -3219.0,0.9158200559471739 -3220.0,0.9155037975249091 -3221.0,0.9151876483155722 -3222.0,0.9148716082814488 -3223.0,0.9145556773848376 -3224.0,0.9142398555880503 -3225.0,0.9139241428534118 -3226.0,0.9136085391432599 -3227.0,0.9132930444199453 -3228.0,0.9129776586458317 -3229.0,0.9126623817832961 -3230.0,0.9123472137947279 -3231.0,0.9120321546425303 -3232.0,0.9117172042891187 -3233.0,0.911402362696922 -3234.0,0.9110876298283818 -3235.0,0.9107730056459528 -3236.0,0.9104584901121026 -3237.0,0.9101440831893118 -3238.0,0.909829784840074 -3239.0,0.9095155950268957 -3240.0,0.9092015137122963 -3241.0,0.9088875408588082 -3242.0,0.9085736764289768 -3243.0,0.9082599203853602 -3244.0,0.9079462726905296 -3245.0,0.9076327333070693 -3246.0,0.9073193021975763 -3247.0,0.9070059793246603 -3248.0,0.9066927646509445 -3249.0,0.9063796581390645 -3250.0,0.906066659751669 -3251.0,0.9057537694514196 -3252.0,0.9054409872009908 -3253.0,0.9051283129630697 -3254.0,0.9048157467003569 -3255.0,0.9045032883755654 -3256.0,0.9041909379514211 -3257.0,0.903878695390663 -3258.0,0.9035665606560428 -3259.0,0.903254533710325 -3260.0,0.9029426145162872 -3261.0,0.9026308030367196 -3262.0,0.9023190992344255 -3263.0,0.9020075030722208 -3264.0,0.9016960145129344 -3265.0,0.901384633519408 -3266.0,0.901073360054496 -3267.0,0.9007621940810658 -3268.0,0.9004511355619977 -3269.0,0.9001401844601846 -3270.0,0.8998293407385323 -3271.0,0.8995186043599593 -3272.0,0.8992079752873973 -3273.0,0.8988974534837901 -3274.0,0.898587038912095 -3275.0,0.8982767315352819 -3276.0,0.8979665313163331 -3277.0,0.8976564382182441 -3278.0,0.8973464522040232 -3279.0,0.8970365732366911 -3280.0,0.8967268012792816 -3281.0,0.8964171362948412 -3282.0,0.8961075782464291 -3283.0,0.8957981270971173 -3284.0,0.8954887828099903 -3285.0,0.895179545348146 -3286.0,0.8948704146746943 -3287.0,0.8945613907527583 -3288.0,0.8942524735454738 -3289.0,0.8939436630159889 -3290.0,0.8936349591274652 -3291.0,0.8933263618430761 -3292.0,0.8930178711260086 -3293.0,0.8927094869394617 -3294.0,0.8924012092466477 -3295.0,0.8920930380107911 -3296.0,0.8917849731951294 -3297.0,0.8914770147629126 -3298.0,0.8911691626774038 -3299.0,0.8908614169018781 -3300.0,0.890553777399624 -3301.0,0.8902462441339423 -3302.0,0.8899388170681464 -3303.0,0.8896314961655625 -3304.0,0.8893242813895295 -3305.0,0.8890171727033989 -3306.0,0.8887101700705348 -3307.0,0.8884032734543142 -3308.0,0.8880964828181265 -3309.0,0.8877897981253738 -3310.0,0.8874832193394708 -3311.0,0.887176746423845 -3312.0,0.8868703793419364 -3313.0,0.8865641180571975 -3314.0,0.8862579625330936 -3315.0,0.8859519127331027 -3316.0,0.8856459686207152 -3317.0,0.8853401301594342 -3318.0,0.8850343973127756 -3319.0,0.8847287700442673 -3320.0,0.8844232483174506 -3321.0,0.8841178320958787 -3322.0,0.8838125213431177 -3323.0,0.8835073160227465 -3324.0,0.883202216098356 -3325.0,0.8828972215335502 -3326.0,0.8825923322919456 -3327.0,0.8822875483371708 -3328.0,0.8819828696328675 -3329.0,0.8816782961426898 -3330.0,0.881373827830304 -3331.0,0.8810694646593897 -3332.0,0.8807652065936383 -3333.0,0.8804610535967542 -3334.0,0.8801570056324539 -3335.0,0.879853062664467 -3336.0,0.8795492246565351 -3337.0,0.8792454915724125 -3338.0,0.8789418633758663 -3339.0,0.8786383400306758 -3340.0,0.8783349215006327 -3341.0,0.8780316077495416 -3342.0,0.8777283987412192 -3343.0,0.8774252944394951 -3344.0,0.8771222948082109 -3345.0,0.8768193998112213 -3346.0,0.8765166094123926 -3347.0,0.8762139235756047 -3348.0,0.875911342264749 -3349.0,0.8756088654437298 -3350.0,0.875306493076464 -3351.0,0.8750042251268807 -3352.0,0.8747020615589215 -3353.0,0.8744000023365405 -3354.0,0.8740980474237041 -3355.0,0.8737961967843916 -3356.0,0.8734944503825942 -3357.0,0.8731928081823157 -3358.0,0.8728912701475726 -3359.0,0.8725898362423935 -3360.0,0.8722885064308195 -3361.0,0.8719872806769041 -3362.0,0.8716861589447134 -3363.0,0.8713851411983257 -3364.0,0.8710842274018318 -3365.0,0.8707834175193349 -3366.0,0.8704827115149504 -3367.0,0.8701821093528065 -3368.0,0.8698816109970435 -3369.0,0.8695812164118141 -3370.0,0.8692809255612833 -3371.0,0.8689807384096289 -3372.0,0.8686806549210404 -3373.0,0.8683806750597203 -3374.0,0.868080798789883 -3375.0,0.8677810260757556 -3376.0,0.8674813568815773 -3377.0,0.8671817911715998 -3378.0,0.8668823289100871 -3379.0,0.8665829700613155 -3380.0,0.8662837145895737 -3381.0,0.8659845624591627 -3382.0,0.8656855136343957 -3383.0,0.8653865680795986 -3384.0,0.8650877257591092 -3385.0,0.8647889866372779 -3386.0,0.8644903506784672 -3387.0,0.8641918178470521 -3388.0,0.8638933881074198 -3389.0,0.8635950614239697 -3390.0,0.8632968377611137 -3391.0,0.8629987170832758 -3392.0,0.8627006993548925 -3393.0,0.8624027845404123 -3394.0,0.8621049726042964 -3395.0,0.8618072635110177 -3396.0,0.8615096572250619 -3397.0,0.8612121537109266 -3398.0,0.8609147529331219 -3399.0,0.86061745485617 -3400.0,0.8603202594446054 -3401.0,0.860023166662975 -3402.0,0.8597261764758375 -3403.0,0.8594292888477644 -3404.0,0.859132503743339 -3405.0,0.8588358211271572 -3406.0,0.8585392409638267 -3407.0,0.8582427632179678 -3408.0,0.8579463878542128 -3409.0,0.8576501148372063 -3410.0,0.8573539441316052 -3411.0,0.8570578757020783 -3412.0,0.8567619095133068 -3413.0,0.8564660455299843 -3414.0,0.8561702837168161 -3415.0,0.8558746240385203 -3416.0,0.8555790664598266 -3417.0,0.8552836109454772 -3418.0,0.8549882574602266 -3419.0,0.8546930059688409 -3420.0,0.854397856436099 -3421.0,0.8541028088267918 -3422.0,0.8538078631057221 -3423.0,0.8535130192377051 -3424.0,0.8532182771875679 -3425.0,0.8529236369201502 -3426.0,0.8526290984003034 -3427.0,0.8523346615928913 -3428.0,0.8520403264627896 -3429.0,0.8517460929748863 -3430.0,0.8514519610940817 -3431.0,0.8511579307852878 -3432.0,0.8508640020134288 -3433.0,0.8505701747434414 -3434.0,0.8502764489402742 -3435.0,0.8499828245688876 -3436.0,0.8496893015942545 -3437.0,0.8493958799813597 -3438.0,0.8491025596952001 -3439.0,0.8488093407007848 -3440.0,0.848516222963135 -3441.0,0.8482232064472837 -3442.0,0.8479302911182762 -3443.0,0.84763747694117 -3444.0,0.8473447638810344 -3445.0,0.8470521519029508 -3446.0,0.8467596409720128 -3447.0,0.846467231053326 -3448.0,0.846174922112008 -3449.0,0.8458827141131884 -3450.0,0.845590607022009 -3451.0,0.8452986008036236 -3452.0,0.845006695423198 -3453.0,0.8447148908459098 -3454.0,0.844423187036949 -3455.0,0.8441315839615174 -3456.0,0.843840081584829 -3457.0,0.8435486798721096 -3458.0,0.8432573787885972 -3459.0,0.8429661782995415 -3460.0,0.8426750783702046 -3461.0,0.8423840789658603 -3462.0,0.8420931800517945 -3463.0,0.8418023815933051 -3464.0,0.841511683555702 -3465.0,0.8412210859043071 -3466.0,0.840930588604454 -3467.0,0.8406401916214887 -3468.0,0.8403498949207688 -3469.0,0.8400596984676642 -3470.0,0.8397696022275564 -3471.0,0.839479606165839 -3472.0,0.8391897102479179 -3473.0,0.8388999144392103 -3474.0,0.8386102187051458 -3475.0,0.8383206230111659 -3476.0,0.8380311273227238 -3477.0,0.8377417316052849 -3478.0,0.8374524358243262 -3479.0,0.837163239945337 -3480.0,0.8368741439338183 -3481.0,0.836585147755283 -3482.0,0.8362962513752561 -3483.0,0.8360074547592743 -3484.0,0.8357187578728862 -3485.0,0.8354301606816523 -3486.0,0.8351416631511452 -3487.0,0.8348532652469494 -3488.0,0.8345649669346609 -3489.0,0.8342767681798878 -3490.0,0.8339886689482501 -3491.0,0.8337006692053799 -3492.0,0.8334127689169206 -3493.0,0.833124968048528 -3494.0,0.8328372665658695 -3495.0,0.8325496644346244 -3496.0,0.8322621616204838 -3497.0,0.8319747580891509 -3498.0,0.8316874538063405 -3499.0,0.8314002487377791 -3500.0,0.8311131428492053 -3501.0,0.8308261361063697 -3502.0,0.8305392284750343 -3503.0,0.830252419920973 -3504.0,0.8299657104099718 -3505.0,0.8296790999078283 -3506.0,0.829392588380352 -3507.0,0.8291061757933641 -3508.0,0.8288198621126976 -3509.0,0.8285336473041975 -3510.0,0.8282475313337205 -3511.0,0.8279615141671349 -3512.0,0.827675595770321 -3513.0,0.8273897761091709 -3514.0,0.8271040551495882 -3515.0,0.8268184328574886 -3516.0,0.8265329091987995 -3517.0,0.8262474841394599 -3518.0,0.8259621576454207 -3519.0,0.8256769296826446 -3520.0,0.8253918002171059 -3521.0,0.8251067692147908 -3522.0,0.8248218366416971 -3523.0,0.8245370024638344 -3524.0,0.8242522666472243 -3525.0,0.8239676291578996 -3526.0,0.8236830899619052 -3527.0,0.8233986490252978 -3528.0,0.8231143063141455 -3529.0,0.8228300617945283 -3530.0,0.8225459154325381 -3531.0,0.822261867194278 -3532.0,0.8219779170458633 -3533.0,0.8216940649534209 -3534.0,0.8214103108830891 -3535.0,0.8211266548010182 -3536.0,0.8208430966733702 -3537.0,0.8205596364663186 -3538.0,0.8202762741460485 -3539.0,0.8199930096787572 -3540.0,0.8197098430306531 -3541.0,0.8194267741679564 -3542.0,0.8191438030568992 -3543.0,0.818860929663725 -3544.0,0.8185781539546891 -3545.0,0.8182954758960586 -3546.0,0.8180128954541118 -3547.0,0.817730412595139 -3548.0,0.8174480272854422 -3549.0,0.8171657394913348 -3550.0,0.8168835491791417 -3551.0,0.8166014563152 -3552.0,0.8163194608658578 -3553.0,0.8160375627974754 -3554.0,0.8157557620764242 -3555.0,0.8154740586690874 -3556.0,0.8151924525418599 -3557.0,0.8149109436611482 -3558.0,0.8146295319933703 -3559.0,0.8143482175049558 -3560.0,0.814067000162346 -3561.0,0.8137858799319937 -3562.0,0.8135048567803633 -3563.0,0.8132239306739307 -3564.0,0.8129431015791837 -3565.0,0.8126623694626212 -3566.0,0.8123817342907539 -3567.0,0.8121011960301043 -3568.0,0.811820754647206 -3569.0,0.8115404101086046 -3570.0,0.8112601623808567 -3571.0,0.8109800114305312 -3572.0,0.8106999572242078 -3573.0,0.8104199997284783 -3574.0,0.8101401389099457 -3575.0,0.8098603747352248 -3576.0,0.8095807071709415 -3577.0,0.8093011361837337 -3578.0,0.8090216617402506 -3579.0,0.8087422838071529 -3580.0,0.8084630023511128 -3581.0,0.8081838173388141 -3582.0,0.8079047287369521 -3583.0,0.8076257365122335 -3584.0,0.8073468406313766 -3585.0,0.8070680410611113 -3586.0,0.8067893377681785 -3587.0,0.8065107307193313 -3588.0,0.8062322198813336 -3589.0,0.8059538052209614 -3590.0,0.8056754867050016 -3591.0,0.8053972643002528 -3592.0,0.8051191379735253 -3593.0,0.8048411076916406 -3594.0,0.8045631734214317 -3595.0,0.8042853351297431 -3596.0,0.8040075927834306 -3597.0,0.8037299463493616 -3598.0,0.803452395794415 -3599.0,0.8031749410854809 -3600.0,0.8028975821894612 -3601.0,0.8026203190732688 -3602.0,0.8023431517038283 -3603.0,0.8020660800480756 -3604.0,0.8017891040729581 -3605.0,0.8015122237454347 -3606.0,0.8012354390324755 -3607.0,0.8009587499010621 -3608.0,0.8006821563181875 -3609.0,0.8004056582508561 -3610.0,0.8001292556660836 -3611.0,0.7998529485308975 -3612.0,0.7995767368123361 -3613.0,0.7993006204774493 -3614.0,0.7990245994932987 -3615.0,0.7987486738269568 -3616.0,0.7984728434455078 -3617.0,0.7981971083160471 -3618.0,0.7979214684056815 -3619.0,0.7976459236815291 -3620.0,0.7973704741107196 -3621.0,0.7970951196603937 -3622.0,0.7968198602977037 -3623.0,0.7965446959898131 -3624.0,0.796269626703897 -3625.0,0.7959946524071414 -3626.0,0.795719773066744 -3627.0,0.7954449886499138 -3628.0,0.7951702991238707 -3629.0,0.7948957044558466 -3630.0,0.794621204613084 -3631.0,0.7943467995628374 -3632.0,0.7940724892723722 -3633.0,0.7937982737089649 -3634.0,0.7935241528399041 -3635.0,0.7932501266324887 -3636.0,0.7929761950540296 -3637.0,0.7927023580718487 -3638.0,0.7924286156532794 -3639.0,0.792154967765666 -3640.0,0.7918814143763643 -3641.0,0.7916079554527415 -3642.0,0.791334590962176 -3643.0,0.7910613208720573 -3644.0,0.7907881451497862 -3645.0,0.790515063762775 -3646.0,0.790242076678447 -3647.0,0.7899691838642369 -3648.0,0.7896963852875903 -3649.0,0.7894236809159647 -3650.0,0.7891510707168283 -3651.0,0.7888785546576607 -3652.0,0.7886061327059526 -3653.0,0.7883338048292061 -3654.0,0.7880615709949346 -3655.0,0.7877894311706625 -3656.0,0.7875173853239255 -3657.0,0.7872454334222705 -3658.0,0.7869735754332556 -3659.0,0.7867018113244503 -3660.0,0.7864301410634349 -3661.0,0.7861585646178012 -3662.0,0.7858870819551522 -3663.0,0.7856156930431019 -3664.0,0.7853443978492756 -3665.0,0.7850731963413096 -3666.0,0.7848020884868518 -3667.0,0.784531074253561 -3668.0,0.784260153609107 -3669.0,0.783989326521171 -3670.0,0.7837185929574454 -3671.0,0.7834479528856335 -3672.0,0.7831774062734501 -3673.0,0.7829069530886208 -3674.0,0.7826365932988826 -3675.0,0.7823663268719835 -3676.0,0.7820961537756828 -3677.0,0.7818260739777506 -3678.0,0.7815560874459685 -3679.0,0.781286194148129 -3680.0,0.7810163940520359 -3681.0,0.7807466871255041 -3682.0,0.7804770733363593 -3683.0,0.7802075526524386 -3684.0,0.7799381250415901 -3685.0,0.7796687904716733 -3686.0,0.7793995489105583 -3687.0,0.7791304003261267 -3688.0,0.7788613446862709 -3689.0,0.7785923819588946 -3690.0,0.7783235121119124 -3691.0,0.7780547351132502 -3692.0,0.777786050930845 -3693.0,0.7775174595326444 -3694.0,0.7772489608866078 -3695.0,0.7769805549607048 -3696.0,0.776712241722917 -3697.0,0.7764440211412363 -3698.0,0.776175893183666 -3699.0,0.7759078578182205 -3700.0,0.7756399150129248 -3701.0,0.7753720647358158 -3702.0,0.7751043069549405 -3703.0,0.7748366416383574 -3704.0,0.7745690687541361 -3705.0,0.7743015882703571 -3706.0,0.7740342001551119 -3707.0,0.7737669043765031 -3708.0,0.7734997009026442 -3709.0,0.7732325897016596 -3710.0,0.7729655707416851 -3711.0,0.7726986439908674 -3712.0,0.7724318094173639 -3713.0,0.7721650669893432 -3714.0,0.7718984166749848 -3715.0,0.7716318584424794 -3716.0,0.7713653922600284 -3717.0,0.7710990180958446 -3718.0,0.7708327359181513 -3719.0,0.7705665456951829 -3720.0,0.7703004473951849 -3721.0,0.7700344409864138 -3722.0,0.769768526437137 -3723.0,0.7695027037156328 -3724.0,0.7692369727901903 -3725.0,0.7689713336291101 -3726.0,0.768705786200703 -3727.0,0.7684403304732914 -3728.0,0.7681749664152082 -3729.0,0.7679096939947975 -3730.0,0.7676445131804143 -3731.0,0.7673794239404242 -3732.0,0.7671144262432044 -3733.0,0.7668495200571421 -3734.0,0.7665847053506364 -3735.0,0.7663199820920965 -3736.0,0.7660553502499431 -3737.0,0.7657908097926073 -3738.0,0.7655263606885315 -3739.0,0.7652620029061689 -3740.0,0.7649977364139834 -3741.0,0.76473356118045 -3742.0,0.7644694771740546 -3743.0,0.7642054843632937 -3744.0,0.7639415827166751 -3745.0,0.7636777722027173 -3746.0,0.7634140527899493 -3747.0,0.7631504244469116 -3748.0,0.762886887142155 -3749.0,0.7626234408442417 -3750.0,0.7623600855217444 -3751.0,0.7620968211432466 -3752.0,0.761833647677343 -3753.0,0.7615705650926385 -3754.0,0.7613075733577498 -3755.0,0.7610446724413037 -3756.0,0.7607818623119379 -3757.0,0.7605191429383011 -3758.0,0.7602565142890528 -3759.0,0.7599939763328636 -3760.0,0.7597315290384142 -3761.0,0.7594691723743969 -3762.0,0.7592069063095144 -3763.0,0.75894473081248 -3764.0,0.7586826458520184 -3765.0,0.7584206513968645 -3766.0,0.7581587474157646 -3767.0,0.7578969338774751 -3768.0,0.7576352107507639 -3769.0,0.7573735780044091 -3770.0,0.7571120356072 -3771.0,0.7568505835279362 -3772.0,0.7565892217354288 -3773.0,0.7563279501984987 -3774.0,0.7560667688859787 -3775.0,0.7558056777667114 -3776.0,0.7555446768095506 -3777.0,0.7552837659833609 -3778.0,0.7550229452570174 -3779.0,0.7547622145994062 -3780.0,0.7545015739794239 -3781.0,0.7542410233659781 -3782.0,0.753980562727987 -3783.0,0.7537201920343795 -3784.0,0.7534599112540953 -3785.0,0.7531997203560847 -3786.0,0.752939619309309 -3787.0,0.7526796080827398 -3788.0,0.75241968664536 -3789.0,0.7521598549661627 -3790.0,0.7519001130141517 -3791.0,0.7516404607583419 -3792.0,0.7513808981677587 -3793.0,0.7511214252114379 -3794.0,0.7508620418584265 -3795.0,0.750602748077782 -3796.0,0.7503435438385724 -3797.0,0.7500844291098766 -3798.0,0.7498254038607841 -3799.0,0.7495664680603951 -3800.0,0.7493076216778203 -3801.0,0.7490488646821813 -3802.0,0.7487901970426104 -3803.0,0.7485316187282502 -3804.0,0.7482731297082545 -3805.0,0.7480147299517871 -3806.0,0.7477564194280231 -3807.0,0.7474981981061477 -3808.0,0.7472400659553572 -3809.0,0.746982022944858 -3810.0,0.7467240690438678 -3811.0,0.7464662042216145 -3812.0,0.7462084284473365 -3813.0,0.7459507416902832 -3814.0,0.7456931439197143 -3815.0,0.7454356351049005 -3816.0,0.7451782152151227 -3817.0,0.7449208842196727 -3818.0,0.7446636420878526 -3819.0,0.7444064887889755 -3820.0,0.7441494242923649 -3821.0,0.7438924485673547 -3822.0,0.7436355615832896 -3823.0,0.7433787633095249 -3824.0,0.7431220537154265 -3825.0,0.7428654327703708 -3826.0,0.7426089004437446 -3827.0,0.7423524567049458 -3828.0,0.7420961015233822 -3829.0,0.7418398348684727 -3830.0,0.7415836567096465 -3831.0,0.7413275670163435 -3832.0,0.7410715657580139 -3833.0,0.7408156529041187 -3834.0,0.7405598284241294 -3835.0,0.7403040922875279 -3836.0,0.7400484444638068 -3837.0,0.7397928849224693 -3838.0,0.7395374136330288 -3839.0,0.7392820305650095 -3840.0,0.7390267356879462 -3841.0,0.738771528971384 -3842.0,0.7385164103848785 -3843.0,0.738261379897996 -3844.0,0.7380064374803132 -3845.0,0.7377515831014175 -3846.0,0.7374968167309064 -3847.0,0.7372421383383881 -3848.0,0.7369875478934815 -3849.0,0.7367330453658157 -3850.0,0.7364786307250305 -3851.0,0.7362243039407761 -3852.0,0.735970064982713 -3853.0,0.7357159138205125 -3854.0,0.7354618504238561 -3855.0,0.735207874762436 -3856.0,0.7349539868059548 -3857.0,0.7347001865241254 -3858.0,0.7344464738866712 -3859.0,0.7341928488633264 -3860.0,0.7339393114238351 -3861.0,0.7336858615379523 -3862.0,0.7334324991754432 -3863.0,0.7331792243060836 -3864.0,0.7329260368996596 -3865.0,0.7326729369259679 -3866.0,0.7324199243548153 -3867.0,0.7321669991560193 -3868.0,0.731914161299408 -3869.0,0.7316614107548195 -3870.0,0.7314087474921024 -3871.0,0.731156171481116 -3872.0,0.7309036826917297 -3873.0,0.7306512810938236 -3874.0,0.7303989666572878 -3875.0,0.7301467393520232 -3876.0,0.7298945991479409 -3877.0,0.7296425460149623 -3878.0,0.7293905799230194 -3879.0,0.7291387008420545 -3880.0,0.7288869087420202 -3881.0,0.7286352035928795 -3882.0,0.7283835853646059 -3883.0,0.7281320540271832 -3884.0,0.7278806095506055 -3885.0,0.7276292519048773 -3886.0,0.7273779810600134 -3887.0,0.7271267969860391 -3888.0,0.72687569965299 -3889.0,0.726624689030912 -3890.0,0.7263737650898613 -3891.0,0.7261229277999045 -3892.0,0.7258721771311186 -3893.0,0.725621513053591 -3894.0,0.725370935537419 -3895.0,0.7251204445527109 -3896.0,0.7248700400695846 -3897.0,0.7246197220581687 -3898.0,0.7243694904886023 -3899.0,0.7241193453310346 -3900.0,0.7238692865556249 -3901.0,0.7236193141325431 -3902.0,0.7233694280319694 -3903.0,0.723119628224094 -3904.0,0.7228699146791179 -3905.0,0.7226202873672519 -3906.0,0.7223707462587173 -3907.0,0.7221212913237457 -3908.0,0.7218719225325789 -3909.0,0.7216226398554692 -3910.0,0.7213734432626786 -3911.0,0.7211243327244802 -3912.0,0.7208753082111566 -3913.0,0.7206263696930013 -3914.0,0.7203775171403175 -3915.0,0.720128750523419 -3916.0,0.7198800698126296 -3917.0,0.7196314749782838 -3918.0,0.7193829659907259 -3919.0,0.7191345428203105 -3920.0,0.7188862054374027 -3921.0,0.7186379538123775 -3922.0,0.7183897879156205 -3923.0,0.7181417077175271 -3924.0,0.7178937131885031 -3925.0,0.7176458042989649 -3926.0,0.7173979810193384 -3927.0,0.7171502433200603 -3928.0,0.7169025911715773 -3929.0,0.7166550245443462 -3930.0,0.7164075434088341 -3931.0,0.7161601477355184 -3932.0,0.7159128374948867 -3933.0,0.7156656126574363 -3934.0,0.7154184731936756 -3935.0,0.7151714190741223 -3936.0,0.7149244502693047 -3937.0,0.7146775667497614 -3938.0,0.7144307684860407 -3939.0,0.7141840554487016 -3940.0,0.7139374276083129 -3941.0,0.7136908849354539 -3942.0,0.7134444274007137 -3943.0,0.7131980549746917 -3944.0,0.7129517676279974 -3945.0,0.7127055653312507 -3946.0,0.7124594480550814 -3947.0,0.7122134157701294 -3948.0,0.711967468447045 -3949.0,0.7117216060564883 -3950.0,0.7114758285691298 -3951.0,0.7112301359556502 -3952.0,0.71098452818674 -3953.0,0.7107390052330999 -3954.0,0.7104935670654409 -3955.0,0.710248213654484 -3956.0,0.7100029449709603 -3957.0,0.709757760985611 -3958.0,0.7095126616691877 -3959.0,0.7092676469924516 -3960.0,0.7090227169261742 -3961.0,0.7087778714411374 -3962.0,0.7085331105081325 -3963.0,0.7082884340979616 -3964.0,0.7080438421814366 -3965.0,0.7077993347293794 -3966.0,0.7075549117126219 -3967.0,0.7073105731020064 -3968.0,0.707066318868385 -3969.0,0.7068221489826201 -3970.0,0.7065780634155839 -3971.0,0.7063340621381587 -3972.0,0.7060901451212371 -3973.0,0.7058463123357214 -3974.0,0.7056025637525243 -3975.0,0.7053588993425681 -3976.0,0.7051153190767857 -3977.0,0.7048718229261196 -3978.0,0.7046284108615226 -3979.0,0.7043850828539573 -3980.0,0.7041418388743964 -3981.0,0.7038986788938228 -3982.0,0.7036556028832293 -3983.0,0.7034126108136186 -3984.0,0.7031697026560035 -3985.0,0.7029268783814069 -3986.0,0.7026841379608617 -3987.0,0.7024414813654106 -3988.0,0.7021989085661065 -3989.0,0.7019564195340122 -3990.0,0.7017140142402006 -3991.0,0.7014716926557545 -3992.0,0.7012294547517667 -3993.0,0.7009873004993399 -3994.0,0.7007452298695869 -3995.0,0.7005032428336304 -3996.0,0.7002613393626033 -3997.0,0.7000195194276481 -3998.0,0.6997777829999174 -3999.0,0.699536130050574 -4000.0,0.6992945605507904 -4001.0,0.699053074471749 -4002.0,0.6988116717846424 -4003.0,0.698570352460673 -4004.0,0.6983291164710531 -4005.0,0.6980879637870051 -4006.0,0.6978468943797612 -4007.0,0.6976059082205636 -4008.0,0.6973650052806643 -4009.0,0.6971241855313254 -4010.0,0.6968834489438189 -4011.0,0.6966427954894266 -4012.0,0.6964022251394405 -4013.0,0.696161737865162 -4014.0,0.695921333637903 -4015.0,0.6956810124289848 -4016.0,0.695440774209739 -4017.0,0.6952006189515069 -4018.0,0.6949605466256397 -4019.0,0.6947205572034986 -4020.0,0.6944806506564544 -4021.0,0.6942408269558882 -4022.0,0.6940010860731907 -4023.0,0.6937614279797626 -4024.0,0.6935218526470144 -4025.0,0.6932823600463665 -4026.0,0.6930429501492492 -4027.0,0.6928036229271027 -4028.0,0.692564378351377 -4029.0,0.6923252163935318 -4030.0,0.692086137025037 -4031.0,0.6918471402173721 -4032.0,0.6916082259420266 -4033.0,0.6913693941704997 -4034.0,0.6911306448743004 -4035.0,0.690891978024948 -4036.0,0.6906533935939708 -4037.0,0.6904148915529079 -4038.0,0.6901764718733074 -4039.0,0.6899381345267277 -4040.0,0.689699879484737 -4041.0,0.6894617067189129 -4042.0,0.6892236162008434 -4043.0,0.688985607902126 -4044.0,0.688747681794368 -4045.0,0.6885098378491865 -4046.0,0.6882720760382085 -4047.0,0.6880343963330708 -4048.0,0.68779679870542 -4049.0,0.6875592831269122 -4050.0,0.6873218495692136 -4051.0,0.6870844980040003 -4052.0,0.6868472284029578 -4053.0,0.6866100407377815 -4054.0,0.6863729349801769 -4055.0,0.6861359111018589 -4056.0,0.6858989690745522 -4057.0,0.6856621088699913 -4058.0,0.6854253304599208 -4059.0,0.6851886338160944 -4060.0,0.6849520189102762 -4061.0,0.6847154857142396 -4062.0,0.6844790341997679 -4063.0,0.6842426643386542 -4064.0,0.6840063761027014 -4065.0,0.6837701694637219 -4066.0,0.6835340443935382 -4067.0,0.683298000863982 -4068.0,0.6830620388468951 -4069.0,0.682826158314129 -4070.0,0.682590359237545 -4071.0,0.6823546415890137 -4072.0,0.6821190053404159 -4073.0,0.681883450463642 -4074.0,0.6816479769305919 -4075.0,0.6814125847131752 -4076.0,0.6811772737833115 -4077.0,0.6809420441129299 -4078.0,0.6807068956739692 -4079.0,0.680471828438378 -4080.0,0.6802368423781142 -4081.0,0.6800019374651459 -4082.0,0.6797671136714507 -4083.0,0.6795323709690156 -4084.0,0.6792977093298379 -4085.0,0.6790631287259238 -4086.0,0.6788286291292898 -4087.0,0.6785942105119616 -4088.0,0.6783598728459748 -4089.0,0.6781256161033747 -4090.0,0.6778914402562162 -4091.0,0.6776573452765638 -4092.0,0.6774233311364917 -4093.0,0.6771893978080836 -4094.0,0.6769555452634333 -4095.0,0.6767217734746434 -4096.0,0.676488082413827 -4097.0,0.6762544720531062 -4098.0,0.6760209423646132 -4099.0,0.6757874933204895 -4100.0,0.6755541248928864 -4101.0,0.6753208370539647 -4102.0,0.6750876297758949 -4103.0,0.674854503030857 -4104.0,0.6746214567910407 -4105.0,0.6743884910286454 -4106.0,0.6741556057158798 -4107.0,0.6739228008249626 -4108.0,0.6736900763281216 -4109.0,0.6734574321975947 -4110.0,0.673224868405629 -4111.0,0.6729923849244814 -4112.0,0.6727599817264184 -4113.0,0.6725276587837158 -4114.0,0.6722954160686594 -4115.0,0.6720632535535441 -4116.0,0.6718311712106748 -4117.0,0.6715991690123656 -4118.0,0.6713672469309404 -4119.0,0.6711354049387327 -4120.0,0.6709036430080852 -4121.0,0.6706719611113506 -4122.0,0.670440359220891 -4123.0,0.6702088373090778 -4124.0,0.669977395348292 -4125.0,0.6697460333109246 -4126.0,0.6695147511693756 -4127.0,0.6692835488960548 -4128.0,0.6690524264633814 -4129.0,0.6688213838437841 -4130.0,0.6685904210097015 -4131.0,0.668359537933581 -4132.0,0.6681287345878802 -4133.0,0.667898010945066 -4134.0,0.6676673669776145 -4135.0,0.6674368026580118 -4136.0,0.6672063179587532 -4137.0,0.6669759128523434 -4138.0,0.6667455873112969 -4139.0,0.6665153413081374 -4140.0,0.6662851748153985 -4141.0,0.6660550878056227 -4142.0,0.6658250802513627 -4143.0,0.6655951521251798 -4144.0,0.6653653033996455 -4145.0,0.6651355340473406 -4146.0,0.6649058440408551 -4147.0,0.6646762333527887 -4148.0,0.6644467019557507 -4149.0,0.6642172498223595 -4150.0,0.6639878769252432 -4151.0,0.6637585832370392 -4152.0,0.6635293687303945 -4153.0,0.6633002333779655 -4154.0,0.663071177152418 -4155.0,0.6628422000264272 -4156.0,0.662613301972678 -4157.0,0.6623844829638643 -4158.0,0.6621557429726898 -4159.0,0.6619270819718674 -4160.0,0.6616984999341196 -4161.0,0.6614699968321782 -4162.0,0.6612415726387844 -4163.0,0.6610132273266889 -4164.0,0.6607849608686517 -4165.0,0.6605567732374423 -4166.0,0.6603286644058397 -4167.0,0.660100634346632 -4168.0,0.659872683032617 -4169.0,0.6596448104366018 -4170.0,0.6594170165314027 -4171.0,0.6591893012898458 -4172.0,0.658961664684766 -4173.0,0.6587341066890082 -4174.0,0.6585066272754263 -4175.0,0.6582792264168836 -4176.0,0.6580519040862529 -4177.0,0.6578246602564163 -4178.0,0.6575974949002652 -4179.0,0.6573704079907005 -4180.0,0.6571433995006324 -4181.0,0.6569164694029803 -4182.0,0.6566896176706734 -4183.0,0.6564628442766496 -4184.0,0.6562361491938566 -4185.0,0.6560095323952515 -4186.0,0.6557829938538003 -4187.0,0.6555565335424789 -4188.0,0.655330151434272 -4189.0,0.6551038475021739 -4190.0,0.6548776217191883 -4191.0,0.654651474058328 -4192.0,0.6544254044926152 -4193.0,0.6541994129950817 -4194.0,0.653973499538768 -4195.0,0.6537476640967246 -4196.0,0.6535219066420108 -4197.0,0.6532962271476954 -4198.0,0.6530706255868565 -4199.0,0.6528451019325815 -4200.0,0.652619656157967 -4201.0,0.6523942882361191 -4202.0,0.652168998140153 -4203.0,0.651943785843193 -4204.0,0.6517186513183733 -4205.0,0.6514935945388367 -4206.0,0.6512686154777357 -4207.0,0.6510437141082319 -4208.0,0.6508188904034963 -4209.0,0.6505941443367089 -4210.0,0.6503694758810593 -4211.0,0.6501448850097461 -4212.0,0.6499203716959773 -4213.0,0.6496959359129699 -4214.0,0.6494715776339507 -4215.0,0.6492472968321551 -4216.0,0.6490230934808281 -4217.0,0.648798967553224 -4218.0,0.6485749190226061 -4219.0,0.648350947862247 -4220.0,0.6481270540454287 -4221.0,0.6479032375454423 -4222.0,0.6476794983355879 -4223.0,0.6474558363891754 -4224.0,0.6472322516795233 -4225.0,0.6470087441799596 -4226.0,0.6467853138638215 -4227.0,0.6465619607044555 -4228.0,0.646338684675217 -4229.0,0.6461154857494711 -4230.0,0.6458923639005915 -4231.0,0.6456693191019615 -4232.0,0.6454463513269735 -4233.0,0.645223460549029 -4234.0,0.6450006467415388 -4235.0,0.6447779098779229 -4236.0,0.6445552499316104 -4237.0,0.6443326668760394 -4238.0,0.6441101606846577 -4239.0,0.6438877313309217 -4240.0,0.6436653787882972 -4241.0,0.6434431030302592 -4242.0,0.6432209040302919 -4243.0,0.6429987817618884 -4244.0,0.6427767361985514 -4245.0,0.6425547673137922 -4246.0,0.6423328750811318 -4247.0,0.6421110594740999 -4248.0,0.6418893204662355 -4249.0,0.6416676580310868 -4250.0,0.6414460721422112 -4251.0,0.6412245627731749 -4252.0,0.6410031298975536 -4253.0,0.6407817734889318 -4254.0,0.6405604935209036 -4255.0,0.6403392899670717 -4256.0,0.6401181628010482 -4257.0,0.6398971119964542 -4258.0,0.6396761375269199 -4259.0,0.6394552393660847 -4260.0,0.6392344174875971 -4261.0,0.6390136718651147 -4262.0,0.6387930024723041 -4263.0,0.6385724092828411 -4264.0,0.6383518922704103 -4265.0,0.638131451408706 -4266.0,0.6379110866714309 -4267.0,0.6376907980322972 -4268.0,0.6374705854650262 -4269.0,0.637250448943348 -4270.0,0.6370303884410019 -4271.0,0.6368104039317364 -4272.0,0.6365904953893089 -4273.0,0.6363706627874859 -4274.0,0.636150906100043 -4275.0,0.6359312253007647 -4276.0,0.635711620363445 -4277.0,0.6354920912618863 -4278.0,0.6352726379699005 -4279.0,0.6350532604613084 -4280.0,0.63483395870994 -4281.0,0.634614732689634 -4282.0,0.6343955823742384 -4283.0,0.6341765077376104 -4284.0,0.6339575087536156 -4285.0,0.6337385853961292 -4286.0,0.6335197376390352 -4287.0,0.6333009654562268 -4288.0,0.633082268821606 -4289.0,0.6328636477090838 -4290.0,0.6326451020925803 -4291.0,0.6324266319460248 -4292.0,0.6322082372433552 -4293.0,0.6319899179585186 -4294.0,0.6317716740654712 -4295.0,0.631553505538178 -4296.0,0.6313354123506133 -4297.0,0.63111739447676 -4298.0,0.63089945189061 -4299.0,0.6306815845661646 -4300.0,0.6304637924774338 -4301.0,0.6302460755984365 -4302.0,0.6300284339032006 -4303.0,0.6298108673657633 -4304.0,0.6295933759601702 -4305.0,0.6293759596604763 -4306.0,0.6291586184407454 -4307.0,0.6289413522750502 -4308.0,0.6287241611374726 -4309.0,0.6285070450021032 -4310.0,0.6282900038430416 -4311.0,0.6280730376343964 -4312.0,0.6278561463502851 -4313.0,0.6276393299648341 -4314.0,0.6274225884521789 -4315.0,0.6272059217864637 -4316.0,0.6269893299418419 -4317.0,0.6267728128924754 -4318.0,0.6265563706125357 -4319.0,0.6263400030762024 -4320.0,0.6261237102576647 -4321.0,0.6259074921311203 -4322.0,0.6256913486707761 -4323.0,0.6254752798508476 -4324.0,0.6252592856455595 -4325.0,0.6250433660291452 -4326.0,0.6248275209758472 -4327.0,0.6246117504599163 -4328.0,0.6243960544556132 -4329.0,0.6241804329372067 -4330.0,0.6239648858789748 -4331.0,0.6237494132552042 -4332.0,0.6235340150401906 -4333.0,0.6233186912082386 -4334.0,0.6231034417336617 -4335.0,0.6228882665907821 -4336.0,0.622673165753931 -4337.0,0.6224581391974485 -4338.0,0.6222431868956835 -4339.0,0.6220283088229936 -4340.0,0.6218135049537457 -4341.0,0.621598775262315 -4342.0,0.6213841197230858 -4343.0,0.6211695383104515 -4344.0,0.620955030998814 -4345.0,0.6207405977625841 -4346.0,0.6205262385761814 -4347.0,0.6203119534140346 -4348.0,0.6200977422505808 -4349.0,0.6198836050602664 -4350.0,0.6196695418175463 -4351.0,0.6194555524968843 -4352.0,0.6192416370727531 -4353.0,0.6190277955196342 -4354.0,0.6188140278120177 -4355.0,0.6186003339244026 -4356.0,0.6183867138312971 -4357.0,0.6181731675072176 -4358.0,0.6179596949266898 -4359.0,0.6177462960642477 -4360.0,0.6175329708944346 -4361.0,0.6173197193918023 -4362.0,0.6171065415309115 -4363.0,0.6168934372863315 -4364.0,0.6166804066326406 -4365.0,0.6164674495444258 -4366.0,0.6162545659962828 -4367.0,0.6160417559628163 -4368.0,0.6158290194186395 -4369.0,0.6156163563383745 -4370.0,0.6154037666966522 -4371.0,0.6151912504681121 -4372.0,0.6149788076274026 -4373.0,0.6147664381491809 -4374.0,0.6145541420081128 -4375.0,0.6143419191788728 -4376.0,0.6141297696361445 -4377.0,0.6139176933546199 -4378.0,0.6137056903089999 -4379.0,0.613493760473994 -4380.0,0.6132819038243204 -4381.0,0.6130701203347064 -4382.0,0.6128584099798876 -4383.0,0.6126467727346087 -4384.0,0.6124352085736225 -4385.0,0.6122237174716915 -4386.0,0.6120122994035859 -4387.0,0.6118009543440853 -4388.0,0.6115896822679777 -4389.0,0.6113784831500599 -4390.0,0.6111673569651375 -4391.0,0.6109563036880244 -4392.0,0.6107453232935437 -4393.0,0.6105344157565269 -4394.0,0.6103235810518143 -4395.0,0.6101128191542549 -4396.0,0.6099021300387062 -4397.0,0.6096915136800347 -4398.0,0.6094809700531153 -4399.0,0.6092704991328317 -4400.0,0.6090601008940763 -4401.0,0.60884977531175 -4402.0,0.6086395223607626 -4403.0,0.6084293420160324 -4404.0,0.6082192342524865 -4405.0,0.6080091990450605 -4406.0,0.6077992363686987 -4407.0,0.6075893461983541 -4408.0,0.6073795285089885 -4409.0,0.607169783275572 -4410.0,0.6069601104730836 -4411.0,0.6067505100765108 -4412.0,0.6065409820608498 -4413.0,0.6063315264011055 -4414.0,0.6061221430722914 -4415.0,0.6059128320494295 -4416.0,0.6057035933075504 -4417.0,0.6054944268216937 -4418.0,0.6052853325669073 -4419.0,0.6050763105182477 -4420.0,0.6048673606507802 -4421.0,0.6046584829395785 -4422.0,0.6044496773597251 -4423.0,0.6042409438863109 -4424.0,0.6040322824944356 -4425.0,0.6038236931592074 -4426.0,0.6036151758557431 -4427.0,0.6034067305591682 -4428.0,0.6031983572446166 -4429.0,0.6029900558872309 -4430.0,0.6027818264621622 -4431.0,0.6025736689445703 -4432.0,0.6023655833096236 -4433.0,0.602157569532499 -4434.0,0.6019496275883819 -4435.0,0.6017417574524663 -4436.0,0.6015339590999548 -4437.0,0.6013262325060588 -4438.0,0.6011185776459977 -4439.0,0.6009109944950001 -4440.0,0.6007034830283027 -4441.0,0.6004960432211508 -4442.0,0.6002886750487985 -4443.0,0.6000813784865082 -4444.0,0.5998741535095511 -4445.0,0.5996670000932065 -4446.0,0.5994599182127627 -4447.0,0.5992529078435163 -4448.0,0.5990459689607723 -4449.0,0.5988391015398447 -4450.0,0.5986323055560555 -4451.0,0.5984255809847356 -4452.0,0.5982189278012242 -4453.0,0.598012345980869 -4454.0,0.5978058354990264 -4455.0,0.5975993963310612 -4456.0,0.5973930284523467 -4457.0,0.5971867318382647 -4458.0,0.5969805064642055 -4459.0,0.596774352305568 -4460.0,0.5965682693377594 -4461.0,0.5963622575361955 -4462.0,0.5961563168763008 -4463.0,0.5959504473335078 -4464.0,0.595744648883258 -4465.0,0.595538921501001 -4466.0,0.595333265162195 -4467.0,0.5951276798423069 -4468.0,0.5949221655168115 -4469.0,0.5947167221611929 -4470.0,0.5945113497509429 -4471.0,0.5943060482615621 -4472.0,0.5941008176685597 -4473.0,0.5938956579474529 -4474.0,0.5936905690737679 -4475.0,0.593485551023039 -4476.0,0.593280603770809 -4477.0,0.5930757272926293 -4478.0,0.5928709215640595 -4479.0,0.5926661865606678 -4480.0,0.592461522258031 -4481.0,0.5922569286317337 -4482.0,0.5920524056573698 -4483.0,0.5918479533105411 -4484.0,0.5916435715668578 -4485.0,0.5914392604019387 -4486.0,0.591235019791411 -4487.0,0.5910308497109104 -4488.0,0.5908267501360805 -4489.0,0.5906227210425742 -4490.0,0.5904187624060521 -4491.0,0.5902148742021833 -4492.0,0.5900110564066456 -4493.0,0.5898073089951249 -4494.0,0.5896036319433158 -4495.0,0.5894000252269209 -4496.0,0.5891964888216515 -4497.0,0.5889930227032273 -4498.0,0.5887896268473761 -4499.0,0.5885863012298344 -4500.0,0.5883830458263467 -4501.0,0.5881798606126664 -4502.0,0.5879767455645548 -4503.0,0.5877737006577819 -4504.0,0.5875707258681258 -4505.0,0.587367821171373 -4506.0,0.5871649865433187 -4507.0,0.586962221959766 -4508.0,0.5867595273965267 -4509.0,0.5865569028294209 -4510.0,0.5863543482342766 -4511.0,0.5861518635869308 -4512.0,0.5859494488632285 -4513.0,0.5857471040390232 -4514.0,0.5855448290901764 -4515.0,0.5853426239925584 -4516.0,0.5851404887220475 -4517.0,0.5849384232545305 -4518.0,0.5847364275659023 -4519.0,0.5845345016320664 -4520.0,0.5843326454289347 -4521.0,0.5841308589324269 -4522.0,0.5839291421184715 -4523.0,0.5837274949630051 -4524.0,0.5835259174419728 -4525.0,0.5833244095313277 -4526.0,0.5831229712070314 -4527.0,0.5829216024450539 -4528.0,0.5827203032213732 -4529.0,0.5825190735119761 -4530.0,0.5823179132928569 -4531.0,0.582116822540019 -4532.0,0.5819158012294735 -4533.0,0.5817148493372403 -4534.0,0.5815139668393471 -4535.0,0.58131315371183 -4536.0,0.5811124099307338 -4537.0,0.580911735472111 -4538.0,0.5807111303120225 -4539.0,0.5805105944265377 -4540.0,0.5803101277917342 -4541.0,0.5801097303836977 -4542.0,0.5799094021785223 -4543.0,0.5797091431523101 -4544.0,0.579508953281172 -4545.0,0.5793088325412266 -4546.0,0.579108780908601 -4547.0,0.5789087983594304 -4548.0,0.5787088848698586 -4549.0,0.5785090404160371 -4550.0,0.5783092649741259 -4551.0,0.5781095585202936 -4552.0,0.5779099210307163 -4553.0,0.5777103524815789 -4554.0,0.5775108528490742 -4555.0,0.5773114221094036 -4556.0,0.5771120602387761 -4557.0,0.5769127672134096 -4558.0,0.5767135430095297 -4559.0,0.5765143876033705 -4560.0,0.5763153009711741 -4561.0,0.5761162830891912 -4562.0,0.57591733393368 -4563.0,0.5757184534809077 -4564.0,0.5755196417071491 -4565.0,0.5753208985886874 -4566.0,0.5751222241018141 -4567.0,0.5749236182228287 -4568.0,0.5747250809280391 -4569.0,0.5745266121937609 -4570.0,0.5743282119963187 -4571.0,0.5741298803120445 -4572.0,0.5739316171172788 -4573.0,0.5737334223883704 -4574.0,0.573535296101676 -4575.0,0.5733372382335605 -4576.0,0.5731392487603972 -4577.0,0.5729413276585673 -4578.0,0.5727434749044603 -4579.0,0.5725456904744739 -4580.0,0.5723479743450136 -4581.0,0.5721503264924935 -4582.0,0.5719527468933356 -4583.0,0.5717552355239702 -4584.0,0.5715577923608355 -4585.0,0.571360417380378 -4586.0,0.5711631105590523 -4587.0,0.5709658718733212 -4588.0,0.5707687012996554 -4589.0,0.5705715988145341 -4590.0,0.5703745643944443 -4591.0,0.5701775980158813 -4592.0,0.5699806996553484 -4593.0,0.5697838692893569 -4594.0,0.5695871068944266 -4595.0,0.5693904124470852 -4596.0,0.5691937859238684 -4597.0,0.56899722730132 -4598.0,0.5688007365559921 -4599.0,0.5686043136644446 -4600.0,0.568407958603246 -4601.0,0.5682116713489724 -4602.0,0.5680154518782081 -4603.0,0.5678193001675457 -4604.0,0.5676232161935857 -4605.0,0.5674271999329366 -4606.0,0.567231251362215 -4607.0,0.567035370458046 -4608.0,0.5668395571970621 -4609.0,0.5666438115559046 -4610.0,0.566448133511222 -4611.0,0.5662525230396718 -4612.0,0.5660569801179187 -4613.0,0.5658615047226361 -4614.0,0.5656660968305051 -4615.0,0.565470756418215 -4616.0,0.565275483462463 -4617.0,0.5650802779399547 -4618.0,0.5648851398274033 -4619.0,0.5646900691015304 -4620.0,0.5644950657390654 -4621.0,0.5643001297167457 -4622.0,0.5641052610113171 -4623.0,0.563910459599533 -4624.0,0.5637157254581551 -4625.0,0.563521058563953 -4626.0,0.5633264588937044 -4627.0,0.5631319264241949 -4628.0,0.5629374611322182 -4629.0,0.5627430629945762 -4630.0,0.5625487319880783 -4631.0,0.5623544680895426 -4632.0,0.5621602712757945 -4633.0,0.5619661415236679 -4634.0,0.5617720788100045 -4635.0,0.561578083111654 -4636.0,0.5613841544054742 -4637.0,0.5611902926683308 -4638.0,0.5609964978770975 -4639.0,0.5608027700086559 -4640.0,0.5606091090398958 -4641.0,0.5604155149477149 -4642.0,0.5602219877090187 -4643.0,0.5600285273007208 -4644.0,0.5598351336997429 -4645.0,0.5596418068830146 -4646.0,0.5594485468274732 -4647.0,0.5592553535100645 -4648.0,0.5590622269077415 -4649.0,0.5588691669974661 -4650.0,0.5586761737562074 -4651.0,0.5584832471609427 -4652.0,0.5582903871886572 -4653.0,0.5580975938163443 -4654.0,0.5579048670210051 -4655.0,0.5577122067796485 -4656.0,0.5575196130692919 -4657.0,0.55732708586696 -4658.0,0.5571346251496858 -4659.0,0.5569422308945101 -4660.0,0.5567499030784817 -4661.0,0.5565576416786574 -4662.0,0.5563654466721015 -4663.0,0.5561733180358869 -4664.0,0.5559812557470939 -4665.0,0.5557892597828108 -4666.0,0.555597330120134 -4667.0,0.5554054667361676 -4668.0,0.5552136696080238 -4669.0,0.5550219387128225 -4670.0,0.5548302740276916 -4671.0,0.554638675529767 -4672.0,0.5544471431961924 -4673.0,0.5542556770041192 -4674.0,0.554064276930707 -4675.0,0.5538729429531233 -4676.0,0.5536816750485432 -4677.0,0.5534904731941498 -4678.0,0.5532993373671341 -4679.0,0.5531082675446952 -4680.0,0.5529172637040396 -4681.0,0.5527263258223821 -4682.0,0.5525354538769452 -4683.0,0.5523446478449592 -4684.0,0.5521539077036625 -4685.0,0.5519632334303008 -4686.0,0.5517726250021285 -4687.0,0.5515820823964072 -4688.0,0.5513916055904065 -4689.0,0.5512011945614039 -4690.0,0.551010849286685 -4691.0,0.5508205697435427 -4692.0,0.5506303559092781 -4693.0,0.5504402077612003 -4694.0,0.5502501252766258 -4695.0,0.550060108432879 -4696.0,0.5498701572072927 -4697.0,0.5496802715772068 -4698.0,0.5494904515199693 -4699.0,0.5493006970129363 -4700.0,0.5491110080334712 -4701.0,0.5489213845589457 -4702.0,0.5487318265667389 -4703.0,0.5485423340342381 -4704.0,0.5483529069388382 -4705.0,0.5481635452579419 -4706.0,0.5479742489689595 -4707.0,0.5477850180493098 -4708.0,0.5475958524764185 -4709.0,0.5474067522277197 -4710.0,0.5472177172806553 -4711.0,0.5470287476126744 -4712.0,0.5468398432012347 -4713.0,0.546651004023801 -4714.0,0.5464622300578463 -4715.0,0.5462735212808512 -4716.0,0.5460848776703041 -4717.0,0.5458962992037013 -4718.0,0.5457077858585466 -4719.0,0.5455193376123519 -4720.0,0.5453309544426366 -4721.0,0.5451426363269278 -4722.0,0.5449543832427609 -4723.0,0.5447661951676784 -4724.0,0.544578072079231 -4725.0,0.5443900139549769 -4726.0,0.544202020772482 -4727.0,0.5440140925093203 -4728.0,0.5438262291430733 -4729.0,0.5436384306513302 -4730.0,0.543450697011688 -4731.0,0.5432630282017515 -4732.0,0.5430754241991331 -4733.0,0.5428878849814531 -4734.0,0.5427004105263395 -4735.0,0.5425130008114277 -4736.0,0.5423256558143614 -4737.0,0.5421383755127915 -4738.0,0.5419511598843769 -4739.0,0.5417640089067841 -4740.0,0.5415769225576874 -4741.0,0.5413899008147688 -4742.0,0.5412029436557179 -4743.0,0.541016051058232 -4744.0,0.5408292230000163 -4745.0,0.5406424594587835 -4746.0,0.5404557604122543 -4747.0,0.5402691258381566 -4748.0,0.5400825557142263 -4749.0,0.5398960500182068 -4750.0,0.5397096087278498 -4751.0,0.5395232318209138 -4752.0,0.5393369192751655 -4753.0,0.5391506710683791 -4754.0,0.5389644871783368 -4755.0,0.5387783675828279 -4756.0,0.53859231225965 -4757.0,0.5384063211866078 -4758.0,0.538220394341514 -4759.0,0.538034531702189 -4760.0,0.5378487332464605 -4761.0,0.5376629989521644 -4762.0,0.5374773287971437 -4763.0,0.5372917227592495 -4764.0,0.5371061808163402 -4765.0,0.536920702946282 -4766.0,0.5367352891269489 -4767.0,0.5365499393362222 -4768.0,0.5363646535519911 -4769.0,0.5361794317521524 -4770.0,0.5359942739146105 -4771.0,0.5358091800172773 -4772.0,0.5356241500380725 -4773.0,0.5354391839549234 -4774.0,0.5352542817457648 -4775.0,0.5350694433885395 -4776.0,0.5348846688611972 -4777.0,0.534699958141696 -4778.0,0.5345153112080011 -4779.0,0.5343307280380856 -4780.0,0.5341462086099299 -4781.0,0.5339617529015221 -4782.0,0.5337773608908584 -4783.0,0.5335930325559418 -4784.0,0.5334087678747833 -4785.0,0.5332245668254016 -4786.0,0.5330404293858229 -4787.0,0.5328563555340807 -4788.0,0.5326723452482166 -4789.0,0.5324883985062794 -4790.0,0.5323045152863255 -4791.0,0.5321206955664192 -4792.0,0.5319369393246319 -4793.0,0.531753246539043 -4794.0,0.5315696171877392 -4795.0,0.5313860512488149 -4796.0,0.5312025487003719 -4797.0,0.5310191095205198 -4798.0,0.5308357336873757 -4799.0,0.5306524211790642 -4800.0,0.5304691719737172 -4801.0,0.5302859860494747 -4802.0,0.530102863384484 -4803.0,0.5299198039568995 -4804.0,0.529736807744884 -4805.0,0.529553874726607 -4806.0,0.5293710048802462 -4807.0,0.5291881981839864 -4808.0,0.5290054546160202 -4809.0,0.5288227741545476 -4810.0,0.5286401567777761 -4811.0,0.5284576024639209 -4812.0,0.5282751111912044 -4813.0,0.5280926829378569 -4814.0,0.5279103176821159 -4815.0,0.5277280154022267 -4816.0,0.5275457760764419 -4817.0,0.5273635996830217 -4818.0,0.5271814862002338 -4819.0,0.5269994356063532 -4820.0,0.5268174478796629 -4821.0,0.5266355229984528 -4822.0,0.5264536609410208 -4823.0,0.526271861685672 -4824.0,0.5260901252107191 -4825.0,0.5259084514944822 -4826.0,0.525726840515289 -4827.0,0.5255452922514746 -4828.0,0.5253638066813816 -4829.0,0.5251823837833602 -4830.0,0.5250010235357679 -4831.0,0.5248197259169698 -4832.0,0.5246384909053383 -4833.0,0.5244573184792536 -4834.0,0.5242762086171028 -4835.0,0.5240951612972811 -4836.0,0.5239141764981908 -4837.0,0.5237332541982417 -4838.0,0.5235523943758511 -4839.0,0.5233715970094439 -4840.0,0.523190862077452 -4841.0,0.5230101895583152 -4842.0,0.5228295794304807 -4843.0,0.5226490316724027 -4844.0,0.5224685462625436 -4845.0,0.5222881231793725 -4846.0,0.5221077624013662 -4847.0,0.5219274639070093 -4848.0,0.5217472276747932 -4849.0,0.5215670536832171 -4850.0,0.5213869419107876 -4851.0,0.5212068923360187 -4852.0,0.5210269049374316 -4853.0,0.5208469796935554 -4854.0,0.5206671165829263 -4855.0,0.5204873155840878 -4856.0,0.5203075766755909 -4857.0,0.5201278998359943 -4858.0,0.5199482850438637 -4859.0,0.5197687322777723 -4860.0,0.5195892415163009 -4861.0,0.5194098127380377 -4862.0,0.5192304459215777 -4863.0,0.5190511410455242 -4864.0,0.5188718980884871 -4865.0,0.5186927170290843 -4866.0,0.5185135978459406 -4867.0,0.5183345405176886 -4868.0,0.5181555450229678 -4869.0,0.5179766113404256 -4870.0,0.5177977394487163 -4871.0,0.5176189293265019 -4872.0,0.5174401809524516 -4873.0,0.5172614943052422 -4874.0,0.5170828693635574 -4875.0,0.5169043061060887 -4876.0,0.5167258045115348 -4877.0,0.5165473645586018 -4878.0,0.5163689862260031 -4879.0,0.5161906694924595 -4880.0,0.516012414336699 -4881.0,0.5158342207374571 -4882.0,0.5156560886734766 -4883.0,0.5154780181235077 -4884.0,0.5153000090663078 -4885.0,0.5151220614806418 -4886.0,0.5149441753452818 -4887.0,0.5147663506390072 -4888.0,0.5145885873406051 -4889.0,0.5144108854288693 -4890.0,0.5142332448826014 -4891.0,0.5140556656806101 -4892.0,0.5138781478017117 -4893.0,0.5137006912247294 -4894.0,0.513523295928494 -4895.0,0.5133459618918436 -4896.0,0.5131686890936235 -4897.0,0.5129914775126863 -4898.0,0.5128143271278919 -4899.0,0.5126372379181077 -4900.0,0.5124602098622081 -4901.0,0.5122832429390751 -4902.0,0.5121063371275978 -4903.0,0.5119294924066724 -4904.0,0.511752708755203 -4905.0,0.5115759861521003 -4906.0,0.5113993245762827 -4907.0,0.5112227240066757 -4908.0,0.5110461844222123 -4909.0,0.5108697058018323 -4910.0,0.5106932881244834 -4911.0,0.5105169313691201 -4912.0,0.5103406355147044 -4913.0,0.5101644005402055 -4914.0,0.5099882264245997 -4915.0,0.5098121131468709 -4916.0,0.5096360606860101 -4917.0,0.5094600690210153 -4918.0,0.509284138130892 -4919.0,0.5091082679946531 -4920.0,0.5089324585913185 -4921.0,0.5087567098999155 -4922.0,0.5085810218994784 -4923.0,0.508405394569049 -4924.0,0.5082298278876761 -4925.0,0.5080543218344161 -4926.0,0.5078788763883324 -4927.0,0.5077034915284955 -4928.0,0.5075281672339832 -4929.0,0.5073529034838806 -4930.0,0.5071777002572804 -4931.0,0.5070025575332816 -4932.0,0.5068274752909914 -4933.0,0.5066524535095234 -4934.0,0.506477492167999 -4935.0,0.5063025912455464 -4936.0,0.5061277507213015 -4937.0,0.5059529705744068 -4938.0,0.5057782507840125 -4939.0,0.5056035913292757 -4940.0,0.5054289921893608 -4941.0,0.5052544533434394 -4942.0,0.5050799747706903 -4943.0,0.5049055564502996 -4944.0,0.5047311983614602 -4945.0,0.5045569004833728 -4946.0,0.5043826627952446 -4947.0,0.5042084852762904 -4948.0,0.5040343679057322 -4949.0,0.503860310662799 -4950.0,0.5036863135267271 -4951.0,0.5035123764767598 -4952.0,0.5033384994921478 -4953.0,0.5031646825521487 -4954.0,0.5029909256360275 -4955.0,0.5028172287230563 -4956.0,0.5026435917925144 -4957.0,0.5024700148236879 -4958.0,0.5022964977958705 -4959.0,0.502123040688363 -4960.0,0.501949643480473 -4961.0,0.5017763061515156 -4962.0,0.501603028680813 -4963.0,0.5014298110476942 -4964.0,0.5012566532314959 -4965.0,0.5010835552115614 -4966.0,0.5009105169672415 -4967.0,0.500737538477894 -4968.0,0.5005646197228838 -4969.0,0.500391760681583 -4970.0,0.5002189613333707 -4971.0,0.5000462216576332 -4972.0,0.499873541633764 -4973.0,0.49970092124116355 -4974.0,0.4995283604592395 -4975.0,0.4993558592674066 -4976.0,0.4991834176450868 -4977.0,0.499011035571709 -4978.0,0.4988387130267093 -4979.0,0.4986664499895308 -4980.0,0.4984942464396239 -4981.0,0.4983221023564459 -4982.0,0.49815001771946127 -4983.0,0.4979779925081416 -4984.0,0.49780602670196555 -4985.0,0.49763412028041876 -4986.0,0.4974622732229941 -4987.0,0.49729048550919147 -4988.0,0.4971187571185179 -4989.0,0.4969470880304873 -4990.0,0.49677547822462104 -4991.0,0.4966039276804471 -4992.0,0.49643243637750084 -4993.0,0.4962610042953246 -4994.0,0.49608963141346774 -4995.0,0.49591831771148676 -4996.0,0.49574706316894523 -4997.0,0.4955758677654136 -4998.0,0.49540473148046965 -4999.0,0.49523365429369803 -5000.0,0.49506263618469043 -5001.0,0.49489167713304566 -5002.0,0.49472077711836954 -5003.0,0.4945499361202749 -5004.0,0.49437915411838185 -5005.0,0.49420843109231705 -5006.0,0.49403776702171476 -5007.0,0.4938671618862158 -5008.0,0.4936966156654684 -5009.0,0.4935261283391275 -5010.0,0.49335569988685524 -5011.0,0.4931853302883208 -5012.0,0.49301501952320026 -5013.0,0.4928447675711768 -5014.0,0.4926745744119406 -5015.0,0.49250444002518895 -5016.0,0.49233436439062594 -5017.0,0.4921643474879628 -5018.0,0.4919943892969178 -5019.0,0.4918244897972162 -5020.0,0.4916546489685901 -5021.0,0.4914848667907789 -5022.0,0.49131514324352865 -5023.0,0.4911454783065927 -5024.0,0.49097587195973114 -5025.0,0.49080632418271125 -5026.0,0.49063683495530724 -5027.0,0.4904674042573003 -5028.0,0.49029803206847844 -5029.0,0.4901287183686369 -5030.0,0.4899594631375778 -5031.0,0.4897902663551102 -5032.0,0.4896211280010501 -5033.0,0.4894520480552207 -5034.0,0.48928302649745176 -5035.0,0.4891140633075804 -5036.0,0.4889451584654505 -5037.0,0.488776311950913 -5038.0,0.4886075237438256 -5039.0,0.4884387938240532 -5040.0,0.48827012217146754 -5041.0,0.4881015087659473 -5042.0,0.4879329535873782 -5043.0,0.4877644566156527 -5044.0,0.4875960178306705 -5045.0,0.487427637212338 -5046.0,0.4872593147405686 -5047.0,0.4870910503952827 -5048.0,0.4869228441564076 -5049.0,0.48675469600387744 -5050.0,0.4865866059176334 -5051.0,0.48641857387762366 -5052.0,0.48625059986380315 -5053.0,0.48608268385613373 -5054.0,0.48591482583458434 -5055.0,0.4857470257791307 -5056.0,0.4855792836697555 -5057.0,0.4854115994864483 -5058.0,0.48524397320920565 -5059.0,0.4850764048180309 -5060.0,0.48490889429293443 -5061.0,0.4847414416139334 -5062.0,0.48457404676105187 -5063.0,0.48440670971432104 -5064.0,0.48423943045377865 -5065.0,0.4840722089594696 -5066.0,0.48390504521144556 -5067.0,0.4837379391897651 -5068.0,0.4835708908744937 -5069.0,0.4834039002457036 -5070.0,0.48323696728347426 -5071.0,0.48307009196789163 -5072.0,0.4829032742790488 -5073.0,0.48273651419704555 -5074.0,0.48256981170198865 -5075.0,0.4824031667739917 -5076.0,0.4822365793931752 -5077.0,0.4820700495396665 -5078.0,0.4819035771935998 -5079.0,0.48173716233511604 -5080.0,0.48157080494436333 -5081.0,0.4814045050014963 -5082.0,0.4812382624866766 -5083.0,0.48107207738007285 -5084.0,0.48090594966186023 -5085.0,0.480739879312221 -5086.0,0.48057386631134413 -5087.0,0.48040791063942545 -5088.0,0.48024201227666774 -5089.0,0.48007617120328044 -5090.0,0.47991038739948005 -5091.0,0.4797446608454896 -5092.0,0.47957899152153927 -5093.0,0.4794133794078659 -5094.0,0.47924782448471304 -5095.0,0.47908232673233137 -5096.0,0.47891688613097805 -5097.0,0.47875150266091737 -5098.0,0.4785861763024202 -5099.0,0.4784209070357643 -5100.0,0.4782556948412343 -5101.0,0.47809053969912163 -5102.0,0.4779254415897244 -5103.0,0.4777604004933476 -5104.0,0.4775954163903031 -5105.0,0.47743048926090953 -5106.0,0.47726561908549214 -5107.0,0.47710080584438325 -5108.0,0.4769360495179218 -5109.0,0.47677135008645355 -5110.0,0.4766067075303311 -5111.0,0.4764421218299137 -5112.0,0.4762775929655676 -5113.0,0.4761131209176656 -5114.0,0.4759487056665874 -5115.0,0.47578434719271956 -5116.0,0.4756200454764552 -5117.0,0.4754558004981944 -5118.0,0.4752916122383438 -5119.0,0.47512748067731714 -5120.0,0.4749634057955346 -5121.0,0.4747993875734232 -5122.0,0.47463542599141684 -5123.0,0.4744715210299561 -5124.0,0.4743076726694883 -5125.0,0.4741438808904675 -5126.0,0.47398014567335456 -5127.0,0.473816466998617 -5128.0,0.47365284484672926 -5129.0,0.47348927919817235 -5130.0,0.47332577003343407 -5131.0,0.473162317333009 -5132.0,0.4729989210773984 -5133.0,0.4728355812471103 -5134.0,0.4726722978226594 -5135.0,0.4725090707845673 -5136.0,0.472345900113362 -5137.0,0.4721827857895786 -5138.0,0.4720197277937587 -5139.0,0.47185672610645074 -5140.0,0.4716937807082097 -5141.0,0.47153089157959743 -5142.0,0.4713680587011825 -5143.0,0.47120528205354 -5144.0,0.47104256161725194 -5145.0,0.470879897372907 -5146.0,0.4707172893011004 -5147.0,0.47055473738243436 -5148.0,0.47039224159751747 -5149.0,0.4702298019269652 -5150.0,0.4700674183513997 -5151.0,0.4699050908514498 -5152.0,0.46974281940775103 -5153.0,0.46958060400094553 -5154.0,0.46941844461168225 -5155.0,0.4692563412206167 -5156.0,0.46909429380841117 -5157.0,0.4689323023557346 -5158.0,0.4687703668432625 -5159.0,0.46860848725167725 -5160.0,0.46844666356166775 -5161.0,0.46828489575392956 -5162.0,0.4681231838091651 -5163.0,0.4679615277080832 -5164.0,0.4677999274313995 -5165.0,0.46763838295983623 -5166.0,0.46747689427412237 -5167.0,0.4673154613549934 -5168.0,0.4671540841831917 -5169.0,0.46699276273946605 -5170.0,0.466831497004572 -5171.0,0.4666702869592717 -5172.0,0.466509132584334 -5173.0,0.46634803386053436 -5174.0,0.46618699076865483 -5175.0,0.4660260032894842 -5176.0,0.4658650714038178 -5177.0,0.46570419509245764 -5178.0,0.46554337433621235 -5179.0,0.46538260911589724 -5180.0,0.46522189941233405 -5181.0,0.46506124520635145 -5182.0,0.4649006464787845 -5183.0,0.4647401032104749 -5184.0,0.464579615382271 -5185.0,0.4644191829750279 -5186.0,0.464258805969607 -5187.0,0.46409848434687667 -5188.0,0.4639382180877116 -5189.0,0.4637780071729932 -5190.0,0.4636178515836095 -5191.0,0.46345775130045513 -5192.0,0.4632977063044313 -5193.0,0.4631377165764457 -5194.0,0.4629777820974128 -5195.0,0.4628179028482536 -5196.0,0.4626580788098957 -5197.0,0.4624983099632731 -5198.0,0.4623385962893268 -5199.0,0.4621789377690039 -5200.0,0.4620193343832584 -5201.0,0.4618597861130507 -5202.0,0.46170029293934794 -5203.0,0.46154085484312374 -5204.0,0.46138147180535827 -5205.0,0.4612221438070383 -5206.0,0.46106287082915715 -5207.0,0.46090365285271473 -5208.0,0.4607444898587175 -5209.0,0.4605853818281785 -5210.0,0.46042632874211725 -5211.0,0.4602673305815599 -5212.0,0.4601083873275391 -5213.0,0.4599494989610941 -5214.0,0.45979066546327074 -5215.0,0.45963188681512124 -5216.0,0.4594731629977045 -5217.0,0.459314493992086 -5218.0,0.4591558797793376 -5219.0,0.4589973203405378 -5220.0,0.4588388156567716 -5221.0,0.45868036570913057 -5222.0,0.4585219704787128 -5223.0,0.45836362994662283 -5224.0,0.45820534409397184 -5225.0,0.45804711290187755 -5226.0,0.457888936351464 -5227.0,0.45773081442386193 -5228.0,0.45757274710020857 -5229.0,0.4574147343616476 -5230.0,0.4572567761893293 -5231.0,0.4570988725644104 -5232.0,0.45694102346805404 -5233.0,0.4567832288814302 -5234.0,0.45662548878571496 -5235.0,0.4564678031620911 -5236.0,0.45631017199174795 -5237.0,0.4561525952558812 -5238.0,0.4559950729356931 -5239.0,0.4558376050123924 -5240.0,0.4556801914671943 -5241.0,0.4555228322813205 -5242.0,0.4553655274359993 -5243.0,0.45520827691246524 -5244.0,0.4550510806919596 -5245.0,0.4548939387557299 -5246.0,0.45473685108503037 -5247.0,0.4545798176611215 -5248.0,0.4544228384652704 -5249.0,0.45426591347875056 -5250.0,0.454109042682842 -5251.0,0.4539522260588312 -5252.0,0.453795463588011 -5253.0,0.45363875525168085 -5254.0,0.4534821010311466 -5255.0,0.45332550090772056 -5256.0,0.45316895486272135 -5257.0,0.4530124628774743 -5258.0,0.452856024933311 -5259.0,0.45269964101156956 -5260.0,0.4525433110935945 -5261.0,0.4523870351607368 -5262.0,0.45223081319435393 -5263.0,0.4520746451758097 -5264.0,0.4519185310864744 -5265.0,0.45176247090772476 -5266.0,0.45160646462094395 -5267.0,0.4514505122075216 -5268.0,0.45129461364885365 -5269.0,0.4511387689263426 -5270.0,0.4509829780213972 -5271.0,0.45082724091543286 -5272.0,0.4506715575898712 -5273.0,0.45051592802614043 -5274.0,0.450360352205675 -5275.0,0.45020483010991585 -5276.0,0.45004936172031035 -5277.0,0.44989394701831226 -5278.0,0.4497385859853817 -5279.0,0.44958327860298525 -5280.0,0.4494280248525959 -5281.0,0.44927282471569296 -5282.0,0.44911767817376225 -5283.0,0.44896258520829585 -5284.0,0.44880754580079235 -5285.0,0.44865255993275666 -5286.0,0.4484976275857001 -5287.0,0.4483427487411404 -5288.0,0.44818792338060154 -5289.0,0.448033151485614 -5290.0,0.4478784330377148 -5291.0,0.447723768018447 -5292.0,0.4475691564093602 -5293.0,0.4474145981920104 -5294.0,0.4472600933479599 -5295.0,0.44710564185877744 -5296.0,0.44695124370603806 -5297.0,0.4467968988713232 -5298.0,0.44664260733622063 -5299.0,0.4464883690823245 -5300.0,0.44633418409123526 -5301.0,0.4461800523445598 -5302.0,0.4460259738239114 -5303.0,0.44587194851090955 -5304.0,0.44571797638718014 -5305.0,0.44556405743435545 -5306.0,0.4454101916340741 -5307.0,0.44525637896798087 -5308.0,0.44510261941772716 -5309.0,0.44494891296497063 -5310.0,0.4447952595913751 -5311.0,0.4446416592786109 -5312.0,0.44448811200835464 -5313.0,0.4443346177622892 -5314.0,0.4441811765221039 -5315.0,0.4440277882694943 -5316.0,0.4438744529861623 -5317.0,0.44372117065381605 -5318.0,0.44356794125417015 -5319.0,0.4434147647689455 -5320.0,0.44326164117986916 -5321.0,0.44310857046867463 -5322.0,0.44295555261710173 -5323.0,0.44280258760689656 -5324.0,0.44264967541981143 -5325.0,0.44249681603760505 -5326.0,0.4423440094420425 -5327.0,0.4421912556148949 -5328.0,0.44203855453794 -5329.0,0.4418859061929616 -5330.0,0.44173331056174986 -5331.0,0.44158076762610127 -5332.0,0.4414282773678186 -5333.0,0.4412758397687107 -5334.0,0.4411234548105931 -5335.0,0.44097112247528725 -5336.0,0.440818842744621 -5337.0,0.4406666156004286 -5338.0,0.4405144410245504 -5339.0,0.44036231899883305 -5340.0,0.4402102495051295 -5341.0,0.440058232525299 -5342.0,0.4399062680412071 -5343.0,0.43975435603472546 -5344.0,0.4396024964877321 -5345.0,0.43945068938211124 -5346.0,0.4392989346997534 -5347.0,0.4391472324225555 -5348.0,0.4389955825324204 -5349.0,0.43884398501125743 -5350.0,0.43869243984098216 -5351.0,0.4385409470035163 -5352.0,0.4383895064807879 -5353.0,0.43823811825473113 -5354.0,0.4380867823072866 -5355.0,0.4379354986204009 -5356.0,0.43778426717602703 -5357.0,0.43763308795612427 -5358.0,0.43748196094265795 -5359.0,0.43733088611759974 -5360.0,0.43717986346292753 -5361.0,0.4370288929606254 -5362.0,0.4368779745926837 -5363.0,0.43672710834109896 -5364.0,0.43657629418787386 -5365.0,0.43642553211501744 -5366.0,0.43627482210454493 -5367.0,0.43612416413847765 -5368.0,0.43597355819884326 -5369.0,0.4358230042676755 -5370.0,0.43567250232701443 -5371.0,0.43552205235890623 -5372.0,0.43537165434540337 -5373.0,0.4352213082685645 -5374.0,0.43507101411045424 -5375.0,0.4349207718531438 -5376.0,0.4347705814787103 -5377.0,0.4346204429692371 -5378.0,0.43447035630681374 -5379.0,0.43432032147353605 -5380.0,0.43417033845150593 -5381.0,0.43402040722283153 -5382.0,0.43387052776962715 -5383.0,0.4337207000740132 -5384.0,0.4335709241181163 -5385.0,0.43342119988406946 -5386.0,0.4332715273540115 -5387.0,0.43312190651008764 -5388.0,0.4329723373344492 -5389.0,0.43282281980925363 -5390.0,0.4326733539166646 -5391.0,0.432523939638852 -5392.0,0.4323745769579917 -5393.0,0.4322252658562658 -5394.0,0.4320760063158627 -5395.0,0.4319267983189767 -5396.0,0.43177764184780837 -5397.0,0.43162853688456454 -5398.0,0.431479483411458 -5399.0,0.4313304814107078 -5400.0,0.431181530864539 -5401.0,0.43103263175518297 -5402.0,0.43088378406487715 -5403.0,0.43073498777586494 -5404.0,0.4305862428703962 -5405.0,0.43043754933072675 -5406.0,0.43028890713911844 -5407.0,0.43014031627783933 -5408.0,0.4299917767291637 -5409.0,0.42984328847537184 -5410.0,0.42969485149875014 -5411.0,0.42954646578159117 -5412.0,0.42939813130619364 -5413.0,0.42924984805486227 -5414.0,0.429101616009908 -5415.0,0.4289534351536477 -5416.0,0.4288053054684047 -5417.0,0.428657226936508 -5418.0,0.428509199540293 -5419.0,0.42836122326210113 -5420.0,0.4282132980842799 -5421.0,0.4280654239891828 -5422.0,0.42791760095916964 -5423.0,0.4277698289766062 -5424.0,0.42762210802386436 -5425.0,0.4274744380833221 -5426.0,0.4273268191373634 -5427.0,0.42717925116837846 -5428.0,0.4270317341587635 -5429.0,0.4268842680909208 -5430.0,0.42673685294725866 -5431.0,0.4265894887101917 -5432.0,0.42644217536214024 -5433.0,0.42629491288553106 -5434.0,0.42614770126279666 -5435.0,0.42600054047637587 -5436.0,0.42585343050871344 -5437.0,0.42570637134226025 -5438.0,0.4255593629594732 -5439.0,0.4254124053428152 -5440.0,0.4252654984747554 -5441.0,0.42511864233776875 -5442.0,0.42497183691433654 -5443.0,0.4248250821869458 -5444.0,0.42467837813808984 -5445.0,0.42453172475026796 -5446.0,0.4243851220059854 -5447.0,0.4242385698877536 -5448.0,0.4240920683780899 -5449.0,0.42394561745951775 -5450.0,0.42379921711456664 -5451.0,0.4236528673257721 -5452.0,0.4235065680756756 -5453.0,0.4233603193468248 -5454.0,0.4232141211217732 -5455.0,0.4230679733830805 -5456.0,0.4229218761133122 -5457.0,0.42277582929504015 -5458.0,0.42262983291084194 -5459.0,0.4224838869433012 -5460.0,0.4223379913750077 -5461.0,0.4221921461885572 -5462.0,0.4220463513665514 -5463.0,0.42190060689159803 -5464.0,0.4217549127463109 -5465.0,0.42160926891330963 -5466.0,0.4214636753752201 -5467.0,0.421318132114674 -5468.0,0.4211726391143091 -5469.0,0.4210271963567691 -5470.0,0.4208818038247038 -5471.0,0.42073646150076893 -5472.0,0.42059116936762614 -5473.0,0.42044592740794323 -5474.0,0.42030073560439385 -5475.0,0.4201555939396577 -5476.0,0.42001050239642035 -5477.0,0.41986546095737354 -5478.0,0.41972046960521486 -5479.0,0.41957552832264783 -5480.0,0.4194306370923821 -5481.0,0.41928579589713316 -5482.0,0.4191410047196225 -5483.0,0.4189962635425777 -5484.0,0.418851572348732 -5485.0,0.4187069311208249 -5486.0,0.4185623398416018 -5487.0,0.418417798493814 -5488.0,0.41827330706021865 -5489.0,0.41812886552357914 -5490.0,0.41798447386666454 -5491.0,0.41784013207224996 -5492.0,0.4176958401231166 -5493.0,0.4175515980020514 -5494.0,0.4174074056918473 -5495.0,0.41726326317530327 -5496.0,0.4171191704352241 -5497.0,0.41697512745442067 -5498.0,0.41683113421570955 -5499.0,0.41668719070191357 -5500.0,0.4165432968958612 -5501.0,0.41639945278038704 -5502.0,0.41625565833833145 -5503.0,0.41611191355254085 -5504.0,0.41596821840586756 -5505.0,0.41582457288116975 -5506.0,0.41568097696131157 -5507.0,0.41553743062916304 -5508.0,0.4153939338676002 -5509.0,0.41525048665950487 -5510.0,0.41510708898776494 -5511.0,0.414963740835274 -5512.0,0.4148204421849317 -5513.0,0.41467719301964356 -5514.0,0.414533993322321 -5515.0,0.4143908430758813 -5516.0,0.4142477422632478 -5517.0,0.4141046908673494 -5518.0,0.4139616888711214 -5519.0,0.4138187362575045 -5520.0,0.4136758330094455 -5521.0,0.41353297910989717 -5522.0,0.41339017454181803 -5523.0,0.4132474192881726 -5524.0,0.4131047133319311 -5525.0,0.4129620566560699 -5526.0,0.41281944924357095 -5527.0,0.41267689107742234 -5528.0,0.41253438214061783 -5529.0,0.4123919224161572 -5530.0,0.412249511887046 -5531.0,0.41210715053629576 -5532.0,0.41196483834692377 -5533.0,0.4118225753019532 -5534.0,0.41168036138441316 -5535.0,0.41153819657733853 -5536.0,0.41139608086377005 -5537.0,0.4112540142267544 -5538.0,0.4111119966493441 -5539.0,0.41097002811459743 -5540.0,0.4108281086055786 -5541.0,0.41068623810535765 -5542.0,0.41054441659701046 -5543.0,0.41040264406361876 -5544.0,0.41026092048827006 -5545.0,0.4101192458540579 -5546.0,0.4099776201440814 -5547.0,0.40983604334144574 -5548.0,0.4096945154292618 -5549.0,0.40955303639064633 -5550.0,0.4094116062087219 -5551.0,0.40927022486661696 -5552.0,0.4091288923474657 -5553.0,0.4089876086344082 -5554.0,0.40884637371059035 -5555.0,0.40870518755916385 -5556.0,0.40856405016328623 -5557.0,0.40842296150612084 -5558.0,0.40828192157083676 -5559.0,0.40814093034060905 -5560.0,0.40799998779861846 -5561.0,0.4078590939280515 -5562.0,0.4077182487121006 -5563.0,0.407577452133964 -5564.0,0.4074367041768457 -5565.0,0.4072960048239554 -5566.0,0.4071553540585088 -5567.0,0.40701475186372715 -5568.0,0.40687419822283777 -5569.0,0.4067336931190736 -5570.0,0.4065932365356733 -5571.0,0.4064528284558816 -5572.0,0.40631246886294875 -5573.0,0.4061721577401309 -5574.0,0.4060318950706898 -5575.0,0.4058916808378934 -5576.0,0.405751515025015 -5577.0,0.4056113976153339 -5578.0,0.405471328592135 -5579.0,0.40533130793870925 -5580.0,0.40519133563835313 -5581.0,0.405051411674369 -5582.0,0.40491153603006486 -5583.0,0.4047717086887546 -5584.0,0.40463192963375794 -5585.0,0.40449219884840015 -5586.0,0.40435251631601243 -5587.0,0.4042128820199316 -5588.0,0.40407329594350033 -5589.0,0.4039337580700671 -5590.0,0.40379426838298593 -5591.0,0.4036548268656168 -5592.0,0.40351543350132535 -5593.0,0.4033760882734829 -5594.0,0.4032367911654667 -5595.0,0.4030975421606595 -5596.0,0.40295834124245 -5597.0,0.40281918839423253 -5598.0,0.4026800835994071 -5599.0,0.4025410268413796 -5600.0,0.4024020181035615 -5601.0,0.4022630573693702 -5602.0,0.40212414462222856 -5603.0,0.40198527984556537 -5604.0,0.401846463022815 -5605.0,0.40170769413741775 -5606.0,0.4015689731728194 -5607.0,0.4014303001124716 -5608.0,0.4012916749398316 -5609.0,0.4011530976383625 -5610.0,0.40101456819153297 -5611.0,0.4008760865828175 -5612.0,0.4007376527956963 -5613.0,0.4005992668136551 -5614.0,0.40046092862018556 -5615.0,0.40032263819878494 -5616.0,0.40018439553295615 -5617.0,0.4000462006062079 -5618.0,0.39990805340205443 -5619.0,0.39976995390401593 -5620.0,0.3996319020956181 -5621.0,0.3994938979603923 -5622.0,0.3993559414818757 -5623.0,0.3992180326436111 -5624.0,0.3990801714291469 -5625.0,0.3989423578220374 -5626.0,0.3988045918058424 -5627.0,0.3986668733641273 -5628.0,0.3985292024804634 -5629.0,0.39839157913842754 -5630.0,0.39825400332160227 -5631.0,0.39811647501357583 -5632.0,0.397978994197942 -5633.0,0.39784156085830047 -5634.0,0.39770417497825633 -5635.0,0.39756683654142044 -5636.0,0.39742954553140936 -5637.0,0.3972923019318453 -5638.0,0.3971551057263561 -5639.0,0.39701795689857516 -5640.0,0.3968808554321417 -5641.0,0.39674380131070053 -5642.0,0.39660679451790204 -5643.0,0.3964698350374024 -5644.0,0.39633292285286326 -5645.0,0.396196057947952 -5646.0,0.39605924030634165 -5647.0,0.39592246991171093 -5648.0,0.395785746747744 -5649.0,0.3956490707981309 -5650.0,0.3955124420465671 -5651.0,0.3953758604767538 -5652.0,0.3952393260723979 -5653.0,0.3951028388172118 -5654.0,0.3949663986949135 -5655.0,0.39483000568922677 -5656.0,0.3946936597838809 -5657.0,0.39455736096261074 -5658.0,0.3944211092091569 -5659.0,0.39428490450726555 -5660.0,0.39414874684068846 -5661.0,0.394012636193183 -5662.0,0.39387657254851216 -5663.0,0.39374055589044454 -5664.0,0.39360458620275435 -5665.0,0.3934686634692214 -5666.0,0.39333278767363106 -5667.0,0.3931969587997744 -5668.0,0.3930611768314479 -5669.0,0.392925441752454 -5670.0,0.3927897535466003 -5671.0,0.39265411219770024 -5672.0,0.3925185176895728 -5673.0,0.3923829700060425 -5674.0,0.39224746913093955 -5675.0,0.39211201504809967 -5676.0,0.39197660774136417 -5677.0,0.39184124719457997 -5678.0,0.3917059333915995 -5679.0,0.3915706663162808 -5680.0,0.3914354459524875 -5681.0,0.3913002722840889 -5682.0,0.39116514529495966 -5683.0,0.3910300649689801 -5684.0,0.39089503129003617 -5685.0,0.3907600442420194 -5686.0,0.39062510380882665 -5687.0,0.3904902099743606 -5688.0,0.39035536272252946 -5689.0,0.39022056203724687 -5690.0,0.39008580790243214 -5691.0,0.38995110030201 -5692.0,0.3898164392199109 -5693.0,0.38968182464007073 -5694.0,0.3895472565464309 -5695.0,0.3894127349229385 -5696.0,0.389278259753546 -5697.0,0.38914383102221156 -5698.0,0.3890094487128988 -5699.0,0.3888751128095768 -5700.0,0.3887408232962204 -5701.0,0.3886065801568098 -5702.0,0.38847238337533074 -5703.0,0.3883382329357745 -5704.0,0.388204128822138 -5705.0,0.3880700710184235 -5706.0,0.3879360595086389 -5707.0,0.3878020942767977 -5708.0,0.3876681753069187 -5709.0,0.38753430258302646 -5710.0,0.38740047608915085 -5711.0,0.3872666958093274 -5712.0,0.38713296172759704 -5713.0,0.3869992738280063 -5714.0,0.38686563209460717 -5715.0,0.3867320365114572 -5716.0,0.3865984870626194 -5717.0,0.3864649837321623 -5718.0,0.3863315265041599 -5719.0,0.3861981153626918 -5720.0,0.3860647502918429 -5721.0,0.3859314312757038 -5722.0,0.3857981582983705 -5723.0,0.38566493134394453 -5724.0,0.38553175039653287 -5725.0,0.3853986154402479 -5726.0,0.38526552645920775 -5727.0,0.3851324834375358 -5728.0,0.384999486359361 -5729.0,0.38486653520881775 -5730.0,0.384733629970046 -5731.0,0.38460077062719106 -5732.0,0.3844679571644038 -5733.0,0.38433518956584056 -5734.0,0.3842024678156631 -5735.0,0.38406979189803875 -5736.0,0.38393716179714016 -5737.0,0.3838045774971455 -5738.0,0.3836720389822386 -5739.0,0.3835395462366084 -5740.0,0.3834070992444496 -5741.0,0.38327469798996217 -5742.0,0.3831423424573516 -5743.0,0.38301003263082894 -5744.0,0.3828777684946104 -5745.0,0.38274555003291805 -5746.0,0.38261337722997907 -5747.0,0.38248125007002626 -5748.0,0.3823491685372978 -5749.0,0.38221713261603724 -5750.0,0.3820851422904938 -5751.0,0.3819531975449219 -5752.0,0.38182129836358153 -5753.0,0.38168944473073807 -5754.0,0.38155763663066233 -5755.0,0.38142587404763056 -5756.0,0.3812941569659245 -5757.0,0.3811624853698312 -5758.0,0.38103085924364327 -5759.0,0.38089927857165856 -5760.0,0.3807677433381806 -5761.0,0.380636253527518 -5762.0,0.3805048091239852 -5763.0,0.3803734101119017 -5764.0,0.3802420564755926 -5765.0,0.3801107481993884 -5766.0,0.37997948526762493 -5767.0,0.37984826766464347 -5768.0,0.3797170953747908 -5769.0,0.3795859683824189 -5770.0,0.3794548866718854 -5771.0,0.37932385022755316 -5772.0,0.3791928590337904 -5773.0,0.379061913074971 -5774.0,0.3789310123354739 -5775.0,0.37880015679968365 -5776.0,0.3786693464519902 -5777.0,0.37853858127678874 -5778.0,0.37840786125848 -5779.0,0.37827718638147 -5780.0,0.3781465566301702 -5781.0,0.37801597198899745 -5782.0,0.3778854324423738 -5783.0,0.3777549379747271 -5784.0,0.3776244885704901 -5785.0,0.3774940842141012 -5786.0,0.3773637248900041 -5787.0,0.3772334105826479 -5788.0,0.3771031412764871 -5789.0,0.3769729169559814 -5790.0,0.3768427376055961 -5791.0,0.3767126032098017 -5792.0,0.3765825137530741 -5793.0,0.37645246921989467 -5794.0,0.37632246959474996 -5795.0,0.37619251486213195 -5796.0,0.37606260500653804 -5797.0,0.3759327400124709 -5798.0,0.37580291986443864 -5799.0,0.37567314454695455 -5800.0,0.3755434140445375 -5801.0,0.3754137283417115 -5802.0,0.375284087423006 -5803.0,0.37515449127295586 -5804.0,0.37502493987610114 -5805.0,0.3748954332169873 -5806.0,0.3747659712801652 -5807.0,0.3746365540501909 -5808.0,0.37450718151162593 -5809.0,0.3743778536490371 -5810.0,0.3742485704469964 -5811.0,0.37411933189008145 -5812.0,0.37399013796287495 -5813.0,0.373860988649965 -5814.0,0.3737318839359451 -5815.0,0.3736028238054139 -5816.0,0.37347380824297555 -5817.0,0.37334483723323936 -5818.0,0.3732159107608201 -5819.0,0.3730870288103378 -5820.0,0.37295819136641767 -5821.0,0.3728293984136904 -5822.0,0.372700649936792 -5823.0,0.37257194592036363 -5824.0,0.3724432863490518 -5825.0,0.37231467120750855 -5826.0,0.37218610048039086 -5827.0,0.3720575741523612 -5828.0,0.37192909220808734 -5829.0,0.3718006546322424 -5830.0,0.37167226140950455 -5831.0,0.3715439125245575 -5832.0,0.3714156079620902 -5833.0,0.37128734770679683 -5834.0,0.37115913174337684 -5835.0,0.371030960056535 -5836.0,0.37090283263098145 -5837.0,0.3707747494514314 -5838.0,0.37064671050260556 -5839.0,0.3705187157692297 -5840.0,0.3703907652360351 -5841.0,0.3702628588877582 -5842.0,0.37013499670914063 -5843.0,0.3700071786849294 -5844.0,0.3698794047998767 -5845.0,0.36975167503874007 -5846.0,0.3696239893862824 -5847.0,0.3694963478272715 -5848.0,0.3693687503464808 -5849.0,0.3692411969286889 -5850.0,0.36911368755867946 -5851.0,0.36898622222124167 -5852.0,0.36885880090116974 -5853.0,0.36873142358326333 -5854.0,0.3686040902523272 -5855.0,0.3684768008931714 -5856.0,0.36834955549061127 -5857.0,0.36822235402946735 -5858.0,0.3680951964945654 -5859.0,0.36796808287073657 -5860.0,0.36784101314281703 -5861.0,0.36771398729564825 -5862.0,0.3675870053140771 -5863.0,0.36746006718295543 -5864.0,0.36733317288714057 -5865.0,0.3672063224114948 -5866.0,0.367079515740886 -5867.0,0.3669527528601868 -5868.0,0.3668260337542754 -5869.0,0.36669935840803536 -5870.0,0.3665727268063549 -5871.0,0.3664461389341281 -5872.0,0.36631959477625364 -5873.0,0.36619309431763597 -5874.0,0.36606663754318436 -5875.0,0.36594022443781354 -5876.0,0.3658138549864433 -5877.0,0.3656875291739987 -5878.0,0.3655612469854099 -5879.0,0.3654350084056126 -5880.0,0.3653088134195472 -5881.0,0.36518266201215965 -5882.0,0.365056554168401 -5883.0,0.36493048987322757 -5884.0,0.3648044691116007 -5885.0,0.3646784918684871 -5886.0,0.36455255812885856 -5887.0,0.3644266678776922 -5888.0,0.36430082109997014 -5889.0,0.36417501778067973 -5890.0,0.36404925790481374 -5891.0,0.3639235414573697 -5892.0,0.36379786842335077 -5893.0,0.3636722387877649 -5894.0,0.3635466525356255 -5895.0,0.363421109651951 -5896.0,0.3632956101217651 -5897.0,0.3631701539300965 -5898.0,0.36304474106197937 -5899.0,0.3629193715024527 -5900.0,0.3627940452365609 -5901.0,0.3626687622493534 -5902.0,0.362543522525885 -5903.0,0.3624183260512153 -5904.0,0.3622931728104095 -5905.0,0.3621680627885375 -5906.0,0.36204299597067474 -5907.0,0.3619179723419017 -5908.0,0.36179299188730385 -5909.0,0.361668054591972 -5910.0,0.361543160441002 -5911.0,0.36141830941949493 -5912.0,0.3612935015125569 -5913.0,0.36116873670529936 -5914.0,0.36104401498283867 -5915.0,0.3609193363302965 -5916.0,0.3607947007327995 -5917.0,0.36067010817547973 -5918.0,0.36054555864347404 -5919.0,0.36042105212192466 -5920.0,0.36029658859597885 -5921.0,0.36017216805078905 -5922.0,0.36004779047151264 -5923.0,0.35992345584331253 -5924.0,0.3597991641513563 -5925.0,0.359674915380817 -5926.0,0.3595507095168726 -5927.0,0.3594265465447062 -5928.0,0.35930242644950616 -5929.0,0.35917834921646574 -5930.0,0.3590543148307836 -5931.0,0.3589303232776631 -5932.0,0.3588063745423132 -5933.0,0.3586824686099475 -5934.0,0.35855860546578516 -5935.0,0.35843478509504995 -5936.0,0.3583110074829713 -5937.0,0.3581872726147831 -5938.0,0.358063580475725 -5939.0,0.3579399310510412 -5940.0,0.35781632432598137 -5941.0,0.35769276028580005 -5942.0,0.35756923891575704 -5943.0,0.35744576020111696 -5944.0,0.35732232412714987 -5945.0,0.3571989306791307 -5946.0,0.3570755798423395 -5947.0,0.3569522716020615 -5948.0,0.35682900594358674 -5949.0,0.3567057828522107 -5950.0,0.35658260231323363 -5951.0,0.3564594643119611 -5952.0,0.35633636883370357 -5953.0,0.35621331586377675 -5954.0,0.35609030538750114 -5955.0,0.3559673373902027 -5956.0,0.355844411857212 -5957.0,0.3557215287738652 -5958.0,0.355598688125503 -5959.0,0.3554758898974716 -5960.0,0.35535313407512187 -5961.0,0.3552304206438101 -5962.0,0.35510774958889735 -5963.0,0.3549851208957499 -5964.0,0.3548625345497392 -5965.0,0.35473999053624133 -5966.0,0.3546174888406379 -5967.0,0.3544950294483152 -5968.0,0.3543726123446648 -5969.0,0.3542502375150831 -5970.0,0.3541279049449719 -5971.0,0.3540056146197377 -5972.0,0.35388336652479213 -5973.0,0.35376116064555185 -5974.0,0.3536389969674387 -5975.0,0.3535168754758793 -5976.0,0.35339479615630565 -5977.0,0.35327275899415445 -5978.0,0.35315076397486755 -5979.0,0.35302881108389184 -5980.0,0.3529069003066793 -5981.0,0.35278503162868674 -5982.0,0.3526632050353761 -5983.0,0.35254142051221465 -5984.0,0.352419678044674 -5985.0,0.35229797761823145 -5986.0,0.35217631921836884 -5987.0,0.35205470283057333 -5988.0,0.3519331284403368 -5989.0,0.3518115960331566 -5990.0,0.3516901055945345 -5991.0,0.3515686571099778 -5992.0,0.3514472505649984 -5993.0,0.3513258859451136 -5994.0,0.35120456323584526 -5995.0,0.35108328242272063 -5996.0,0.35096204349127164 -5997.0,0.35084084642703556 -5998.0,0.3507196912155543 -5999.0,0.350598577842375 -6000.0,0.3504775062930497 -6001.0,0.35035647655313545 -6002.0,0.3502354886081943 -6003.0,0.35011454244379325 -6004.0,0.3499936380455044 -6005.0,0.34987277539890455 -6006.0,0.3497519544895758 -6007.0,0.34963117530310506 -6008.0,0.3495104378250843 -6009.0,0.3493897420411103 -6010.0,0.34926908793678507 -6011.0,0.3491484754977153 -6012.0,0.34902790470951306 -6013.0,0.34890737555779483 -6014.0,0.34878688802818264 -6015.0,0.34866644210630293 -6016.0,0.34854603777778764 -6017.0,0.3484256750282732 -6018.0,0.3483053538434014 -6019.0,0.3481850742088186 -6020.0,0.3480648361101764 -6021.0,0.34794463953313143 -6022.0,0.3478244844633449 -6023.0,0.3477043708864833 -6024.0,0.3475842987882179 -6025.0,0.347464268154225 -6026.0,0.34734427897018577 -6027.0,0.3472243312217865 -6028.0,0.34710442489471816 -6029.0,0.34698455997467686 -6030.0,0.3468647364473636 -6031.0,0.34674495429848434 -6032.0,0.3466252135137498 -6033.0,0.346505514078876 -6034.0,0.3463858559795834 -6035.0,0.3462662392015979 -6036.0,0.34614666373064995 -6037.0,0.34602712955247517 -6038.0,0.3459076366528139 -6039.0,0.3457881850174115 -6040.0,0.3456687746320184 -6041.0,0.34554940548238966 -6042.0,0.3454300775542856 -6043.0,0.34531079083347105 -6044.0,0.3451915453057161 -6045.0,0.3450723409567956 -6046.0,0.3449531777724894 -6047.0,0.344834055738582 -6048.0,0.3447149748408633 -6049.0,0.3445959350651276 -6050.0,0.3444769363971744 -6051.0,0.344357978822808 -6052.0,0.3442390623278377 -6053.0,0.3441201868980775 -6054.0,0.34400135251934655 -6055.0,0.3438825591774687 -6056.0,0.34376380685827285 -6057.0,0.3436450955475926 -6058.0,0.3435264252312666 -6059.0,0.3434077958951385 -6060.0,0.3432892075250564 -6061.0,0.3431706601068738 -6062.0,0.34305215362644875 -6063.0,0.3429336880696444 -6064.0,0.3428152634223285 -6065.0,0.34269687967037404 -6066.0,0.3425785367996585 -6067.0,0.34246023479606463 -6068.0,0.34234197364547975 -6069.0,0.34222375333379623 -6070.0,0.34210557384691115 -6071.0,0.3419874351707267 -6072.0,0.34186933729114966 -6073.0,0.34175128019409196 -6074.0,0.34163326386547005 -6075.0,0.34151528829120564 -6076.0,0.341397353457225 -6077.0,0.34127945934945936 -6078.0,0.34116160595384487 -6079.0,0.34104379325632245 -6080.0,0.34092602124283794 -6081.0,0.34080828989934187 -6082.0,0.34069059921178996 -6083.0,0.34057294916614234 -6084.0,0.3404553397483644 -6085.0,0.340337770944426 -6086.0,0.3402202427403023 -6087.0,0.34010275512197286 -6088.0,0.3399853080754223 -6089.0,0.33986790158664004 -6090.0,0.3397505356416204 -6091.0,0.33963321022636234 -6092.0,0.33951592532686997 -6093.0,0.3393986809291519 -6094.0,0.33928147701922184 -6095.0,0.3391643135830981 -6096.0,0.33904719060680405 -6097.0,0.3389301080763678 -6098.0,0.3388130659778221 -6099.0,0.3386960642972049 -6100.0,0.3385791030205585 -6101.0,0.3384621821339305 -6102.0,0.3383453016233729 -6103.0,0.3382284614749429 -6104.0,0.3381116616747021 -6105.0,0.33799490220871736 -6106.0,0.33787818306305994 -6107.0,0.33776150422380624 -6108.0,0.33764486567703716 -6109.0,0.3375282674088388 -6110.0,0.33741170940530163 -6111.0,0.3372951916525213 -6112.0,0.3371787141365979 -6113.0,0.3370622768436367 -6114.0,0.33694587975974744 -6115.0,0.33682952287104484 -6116.0,0.3367132061636484 -6117.0,0.3365969296236824 -6118.0,0.33648069323727586 -6119.0,0.3363644969905626 -6120.0,0.33624834086968136 -6121.0,0.3361322248607754 -6122.0,0.3360161489499931 -6123.0,0.3359001131234873 -6124.0,0.33578411736741587 -6125.0,0.3356681616679413 -6126.0,0.33555224601123096 -6127.0,0.3354363703834569 -6128.0,0.33532053477079615 -6129.0,0.3352047391594302 -6130.0,0.3350889835355456 -6131.0,0.33497326788533344 -6132.0,0.3348575921949898 -6133.0,0.33474195645071525 -6134.0,0.3346263606387154 -6135.0,0.3345108047452006 -6136.0,0.3343952887563857 -6137.0,0.3342798126584906 -6138.0,0.3341643764377398 -6139.0,0.33404898008036266 -6140.0,0.33393362357259304 -6141.0,0.33381830690067005 -6142.0,0.33370303005083696 -6143.0,0.3335877930093423 -6144.0,0.33347259576243904 -6145.0,0.33335743829638503 -6146.0,0.3332423205974427 -6147.0,0.33312724265187954 -6148.0,0.3330122044459674 -6149.0,0.3328972059659832 -6150.0,0.33278224719820837 -6151.0,0.33266732812892924 -6152.0,0.33255244874443673 -6153.0,0.3324376090310266 -6154.0,0.3323228089749994 -6155.0,0.3322080485626601 -6156.0,0.3320933277803189 -6157.0,0.3319786466142902 -6158.0,0.3318640050508936 -6159.0,0.33174940307645295 -6160.0,0.33163484067729726 -6161.0,0.33152031783975994 -6162.0,0.33140583455017936 -6163.0,0.33129139079489844 -6164.0,0.33117698656026495 -6165.0,0.33106262183263113 -6166.0,0.3309482965983543 -6167.0,0.3308340108437961 -6168.0,0.33071976455532326 -6169.0,0.3306055577193069 -6170.0,0.3304913903221231 -6171.0,0.33037726235015236 -6172.0,0.3302631737897801 -6173.0,0.3301491246273965 -6174.0,0.3300351148493962 -6175.0,0.32992114444217874 -6176.0,0.3298072133921482 -6177.0,0.3296933216857135 -6178.0,0.3295794693092882 -6179.0,0.32946565624929053 -6180.0,0.32935188249214337 -6181.0,0.3292381480242744 -6182.0,0.3291244528321159 -6183.0,0.3290107969021049 -6184.0,0.3288971802206829 -6185.0,0.3287836027742966 -6186.0,0.32867006454939673 -6187.0,0.32855656553243917 -6188.0,0.3284431057098842 -6189.0,0.32832968506819704 -6190.0,0.3282163035938473 -6191.0,0.3281029612733094 -6192.0,0.3279896580930625 -6193.0,0.32787639403959035 -6194.0,0.3277631690993814 -6195.0,0.32764998325892863 -6196.0,0.3275368365047299 -6197.0,0.3274237288232875 -6198.0,0.3273106602011087 -6199.0,0.3271976306247051 -6200.0,0.3270846400805932 -6201.0,0.32697168855529385 -6202.0,0.326858776035333 -6203.0,0.3267459025072408 -6204.0,0.32663306795755237 -6205.0,0.32652027237280734 -6206.0,0.3264075157395501 -6207.0,0.32629479804432954 -6208.0,0.3261821192736993 -6209.0,0.3260694794142175 -6210.0,0.3259568784524471 -6211.0,0.3258443163749557 -6212.0,0.32573179316831535 -6213.0,0.325619308819103 -6214.0,0.32550686331389994 -6215.0,0.32539445663929234 -6216.0,0.32528208878187076 -6217.0,0.32516975972823076 -6218.0,0.3250574694649721 -6219.0,0.32494521797869946 -6220.0,0.32483300525602204 -6221.0,0.3247208312835537 -6222.0,0.3246086960479128 -6223.0,0.32449659953572263 -6224.0,0.3243845417336107 -6225.0,0.3242725226282095 -6226.0,0.32416054220615576 -6227.0,0.32404860045409123 -6228.0,0.3239366973586619 -6229.0,0.32382483290651864 -6230.0,0.32371300708431694 -6231.0,0.32360121987871654 -6232.0,0.32348947127638233 -6233.0,0.32337776126398327 -6234.0,0.3232660898281934 -6235.0,0.32315445695569084 -6236.0,0.3230428626331589 -6237.0,0.322931306847285 -6238.0,0.32281978958476143 -6239.0,0.32270831083228496 -6240.0,0.32259687057655706 -6241.0,0.3224854688042836 -6242.0,0.3223741055021752 -6243.0,0.3222627806569471 -6244.0,0.32215149425531897 -6245.0,0.3220402462840152 -6246.0,0.32192903672976475 -6247.0,0.32181786557930103 -6248.0,0.3217067328193622 -6249.0,0.321595638436691 -6250.0,0.3214845824180345 -6251.0,0.3213735647501447 -6252.0,0.3212625854197779 -6253.0,0.3211516444136952 -6254.0,0.321040741718662 -6255.0,0.32092987732144845 -6256.0,0.32081905120882925 -6257.0,0.32070826336758373 -6258.0,0.3205975137844956 -6259.0,0.3204868024463533 -6260.0,0.3203761293399497 -6261.0,0.3202654944520824 -6262.0,0.3201548977695534 -6263.0,0.3200443392791694 -6264.0,0.3199338189677415 -6265.0,0.3198233368220855 -6266.0,0.3197128928290216 -6267.0,0.31960248697537463 -6268.0,0.31949211924797416 -6269.0,0.3193817896336539 -6270.0,0.3192714981192525 -6271.0,0.3191612446916128 -6272.0,0.3190510293375826 -6273.0,0.3189408520440138 -6274.0,0.3188307127977632 -6275.0,0.3187206115856919 -6276.0,0.31861054839466574 -6277.0,0.3185005232115548 -6278.0,0.31839053602323414 -6279.0,0.3182805868165828 -6280.0,0.31817067557848483 -6281.0,0.31806080229582856 -6282.0,0.31795096695550695 -6283.0,0.3178411695444174 -6284.0,0.31773141004946187 -6285.0,0.31762168845754685 -6286.0,0.3175120047555834 -6287.0,0.31740235893048707 -6288.0,0.3172927509691778 -6289.0,0.3171831808585803 -6290.0,0.3170736485856236 -6291.0,0.31696415413724127 -6292.0,0.31685469750037143 -6293.0,0.31674527866195673 -6294.0,0.31663589760894423 -6295.0,0.3165265543282857 -6296.0,0.3164172488069371 -6297.0,0.31630798103185925 -6298.0,0.3161987509900172 -6299.0,0.3160895586683807 -6300.0,0.31598040405392375 -6301.0,0.31587128713362517 -6302.0,0.3157622078944679 -6303.0,0.31565316632343987 -6304.0,0.3155441624075329 -6305.0,0.3154351961337438 -6306.0,0.3153262674890737 -6307.0,0.31521737646052816 -6308.0,0.3151085230351173 -6309.0,0.3149997071998556 -6310.0,0.3148909289417623 -6311.0,0.3147821882478608 -6312.0,0.3146734851051792 -6313.0,0.31456481950074994 -6314.0,0.31445619142161013 -6315.0,0.31434760085480107 -6316.0,0.31423904778736883 -6317.0,0.3141305322063637 -6318.0,0.3140220540988407 -6319.0,0.3139136134518591 -6320.0,0.31380521025248276 -6321.0,0.3136968444877799 -6322.0,0.3135885161448234 -6323.0,0.3134802252106903 -6324.0,0.3133719716724624 -6325.0,0.3132637555172259 -6326.0,0.31315557673207123 -6327.0,0.3130474353040936 -6328.0,0.31293933122039247 -6329.0,0.3128312644680718 -6330.0,0.31272323503424 -6331.0,0.31261524290601006 -6332.0,0.3125072880704991 -6333.0,0.3123993705148291 -6334.0,0.3122914902261261 -6335.0,0.312183647191521 -6336.0,0.31207584139814865 -6337.0,0.3119680728331488 -6338.0,0.31186034148366537 -6339.0,0.3117526473368468 -6340.0,0.31164499037984594 -6341.0,0.31153737059982023 -6342.0,0.31142978798393117 -6343.0,0.3113222425193451 -6344.0,0.3112147341932327 -6345.0,0.3111072629927688 -6346.0,0.3109998289051331 -6347.0,0.3108924319175093 -6348.0,0.31078507201708594 -6349.0,0.3106777491910555 -6350.0,0.3105704634266154 -6351.0,0.310463214710967 -6352.0,0.3103560030313165 -6353.0,0.3102488283748742 -6354.0,0.3101416907288551 -6355.0,0.31003459008047823 -6356.0,0.3099275264169675 -6357.0,0.3098204997255508 -6358.0,0.3097135099934608 -6359.0,0.30960655720793423 -6360.0,0.3094996413562126 -6361.0,0.3093927624255414 -6362.0,0.30928592040317093 -6363.0,0.30917911527635566 -6364.0,0.3090723470323545 -6365.0,0.30896561565843084 -6366.0,0.3088589211418523 -6367.0,0.3087522634698911 -6368.0,0.3086456426298237 -6369.0,0.30853905860893105 -6370.0,0.3084325113944984 -6371.0,0.3083260009738155 -6372.0,0.30821952733417635 -6373.0,0.3081130904628796 -6374.0,0.3080066903472279 -6375.0,0.3079003269745286 -6376.0,0.3077940003320933 -6377.0,0.307687710407238 -6378.0,0.30758145718728314 -6379.0,0.3074752406595534 -6380.0,0.307369060811378 -6381.0,0.3072629176300904 -6382.0,0.30715681110302856 -6383.0,0.3070507412175347 -6384.0,0.3069447079609554 -6385.0,0.3068387113206418 -6386.0,0.30673275128394917 -6387.0,0.30662682783823725 -6388.0,0.30652094097087024 -6389.0,0.30641509066921646 -6390.0,0.3063092769206489 -6391.0,0.3062034997125446 -6392.0,0.30609775903228525 -6393.0,0.30599205486725667 -6394.0,0.3058863872048492 -6395.0,0.30578075603245725 -6396.0,0.30567516133748013 -6397.0,0.30556960310732084 -6398.0,0.30546408132938724 -6399.0,0.30535859599109133 -6400.0,0.3052531470798494 -6401.0,0.3051477345830823 -6402.0,0.3050423584882149 -6403.0,0.3049370187826768 -6404.0,0.3048317154539016 -6405.0,0.30472644848932745 -6406.0,0.3046212178763967 -6407.0,0.3045160236025562 -6408.0,0.30441086565525693 -6409.0,0.3043057440219544 -6410.0,0.3042006586901083 -6411.0,0.30409560964718285 -6412.0,0.3039905968806463 -6413.0,0.3038856203779715 -6414.0,0.30378068012663545 -6415.0,0.3036757761141196 -6416.0,0.3035709083279096 -6417.0,0.30346607675549553 -6418.0,0.3033612813843718 -6419.0,0.30325652220203697 -6420.0,0.30315179919599416 -6421.0,0.30304711235375054 -6422.0,0.3029424616628179 -6423.0,0.302837847110712 -6424.0,0.30273326868495326 -6425.0,0.30262872637306604 -6426.0,0.3025242201625794 -6427.0,0.30241975004102634 -6428.0,0.3023153159959445 -6429.0,0.30221091801487554 -6430.0,0.3021065560853656 -6431.0,0.30200223019496497 -6432.0,0.3018979403312285 -6433.0,0.301793686481715 -6434.0,0.3016894686339879 -6435.0,0.30158528677561464 -6436.0,0.3014811408941671 -6437.0,0.3013770309772215 -6438.0,0.3012729570123583 -6439.0,0.30116891898716214 -6440.0,0.3010649168892221 -6441.0,0.30096095070613155 -6442.0,0.3008570204254879 -6443.0,0.30075312603489324 -6444.0,0.30064926752195353 -6445.0,0.3005454448742794 -6446.0,0.3004416580794854 -6447.0,0.30033790712519065 -6448.0,0.3002341919990183 -6449.0,0.300130512688596 -6450.0,0.30002686918155547 -6451.0,0.2999232614655329 -6452.0,0.29981968952816845 -6453.0,0.29971615335710705 -6454.0,0.2996126529399973 -6455.0,0.29950918826449247 -6456.0,0.29940575931825003 -6457.0,0.29930236608893157 -6458.0,0.2991990085642031 -6459.0,0.2990956867317348 -6460.0,0.2989924005792011 -6461.0,0.29888915009428074 -6462.0,0.29878593526465674 -6463.0,0.2986827560780162 -6464.0,0.29857961252205073 -6465.0,0.2984765045844559 -6466.0,0.2983734322529319 -6467.0,0.2982703955151827 -6468.0,0.29816739435891704 -6469.0,0.29806442877184736 -6470.0,0.2979614987416908 -6471.0,0.2978586042561685 -6472.0,0.2977557453030059 -6473.0,0.2976529218699327 -6474.0,0.2975501339446827 -6475.0,0.2974473815149943 -6476.0,0.2973446645686096 -6477.0,0.29724198309327543 -6478.0,0.2971393370767425 -6479.0,0.297036726506766 -6480.0,0.2969341513711051 -6481.0,0.2968316116575235 -6482.0,0.2967291073537888 -6483.0,0.2966266384476731 -6484.0,0.29652420492695253 -6485.0,0.2964218067794076 -6486.0,0.2963194439928229 -6487.0,0.2962171165549873 -6488.0,0.29611482445369386 -6489.0,0.29601256767673995 -6490.0,0.29591034621192697 -6491.0,0.2958081600470608 -6492.0,0.2957060091699512 -6493.0,0.29560389356841243 -6494.0,0.2955018132302629 -6495.0,0.29539976814332497 -6496.0,0.29529775829542565 -6497.0,0.2951957836743957 -6498.0,0.2950938442680704 -6499.0,0.294991940064289 -6500.0,0.2948900710508953 -6501.0,0.2947882372157369 -6502.0,0.2946864385466658 -6503.0,0.2945846750315381 -6504.0,0.2944829466582143 -6505.0,0.2943812534145588 -6506.0,0.2942795952884405 -6507.0,0.2941779722677321 -6508.0,0.29407638434031097 -6509.0,0.2939748314940582 -6510.0,0.2938733137168594 -6511.0,0.29377183099660414 -6512.0,0.29367038332118633 -6513.0,0.29356897067850407 -6514.0,0.2934675930564595 -6515.0,0.293366250442959 -6516.0,0.2932649428259131 -6517.0,0.29316367019323664 -6518.0,0.29306243253284847 -6519.0,0.2929612298326717 -6520.0,0.29286006208063353 -6521.0,0.2927589292646655 -6522.0,0.292657831372703 -6523.0,0.2925567683926861 -6524.0,0.2924557403125584 -6525.0,0.2923547471202682 -6526.0,0.2922537888037676 -6527.0,0.2921528653510132 -6528.0,0.29205197674996536 -6529.0,0.29195112298858894 -6530.0,0.29185030405485274 -6531.0,0.2917495199367299 -6532.0,0.2916487706221975 -6533.0,0.2915480560992369 -6534.0,0.29144737635583373 -6535.0,0.2913467313799774 -6536.0,0.2912461211596619 -6537.0,0.29114554568288503 -6538.0,0.291045004937649 -6539.0,0.2909444989119599 -6540.0,0.29084402759382816 -6541.0,0.29074359097126823 -6542.0,0.29064318903229885 -6543.0,0.2905428217649427 -6544.0,0.2904424891572268 -6545.0,0.2903421911971821 -6546.0,0.29024192787284386 -6547.0,0.29014169917225135 -6548.0,0.29004150508344806 -6549.0,0.2899413455944815 -6550.0,0.28984122069340335 -6551.0,0.28974113036826965 -6552.0,0.28964107460714006 -6553.0,0.2895410533980789 -6554.0,0.2894410667291542 -6555.0,0.2893411145884385 -6556.0,0.2892411969640079 -6557.0,0.28914131384394326 -6558.0,0.2890414652163291 -6559.0,0.2889416510692543 -6560.0,0.2888418713908116 -6561.0,0.2887421261690982 -6562.0,0.2886424153922151 -6563.0,0.2885427390482676 -6564.0,0.288443097125365 -6565.0,0.2883434896116207 -6566.0,0.28824391649515235 -6567.0,0.2881443777640816 -6568.0,0.28804487340653406 -6569.0,0.28794540341063973 -6570.0,0.28784596776453253 -6571.0,0.2877465664563505 -6572.0,0.28764719947423584 -6573.0,0.2875478668063347 -6574.0,0.28744856844079747 -6575.0,0.28734930436577855 -6576.0,0.2872500745694366 -6577.0,0.28715087903993397 -6578.0,0.2870517177654376 -6579.0,0.28695259073411805 -6580.0,0.28685349793415044 -6581.0,0.2867544393537135 -6582.0,0.2866554149809904 -6583.0,0.28655642480416815 -6584.0,0.2864574688114381 -6585.0,0.28635854699099533 -6586.0,0.28625965933103936 -6587.0,0.28616080581977343 -6588.0,0.2860619864454052 -6589.0,0.2859632011961462 -6590.0,0.28586445006021205 -6591.0,0.2857657330258225 -6592.0,0.2856670500812012 -6593.0,0.2855684012145761 -6594.0,0.2854697864141791 -6595.0,0.2853712056682462 -6596.0,0.28527265896501736 -6597.0,0.2851741462927368 -6598.0,0.2850756676396525 -6599.0,0.2849772229940168 -6600.0,0.2848788123440859 -6601.0,0.2847804356781203 -6602.0,0.2846820929843841 -6603.0,0.284583784251146 -6604.0,0.2844855094666783 -6605.0,0.2843872686192576 -6606.0,0.2842890616971645 -6607.0,0.2841908886886836 -6608.0,0.2840927495821036 -6609.0,0.2839946443657172 -6610.0,0.28389657302782123 -6611.0,0.28379853555671636 -6612.0,0.28370053194070755 -6613.0,0.28360256216810364 -6614.0,0.2835046262272176 -6615.0,0.28340672410636625 -6616.0,0.2833088557938708 -6617.0,0.28321102127805603 -6618.0,0.2831132205472512 -6619.0,0.28301545358978925 -6620.0,0.2829177203940074 -6621.0,0.2828200209482467 -6622.0,0.28272235524085243 -6623.0,0.2826247232601736 -6624.0,0.2825271249945637 -6625.0,0.2824295604323797 -6626.0,0.282332029561983 -6627.0,0.2822345323717389 -6628.0,0.28213706885001655 -6629.0,0.28203963898518947 -6630.0,0.2819422427656348 -6631.0,0.281844880179734 -6632.0,0.28174755121587236 -6633.0,0.2816502558624393 -6634.0,0.28155299410782814 -6635.0,0.2814557659404363 -6636.0,0.2813585713486651 -6637.0,0.28126141032092 -6638.0,0.2811642828456104 -6639.0,0.2810671889111497 -6640.0,0.2809701285059552 -6641.0,0.28087310161844853 -6642.0,0.2807761082370548 -6643.0,0.28067914835020363 -6644.0,0.2805822219463283 -6645.0,0.28048532901386625 -6646.0,0.28038846954125884 -6647.0,0.2802916435169514 -6648.0,0.28019485092939345 -6649.0,0.2800980917670381 -6650.0,0.28000136601834286 -6651.0,0.27990467367176897 -6652.0,0.27980801471578187 -6653.0,0.27971138913885063 -6654.0,0.27961479692944874 -6655.0,0.2795182380760533 -6656.0,0.27942171256714565 -6657.0,0.27932522039121094 -6658.0,0.27922876153673837 -6659.0,0.27913233599222104 -6660.0,0.27903594374615626 -6661.0,0.27893958478704495 -6662.0,0.2788432591033923 -6663.0,0.2787469666837073 -6664.0,0.27865070751650295 -6665.0,0.27855448159029633 -6666.0,0.2784582888936083 -6667.0,0.27836212941496385 -6668.0,0.2782660031428918 -6669.0,0.278169910065925 -6670.0,0.27807385017260017 -6671.0,0.2779778234514582 -6672.0,0.2778818298910437 -6673.0,0.27778586947990547 -6674.0,0.27768994220659593 -6675.0,0.27759404805967186 -6676.0,0.27749818702769363 -6677.0,0.27740235909922584 -6678.0,0.2773065642628368 -6679.0,0.277210802507099 -6680.0,0.27711507382058864 -6681.0,0.2770193781918861 -6682.0,0.2769237156095755 -6683.0,0.276828086062245 -6684.0,0.27673248953848684 -6685.0,0.2766369260268968 -6686.0,0.2765413955160751 -6687.0,0.27644589799462543 -6688.0,0.27635043345115584 -6689.0,0.27625500187427793 -6690.0,0.2761596032526075 -6691.0,0.2760642375747641 -6692.0,0.2759689048293715 -6693.0,0.275873605005057 -6694.0,0.2757783380904521 -6695.0,0.27568310407419205 -6696.0,0.27558790294491636 -6697.0,0.275492734691268 -6698.0,0.2753975993018942 -6699.0,0.275302496765446 -6700.0,0.2752074270705784 -6701.0,0.2751123902059501 -6702.0,0.27501738616022403 -6703.0,0.274922414922067 -6704.0,0.2748274764801494 -6705.0,0.27473257082314595 -6706.0,0.274637697939735 -6707.0,0.274542857818599 -6708.0,0.2744480504484241 -6709.0,0.2743532758179006 -6710.0,0.2742585339157224 -6711.0,0.27416382473058765 -6712.0,0.27406914825119816 -6713.0,0.27397450446625976 -6714.0,0.27387989336448204 -6715.0,0.2737853149345787 -6716.0,0.27369076916526713 -6717.0,0.2735962560452688 -6718.0,0.2735017755633089 -6719.0,0.27340732770811665 -6720.0,0.2733129124684251 -6721.0,0.2732185298329711 -6722.0,0.27312417979049575 -6723.0,0.27302986232974347 -6724.0,0.2729355774394631 -6725.0,0.27284132510840703 -6726.0,0.2727471053253317 -6727.0,0.2726529180789973 -6728.0,0.27255876335816803 -6729.0,0.2724646411516119 -6730.0,0.27237055144810085 -6731.0,0.27227649423641065 -6732.0,0.272182469505321 -6733.0,0.2720884772436153 -6734.0,0.27199451744008113 -6735.0,0.2719005900835096 -6736.0,0.27180669516269607 -6737.0,0.2717128326664393 -6738.0,0.27161900258354243 -6739.0,0.27152520490281207 -6740.0,0.2714314396130588 -6741.0,0.2713377067030973 -6742.0,0.2712440061617457 -6743.0,0.2711503379778264 -6744.0,0.2710567021401653 -6745.0,0.2709630986375925 -6746.0,0.27086952745894155 -6747.0,0.27077598859305035 -6748.0,0.27068248202876016 -6749.0,0.27058900775491657 -6750.0,0.27049556576036854 -6751.0,0.27040215603396933 -6752.0,0.27030877856457564 -6753.0,0.2702154333410484 -6754.0,0.2701221203522521 -6755.0,0.2700288395870552 -6756.0,0.26993559103433 -6757.0,0.26984237468295263 -6758.0,0.269749190521803 -6759.0,0.269656038539765 -6760.0,0.2695629187257263 -6761.0,0.26946983106857825 -6762.0,0.26937677555721634 -6763.0,0.26928375218053957 -6764.0,0.2691907609274511 -6765.0,0.2690978017868575 -6766.0,0.2690048747476697 -6767.0,0.268911979798802 -6768.0,0.26881911692917276 -6769.0,0.2687262861277041 -6770.0,0.2686334873833221 -6771.0,0.2685407206849563 -6772.0,0.2684479860215406 -6773.0,0.2683552833820122 -6774.0,0.2682626127553125 -6775.0,0.26816997413038646 -6776.0,0.26807736749618305 -6777.0,0.26798479284165494 -6778.0,0.2678922501557586 -6779.0,0.2677997394274545 -6780.0,0.2677072606457066 -6781.0,0.26761481379948304 -6782.0,0.2675223988777555 -6783.0,0.2674300158694995 -6784.0,0.26733766476369447 -6785.0,0.26724534554932367 -6786.0,0.26715305821537394 -6787.0,0.2670608027508362 -6788.0,0.26696857914470495 -6789.0,0.26687638738597874 -6790.0,0.26678422746365954 -6791.0,0.2666920993667536 -6792.0,0.26660000308427045 -6793.0,0.26650793860522387 -6794.0,0.2664159059186311 -6795.0,0.2663239050135135 -6796.0,0.26623193587889576 -6797.0,0.2661399985038069 -6798.0,0.2660480928772793 -6799.0,0.2659562189883493 -6800.0,0.2658643768260571 -6801.0,0.2657725663794466 -6802.0,0.26568078763756536 -6803.0,0.2655890405894649 -6804.0,0.2654973252242006 -6805.0,0.26540564153083124 -6806.0,0.2653139894984199 -6807.0,0.26522236911603286 -6808.0,0.26513078037274074 -6809.0,0.26503922325761753 -6810.0,0.26494769775974114 -6811.0,0.2648562038681933 -6812.0,0.2647647415720594 -6813.0,0.2646733108604287 -6814.0,0.2645819117223942 -6815.0,0.2644905441470526 -6816.0,0.26439920812350437 -6817.0,0.26430790364085394 -6818.0,0.26421663068820916 -6819.0,0.264125389254682 -6820.0,0.26403417932938794 -6821.0,0.26394300090144635 -6822.0,0.2638518539599802 -6823.0,0.2637607384941164 -6824.0,0.2636696544929856 -6825.0,0.263578601945722 -6826.0,0.26348758084146384 -6827.0,0.2633965911693529 -6828.0,0.2633056329185347 -6829.0,0.2632147060781588 -6830.0,0.263123810637378 -6831.0,0.26303294658534937 -6832.0,0.2629421139112334 -6833.0,0.2628513126041944 -6834.0,0.26276054265340043 -6835.0,0.26266980404802337 -6836.0,0.26257909677723873 -6837.0,0.2624884208302257 -6838.0,0.26239777619616755 -6839.0,0.2623071628642507 -6840.0,0.26221658082366595 -6841.0,0.2621260300636073 -6842.0,0.26203551057327285 -6843.0,0.2619450223418642 -6844.0,0.26185456535858675 -6845.0,0.2617641396126497 -6846.0,0.2616737450932659 -6847.0,0.26158338178965196 -6848.0,0.26149304969102816 -6849.0,0.26140274878661857 -6850.0,0.2613124790656509 -6851.0,0.2612222405173567 -6852.0,0.26113203313097116 -6853.0,0.2610418568957331 -6854.0,0.2609517118008853 -6855.0,0.26086159783567403 -6856.0,0.2607715149893493 -6857.0,0.260681463251165 -6858.0,0.2605914426103785 -6859.0,0.26050145305625105 -6860.0,0.2604114945780475 -6861.0,0.2603215671650366 -6862.0,0.26023167080649057 -6863.0,0.2601418054916854 -6864.0,0.2600519712099008 -6865.0,0.2599621679504203 -6866.0,0.25987239570253096 -6867.0,0.2597826544555236 -6868.0,0.25969294419869277 -6869.0,0.25960326492133673 -6870.0,0.25951361661275724 -6871.0,0.25942399926226006 -6872.0,0.25933441285915443 -6873.0,0.2592448573927533 -6874.0,0.2591553328523736 -6875.0,0.25906583922733534 -6876.0,0.25897637650696287 -6877.0,0.25888694468058376 -6878.0,0.2587975437375296 -6879.0,0.2587081736671354 -6880.0,0.25861883445874 -6881.0,0.25852952610168584 -6882.0,0.25844024858531917 -6883.0,0.25835100189898974 -6884.0,0.2582617860320512 -6885.0,0.2581726009738605 -6886.0,0.2580834467137788 -6887.0,0.2579943232411705 -6888.0,0.2579052305454039 -6889.0,0.2578161686158507 -6890.0,0.2577271374418867 -6891.0,0.25763813701289096 -6892.0,0.2575491673182464 -6893.0,0.2574602283473397 -6894.0,0.257371320089561 -6895.0,0.25728244253430427 -6896.0,0.2571935956709669 -6897.0,0.2571047794889503 -6898.0,0.2570159939776592 -6899.0,0.2569272391265022 -6900.0,0.25683851492489146 -6901.0,0.25674982136224295 -6902.0,0.256661158427976 -6903.0,0.2565725261115139 -6904.0,0.25648392440228335 -6905.0,0.2563953532897149 -6906.0,0.25630681276324263 -6907.0,0.25621830281230434 -6908.0,0.2561298234263414 -6909.0,0.25604137459479887 -6910.0,0.2559529563071254 -6911.0,0.25586456855277334 -6912.0,0.2557762113211988 -6913.0,0.2556878846018613 -6914.0,0.25559958838422414 -6915.0,0.25551132265775417 -6916.0,0.25542308741192205 -6917.0,0.25533488263620185 -6918.0,0.2552467083200714 -6919.0,0.25515856445301216 -6920.0,0.25507045102450926 -6921.0,0.25498236802405133 -6922.0,0.2548943154411308 -6923.0,0.2548062932652435 -6924.0,0.25471830148588914 -6925.0,0.2546303400925709 -6926.0,0.2545424090747957 -6927.0,0.2544545084220739 -6928.0,0.2543666381239197 -6929.0,0.25427879816985066 -6930.0,0.2541909885493882 -6931.0,0.2541032092520574 -6932.0,0.25401546026738664 -6933.0,0.2539277415849082 -6934.0,0.25384005319415787 -6935.0,0.25375239508467506 -6936.0,0.25366476724600273 -6937.0,0.2535771696676877 -6938.0,0.25348960233928 -6939.0,0.2534020652503336 -6940.0,0.25331455839040595 -6941.0,0.2532270817490581 -6942.0,0.25313963531585476 -6943.0,0.25305221908036424 -6944.0,0.2529648330321583 -6945.0,0.2528774771608125 -6946.0,0.2527901514559059 -6947.0,0.25270285590702124 -6948.0,0.2526155905037447 -6949.0,0.25252835523566625 -6950.0,0.2524411500923793 -6951.0,0.2523539750634809 -6952.0,0.25226683013857176 -6953.0,0.252179715307256 -6954.0,0.2520926305591417 -6955.0,0.25200557588384004 -6956.0,0.2519185512709662 -6957.0,0.2518315567101386 -6958.0,0.25174459219097967 -6959.0,0.25165765770311493 -6960.0,0.2515707532361739 -6961.0,0.25148387877978934 -6962.0,0.25139703432359795 -6963.0,0.2513102198572397 -6964.0,0.25122343537035835 -6965.0,0.25113668085260105 -6966.0,0.25104995629361865 -6967.0,0.25096326168306554 -6968.0,0.25087659701059967 -6969.0,0.2507899622658827 -6970.0,0.2507033574385795 -6971.0,0.250616782518359 -6972.0,0.2505302374948933 -6973.0,0.2504437223578582 -6974.0,0.25035723709693314 -6975.0,0.250270781701801 -6976.0,0.25018435616214835 -6977.0,0.2500979604676652 -6978.0,0.2500115946080451 -6979.0,0.24992525857298548 -6980.0,0.2498389523521868 -6981.0,0.24975267593535358 -6982.0,0.24966642931219346 -6983.0,0.24958021247241804 -6984.0,0.24949402540574214 -6985.0,0.24940786810188437 -6986.0,0.24932174055056672 -6987.0,0.2492356427415148 -6988.0,0.24914957466445786 -6989.0,0.2490635363091285 -6990.0,0.24897752766526307 -6991.0,0.24889154872260127 -6992.0,0.2488055994708865 -6993.0,0.24871967989986563 -6994.0,0.2486337899992891 -6995.0,0.24854792975891077 -6996.0,0.24846209916848827 -6997.0,0.24837629821778257 -6998.0,0.24829052689655828 -6999.0,0.24820478519458342 -7000.0,0.24811907310162976 -7001.0,0.24803339060747234 -7002.0,0.24794773770189 -7003.0,0.24786211437466482 -7004.0,0.2477765206155827 -7005.0,0.24769095641443284 -7006.0,0.24760542176100805 -7007.0,0.24751991664510478 -7008.0,0.24743444105652276 -7009.0,0.2473489949850655 -7010.0,0.24726357842053975 -7011.0,0.2471781913527561 -7012.0,0.24709283377152835 -7013.0,0.24700750566667412 -7014.0,0.24692220702801423 -7015.0,0.2468369378453733 -7016.0,0.24675169810857922 -7017.0,0.24666648780746367 -7018.0,0.2465813069318615 -7019.0,0.2464961554716114 -7020.0,0.24641103341655532 -7021.0,0.2463259407565389 -7022.0,0.24624087748141113 -7023.0,0.24615584358102469 -7024.0,0.2460708390452355 -7025.0,0.24598586386390325 -7026.0,0.24590091802689104 -7027.0,0.24581600152406535 -7028.0,0.24573111434529638 -7029.0,0.24564625648045757 -7030.0,0.24556142791942615 -7031.0,0.24547662865208253 -7032.0,0.24539185866831092 -7033.0,0.24530711795799878 -7034.0,0.24522240651103724 -7035.0,0.24513772431732075 -7036.0,0.24505307136674745 -7037.0,0.2449684476492187 -7038.0,0.24488385315463973 -7039.0,0.24479928787291882 -7040.0,0.24471475179396812 -7041.0,0.24463024490770294 -7042.0,0.24454576720404236 -7043.0,0.24446131867290868 -7044.0,0.24437689930422787 -7045.0,0.24429250908792938 -7046.0,0.24420814801394597 -7047.0,0.24412381607221403 -7048.0,0.24403951325267334 -7049.0,0.24395523954526724 -7050.0,0.2438709949399424 -7051.0,0.2437867794266492 -7052.0,0.2437025929953412 -7053.0,0.24361843563597566 -7054.0,0.24353430733851314 -7055.0,0.24345020809291784 -7056.0,0.24336613788915726 -7057.0,0.2432820967172025 -7058.0,0.243198084567028 -7059.0,0.24311410142861178 -7060.0,0.2430301472919352 -7061.0,0.24294622214698317 -7062.0,0.24286232598374405 -7063.0,0.24277845879220966 -7064.0,0.2426946205623752 -7065.0,0.24261081128423945 -7066.0,0.24252703094780448 -7067.0,0.242443279543076 -7068.0,0.242359557060063 -7069.0,0.24227586348877808 -7070.0,0.24219219881923712 -7071.0,0.2421085630414596 -7072.0,0.24202495614546835 -7073.0,0.24194137812128966 -7074.0,0.24185782895895336 -7075.0,0.24177430864849253 -7076.0,0.24169081717994392 -7077.0,0.2416073545433475 -7078.0,0.2415239207287469 -7079.0,0.24144051572618894 -7080.0,0.24135713952572416 -7081.0,0.24127379211740624 -7082.0,0.24119047349129258 -7083.0,0.24110718363744374 -7084.0,0.241023922545924 -7085.0,0.24094069020680076 -7086.0,0.24085748661014514 -7087.0,0.24077431174603145 -7088.0,0.24069116560453763 -7089.0,0.24060804817574485 -7090.0,0.24052495944973795 -7091.0,0.24044189941660488 -7092.0,0.24035886806643728 -7093.0,0.24027586538933016 -7094.0,0.2401928913753818 -7095.0,0.24010994601469413 -7096.0,0.2400270292973722 -7097.0,0.23994414121352484 -7098.0,0.23986128175326393 -7099.0,0.2397784509067051 -7100.0,0.23969564866396711 -7101.0,0.23961287501517237 -7102.0,0.23953012995044645 -7103.0,0.23944741345991857 -7104.0,0.2393647255337212 -7105.0,0.23928206616199035 -7106.0,0.23919943533486526 -7107.0,0.2391168330424888 -7108.0,0.23903425927500693 -7109.0,0.23895171402256943 -7110.0,0.23886919727532904 -7111.0,0.23878670902344223 -7112.0,0.2387042492570688 -7113.0,0.23862181796637175 -7114.0,0.23853941514151777 -7115.0,0.2384570407726767 -7116.0,0.238374694850022 -7117.0,0.23829237736373027 -7118.0,0.23821008830398174 -7119.0,0.2381278276609598 -7120.0,0.2380455954248515 -7121.0,0.23796339158584703 -7122.0,0.23788121613414015 -7123.0,0.23779906905992781 -7124.0,0.23771695035341062 -7125.0,0.23763486000479225 -7126.0,0.23755279800428009 -7127.0,0.23747076434208458 -7128.0,0.23738875900841985 -7129.0,0.23730678199350314 -7130.0,0.23722483328755523 -7131.0,0.2371429128808003 -7132.0,0.23706102076346572 -7133.0,0.2369791569257825 -7134.0,0.23689732135798477 -7135.0,0.2368155140503102 -7136.0,0.23673373499299974 -7137.0,0.2366519841762978 -7138.0,0.236570261590452 -7139.0,0.23648856722571354 -7140.0,0.2364069010723368 -7141.0,0.2363252631205797 -7142.0,0.2362436533607033 -7143.0,0.23616207178297227 -7144.0,0.23608051837765442 -7145.0,0.23599899313502112 -7146.0,0.2359174960453469 -7147.0,0.23583602709890986 -7148.0,0.23575458628599125 -7149.0,0.2356731735968758 -7150.0,0.23559178902185166 -7151.0,0.23551043255121012 -7152.0,0.23542910417524604 -7153.0,0.23534780388425747 -7154.0,0.23526653166854594 -7155.0,0.2351852875184162 -7156.0,0.23510407142417647 -7157.0,0.2350228833761382 -7158.0,0.23494172336461633 -7159.0,0.23486059137992898 -7160.0,0.2347794874123978 -7161.0,0.23469841145234752 -7162.0,0.23461736349010656 -7163.0,0.2345363435160063 -7164.0,0.23445535152038183 -7165.0,0.23437438749357123 -7166.0,0.2342934514259162 -7167.0,0.2342125433077616 -7168.0,0.23413166312945566 -7169.0,0.23405081088135007 -7170.0,0.23396998655379964 -7171.0,0.23388919013716267 -7172.0,0.2338084216218007 -7173.0,0.2337276809980787 -7174.0,0.2336469682563648 -7175.0,0.23356628338703067 -7176.0,0.2334856263804511 -7177.0,0.23340499722700436 -7178.0,0.2333243959170719 -7179.0,0.2332438224410387 -7180.0,0.23316327678929283 -7181.0,0.23308275895222583 -7182.0,0.23300226892023246 -7183.0,0.2329218066837109 -7184.0,0.23284137223306253 -7185.0,0.2327609655586922 -7186.0,0.23268058665100788 -7187.0,0.23260023550042097 -7188.0,0.23251991209734627 -7189.0,0.23243961643220165 -7190.0,0.2323593484954085 -7191.0,0.2322791082773914 -7192.0,0.23219889576857833 -7193.0,0.23211871095940045 -7194.0,0.23203855384029237 -7195.0,0.23195842440169184 -7196.0,0.23187832263404012 -7197.0,0.23179824852778153 -7198.0,0.23171820207336394 -7199.0,0.23163818326123825 -7200.0,0.23155819208185893 -7201.0,0.2314782285256835 -7202.0,0.23139829258317302 -7203.0,0.2313183842447916 -7204.0,0.23123850350100683 -7205.0,0.23115865034228944 -7206.0,0.2310788247591136 -7207.0,0.23099902674195671 -7208.0,0.2309192562812994 -7209.0,0.23083951336762568 -7210.0,0.23075979799142274 -7211.0,0.23068011014318118 -7212.0,0.23060044981339478 -7213.0,0.2305208169925607 -7214.0,0.23044121167117923 -7215.0,0.23036163383975414 -7216.0,0.23028208348879228 -7217.0,0.23020256060880395 -7218.0,0.2301230651903026 -7219.0,0.23004359722380505 -7220.0,0.22996415669983128 -7221.0,0.2298847436089047 -7222.0,0.22980535794155182 -7223.0,0.22972599968830262 -7224.0,0.22964666883969012 -7225.0,0.2295673653862508 -7226.0,0.22948808931852435 -7227.0,0.22940884062705363 -7228.0,0.22932961930238496 -7229.0,0.2292504253350677 -7230.0,0.2291712587156547 -7231.0,0.22909211943470184 -7232.0,0.2290130074827685 -7233.0,0.2289339228504171 -7234.0,0.22885486552821352 -7235.0,0.22877583550672667 -7236.0,0.22869683277652897 -7237.0,0.22861785732819587 -7238.0,0.2285389091523063 -7239.0,0.22845998823944214 -7240.0,0.22838109458018888 -7241.0,0.22830222816513493 -7242.0,0.22822338898487224 -7243.0,0.22814457702999574 -7244.0,0.22806579229110382 -7245.0,0.22798703475879808 -7246.0,0.22790830442368318 -7247.0,0.2278296012763673 -7248.0,0.22775092530746163 -7249.0,0.2276722765075808 -7250.0,0.22759365486734245 -7251.0,0.22751506037736774 -7252.0,0.22743649302828078 -7253.0,0.22735795281070917 -7254.0,0.22727943971528355 -7255.0,0.22720095373263796 -7256.0,0.22712249485340952 -7257.0,0.2270440630682387 -7258.0,0.22696565836776916 -7259.0,0.2268872807426478 -7260.0,0.2268089301835247 -7261.0,0.22673060668105324 -7262.0,0.22665231022588997 -7263.0,0.2265740408086947 -7264.0,0.2264957984201305 -7265.0,0.2264175830508636 -7266.0,0.22633939469156347 -7267.0,0.2262612333329028 -7268.0,0.22618309896555755 -7269.0,0.2261049915802068 -7270.0,0.22602691116753298 -7271.0,0.22594885771822157 -7272.0,0.22587083122296148 -7273.0,0.2257928316724446 -7274.0,0.22571485905736627 -7275.0,0.22563691336842479 -7276.0,0.22555899459632195 -7277.0,0.2254811027317625 -7278.0,0.22540323776545457 -7279.0,0.22532539968810938 -7280.0,0.22524758849044152 -7281.0,0.22516980416316854 -7282.0,0.2250920466970114 -7283.0,0.2250143160826943 -7284.0,0.22493661231094436 -7285.0,0.22485893537249227 -7286.0,0.2247812852580716 -7287.0,0.22470366195841932 -7288.0,0.2246260654642755 -7289.0,0.2245484957663835 -7290.0,0.22447095285548976 -7291.0,0.22439343672234405 -7292.0,0.22431594735769916 -7293.0,0.22423848475231128 -7294.0,0.22416104889693958 -7295.0,0.22408363978234663 -7296.0,0.224006257399298 -7297.0,0.2239289017385626 -7298.0,0.22385157279091242 -7299.0,0.22377427054712273 -7300.0,0.22369699499797185 -7301.0,0.22361974613424143 -7302.0,0.2235425239467163 -7303.0,0.2234653284261843 -7304.0,0.22338815956343666 -7305.0,0.22331101734926762 -7306.0,0.22323390177447477 -7307.0,0.22315681282985866 -7308.0,0.22307975050622328 -7309.0,0.22300271479437553 -7310.0,0.22292570568512574 -7311.0,0.22284872316928714 -7312.0,0.22277176723767642 -7313.0,0.22269483788111316 -7314.0,0.22261793509042035 -7315.0,0.222541058856424 -7316.0,0.2224642091699534 -7317.0,0.22238738602184083 -7318.0,0.22231058940292198 -7319.0,0.22223381930403543 -7320.0,0.22215707571602317 -7321.0,0.22208035862973025 -7322.0,0.22200366803600483 -7323.0,0.22192700392569834 -7324.0,0.22185036628966523 -7325.0,0.22177375511876327 -7326.0,0.22169717040385323 -7327.0,0.2216206121357992 -7328.0,0.22154408030546824 -7329.0,0.22146757490373076 -7330.0,0.22139109592146014 -7331.0,0.22131464334953305 -7332.0,0.22123821717882922 -7333.0,0.22116181740023158 -7334.0,0.22108544400462618 -7335.0,0.22100909698290228 -7336.0,0.22093277632595215 -7337.0,0.2208564820246714 -7338.0,0.22078021406995857 -7339.0,0.22070397245271547 -7340.0,0.22062775716384714 -7341.0,0.2205515681942615 -7342.0,0.2204754055348699 -7343.0,0.22039926917658656 -7344.0,0.22032315911032907 -7345.0,0.22024707532701798 -7346.0,0.22017101781757714 -7347.0,0.22009498657293333 -7348.0,0.22001898158401667 -7349.0,0.21994300284176024 -7350.0,0.2198670503371004 -7351.0,0.21979112406097653 -7352.0,0.21971522400433124 -7353.0,0.2196393501581101 -7354.0,0.219563502513262 -7355.0,0.2194876810607388 -7356.0,0.21941188579149565 -7357.0,0.2193361166964906 -7358.0,0.21926037376668506 -7359.0,0.21918465699304346 -7360.0,0.2191089663665332 -7361.0,0.21903330187812511 -7362.0,0.21895766351879284 -7363.0,0.21888205127951338 -7364.0,0.21880646515126664 -7365.0,0.21873090512503587 -7366.0,0.2186553711918072 -7367.0,0.21857986334257004 -7368.0,0.2185043815683168 -7369.0,0.21842892586004317 -7370.0,0.2183534962087477 -7371.0,0.21827809260543227 -7372.0,0.2182027150411017 -7373.0,0.2181273635067641 -7374.0,0.21805203799343048 -7375.0,0.21797673849211516 -7376.0,0.21790146499383536 -7377.0,0.21782621748961153 -7378.0,0.21775099597046726 -7379.0,0.21767580042742907 -7380.0,0.21760063085152676 -7381.0,0.21752548723379309 -7382.0,0.217450369565264 -7383.0,0.2173752778369785 -7384.0,0.2173002120399787 -7385.0,0.21722517216530976 -7386.0,0.21715015820402006 -7387.0,0.21707517014716085 -7388.0,0.21700020798578673 -7389.0,0.21692527171095516 -7390.0,0.21685036131372687 -7391.0,0.2167754767851655 -7392.0,0.21670061811633798 -7393.0,0.21662578529831414 -7394.0,0.21655097832216702 -7395.0,0.21647619717897265 -7396.0,0.21640144185981017 -7397.0,0.21632671235576192 -7398.0,0.2162520086579131 -7399.0,0.21617733075735218 -7400.0,0.21610267864517058 -7401.0,0.2160280523124629 -7402.0,0.21595345175032665 -7403.0,0.21587887694986269 -7404.0,0.21580432790217466 -7405.0,0.2157298045983695 -7406.0,0.215655307029557 -7407.0,0.21558083518685026 -7408.0,0.21550638906136524 -7409.0,0.21543196864422118 -7410.0,0.21535757392654012 -7411.0,0.21528320489944747 -7412.0,0.21520886155407137 -7413.0,0.21513454388154338 -7414.0,0.2150602518729978 -7415.0,0.21498598551957218 -7416.0,0.21491174481240716 -7417.0,0.21483752974264625 -7418.0,0.21476334030143623 -7419.0,0.21468917647992677 -7420.0,0.21461503826927072 -7421.0,0.21454092566062388 -7422.0,0.21446683864514524 -7423.0,0.2143927772139966 -7424.0,0.21431874135834317 -7425.0,0.21424473106935285 -7426.0,0.21417074633819688 -7427.0,0.2140967871560493 -7428.0,0.21402285351408742 -7429.0,0.2139489454034914 -7430.0,0.21387506281544466 -7431.0,0.21380120574113345 -7432.0,0.2137273741717472 -7433.0,0.2136535680984783 -7434.0,0.21357978751252227 -7435.0,0.21350603240507762 -7436.0,0.2134323027673459 -7437.0,0.2133585985905317 -7438.0,0.2132849198658426 -7439.0,0.21321126658448938 -7440.0,0.2131376387376856 -7441.0,0.2130640363166481 -7442.0,0.2129904593125966 -7443.0,0.21291690771675395 -7444.0,0.2128433815203459 -7445.0,0.2127698807146014 -7446.0,0.21269640529075223 -7447.0,0.21262295524003344 -7448.0,0.21254953055368284 -7449.0,0.2124761312229415 -7450.0,0.21240275723905339 -7451.0,0.21232940859326552 -7452.0,0.2122560852768279 -7453.0,0.21218278728099363 -7454.0,0.21210951459701882 -7455.0,0.2120362672161625 -7456.0,0.2119630451296869 -7457.0,0.21188984832885702 -7458.0,0.21181667680494115 -7459.0,0.21174353054921033 -7460.0,0.2116704095529389 -7461.0,0.21159731380740388 -7462.0,0.21152424330388564 -7463.0,0.2114511980336673 -7464.0,0.21137817798803513 -7465.0,0.21130518315827834 -7466.0,0.21123221353568927 -7467.0,0.21115926911156305 -7468.0,0.21108634987719804 -7469.0,0.21101345582389544 -7470.0,0.2109405869429596 -7471.0,0.2108677432256977 -7472.0,0.21079492466342004 -7473.0,0.21072213124744 -7474.0,0.2106493629690737 -7475.0,0.21057661981964051 -7476.0,0.2105039017904627 -7477.0,0.2104312088728655 -7478.0,0.2103585410581772 -7479.0,0.21028589833772907 -7480.0,0.21021328070285533 -7481.0,0.21014068814489326 -7482.0,0.21006812065518307 -7483.0,0.209995578225068 -7484.0,0.20992306084589427 -7485.0,0.2098505685090111 -7486.0,0.2097781012057706 -7487.0,0.20970565892752807 -7488.0,0.2096332416656416 -7489.0,0.20956084941147235 -7490.0,0.20948848215638446 -7491.0,0.209416139891745 -7492.0,0.2093438226089242 -7493.0,0.20927153029929496 -7494.0,0.20919926295423347 -7495.0,0.20912702056511867 -7496.0,0.20905480312333266 -7497.0,0.20898261062026033 -7498.0,0.20891044304728973 -7499.0,0.2088383003958117 -7500.0,0.20876618265722025 -7501.0,0.20869408982291215 -7502.0,0.20862202188428736 -7503.0,0.20854997883274862 -7504.0,0.20847796065970176 -7505.0,0.2084059673565555 -7506.0,0.20833399891472162 -7507.0,0.20826205532561476 -7508.0,0.20819013658065263 -7509.0,0.20811824267125575 -7510.0,0.20804637358884778 -7511.0,0.2079745293248553 -7512.0,0.2079027098707077 -7513.0,0.20783091521783753 -7514.0,0.20775914535768017 -7515.0,0.20768740028167404 -7516.0,0.20761567998126038 -7517.0,0.2075439844478836 -7518.0,0.20747231367299088 -7519.0,0.20740066764803244 -7520.0,0.20732904636446142 -7521.0,0.20725744981373395 -7522.0,0.207185877987309 -7523.0,0.2071143308766487 -7524.0,0.20704280847321788 -7525.0,0.20697131076848455 -7526.0,0.20689983775391943 -7527.0,0.20682838942099646 -7528.0,0.2067569657611922 -7529.0,0.20668556676598646 -7530.0,0.20661419242686188 -7531.0,0.20654284273530388 -7532.0,0.20647151768280111 -7533.0,0.2064002172608449 -7534.0,0.20632894146092973 -7535.0,0.20625769027455282 -7536.0,0.2061864636932145 -7537.0,0.2061152617084179 -7538.0,0.2060440843116692 -7539.0,0.20597293149447737 -7540.0,0.20590180324835453 -7541.0,0.20583069956481542 -7542.0,0.20575962043537807 -7543.0,0.20568856585156314 -7544.0,0.2056175358048944 -7545.0,0.2055465302868984 -7546.0,0.20547554928910483 -7547.0,0.20540459280304604 -7548.0,0.2053336608202575 -7549.0,0.2052627533322776 -7550.0,0.20519187033064745 -7551.0,0.2051210118069114 -7552.0,0.20505017775261639 -7553.0,0.20497936815931253 -7554.0,0.2049085830185527 -7555.0,0.2048378223218928 -7556.0,0.2047670860608915 -7557.0,0.2046963742271106 -7558.0,0.2046256868121146 -7559.0,0.2045550238074711 -7560.0,0.2044843852047504 -7561.0,0.20441377099552593 -7562.0,0.20434318117137387 -7563.0,0.20427261572387342 -7564.0,0.20420207464460655 -7565.0,0.20413155792515836 -7566.0,0.20406106555711656 -7567.0,0.20399059753207202 -7568.0,0.20392015384161846 -7569.0,0.20384973447735236 -7570.0,0.20377933943087326 -7571.0,0.20370896869378352 -7572.0,0.20363862225768847 -7573.0,0.20356830011419622 -7574.0,0.2034980022549179 -7575.0,0.20342772867146747 -7576.0,0.20335747935546186 -7577.0,0.20328725429852074 -7578.0,0.20321705349226685 -7579.0,0.2031468769283257 -7580.0,0.2030767245983258 -7581.0,0.20300659649389838 -7582.0,0.2029364926066778 -7583.0,0.20286641292830104 -7584.0,0.20279635745040825 -7585.0,0.20272632616464217 -7586.0,0.2026563190626487 -7587.0,0.2025863361360765 -7588.0,0.202516377376577 -7589.0,0.20244644277580476 -7590.0,0.20237653232541702 -7591.0,0.20230664601707402 -7592.0,0.20223678384243876 -7593.0,0.2021669457931773 -7594.0,0.20209713186095832 -7595.0,0.2020273420374537 -7596.0,0.2019575763143379 -7597.0,0.20188783468328841 -7598.0,0.20181811713598555 -7599.0,0.2017484236641126 -7600.0,0.20167875425935552 -7601.0,0.20160910891340336 -7602.0,0.20153948761794788 -7603.0,0.2014698903646838 -7604.0,0.2014003171453086 -7605.0,0.20133076795152277 -7606.0,0.20126124277502963 -7607.0,0.20119174160753528 -7608.0,0.20112226444074877 -7609.0,0.20105281126638191 -7610.0,0.20098338207614955 -7611.0,0.20091397686176918 -7612.0,0.20084459561496135 -7613.0,0.2007752383274493 -7614.0,0.20070590499095936 -7615.0,0.20063659559722039 -7616.0,0.20056731013796442 -7617.0,0.20049804860492612 -7618.0,0.20042881098984314 -7619.0,0.20035959728445588 -7620.0,0.20029040748050775 -7621.0,0.2002212415697448 -7622.0,0.2001520995439161 -7623.0,0.2000829813947735 -7624.0,0.2000138871140717 -7625.0,0.1999448166935683 -7626.0,0.19987577012502364 -7627.0,0.19980674740020102 -7628.0,0.19973774851086645 -7629.0,0.199668773448789 -7630.0,0.19959982220574032 -7631.0,0.19953089477349512 -7632.0,0.19946199114383079 -7633.0,0.1993931113085277 -7634.0,0.1993242552593689 -7635.0,0.19925542298814045 -7636.0,0.19918661448663108 -7637.0,0.19911782974663256 -7638.0,0.19904906875993922 -7639.0,0.1989803315183485 -7640.0,0.19891161801366045 -7641.0,0.19884292823767816 -7642.0,0.19877426218220734 -7643.0,0.19870561983905666 -7644.0,0.19863700120003763 -7645.0,0.19856840625696448 -7646.0,0.1984998350016544 -7647.0,0.1984312874259273 -7648.0,0.19836276352160598 -7649.0,0.19829426328051597 -7650.0,0.19822578669448582 -7651.0,0.1981573337553466 -7652.0,0.19808890445493255 -7653.0,0.1980204987850804 -7654.0,0.19795211673763 -7655.0,0.19788375830442373 -7656.0,0.19781542347730702 -7657.0,0.19774711224812797 -7658.0,0.1976788246087376 -7659.0,0.19761056055098963 -7660.0,0.19754232006674072 -7661.0,0.19747410314785022 -7662.0,0.1974059097861804 -7663.0,0.19733773997359627 -7664.0,0.19726959370196562 -7665.0,0.1972014709631592 -7666.0,0.19713337174905038 -7667.0,0.19706529605151546 -7668.0,0.19699724386243345 -7669.0,0.19692921517368633 -7670.0,0.19686120997715864 -7671.0,0.19679322826473797 -7672.0,0.1967252700283145 -7673.0,0.1966573352597814 -7674.0,0.19658942395103446 -7675.0,0.19652153609397244 -7676.0,0.19645367168049674 -7677.0,0.1963858307025117 -7678.0,0.1963180131519243 -7679.0,0.1962502190206445 -7680.0,0.19618244830058487 -7681.0,0.19611470098366088 -7682.0,0.19604697706179083 -7683.0,0.19597927652689565 -7684.0,0.19591159937089925 -7685.0,0.19584394558572815 -7686.0,0.19577631516331187 -7687.0,0.19570870809558244 -7688.0,0.19564112437447498 -7689.0,0.19557356399192713 -7690.0,0.1955060269398795 -7691.0,0.19543851321027536 -7692.0,0.19537102279506086 -7693.0,0.19530355568618485 -7694.0,0.19523611187559903 -7695.0,0.1951686913552578 -7696.0,0.19510129411711843 -7697.0,0.1950339201531409 -7698.0,0.19496656945528798 -7699.0,0.19489924201552522 -7700.0,0.19483193782582095 -7701.0,0.19476465687814631 -7702.0,0.19469739916447512 -7703.0,0.1946301646767841 -7704.0,0.19456295340705254 -7705.0,0.19449576534726276 -7706.0,0.19442860048939958 -7707.0,0.1943614588254509 -7708.0,0.194294340347407 -7709.0,0.1942272450472613 -7710.0,0.19416017291700974 -7711.0,0.19409312394865114 -7712.0,0.194026098134187 -7713.0,0.1939590954656217 -7714.0,0.19389211593496222 -7715.0,0.1938251595342185 -7716.0,0.193758226255403 -7717.0,0.19369131609053122 -7718.0,0.1936244290316211 -7719.0,0.1935575650706936 -7720.0,0.19349072419977237 -7721.0,0.1934239064108837 -7722.0,0.19335711169605677 -7723.0,0.1932903400473234 -7724.0,0.1932235914567183 -7725.0,0.19315686591627876 -7726.0,0.19309016341804497 -7727.0,0.19302348395405977 -7728.0,0.19295682751636886 -7729.0,0.19289019409702052 -7730.0,0.19282358368806593 -7731.0,0.19275699628155893 -7732.0,0.19269043186955614 -7733.0,0.19262389044411687 -7734.0,0.1925573719973033 -7735.0,0.19249087652118016 -7736.0,0.1924244040078151 -7737.0,0.1923579544492784 -7738.0,0.19229152783764308 -7739.0,0.19222512416498505 -7740.0,0.19215874342338268 -7741.0,0.19209238560491737 -7742.0,0.19202605070167303 -7743.0,0.19195973870573643 -7744.0,0.19189344960919696 -7745.0,0.19182718340414695 -7746.0,0.19176094008268119 -7747.0,0.1916947196368974 -7748.0,0.19162852205889594 -7749.0,0.19156234734077998 -7750.0,0.19149619547465527 -7751.0,0.19143006645263044 -7752.0,0.19136396026681673 -7753.0,0.19129787690932823 -7754.0,0.1912318163722816 -7755.0,0.19116577864779635 -7756.0,0.19109976372799461 -7757.0,0.1910337716050013 -7758.0,0.1909678022709441 -7759.0,0.19090185571795326 -7760.0,0.19083593193816192 -7761.0,0.19077003092370579 -7762.0,0.1907041526667234 -7763.0,0.1906382971593559 -7764.0,0.19057246439374728 -7765.0,0.19050665436204411 -7766.0,0.1904408670563958 -7767.0,0.1903751024689543 -7768.0,0.1903093605918745 -7769.0,0.19024364141731376 -7770.0,0.19017794493743237 -7771.0,0.19011227114439308 -7772.0,0.19004662003036166 -7773.0,0.18998099158750623 -7774.0,0.18991538580799794 -7775.0,0.18984980268401042 -7776.0,0.18978424220772008 -7777.0,0.1897187043713061 -7778.0,0.1896531891669502 -7779.0,0.18958769658683702 -7780.0,0.18952222662315363 -7781.0,0.18945677926809004 -7782.0,0.18939135451383882 -7783.0,0.18932595235259528 -7784.0,0.1892605727765574 -7785.0,0.18919521577792592 -7786.0,0.18912988134890416 -7787.0,0.18906456948169828 -7788.0,0.18899928016851697 -7789.0,0.18893401340157176 -7790.0,0.18886876917307674 -7791.0,0.1888035474752488 -7792.0,0.18873834830030742 -7793.0,0.18867317164047487 -7794.0,0.18860801748797598 -7795.0,0.1885428858350384 -7796.0,0.18847777667389237 -7797.0,0.18841268999677083 -7798.0,0.18834762579590947 -7799.0,0.1882825840635465 -7800.0,0.18821756479192303 -7801.0,0.18815256797328267 -7802.0,0.1880875935998718 -7803.0,0.1880226416639394 -7804.0,0.18795771215773724 -7805.0,0.18789280507351966 -7806.0,0.1878279204035438 -7807.0,0.18776305814006924 -7808.0,0.18769821827535854 -7809.0,0.18763340080167668 -7810.0,0.18756860571129144 -7811.0,0.18750383299647325 -7812.0,0.1874390826494952 -7813.0,0.18737435466263297 -7814.0,0.18730964902816508 -7815.0,0.1872449657383726 -7816.0,0.1871803047855392 -7817.0,0.18711566616195147 -7818.0,0.18705104985989832 -7819.0,0.1869864558716716 -7820.0,0.18692188418956565 -7821.0,0.18685733480587763 -7822.0,0.18679280771290716 -7823.0,0.18672830290295672 -7824.0,0.1866638203683313 -7825.0,0.18659936010133865 -7826.0,0.18653492209428907 -7827.0,0.18647050633949563 -7828.0,0.18640611282927394 -7829.0,0.1863417415559424 -7830.0,0.18627739251182193 -7831.0,0.1862130656892362 -7832.0,0.18614876108051145 -7833.0,0.18608447867797662 -7834.0,0.1860202184739633 -7835.0,0.1859559804608057 -7836.0,0.18589176463084073 -7837.0,0.18582757097640784 -7838.0,0.1857633994898493 -7839.0,0.1856992501635098 -7840.0,0.1856351229897369 -7841.0,0.18557101796088057 -7842.0,0.1855069350692937 -7843.0,0.18544287430733156 -7844.0,0.18537883566735222 -7845.0,0.18531481914171627 -7846.0,0.18525082472278712 -7847.0,0.18518685240293056 -7848.0,0.1851229021745153 -7849.0,0.18505897402991242 -7850.0,0.18499506796149587 -7851.0,0.18493118396164202 -7852.0,0.18486732202273 -7853.0,0.18480348213714165 -7854.0,0.1847396642972612 -7855.0,0.18467586849547574 -7856.0,0.18461209472417484 -7857.0,0.1845483429757508 -7858.0,0.18448461324259843 -7859.0,0.18442090551711532 -7860.0,0.18435721979170153 -7861.0,0.18429355605875988 -7862.0,0.1842299143106957 -7863.0,0.18416629453991706 -7864.0,0.18410269673883448 -7865.0,0.18403912089986132 -7866.0,0.18397556701541334 -7867.0,0.18391203507790913 -7868.0,0.1838485250797697 -7869.0,0.18378503701341886 -7870.0,0.18372157087128285 -7871.0,0.18365812664579068 -7872.0,0.18359470432937394 -7873.0,0.18353130391446673 -7874.0,0.18346792539350595 -7875.0,0.18340456875893088 -7876.0,0.18334123400318367 -7877.0,0.1832779211187088 -7878.0,0.18321463009795363 -7879.0,0.18315136093336792 -7880.0,0.1830881136174042 -7881.0,0.18302488814251744 -7882.0,0.18296168450116537 -7883.0,0.18289850268580818 -7884.0,0.18283534268890883 -7885.0,0.18277220450293272 -7886.0,0.182709088120348 -7887.0,0.18264599353362526 -7888.0,0.18258292073523785 -7889.0,0.18251986971766157 -7890.0,0.18245684047337493 -7891.0,0.18239383299485906 -7892.0,0.18233084727459753 -7893.0,0.18226788330507668 -7894.0,0.1822049410787853 -7895.0,0.1821420205882149 -7896.0,0.18207912182585947 -7897.0,0.1820162447842157 -7898.0,0.18195338945578277 -7899.0,0.18189055583306257 -7900.0,0.1818277439085594 -7901.0,0.18176495367478035 -7902.0,0.18170218512423494 -7903.0,0.1816394382494354 -7904.0,0.1815767130428964 -7905.0,0.18151400949713536 -7906.0,0.18145132760467217 -7907.0,0.18138866735802936 -7908.0,0.18132602874973197 -7909.0,0.1812634117723077 -7910.0,0.18120081641828684 -7911.0,0.18113824268020215 -7912.0,0.18107569055058909 -7913.0,0.18101316002198561 -7914.0,0.18095065108693234 -7915.0,0.18088816373797234 -7916.0,0.18082569796765138 -7917.0,0.18076325376851768 -7918.0,0.18070083113312221 -7919.0,0.1806384300540183 -7920.0,0.18057605052376205 -7921.0,0.18051369253491192 -7922.0,0.18045135608002918 -7923.0,0.18038904115167748 -7924.0,0.1803267477424231 -7925.0,0.1802644758448349 -7926.0,0.18020222545148434 -7927.0,0.1801399965549453 -7928.0,0.18007778914779443 -7929.0,0.18001560322261081 -7930.0,0.17995343877197606 -7931.0,0.17989129578847451 -7932.0,0.17982917426469283 -7933.0,0.17976707419322052 -7934.0,0.17970499556664937 -7935.0,0.17964293837757395 -7936.0,0.1795809026185912 -7937.0,0.17951888828230078 -7938.0,0.17945689536130474 -7939.0,0.1793949238482079 -7940.0,0.17933297373561743 -7941.0,0.17927104501614316 -7942.0,0.1792091376823974 -7943.0,0.17914725172699517 -7944.0,0.17908538714255376 -7945.0,0.17902354392169334 -7946.0,0.17896172205703634 -7947.0,0.1788999215412079 -7948.0,0.17883814236683573 -7949.0,0.17877638452654993 -7950.0,0.17871464801298334 -7951.0,0.17865293281877115 -7952.0,0.17859123893655127 -7953.0,0.17852956635896397 -7954.0,0.17846791507865226 -7955.0,0.17840628508826153 -7956.0,0.17834467638043983 -7957.0,0.1782830889478376 -7958.0,0.178221522783108 -7959.0,0.17815997787890656 -7960.0,0.1780984542278915 -7961.0,0.17803695182272342 -7962.0,0.1779754706560656 -7963.0,0.17791401072058372 -7964.0,0.1778525720089461 -7965.0,0.17779115451382355 -7966.0,0.17772975822788936 -7967.0,0.1776683831438195 -7968.0,0.17760702925429225 -7969.0,0.17754569655198865 -7970.0,0.17748438502959207 -7971.0,0.17742309467978856 -7972.0,0.17736182549526658 -7973.0,0.1773005774687172 -7974.0,0.1772393505928339 -7975.0,0.17717814486031286 -7976.0,0.17711696026385262 -7977.0,0.17705579679615435 -7978.0,0.1769946544499216 -7979.0,0.17693353321786068 -7980.0,0.17687243309268014 -7981.0,0.17681135406709125 -7982.0,0.1767502961338077 -7983.0,0.1766892592855457 -7984.0,0.1766282435150241 -7985.0,0.17656724881496405 -7986.0,0.17650627517808942 -7987.0,0.17644532259712642 -7988.0,0.1763843910648039 -7989.0,0.17632348057385316 -7990.0,0.176262591117008 -7991.0,0.1762017226870048 -7992.0,0.17614087527658237 -7993.0,0.17608004887848203 -7994.0,0.1760192434854477 -7995.0,0.17595845909022564 -7996.0,0.17589769568556485 -7997.0,0.17583695326421658 -7998.0,0.17577623181893479 -7999.0,0.17571553134247578 -8000.0,0.1756548518275985 -8001.0,0.17559419326706424 -8002.0,0.1755335556536369 -8003.0,0.17547293898008295 -8004.0,0.17541234323917113 -8005.0,0.17535176842367292 -8006.0,0.1752912145263621 -8007.0,0.1752306815400151 -8008.0,0.1751701694574107 -8009.0,0.17510967827133034 -8010.0,0.17504920797455775 -8011.0,0.17498875855987941 -8012.0,0.174928330020084 -8013.0,0.17486792234796295 -8014.0,0.17480753553630998 -8015.0,0.17474716957792144 -8016.0,0.17468682446559608 -8017.0,0.17462650019213521 -8018.0,0.17456619675034252 -8019.0,0.1745059141330243 -8020.0,0.17444565233298923 -8021.0,0.17438541134304855 -8022.0,0.17432519115601597 -8023.0,0.1742649917647076 -8024.0,0.17420481316194217 -8025.0,0.17414465534054072 -8026.0,0.17408451829332694 -8027.0,0.17402440201312683 -8028.0,0.1739643064927691 -8029.0,0.17390423172508462 -8030.0,0.17384417770290703 -8031.0,0.17378414441907228 -8032.0,0.17372413186641886 -8033.0,0.17366414003778766 -8034.0,0.17360416892602215 -8035.0,0.17354421852396815 -8036.0,0.1734842888244741 -8037.0,0.17342437982039074 -8038.0,0.17336449150457142 -8039.0,0.17330462386987186 -8040.0,0.1732447769091503 -8041.0,0.17318495061526748 -8042.0,0.17312514498108647 -8043.0,0.173065359999473 -8044.0,0.17300559566329504 -8045.0,0.17294585196542328 -8046.0,0.1728861288987306 -8047.0,0.17282642645609253 -8048.0,0.172766744630387 -8049.0,0.17270708341449445 -8050.0,0.17264744280129762 -8051.0,0.17258782278368195 -8052.0,0.17252822335453508 -8053.0,0.17246864450674737 -8054.0,0.17240908623321136 -8055.0,0.17234954852682227 -8056.0,0.17229003138047766 -8057.0,0.1722305347870776 -8058.0,0.17217105873952449 -8059.0,0.17211160323072336 -8060.0,0.1720521682535816 -8061.0,0.17199275380100898 -8062.0,0.17193335986591787 -8063.0,0.17187398644122295 -8064.0,0.17181463351984144 -8065.0,0.17175530109469292 -8066.0,0.17169598915869955 -8067.0,0.17163669770478573 -8068.0,0.17157742672587853 -8069.0,0.17151817621490728 -8070.0,0.1714589461648039 -8071.0,0.1713997365685026 -8072.0,0.17134054741894017 -8073.0,0.17128137870905571 -8074.0,0.17122223043179088 -8075.0,0.17116310258008968 -8076.0,0.17110399514689867 -8077.0,0.17104490812516665 -8078.0,0.17098584150784502 -8079.0,0.17092679528788762 -8080.0,0.17086776945825055 -8081.0,0.1708087640118926 -8082.0,0.1707497789417747 -8083.0,0.1706908142408605 -8084.0,0.17063186990211582 -8085.0,0.17057294591850913 -8086.0,0.17051404228301115 -8087.0,0.17045515898859517 -8088.0,0.17039629602823678 -8089.0,0.17033745339491413 -8090.0,0.17027863108160765 -8091.0,0.17021982908130034 -8092.0,0.17016104738697746 -8093.0,0.17010228599162688 -8094.0,0.1700435448882387 -8095.0,0.16998482406980564 -8096.0,0.16992612352932263 -8097.0,0.16986744325978714 -8098.0,0.16980878325419915 -8099.0,0.1697501435055608 -8100.0,0.16969152400687693 -8101.0,0.16963292475115455 -8102.0,0.1695743457314033 -8103.0,0.16951578694063502 -8104.0,0.16945724837186416 -8105.0,0.1693987300181074 -8106.0,0.16934023187238406 -8107.0,0.16928175392771563 -8108.0,0.1692232961771262 -8109.0,0.16916485861364208 -8110.0,0.16910644123029223 -8111.0,0.16904804402010773 -8112.0,0.16898966697612236 -8113.0,0.16893131009137205 -8114.0,0.16887297335889534 -8115.0,0.168814656771733 -8116.0,0.16875636032292832 -8117.0,0.16869808400552702 -8118.0,0.16863982781257708 -8119.0,0.16858159173712903 -8120.0,0.16852337577223564 -8121.0,0.16846517991095225 -8122.0,0.16840700414633647 -8123.0,0.1683488484714484 -8124.0,0.16829071287935043 -8125.0,0.16823259736310747 -8126.0,0.16817450191578673 -8127.0,0.16811642653045786 -8128.0,0.16805837120019285 -8129.0,0.1680003359180662 -8130.0,0.16794232067715464 -8131.0,0.16788432547053747 -8132.0,0.16782635029129617 -8133.0,0.16776839513251482 -8134.0,0.16771045998727974 -8135.0,0.16765254484867967 -8136.0,0.16759464970980584 -8137.0,0.1675367745637517 -8138.0,0.16747891940361326 -8139.0,0.1674210842224887 -8140.0,0.16736326901347878 -8141.0,0.16730547376968655 -8142.0,0.1672476984842175 -8143.0,0.16718994315017938 -8144.0,0.16713220776068247 -8145.0,0.16707449230883928 -8146.0,0.16701679678776488 -8147.0,0.16695912119057651 -8148.0,0.166901465510394 -8149.0,0.16684382974033937 -8150.0,0.16678621387353712 -8151.0,0.16672861790311408 -8152.0,0.1666710418221995 -8153.0,0.16661348562392492 -8154.0,0.16655594930142437 -8155.0,0.16649843284783417 -8156.0,0.16644093625629297 -8157.0,0.16638345951994193 -8158.0,0.16632600263192443 -8159.0,0.16626856558538633 -8160.0,0.16621114837347575 -8161.0,0.16615375098934332 -8162.0,0.16609637342614186 -8163.0,0.16603901567702672 -8164.0,0.16598167773515546 -8165.0,0.16592435959368818 -8166.0,0.16586706124578715 -8167.0,0.16580978268461716 -8168.0,0.16575252390334524 -8169.0,0.16569528489514093 -8170.0,0.1656380656531759 -8171.0,0.16558086617062442 -8172.0,0.16552368644066295 -8173.0,0.16546652645647036 -8174.0,0.16540938621122797 -8175.0,0.16535226569811923 -8176.0,0.16529516491033022 -8177.0,0.1652380838410491 -8178.0,0.16518102248346664 -8179.0,0.16512398083077573 -8180.0,0.1650669588761718 -8181.0,0.16500995661285245 -8182.0,0.16495297403401782 -8183.0,0.16489601113287022 -8184.0,0.1648390679026145 -8185.0,0.16478214433645763 -8186.0,0.16472524042760917 -8187.0,0.16466835616928074 -8188.0,0.16461149155468663 -8189.0,0.16455464657704316 -8190.0,0.16449782122956927 -8191.0,0.16444101550548598 -8192.0,0.16438422939801686 -8193.0,0.16432746290038774 -8194.0,0.1642707160058268 -8195.0,0.1642139887075645 -8196.0,0.16415728099883373 -8197.0,0.16410059287286966 -8198.0,0.1640439243229098 -8199.0,0.163987275342194 -8200.0,0.16393064592396447 -8201.0,0.16387403606146575 -8202.0,0.16381744574794466 -8203.0,0.1637608749766504 -8204.0,0.16370432374083446 -8205.0,0.1636477920337508 -8206.0,0.16359127984865543 -8207.0,0.163534787178807 -8208.0,0.16347831401746626 -8209.0,0.16342186035789646 -8210.0,0.163365426193363 -8211.0,0.16330901151713373 -8212.0,0.1632526163224788 -8213.0,0.16319624060267066 -8214.0,0.16313988435098414 -8215.0,0.1630835475606963 -8216.0,0.16302723022508658 -8217.0,0.16297093233743676 -8218.0,0.16291465389103088 -8219.0,0.16285839487915532 -8220.0,0.16280215529509887 -8221.0,0.16274593513215246 -8222.0,0.1626897343836095 -8223.0,0.1626335530427656 -8224.0,0.1625773911029188 -8225.0,0.16252124855736932 -8226.0,0.16246512539941985 -8227.0,0.1624090216223752 -8228.0,0.16235293721954266 -8229.0,0.16229687218423175 -8230.0,0.16224082650975435 -8231.0,0.1621848001894246 -8232.0,0.162128793216559 -8233.0,0.16207280558447626 -8234.0,0.1620168372864975 -8235.0,0.16196088831594613 -8236.0,0.1619049586661478 -8237.0,0.16184904833043057 -8238.0,0.16179315730212468 -8239.0,0.1617372855745628 -8240.0,0.16168143314107977 -8241.0,0.1616255999950129 -8242.0,0.16156978612970158 -8243.0,0.16151399153848772 -8244.0,0.1614582162147154 -8245.0,0.16140246015173104 -8246.0,0.1613467233428833 -8247.0,0.16129100578152325 -8248.0,0.16123530746100415 -8249.0,0.16117962837468158 -8250.0,0.16112396851591354 -8251.0,0.16106832787806008 -8252.0,0.16101270645448376 -8253.0,0.16095710423854928 -8254.0,0.1609015212236238 -8255.0,0.16084595740307658 -8256.0,0.16079041277027933 -8257.0,0.1607348873186059 -8258.0,0.16067938104143262 -8259.0,0.16062389393213788 -8260.0,0.16056842598410256 -8261.0,0.16051297719070967 -8262.0,0.16045754754534464 -8263.0,0.16040213704139505 -8264.0,0.1603467456722509 -8265.0,0.1602913734313043 -8266.0,0.1602360203119499 -8267.0,0.16018068630758434 -8268.0,0.1601253714116067 -8269.0,0.1600700756174184 -8270.0,0.16001479891842296 -8271.0,0.15995954130802637 -8272.0,0.15990430277963666 -8273.0,0.15984908332666442 -8274.0,0.15979388294252228 -8275.0,0.15973870162062528 -8276.0,0.15968353935439064 -8277.0,0.15962839613723798 -8278.0,0.15957327196258905 -8279.0,0.159518166823868 -8280.0,0.1594630807145011 -8281.0,0.1594080136279171 -8282.0,0.15935296555754674 -8283.0,0.15929793649682336 -8284.0,0.15924292643918225 -8285.0,0.15918793537806122 -8286.0,0.15913296330690016 -8287.0,0.1590780102191413 -8288.0,0.15902307610822924 -8289.0,0.15896816096761063 -8290.0,0.15891326479073456 -8291.0,0.15885838757105225 -8292.0,0.15880352930201733 -8293.0,0.15874868997708552 -8294.0,0.158693869589715 -8295.0,0.15863906813336598 -8296.0,0.15858428560150112 -8297.0,0.15852952198758521 -8298.0,0.15847477728508544 -8299.0,0.15842005148747107 -8300.0,0.15836534458821377 -8301.0,0.15831065658078736 -8302.0,0.158255987458668 -8303.0,0.15820133721533405 -8304.0,0.15814670584426613 -8305.0,0.1580920933389471 -8306.0,0.1580374996928621 -8307.0,0.15798292489949856 -8308.0,0.15792836895234602 -8309.0,0.1578738318448964 -8310.0,0.1578193135706438 -8311.0,0.1577648141230846 -8312.0,0.1577103334957174 -8313.0,0.1576558716820431 -8314.0,0.15760142867556473 -8315.0,0.1575470044697877 -8316.0,0.15749259905821955 -8317.0,0.1574382124343702 -8318.0,0.1573838445917516 -8319.0,0.15732949552387815 -8320.0,0.15727516522426635 -8321.0,0.15722085368643504 -8322.0,0.1571665609039052 -8323.0,0.15711228687020018 -8324.0,0.15705803157884538 -8325.0,0.15700379502336856 -8326.0,0.15694957719729977 -8327.0,0.15689537809417115 -8328.0,0.15684119770751717 -8329.0,0.15678703603087446 -8330.0,0.156732893057782 -8331.0,0.15667876878178089 -8332.0,0.15662466319641452 -8333.0,0.15657057629522841 -8334.0,0.1565165080717705 -8335.0,0.15646245851959073 -8336.0,0.1564084276322415 -8337.0,0.1563544154032772 -8338.0,0.1563004218262547 -8339.0,0.15624644689473283 -8340.0,0.1561924906022729 -8341.0,0.15613855294243817 -8342.0,0.15608463390879437 -8343.0,0.15603073349490934 -8344.0,0.15597685169435313 -8345.0,0.15592298850069808 -8346.0,0.15586914390751863 -8347.0,0.1558153179083916 -8348.0,0.15576151049689585 -8349.0,0.15570772166661265 -8350.0,0.15565395141112526 -8351.0,0.15560019972401942 -8352.0,0.15554646659888283 -8353.0,0.15549275202930557 -8354.0,0.1554390560088799 -8355.0,0.15538537853120024 -8356.0,0.15533171958986325 -8357.0,0.15527807917846786 -8358.0,0.15522445729061513 -8359.0,0.15517085391990837 -8360.0,0.15511726905995307 -8361.0,0.15506370270435696 -8362.0,0.15501015484672995 -8363.0,0.15495662548068417 -8364.0,0.15490311459983402 -8365.0,0.15484962219779597 -8366.0,0.1547961482681888 -8367.0,0.1547426928046334 -8368.0,0.15468925580075302 -8369.0,0.15463583725017294 -8370.0,0.15458243714652078 -8371.0,0.15452905548342621 -8372.0,0.1544756922545213 -8373.0,0.15442234745344008 -8374.0,0.154369021073819 -8375.0,0.15431571310929657 -8376.0,0.15426242355351355 -8377.0,0.15420915240011288 -8378.0,0.1541558996427397 -8379.0,0.15410266527504135 -8380.0,0.15404944929066738 -8381.0,0.15399625168326944 -8382.0,0.1539430724465015 -8383.0,0.15388991157401966 -8384.0,0.1538367690594822 -8385.0,0.15378364489654964 -8386.0,0.1537305390788846 -8387.0,0.153677451600152 -8388.0,0.15362438245401883 -8389.0,0.1535713316341544 -8390.0,0.15351829913423007 -8391.0,0.15346528494791947 -8392.0,0.1534122890688984 -8393.0,0.15335931149084486 -8394.0,0.15330635220743896 -8395.0,0.1532534112123631 -8396.0,0.15320048849930176 -8397.0,0.15314758406194168 -8398.0,0.15309469789397168 -8399.0,0.15304182998908294 -8400.0,0.15298898034096858 -8401.0,0.1529361489433241 -8402.0,0.1528833357898471 -8403.0,0.1528305408742373 -8404.0,0.15277776419019676 -8405.0,0.15272500573142947 -8406.0,0.15267226549164184 -8407.0,0.15261954346454223 -8408.0,0.15256683964384143 -8409.0,0.15251415402325214 -8410.0,0.15246148659648945 -8411.0,0.1524088373572704 -8412.0,0.15235620629931443 -8413.0,0.15230359341634295 -8414.0,0.1522509987020797 -8415.0,0.15219842215025045 -8416.0,0.15214586375458328 -8417.0,0.15209332350880828 -8418.0,0.15204080140665782 -8419.0,0.1519882974418664 -8420.0,0.15193581160817063 -8421.0,0.1518833438993094 -8422.0,0.15183089430902366 -8423.0,0.1517784628310566 -8424.0,0.1517260494591534 -8425.0,0.15167365418706172 -8426.0,0.151621277008531 -8427.0,0.15156891791731317 -8428.0,0.15151657690716205 -8429.0,0.15146425397183386 -8430.0,0.15141194910508673 -8431.0,0.15135966230068118 -8432.0,0.1513073935523797 -8433.0,0.15125514285394706 -8434.0,0.15120291019915008 -8435.0,0.15115069558175787 -8436.0,0.1510984989955415 -8437.0,0.1510463204342744 -8438.0,0.15099415989173195 -8439.0,0.15094201736169185 -8440.0,0.15088989283793386 -8441.0,0.15083778631423989 -8442.0,0.15078569778439405 -8443.0,0.15073362724218248 -8444.0,0.15068157468139362 -8445.0,0.15062954009581792 -8446.0,0.1505775234792481 -8447.0,0.1505255248254789 -8448.0,0.1504735441283073 -8449.0,0.15042158138153233 -8450.0,0.1503696365789553 -8451.0,0.15031770971437947 -8452.0,0.15026580078161042 -8453.0,0.15021390977445573 -8454.0,0.15016203668672526 -8455.0,0.15011018151223085 -8456.0,0.15005834424478662 -8457.0,0.15000652487820873 -8458.0,0.14995472340631547 -8459.0,0.1499029398229274 -8460.0,0.14985117412186702 -8461.0,0.14979942629695914 -8462.0,0.14974769634203053 -8463.0,0.14969598425091027 -8464.0,0.14964429001742943 -8465.0,0.1495926136354213 -8466.0,0.14954095509872123 -8467.0,0.14948931440116678 -8468.0,0.14943769153659753 -8469.0,0.14938608649885532 -8470.0,0.14933449928178397 -8471.0,0.14928292987922956 -8472.0,0.14923137828504018 -8473.0,0.14917984449306618 -8474.0,0.14912832849715987 -8475.0,0.14907683029117583 -8476.0,0.14902534986897065 -8477.0,0.1489738872244031 -8478.0,0.14892244235133414 -8479.0,0.14887101524362667 -8480.0,0.1488196058951459 -8481.0,0.14876821429975895 -8482.0,0.1487168404513353 -8483.0,0.14866548434374635 -8484.0,0.14861414597086572 -8485.0,0.1485628253265691 -8486.0,0.14851152240473434 -8487.0,0.14846023719924134 -8488.0,0.1484089697039722 -8489.0,0.148357719912811 -8490.0,0.1483064878196441 -8491.0,0.14825527341835978 -8492.0,0.14820407670284866 -8493.0,0.14815289766700326 -8494.0,0.14810173630471835 -8495.0,0.14805059260989067 -8496.0,0.14799946657641924 -8497.0,0.14794835819820507 -8498.0,0.14789726746915127 -8499.0,0.14784619438316313 -8500.0,0.14779513893414797 -8501.0,0.14774410111601527 -8502.0,0.14769308092267658 -8503.0,0.14764207834804557 -8504.0,0.14759109338603799 -8505.0,0.14754012603057173 -8506.0,0.1474891762755667 -8507.0,0.14743824411494508 -8508.0,0.1473873295426309 -8509.0,0.14733643255255052 -8510.0,0.14728555313863226 -8511.0,0.14723469129480657 -8512.0,0.147183847015006 -8513.0,0.14713302029316527 -8514.0,0.147082211123221 -8515.0,0.1470314194991121 -8516.0,0.14698064541477954 -8517.0,0.14692988886416625 -8518.0,0.14687914984121744 -8519.0,0.14682842833988022 -8520.0,0.14677772435410394 -8521.0,0.14672703787783994 -8522.0,0.14667636890504177 -8523.0,0.1466257174296649 -8524.0,0.14657508344566708 -8525.0,0.14652446694700794 -8526.0,0.14647386792764938 -8527.0,0.14642328638155525 -8528.0,0.14637272230269158 -8529.0,0.1463221756850264 -8530.0,0.14627164652252994 -8531.0,0.14622113480917437 -8532.0,0.14617064053893405 -8533.0,0.14612016370578534 -8534.0,0.14606970430370675 -8535.0,0.1460192623266789 -8536.0,0.1459688377686843 -8537.0,0.14591843062370777 -8538.0,0.14586804088573607 -8539.0,0.1458176685487581 -8540.0,0.14576731360676473 -8541.0,0.1457169760537491 -8542.0,0.1456666558837062 -8543.0,0.14561635309063328 -8544.0,0.1455660676685295 -8545.0,0.14551579961139627 -8546.0,0.14546554891323688 -8547.0,0.14541531556805687 -8548.0,0.14536509956986374 -8549.0,0.14531490091266708 -8550.0,0.14526471959047854 -8551.0,0.1452145555973119 -8552.0,0.1451644089271829 -8553.0,0.14511427957410947 -8554.0,0.14506416753211152 -8555.0,0.14501407279521103 -8556.0,0.14496399535743212 -8557.0,0.14491393521280083 -8558.0,0.1448638923553454 -8559.0,0.1448138667790961 -8560.0,0.14476385847808523 -8561.0,0.14471386744634712 -8562.0,0.14466389367791826 -8563.0,0.14461393716683713 -8564.0,0.14456399790714428 -8565.0,0.1445140758928823 -8566.0,0.14446417111809587 -8567.0,0.14441428357683173 -8568.0,0.14436441326313865 -8569.0,0.14431456017106745 -8570.0,0.14426472429467108 -8571.0,0.14421490562800438 -8572.0,0.1441651041651244 -8573.0,0.14411531990009022 -8574.0,0.1440655528269629 -8575.0,0.14401580293980562 -8576.0,0.14396607023268354 -8577.0,0.143916354699664 -8578.0,0.14386665633481616 -8579.0,0.14381697513221148 -8580.0,0.14376731108592328 -8581.0,0.14371766419002707 -8582.0,0.1436680344386003 -8583.0,0.14361842182572251 -8584.0,0.14356882634547524 -8585.0,0.1435192479919422 -8586.0,0.14346968675920896 -8587.0,0.1434201426413633 -8588.0,0.1433706156324949 -8589.0,0.1433211057266956 -8590.0,0.1432716129180592 -8591.0,0.14322213720068155 -8592.0,0.14317267856866067 -8593.0,0.14312323701609636 -8594.0,0.1430738125370907 -8595.0,0.14302440512574766 -8596.0,0.14297501477617333 -8597.0,0.14292564148247575 -8598.0,0.14287628523876514 -8599.0,0.14282694603915355 -8600.0,0.14277762387775525 -8601.0,0.1427283187486864 -8602.0,0.14267903064606535 -8603.0,0.1426297595640123 -8604.0,0.14258050549664963 -8605.0,0.14253126843810165 -8606.0,0.14248204838249479 -8607.0,0.14243284532395736 -8608.0,0.1423836592566199 -8609.0,0.1423344901746148 -8610.0,0.14228533807207655 -8611.0,0.14223620294314174 -8612.0,0.1421870847819488 -8613.0,0.14213798358263838 -8614.0,0.14208889933935298 -8615.0,0.1420398320462373 -8616.0,0.14199078169743787 -8617.0,0.14194174828710346 -8618.0,0.1418927318093846 -8619.0,0.14184373225843414 -8620.0,0.14179474962840666 -8621.0,0.14174578391345896 -8622.0,0.14169683510774975 -8623.0,0.14164790320543982 -8624.0,0.14159898820069192 -8625.0,0.14155009008767092 -8626.0,0.14150120886054351 -8627.0,0.14145234451347866 -8628.0,0.14140349704064706 -8629.0,0.14135466643622166 -8630.0,0.14130585269437734 -8631.0,0.14125705580929088 -8632.0,0.14120827577514128 -8633.0,0.14115951258610934 -8634.0,0.14111076623637805 -8635.0,0.14106203672013226 -8636.0,0.14101332403155897 -8637.0,0.140964628164847 -8638.0,0.1409159491141874 -8639.0,0.14086728687377303 -8640.0,0.1408186414377989 -8641.0,0.14077001280046192 -8642.0,0.14072140095596108 -8643.0,0.1406728058984973 -8644.0,0.1406242276222736 -8645.0,0.1405756661214949 -8646.0,0.14052712139036821 -8647.0,0.14047859342310245 -8648.0,0.1404300822139086 -8649.0,0.14038158775699966 -8650.0,0.14033311004659055 -8651.0,0.14028464907689828 -8652.0,0.14023620484214178 -8653.0,0.140187777336542 -8654.0,0.14013936655432188 -8655.0,0.14009097248970645 -8656.0,0.14004259513692252 -8657.0,0.13999423449019913 -8658.0,0.13994589054376716 -8659.0,0.13989756329185957 -8660.0,0.13984925272871118 -8661.0,0.139800958848559 -8662.0,0.13975268164564186 -8663.0,0.13970442111420067 -8664.0,0.13965617724847829 -8665.0,0.13960795004271956 -8666.0,0.13955973949117134 -8667.0,0.13951154558808246 -8668.0,0.13946336832770378 -8669.0,0.13941520770428803 -8670.0,0.13936706371209007 -8671.0,0.1393189363453666 -8672.0,0.13927082559837647 -8673.0,0.1392227314653803 -8674.0,0.13917465394064094 -8675.0,0.13912659301842298 -8676.0,0.1390785486929932 -8677.0,0.13903052095862015 -8678.0,0.13898250980957458 -8679.0,0.13893451524012904 -8680.0,0.13888653724455816 -8681.0,0.1388385758171385 -8682.0,0.1387906309521486 -8683.0,0.13874270264386904 -8684.0,0.13869479088658226 -8685.0,0.13864689567457278 -8686.0,0.138599017002127 -8687.0,0.13855115486353342 -8688.0,0.13850330925308238 -8689.0,0.13845548016506626 -8690.0,0.1384076675937794 -8691.0,0.13835987153351811 -8692.0,0.13831209197858066 -8693.0,0.13826432892326732 -8694.0,0.13821658236188025 -8695.0,0.13816885228872372 -8696.0,0.1381211386981038 -8697.0,0.13807344158432866 -8698.0,0.13802576094170835 -8699.0,0.13797809676455494 -8700.0,0.13793044904718244 -8701.0,0.1378828177839068 -8702.0,0.13783520296904597 -8703.0,0.13778760459691985 -8704.0,0.13774002266185031 -8705.0,0.13769245715816114 -8706.0,0.1376449080801782 -8707.0,0.13759737542222913 -8708.0,0.13754985917864374 -8709.0,0.13750235934375357 -8710.0,0.13745487591189234 -8711.0,0.13740740887739553 -8712.0,0.13735995823460076 -8713.0,0.13731252397784743 -8714.0,0.13726510610147707 -8715.0,0.13721770459983298 -8716.0,0.13717031946726058 -8717.0,0.13712295069810712 -8718.0,0.1370755982867219 -8719.0,0.13702826222745604 -8720.0,0.13698094251466278 -8721.0,0.13693363914269716 -8722.0,0.1368863521059163 -8723.0,0.13683908139867912 -8724.0,0.13679182701534665 -8725.0,0.13674458895028174 -8726.0,0.13669736719784922 -8727.0,0.13665016175241593 -8728.0,0.13660297260835055 -8729.0,0.13655579976002383 -8730.0,0.1365086432018083 -8731.0,0.1364615029280786 -8732.0,0.1364143789332112 -8733.0,0.1363672712115846 -8734.0,0.1363201797575791 -8735.0,0.13627310456557712 -8736.0,0.13622604562996288 -8737.0,0.13617900294512267 -8738.0,0.13613197650544454 -8739.0,0.13608496630531863 -8740.0,0.13603797233913695 -8741.0,0.13599099460129352 -8742.0,0.13594403308618414 -8743.0,0.1358970877882067 -8744.0,0.13585015870176098 -8745.0,0.13580324582124867 -8746.0,0.1357563491410734 -8747.0,0.1357094686556407 -8748.0,0.13566260435935817 -8749.0,0.13561575624663513 -8750.0,0.13556892431188303 -8751.0,0.13552210854951507 -8752.0,0.13547530895394658 -8753.0,0.1354285255195946 -8754.0,0.1353817582408783 -8755.0,0.13533500711221869 -8756.0,0.13528827212803857 -8757.0,0.1352415532827629 -8758.0,0.13519485057081845 -8759.0,0.13514816398663398 -8760.0,0.13510149352464 -8761.0,0.13505483917926914 -8762.0,0.13500820094495586 -8763.0,0.13496157881613655 -8764.0,0.13491497278724962 -8765.0,0.13486838285273517 -8766.0,0.13482180900703541 -8767.0,0.13477525124459444 -8768.0,0.13472870955985833 -8769.0,0.13468218394727485 -8770.0,0.1346356744012939 -8771.0,0.13458918091636723 -8772.0,0.13454270348694858 -8773.0,0.13449624210749342 -8774.0,0.13444979677245925 -8775.0,0.13440336747630552 -8776.0,0.13435695421349364 -8777.0,0.13431055697848668 -8778.0,0.13426417576574987 -8779.0,0.13421781056975024 -8780.0,0.1341714613849568 -8781.0,0.1341251282058405 -8782.0,0.13407881102687394 -8783.0,0.13403250984253195 -8784.0,0.1339862246472911 -8785.0,0.13393995543562998 -8786.0,0.1338937022020289 -8787.0,0.1338474649409702 -8788.0,0.13380124364693816 -8789.0,0.13375503831441896 -8790.0,0.1337088489379005 -8791.0,0.1336626755118728 -8792.0,0.13361651803082772 -8793.0,0.13357037648925907 -8794.0,0.13352425088166237 -8795.0,0.1334781412025352 -8796.0,0.13343204744637707 -8797.0,0.13338596960768936 -8798.0,0.1333399076809752 -8799.0,0.1332938616607398 -8800.0,0.13324783154149022 -8801.0,0.1332018173177354 -8802.0,0.1331558189839862 -8803.0,0.13310983653475525 -8804.0,0.1330638699645573 -8805.0,0.1330179192679088 -8806.0,0.13297198443932823 -8807.0,0.13292606547333582 -8808.0,0.1328801623644538 -8809.0,0.1328342751072063 -8810.0,0.13278840369611933 -8811.0,0.13274254812572064 -8812.0,0.1326967083905401 -8813.0,0.1326508844851093 -8814.0,0.13260507640396194 -8815.0,0.1325592841416332 -8816.0,0.13251350769266057 -8817.0,0.13246774705158318 -8818.0,0.13242200221294217 -8819.0,0.13237627317128053 -8820.0,0.13233055992114304 -8821.0,0.1322848624570765 -8822.0,0.13223918077362948 -8823.0,0.1321935148653526 -8824.0,0.13214786472679813 -8825.0,0.13210223035252036 -8826.0,0.1320566117370755 -8827.0,0.1320110088750216 -8828.0,0.13196542176091847 -8829.0,0.13191985038932794 -8830.0,0.1318742947548137 -8831.0,0.13182875485194134 -8832.0,0.13178323067527817 -8833.0,0.13173772221939353 -8834.0,0.1316922294788586 -8835.0,0.13164675244824653 -8836.0,0.1316012911221321 -8837.0,0.1315558454950921 -8838.0,0.13151041556170529 -8839.0,0.13146500131655217 -8840.0,0.1314196027542152 -8841.0,0.13137421986927855 -8842.0,0.13132885265632843 -8843.0,0.1312835011099529 -8844.0,0.13123816522474185 -8845.0,0.13119284499528697 -8846.0,0.13114754041618193 -8847.0,0.13110225148202223 -8848.0,0.13105697818740525 -8849.0,0.13101172052693016 -8850.0,0.13096647849519807 -8851.0,0.13092125208681193 -8852.0,0.13087604129637664 -8853.0,0.13083084611849877 -8854.0,0.1307856665477869 -8855.0,0.13074050257885145 -8856.0,0.13069535420630468 -8857.0,0.1306502214247608 -8858.0,0.13060510422883564 -8859.0,0.13056000261314715 -8860.0,0.130514916572315 -8861.0,0.13046984610096085 -8862.0,0.13042479119370798 -8863.0,0.13037975184518172 -8864.0,0.13033472805000923 -8865.0,0.1302897198028195 -8866.0,0.13024472709824333 -8867.0,0.13019974993091343 -8868.0,0.1301547882954644 -8869.0,0.13010984218653265 -8870.0,0.13006491159875633 -8871.0,0.13001999652677562 -8872.0,0.1299750969652325 -8873.0,0.1299302129087708 -8874.0,0.12988534435203605 -8875.0,0.1298404912896759 -8876.0,0.1297956537163396 -8877.0,0.12975083162667844 -8878.0,0.12970602501534548 -8879.0,0.12966123387699552 -8880.0,0.12961645820628537 -8881.0,0.12957169799787358 -8882.0,0.1295269532464207 -8883.0,0.12948222394658884 -8884.0,0.1294375100930422 -8885.0,0.12939281168044675 -8886.0,0.12934812870347034 -8887.0,0.1293034611567825 -8888.0,0.12925880903505482 -8889.0,0.12921417233296056 -8890.0,0.12916955104517497 -8891.0,0.12912494516637496 -8892.0,0.1290803546912394 -8893.0,0.129035779614449 -8894.0,0.12899121993068627 -8895.0,0.1289466756346356 -8896.0,0.1289021467209831 -8897.0,0.12885763318441681 -8898.0,0.12881313501962663 -8899.0,0.12876865222130432 -8900.0,0.12872418478414324 -8901.0,0.12867973270283883 -8902.0,0.1286352959720883 -8903.0,0.12859087458659071 -8904.0,0.12854646854104682 -8905.0,0.12850207783015932 -8906.0,0.12845770244863278 -8907.0,0.12841334239117358 -8908.0,0.12836899765248974 -8909.0,0.12832466822729136 -8910.0,0.12828035411029023 -8911.0,0.12823605529620005 -8912.0,0.12819177177973623 -8913.0,0.12814750355561608 -8914.0,0.12810325061855876 -8915.0,0.12805901296328517 -8916.0,0.12801479058451817 -8917.0,0.12797058347698223 -8918.0,0.12792639163540384 -8919.0,0.1278822150545112 -8920.0,0.12783805372903445 -8921.0,0.12779390765370532 -8922.0,0.1277497768232576 -8923.0,0.12770566123242683 -8924.0,0.12766156087595032 -8925.0,0.12761747574856713 -8926.0,0.1275734058450183 -8927.0,0.12752935116004663 -8928.0,0.12748531168839675 -8929.0,0.12744128742481495 -8930.0,0.12739727836404954 -8931.0,0.1273532845008505 -8932.0,0.12730930582996977 -8933.0,0.12726534234616102 -8934.0,0.12722139404417962 -8935.0,0.1271774609187829 -8936.0,0.12713354296473 -8937.0,0.12708964017678184 -8938.0,0.12704575254970105 -8939.0,0.12700188007825222 -8940.0,0.12695802275720167 -8941.0,0.12691418058131756 -8942.0,0.1268703535453698 -8943.0,0.12682654164413015 -8944.0,0.1267827448723722 -8945.0,0.12673896322487135 -8946.0,0.12669519669640467 -8947.0,0.12665144528175115 -8948.0,0.12660770897569162 -8949.0,0.12656398777300867 -8950.0,0.1265202816684866 -8951.0,0.12647659065691164 -8952.0,0.12643291473307175 -8953.0,0.12638925389175673 -8954.0,0.1263456081277582 -8955.0,0.12630197743586943 -8956.0,0.12625836181088568 -8957.0,0.1262147612476039 -8958.0,0.1261711757408229 -8959.0,0.12612760528534317 -8960.0,0.1260840498759671 -8961.0,0.12604050950749887 -8962.0,0.12599698417474448 -8963.0,0.12595347387251157 -8964.0,0.1259099785956097 -8965.0,0.12586649833885025 -8966.0,0.12582303309704634 -8967.0,0.12577958286501284 -8968.0,0.12573614763756646 -8969.0,0.12569272740952572 -8970.0,0.12564932217571087 -8971.0,0.12560593193094408 -8972.0,0.1255625566700491 -8973.0,0.12551919638785158 -8974.0,0.125475851079179 -8975.0,0.1254325207388606 -8976.0,0.12538920536172732 -8977.0,0.125345904942612 -8978.0,0.1253026194763492 -8979.0,0.1252593489577753 -8980.0,0.1252160933817284 -8981.0,0.12517285274304843 -8982.0,0.12512962703657712 -8983.0,0.12508641625715802 -8984.0,0.12504322039963628 -8985.0,0.12500003945885899 -8986.0,0.124956873429675 -8987.0,0.12491372230693497 -8988.0,0.12487058608549116 -8989.0,0.12482746476019779 -8990.0,0.12478435832591082 -8991.0,0.12474126677748795 -8992.0,0.12469819010978873 -8993.0,0.12465512831767432 -8994.0,0.12461208139600782 -8995.0,0.12456904933965404 -8996.0,0.12452603214347964 -8997.0,0.12448302980235285 -8998.0,0.12444004231114386 -8999.0,0.1243970696647246 -9000.0,0.12435411185796877 -9001.0,0.12431116888575172 -9002.0,0.12426824074295074 -9003.0,0.1242253274244448 -9004.0,0.12418242892511469 -9005.0,0.12413954523984286 -9006.0,0.12409667636351362 -9007.0,0.12405382229101306 -9008.0,0.12401098301722897 -9009.0,0.12396815853705101 -9010.0,0.12392534884537042 -9011.0,0.12388255393708035 -9012.0,0.12383977380707571 -9013.0,0.12379700845025318 -9014.0,0.12375425786151105 -9015.0,0.12371152203574956 -9016.0,0.12366880096787063 -9017.0,0.12362609465277799 -9018.0,0.123583403085377 -9019.0,0.1235407262605749 -9020.0,0.12349806417328067 -9021.0,0.12345541681840509 -9022.0,0.12341278419086053 -9023.0,0.12337016628556129 -9024.0,0.12332756309742333 -9025.0,0.1232849746213645 -9026.0,0.12324240085230416 -9027.0,0.12319984178516366 -9028.0,0.12315729741486597 -9029.0,0.12311476773633591 -9030.0,0.12307225274450001 -9031.0,0.12302975243428645 -9032.0,0.1229872668006253 -9033.0,0.12294479583844835 -9034.0,0.12290233954268916 -9035.0,0.12285989790828289 -9036.0,0.12281747093016665 -9037.0,0.12277505860327917 -9038.0,0.12273266092256106 -9039.0,0.12269027788295445 -9040.0,0.12264790947940342 -9041.0,0.12260555570685372 -9042.0,0.12256321656025292 -9043.0,0.12252089203455015 -9044.0,0.12247858212469645 -9045.0,0.12243628682564457 -9046.0,0.12239400613234899 -9047.0,0.12235174003976598 -9048.0,0.1223094885428534 -9049.0,0.122267251636571 -9050.0,0.12222502931588022 -9051.0,0.12218282157574432 -9052.0,0.1221406284111281 -9053.0,0.1220984498169983 -9054.0,0.12205628578832328 -9055.0,0.12201413632007327 -9056.0,0.12197200140722002 -9057.0,0.12192988104473719 -9058.0,0.12188777522760015 -9059.0,0.12184568395078603 -9060.0,0.12180360720927352 -9061.0,0.12176154499804324 -9062.0,0.12171949731207748 -9063.0,0.12167746414636031 -9064.0,0.12163544549587736 -9065.0,0.12159344135561619 -9066.0,0.12155145172056599 -9067.0,0.12150947658571769 -9068.0,0.12146751594606406 -9069.0,0.12142556979659935 -9070.0,0.12138363813231977 -9071.0,0.12134172094822317 -9072.0,0.1212998182393092 -9073.0,0.12125793000057905 -9074.0,0.12121605622703581 -9075.0,0.12117419691368425 -9076.0,0.12113235205553093 -9077.0,0.12109052164758394 -9078.0,0.12104870568485326 -9079.0,0.12100690416235056 -9080.0,0.12096511707508929 -9081.0,0.12092334441808443 -9082.0,0.12088158618635288 -9083.0,0.12083984237491316 -9084.0,0.12079811297878555 -9085.0,0.1207563979929921 -9086.0,0.12071469741255642 -9087.0,0.12067301123250394 -9088.0,0.12063133944786185 -9089.0,0.12058968205365905 -9090.0,0.120548039044926 -9091.0,0.12050641041669505 -9092.0,0.12046479616400022 -9093.0,0.12042319628187727 -9094.0,0.12038161076536354 -9095.0,0.12034003960949824 -9096.0,0.12029848280932222 -9097.0,0.1202569403598781 -9098.0,0.1202154122562101 -9099.0,0.12017389849336425 -9100.0,0.12013239906638826 -9101.0,0.1200909139703316 -9102.0,0.12004944320024531 -9103.0,0.12000798675118228 -9104.0,0.11996654461819704 -9105.0,0.11992511679634586 -9106.0,0.11988370328068676 -9107.0,0.11984230406627928 -9108.0,0.11980091914818489 -9109.0,0.11975954852146663 -9110.0,0.11971819218118936 -9111.0,0.11967685012241945 -9112.0,0.11963552234022516 -9113.0,0.11959420882967639 -9114.0,0.11955290958584479 -9115.0,0.11951162460380355 -9116.0,0.11947035387862771 -9117.0,0.11942909740539401 -9118.0,0.11938785517918088 -9119.0,0.11934662719506832 -9120.0,0.11930541344813819 -9121.0,0.11926421393347399 -9122.0,0.11922302864616093 -9123.0,0.11918185758128592 -9124.0,0.1191407007339375 -9125.0,0.11909955809920596 -9126.0,0.11905842967218332 -9127.0,0.1190173154479633 -9128.0,0.11897621542164116 -9129.0,0.11893512958831402 -9130.0,0.11889405794308067 -9131.0,0.11885300048104157 -9132.0,0.11881195719729877 -9133.0,0.11877092808695618 -9134.0,0.11872991314511931 -9135.0,0.11868891236689542 -9136.0,0.11864792574739334 -9137.0,0.1186069532817237 -9138.0,0.11856599496499878 -9139.0,0.11852505079233261 -9140.0,0.11848412075884074 -9141.0,0.11844320485964058 -9142.0,0.11840230308985113 -9143.0,0.11836141544459314 -9144.0,0.11832054191898905 -9145.0,0.11827968250816286 -9146.0,0.11823883720724036 -9147.0,0.11819800601134903 -9148.0,0.11815718891561804 -9149.0,0.11811638591517812 -9150.0,0.1180755970051618 -9151.0,0.1180348221807033 -9152.0,0.1179940614369385 -9153.0,0.11795331476900484 -9154.0,0.11791258217204158 -9155.0,0.11787186364118965 -9156.0,0.11783115917159166 -9157.0,0.11779046875839176 -9158.0,0.11774979239673594 -9159.0,0.11770913008177179 -9160.0,0.11766848180864861 -9161.0,0.1176278475725174 -9162.0,0.1175872273685307 -9163.0,0.11754662119184284 -9164.0,0.11750602903760983 -9165.0,0.11746545090098935 -9166.0,0.11742488677714064 -9167.0,0.11738433666122473 -9168.0,0.1173438005484043 -9169.0,0.11730327843384375 -9170.0,0.11726277031270896 -9171.0,0.11722227618016766 -9172.0,0.1171817960313892 -9173.0,0.11714132986154466 -9174.0,0.1171008776658066 -9175.0,0.11706043943934942 -9176.0,0.11702001517734914 -9177.0,0.11697960487498349 -9178.0,0.11693920852743173 -9179.0,0.11689882612987489 -9180.0,0.11685845767749566 -9181.0,0.11681810316547837 -9182.0,0.11677776258900908 -9183.0,0.11673743594327536 -9184.0,0.11669712322346658 -9185.0,0.11665682442477372 -9186.0,0.11661653954238949 -9187.0,0.11657626857150807 -9188.0,0.1165360115073255 -9189.0,0.1164957683450394 -9190.0,0.11645553907984911 -9191.0,0.11641532370695547 -9192.0,0.11637512222156111 -9193.0,0.11633493461887032 -9194.0,0.11629476089408904 -9195.0,0.11625460104242473 -9196.0,0.11621445505908669 -9197.0,0.11617432293928577 -9198.0,0.11613420467823451 -9199.0,0.11609410027114715 -9200.0,0.11605400971323943 -9201.0,0.11601393299972887 -9202.0,0.11597387012583461 -9203.0,0.11593382108677752 -9204.0,0.11589378587777992 -9205.0,0.11585376449406595 -9206.0,0.11581375693086136 -9207.0,0.1157737631833936 -9208.0,0.11573378324689158 -9209.0,0.11569381711658605 -9210.0,0.11565386478770934 -9211.0,0.11561392625549548 -9212.0,0.11557400151517999 -9213.0,0.11553409056200019 -9214.0,0.115494193391195 -9215.0,0.11545430999800503 -9216.0,0.11541444037767237 -9217.0,0.11537458452544093 -9218.0,0.1153347424365562 -9219.0,0.11529491410626527 -9220.0,0.11525509952981701 -9221.0,0.11521529870246171 -9222.0,0.11517551161945147 -9223.0,0.11513573827603998 -9224.0,0.11509597866748263 -9225.0,0.11505623278903628 -9226.0,0.11501650063595958 -9227.0,0.1149767822035128 -9228.0,0.11493707748695785 -9229.0,0.11489738648155814 -9230.0,0.11485770918257888 -9231.0,0.11481804558528688 -9232.0,0.11477839568495057 -9233.0,0.11473875947683995 -9234.0,0.11469913695622672 -9235.0,0.11465952811838423 -9236.0,0.11461993295858741 -9237.0,0.11458035147211293 -9238.0,0.11454078365423888 -9239.0,0.11450122950024516 -9240.0,0.11446168900541326 -9241.0,0.11442216216502633 -9242.0,0.114382648974369 -9243.0,0.1143431494287277 -9244.0,0.11430366352339041 -9245.0,0.1142641912536468 -9246.0,0.11422473261478802 -9247.0,0.114185287602107 -9248.0,0.11414585621089822 -9249.0,0.11410643843645786 -9250.0,0.11406703427408356 -9251.0,0.11402764371907476 -9252.0,0.11398826676673245 -9253.0,0.11394890341235928 -9254.0,0.11390955365125939 -9255.0,0.1138702174787387 -9256.0,0.1138308948901047 -9257.0,0.11379158588066647 -9258.0,0.11375229044573482 -9259.0,0.11371300858062194 -9260.0,0.11367374028064187 -9261.0,0.11363448554111018 -9262.0,0.11359524435734412 -9263.0,0.11355601672466241 -9264.0,0.11351680263838552 -9265.0,0.11347760209383549 -9266.0,0.11343841508633604 -9267.0,0.11339924161121234 -9268.0,0.11336008166379134 -9269.0,0.11332093523940154 -9270.0,0.1132818023333731 -9271.0,0.11324268294103765 -9272.0,0.11320357705772859 -9273.0,0.11316448467878086 -9274.0,0.11312540579953104 -9275.0,0.11308634041531733 -9276.0,0.11304728852147945 -9277.0,0.11300825011335883 -9278.0,0.11296922518629846 -9279.0,0.112930213735643 -9280.0,0.11289121575673859 -9281.0,0.1128522312449331 -9282.0,0.11281326019557594 -9283.0,0.11277430260401822 -9284.0,0.11273535846561247 -9285.0,0.112696427775713 -9286.0,0.11265751052967565 -9287.0,0.11261860672285794 -9288.0,0.11257971635061882 -9289.0,0.11254083940831901 -9290.0,0.11250197589132077 -9291.0,0.112463125794988 -9292.0,0.1124242891146861 -9293.0,0.11238546584578216 -9294.0,0.11234665598364486 -9295.0,0.11230785952364446 -9296.0,0.11226907646115288 -9297.0,0.11223030679154347 -9298.0,0.11219155051019136 -9299.0,0.1121528076124732 -9300.0,0.1121140780937673 -9301.0,0.1120753619494534 -9302.0,0.11203665917491301 -9303.0,0.11199796976552916 -9304.0,0.11195929371668653 -9305.0,0.11192063102377127 -9306.0,0.11188198168217124 -9307.0,0.11184334568727584 -9308.0,0.11180472303447617 -9309.0,0.11176611371916469 -9310.0,0.11172751773673566 -9311.0,0.11168893508258483 -9312.0,0.11165036575210963 -9313.0,0.111611809740709 -9314.0,0.11157326704378345 -9315.0,0.11153473765673513 -9316.0,0.11149622157496777 -9317.0,0.11145771879388675 -9318.0,0.11141922930889886 -9319.0,0.11138075311541262 -9320.0,0.11134229020883812 -9321.0,0.11130384058458706 -9322.0,0.11126540423807257 -9323.0,0.11122698116470954 -9324.0,0.11118857135991438 -9325.0,0.11115017481910511 -9326.0,0.1111117915377012 -9327.0,0.11107342151112388 -9328.0,0.11103506473479588 -9329.0,0.11099672120414156 -9330.0,0.11095839091458672 -9331.0,0.11092007386155886 -9332.0,0.11088177004048708 -9333.0,0.11084347944680198 -9334.0,0.11080520207593583 -9335.0,0.11076693792332232 -9336.0,0.11072868698439688 -9337.0,0.11069044925459642 -9338.0,0.11065222472935952 -9339.0,0.1106140134041262 -9340.0,0.11057581527433816 -9341.0,0.11053763033543862 -9342.0,0.11049945858287247 -9343.0,0.11046130001208598 -9344.0,0.11042315461852718 -9345.0,0.1103850223976456 -9346.0,0.11034690334489239 -9347.0,0.11030879745572011 -9348.0,0.11027070472558308 -9349.0,0.1102326251499371 -9350.0,0.11019455872423956 -9351.0,0.11015650544394946 -9352.0,0.11011846530452722 -9353.0,0.11008043830143498 -9354.0,0.1100424244301364 -9355.0,0.11000442368609675 -9356.0,0.10996643606478271 -9357.0,0.10992846156166271 -9358.0,0.10989050017220663 -9359.0,0.10985255189188603 -9360.0,0.10981461671617385 -9361.0,0.10977669464054475 -9362.0,0.1097387856604749 -9363.0,0.10970088977144209 -9364.0,0.10966300696892552 -9365.0,0.10962513724840608 -9366.0,0.10958728060536621 -9367.0,0.10954943703528992 -9368.0,0.10951160653366267 -9369.0,0.1094737890959716 -9370.0,0.10943598471770534 -9371.0,0.10939819339435412 -9372.0,0.10936041512140979 -9373.0,0.10932264989436553 -9374.0,0.1092848977087163 -9375.0,0.10924715855995853 -9376.0,0.10920943244359028 -9377.0,0.10917171935511098 -9378.0,0.1091340192900218 -9379.0,0.1090963322438254 -9380.0,0.109058658212026 -9381.0,0.10902099719012931 -9382.0,0.10898334917364268 -9383.0,0.10894571415807495 -9384.0,0.10890809213893664 -9385.0,0.10887048311173957 -9386.0,0.10883288707199733 -9387.0,0.10879530401522498 -9388.0,0.10875773393693915 -9389.0,0.10872017683265801 -9390.0,0.10868263269790122 -9391.0,0.10864510152819008 -9392.0,0.10860758331904738 -9393.0,0.10857007806599751 -9394.0,0.1085325857645663 -9395.0,0.10849510641028122 -9396.0,0.10845763999867127 -9397.0,0.108420186525267 -9398.0,0.10838274598560042 -9399.0,0.10834531837520518 -9400.0,0.10830790368961644 -9401.0,0.10827050192437096 -9402.0,0.10823311307500687 -9403.0,0.108195737137064 -9404.0,0.10815837410608369 -9405.0,0.10812102397760882 -9406.0,0.10808368674718373 -9407.0,0.1080463624103544 -9408.0,0.1080090509626683 -9409.0,0.10797175239967445 -9410.0,0.10793446671692346 -9411.0,0.1078971939099673 -9412.0,0.10785993397435967 -9413.0,0.10782268690565572 -9414.0,0.10778545269941218 -9415.0,0.10774823135118722 -9416.0,0.10771102285654063 -9417.0,0.1076738272110337 -9418.0,0.10763664441022933 -9419.0,0.10759947444969177 -9420.0,0.10756231732498697 -9421.0,0.10752517303168235 -9422.0,0.10748804156534693 -9423.0,0.10745092292155109 -9424.0,0.10741381709586688 -9425.0,0.10737672408386788 -9426.0,0.10733964388112913 -9427.0,0.10730257648322729 -9428.0,0.10726552188574041 -9429.0,0.10722848008424818 -9430.0,0.10719145107433178 -9431.0,0.10715443485157397 -9432.0,0.10711743141155891 -9433.0,0.10708044074987237 -9434.0,0.10704346286210166 -9435.0,0.10700649774383564 -9436.0,0.10696954539066451 -9437.0,0.10693260579818022 -9438.0,0.1068956789619761 -9439.0,0.10685876487764713 -9440.0,0.10682186354078961 -9441.0,0.10678497494700155 -9442.0,0.10674809909188239 -9443.0,0.10671123597103316 -9444.0,0.10667438558005626 -9445.0,0.10663754791455578 -9446.0,0.10660072297013723 -9447.0,0.10656391074240766 -9448.0,0.10652711122697571 -9449.0,0.10649032441945136 -9450.0,0.10645355031544625 -9451.0,0.1064167889105735 -9452.0,0.10638004020044779 -9453.0,0.10634330418068519 -9454.0,0.10630658084690339 -9455.0,0.10626987019472157 -9456.0,0.10623317221976046 -9457.0,0.10619648691764218 -9458.0,0.10615981428399046 -9459.0,0.10612315431443055 -9460.0,0.10608650700458921 -9461.0,0.1060498723500946 -9462.0,0.10601325034657652 -9463.0,0.10597664098966622 -9464.0,0.10594004427499648 -9465.0,0.10590346019820164 -9466.0,0.10586688875491736 -9467.0,0.10583032994078101 -9468.0,0.10579378375143138 -9469.0,0.10575725018250881 -9470.0,0.10572072922965503 -9471.0,0.10568422088851341 -9472.0,0.10564772515472876 -9473.0,0.10561124202394746 -9474.0,0.10557477149181724 -9475.0,0.10553831355398748 -9476.0,0.105501868206109 -9477.0,0.1054654354438342 -9478.0,0.10542901526281682 -9479.0,0.10539260765871225 -9480.0,0.10535621262717731 -9481.0,0.1053198301638704 -9482.0,0.10528346026445128 -9483.0,0.10524710292458128 -9484.0,0.10521075813992328 -9485.0,0.10517442590614161 -9486.0,0.10513810621890213 -9487.0,0.10510179907387208 -9488.0,0.10506550446672033 -9489.0,0.1050292223931172 -9490.0,0.10499295284873454 -9491.0,0.10495669582924556 -9492.0,0.10492045133032513 -9493.0,0.10488421934764953 -9494.0,0.10484799987689661 -9495.0,0.10481179291374554 -9496.0,0.10477559845387714 -9497.0,0.10473941649297369 -9498.0,0.10470324702671897 -9499.0,0.10466709005079816 -9500.0,0.10463094556089804 -9501.0,0.10459481355270682 -9502.0,0.10455869402191421 -9503.0,0.10452258696421149 -9504.0,0.10448649237529123 -9505.0,0.10445041025084767 -9506.0,0.10441434058657646 -9507.0,0.10437828337817481 -9508.0,0.10434223862134127 -9509.0,0.104306206311776 -9510.0,0.10427018644518063 -9511.0,0.10423417901725826 -9512.0,0.1041981840237134 -9513.0,0.10416220146025217 -9514.0,0.10412623132258207 -9515.0,0.1040902736064122 -9516.0,0.10405432830745297 -9517.0,0.10401839542141642 -9518.0,0.103982474944016 -9519.0,0.10394656687096666 -9520.0,0.10391067119798492 -9521.0,0.10387478792078852 -9522.0,0.10383891703509697 -9523.0,0.10380305853663108 -9524.0,0.10376721242111327 -9525.0,0.10373137868426724 -9526.0,0.10369555732181834 -9527.0,0.10365974832949337 -9528.0,0.1036239517030206 -9529.0,0.10358816743812967 -9530.0,0.1035523955305518 -9531.0,0.1035166359760197 -9532.0,0.10348088877026755 -9533.0,0.10344515390903086 -9534.0,0.10340943138804677 -9535.0,0.10337372120305387 -9536.0,0.10333802334979221 -9537.0,0.10330233782400323 -9538.0,0.10326666462142993 -9539.0,0.10323100373781678 -9540.0,0.10319535516890968 -9541.0,0.10315971891045607 -9542.0,0.1031240949582047 -9543.0,0.10308848330790595 -9544.0,0.1030528839553116 -9545.0,0.10301729689617498 -9546.0,0.10298172212625067 -9547.0,0.10294615964129496 -9548.0,0.10291060943706548 -9549.0,0.10287507150932139 -9550.0,0.10283954585382318 -9551.0,0.10280403246633298 -9552.0,0.10276853134261425 -9553.0,0.10273304247843204 -9554.0,0.1026975658695527 -9555.0,0.10266210151174417 -9556.0,0.1026266494007758 -9557.0,0.10259120953241842 -9558.0,0.10255578190244435 -9559.0,0.10252036650662726 -9560.0,0.10248496334074238 -9561.0,0.10244957240056636 -9562.0,0.1024141936818774 -9563.0,0.10237882718045496 -9564.0,0.10234347289208012 -9565.0,0.10230813081253538 -9566.0,0.10227280093760473 -9567.0,0.10223748326307348 -9568.0,0.10220217778472854 -9569.0,0.10216688449835822 -9570.0,0.10213160339975232 -9571.0,0.102096334484702 -9572.0,0.10206107774899996 -9573.0,0.10202583318844033 -9574.0,0.10199060079881875 -9575.0,0.10195538057593215 -9576.0,0.10192017251557905 -9577.0,0.10188497661355943 -9578.0,0.10184979286567461 -9579.0,0.10181462126772751 -9580.0,0.10177946181552233 -9581.0,0.10174431450486483 -9582.0,0.1017091793315622 -9583.0,0.10167405629142312 -9584.0,0.10163894538025757 -9585.0,0.10160384659387713 -9586.0,0.10156875992809475 -9587.0,0.1015336853787249 -9588.0,0.10149862294158335 -9589.0,0.10146357261248747 -9590.0,0.10142853438725599 -9591.0,0.10139350826170916 -9592.0,0.10135849423166854 -9593.0,0.10132349229295723 -9594.0,0.10128850244139978 -9595.0,0.10125352467282213 -9596.0,0.10121855898305175 -9597.0,0.1011836053679174 -9598.0,0.1011486638232494 -9599.0,0.10111373434487948 -9600.0,0.10107881692864087 -9601.0,0.10104391157036807 -9602.0,0.10100901826589719 -9603.0,0.10097413701106568 -9604.0,0.10093926780171254 -9605.0,0.10090441063367801 -9606.0,0.10086956550280395 -9607.0,0.10083473240493358 -9608.0,0.10079991133591161 -9609.0,0.10076510229158404 -9610.0,0.10073030526779848 -9611.0,0.10069552026040388 -9612.0,0.10066074726525068 -9613.0,0.10062598627819064 -9614.0,0.10059123729507706 -9615.0,0.10055650031176465 -9616.0,0.10052177532410952 -9617.0,0.10048706232796932 -9618.0,0.10045236131920292 -9619.0,0.10041767229367078 -9620.0,0.10038299524723478 -9621.0,0.10034833017575823 -9622.0,0.10031367707510574 -9623.0,0.10027903594114353 -9624.0,0.10024440676973911 -9625.0,0.10020978955676157 -9626.0,0.10017518429808121 -9627.0,0.10014059098956993 -9628.0,0.10010600962710099 -9629.0,0.10007144020654914 -9630.0,0.10003688272379041 -9631.0,0.10000233717470239 -9632.0,0.09996780355516403 -9633.0,0.09993328186105575 -9634.0,0.0998987720882594 -9635.0,0.0998642742326581 -9636.0,0.0998297882901366 -9637.0,0.09979531425658093 -9638.0,0.09976085212787866 -9639.0,0.09972640189991862 -9640.0,0.09969196356859118 -9641.0,0.09965753712978812 -9642.0,0.09962312257940263 -9643.0,0.09958871991332925 -9644.0,0.09955432912746402 -9645.0,0.09951995021770436 -9646.0,0.09948558317994918 -9647.0,0.09945122801009866 -9648.0,0.09941688470405449 -9649.0,0.0993825532577198 -9650.0,0.09934823366699912 -9651.0,0.0993139259277983 -9652.0,0.09927963003602469 -9653.0,0.09924534598758708 -9654.0,0.09921107377839561 -9655.0,0.09917681340436191 -9656.0,0.09914256486139887 -9657.0,0.09910832814542095 -9658.0,0.09907410325234393 -9659.0,0.0990398901780851 -9660.0,0.09900568891856298 -9661.0,0.09897149946969767 -9662.0,0.09893732182741062 -9663.0,0.09890315598762472 -9664.0,0.09886900194626415 -9665.0,0.09883485969925462 -9666.0,0.09880072924252323 -9667.0,0.09876661057199848 -9668.0,0.0987325036836102 -9669.0,0.0986984085732897 -9670.0,0.0986643252369697 -9671.0,0.09863025367058433 -9672.0,0.0985961938700691 -9673.0,0.09856214583136087 -9674.0,0.09852810955039798 -9675.0,0.09849408502312017 -9676.0,0.09846007224546859 -9677.0,0.09842607121338567 -9678.0,0.0983920819228154 -9679.0,0.09835810436970309 -9680.0,0.09832413854999551 -9681.0,0.0982901844596407 -9682.0,0.09825624209458825 -9683.0,0.09822231145078905 -9684.0,0.09818839252419548 -9685.0,0.09815448531076117 -9686.0,0.09812058980644127 -9687.0,0.09808670600719231 -9688.0,0.09805283390897225 -9689.0,0.09801897350774029 -9690.0,0.09798512479945717 -9691.0,0.09795128778008501 -9692.0,0.09791746244558729 -9693.0,0.09788364879192893 -9694.0,0.09784984681507612 -9695.0,0.09781605651099659 -9696.0,0.09778227787565938 -9697.0,0.097748510905035 -9698.0,0.09771475559509522 -9699.0,0.09768101194181332 -9700.0,0.09764727994116391 -9701.0,0.09761355958912306 -9702.0,0.0975798508816681 -9703.0,0.09754615381477787 -9704.0,0.09751246838443253 -9705.0,0.09747879458661372 -9706.0,0.09744513241730432 -9707.0,0.09741148187248871 -9708.0,0.09737784294815263 -9709.0,0.0973442156402832 -9710.0,0.09731059994486896 -9711.0,0.09727699585789974 -9712.0,0.09724340337536684 -9713.0,0.09720982249326293 -9714.0,0.0971762532075821 -9715.0,0.09714269551431969 -9716.0,0.09710914940947256 -9717.0,0.09707561488903889 -9718.0,0.09704209194901832 -9719.0,0.0970085805854117 -9720.0,0.09697508079422143 -9721.0,0.09694159257145121 -9722.0,0.0969081159131062 -9723.0,0.0968746508151928 -9724.0,0.09684119727371888 -9725.0,0.09680775528469371 -9726.0,0.09677432484412792 -9727.0,0.09674090594803342 -9728.0,0.09670749859242364 -9729.0,0.09667410277331331 -9730.0,0.09664071848671857 -9731.0,0.09660734572865694 -9732.0,0.09657398449514722 -9733.0,0.0965406347822097 -9734.0,0.09650729658586599 -9735.0,0.09647396990213915 -9736.0,0.09644065472705345 -9737.0,0.09640735105663467 -9738.0,0.09637405888690995 -9739.0,0.0963407782139078 -9740.0,0.09630750903365799 -9741.0,0.0962742513421918 -9742.0,0.09624100513554182 -9743.0,0.09620777040974209 -9744.0,0.09617454716082782 -9745.0,0.0961413353848358 -9746.0,0.0961081350778041 -9747.0,0.09607494623577215 -9748.0,0.0960417688547808 -9749.0,0.09600860293087218 -9750.0,0.09597544846008985 -9751.0,0.09594230543847873 -9752.0,0.09590917386208515 -9753.0,0.09587605372695666 -9754.0,0.09584294502914233 -9755.0,0.09580984776469251 -9756.0,0.09577676192965899 -9757.0,0.09574368752009478 -9758.0,0.0957106245320544 -9759.0,0.09567757296159367 -9760.0,0.09564453280476981 -9761.0,0.09561150405764131 -9762.0,0.0955784867162681 -9763.0,0.09554548077671146 -9764.0,0.09551248623503407 -9765.0,0.09547950308729983 -9766.0,0.09544653132957413 -9767.0,0.0954135709579237 -9768.0,0.09538062196841658 -9769.0,0.09534768435712226 -9770.0,0.09531475812011143 -9771.0,0.09528184325345627 -9772.0,0.09524893975323029 -9773.0,0.09521604761550835 -9774.0,0.09518316683636661 -9775.0,0.09515029741188266 -9776.0,0.09511743933813543 -9777.0,0.09508459261120521 -9778.0,0.09505175722717356 -9779.0,0.0950189331821235 -9780.0,0.09498612047213933 -9781.0,0.09495331909330681 -9782.0,0.0949205290417129 -9783.0,0.09488775031344598 -9784.0,0.09485498290459583 -9785.0,0.09482222681125352 -9786.0,0.09478948202951154 -9787.0,0.09475674855546357 -9788.0,0.0947240263852048 -9789.0,0.09469131551483172 -9790.0,0.09465861594044218 -9791.0,0.09462592765813531 -9792.0,0.09459325066401167 -9793.0,0.0945605849541731 -9794.0,0.0945279305247229 -9795.0,0.09449528737176553 -9796.0,0.09446265549140695 -9797.0,0.0944300348797544 -9798.0,0.09439742553291655 -9799.0,0.09436482744700324 -9800.0,0.09433224061812578 -9801.0,0.09429966504239684 -9802.0,0.0942671007159304 -9803.0,0.09423454763484171 -9804.0,0.09420200579524746 -9805.0,0.09416947519326563 -9806.0,0.09413695582501558 -9807.0,0.094104447686618 -9808.0,0.09407195077419486 -9809.0,0.09403946508386954 -9810.0,0.09400699061176673 -9811.0,0.0939745273540125 -9812.0,0.09394207530673414 -9813.0,0.0939096344660604 -9814.0,0.09387720482812134 -9815.0,0.09384478638904836 -9816.0,0.0938123791449741 -9817.0,0.09377998309203266 -9818.0,0.09374759822635942 -9819.0,0.09371522454409113 -9820.0,0.09368286204136579 -9821.0,0.09365051071432283 -9822.0,0.09361817055910295 -9823.0,0.09358584157184822 -9824.0,0.09355352374870206 -9825.0,0.09352121708580913 -9826.0,0.09348892157931549 -9827.0,0.09345663722536852 -9828.0,0.09342436402011702 -9829.0,0.0933921019597109 -9830.0,0.0933598510403016 -9831.0,0.09332761125804181 -9832.0,0.0932953826090856 -9833.0,0.09326316508958825 -9834.0,0.09323095869570648 -9835.0,0.0931987634235983 -9836.0,0.09316657926942311 -9837.0,0.09313440622934147 -9838.0,0.09310224429951541 -9839.0,0.09307009347610826 -9840.0,0.0930379537552847 -9841.0,0.09300582513321062 -9842.0,0.09297370760605334 -9843.0,0.09294160116998146 -9844.0,0.09290950582116494 -9845.0,0.09287742155577508 -9846.0,0.09284534836998437 -9847.0,0.09281328625996675 -9848.0,0.09278123522189745 -9849.0,0.09274919525195305 -9850.0,0.09271716634631134 -9851.0,0.09268514850115155 -9852.0,0.09265314171265417 -9853.0,0.09262114597700108 -9854.0,0.09258916129037532 -9855.0,0.09255718764896141 -9856.0,0.09252522504894513 -9857.0,0.09249327348651361 -9858.0,0.09246133295785516 -9859.0,0.09242940345915958 -9860.0,0.09239748498661789 -9861.0,0.09236557753642247 -9862.0,0.09233368110476702 -9863.0,0.09230179568784644 -9864.0,0.0922699212818571 -9865.0,0.09223805788299658 -9866.0,0.09220620548746387 -9867.0,0.09217436409145914 -9868.0,0.09214253369118397 -9869.0,0.09211071428284122 -9870.0,0.09207890586263512 -9871.0,0.09204710842677108 -9872.0,0.09201532197145591 -9873.0,0.09198354649289775 -9874.0,0.09195178198730604 -9875.0,0.09192002845089144 -9876.0,0.091888285879866 -9877.0,0.09185655427044309 -9878.0,0.09182483361883738 -9879.0,0.09179312392126476 -9880.0,0.09176142517394253 -9881.0,0.09172973737308926 -9882.0,0.09169806051492482 -9883.0,0.09166639459567046 -9884.0,0.09163473961154854 -9885.0,0.09160309555878293 -9886.0,0.09157146243359872 -9887.0,0.09153984023222232 -9888.0,0.09150822895088138 -9889.0,0.09147662858580495 -9890.0,0.09144503913322331 -9891.0,0.09141346058936813 -9892.0,0.09138189295047223 -9893.0,0.09135033621276986 -9894.0,0.09131879037249654 -9895.0,0.09128725542588911 -9896.0,0.09125573136918562 -9897.0,0.0912242181986255 -9898.0,0.09119271591044946 -9899.0,0.09116122450089952 -9900.0,0.091129743966219 -9901.0,0.09109827430265247 -9902.0,0.09106681550644581 -9903.0,0.09103536757384625 -9904.0,0.09100393050110231 -9905.0,0.0909725042844637 -9906.0,0.09094108892018155 -9907.0,0.09090968440450822 -9908.0,0.09087829073369742 -9909.0,0.09084690790400406 -9910.0,0.0908155359116844 -9911.0,0.09078417475299601 -9912.0,0.09075282442419778 -9913.0,0.09072148492154974 -9914.0,0.0906901562413134 -9915.0,0.09065883837975142 -9916.0,0.09062753133312788 -9917.0,0.090596235097708 -9918.0,0.0905649496697584 -9919.0,0.09053367504554695 -9920.0,0.09050241122134282 -9921.0,0.09047115819341653 -9922.0,0.09043991595803968 -9923.0,0.09040868451148541 -9924.0,0.09037746385002798 -9925.0,0.09034625396994307 -9926.0,0.09031505486750747 -9927.0,0.0902838665389994 -9928.0,0.09025268898069833 -9929.0,0.090221522188885 -9930.0,0.09019036615984143 -9931.0,0.09015922088985091 -9932.0,0.09012808637519808 -9933.0,0.09009696261216882 -9934.0,0.09006584959705025 -9935.0,0.09003474732613083 -9936.0,0.0900036557957003 -9937.0,0.08997257500204965 -9938.0,0.08994150494147123 -9939.0,0.0899104456102585 -9940.0,0.08987939700470637 -9941.0,0.08984835912111097 -9942.0,0.08981733195576974 -9943.0,0.08978631550498127 -9944.0,0.0897553097650456 -9945.0,0.08972431473226393 -9946.0,0.08969333040293885 -9947.0,0.08966235677337406 -9948.0,0.08963139383987467 -9949.0,0.08960044159874704 -9950.0,0.08956950004629884 -9951.0,0.08953856917883884 -9952.0,0.08950764899267732 -9953.0,0.08947673948412568 -9954.0,0.0894458406494967 -9955.0,0.0894149524851043 -9956.0,0.08938407498726375 -9957.0,0.08935320815229164 -9958.0,0.08932235197650576 -9959.0,0.08929150645622522 -9960.0,0.08926067158777032 -9961.0,0.0892298473674627 -9962.0,0.08919903379162528 -9963.0,0.08916823085658224 -9964.0,0.08913743855865894 -9965.0,0.08910665689418214 -9966.0,0.0890758858594798 -9967.0,0.08904512545088121 -9968.0,0.08901437566471677 -9969.0,0.08898363649731833 -9970.0,0.08895290794501891 -9971.0,0.08892219000415286 -9972.0,0.08889148267105568 -9973.0,0.08886078594206424 -9974.0,0.08883009981351667 -9975.0,0.08879942428175229 -9976.0,0.08876875934311182 -9977.0,0.08873810499393706 -9978.0,0.08870746123057119 -9979.0,0.08867682804935866 -9980.0,0.08864620544664518 -9981.0,0.08861559341877763 -9982.0,0.08858499196210425 -9983.0,0.08855440107297449 -9984.0,0.08852382074773915 -9985.0,0.08849325098275013 -9986.0,0.08846269177436072 -9987.0,0.08843214311892543 -9988.0,0.08840160501280006 -9989.0,0.08837107745234156 -9990.0,0.08834056043390827 -9991.0,0.08831005395385971 -9992.0,0.08827955800855673 -9993.0,0.08824907259436131 -9994.0,0.08821859770763679 -9995.0,0.08818813334474776 -9996.0,0.08815767950206002 -9997.0,0.0881272361759407 -9998.0,0.08809680336275805 -9999.0,0.08806638105888169 -10000.0,0.08803596926068248 -10001.0,0.08800556796453254 -10002.0,0.08797517716680514 -10003.0,0.08794479686387492 -10004.0,0.08791442705211774 -10005.0,0.08788406772791073 -10006.0,0.08785371888763216 -10007.0,0.0878233805276617 -10008.0,0.08779305264438017 -10009.0,0.08776273523416973 -10010.0,0.08773242829341367 -10011.0,0.08770213181849662 -10012.0,0.08767184580580442 -10013.0,0.0876415702517242 -10014.0,0.08761130515264431 -10015.0,0.08758105050495428 -10016.0,0.08755080630504501 -10017.0,0.08752057254930856 -10018.0,0.0874903492341383 -10019.0,0.08746013635592877 -10020.0,0.08742993391107579 -10021.0,0.08739974189597645 -10022.0,0.0873695603070291 -10023.0,0.0873393891406332 -10024.0,0.08730922839318962 -10025.0,0.08727907806110038 -10026.0,0.08724893814076881 -10027.0,0.08721880862859938 -10028.0,0.08718868952099786 -10029.0,0.08715858081437128 -10030.0,0.08712848250512793 -10031.0,0.08709839458967722 -10032.0,0.08706831706442993 -10033.0,0.087038249925798 -10034.0,0.08700819317019469 -10035.0,0.08697814679403444 -10036.0,0.08694811079373288 -10037.0,0.08691808516570697 -10038.0,0.08688806990637488 -10039.0,0.08685806501215604 -10040.0,0.086828070479471 -10041.0,0.08679808630474167 -10042.0,0.08676811248439117 -10043.0,0.08673814901484388 -10044.0,0.08670819589252528 -10045.0,0.08667825311386224 -10046.0,0.08664832067528279 -10047.0,0.08661839857321627 -10048.0,0.08658848680409308 -10049.0,0.08655858536434502 -10050.0,0.08652869425040507 -10051.0,0.08649881345870745 -10052.0,0.08646894298568761 -10053.0,0.08643908282778216 -10054.0,0.08640923298142904 -10055.0,0.08637939344306736 -10056.0,0.08634956420913754 -10057.0,0.0863197452760811 -10058.0,0.08628993664034089 -10059.0,0.08626013829836093 -10060.0,0.08623035024658658 -10061.0,0.08620057248146423 -10062.0,0.08617080499944166 -10063.0,0.08614104779696782 -10064.0,0.08611130087049296 -10065.0,0.08608156421646837 -10066.0,0.08605183783134675 -10067.0,0.08602212171158195 -10068.0,0.0859924158536291 -10069.0,0.08596272025394441 -10070.0,0.08593303490898548 -10071.0,0.08590335981521104 -10072.0,0.08587369496908107 -10073.0,0.08584404036705683 -10074.0,0.08581439600560063 -10075.0,0.08578476188117619 -10076.0,0.08575513799024835 -10077.0,0.08572552432928324 -10078.0,0.08569592089474809 -10079.0,0.08566632768311147 -10080.0,0.08563674469084312 -10081.0,0.08560717191441405 -10082.0,0.08557760935029636 -10083.0,0.08554805699496348 -10084.0,0.08551851484489005 -10085.0,0.08548898289655193 -10086.0,0.08545946114642611 -10087.0,0.08542994959099089 -10088.0,0.08540044822672575 -10089.0,0.08537095705011141 -10090.0,0.08534147605762982 -10091.0,0.08531200524576403 -10092.0,0.08528254461099842 -10093.0,0.08525309414981856 -10094.0,0.08522365385871127 -10095.0,0.08519422373416445 -10096.0,0.08516480377266734 -10097.0,0.08513539397071036 -10098.0,0.08510599432478516 -10099.0,0.08507660483138452 -10100.0,0.08504722548700251 -10101.0,0.0850178562881344 -10102.0,0.08498849723127667 -10103.0,0.08495914831292696 -10104.0,0.08492980952958418 -10105.0,0.08490048087774842 -10106.0,0.08487116235392103 -10107.0,0.08484185395460445 -10108.0,0.08481255567630243 -10109.0,0.08478326751551991 -10110.0,0.08475398946876303 -10111.0,0.08472472153253915 -10112.0,0.08469546370335676 -10113.0,0.08466621597772565 -10114.0,0.08463697835215678 -10115.0,0.08460775082316234 -10116.0,0.08457853338725564 -10117.0,0.08454932604095128 -10118.0,0.08452012878076504 -10119.0,0.08449094160321394 -10120.0,0.08446176450481607 -10121.0,0.08443259748209088 -10122.0,0.08440344053155895 -10123.0,0.08437429364974208 -10124.0,0.08434515683316322 -10125.0,0.08431603007834658 -10126.0,0.08428691338181755 -10127.0,0.08425780674010272 -10128.0,0.08422871014972992 -10129.0,0.08419962360722807 -10130.0,0.08417054710912739 -10131.0,0.08414148065195926 -10132.0,0.0841124242322563 -10133.0,0.08408337784655223 -10134.0,0.08405434149138206 -10135.0,0.08402531516328196 -10136.0,0.08399629885878934 -10137.0,0.0839672925744427 -10138.0,0.08393829630678182 -10139.0,0.08390931005234767 -10140.0,0.08388033380768244 -10141.0,0.08385136756932939 -10142.0,0.0838224113338331 -10143.0,0.08379346509773931 -10144.0,0.08376452885759499 -10145.0,0.08373560260994815 -10146.0,0.08370668635134818 -10147.0,0.08367778007834555 -10148.0,0.08364888378749195 -10149.0,0.08361999747534032 -10150.0,0.08359112113844465 -10151.0,0.08356225477336024 -10152.0,0.08353339837664354 -10153.0,0.08350455194485225 -10154.0,0.0834757154745451 -10155.0,0.08344688896228217 -10156.0,0.08341807240462464 -10157.0,0.08338926579813495 -10158.0,0.08336046913937663 -10159.0,0.08333168242491445 -10160.0,0.08330290565131442 -10161.0,0.08327413881514364 -10162.0,0.08324538191297044 -10163.0,0.08321663494136432 -10164.0,0.08318789789689598 -10165.0,0.08315917077613731 -10166.0,0.08313045357566143 -10167.0,0.08310174629204246 -10168.0,0.08307304892185594 -10169.0,0.08304436146167841 -10170.0,0.08301568390808775 -10171.0,0.08298701625766285 -10172.0,0.0829583585069839 -10173.0,0.08292971065263224 -10174.0,0.08290107269119043 -10175.0,0.0828724446192421 -10176.0,0.08284382643337217 -10177.0,0.08281521813016668 -10178.0,0.08278661970621293 -10179.0,0.08275803115809924 -10180.0,0.08272945248241526 -10181.0,0.08270088367575174 -10182.0,0.08267232473470068 -10183.0,0.08264377565585514 -10184.0,0.08261523643580945 -10185.0,0.0825867070711591 -10186.0,0.08255818755850072 -10187.0,0.08252967789443222 -10188.0,0.08250117807555249 -10189.0,0.08247268809846175 -10190.0,0.08244420795976137 -10191.0,0.08241573765605392 -10192.0,0.08238727718394301 -10193.0,0.08235882654003356 -10194.0,0.0823303857209316 -10195.0,0.0823019547232444 -10196.0,0.08227353354358027 -10197.0,0.08224512217854882 -10198.0,0.08221672062476076 -10199.0,0.08218832887882803 -10200.0,0.08215994693736366 -10201.0,0.08213157479698188 -10202.0,0.08210321245429814 -10203.0,0.082074859905929 -10204.0,0.08204651714849225 -10205.0,0.08201818417860672 -10206.0,0.08198986099289254 -10207.0,0.08196154758797099 -10208.0,0.08193324396046446 -10209.0,0.08190495010699651 -10210.0,0.08187666602419193 -10211.0,0.0818483917086766 -10212.0,0.08182012715707765 -10213.0,0.08179187236602325 -10214.0,0.08176362733214287 -10215.0,0.08173539205206706 -10216.0,0.0817071665224276 -10217.0,0.08167895073985731 -10218.0,0.0816507447009903 -10219.0,0.08162254840246179 -10220.0,0.0815943618409082 -10221.0,0.08156618501296702 -10222.0,0.08153801791527697 -10223.0,0.08150986054447794 -10224.0,0.08148171289721097 -10225.0,0.08145357497011826 -10226.0,0.08142544675984312 -10227.0,0.08139732826303006 -10228.0,0.08136921947632478 -10229.0,0.08134112039637413 -10230.0,0.08131303101982602 -10231.0,0.08128495134332962 -10232.0,0.08125688136353526 -10233.0,0.0812288210770944 -10234.0,0.0812007704806596 -10235.0,0.08117272957088464 -10236.0,0.08114469834442448 -10237.0,0.0811166767979352 -10238.0,0.081088664928074 -10239.0,0.08106066273149926 -10240.0,0.08103267020487055 -10241.0,0.08100468734484856 -10242.0,0.08097671414809518 -10243.0,0.08094875061127332 -10244.0,0.0809207967310472 -10245.0,0.08089285250408211 -10246.0,0.08086491792704453 -10247.0,0.08083699299660202 -10248.0,0.08080907770942336 -10249.0,0.08078117206217847 -10250.0,0.08075327605153844 -10251.0,0.0807253896741754 -10252.0,0.08069751292676276 -10253.0,0.08066964580597502 -10254.0,0.08064178830848788 -10255.0,0.08061394043097805 -10256.0,0.08058610217012353 -10257.0,0.08055827352260343 -10258.0,0.08053045448509802 -10259.0,0.08050264505428861 -10260.0,0.08047484522685779 -10261.0,0.08044705499948923 -10262.0,0.08041927436886777 -10263.0,0.08039150333167942 -10264.0,0.08036374188461122 -10265.0,0.08033599002435146 -10266.0,0.08030824774758956 -10267.0,0.0802805150510161 -10268.0,0.0802527919313227 -10269.0,0.08022507838520222 -10270.0,0.08019737440934865 -10271.0,0.08016968000045713 -10272.0,0.08014199515522387 -10273.0,0.08011431987034627 -10274.0,0.0800866541425229 -10275.0,0.08005899796845348 -10276.0,0.08003135134483873 -10277.0,0.08000371426838067 -10278.0,0.07997608673578238 -10279.0,0.0799484687437481 -10280.0,0.07992086028898326 -10281.0,0.07989326136819429 -10282.0,0.07986567197808886 -10283.0,0.07983809211537578 -10284.0,0.079810521776765 -10285.0,0.07978296095896749 -10286.0,0.07975540965869551 -10287.0,0.07972786787266238 -10288.0,0.0797003355975826 -10289.0,0.0796728128301717 -10290.0,0.07964529956714646 -10291.0,0.07961779580522473 -10292.0,0.07959030154112555 -10293.0,0.079562816771569 -10294.0,0.07953534149327636 -10295.0,0.07950787570297005 -10296.0,0.07948041939737363 -10297.0,0.0794529725732117 -10298.0,0.07942553522721006 -10299.0,0.07939810735609566 -10300.0,0.07937068895659656 -10301.0,0.07934328002544196 -10302.0,0.07931588055936212 -10303.0,0.0792884905550885 -10304.0,0.07926111000935371 -10305.0,0.07923373891889143 -10306.0,0.07920637728043647 -10307.0,0.0791790250907248 -10308.0,0.07915168234649349 -10309.0,0.0791243490444808 -10310.0,0.079097025181426 -10311.0,0.07906971075406959 -10312.0,0.07904240575915314 -10313.0,0.0790151101934194 -10314.0,0.07898782405361217 -10315.0,0.07896054733647641 -10316.0,0.07893328003875821 -10317.0,0.0789060221572048 -10318.0,0.07887877368856454 -10319.0,0.0788515346295868 -10320.0,0.07882430497702222 -10321.0,0.0787970847276225 -10322.0,0.07876987387814048 -10323.0,0.07874267242533003 -10324.0,0.07871548036594628 -10325.0,0.07868829769674539 -10326.0,0.07866112441448471 -10327.0,0.07863396051592259 -10328.0,0.07860680599781861 -10329.0,0.07857966085693344 -10330.0,0.0785525250900289 -10331.0,0.0785253986938678 -10332.0,0.07849828166521423 -10333.0,0.0784711740008333 -10334.0,0.0784440756974913 -10335.0,0.07841698675195553 -10336.0,0.07838990716099453 -10337.0,0.07836283692137788 -10338.0,0.0783357760298763 -10339.0,0.07830872448326168 -10340.0,0.07828168227830687 -10341.0,0.07825464941178598 -10342.0,0.07822762588047417 -10343.0,0.0782006116811478 -10344.0,0.07817360681058418 -10345.0,0.07814661126556185 -10346.0,0.07811962504286046 -10347.0,0.07809264813926077 -10348.0,0.07806568055154459 -10349.0,0.07803872227649487 -10350.0,0.07801177331089573 -10351.0,0.07798483365153236 -10352.0,0.077957903295191 -10353.0,0.07793098223865909 -10354.0,0.07790407047872513 -10355.0,0.07787716801217877 -10356.0,0.07785027483581075 -10357.0,0.07782339094641286 -10358.0,0.07779651634077807 -10359.0,0.07776965101570044 -10360.0,0.07774279496797516 -10361.0,0.07771594819439845 -10362.0,0.07768911069176769 -10363.0,0.07766228245688139 -10364.0,0.07763546348653916 -10365.0,0.07760865377754163 -10366.0,0.07758185332669061 -10367.0,0.07755506213078903 -10368.0,0.0775282801866409 -10369.0,0.0775015074910513 -10370.0,0.07747474404082644 -10371.0,0.07744798983277365 -10372.0,0.07742124486370139 -10373.0,0.0773945091304191 -10374.0,0.07736778262973745 -10375.0,0.07734106535846814 -10376.0,0.07731435731342402 -10377.0,0.07728765849141903 -10378.0,0.07726096888926813 -10379.0,0.0772342885037875 -10380.0,0.07720761733179432 -10381.0,0.077180955370107 -10382.0,0.07715430261554486 -10383.0,0.07712765906492847 -10384.0,0.07710102471507943 -10385.0,0.07707439956282051 -10386.0,0.07704778360497547 -10387.0,0.0770211768383692 -10388.0,0.07699457925982776 -10389.0,0.07696799086617827 -10390.0,0.07694141165424885 -10391.0,0.07691484162086884 -10392.0,0.07688828076286862 -10393.0,0.07686172907707967 -10394.0,0.07683518656033461 -10395.0,0.07680865320946706 -10396.0,0.07678212902131179 -10397.0,0.07675561399270467 -10398.0,0.07672910812048267 -10399.0,0.0767026114014838 -10400.0,0.07667612383254718 -10401.0,0.07664964541051308 -10402.0,0.07662317613222283 -10403.0,0.07659671599451878 -10404.0,0.07657026499424445 -10405.0,0.07654382312824444 -10406.0,0.07651739039336444 -10407.0,0.07649096678645119 -10408.0,0.07646455230435255 -10409.0,0.07643814694391746 -10410.0,0.076411750701996 -10411.0,0.07638536357543924 -10412.0,0.0763589855610994 -10413.0,0.07633261665582976 -10414.0,0.07630625685648473 -10415.0,0.07627990615991981 -10416.0,0.07625356456299147 -10417.0,0.0762272320625574 -10418.0,0.07620090865547631 -10419.0,0.07617459433860806 -10420.0,0.07614828910881345 -10421.0,0.07612199296295452 -10422.0,0.07609570589789433 -10423.0,0.07606942791049703 -10424.0,0.07604315899762781 -10425.0,0.076016899156153 -10426.0,0.07599064838294 -10427.0,0.07596440667485731 -10428.0,0.07593817402877441 -10429.0,0.075911950441562 -10430.0,0.07588573591009176 -10431.0,0.07585953043123651 -10432.0,0.07583333400187017 -10433.0,0.07580714661886762 -10434.0,0.07578096827910491 -10435.0,0.07575479897945918 -10436.0,0.07572863871680864 -10437.0,0.07570248748803252 -10438.0,0.07567634529001117 -10439.0,0.07565021211962604 -10440.0,0.07562408797375966 -10441.0,0.07559797284929554 -10442.0,0.07557186674311836 -10443.0,0.07554576965211388 -10444.0,0.07551968157316892 -10445.0,0.07549360250317129 -10446.0,0.07546753243901 -10447.0,0.07544147137757506 -10448.0,0.07541541931575764 -10449.0,0.07538937625044981 -10450.0,0.07536334217854489 -10451.0,0.0753373170969372 -10452.0,0.07531130100252212 -10453.0,0.07528529389219617 -10454.0,0.07525929576285681 -10455.0,0.07523330661140269 -10456.0,0.0752073264347335 -10457.0,0.07518135522975004 -10458.0,0.07515539299335404 -10459.0,0.07512943972244845 -10460.0,0.07510349541393722 -10461.0,0.07507756006472543 -10462.0,0.0750516336717191 -10463.0,0.07502571623182544 -10464.0,0.0749998077419527 -10465.0,0.07497390819901019 -10466.0,0.07494801759990825 -10467.0,0.07492213594155833 -10468.0,0.07489626322087296 -10469.0,0.07487039943476569 -10470.0,0.0748445445801512 -10471.0,0.07481869865394512 -10472.0,0.07479286165306429 -10473.0,0.07476703357442649 -10474.0,0.07474121441495069 -10475.0,0.07471540417155677 -10476.0,0.07468960284116578 -10477.0,0.07466381042069983 -10478.0,0.07463802690708211 -10479.0,0.07461225229723675 -10480.0,0.07458648658808907 -10481.0,0.0745607297765654 -10482.0,0.07453498185959317 -10483.0,0.0745092428341008 -10484.0,0.07448351269701782 -10485.0,0.07445779144527483 -10486.0,0.07443207907580349 -10487.0,0.07440637558553644 -10488.0,0.07438068097140747 -10489.0,0.07435499523035143 -10490.0,0.07432931835930415 -10491.0,0.07430365035520263 -10492.0,0.0742779912149848 -10493.0,0.07425234093558973 -10494.0,0.07422669951395754 -10495.0,0.07420106694702941 -10496.0,0.07417544323174752 -10497.0,0.07414982836505517 -10498.0,0.07412422234389669 -10499.0,0.07409862516521751 -10500.0,0.074073036825964 -10501.0,0.0740474573230837 -10502.0,0.07402188665352513 -10503.0,0.07399632481423797 -10504.0,0.07397077180217279 -10505.0,0.07394522761428135 -10506.0,0.0739196922475164 -10507.0,0.07389416569883177 -10508.0,0.07386864796518235 -10509.0,0.07384313904352399 -10510.0,0.07381763893081371 -10511.0,0.07379214762400953 -10512.0,0.07376666512007053 -10513.0,0.07374119141595681 -10514.0,0.07371572650862955 -10515.0,0.07369027039505098 -10516.0,0.0736648230721844 -10517.0,0.07363938453699406 -10518.0,0.07361395478644538 -10519.0,0.07358853381750474 -10520.0,0.07356312162713968 -10521.0,0.07353771821231861 -10522.0,0.07351232357001114 -10523.0,0.07348693769718788 -10524.0,0.07346156059082048 -10525.0,0.07343619224788162 -10526.0,0.07341083266534502 -10527.0,0.07338548184018552 -10528.0,0.07336013976937891 -10529.0,0.07333480644990212 -10530.0,0.073309481878733 -10531.0,0.07328416605285054 -10532.0,0.07325885896923476 -10533.0,0.07323356062486672 -10534.0,0.07320827101672847 -10535.0,0.07318299014180316 -10536.0,0.07315771799707498 -10537.0,0.07313245457952917 -10538.0,0.07310719988615193 -10539.0,0.07308195391393058 -10540.0,0.07305671665985347 -10541.0,0.07303148812091001 -10542.0,0.07300626829409054 -10543.0,0.07298105717638659 -10544.0,0.07295585476479062 -10545.0,0.07293066105629617 -10546.0,0.07290547604789788 -10547.0,0.07288029973659124 -10548.0,0.07285513211937299 -10549.0,0.07282997319324078 -10550.0,0.07280482295519337 -10551.0,0.07277968140223048 -10552.0,0.07275454853135291 -10553.0,0.0727294243395625 -10554.0,0.07270430882386217 -10555.0,0.07267920198125571 -10556.0,0.07265410380874814 -10557.0,0.07262901430334541 -10558.0,0.07260393346205454 -10559.0,0.07257886128188354 -10560.0,0.07255379775984148 -10561.0,0.07252874289293848 -10562.0,0.07250369667818568 -10563.0,0.07247865911259528 -10564.0,0.07245363019318042 -10565.0,0.07242860991695535 -10566.0,0.07240359828093534 -10567.0,0.07237859528213672 -10568.0,0.07235360091757675 -10569.0,0.07232861518427383 -10570.0,0.0723036380792473 -10571.0,0.07227866959951766 -10572.0,0.07225370974210626 -10573.0,0.07222875850403561 -10574.0,0.07220381588232919 -10575.0,0.07217888187401159 -10576.0,0.07215395647610827 -10577.0,0.07212903968564588 -10578.0,0.07210413149965199 -10579.0,0.07207923191515529 -10580.0,0.07205434092918538 -10581.0,0.07202945853877296 -10582.0,0.07200458474094976 -10583.0,0.07197971953274851 -10584.0,0.071954862911203 -10585.0,0.07193001487334796 -10586.0,0.07190517541621923 -10587.0,0.07188034453685364 -10588.0,0.07185552223228908 -10589.0,0.07183070849956438 -10590.0,0.07180590333571946 -10591.0,0.07178110673779524 -10592.0,0.07175631870283371 -10593.0,0.07173153922787777 -10594.0,0.07170676830997143 -10595.0,0.07168200594615973 -10596.0,0.0716572521334887 -10597.0,0.07163250686900535 -10598.0,0.07160777014975778 -10599.0,0.07158304197279505 -10600.0,0.07155832233516732 -10601.0,0.0715336112339257 -10602.0,0.07150890866612229 -10603.0,0.07148421462881031 -10604.0,0.07145952911904391 -10605.0,0.07143485213387833 -10606.0,0.07141018367036972 -10607.0,0.07138552372557536 -10608.0,0.07136087229655347 -10609.0,0.07133622938036337 -10610.0,0.07131159497406526 -10611.0,0.07128696907472047 -10612.0,0.07126235167939132 -10613.0,0.07123774278514117 -10614.0,0.07121314238903428 -10615.0,0.07118855048813603 -10616.0,0.07116396707951281 -10617.0,0.071139392160232 -10618.0,0.07111482572736195 -10619.0,0.07109026777797209 -10620.0,0.07106571830913283 -10621.0,0.0710411773179156 -10622.0,0.07101664480139286 -10623.0,0.07099212075663802 -10624.0,0.07096760518072556 -10625.0,0.07094309807073094 -10626.0,0.07091859942373069 -10627.0,0.07089410923680223 -10628.0,0.07086962750702408 -10629.0,0.07084515423147576 -10630.0,0.07082068940723783 -10631.0,0.07079623303139172 -10632.0,0.07077178510102003 -10633.0,0.07074734561320627 -10634.0,0.07072291456503503 -10635.0,0.0706984919535918 -10636.0,0.07067407777596318 -10637.0,0.07064967202923673 -10638.0,0.07062527471050103 -10639.0,0.07060088581684568 -10640.0,0.0705765053453612 -10641.0,0.07055213329313921 -10642.0,0.0705277696572723 -10643.0,0.07050341443485411 -10644.0,0.07047906762297916 -10645.0,0.07045472921874309 -10646.0,0.0704303992192425 -10647.0,0.07040607762157505 -10648.0,0.07038176442283928 -10649.0,0.07035745962013482 -10650.0,0.0703331632105623 -10651.0,0.07030887519122335 -10652.0,0.07028459555922054 -10653.0,0.0702603243116575 -10654.0,0.07023606144563888 -10655.0,0.07021180695827028 -10656.0,0.07018756084665831 -10657.0,0.07016332310791057 -10658.0,0.0701390937391357 -10659.0,0.07011487273744331 -10660.0,0.07009066009994404 -10661.0,0.07006645582374942 -10662.0,0.07004225990597211 -10663.0,0.07001807234372572 -10664.0,0.06999389313412484 -10665.0,0.06996972227428505 -10666.0,0.06994555976132295 -10667.0,0.06992140559235613 -10668.0,0.06989725976450321 -10669.0,0.06987312227488371 -10670.0,0.06984899312061822 -10671.0,0.06982487229882833 -10672.0,0.06980075980663661 -10673.0,0.06977665564116657 -10674.0,0.06975255979954278 -10675.0,0.06972847227889079 -10676.0,0.06970439307633712 -10677.0,0.06968032218900935 -10678.0,0.06965625961403592 -10679.0,0.06963220534854636 -10680.0,0.0696081593896712 -10681.0,0.06958412173454195 -10682.0,0.06956009238029104 -10683.0,0.06953607132405196 -10684.0,0.06951205856295917 -10685.0,0.06948805409414817 -10686.0,0.06946405791475532 -10687.0,0.06944007002191811 -10688.0,0.06941609041277494 -10689.0,0.06939211908446524 -10690.0,0.06936815603412937 -10691.0,0.06934420125890872 -10692.0,0.06932025475594566 -10693.0,0.0692963165223836 -10694.0,0.06927238655536681 -10695.0,0.06924846485204066 -10696.0,0.06922455140955143 -10697.0,0.06920064622504644 -10698.0,0.06917674929567404 -10699.0,0.06915286061858339 -10700.0,0.0691289801909248 -10701.0,0.0691051080098495 -10702.0,0.06908124407250975 -10703.0,0.0690573883760587 -10704.0,0.06903354091765054 -10705.0,0.0690097016944405 -10706.0,0.06898587070358471 -10707.0,0.06896204794224027 -10708.0,0.06893823340756532 -10709.0,0.06891442709671897 -10710.0,0.06889062900686131 -10711.0,0.06886683913515337 -10712.0,0.06884305747875721 -10713.0,0.06881928403483585 -10714.0,0.06879551880055329 -10715.0,0.06877176177307454 -10716.0,0.0687480129495655 -10717.0,0.06872427232719315 -10718.0,0.06870053990312538 -10719.0,0.06867681567453116 -10720.0,0.06865309963858024 -10721.0,0.06862939179244355 -10722.0,0.06860569213329291 -10723.0,0.06858200065830114 -10724.0,0.06855831736464196 -10725.0,0.06853464224949017 -10726.0,0.06851097531002148 -10727.0,0.06848731654341264 -10728.0,0.06846366594684128 -10729.0,0.06844002351748607 -10730.0,0.06841638925252665 -10731.0,0.06839276314914365 -10732.0,0.06836914520451859 -10733.0,0.06834553541583405 -10734.0,0.06832193378027354 -10735.0,0.06829834029502159 -10736.0,0.06827475495726368 -10737.0,0.0682511777641862 -10738.0,0.06822760871297658 -10739.0,0.0682040478008232 -10740.0,0.06818049502491545 -10741.0,0.06815695038244363 -10742.0,0.068133413870599 -10743.0,0.06810988548657387 -10744.0,0.06808636522756152 -10745.0,0.06806285309075605 -10746.0,0.0680393490733527 -10747.0,0.06801585317254759 -10748.0,0.06799236538553786 -10749.0,0.06796888570952155 -10750.0,0.0679454141416977 -10751.0,0.06792195067926637 -10752.0,0.0678984953194285 -10753.0,0.06787504805938609 -10754.0,0.06785160889634198 -10755.0,0.06782817782750009 -10756.0,0.06780475485006524 -10757.0,0.0677813399612433 -10758.0,0.06775793315824097 -10759.0,0.06773453443826602 -10760.0,0.06771114379852715 -10761.0,0.06768776123623406 -10762.0,0.06766438674859733 -10763.0,0.06764102033282857 -10764.0,0.06761766198614035 -10765.0,0.0675943117057462 -10766.0,0.06757096948886056 -10767.0,0.06754763533269889 -10768.0,0.06752430923447762 -10769.0,0.06750099119141412 -10770.0,0.06747768120072667 -10771.0,0.06745437925963459 -10772.0,0.0674310853653581 -10773.0,0.06740779951511845 -10774.0,0.06738452170613783 -10775.0,0.06736125193563929 -10776.0,0.06733799020084694 -10777.0,0.06731473649898585 -10778.0,0.06729149082728203 -10779.0,0.06726825318296241 -10780.0,0.0672450235632549 -10781.0,0.0672218019653884 -10782.0,0.06719858838659278 -10783.0,0.06717538282409875 -10784.0,0.0671521852751381 -10785.0,0.0671289957369435 -10786.0,0.06710581420674869 -10787.0,0.06708264068178818 -10788.0,0.06705947515929758 -10789.0,0.06703631763651342 -10790.0,0.06701316811067318 -10791.0,0.0669900265790153 -10792.0,0.0669668930387791 -10793.0,0.06694376748720499 -10794.0,0.06692064992153422 -10795.0,0.06689754033900908 -10796.0,0.06687443873687268 -10797.0,0.06685134511236923 -10798.0,0.06682825946274383 -10799.0,0.06680518178524253 -10800.0,0.0667821120771123 -10801.0,0.0667590503356011 -10802.0,0.06673599655795785 -10803.0,0.06671295074143242 -10804.0,0.06668991288327557 -10805.0,0.06666688298073906 -10806.0,0.0666438610310756 -10807.0,0.06662084703153887 -10808.0,0.0665978409793834 -10809.0,0.06657484287186477 -10810.0,0.06655185270623948 -10811.0,0.06652887047976497 -10812.0,0.06650589618969965 -10813.0,0.06648292983330281 -10814.0,0.06645997140783474 -10815.0,0.06643702091055669 -10816.0,0.06641407833873082 -10817.0,0.06639114368962025 -10818.0,0.06636821696048903 -10819.0,0.06634529814860218 -10820.0,0.06632238725122569 -10821.0,0.06629948426562639 -10822.0,0.06627658918907214 -10823.0,0.06625370201883175 -10824.0,0.06623082275217496 -10825.0,0.06620795138637238 -10826.0,0.06618508791869565 -10827.0,0.06616223234641734 -10828.0,0.06613938466681095 -10829.0,0.06611654487715092 -10830.0,0.06609371297471259 -10831.0,0.06607088895677231 -10832.0,0.06604807282060733 -10833.0,0.0660252645634959 -10834.0,0.06600246418271709 -10835.0,0.06597967167555101 -10836.0,0.06595688703927867 -10837.0,0.06593411027118208 -10838.0,0.06591134136854407 -10839.0,0.0658885803286485 -10840.0,0.06586582714878014 -10841.0,0.06584308182622475 -10842.0,0.06582034435826892 -10843.0,0.06579761474220024 -10844.0,0.06577489297530724 -10845.0,0.06575217905487943 -10846.0,0.06572947297820712 -10847.0,0.06570677474258169 -10848.0,0.0656840843452954 -10849.0,0.06566140178364144 -10850.0,0.06563872705491397 -10851.0,0.06561606015640803 -10852.0,0.06559340108541964 -10853.0,0.06557074983924574 -10854.0,0.06554810641518422 -10855.0,0.06552547081053384 -10856.0,0.06550284302259435 -10857.0,0.06548022304866642 -10858.0,0.06545761088605172 -10859.0,0.06543500653205267 -10860.0,0.06541240998397281 -10861.0,0.0653898212391165 -10862.0,0.06536724029478913 -10863.0,0.06534466714829688 -10864.0,0.06532210179694697 -10865.0,0.06529954423804753 -10866.0,0.06527699446890758 -10867.0,0.06525445248683716 -10868.0,0.0652319182891471 -10869.0,0.06520939187314924 -10870.0,0.06518687323615639 -10871.0,0.06516436237548225 -10872.0,0.06514185928844136 -10873.0,0.06511936397234933 -10874.0,0.0650968764245226 -10875.0,0.06507439664227861 -10876.0,0.06505192462293564 -10877.0,0.06502946036381296 -10878.0,0.06500700386223077 -10879.0,0.06498455511551016 -10880.0,0.06496211412097312 -10881.0,0.06493968087594265 -10882.0,0.06491725537774261 -10883.0,0.06489483762369783 -10884.0,0.06487242761113397 -10885.0,0.06485002533737773 -10886.0,0.06482763079975666 -10887.0,0.06480524399559927 -10888.0,0.064782864922235 -10889.0,0.06476049357699414 -10890.0,0.06473812995720797 -10891.0,0.06471577406020868 -10892.0,0.06469342588332938 -10893.0,0.06467108542390408 -10894.0,0.06464875267926773 -10895.0,0.06462642764675619 -10896.0,0.06460411032370629 -10897.0,0.06458180070745567 -10898.0,0.06455949879534299 -10899.0,0.0645372045847078 -10900.0,0.06451491807289057 -10901.0,0.06449263925723266 -10902.0,0.06447036813507635 -10903.0,0.0644481047037649 -10904.0,0.06442584896064242 -10905.0,0.06440360090305401 -10906.0,0.06438136052834556 -10907.0,0.064359127833864 -10908.0,0.06433690281695713 -10909.0,0.06431468547497368 -10910.0,0.06429247580526326 -10911.0,0.06427027380517641 -10912.0,0.06424807947206462 -10913.0,0.06422589280328028 -10914.0,0.06420371379617663 -10915.0,0.0641815424481079 -10916.0,0.06415937875642923 -10917.0,0.06413722271849666 -10918.0,0.06411507433166708 -10919.0,0.06409293359329839 -10920.0,0.06407080050074936 -10921.0,0.06404867505137969 -10922.0,0.06402655724254992 -10923.0,0.0640044470716216 -10924.0,0.06398234453595714 -10925.0,0.06396024963291985 -10926.0,0.06393816235987404 -10927.0,0.06391608271418475 -10928.0,0.06389401069321811 -10929.0,0.06387194629434108 -10930.0,0.06384988951492154 -10931.0,0.06382784035232826 -10932.0,0.06380579880393093 -10933.0,0.06378376486710018 -10934.0,0.06376173853920752 -10935.0,0.06373971981762536 -10936.0,0.06371770869972701 -10937.0,0.06369570518288672 -10938.0,0.06367370926447966 -10939.0,0.06365172094188183 -10940.0,0.0636297402124702 -10941.0,0.06360776707362262 -10942.0,0.06358580152271788 -10943.0,0.06356384355713565 -10944.0,0.06354189317425649 -10945.0,0.06351995037146185 -10946.0,0.06349801514613417 -10947.0,0.06347608749565672 -10948.0,0.06345416741741366 -10949.0,0.06343225490879012 -10950.0,0.06341034996717207 -10951.0,0.06338845258994646 -10952.0,0.06336656277450103 -10953.0,0.06334468051822452 -10954.0,0.06332280581850652 -10955.0,0.06330093867273758 -10956.0,0.06327907907830904 -10957.0,0.06325722703261326 -10958.0,0.06323538253304342 -10959.0,0.06321354557699368 -10960.0,0.063191716161859 -10961.0,0.06316989428503529 -10962.0,0.06314807994391938 -10963.0,0.06312627313590898 -10964.0,0.0631044738584027 -10965.0,0.06308268210880003 -10966.0,0.06306089788450137 -10967.0,0.06303912118290803 -10968.0,0.06301735200142224 -10969.0,0.06299559033744703 -10970.0,0.06297383618838642 -10971.0,0.06295208955164532 -10972.0,0.06293035042462952 -10973.0,0.06290861880474564 -10974.0,0.06288689468940131 -10975.0,0.06286517807600499 -10976.0,0.06284346896196608 -10977.0,0.06282176734469476 -10978.0,0.06280007322160222 -10979.0,0.06277838659010054 -10980.0,0.06275670744760263 -10981.0,0.06273503579152238 -10982.0,0.06271337161927444 -10983.0,0.06269171492827447 -10984.0,0.06267006571593899 -10985.0,0.06264842397968542 -10986.0,0.06262678971693203 -10987.0,0.062605162925098 -10988.0,0.06258354360160345 -10989.0,0.06256193174386936 -10990.0,0.06254032734931754 -10991.0,0.06251873041537076 -10992.0,0.06249714093945268 -10993.0,0.06247555891898786 -10994.0,0.062453984351401655 -10995.0,0.062432417234120414 -10996.0,0.06241085756457133 -10997.0,0.06238930534018253 -10998.0,0.06236776055838292 -10999.0,0.0623462232166024 -11000.0,0.06232469331227173 -11001.0,0.06230317084282254 -11002.0,0.06228165580568738 -11003.0,0.06226014819829962 -11004.0,0.06223864801809358 -11005.0,0.062217155262504445 -11006.0,0.06219566992896832 -11007.0,0.062174192014922094 -11008.0,0.06215272151780365 -11009.0,0.0621312584350517 -11010.0,0.062109802764105895 -11011.0,0.06208835450240666 -11012.0,0.06206691364739542 -11013.0,0.06204548019651443 -11014.0,0.06202405414720685 -11015.0,0.062002635496916675 -11016.0,0.06198122424308883 -11017.0,0.061959820383169106 -11018.0,0.06193842391460419 -11019.0,0.06191703483484166 -11020.0,0.0618956531413299 -11021.0,0.06187427883151826 -11022.0,0.06185291190285694 -11023.0,0.061831552352797046 -11024.0,0.061810200178790485 -11025.0,0.061788855378290125 -11026.0,0.06176751794874969 -11027.0,0.06174618788762381 -11028.0,0.0617248651923679 -11029.0,0.06170354986043836 -11030.0,0.06168224188929241 -11031.0,0.0616609412763882 -11032.0,0.06163964801918467 -11033.0,0.06161836211514171 -11034.0,0.06159708356172008 -11035.0,0.06157581235638141 -11036.0,0.06155454849658817 -11037.0,0.061533291979803735 -11038.0,0.06151204280349239 -11039.0,0.06149080096511923 -11040.0,0.061469566462150314 -11041.0,0.061448339292052456 -11042.0,0.06142711945229343 -11043.0,0.06140590694034187 -11044.0,0.06138470175366731 -11045.0,0.06136350388974006 -11046.0,0.06134231334603141 -11047.0,0.061321130120013466 -11048.0,0.06129995420915926 -11049.0,0.06127878561094261 -11050.0,0.06125762432283828 -11051.0,0.06123647034232188 -11052.0,0.06121532366686993 -11053.0,0.061194184293959716 -11054.0,0.06117305222106951 -11055.0,0.0611519274456784 -11056.0,0.06113080996526635 -11057.0,0.06110969977731423 -11058.0,0.0610885968793037 -11059.0,0.061067501268717364 -11060.0,0.06104641294303866 -11061.0,0.06102533189975194 -11062.0,0.06100425813634233 -11063.0,0.06098319165029592 -11064.0,0.06096213243909962 -11065.0,0.06094108050024125 -11066.0,0.060920035831209425 -11067.0,0.06089899842949368 -11068.0,0.06087796829258441 -11069.0,0.06085694541797291 -11070.0,0.06083592980315124 -11071.0,0.06081492144561242 -11072.0,0.060793920342850305 -11073.0,0.06077292649235965 -11074.0,0.060751939891635985 -11075.0,0.06073096053817578 -11076.0,0.060709988429476364 -11077.0,0.060689023563035904 -11078.0,0.06066806593635349 -11079.0,0.060647115546928955 -11080.0,0.0606261723922631 -11081.0,0.06060523646985758 -11082.0,0.0605843077772149 -11083.0,0.06056338631183837 -11084.0,0.06054247207123224 -11085.0,0.06052156505290159 -11086.0,0.0605006652543524 -11087.0,0.06047977267309142 -11088.0,0.06045888730662634 -11089.0,0.06043800915246569 -11090.0,0.06041713820811888 -11091.0,0.06039627447109611 -11092.0,0.06037541793890852 -11093.0,0.06035456860906808 -11094.0,0.0603337264790876 -11095.0,0.060312891546480805 -11096.0,0.06029206380876218 -11097.0,0.06027124326344716 -11098.0,0.06025042990805201 -11099.0,0.060229623740093864 -11100.0,0.060208824757090655 -11101.0,0.06018803295656123 -11102.0,0.06016724833602529 -11103.0,0.0601464708930034 -11104.0,0.06012570062501692 -11105.0,0.06010493752958812 -11106.0,0.06008418160424013 -11107.0,0.060063432846496935 -11108.0,0.060042691253883305 -11109.0,0.06002195682392496 -11110.0,0.06000122955414842 -11111.0,0.0599805094420811 -11112.0,0.059959796485251196 -11113.0,0.05993909068118783 -11114.0,0.05991839202742094 -11115.0,0.059897700521481335 -11116.0,0.0598770161609007 -11117.0,0.059856338943211476 -11118.0,0.05983566886594706 -11119.0,0.05981500592664166 -11120.0,0.05979435012283036 -11121.0,0.05977370145204902 -11122.0,0.059753059911834445 -11123.0,0.059732425499724226 -11124.0,0.059711798213256874 -11125.0,0.05969117804997164 -11126.0,0.05967056500740872 -11127.0,0.05964995908310913 -11128.0,0.059629360274614754 -11129.0,0.05960876857946826 -11130.0,0.05958818399521323 -11131.0,0.05956760651939407 -11132.0,0.05954703614955604 -11133.0,0.05952647288324527 -11134.0,0.05950591671800867 -11135.0,0.059485367651394054 -11136.0,0.05946482568095007 -11137.0,0.05944429080422624 -11138.0,0.05942376301877285 -11139.0,0.05940324232214111 -11140.0,0.05938272871188304 -11141.0,0.059362222185551566 -11142.0,0.059341722740700334 -11143.0,0.05932123037488395 -11144.0,0.059300745085657816 -11145.0,0.05928026687057822 -11146.0,0.0592597957272022 -11147.0,0.05923933165308773 -11148.0,0.05921887464579359 -11149.0,0.05919842470287944 -11150.0,0.059177981821905694 -11151.0,0.05915754600043369 -11152.0,0.0591371172360256 -11153.0,0.05911669552624439 -11154.0,0.059096280868653955 -11155.0,0.05907587326081891 -11156.0,0.059055472700304805 -11157.0,0.05903507918467799 -11158.0,0.059014692711505716 -11159.0,0.058994313278355956 -11160.0,0.05897394088279762 -11161.0,0.058953575522400437 -11162.0,0.05893321719473499 -11163.0,0.05891286589737262 -11164.0,0.05889252162788561 -11165.0,0.05887218438384702 -11166.0,0.05885185416283079 -11167.0,0.058831530962411636 -11168.0,0.05881121478016516 -11169.0,0.0587909056136678 -11170.0,0.05877060346049682 -11171.0,0.05875030831823033 -11172.0,0.05873002018444724 -11173.0,0.058709739056727335 -11174.0,0.05868946493265123 -11175.0,0.058669197809800386 -11176.0,0.05864893768575705 -11177.0,0.05862868455810434 -11178.0,0.058608438424426215 -11179.0,0.0585881992823075 -11180.0,0.05856796712933374 -11181.0,0.05854774196309141 -11182.0,0.05852752378116782 -11183.0,0.0585073125811511 -11184.0,0.05848710836063014 -11185.0,0.058466911117194764 -11186.0,0.05844672084843558 -11187.0,0.05842653755194407 -11188.0,0.05840636122531245 -11189.0,0.05838619186613387 -11190.0,0.058366029472002263 -11191.0,0.058345874040512405 -11192.0,0.05832572556925993 -11193.0,0.058305584055841214 -11194.0,0.05828544949785356 -11195.0,0.058265321892895044 -11196.0,0.05824520123856463 -11197.0,0.05822508753246201 -11198.0,0.05820498077218779 -11199.0,0.05818488095534339 -11200.0,0.058164788079531064 -11201.0,0.05814470214235384 -11202.0,0.05812462314141562 -11203.0,0.05810455107432114 -11204.0,0.05808448593867597 -11205.0,0.05806442773208643 -11206.0,0.058044376452159756 -11207.0,0.05802433209650397 -11208.0,0.058004294662727926 -11209.0,0.057984264148441336 -11210.0,0.05796424055125465 -11211.0,0.057944223868779225 -11212.0,0.05792421409862722 -11213.0,0.057904211238411635 -11214.0,0.05788421528574623 -11215.0,0.05786422623824565 -11216.0,0.05784424409352536 -11217.0,0.05782426884920165 -11218.0,0.05780430050289157 -11219.0,0.05778433905221308 -11220.0,0.0577643844947849 -11221.0,0.05774443682822665 -11222.0,0.05772449605015865 -11223.0,0.05770456215820214 -11224.0,0.05768463514997915 -11225.0,0.057664715023112566 -11226.0,0.057644801775226004 -11227.0,0.057624895403943985 -11228.0,0.057604995906891825 -11229.0,0.057585103281695665 -11230.0,0.057565217525982475 -11231.0,0.057545338637379984 -11232.0,0.05752546661351681 -11233.0,0.05750560145202237 -11234.0,0.057485743150526916 -11235.0,0.05746589170666144 -11236.0,0.05744604711805785 -11237.0,0.05742620938234882 -11238.0,0.057406378497167884 -11239.0,0.05738655446014931 -11240.0,0.05736673726892825 -11241.0,0.05734692692114067 -11242.0,0.057327123414423364 -11243.0,0.05730732674641387 -11244.0,0.0572875369147506 -11245.0,0.05726775391707279 -11246.0,0.05724797775102046 -11247.0,0.05722820841423449 -11248.0,0.05720844590435648 -11249.0,0.05718869021902895 -11250.0,0.05716894135589518 -11251.0,0.0571491993125993 -11252.0,0.05712946408678618 -11253.0,0.05710973567610158 -11254.0,0.05709001407819203 -11255.0,0.05707029929070493 -11256.0,0.05705059131128839 -11257.0,0.05703089013759142 -11258.0,0.057011195767263816 -11259.0,0.056991508197956196 -11260.0,0.05697182742731994 -11261.0,0.0569521534530073 -11262.0,0.0569324862726713 -11263.0,0.05691282588396583 -11264.0,0.0568931722845455 -11265.0,0.05687352547206578 -11266.0,0.056853885444182975 -11267.0,0.05683425219855417 -11268.0,0.05681462573283727 -11269.0,0.05679500604469094 -11270.0,0.05677539313177472 -11271.0,0.05675578699174894 -11272.0,0.056736187622274746 -11273.0,0.056716595021014025 -11274.0,0.05669700918562955 -11275.0,0.05667743011378488 -11276.0,0.05665785780314439 -11277.0,0.0566382922513732 -11278.0,0.056618733456137306 -11279.0,0.05659918141510349 -11280.0,0.05657963612593936 -11281.0,0.05656009758631325 -11282.0,0.05654056579389439 -11283.0,0.056521040746352766 -11284.0,0.05650152244135919 -11285.0,0.0564820108765853 -11286.0,0.05646250604970345 -11287.0,0.05644300795838689 -11288.0,0.05642351660030963 -11289.0,0.05640403197314652 -11290.0,0.05638455407457314 -11291.0,0.05636508290226595 -11292.0,0.05634561845390217 -11293.0,0.05632616072715987 -11294.0,0.056306709719717817 -11295.0,0.05628726542925568 -11296.0,0.056267827853453904 -11297.0,0.05624839698999375 -11298.0,0.05622897283655721 -11299.0,0.05620955539082714 -11300.0,0.05619014465048719 -11301.0,0.05617074061322182 -11302.0,0.05615134327671622 -11303.0,0.05613195263865645 -11304.0,0.056112568696729356 -11305.0,0.05609319144862258 -11306.0,0.05607382089202457 -11307.0,0.056054457024624506 -11308.0,0.056035099844112465 -11309.0,0.05601574934817926 -11310.0,0.05599640553451655 -11311.0,0.055977068400816704 -11312.0,0.055957737944772976 -11313.0,0.055938414164079374 -11314.0,0.05591909705643074 -11315.0,0.05589978661952264 -11316.0,0.0558804828510515 -11317.0,0.05586118574871452 -11318.0,0.05584189531020973 -11319.0,0.05582261153323585 -11320.0,0.05580333441549251 -11321.0,0.055784063954680094 -11322.0,0.05576480014849976 -11323.0,0.05574554299465351 -11324.0,0.05572629249084405 -11325.0,0.05570704863477497 -11326.0,0.055687811424150614 -11327.0,0.05566858085667615 -11328.0,0.05564935693005746 -11329.0,0.05563013964200129 -11330.0,0.055610928990215164 -11331.0,0.055591724972407414 -11332.0,0.055572527586287085 -11333.0,0.05555333682956411 -11334.0,0.05553415269994915 -11335.0,0.05551497519515372 -11336.0,0.05549580431289003 -11337.0,0.055476640050871155 -11338.0,0.055457482406810935 -11339.0,0.055438331378424036 -11340.0,0.05541918696342583 -11341.0,0.05540004915953255 -11342.0,0.055380917964461186 -11343.0,0.05536179337592954 -11344.0,0.05534267539165621 -11345.0,0.0553235640093605 -11346.0,0.0553044592267626 -11347.0,0.05528536104158344 -11348.0,0.055266269451544774 -11349.0,0.05524718445436907 -11350.0,0.05522810604777964 -11351.0,0.055209034229500575 -11352.0,0.05518996899725677 -11353.0,0.05517091034877384 -11354.0,0.05515185828177824 -11355.0,0.055132812793997205 -11356.0,0.055113773883158766 -11357.0,0.05509474154699168 -11358.0,0.05507571578322554 -11359.0,0.05505669658959072 -11360.0,0.05503768396381837 -11361.0,0.05501867790364044 -11362.0,0.054999678406789605 -11363.0,0.05498068547099938 -11364.0,0.05496169909400404 -11365.0,0.0549427192735387 -11366.0,0.05492374600733913 -11367.0,0.05490477929314199 -11368.0,0.0548858191286847 -11369.0,0.05486686551170546 -11370.0,0.054847918439943195 -11371.0,0.05482897791113769 -11372.0,0.054810043923029475 -11373.0,0.05479111647335988 -11374.0,0.054772195559870965 -11375.0,0.05475328118030561 -11376.0,0.05473437333240748 -11377.0,0.054715472013921025 -11378.0,0.05469657722259141 -11379.0,0.05467768895616464 -11380.0,0.0546588072123875 -11381.0,0.054639931989007524 -11382.0,0.05462106328377305 -11383.0,0.05460220109443315 -11384.0,0.05458334541873772 -11385.0,0.05456449625443741 -11386.0,0.05454565359928368 -11387.0,0.05452681745102869 -11388.0,0.05450798780742545 -11389.0,0.05448916466622772 -11390.0,0.05447034802519005 -11391.0,0.05445153788206773 -11392.0,0.05443273423461685 -11393.0,0.05441393708059428 -11394.0,0.05439514641775767 -11395.0,0.05437636224386539 -11396.0,0.05435758455667666 -11397.0,0.054338813353951416 -11398.0,0.05432004863345041 -11399.0,0.054301290392935166 -11400.0,0.054282538630167916 -11401.0,0.054263793342911724 -11402.0,0.05424505452893043 -11403.0,0.05422632218598864 -11404.0,0.05420759631185169 -11405.0,0.05418887690428573 -11406.0,0.05417016396105767 -11407.0,0.05415145747993523 -11408.0,0.05413275745868681 -11409.0,0.054114063895081645 -11410.0,0.05409537678688974 -11411.0,0.054076696131881895 -11412.0,0.054058021927829575 -11413.0,0.05403935417250511 -11414.0,0.05402069286368159 -11415.0,0.05400203799913286 -11416.0,0.053983389576633505 -11417.0,0.05396474759395891 -11418.0,0.05394611204888523 -11419.0,0.05392748293918937 -11420.0,0.05390886026264905 -11421.0,0.05389024401704267 -11422.0,0.053871634200149475 -11423.0,0.05385303080974944 -11424.0,0.05383443384362334 -11425.0,0.053815843299552656 -11426.0,0.05379725917531968 -11427.0,0.05377868146870748 -11428.0,0.053760110177499876 -11429.0,0.053741545299481414 -11430.0,0.05372298683243746 -11431.0,0.053704434774154125 -11432.0,0.0536858891224183 -11433.0,0.05366734987501758 -11434.0,0.053648817029740406 -11435.0,0.05363029058437592 -11436.0,0.05361177053671407 -11437.0,0.05359325688454557 -11438.0,0.053574749625661826 -11439.0,0.05355624875785508 -11440.0,0.05353775427891831 -11441.0,0.05351926618664529 -11442.0,0.05350078447883048 -11443.0,0.05348230915326917 -11444.0,0.05346384020775737 -11445.0,0.05344537764009192 -11446.0,0.05342692144807031 -11447.0,0.053408471629490875 -11448.0,0.05339002818215268 -11449.0,0.053371591103855594 -11450.0,0.05335316039240015 -11451.0,0.05333473604558773 -11452.0,0.05331631806122043 -11453.0,0.05329790643710116 -11454.0,0.05327950117103349 -11455.0,0.053261102260821834 -11456.0,0.05324270970427133 -11457.0,0.05322432349918788 -11458.0,0.053205943643378176 -11459.0,0.05318757013464958 -11460.0,0.0531692029708103 -11461.0,0.05315084214966925 -11462.0,0.05313248766903616 -11463.0,0.053114139526721414 -11464.0,0.05309579772053624 -11465.0,0.0530774622482926 -11466.0,0.053059133107803226 -11467.0,0.053040810296881534 -11468.0,0.053022493813341766 -11469.0,0.05300418365499891 -11470.0,0.05298587981966872 -11471.0,0.05296758230516763 -11472.0,0.05294929110931291 -11473.0,0.05293100622992254 -11474.0,0.05291272766481528 -11475.0,0.05289445541181065 -11476.0,0.05287618946872885 -11477.0,0.052857929833390924 -11478.0,0.05283967650361862 -11479.0,0.05282142947723447 -11480.0,0.0528031887520617 -11481.0,0.052784954325924345 -11482.0,0.052766726196647164 -11483.0,0.052748504362055706 -11484.0,0.052730288819976184 -11485.0,0.05271207956823565 -11486.0,0.05269387660466186 -11487.0,0.052675679927083364 -11488.0,0.05265748953332939 -11489.0,0.05263930542122997 -11490.0,0.05262112758861588 -11491.0,0.05260295603331866 -11492.0,0.05258479075317052 -11493.0,0.052566631746004504 -11494.0,0.05254847900965438 -11495.0,0.05253033254195465 -11496.0,0.0525121923407406 -11497.0,0.05249405840384819 -11498.0,0.0524759307291142 -11499.0,0.052457809314376116 -11500.0,0.052439694157472225 -11501.0,0.052421585256241465 -11502.0,0.05240348260852361 -11503.0,0.05238538621215914 -11504.0,0.0523672960649893 -11505.0,0.05234921216485604 -11506.0,0.052331134509602084 -11507.0,0.05231306309707092 -11508.0,0.05229499792510677 -11509.0,0.052276938991554556 -11510.0,0.052258886294259996 -11511.0,0.05224083983106953 -11512.0,0.05222279959983035 -11513.0,0.052204765598390414 -11514.0,0.052186737824598345 -11515.0,0.052168716276303595 -11516.0,0.05215070095135631 -11517.0,0.05213269184760743 -11518.0,0.052114688962908544 -11519.0,0.05209669229511207 -11520.0,0.052078701842071126 -11521.0,0.05206071760163961 -11522.0,0.052042739571672096 -11523.0,0.05202476775002395 -11524.0,0.05200680213455127 -11525.0,0.051988842723110905 -11526.0,0.05197088951356039 -11527.0,0.05195294250375805 -11528.0,0.051935001691562954 -11529.0,0.0519170670748349 -11530.0,0.05189913865143438 -11531.0,0.0518812164192227 -11532.0,0.05186330037606184 -11533.0,0.05184539051981457 -11534.0,0.051827486848344394 -11535.0,0.05180958935951548 -11536.0,0.05179169805119282 -11537.0,0.0517738129212421 -11538.0,0.05175593396752979 -11539.0,0.051738061187923005 -11540.0,0.05172019458028969 -11541.0,0.05170233414249847 -11542.0,0.05168447987241876 -11543.0,0.05166663176792063 -11544.0,0.051648789826874944 -11545.0,0.0516309540471533 -11546.0,0.05161312442662805 -11547.0,0.05159530096317218 -11548.0,0.05157748365465952 -11549.0,0.05155967249896459 -11550.0,0.051541867493962654 -11551.0,0.05152406863752972 -11552.0,0.05150627592754248 -11553.0,0.0514884893618784 -11554.0,0.05147070893841568 -11555.0,0.051452934655033276 -11556.0,0.051435166509610795 -11557.0,0.05141740450002864 -11558.0,0.051399648624167946 -11559.0,0.051381898879910584 -11560.0,0.05136415526513909 -11561.0,0.05134641777773681 -11562.0,0.05132868641558779 -11563.0,0.051310961176576825 -11564.0,0.05129324205858938 -11565.0,0.051275529059511715 -11566.0,0.0512578221772308 -11567.0,0.05124012140963433 -11568.0,0.051222426754610764 -11569.0,0.05120473821004921 -11570.0,0.05118705577383957 -11571.0,0.05116937944387246 -11572.0,0.05115170921803925 -11573.0,0.051134045094231965 -11574.0,0.051116387070343425 -11575.0,0.05109873514426715 -11576.0,0.05108108931389743 -11577.0,0.05106344957712919 -11578.0,0.05104581593185816 -11579.0,0.05102818837598078 -11580.0,0.05101056690739424 -11581.0,0.050992951523996376 -11582.0,0.05097534222368581 -11583.0,0.0509577390043619 -11584.0,0.05094014186392473 -11585.0,0.05092255080027504 -11586.0,0.05090496581131436 -11587.0,0.050887386894944944 -11588.0,0.05086981404906974 -11589.0,0.050852247271592474 -11590.0,0.0508346865604175 -11591.0,0.050817131913449984 -11592.0,0.05079958332859578 -11593.0,0.05078204080376149 -11594.0,0.05076450433685438 -11595.0,0.05074697392578249 -11596.0,0.050729449568454585 -11597.0,0.05071193126278015 -11598.0,0.05069441900666933 -11599.0,0.05067691279803307 -11600.0,0.050659412634783005 -11601.0,0.05064191851483152 -11602.0,0.05062443043609163 -11603.0,0.05060694839647719 -11604.0,0.05058947239390269 -11605.0,0.05057200242628339 -11606.0,0.05055453849153526 -11607.0,0.05053708058757494 -11608.0,0.05051962871231985 -11609.0,0.050502182863688114 -11610.0,0.05048474303959859 -11611.0,0.05046730923797078 -11612.0,0.05044988145672499 -11613.0,0.05043245969378221 -11614.0,0.050415043947064184 -11615.0,0.050397634214493274 -11616.0,0.050380230493992664 -11617.0,0.05036283278348622 -11618.0,0.05034544108089853 -11619.0,0.05032805538415486 -11620.0,0.05031067569118123 -11621.0,0.05029330199990438 -11622.0,0.05027593430825178 -11623.0,0.050258572614151543 -11624.0,0.050241216915532565 -11625.0,0.05022386721032444 -11626.0,0.050206523496457475 -11627.0,0.05018918577186271 -11628.0,0.050171854034471844 -11629.0,0.050154528282217344 -11630.0,0.05013720851303237 -11631.0,0.05011989472485083 -11632.0,0.05010258691560727 -11633.0,0.050085285083237015 -11634.0,0.050067989225676075 -11635.0,0.05005069934086122 -11636.0,0.05003341542672983 -11637.0,0.050016137481220094 -11638.0,0.049998865502270874 -11639.0,0.04998159948782178 -11640.0,0.049964339435813035 -11641.0,0.04994708534418569 -11642.0,0.04992983721088144 -11643.0,0.04991259503384272 -11644.0,0.04989535881101268 -11645.0,0.04987812854033512 -11646.0,0.049860904219754615 -11647.0,0.04984368584721643 -11648.0,0.04982647342066656 -11649.0,0.049809266938051655 -11650.0,0.04979206639731911 -11651.0,0.04977487179641704 -11652.0,0.049757683133294275 -11653.0,0.049740500405900286 -11654.0,0.049723323612185316 -11655.0,0.04970615275010031 -11656.0,0.049688987817596925 -11657.0,0.04967182881262746 -11658.0,0.049654675733145005 -11659.0,0.04963752857710331 -11660.0,0.04962038734245688 -11661.0,0.04960325202716083 -11662.0,0.04958612262917108 -11663.0,0.04956899914644421 -11664.0,0.04955188157693752 -11665.0,0.049534769918609015 -11666.0,0.04951766416941737 -11667.0,0.04950056432732201 -11668.0,0.04948347039028305 -11669.0,0.04946638235626133 -11670.0,0.04944930022321833 -11671.0,0.049432223989116286 -11672.0,0.04941515365191814 -11673.0,0.04939808920958755 -11674.0,0.0493810306600888 -11675.0,0.049363978001386956 -11676.0,0.04934693123144776 -11677.0,0.049329890348237676 -11678.0,0.0493128553497238 -11679.0,0.049295826233874025 -11680.0,0.049278802998656876 -11681.0,0.049261785642041624 -11682.0,0.04924477416199823 -11683.0,0.04922776855649732 -11684.0,0.04921076882351026 -11685.0,0.04919377496100911 -11686.0,0.049176786966966646 -11687.0,0.04915980483935628 -11688.0,0.04914282857615219 -11689.0,0.04912585817532923 -11690.0,0.04910889363486299 -11691.0,0.049091934952729656 -11692.0,0.049074982126906225 -11693.0,0.04905803515537034 -11694.0,0.04904109403610037 -11695.0,0.049024158767075325 -11696.0,0.049007229346274966 -11697.0,0.04899030577167974 -11698.0,0.04897338804127081 -11699.0,0.048956476153029976 -11700.0,0.04893957010493979 -11701.0,0.04892266989498347 -11702.0,0.04890577552114497 -11703.0,0.04888888698140892 -11704.0,0.0488720042737606 -11705.0,0.04885512739618605 -11706.0,0.04883825634667197 -11707.0,0.048821391123205805 -11708.0,0.04880453172377561 -11709.0,0.048787678146370195 -11710.0,0.04877083038897906 -11711.0,0.0487539884495924 -11712.0,0.048737152326201065 -11713.0,0.048720322016796644 -11714.0,0.048703497519371405 -11715.0,0.04868667883191833 -11716.0,0.04866986595243102 -11717.0,0.04865305887890386 -11718.0,0.048636257609331865 -11719.0,0.04861946214171079 -11720.0,0.048602672474037066 -11721.0,0.04858588860430777 -11722.0,0.04856911053052073 -11723.0,0.04855233825067444 -11724.0,0.04853557176276812 -11725.0,0.0485188110648016 -11726.0,0.048502056154775465 -11727.0,0.04848530703069099 -11728.0,0.048468563690550144 -11729.0,0.04845182613235552 -11730.0,0.04843509435411048 -11731.0,0.04841836835381904 -11732.0,0.048401648129485934 -11733.0,0.04838493367911651 -11734.0,0.048368225000716886 -11735.0,0.04835152209229384 -11736.0,0.04833482495185485 -11737.0,0.04831813357740803 -11738.0,0.048301447966962244 -11739.0,0.04828476811852701 -11740.0,0.04826809403011257 -11741.0,0.048251425699729816 -11742.0,0.048234763125390316 -11743.0,0.04821810630510636 -11744.0,0.048201455236890914 -11745.0,0.04818480991875765 -11746.0,0.04816817034872085 -11747.0,0.04815153652479556 -11748.0,0.0481349084449975 -11749.0,0.04811828610734306 -11750.0,0.048101669509849294 -11751.0,0.04808505865053397 -11752.0,0.04806845352741554 -11753.0,0.04805185413851315 -11754.0,0.04803526048184658 -11755.0,0.04801867255543635 -11756.0,0.04800209035730363 -11757.0,0.04798551388547029 -11758.0,0.0479689431379589 -11759.0,0.04795237811279265 -11760.0,0.04793581880799547 -11761.0,0.047919265221591956 -11762.0,0.047902717351607414 -11763.0,0.04788617519606775 -11764.0,0.04786963875299964 -11765.0,0.04785310802043039 -11766.0,0.047836582996388044 -11767.0,0.04782006367890124 -11768.0,0.04780355006599935 -11769.0,0.04778704215571244 -11770.0,0.04777053994607125 -11771.0,0.047754043435107134 -11772.0,0.04773755262085222 -11773.0,0.047721067501339254 -11774.0,0.04770458807460172 -11775.0,0.04768811433867369 -11776.0,0.04767164629158999 -11777.0,0.047655183931386104 -11778.0,0.04763872725609819 -11779.0,0.047622276263763114 -11780.0,0.04760583095241834 -11781.0,0.047589391320102085 -11782.0,0.04757295736485323 -11783.0,0.04755652908471134 -11784.0,0.0475401064777166 -11785.0,0.047523689541909934 -11786.0,0.047507278275332916 -11787.0,0.04749087267602782 -11788.0,0.04747447274203755 -11789.0,0.04745807847140573 -11790.0,0.04744168986217663 -11791.0,0.04742530691239524 -11792.0,0.04740892962010715 -11793.0,0.047392557983358695 -11794.0,0.04737619200019685 -11795.0,0.04735983166866927 -11796.0,0.04734347698682432 -11797.0,0.047327127952710955 -11798.0,0.04731078456437887 -11799.0,0.04729444681987843 -11800.0,0.047278114717260684 -11801.0,0.047261788254577275 -11802.0,0.04724546742988061 -11803.0,0.04722915224122372 -11804.0,0.04721284268666035 -11805.0,0.04719653876424485 -11806.0,0.0471802404720323 -11807.0,0.047163947808078435 -11808.0,0.04714766077043967 -11809.0,0.04713137935717305 -11810.0,0.04711510356633633 -11811.0,0.047098833395987943 -11812.0,0.04708256884418698 -11813.0,0.047066309908993166 -11814.0,0.047050056588466956 -11815.0,0.04703380888066943 -11816.0,0.04701756678366237 -11817.0,0.04700133029550822 -11818.0,0.04698509941427006 -11819.0,0.04696887413801167 -11820.0,0.04695265446479751 -11821.0,0.046936440392692694 -11822.0,0.04692023191976297 -11823.0,0.04690402904407479 -11824.0,0.0468878317636953 -11825.0,0.04687164007669228 -11826.0,0.04685545398113414 -11827.0,0.04683927347509002 -11828.0,0.04682309855662971 -11829.0,0.04680692922382367 -11830.0,0.046790765474742986 -11831.0,0.046774607307459456 -11832.0,0.04675845472004553 -11833.0,0.04674230771057432 -11834.0,0.046726166277119625 -11835.0,0.04671003041775585 -11836.0,0.04669390013055813 -11837.0,0.046677775413602234 -11838.0,0.046661656264964615 -11839.0,0.04664554268272235 -11840.0,0.046629434664953215 -11841.0,0.04661333220973565 -11842.0,0.04659723531514876 -11843.0,0.04658114397927227 -11844.0,0.04656505820018662 -11845.0,0.04654897797597289 -11846.0,0.046532903304712846 -11847.0,0.04651683418448886 -11848.0,0.04650077061338403 -11849.0,0.04648471258948207 -11850.0,0.04646866011086742 -11851.0,0.046452613175625074 -11852.0,0.04643657178184078 -11853.0,0.04642053592760092 -11854.0,0.04640450561099252 -11855.0,0.046388480830103315 -11856.0,0.04637246158302162 -11857.0,0.04635644786783647 -11858.0,0.046340439682637555 -11859.0,0.04632443702551523 -11860.0,0.04630843989456045 -11861.0,0.046292448287864905 -11862.0,0.046276462203520906 -11863.0,0.04626048163962145 -11864.0,0.04624450659426014 -11865.0,0.046228537065531275 -11866.0,0.04621257305152982 -11867.0,0.04619661455035139 -11868.0,0.046180661560092234 -11869.0,0.04616471407884928 -11870.0,0.046148772104720105 -11871.0,0.04613283563580296 -11872.0,0.046116904670196766 -11873.0,0.046100979206001015 -11874.0,0.04608505924131595 -11875.0,0.04606914477424243 -11876.0,0.046053235802881995 -11877.0,0.046037332325336786 -11878.0,0.04602143433970965 -11879.0,0.04600554184410407 -11880.0,0.04598965483662421 -11881.0,0.045973773315374826 -11882.0,0.04595789727846139 -11883.0,0.04594202672399001 -11884.0,0.04592616165006745 -11885.0,0.0459103020548011 -11886.0,0.045894447936299036 -11887.0,0.04587859929266998 -11888.0,0.04586275612202332 -11889.0,0.045846918422469046 -11890.0,0.045831086192117856 -11891.0,0.04581525942908108 -11892.0,0.0457994381314707 -11893.0,0.04578362229739937 -11894.0,0.045767811924980334 -11895.0,0.04575200701232756 -11896.0,0.04573620755755562 -11897.0,0.04572041355877979 -11898.0,0.045704625014115915 -11899.0,0.04568884192168055 -11900.0,0.045673064279590905 -11901.0,0.04565729208596482 -11902.0,0.04564152533892077 -11903.0,0.0456257640365779 -11904.0,0.045610008177056 -11905.0,0.045594257758475545 -11906.0,0.04557851277895758 -11907.0,0.04556277323662386 -11908.0,0.045547039129596775 -11909.0,0.045531310455999355 -11910.0,0.045515587213955315 -11911.0,0.045499869401588934 -11912.0,0.04548415701702522 -11913.0,0.0454684500583898 -11914.0,0.04545274852380897 -11915.0,0.0454370524114096 -11916.0,0.04542136171931929 -11917.0,0.04540567644566625 -11918.0,0.04538999658857937 -11919.0,0.0453743221461881 -11920.0,0.04535865311662263 -11921.0,0.04534298949801374 -11922.0,0.04532733128849292 -11923.0,0.0453116784861922 -11924.0,0.04529603108924434 -11925.0,0.045280389095782726 -11926.0,0.045264752503941394 -11927.0,0.045249121311854976 -11928.0,0.0452334955176588 -11929.0,0.04521787511948883 -11930.0,0.04520226011548167 -11931.0,0.045186650503774566 -11932.0,0.04517104628250538 -11933.0,0.04515544744981266 -11934.0,0.04513985400383558 -11935.0,0.045124265942713966 -11936.0,0.04510868326458825 -11937.0,0.045093105967599544 -11938.0,0.04507753404988959 -11939.0,0.045061967509600794 -11940.0,0.04504640634487614 -11941.0,0.04503085055385932 -11942.0,0.045015300134694625 -11943.0,0.04499975508552704 -11944.0,0.04498421540450211 -11945.0,0.04496868108976608 -11946.0,0.04495315213946583 -11947.0,0.044937628551748855 -11948.0,0.044922110324763335 -11949.0,0.04490659745665801 -11950.0,0.04489108994558234 -11951.0,0.04487558778968638 -11952.0,0.044860090987120856 -11953.0,0.04484459953603709 -11954.0,0.04482911343458706 -11955.0,0.04481363268092341 -11956.0,0.04479815727319939 -11957.0,0.04478268720956889 -11958.0,0.044767222488186445 -11959.0,0.04475176310720723 -11960.0,0.04473630906478707 -11961.0,0.04472086035908238 -11962.0,0.04470541698825026 -11963.0,0.04468997895044842 -11964.0,0.04467454624383524 -11965.0,0.04465911886656967 -11966.0,0.04464369681681135 -11967.0,0.04462828009272055 -11968.0,0.044612868692458174 -11969.0,0.04459746261418576 -11970.0,0.04458206185606545 -11971.0,0.044566666416260045 -11972.0,0.044551276292933 -11973.0,0.04453589148424839 -11974.0,0.0445205119883709 -11975.0,0.04450513780346587 -11976.0,0.044489768927699284 -11977.0,0.04447440535923775 -11978.0,0.04445904709624849 -11979.0,0.04444369413689938 -11980.0,0.04442834647935893 -11981.0,0.04441300412179628 -11982.0,0.044397667062381185 -11983.0,0.04438233529928405 -11984.0,0.0443670088306759 -11985.0,0.044351687654728425 -11986.0,0.044336371769613914 -11987.0,0.04432106117350527 -11988.0,0.04430575586457606 -11989.0,0.04429045584100048 -11990.0,0.044275161100953364 -11991.0,0.04425987164261012 -11992.0,0.044244587464146855 -11993.0,0.044229308563740265 -11994.0,0.04421403493956772 -11995.0,0.04419876658980715 -11996.0,0.044183503512637154 -11997.0,0.04416824570623698 -11998.0,0.04415299316878649 -11999.0,0.044137745898466134 -12000.0,0.044122503893457045 -12001.0,0.04410726715194095 -12002.0,0.04409203567210025 -12003.0,0.04407680945211789 -12004.0,0.04406158849017753 -12005.0,0.044046372784463404 -12006.0,0.044031162333160394 -12007.0,0.044015957134454026 -12008.0,0.04400075718653039 -12009.0,0.04398556248757626 -12010.0,0.043970373035779026 -12011.0,0.043955188829326704 -12012.0,0.043940009866407906 -12013.0,0.0439248361452119 -12014.0,0.04390966766392858 -12015.0,0.043894504420748465 -12016.0,0.043879346413862666 -12017.0,0.04386419364146295 -12018.0,0.04384904610174171 -12019.0,0.04383390379289197 -12020.0,0.043818766713107325 -12021.0,0.04380363486058205 -12022.0,0.043788508233511034 -12023.0,0.04377338683008977 -12024.0,0.04375827064851441 -12025.0,0.04374315968698166 -12026.0,0.043728053943688915 -12027.0,0.04371295341683418 -12028.0,0.043697858104616065 -12029.0,0.043682768005233796 -12030.0,0.04366768311688724 -12031.0,0.04365260343777689 -12032.0,0.043637528966103865 -12033.0,0.043622459700069845 -12034.0,0.04360739563787721 -12035.0,0.04359233677772891 -12036.0,0.04357728311782857 -12037.0,0.04356223465638034 -12038.0,0.04354719139158908 -12039.0,0.04353215332166024 -12040.0,0.043517120444799905 -12041.0,0.04350209275921472 -12042.0,0.04348707026311201 -12043.0,0.043472052954699705 -12044.0,0.04345704083218635 -12045.0,0.04344203389378112 -12046.0,0.04342703213769377 -12047.0,0.043412035562134715 -12048.0,0.04339704416531497 -12049.0,0.04338205794544619 -12050.0,0.04336707690074059 -12051.0,0.04335210102941106 -12052.0,0.04333713032967109 -12053.0,0.0433221647997348 -12054.0,0.04330720443781688 -12055.0,0.04329224924213268 -12056.0,0.04327729921089816 -12057.0,0.0432623543423299 -12058.0,0.04324741463464506 -12059.0,0.043232480086061446 -12060.0,0.04321755069479749 -12061.0,0.04320262645907222 -12062.0,0.0431877073771053 -12063.0,0.043172793447116956 -12064.0,0.043157884667328075 -12065.0,0.04314298103596017 -12066.0,0.04312808255123534 -12067.0,0.04311318921137629 -12068.0,0.04309830101460635 -12069.0,0.04308341795914948 -12070.0,0.043068540043230255 -12071.0,0.043053667265073814 -12072.0,0.04303879962290596 -12073.0,0.04302393711495309 -12074.0,0.043009079739442235 -12075.0,0.04299422749460098 -12076.0,0.04297938037865758 -12077.0,0.042964538389840885 -12078.0,0.04294970152638036 -12079.0,0.04293486978650606 -12080.0,0.04292004316844867 -12081.0,0.04290522167043949 -12082.0,0.04289040529071041 -12083.0,0.042875594027493975 -12084.0,0.04286078787902327 -12085.0,0.042845986843532045 -12086.0,0.04283119091925465 -12087.0,0.042816400104426056 -12088.0,0.04280161439728178 -12089.0,0.04278683379605803 -12090.0,0.04277205829899157 -12091.0,0.042757287904319825 -12092.0,0.04274252261028075 -12093.0,0.04272776241511297 -12094.0,0.0427130073170557 -12095.0,0.04269825731434879 -12096.0,0.04268351240523264 -12097.0,0.04266877258794829 -12098.0,0.042654037860737404 -12099.0,0.042639308221842226 -12100.0,0.042624583669505646 -12101.0,0.04260986420197108 -12102.0,0.042595149817482636 -12103.0,0.042580440514284994 -12104.0,0.04256573629062345 -12105.0,0.04255103714474387 -12106.0,0.04253634307489277 -12107.0,0.042521654079317246 -12108.0,0.042506970156265034 -12109.0,0.042492291303984416 -12110.0,0.04247761752072432 -12111.0,0.04246294880473428 -12112.0,0.04244828515426444 -12113.0,0.04243362656756549 -12114.0,0.042418973042888795 -12115.0,0.042404324578486294 -12116.0,0.04238968117261055 -12117.0,0.04237504282351467 -12118.0,0.042360409529452435 -12119.0,0.04234578128867819 -12120.0,0.042331158099446896 -12121.0,0.04231653996001413 -12122.0,0.04230192686863602 -12123.0,0.042287318823569356 -12124.0,0.04227271582307149 -12125.0,0.042258117865400416 -12126.0,0.04224352494881466 -12127.0,0.04222893707157343 -12128.0,0.04221435423193648 -12129.0,0.042199776428164214 -12130.0,0.042185203658517564 -12131.0,0.04217063592125812 -12132.0,0.04215607321464807 -12133.0,0.0421415155369502 -12134.0,0.04212696288642784 -12135.0,0.042112415261344995 -12136.0,0.04209787265996623 -12137.0,0.04208333508055673 -12138.0,0.04206880252138227 -12139.0,0.042054274980709204 -12140.0,0.04203975245680451 -12141.0,0.04202523494793576 -12142.0,0.042010722452371134 -12143.0,0.04199621496837937 -12144.0,0.04198171249422984 -12145.0,0.041967215028192506 -12146.0,0.04195272256853795 -12147.0,0.04193823511353729 -12148.0,0.04192375266146228 -12149.0,0.041909275210585295 -12150.0,0.041894802759179284 -12151.0,0.041880335305517755 -12152.0,0.041865872847874866 -12153.0,0.04185141538452535 -12154.0,0.04183696291374455 -12155.0,0.04182251543380837 -12156.0,0.04180807294299333 -12157.0,0.04179363543957656 -12158.0,0.04177920292183576 -12159.0,0.04176477538804927 -12160.0,0.041750352836495946 -12161.0,0.04173593526545529 -12162.0,0.04172152267320741 -12163.0,0.041707115058033 -12164.0,0.04169271241821329 -12165.0,0.041678314752030175 -12166.0,0.041663922057766124 -12167.0,0.041649534333704205 -12168.0,0.041635151578128034 -12169.0,0.04162077378932187 -12170.0,0.041606400965570556 -12171.0,0.04159203310515952 -12172.0,0.04157767020637476 -12173.0,0.04156331226750289 -12174.0,0.04154895928683113 -12175.0,0.041534611262647264 -12176.0,0.0415202681932397 -12177.0,0.041505930076897374 -12178.0,0.04149159691190987 -12179.0,0.04147726869656735 -12180.0,0.04146294542916058 -12181.0,0.04144862710798086 -12182.0,0.041434313731320144 -12183.0,0.04142000529747094 -12184.0,0.04140570180472638 -12185.0,0.041391403251380125 -12186.0,0.04137710963572648 -12187.0,0.041362820956060316 -12188.0,0.041348537210677126 -12189.0,0.04133425839787292 -12190.0,0.041319984515944354 -12191.0,0.04130571556318867 -12192.0,0.041291451537903694 -12193.0,0.0412771924383878 -12194.0,0.041262938262939995 -12195.0,0.04124868900985987 -12196.0,0.04123444467744758 -12197.0,0.041220205264003905 -12198.0,0.041205970767830155 -12199.0,0.041191741187228265 -12200.0,0.04117751652050076 -12201.0,0.041163296765950756 -12202.0,0.0411490819218819 -12203.0,0.04113487198659849 -12204.0,0.041120666958405376 -12205.0,0.04110646683560802 -12206.0,0.041092271616512424 -12207.0,0.041078081299425216 -12208.0,0.04106389588265359 -12209.0,0.04104971536450535 -12210.0,0.041035539743288836 -12211.0,0.041021369017313 -12212.0,0.04100720318488739 -12213.0,0.040993042244322125 -12214.0,0.04097888619392792 -12215.0,0.04096473503201604 -12216.0,0.04095058875689835 -12217.0,0.04093644736688732 -12218.0,0.040922310860296 -12219.0,0.040908179235437964 -12220.0,0.040894052490627435 -12221.0,0.0408799306241792 -12222.0,0.04086581363440864 -12223.0,0.04085170151963166 -12224.0,0.04083759427816481 -12225.0,0.04082349190832519 -12226.0,0.040809394408430524 -12227.0,0.040795301776799034 -12228.0,0.04078121401174959 -12229.0,0.040767131111601636 -12230.0,0.04075305307467519 -12231.0,0.04073897989929082 -12232.0,0.0407249115837697 -12233.0,0.0407108481264336 -12234.0,0.04069678952560485 -12235.0,0.04068273577960636 -12236.0,0.04066868688676161 -12237.0,0.04065464284539468 -12238.0,0.04064060365383021 -12239.0,0.04062656931039345 -12240.0,0.04061253981341017 -12241.0,0.04059851516120677 -12242.0,0.040584495352110214 -12243.0,0.040570480384448056 -12244.0,0.04055647025654837 -12245.0,0.04054246496673988 -12246.0,0.040528464513351854 -12247.0,0.040514468894714155 -12248.0,0.040500478109157176 -12249.0,0.040486492155011926 -12250.0,0.040472511030609996 -12251.0,0.040458534734283534 -12252.0,0.04044456326436528 -12253.0,0.04043059661918852 -12254.0,0.04041663479708714 -12255.0,0.0404026777963956 -12256.0,0.04038872561544895 -12257.0,0.04037477825258276 -12258.0,0.040360835706133226 -12259.0,0.040346897974437114 -12260.0,0.04033296505583176 -12261.0,0.040319036948655046 -12262.0,0.04030511365124545 -12263.0,0.040291195161942045 -12264.0,0.04027728147908446 -12265.0,0.04026337260101286 -12266.0,0.04024946852606804 -12267.0,0.04023556925259135 -12268.0,0.04022167477892471 -12269.0,0.04020778510341059 -12270.0,0.04019390022439206 -12271.0,0.04018002014021276 -12272.0,0.0401661448492169 -12273.0,0.040152274349749266 -12274.0,0.040138408640155186 -12275.0,0.0401245477187806 -12276.0,0.04011069158397199 -12277.0,0.04009684023407644 -12278.0,0.040082993667441565 -12279.0,0.04006915188241556 -12280.0,0.04005531487734723 -12281.0,0.04004148265058592 -12282.0,0.04002765520048152 -12283.0,0.040013832525384534 -12284.0,0.040000014623646 -12285.0,0.03998620149361759 -12286.0,0.039972393133651446 -12287.0,0.039958589542100346 -12288.0,0.03994479071731763 -12289.0,0.039930996657657196 -12290.0,0.03991720736147353 -12291.0,0.039903422827121636 -12292.0,0.039889643052957134 -12293.0,0.0398758680373362 -12294.0,0.039862097778615595 -12295.0,0.03984833227515259 -12296.0,0.03983457152530507 -12297.0,0.0398208155274315 -12298.0,0.03980706427989088 -12299.0,0.039793317781042774 -12300.0,0.039779576029247324 -12301.0,0.039765839022865256 -12302.0,0.03975210676025785 -12303.0,0.039738379239786924 -12304.0,0.03972465645981489 -12305.0,0.03971093841870473 -12306.0,0.039697225114819996 -12307.0,0.03968351654652475 -12308.0,0.039669812712183686 -12309.0,0.03965611361016203 -12310.0,0.03964241923882558 -12311.0,0.03962872959654073 -12312.0,0.039615044681674344 -12313.0,0.039601364492593945 -12314.0,0.039587689027667586 -12315.0,0.0395740182852639 -12316.0,0.03956035226375203 -12317.0,0.039546690961501735 -12318.0,0.039533034376883325 -12319.0,0.039519382508267684 -12320.0,0.03950573535402621 -12321.0,0.03949209291253091 -12322.0,0.03947845518215436 -12323.0,0.03946482216126966 -12324.0,0.03945119384825049 -12325.0,0.03943757024147109 -12326.0,0.03942395133930627 -12327.0,0.03941033714013139 -12328.0,0.03939672764232239 -12329.0,0.039383122844255734 -12330.0,0.03936952274430847 -12331.0,0.039355927340858216 -12332.0,0.039342336632283155 -12333.0,0.039328750616961984 -12334.0,0.03931516929327399 -12335.0,0.039301592659599045 -12336.0,0.039288020714317556 -12337.0,0.03927445345581046 -12338.0,0.0392608908824593 -12339.0,0.039247332992646156 -12340.0,0.03923377978475369 -12341.0,0.03922023125716507 -12342.0,0.03920668740826407 -12343.0,0.03919314823643501 -12344.0,0.039179613740062784 -12345.0,0.03916608391753278 -12346.0,0.039152558767231026 -12347.0,0.03913903828754405 -12348.0,0.03912552247685897 -12349.0,0.039112011333563464 -12350.0,0.03909850485604571 -12351.0,0.03908500304269451 -12352.0,0.039071505891899186 -12353.0,0.039058013402049646 -12354.0,0.03904452557153631 -12355.0,0.03903104239875019 -12356.0,0.039017563882082835 -12357.0,0.03900409001992638 -12358.0,0.038990620810673456 -12359.0,0.0389771562527173 -12360.0,0.03896369634445169 -12361.0,0.03895024108427097 -12362.0,0.03893679047057 -12363.0,0.038923344501744235 -12364.0,0.03890990317618966 -12365.0,0.03889646649230283 -12366.0,0.03888303444848087 -12367.0,0.03886960704312138 -12368.0,0.03885618427462261 -12369.0,0.03884276614138331 -12370.0,0.03882935264180281 -12371.0,0.038815943774280944 -12372.0,0.038802539537218156 -12373.0,0.038789139929015407 -12374.0,0.038775744948074245 -12375.0,0.03876235459279671 -12376.0,0.03874896886158546 -12377.0,0.03873558775284365 -12378.0,0.03872221126497505 -12379.0,0.0387088393963839 -12380.0,0.03869547214547505 -12381.0,0.038682109510653886 -12382.0,0.03866875149032636 -12383.0,0.03865539808289892 -12384.0,0.03864204928677862 -12385.0,0.03862870510037305 -12386.0,0.03861536552209035 -12387.0,0.03860203055033921 -12388.0,0.03858870018352884 -12389.0,0.03857537442006904 -12390.0,0.03856205325837014 -12391.0,0.03854873669684304 -12392.0,0.03853542473389915 -12393.0,0.03852211736795044 -12394.0,0.03850881459740947 -12395.0,0.03849551642068931 -12396.0,0.03848222283620356 -12397.0,0.03846893384236641 -12398.0,0.038455649437592575 -12399.0,0.038442369620297345 -12400.0,0.038429094388896495 -12401.0,0.03841582374180641 -12402.0,0.03840255767744399 -12403.0,0.0383892961942267 -12404.0,0.038376039290572546 -12405.0,0.03836278696490006 -12406.0,0.03834953921562834 -12407.0,0.038336296041177026 -12408.0,0.03832305743996633 -12409.0,0.038309823410416936 -12410.0,0.03829659395095015 -12411.0,0.03828336905998779 -12412.0,0.03827014873595224 -12413.0,0.03825693297726637 -12414.0,0.03824372178235367 -12415.0,0.03823051514963813 -12416.0,0.03821731307754431 -12417.0,0.038204115564497265 -12418.0,0.03819092260892265 -12419.0,0.03817773420924664 -12420.0,0.03816455036389597 -12421.0,0.038151371071297874 -12422.0,0.03813819632988017 -12423.0,0.038125026138071214 -12424.0,0.03811186049429989 -12425.0,0.03809869939699566 -12426.0,0.038085542844588455 -12427.0,0.03807239083550882 -12428.0,0.03805924336818781 -12429.0,0.03804610044105705 -12430.0,0.038032962052548656 -12431.0,0.03801982820109532 -12432.0,0.038006698885130266 -12433.0,0.03799357410308729 -12434.0,0.03798045385340067 -12435.0,0.037967338134505264 -12436.0,0.03795422694483646 -12437.0,0.03794112028283022 -12438.0,0.03792801814692296 -12439.0,0.037914920535551726 -12440.0,0.03790182744715406 -12441.0,0.03788873888016806 -12442.0,0.03787565483303236 -12443.0,0.0378625753041861 -12444.0,0.03784950029206901 -12445.0,0.03783642979512133 -12446.0,0.03782336381178386 -12447.0,0.0378103023404979 -12448.0,0.037797245379705316 -12449.0,0.037784192927848514 -12450.0,0.03777114498337045 -12451.0,0.03775810154471456 -12452.0,0.037745062610324884 -12453.0,0.03773202817864597 -12454.0,0.0377189982481229 -12455.0,0.0377059728172013 -12456.0,0.03769295188432732 -12457.0,0.03767993544794768 -12458.0,0.0376669235065096 -12459.0,0.03765391605846085 -12460.0,0.037640913102249735 -12461.0,0.0376279146363251 -12462.0,0.037614920659136325 -12463.0,0.03760193116913334 -12464.0,0.03758894616476656 -12465.0,0.03757596564448698 -12466.0,0.037562989606746124 -12467.0,0.03755001804999606 -12468.0,0.03753705097268934 -12469.0,0.03752408837327911 -12470.0,0.03751113025021902 -12471.0,0.037498176601963286 -12472.0,0.03748522742696659 -12473.0,0.037472282723684205 -12474.0,0.03745934249057193 -12475.0,0.0374464067260861 -12476.0,0.03743347542868354 -12477.0,0.037420548596821666 -12478.0,0.037407626228958386 -12479.0,0.03739470832355217 -12480.0,0.037381794879062014 -12481.0,0.03736888589394741 -12482.0,0.03735598136666842 -12483.0,0.037343081295685636 -12484.0,0.037330185679460184 -12485.0,0.03731729451645368 -12486.0,0.037304407805128316 -12487.0,0.03729152554394681 -12488.0,0.03727864773137241 -12489.0,0.037265774365868864 -12490.0,0.03725290544590047 -12491.0,0.03724004096993209 -12492.0,0.03722718093642907 -12493.0,0.03721432534385729 -12494.0,0.037201474190683176 -12495.0,0.037188627475373694 -12496.0,0.037175785196396326 -12497.0,0.037162947352219054 -12498.0,0.03715011394131043 -12499.0,0.037137284962139534 -12500.0,0.03712446041317595 -12501.0,0.037111640292889825 -12502.0,0.03709882459975178 -12503.0,0.037086013332233006 -12504.0,0.037073206488805216 -12505.0,0.037060404067940665 -12506.0,0.03704760606811208 -12507.0,0.03703481248779277 -12508.0,0.037022023325456566 -12509.0,0.037009238579577816 -12510.0,0.03699645824863137 -12511.0,0.036983682331092636 -12512.0,0.03697091082543754 -12513.0,0.03695814373014256 -12514.0,0.03694538104368464 -12515.0,0.03693262276454129 -12516.0,0.03691986889119055 -12517.0,0.03690711942211098 -12518.0,0.03689437435578166 -12519.0,0.03688163369068219 -12520.0,0.036868897425292695 -12521.0,0.03685616555809384 -12522.0,0.03684343808756682 -12523.0,0.03683071501219331 -12524.0,0.03681799633045556 -12525.0,0.036805282040836315 -12526.0,0.03679257214181888 -12527.0,0.036779866631887016 -12528.0,0.036767165509525065 -12529.0,0.03675446877321788 -12530.0,0.03674177642145085 -12531.0,0.03672908845270983 -12532.0,0.03671640486548126 -12533.0,0.03670372565825208 -12534.0,0.03669105082950976 -12535.0,0.03667838037774227 -12536.0,0.036665714301438126 -12537.0,0.036653052599086355 -12538.0,0.03664039526917651 -12539.0,0.03662774231019868 -12540.0,0.03661509372064342 -12541.0,0.03660244949900188 -12542.0,0.036589809643765674 -12543.0,0.03657717415342699 -12544.0,0.03656454302647847 -12545.0,0.036551916261413325 -12546.0,0.03653929385672528 -12547.0,0.0365266758109086 -12548.0,0.03651406212245799 -12549.0,0.03650145278986875 -12550.0,0.03648884781163669 -12551.0,0.03647624718625814 -12552.0,0.036463650912229896 -12553.0,0.036451058988049345 -12554.0,0.03643847141221435 -12555.0,0.03642588818322331 -12556.0,0.036413309299575154 -12557.0,0.03640073475976928 -12558.0,0.036388164562305654 -12559.0,0.03637559870568474 -12560.0,0.03636303718840755 -12561.0,0.03635048000897553 -12562.0,0.036337927165890745 -12563.0,0.03632537865765571 -12564.0,0.03631283448277351 -12565.0,0.03630029463974768 -12566.0,0.03628775912708232 -12567.0,0.036275227943282036 -12568.0,0.03626270108685197 -12569.0,0.036250178556297724 -12570.0,0.03623766035012547 -12571.0,0.03622514646684188 -12572.0,0.03621263690495414 -12573.0,0.03620013166296993 -12574.0,0.03618763073939748 -12575.0,0.03617513413274553 -12576.0,0.036162641841523305 -12577.0,0.0361501538642406 -12578.0,0.036137670199407654 -12579.0,0.03612519084553527 -12580.0,0.03611271580113475 -12581.0,0.036100245064717935 -12582.0,0.03608777863479712 -12583.0,0.036075316509885165 -12584.0,0.03606285868849544 -12585.0,0.03605040516914182 -12586.0,0.03603795595033867 -12587.0,0.0360255110306009 -12588.0,0.03601307040844392 -12589.0,0.03600063408238367 -12590.0,0.035988202050936564 -12591.0,0.03597577431261956 -12592.0,0.035963350865950115 -12593.0,0.03595093170944621 -12594.0,0.03593851684162634 -12595.0,0.035926106261009484 -12596.0,0.03591369996611515 -12597.0,0.03590129795546336 -12598.0,0.03588890022757467 -12599.0,0.03587650678097008 -12600.0,0.035864117614171166 -12601.0,0.03585173272569998 -12602.0,0.03583935211407912 -12603.0,0.035826975777831636 -12604.0,0.03581460371548113 -12605.0,0.03580223592555172 -12606.0,0.03578987240656802 -12607.0,0.03577751315705513 -12608.0,0.03576515817553869 -12609.0,0.03575280746054485 -12610.0,0.03574046101060025 -12611.0,0.035728118824232075 -12612.0,0.03571578089996795 -12613.0,0.03570344723633607 -12614.0,0.03569111783186512 -12615.0,0.03567879268508431 -12616.0,0.035666471794523306 -12617.0,0.03565415515871233 -12618.0,0.0356418427761821 -12619.0,0.035629534645463846 -12620.0,0.035617230765089276 -12621.0,0.03560493113359064 -12622.0,0.03559263574950068 -12623.0,0.03558034461135267 -12624.0,0.035568057717680325 -12625.0,0.035555775067017924 -12626.0,0.03554349665790024 -12627.0,0.03553122248886257 -12628.0,0.03551895255844065 -12629.0,0.03550668686517079 -12630.0,0.035494425407589784 -12631.0,0.03548216818423493 -12632.0,0.03546991519364404 -12633.0,0.0354576664343554 -12634.0,0.03544542190490783 -12635.0,0.03543318160384064 -12636.0,0.03542094552969368 -12637.0,0.035408713681007245 -12638.0,0.035396486056322174 -12639.0,0.0353842626541798 -12640.0,0.035372043473121985 -12641.0,0.035359828511691026 -12642.0,0.03534761776842979 -12643.0,0.035335411241881616 -12644.0,0.035323208930590384 -12645.0,0.035311010833100405 -12646.0,0.03529881694795656 -12647.0,0.03528662727370419 -12648.0,0.03527444180888918 -12649.0,0.03526226055205789 -12650.0,0.03525008350175716 -12651.0,0.03523791065653437 -12652.0,0.035225742014937396 -12653.0,0.03521357757551461 -12654.0,0.035201417336814866 -12655.0,0.035189261297387545 -12656.0,0.035177109455782514 -12657.0,0.03516496181055018 -12658.0,0.03515281836024136 -12659.0,0.03514067910340747 -12660.0,0.03512854403860037 -12661.0,0.03511641316437246 -12662.0,0.03510428647927658 -12663.0,0.03509216398186612 -12664.0,0.03508004567069495 -12665.0,0.03506793154431746 -12666.0,0.035055821601288506 -12667.0,0.03504371584016346 -12668.0,0.0350316142594982 -12669.0,0.0350195168578491 -12670.0,0.03500742363377303 -12671.0,0.034995334585827334 -12672.0,0.03498324971256989 -12673.0,0.03497116901255907 -12674.0,0.034959092484353735 -12675.0,0.034947020126513226 -12676.0,0.0349349519375974 -12677.0,0.03492288791616662 -12678.0,0.03491082806078176 -12679.0,0.03489877237000411 -12680.0,0.03488672084239556 -12681.0,0.034874673476518424 -12682.0,0.03486263027093557 -12683.0,0.0348505912242103 -12684.0,0.034838556334906456 -12685.0,0.034826525601588366 -12686.0,0.03481449902282084 -12687.0,0.03480247659716922 -12688.0,0.0347904583231993 -12689.0,0.03477844419947738 -12690.0,0.034766434224570264 -12691.0,0.03475442839704528 -12692.0,0.03474242671547018 -12693.0,0.03473042917841328 -12694.0,0.034718435784443336 -12695.0,0.034706446532129655 -12696.0,0.034694461420041976 -12697.0,0.03468248044675058 -12698.0,0.034670503610826214 -12699.0,0.03465853091084015 -12700.0,0.03464656234536411 -12701.0,0.034634597912970334 -12702.0,0.034622637612231555 -12703.0,0.03461068144172101 -12704.0,0.03459872940001239 -12705.0,0.034586781485679924 -12706.0,0.0345748376972983 -12707.0,0.034562898033442715 -12708.0,0.03455096249268887 -12709.0,0.03453903107361292 -12710.0,0.03452710377479153 -12711.0,0.03451518059480189 -12712.0,0.034503261532221635 -12713.0,0.03449134658562889 -12714.0,0.03447943575360231 -12715.0,0.034467529034721014 -12716.0,0.03445562642756463 -12717.0,0.03444372793071324 -12718.0,0.03443183354274745 -12719.0,0.03441994326224835 -12720.0,0.034408057087797525 -12721.0,0.03439617501797702 -12722.0,0.034384297051369396 -12723.0,0.034372423186557706 -12724.0,0.03436055342212548 -12725.0,0.03434868775665676 -12726.0,0.03433682618873603 -12727.0,0.0343249687169483 -12728.0,0.03431311533987906 -12729.0,0.034301266056114305 -12730.0,0.03428942086424048 -12731.0,0.03427757976284455 -12732.0,0.03426574275051395 -12733.0,0.034253909825836634 -12734.0,0.03424208098740099 -12735.0,0.03423025623379594 -12736.0,0.03421843556361087 -12737.0,0.034206618975435685 -12738.0,0.03419480646786072 -12739.0,0.03418299803947683 -12740.0,0.03417119368887537 -12741.0,0.03415939341464818 -12742.0,0.03414759721538754 -12743.0,0.03413580508968628 -12744.0,0.034124017036137655 -12745.0,0.03411223305333546 -12746.0,0.034100453139873955 -12747.0,0.03408867729434786 -12748.0,0.03407690551535242 -12749.0,0.03406513780148333 -12750.0,0.03405337415133683 -12751.0,0.03404161456350954 -12752.0,0.03402985903659867 -12753.0,0.034018107569201865 -12754.0,0.03400636015991726 -12755.0,0.03399461680734346 -12756.0,0.03398287751007958 -12757.0,0.03397114226672521 -12758.0,0.03395941107588042 -12759.0,0.03394768393614576 -12760.0,0.033935960846122264 -12761.0,0.033924241804411455 -12762.0,0.033912526809615345 -12763.0,0.033900815860336435 -12764.0,0.03388910895517765 -12765.0,0.03387740609274248 -12766.0,0.033865707271634835 -12767.0,0.03385401249045916 -12768.0,0.03384232174782032 -12769.0,0.033830635042323705 -12770.0,0.033818952372575185 -12771.0,0.033807273737181114 -12772.0,0.033795599134748285 -12773.0,0.033783928563884014 -12774.0,0.03377226202319609 -12775.0,0.0337605995112928 -12776.0,0.03374894102678286 -12777.0,0.0337372865682755 -12778.0,0.03372563613438044 -12779.0,0.033713989723707885 -12780.0,0.033702347334868474 -12781.0,0.03369070896647336 -12782.0,0.03367907461713417 -12783.0,0.033667444285463026 -12784.0,0.03365581797007251 -12785.0,0.033644195669575674 -12786.0,0.03363257738258607 -12787.0,0.03362096310771773 -12788.0,0.03360935284358515 -12789.0,0.033597746588803296 -12790.0,0.03358614434198764 -12791.0,0.03357454610175411 -12792.0,0.03356295186671915 -12793.0,0.033551361635499606 -12794.0,0.03353977540671288 -12795.0,0.0335281931789768 -12796.0,0.033516614950909726 -12797.0,0.03350504072113041 -12798.0,0.03349347048825817 -12799.0,0.033481904250912735 -12800.0,0.03347034200771436 -12801.0,0.03345878375728375 -12802.0,0.03344722949824207 -12803.0,0.03343567922921099 -12804.0,0.033424132948812656 -12805.0,0.03341259065566969 -12806.0,0.03340105234840516 -12807.0,0.03338951802564263 -12808.0,0.033377987686006146 -12809.0,0.03336646132812024 -12810.0,0.03335493895060987 -12811.0,0.03334342055210051 -12812.0,0.033331906131218114 -12813.0,0.033320395686589094 -12814.0,0.03330888921684031 -12815.0,0.03329738672059915 -12816.0,0.033285888196493446 -12817.0,0.03327439364315152 -12818.0,0.03326290305920212 -12819.0,0.03325141644327453 -12820.0,0.033239933793998463 -12821.0,0.03322845511000415 -12822.0,0.033216980389922254 -12823.0,0.03320550963238392 -12824.0,0.033194042836020766 -12825.0,0.03318257999946489 -12826.0,0.03317112112134888 -12827.0,0.03315966620030575 -12828.0,0.03314821523496901 -12829.0,0.033136768223972664 -12830.0,0.03312532516595117 -12831.0,0.03311388605953942 -12832.0,0.033102450903372826 -12833.0,0.03309101969608727 -12834.0,0.033079592436319104 -12835.0,0.033068169122705104 -12836.0,0.03305674975388257 -12837.0,0.03304533432848926 -12838.0,0.033033922845163384 -12839.0,0.03302251530254366 -12840.0,0.033011111699269215 -12841.0,0.03299971203397971 -12842.0,0.03298831630531523 -12843.0,0.03297692451191637 -12844.0,0.032965536652424146 -12845.0,0.032954152725480086 -12846.0,0.032942772729726164 -12847.0,0.032931396663804846 -12848.0,0.032920024526359025 -12849.0,0.0329086563160321 -12850.0,0.03289729203146792 -12851.0,0.032885931671310834 -12852.0,0.032874575234205596 -12853.0,0.032863222718797484 -12854.0,0.03285187412373223 -12855.0,0.03284052944765604 -12856.0,0.03282918868921554 -12857.0,0.032817851847057884 -12858.0,0.03280651891983068 -12859.0,0.032795189906181965 -12860.0,0.0327838648047603 -12861.0,0.032772543614214666 -12862.0,0.03276122633319452 -12863.0,0.032749912960349806 -12864.0,0.032738603494330935 -12865.0,0.03272729793378873 -12866.0,0.03271599627737455 -12867.0,0.03270469852374018 -12868.0,0.032693404671537904 -12869.0,0.0326821147194204 -12870.0,0.032670828666040895 -12871.0,0.03265954651005304 -12872.0,0.03264826825011096 -12873.0,0.032636993884869216 -12874.0,0.032625723412982886 -12875.0,0.032614456833107465 -12876.0,0.03260319414389894 -12877.0,0.03259193534401378 -12878.0,0.03258068043210885 -12879.0,0.03256942940684154 -12880.0,0.03255818226686968 -12881.0,0.03254693901085158 -12882.0,0.032535699637445986 -12883.0,0.03252446414531213 -12884.0,0.032513232533109705 -12885.0,0.032502004799498864 -12886.0,0.0324907809431402 -12887.0,0.0324795609626948 -12888.0,0.03246834485682421 -12889.0,0.032457132624190435 -12890.0,0.03244592426345591 -12891.0,0.03243471977328358 -12892.0,0.03242351915233682 -12893.0,0.032412322399279506 -12894.0,0.032401129512775906 -12895.0,0.03238994049149081 -12896.0,0.03237875533408945 -12897.0,0.03236757403923752 -12898.0,0.03235639660560118 -12899.0,0.032345223031847024 -12900.0,0.03233405331664213 -12901.0,0.03232288745865405 -12902.0,0.03231172545655077 -12903.0,0.03230056730900073 -12904.0,0.032289413014672856 -12905.0,0.032278262572236524 -12906.0,0.03226711598036158 -12907.0,0.03225597323771828 -12908.0,0.03224483434297741 -12909.0,0.03223369929481017 -12910.0,0.03222256809188823 -12911.0,0.03221144073288371 -12912.0,0.03220031721646921 -12913.0,0.03218919754131777 -12914.0,0.032178081706102896 -12915.0,0.032166969709498554 -12916.0,0.03215586155017915 -12917.0,0.03214475722681957 -12918.0,0.03213365673809515 -12919.0,0.032122560082681696 -12920.0,0.03211146725925543 -12921.0,0.03210037826649307 -12922.0,0.032089293103071785 -12923.0,0.0320782117676692 -12924.0,0.03206713425896338 -12925.0,0.032056060575632865 -12926.0,0.03204499071635664 -12927.0,0.03203392467981418 -12928.0,0.032022862464685345 -12929.0,0.03201180406965051 -12930.0,0.0320007494933905 -12931.0,0.03198969873458659 -12932.0,0.03197865179192047 -12933.0,0.031967608664074346 -12934.0,0.031956569349730846 -12935.0,0.031945533847573065 -12936.0,0.031934502156284565 -12937.0,0.03192347427454931 -12938.0,0.031912450201051774 -12939.0,0.03190142993447686 -12940.0,0.031890413473509946 -12941.0,0.03187940081683682 -12942.0,0.031868391963143776 -12943.0,0.03185738691111753 -12944.0,0.03184638565944527 -12945.0,0.0318353882068146 -12946.0,0.031824394551913625 -12947.0,0.03181340469343087 -12948.0,0.03180241863005536 -12949.0,0.03179143636047649 -12950.0,0.031780457883384176 -12951.0,0.031769483197468765 -12952.0,0.03175851230142106 -12953.0,0.031747545193932324 -12954.0,0.031736581873694235 -12955.0,0.031725622339398955 -12956.0,0.03171466658973911 -12957.0,0.03170371462340775 -12958.0,0.03169276643909837 -12959.0,0.03168182203550495 -12960.0,0.03167088141132189 -12961.0,0.031659944565244076 -12962.0,0.03164901149596679 -12963.0,0.03163808220218582 -12964.0,0.031627156682597364 -12965.0,0.031616234935898116 -12966.0,0.031605316960785154 -12967.0,0.03159440275595606 -12968.0,0.031583492320108854 -12969.0,0.03157258565194201 -12970.0,0.03156168275015441 -12971.0,0.03155078361344543 -12972.0,0.0315398882405149 -12973.0,0.03152899663006307 -12974.0,0.03151810878079065 -12975.0,0.0315072246913988 -12976.0,0.03149634436058912 -12977.0,0.03148546778706367 -12978.0,0.03147459496952497 -12979.0,0.03146372590667594 -12980.0,0.03145286059722001 -12981.0,0.03144199903986101 -12982.0,0.031431141233303254 -12983.0,0.031420287176251456 -12984.0,0.03140943686741083 -12985.0,0.031398590305487 -12986.0,0.031387747489186074 -12987.0,0.03137690841721455 -12988.0,0.03136607308827942 -12989.0,0.03135524150108811 -12990.0,0.03134441365434849 -12991.0,0.03133358954676888 -12992.0,0.03132276917705804 -12993.0,0.03131195254392517 -12994.0,0.03130113964607994 -12995.0,0.031290330482232454 -12996.0,0.03127952505109323 -12997.0,0.031268723351373276 -12998.0,0.03125792538178403 -12999.0,0.03124713114103738 -13000.0,0.03123634062784563 -13001.0,0.031225553840921565 -13002.0,0.031214770778978395 -13003.0,0.031203991440729793 -13004.0,0.03119321582488984 -13005.0,0.031182443930173095 -13006.0,0.031171675755294552 -13007.0,0.031160911298969654 -13008.0,0.031150150559914255 -13009.0,0.031139393536844695 -13010.0,0.031128640228477736 -13011.0,0.031117890633530584 -13012.0,0.03110714475072091 -13013.0,0.03109640257876678 -13014.0,0.03108566411638674 -13015.0,0.031074929362299775 -13016.0,0.03106419831522532 -13017.0,0.03105347097388321 -13018.0,0.031042747336993765 -13019.0,0.031032027403277738 -13020.0,0.031021311171456324 -13021.0,0.031010598640251137 -13022.0,0.030999889808384258 -13023.0,0.030989184674578202 -13024.0,0.03097848323755594 -13025.0,0.030967785496040838 -13026.0,0.030957091448756753 -13027.0,0.030946401094427957 -13028.0,0.03093571443177917 -13029.0,0.03092503145953557 -13030.0,0.030914352176422723 -13031.0,0.030903676581166686 -13032.0,0.030893004672493934 -13033.0,0.030882336449131402 -13034.0,0.03087167190980642 -13035.0,0.030861011053246803 -13036.0,0.030850353878180786 -13037.0,0.03083970038333706 -13038.0,0.030829050567444716 -13039.0,0.03081840442923332 -13040.0,0.030807761967432862 -13041.0,0.030797123180773794 -13042.0,0.030786488067986957 -13043.0,0.030775856627803667 -13044.0,0.03076522885895568 -13045.0,0.030754604760175188 -13046.0,0.03074398433019479 -13047.0,0.03073336756774756 -13048.0,0.03072275447156699 -13049.0,0.03071214504038702 -13050.0,0.030701539272942033 -13051.0,0.030690937167966816 -13052.0,0.03068033872419662 -13053.0,0.030669743940367138 -13054.0,0.0306591528152145 -13055.0,0.03064856534747523 -13056.0,0.030637981535886337 -13057.0,0.03062740137918525 -13058.0,0.03061682487610985 -13059.0,0.030606252025398403 -13060.0,0.03059568282578966 -13061.0,0.0305851172760228 -13062.0,0.03057455537483744 -13063.0,0.030563997120973588 -13064.0,0.03055344251317174 -13065.0,0.030542891550172813 -13066.0,0.03053234423071815 -13067.0,0.03052180055354954 -13068.0,0.030511260517409183 -13069.0,0.030500724121039737 -13070.0,0.03049019136318429 -13071.0,0.03047966224258637 -13072.0,0.030469136757989904 -13073.0,0.030458614908139295 -13074.0,0.03044809669177936 -13075.0,0.030437582107655365 -13076.0,0.030427071154512972 -13077.0,0.030416563831098316 -13078.0,0.030406060136157945 -13079.0,0.030395560068438864 -13080.0,0.030385063626688462 -13081.0,0.0303745708096546 -13082.0,0.030364081616085566 -13083.0,0.030353596044730088 -13084.0,0.03034311409433729 -13085.0,0.030332635763656756 -13086.0,0.030322161051438506 -13087.0,0.03031168995643298 -13088.0,0.030301222477391067 -13089.0,0.03029075861306405 -13090.0,0.03028029836220367 -13091.0,0.0302698417235621 -13092.0,0.030259388695891957 -13093.0,0.03024893927794624 -13094.0,0.030238493468478428 -13095.0,0.030228051266242402 -13096.0,0.030217612669992507 -13097.0,0.030207177678483462 -13098.0,0.030196746290470464 -13099.0,0.030186318504709122 -13100.0,0.030175894319955494 -13101.0,0.030165473734966024 -13102.0,0.03015505674849762 -13103.0,0.03014464335930762 -13104.0,0.030134233566153776 -13105.0,0.030123827367794294 -13106.0,0.03011342476298776 -13107.0,0.030103025750493232 -13108.0,0.030092630329070183 -13109.0,0.030082238497478535 -13110.0,0.030071850254478585 -13111.0,0.030061465598831105 -13112.0,0.030051084529297285 -13113.0,0.030040707044638747 -13114.0,0.030030333143617513 -13115.0,0.030019962824996062 -13116.0,0.03000959608753729 -13117.0,0.029999232930004536 -13118.0,0.02998887335116152 -13119.0,0.029978517349772436 -13120.0,0.02996816492460189 -13121.0,0.029957816074414927 -13122.0,0.029947470797976973 -13123.0,0.02993712909405393 -13124.0,0.029926790961412104 -13125.0,0.029916456398818236 -13126.0,0.029906125405039497 -13127.0,0.029895797978843452 -13128.0,0.02988547411899813 -13129.0,0.029875153824271958 -13130.0,0.029864837093433825 -13131.0,0.02985452392525299 -13132.0,0.02984421431849918 -13133.0,0.02983390827194253 -13134.0,0.029823605784353627 -13135.0,0.029813306854503424 -13136.0,0.02980301148116335 -13137.0,0.029792719663105243 -13138.0,0.029782431399101375 -13139.0,0.029772146687924408 -13140.0,0.02976186552834746 -13141.0,0.02975158791914407 -13142.0,0.029741313859088188 -13143.0,0.02973104334695421 -13144.0,0.02972077638151691 -13145.0,0.029710512961551527 -13146.0,0.029700253085833715 -13147.0,0.029689996753139554 -13148.0,0.02967974396224551 -13149.0,0.029669494711928517 -13150.0,0.029659249000965913 -13151.0,0.029649006828135475 -13152.0,0.029638768192215358 -13153.0,0.02962853309198418 -13154.0,0.029618301526220966 -13155.0,0.02960807349370518 -13156.0,0.029597848993216668 -13157.0,0.029587628023535734 -13158.0,0.02957741058344309 -13159.0,0.02956719667171988 -13160.0,0.02955698628714764 -13161.0,0.029546779428508353 -13162.0,0.02953657609458442 -13163.0,0.029526376284158648 -13164.0,0.029516179996014295 -13165.0,0.029505987228934993 -13166.0,0.029495797981704826 -13167.0,0.029485612253108296 -13168.0,0.02947543004193033 -13169.0,0.029465251346956243 -13170.0,0.0294550761669718 -13171.0,0.02944490450076318 -13172.0,0.02943473634711698 -13173.0,0.029424571704820202 -13174.0,0.029414410572660282 -13175.0,0.029404252949425072 -13176.0,0.029394098833902857 -13177.0,0.029383948224882297 -13178.0,0.02937380112115251 -13179.0,0.029363657521503026 -13180.0,0.029353517424723783 -13181.0,0.029343380829605158 -13182.0,0.0293332477349379 -13183.0,0.029323118139513216 -13184.0,0.02931299204212272 -13185.0,0.029302869441558462 -13186.0,0.029292750336612855 -13187.0,0.029282634726078782 -13188.0,0.029272522608749522 -13189.0,0.029262413983418785 -13190.0,0.029252308848880665 -13191.0,0.0292422072039297 -13192.0,0.02923210904736084 -13193.0,0.02922201437796946 -13194.0,0.029211923194551317 -13195.0,0.029201835495902616 -13196.0,0.02919175128081997 -13197.0,0.02918167054810042 -13198.0,0.029171593296541377 -13199.0,0.02916151952494072 -13200.0,0.029151449232096713 -13201.0,0.029141382416808043 -13202.0,0.029131319077873835 -13203.0,0.02912125921409357 -13204.0,0.0291112028242672 -13205.0,0.029101149907195062 -13206.0,0.029091100461677937 -13207.0,0.029081054486516975 -13208.0,0.02907101198051377 -13209.0,0.02906097294247033 -13210.0,0.029050937371189082 -13211.0,0.029040905265472827 -13212.0,0.029030876624124825 -13213.0,0.029020851445948733 -13214.0,0.029010829729748628 -13215.0,0.02900081147432897 -13216.0,0.028990796678494666 -13217.0,0.028980785341051023 -13218.0,0.028970777460803766 -13219.0,0.028960773036559036 -13220.0,0.02895077206712335 -13221.0,0.02894077455130369 -13222.0,0.028930780487907412 -13223.0,0.028920789875742318 -13224.0,0.028910802713616568 -13225.0,0.028900819000338786 -13226.0,0.028890838734717986 -13227.0,0.02888086191556361 -13228.0,0.028870888541685465 -13229.0,0.028860918611893813 -13230.0,0.02885095212499932 -13231.0,0.028840989079813067 -13232.0,0.028831029475146507 -13233.0,0.02882107330981155 -13234.0,0.028811120582620493 -13235.0,0.028801171292386064 -13236.0,0.028791225437921356 -13237.0,0.028781283018039918 -13238.0,0.028771344031555693 -13239.0,0.028761408477283028 -13240.0,0.028751476354036697 -13241.0,0.028741547660631847 -13242.0,0.028731622395884067 -13243.0,0.02872170055860935 -13244.0,0.0287117821476241 -13245.0,0.028701867161745102 -13246.0,0.02869195559978958 -13247.0,0.02868204746057516 -13248.0,0.028672142742919886 -13249.0,0.028662241445642167 -13250.0,0.02865234356756087 -13251.0,0.028642449107495246 -13252.0,0.02863255806426497 -13253.0,0.028622670436690093 -13254.0,0.028612786223591098 -13255.0,0.028602905423788877 -13256.0,0.02859302803610472 -13257.0,0.028583154059360336 -13258.0,0.02857328349237781 -13259.0,0.02856341633397967 -13260.0,0.02855355258298883 -13261.0,0.028543692238228637 -13262.0,0.02853383529852279 -13263.0,0.028523981762695445 -13264.0,0.02851413162957115 -13265.0,0.028504284897974862 -13266.0,0.028494441566731914 -13267.0,0.028484601634668087 -13268.0,0.02847476510060954 -13269.0,0.028464931963382865 -13270.0,0.028455102221815014 -13271.0,0.028445275874733385 -13272.0,0.028435452920965762 -13273.0,0.02842563335934035 -13274.0,0.028415817188685726 -13275.0,0.028406004407830907 -13276.0,0.028396195015605294 -13277.0,0.0283863890108387 -13278.0,0.02837658639236135 -13279.0,0.028366787159003846 -13280.0,0.028356991309597217 -13281.0,0.02834719884297289 -13282.0,0.02833740975796271 -13283.0,0.028327624053398885 -13284.0,0.028317841728114062 -13285.0,0.028308062780941282 -13286.0,0.028298287210714004 -13287.0,0.028288515016266044 -13288.0,0.028278746196431663 -13289.0,0.028268980750045514 -13290.0,0.028259218675942666 -13291.0,0.02824945997295854 -13292.0,0.028239704639929017 -13293.0,0.028229952675690353 -13294.0,0.028220204079079207 -13295.0,0.02821045884893266 -13296.0,0.02820071698408815 -13297.0,0.02819097848338355 -13298.0,0.02818124334565714 -13299.0,0.02817151156974759 -13300.0,0.02816178315449395 -13301.0,0.028152058098735708 -13302.0,0.02814233640131273 -13303.0,0.0281326180610653 -13304.0,0.028122903076834068 -13305.0,0.02811319144746012 -13306.0,0.028103483171784932 -13307.0,0.028093778248650385 -13308.0,0.028084076676898728 -13309.0,0.02807437845537265 -13310.0,0.028064683582915223 -13311.0,0.028054992058369928 -13312.0,0.02804530388058062 -13313.0,0.028035619048391573 -13314.0,0.028025937560647463 -13315.0,0.02801625941619336 -13316.0,0.028006584613874737 -13317.0,0.027996913152537446 -13318.0,0.027987245031027754 -13319.0,0.027977580248192333 -13320.0,0.027967918802878255 -13321.0,0.027958260693932955 -13322.0,0.027948605920204303 -13323.0,0.027938954480540554 -13324.0,0.02792930637379037 -13325.0,0.02791966159880279 -13326.0,0.027910020154427263 -13327.0,0.02790038203951364 -13328.0,0.027890747252912178 -13329.0,0.027881115793473486 -13330.0,0.02787148766004862 -13331.0,0.027861862851489012 -13332.0,0.027852241366646494 -13333.0,0.0278426232043733 -13334.0,0.027833008363522035 -13335.0,0.027823396842945727 -13336.0,0.027813788641497795 -13337.0,0.027804183758032057 -13338.0,0.0277945821914027 -13339.0,0.02778498394046434 -13340.0,0.027775389004071976 -13341.0,0.027765797381081012 -13342.0,0.027756209070347215 -13343.0,0.02774662407072678 -13344.0,0.027737042381076285 -13345.0,0.027727464000252718 -13346.0,0.027717888927113427 -13347.0,0.027708317160516183 -13348.0,0.027698748699319146 -13349.0,0.02768918354238088 -13350.0,0.027679621688560307 -13351.0,0.027670063136716782 -13352.0,0.027660507885710037 -13353.0,0.0276509559344002 -13354.0,0.02764140728164781 -13355.0,0.02763186192631375 -13356.0,0.027622319867259344 -13357.0,0.027612781103346296 -13358.0,0.02760324563343671 -13359.0,0.027593713456393054 -13360.0,0.02758418457107822 -13361.0,0.027574658976355478 -13362.0,0.027565136671088508 -13363.0,0.027555617654141346 -13364.0,0.027546101924378452 -13365.0,0.027536589480664668 -13366.0,0.027527080321865245 -13367.0,0.027517574446845782 -13368.0,0.02750807185447231 -13369.0,0.027498572543611245 -13370.0,0.027489076513129377 -13371.0,0.02747958376189392 -13372.0,0.027470094288772434 -13373.0,0.0274606080926329 -13374.0,0.027451125172343688 -13375.0,0.027441645526773563 -13376.0,0.027432169154791654 -13377.0,0.02742269605526751 -13378.0,0.027413226227071052 -13379.0,0.02740375966907262 -13380.0,0.027394296380142895 -13381.0,0.027384836359152988 -13382.0,0.027375379604974385 -13383.0,0.027365926116478978 -13384.0,0.02735647589253901 -13385.0,0.027347028932027152 -13386.0,0.02733758523381645 -13387.0,0.02732814479678035 -13388.0,0.027318707619792652 -13389.0,0.027309273701727588 -13390.0,0.027299843041459753 -13391.0,0.027290415637864142 -13392.0,0.027280991489816143 -13393.0,0.027271570596191504 -13394.0,0.02726215295586639 -13395.0,0.027252738567717347 -13396.0,0.027243327430621318 -13397.0,0.0272339195434556 -13398.0,0.02722451490509791 -13399.0,0.027215113514426348 -13400.0,0.027205715370319405 -13401.0,0.027196320471655926 -13402.0,0.027186928817315183 -13403.0,0.02717754040617682 -13404.0,0.02716815523712088 -13405.0,0.027158773309027755 -13406.0,0.027149394620778262 -13407.0,0.027140019171253593 -13408.0,0.027130646959335324 -13409.0,0.02712127798390543 -13410.0,0.027111912243846237 -13411.0,0.027102549738040493 -13412.0,0.02709319046537132 -13413.0,0.027083834424722238 -13414.0,0.027074481614977112 -13415.0,0.027065132035020232 -13416.0,0.027055785683736264 -13417.0,0.027046442560010268 -13418.0,0.027037102662727654 -13419.0,0.02702776599077425 -13420.0,0.02701843254303626 -13421.0,0.027009102318400282 -13422.0,0.02699977531575327 -13423.0,0.02699045153398259 -13424.0,0.026981130971975978 -13425.0,0.026971813628621576 -13426.0,0.02696249950280787 -13427.0,0.026953188593423758 -13428.0,0.02694388089935852 -13429.0,0.02693457641950182 -13430.0,0.026925275152743712 -13431.0,0.026915977097974594 -13432.0,0.02690668225408529 -13433.0,0.026897390619966995 -13434.0,0.026888102194511293 -13435.0,0.026878816976610122 -13436.0,0.026869534965155834 -13437.0,0.026860256159041154 -13438.0,0.026850980557159197 -13439.0,0.026841708158403428 -13440.0,0.026832438961667735 -13441.0,0.02682317296584636 -13442.0,0.02681391016983396 -13443.0,0.026804650572525523 -13444.0,0.026795394172816456 -13445.0,0.026786140969602537 -13446.0,0.02677689096177993 -13447.0,0.02676764414824519 -13448.0,0.026758400527895215 -13449.0,0.026749160099627314 -13450.0,0.02673992286233918 -13451.0,0.026730688814928884 -13452.0,0.02672145795629485 -13453.0,0.026712230285335915 -13454.0,0.026703005800951283 -13455.0,0.026693784502040557 -13456.0,0.02668456638750368 -13457.0,0.026675351456241 -13458.0,0.026666139707153255 -13459.0,0.026656931139141554 -13460.0,0.026647725751107364 -13461.0,0.02663852354195256 -13462.0,0.026629324510579384 -13463.0,0.02662012865589047 -13464.0,0.026610935976788794 -13465.0,0.026601746472177754 -13466.0,0.026592560140961105 -13467.0,0.026583376982042987 -13468.0,0.026574196994327927 -13469.0,0.026565020176720792 -13470.0,0.026555846528126873 -13471.0,0.026546676047451815 -13472.0,0.026537508733601663 -13473.0,0.026528344585482797 -13474.0,0.026519183602002012 -13475.0,0.026510025782066474 -13476.0,0.026500871124583728 -13477.0,0.02649171962846167 -13478.0,0.0264825712926086 -13479.0,0.026473426115933195 -13480.0,0.02646428409734451 -13481.0,0.026455145235751945 -13482.0,0.026446009530065318 -13483.0,0.026436876979194796 -13484.0,0.02642774758205094 -13485.0,0.02641862133754469 -13486.0,0.026409498244587326 -13487.0,0.026400378302090542 -13488.0,0.026391261508966396 -13489.0,0.026382147864127334 -13490.0,0.02637303736648614 -13491.0,0.026363930014956006 -13492.0,0.026354825808450496 -13493.0,0.026345724745883554 -13494.0,0.026336626826169468 -13495.0,0.026327532048222933 -13496.0,0.02631844041095901 -13497.0,0.02630935191329314 -13498.0,0.026300266554141114 -13499.0,0.026291184332419126 -13500.0,0.02628210524704373 -13501.0,0.026273029296931868 -13502.0,0.026263956481000827 -13503.0,0.026254886798168293 -13504.0,0.026245820247352322 -13505.0,0.02623675682747134 -13506.0,0.026227696537444157 -13507.0,0.026218639376189925 -13508.0,0.026209585342628204 -13509.0,0.026200534435678907 -13510.0,0.026191486654262346 -13511.0,0.02618244199729916 -13512.0,0.026173400463710403 -13513.0,0.026164362052417477 -13514.0,0.026155326762342185 -13515.0,0.026146294592406655 -13516.0,0.026137265541533432 -13517.0,0.026128239608645413 -13518.0,0.026119216792665878 -13519.0,0.026110197092518453 -13520.0,0.02610118050712716 -13521.0,0.026092167035416395 -13522.0,0.026083156676310906 -13523.0,0.02607414942873584 -13524.0,0.026065145291616677 -13525.0,0.026056144263879293 -13526.0,0.02604714634444994 -13527.0,0.026038151532255235 -13528.0,0.02602915982622215 -13529.0,0.02602017122527804 -13530.0,0.026011185728350636 -13531.0,0.026002203334368045 -13532.0,0.025993224042258713 -13533.0,0.025984247850951478 -13534.0,0.02597527475937556 -13535.0,0.02596630476646053 -13536.0,0.025957337871136323 -13537.0,0.025948374072333257 -13538.0,0.025939413368982023 -13539.0,0.025930455760013682 -13540.0,0.025921501244359633 -13541.0,0.02591254982095168 -13542.0,0.02590360148872199 -13543.0,0.025894656246603077 -13544.0,0.025885714093527863 -13545.0,0.02587677502842959 -13546.0,0.025867839050241898 -13547.0,0.025858906157898796 -13548.0,0.02584997635033466 -13549.0,0.025841049626484217 -13550.0,0.025832125985282575 -13551.0,0.025823205425665213 -13552.0,0.025814287946567985 -13553.0,0.025805373546927076 -13554.0,0.02579646222567908 -13555.0,0.02578755398176093 -13556.0,0.02577864881410996 -13557.0,0.025769746721663822 -13558.0,0.02576084770336057 -13559.0,0.02575195175813862 -13560.0,0.025743058884936748 -13561.0,0.025734169082694113 -13562.0,0.0257252823503502 -13563.0,0.025716398686844902 -13564.0,0.02570751809111846 -13565.0,0.02569864056211149 -13566.0,0.025689766098764957 -13567.0,0.025680894700020204 -13568.0,0.025672026364818943 -13569.0,0.025663161092103256 -13570.0,0.025654298880815555 -13571.0,0.025645439729898658 -13572.0,0.02563658363829573 -13573.0,0.025627730604950317 -13574.0,0.025618880628806295 -13575.0,0.025610033708807937 -13576.0,0.025601189843899867 -13577.0,0.025592349033027092 -13578.0,0.02558351127513494 -13579.0,0.025574676569169147 -13580.0,0.025565844914075795 -13581.0,0.025557016308801334 -13582.0,0.025548190752292584 -13583.0,0.025539368243496702 -13584.0,0.025530548781361233 -13585.0,0.02552173236483408 -13586.0,0.025512918992863523 -13587.0,0.02550410866439817 -13588.0,0.02549530137838702 -13589.0,0.025486497133779432 -13590.0,0.02547769592952513 -13591.0,0.025468897764574176 -13592.0,0.025460102637877024 -13593.0,0.025451310548384478 -13594.0,0.025442521495047717 -13595.0,0.02543373547681825 -13596.0,0.02542495249264798 -13597.0,0.02541617254148916 -13598.0,0.025407395622294406 -13599.0,0.02539862173401671 -13600.0,0.025389850875609386 -13601.0,0.025381083046026143 -13602.0,0.025372318244221048 -13603.0,0.02536355646914853 -13604.0,0.025354797719763355 -13605.0,0.025346041995020677 -13606.0,0.025337289293876006 -13607.0,0.025328539615285212 -13608.0,0.025319792958204506 -13609.0,0.025311049321590486 -13610.0,0.025302308704400096 -13611.0,0.025293571105590662 -13612.0,0.025284836524119825 -13613.0,0.025276104958945625 -13614.0,0.02526737640902645 -13615.0,0.025258650873321048 -13616.0,0.025249928350788535 -13617.0,0.02524120884038836 -13618.0,0.025232492341080357 -13619.0,0.025223778851824714 -13620.0,0.02521506837158198 -13621.0,0.025206360899313045 -13622.0,0.025197656433979174 -13623.0,0.025188954974541992 -13624.0,0.025180256519963487 -13625.0,0.02517156106920598 -13626.0,0.02516286862123217 -13627.0,0.02515417917500512 -13628.0,0.025145492729488246 -13629.0,0.0251368092836453 -13630.0,0.025128128836440423 -13631.0,0.0251194513868381 -13632.0,0.025110776933803182 -13633.0,0.02510210547630085 -13634.0,0.025093437013296672 -13635.0,0.02508477154375657 -13636.0,0.02507610906664681 -13637.0,0.025067449580934032 -13638.0,0.025058793085585205 -13639.0,0.025050139579567678 -13640.0,0.025041489061849158 -13641.0,0.025032841531397707 -13642.0,0.025024196987181717 -13643.0,0.025015555428169967 -13644.0,0.025006916853331583 -13645.0,0.02499828126163606 -13646.0,0.024989648652053206 -13647.0,0.024981019023553232 -13648.0,0.02497239237510668 -13649.0,0.02496376870568447 -13650.0,0.024955148014257834 -13651.0,0.0249465302997984 -13652.0,0.024937915561278137 -13653.0,0.02492930379766937 -13654.0,0.024920695007944794 -13655.0,0.024912089191077413 -13656.0,0.02490348634604063 -13657.0,0.024894886471808188 -13658.0,0.024886289567354197 -13659.0,0.024877695631653086 -13660.0,0.024869104663679673 -13661.0,0.024860516662409116 -13662.0,0.024851931626816946 -13663.0,0.024843349555879 -13664.0,0.024834770448571516 -13665.0,0.02482619430387107 -13666.0,0.0248176211207546 -13667.0,0.02480905089819936 -13668.0,0.024800483635183005 -13669.0,0.02479191933068352 -13670.0,0.024783357983679255 -13671.0,0.02477479959314888 -13672.0,0.024766244158071462 -13673.0,0.024757691677426388 -13674.0,0.024749142150193415 -13675.0,0.02474059557535266 -13676.0,0.024732051951884552 -13677.0,0.024723511278769914 -13678.0,0.024714973554989902 -13679.0,0.02470643877952604 -13680.0,0.024697906951360177 -13681.0,0.024689378069474528 -13682.0,0.024680852132851663 -13683.0,0.024672329140474517 -13684.0,0.02466380909132633 -13685.0,0.024655291984390735 -13686.0,0.024646777818651704 -13687.0,0.02463826659309357 -13688.0,0.024629758306700986 -13689.0,0.024621252958458982 -13690.0,0.024612750547352933 -13691.0,0.024604251072368567 -13692.0,0.024595754532491968 -13693.0,0.024587260926709535 -13694.0,0.02457877025400806 -13695.0,0.024570282513374665 -13696.0,0.02456179770379683 -13697.0,0.024553315824262366 -13698.0,0.02454483687375945 -13699.0,0.024536360851276612 -13700.0,0.02452788775580273 -13701.0,0.02451941758632701 -13702.0,0.024510950341839022 -13703.0,0.024502486021328696 -13704.0,0.024494024623786307 -13705.0,0.02448556614820245 -13706.0,0.024477110593568104 -13707.0,0.02446865795887458 -13708.0,0.024460208243113554 -13709.0,0.024451761445277012 -13710.0,0.024443317564357324 -13711.0,0.024434876599347198 -13712.0,0.024426438549239687 -13713.0,0.024418003413028203 -13714.0,0.024409571189706478 -13715.0,0.024401141878268615 -13716.0,0.024392715477709066 -13717.0,0.024384291987022626 -13718.0,0.024375871405204416 -13719.0,0.024367453731249933 -13720.0,0.024359038964155005 -13721.0,0.024350627102915832 -13722.0,0.02434221814652891 -13723.0,0.024333812093991124 -13724.0,0.024325408944299697 -13725.0,0.024317008696452206 -13726.0,0.024308611349446535 -13727.0,0.024300216902280958 -13728.0,0.024291825353954074 -13729.0,0.024283436703464837 -13730.0,0.02427505094981255 -13731.0,0.024266668091996835 -13732.0,0.024258288129017685 -13733.0,0.024249911059875437 -13734.0,0.02424153688357077 -13735.0,0.024233165599104694 -13736.0,0.024224797205478578 -13737.0,0.02421643170169414 -13738.0,0.024208069086753447 -13739.0,0.024199709359658872 -13740.0,0.02419135251941318 -13741.0,0.024182998565019452 -13742.0,0.02417464749548114 -13743.0,0.024166299309802 -13744.0,0.024157954006986157 -13745.0,0.024149611586038087 -13746.0,0.024141272045962607 -13747.0,0.024132935385764852 -13748.0,0.024124601604450326 -13749.0,0.02411627070102487 -13750.0,0.02410794267449467 -13751.0,0.02409961752386626 -13752.0,0.024091295248146495 -13753.0,0.024082975846342596 -13754.0,0.024074659317462117 -13755.0,0.02406634566051297 -13756.0,0.02405803487450337 -13757.0,0.02404972695844192 -13758.0,0.02404142191133754 -13759.0,0.02403311973219951 -13760.0,0.02402482042003742 -13761.0,0.024016523973861236 -13762.0,0.024008230392681247 -13763.0,0.023999939675508106 -13764.0,0.023991651821352763 -13765.0,0.02398336682922655 -13766.0,0.023975084698141132 -13767.0,0.023966805427108506 -13768.0,0.02395852901514103 -13769.0,0.023950255461251364 -13770.0,0.023941984764452546 -13771.0,0.023933716923757942 -13772.0,0.02392545193818127 -13773.0,0.023917189806736554 -13774.0,0.023908930528438194 -13775.0,0.023900674102300918 -13776.0,0.023892420527339805 -13777.0,0.023884169802570243 -13778.0,0.023875921927007993 -13779.0,0.02386767689966914 -13780.0,0.023859434719570125 -13781.0,0.023851195385727695 -13782.0,0.023842958897158966 -13783.0,0.023834725252881387 -13784.0,0.023826494451912754 -13785.0,0.023818266493271175 -13786.0,0.02381004137597512 -13787.0,0.023801819099043393 -13788.0,0.02379359966149514 -13789.0,0.023785383062349848 -13790.0,0.02377716930062732 -13791.0,0.023768958375347718 -13792.0,0.023760750285531547 -13793.0,0.023752545030199645 -13794.0,0.02374434260837317 -13795.0,0.02373614301907364 -13796.0,0.023727946261322904 -13797.0,0.023719752334143158 -13798.0,0.02371156123655691 -13799.0,0.02370337296758702 -13800.0,0.023695187526256704 -13801.0,0.0236870049115895 -13802.0,0.02367882512260926 -13803.0,0.023670648158340208 -13804.0,0.02366247401780689 -13805.0,0.023654302700034192 -13806.0,0.023646134204047344 -13807.0,0.023637968528871886 -13808.0,0.023629805673533722 -13809.0,0.023621645637059083 -13810.0,0.02361348841847454 -13811.0,0.02360533401680699 -13812.0,0.023597182431083667 -13813.0,0.023589033660332156 -13814.0,0.023580887703580373 -13815.0,0.02357274455985655 -13816.0,0.023564604228189272 -13817.0,0.023556466707607467 -13818.0,0.02354833199714039 -13819.0,0.023540200095817608 -13820.0,0.02353207100266906 -13821.0,0.023523944716725007 -13822.0,0.023515821237016045 -13823.0,0.023507700562573085 -13824.0,0.023499582692427398 -13825.0,0.023491467625610583 -13826.0,0.023483355361154572 -13827.0,0.023475245898091645 -13828.0,0.023467139235454373 -13829.0,0.023459035372275706 -13830.0,0.023450934307588912 -13831.0,0.023442836040427604 -13832.0,0.023434740569825696 -13833.0,0.023426647894817465 -13834.0,0.02341855801443752 -13835.0,0.023410470927720802 -13836.0,0.02340238663370256 -13837.0,0.02339430513141841 -13838.0,0.02338622641990429 -13839.0,0.023378150498196474 -13840.0,0.023370077365331542 -13841.0,0.023362007020346444 -13842.0,0.02335393946227844 -13843.0,0.023345874690165136 -13844.0,0.023337812703044466 -13845.0,0.02332975349995468 -13846.0,0.023321697079934384 -13847.0,0.0233136434420225 -13848.0,0.023305592585258304 -13849.0,0.02329754450868136 -13850.0,0.02328949921133161 -13851.0,0.023281456692249305 -13852.0,0.02327341695047504 -13853.0,0.02326537998504971 -13854.0,0.02325734579501458 -13855.0,0.023249314379411225 -13856.0,0.02324128573728157 -13857.0,0.02323325986766783 -13858.0,0.023225236769612592 -13859.0,0.023217216442158756 -13860.0,0.02320919888434957 -13861.0,0.023201184095228575 -13862.0,0.023193172073839675 -13863.0,0.02318516281922709 -13864.0,0.023177156330435385 -13865.0,0.023169152606509445 -13866.0,0.023161151646494467 -13867.0,0.023153153449436005 -13868.0,0.023145158014379934 -13869.0,0.023137165340372464 -13870.0,0.023129175426460105 -13871.0,0.023121188271689738 -13872.0,0.023113203875108543 -13873.0,0.023105222235764056 -13874.0,0.023097243352704102 -13875.0,0.023089267224976874 -13876.0,0.023081293851630873 -13877.0,0.023073323231714946 -13878.0,0.023065355364278235 -13879.0,0.02305739024837024 -13880.0,0.023049427883040784 -13881.0,0.023041468267340014 -13882.0,0.023033511400318417 -13883.0,0.02302555728102677 -13884.0,0.023017605908516224 -13885.0,0.023009657281838233 -13886.0,0.023001711400044596 -13887.0,0.0229937682621874 -13888.0,0.02298582786731911 -13889.0,0.022977890214492484 -13890.0,0.022969955302760633 -13891.0,0.022962023131176956 -13892.0,0.022954093698795214 -13893.0,0.022946167004669487 -13894.0,0.022938243047854183 -13895.0,0.022930321827404017 -13896.0,0.02292240334237405 -13897.0,0.02291448759181967 -13898.0,0.02290657457479659 -13899.0,0.022898664290360828 -13900.0,0.022890756737568754 -13901.0,0.022882851915477058 -13902.0,0.022874949823142744 -13903.0,0.02286705045962317 -13904.0,0.02285915382397597 -13905.0,0.022851259915259152 -13906.0,0.02284336873253102 -13907.0,0.022835480274850235 -13908.0,0.022827594541275736 -13909.0,0.02281971153086682 -13910.0,0.022811831242683104 -13911.0,0.022803953675784534 -13912.0,0.02279607882923136 -13913.0,0.022788206702084177 -13914.0,0.022780337293403896 -13915.0,0.022772470602251765 -13916.0,0.022764606627689324 -13917.0,0.02275674536877847 -13918.0,0.022748886824581413 -13919.0,0.022741030994160683 -13920.0,0.02273317787657915 -13921.0,0.022725327470899972 -13922.0,0.022717479776186662 -13923.0,0.022709634791503053 -13924.0,0.022701792515913297 -13925.0,0.022693952948481852 -13926.0,0.022686116088273527 -13927.0,0.02267828193435344 -13928.0,0.02267045048578704 -13929.0,0.022662621741640077 -13930.0,0.022654795700978645 -13931.0,0.02264697236286916 -13932.0,0.02263915172637836 -13933.0,0.02263133379057328 -13934.0,0.02262351855452131 -13935.0,0.022615706017290148 -13936.0,0.022607896177947825 -13937.0,0.022600089035562664 -13938.0,0.02259228458920334 -13939.0,0.02258448283793884 -13940.0,0.022576683780838474 -13941.0,0.022568887416971876 -13942.0,0.022561093745408982 -13943.0,0.02255330276522007 -13944.0,0.022545514475475734 -13945.0,0.0225377288752469 -13946.0,0.02252994596360478 -13947.0,0.02252216573962094 -13948.0,0.022514388202367255 -13949.0,0.022506613350915933 -13950.0,0.022498841184339473 -13951.0,0.02249107170171072 -13952.0,0.02248330490210283 -13953.0,0.02247554078458929 -13954.0,0.022467779348243882 -13955.0,0.022460020592140726 -13956.0,0.022452264515354266 -13957.0,0.02244451111695926 -13958.0,0.02243676039603078 -13959.0,0.02242901235164422 -13960.0,0.022421266982875294 -13961.0,0.022413524288800037 -13962.0,0.022405784268494815 -13963.0,0.022398046921036276 -13964.0,0.022390312245501424 -13965.0,0.022382580240967568 -13966.0,0.022374850906512346 -13967.0,0.022367124241213687 -13968.0,0.02235940024414986 -13969.0,0.022351678914399455 -13970.0,0.02234396025104138 -13971.0,0.02233624425315484 -13972.0,0.022328530919819373 -13973.0,0.02232082025011484 -13974.0,0.02231311224312143 -13975.0,0.022305406897919603 -13976.0,0.022297704213590185 -13977.0,0.0222900041892143 -13978.0,0.022282306823873388 -13979.0,0.022274612116649224 -13980.0,0.022266920066623865 -13981.0,0.022259230672879715 -13982.0,0.022251543934499483 -13983.0,0.022243859850566212 -13984.0,0.022236178420163222 -13985.0,0.022228499642374187 -13986.0,0.022220823516283083 -13987.0,0.022213150040974215 -13988.0,0.022205479215532176 -13989.0,0.022197811039041896 -13990.0,0.022190145510588625 -13991.0,0.022182482629257927 -13992.0,0.022174822394135655 -13993.0,0.022167164804308012 -13994.0,0.022159509858861504 -13995.0,0.022151857556882946 -13996.0,0.02214420789745949 -13997.0,0.022136560879678566 -13998.0,0.022128916502627948 -13999.0,0.022121274765395722 -14000.0,0.02211363566707029 -14001.0,0.022105999206740348 -14002.0,0.02209836538349493 -14003.0,0.022090734196423368 -14004.0,0.022083105644615342 -14005.0,0.022075479727160792 -14006.0,0.022067856443150013 -14007.0,0.022060235791673606 -14008.0,0.02205261777182249 -14009.0,0.022045002382687872 -14010.0,0.0220373896233613 -14011.0,0.022029779492934626 -14012.0,0.022022171990500033 -14013.0,0.022014567115149975 -14014.0,0.02200696486597726 -14015.0,0.021999365242074992 -14016.0,0.021991768242536593 -14017.0,0.02198417386645581 -14018.0,0.02197658211292666 -14019.0,0.02196899298104352 -14020.0,0.02196140646990106 -14021.0,0.02195382257859427 -14022.0,0.021946241306218434 -14023.0,0.02193866265186917 -14024.0,0.0219310866146424 -14025.0,0.02192351319363436 -14026.0,0.021915942387941586 -14027.0,0.021908374196660946 -14028.0,0.0219008086188896 -14029.0,0.021893245653725052 -14030.0,0.021885685300265065 -14031.0,0.021878127557607763 -14032.0,0.021870572424851555 -14033.0,0.02186301990109517 -14034.0,0.021855469985437664 -14035.0,0.021847922676978358 -14036.0,0.021840377974816926 -14037.0,0.021832835878053344 -14038.0,0.021825296385787903 -14039.0,0.021817759497121173 -14040.0,0.02181022521115407 -14041.0,0.02180269352698781 -14042.0,0.021795164443723928 -14043.0,0.021787637960464238 -14044.0,0.021780114076310895 -14045.0,0.021772592790366356 -14046.0,0.021765074101733395 -14047.0,0.02175755800951507 -14048.0,0.021750044512814773 -14049.0,0.0217425336107362 -14050.0,0.021735025302383363 -14051.0,0.021727519586860557 -14052.0,0.02172001646327242 -14053.0,0.021712515930723875 -14054.0,0.02170501798832017 -14055.0,0.021697522635166857 -14056.0,0.021690029870369786 -14057.0,0.02168253969303513 -14058.0,0.021675052102269363 -14059.0,0.02166756709717928 -14060.0,0.021660084676871957 -14061.0,0.02165260484045481 -14062.0,0.02164512758703554 -14063.0,0.02163765291572218 -14064.0,0.021630180825623034 -14065.0,0.02162271131584675 -14066.0,0.021615244385502268 -14067.0,0.021607780033698846 -14068.0,0.021600318259546024 -14069.0,0.021592859062153674 -14070.0,0.02158540244063197 -14071.0,0.02157794839409139 -14072.0,0.021570496921642732 -14073.0,0.021563048022397068 -14074.0,0.021555601695465814 -14075.0,0.02154815793996067 -14076.0,0.021540716754993663 -14077.0,0.021533278139677096 -14078.0,0.021525842093123606 -14079.0,0.021518408614446122 -14080.0,0.0215109777027579 -14081.0,0.021503549357172465 -14082.0,0.021496123576803677 -14083.0,0.021488700360765698 -14084.0,0.021481279708173002 -14085.0,0.021473861618140334 -14086.0,0.02146644608978279 -14087.0,0.02145903312221574 -14088.0,0.02145162271455489 -14089.0,0.021444214865916206 -14090.0,0.021436809575416004 -14091.0,0.021429406842170876 -14092.0,0.021422006665297737 -14093.0,0.02141460904391381 -14094.0,0.02140721397713659 -14095.0,0.02139982146408391 -14096.0,0.021392431503873897 -14097.0,0.021385044095624996 -14098.0,0.02137765923845592 -14099.0,0.021370276931485715 -14100.0,0.021362897173833734 -14101.0,0.02135551996461963 -14102.0,0.02134814530296334 -14103.0,0.021340773187985128 -14104.0,0.021333403618805553 -14105.0,0.021326036594545492 -14106.0,0.02131867211432609 -14107.0,0.02131131017726883 -14108.0,0.02130395078249549 -14109.0,0.02129659392912814 -14110.0,0.021289239616289177 -14111.0,0.021281887843101265 -14112.0,0.021274538608687398 -14113.0,0.021267191912170868 -14114.0,0.021259847752675275 -14115.0,0.021252506129324496 -14116.0,0.021245167041242744 -14117.0,0.02123783048755451 -14118.0,0.02123049646738461 -14119.0,0.021223164979858135 -14120.0,0.021215836024100494 -14121.0,0.0212085095992374 -14122.0,0.021201185704394873 -14123.0,0.021193864338699204 -14124.0,0.02118654550127702 -14125.0,0.021179229191255238 -14126.0,0.02117191540776108 -14127.0,0.021164604149922054 -14128.0,0.021157295416865982 -14129.0,0.02114998920772099 -14130.0,0.0211426855216155 -14131.0,0.02113538435767824 -14132.0,0.021128085715038224 -14133.0,0.021120789592824776 -14134.0,0.021113495990167534 -14135.0,0.021106204906196423 -14136.0,0.021098916340041657 -14137.0,0.021091630290833774 -14138.0,0.021084346757703595 -14139.0,0.021077065739782262 -14140.0,0.021069787236201183 -14141.0,0.021062511246092094 -14142.0,0.02105523776858702 -14143.0,0.021047966802818306 -14144.0,0.02104069834791855 -14145.0,0.021033432403020694 -14146.0,0.021026168967257963 -14147.0,0.021018908039763883 -14148.0,0.021011649619672283 -14149.0,0.02100439370611727 -14150.0,0.020997140298233276 -14151.0,0.020989889395155024 -14152.0,0.02098264099601754 -14153.0,0.020975395099956128 -14154.0,0.020968151706106414 -14155.0,0.020960910813604308 -14156.0,0.020953672421586043 -14157.0,0.02094643652918811 -14158.0,0.020939203135547323 -14159.0,0.020931972239800797 -14160.0,0.020924743841085947 -14161.0,0.020917517938540457 -14162.0,0.020910294531302345 -14163.0,0.020903073618509904 -14164.0,0.020895855199301743 -14165.0,0.020888639272816742 -14166.0,0.020881425838194096 -14167.0,0.020874214894573303 -14168.0,0.020867006441094144 -14169.0,0.020859800476896718 -14170.0,0.02085259700112138 -14171.0,0.020845396012908822 -14172.0,0.02083819751140002 -14173.0,0.02083100149573625 -14174.0,0.020823807965059064 -14175.0,0.020816616918510333 -14176.0,0.020809428355232223 -14177.0,0.020802242274367194 -14178.0,0.020795058675057987 -14179.0,0.02078787755644765 -14180.0,0.02078069891767954 -14181.0,0.0207735227578973 -14182.0,0.020766349076244847 -14183.0,0.020759177871866426 -14184.0,0.020752009143906566 -14185.0,0.020744842891510084 -14186.0,0.02073767911382211 -14187.0,0.02073051780998804 -14188.0,0.020723358979153592 -14189.0,0.02071620262046477 -14190.0,0.02070904873306788 -14191.0,0.0207018973161095 -14192.0,0.020694748368736526 -14193.0,0.02068760189009614 -14194.0,0.020680457879335826 -14195.0,0.02067331633560334 -14196.0,0.02066617725804676 -14197.0,0.02065904064581444 -14198.0,0.02065190649805505 -14199.0,0.02064477481391751 -14200.0,0.020637645592551084 -14201.0,0.020630518833105297 -14202.0,0.020623394534729993 -14203.0,0.020616272696575278 -14204.0,0.020609153317791572 -14205.0,0.020602036397529593 -14206.0,0.02059492193494034 -14207.0,0.020587809929175114 -14208.0,0.020580700379385496 -14209.0,0.020573593284723368 -14210.0,0.02056648864434091 -14211.0,0.020559386457390603 -14212.0,0.020552286723025184 -14213.0,0.02054518944039772 -14214.0,0.02053809460866155 -14215.0,0.02053100222697033 -14216.0,0.020523912294477968 -14217.0,0.020516824810338695 -14218.0,0.020509739773707028 -14219.0,0.02050265718373778 -14220.0,0.020495577039586033 -14221.0,0.02048849934040719 -14222.0,0.020481424085356928 -14223.0,0.02047435127359122 -14224.0,0.020467280904266347 -14225.0,0.02046021297653884 -14226.0,0.020453147489565563 -14227.0,0.020446084442503648 -14228.0,0.020439023834510538 -14229.0,0.020431965664743933 -14230.0,0.020424909932361856 -14231.0,0.02041785663652261 -14232.0,0.020410805776384797 -14233.0,0.02040375735110728 -14234.0,0.02039671135984925 -14235.0,0.02038966780177016 -14236.0,0.02038262667602978 -14237.0,0.02037558798178814 -14238.0,0.02036855171820558 -14239.0,0.020361517884442727 -14240.0,0.020354486479660504 -14241.0,0.020347457503020097 -14242.0,0.02034043095368301 -14243.0,0.02033340683081103 -14244.0,0.020326385133566223 -14245.0,0.020319365861110966 -14246.0,0.020312349012607894 -14247.0,0.020305334587219954 -14248.0,0.02029832258411038 -14249.0,0.020291313002442694 -14250.0,0.02028430584138069 -14251.0,0.020277301100088473 -14252.0,0.02027029877773043 -14253.0,0.020263298873471246 -14254.0,0.020256301386475856 -14255.0,0.02024930631590953 -14256.0,0.020242313660937802 -14257.0,0.020235323420726512 -14258.0,0.02022833559444175 -14259.0,0.020221350181249938 -14260.0,0.020214367180317758 -14261.0,0.020207386590812195 -14262.0,0.02020040841190052 -14263.0,0.020193432642750274 -14264.0,0.020186459282529306 -14265.0,0.020179488330405743 -14266.0,0.020172519785548012 -14267.0,0.020165553647124797 -14268.0,0.020158589914305098 -14269.0,0.020151628586258196 -14270.0,0.02014466966215366 -14271.0,0.02013771314116132 -14272.0,0.020130759022451334 -14273.0,0.020123807305194114 -14274.0,0.020116857988560388 -14275.0,0.02010991107172113 -14276.0,0.020102966553847638 -14277.0,0.020096024434111476 -14278.0,0.020089084711684514 -14279.0,0.02008214738573887 -14280.0,0.020075212455446984 -14281.0,0.02006827991998157 -14282.0,0.020061349778515626 -14283.0,0.02005442203022245 -14284.0,0.02004749667427558 -14285.0,0.020040573709848897 -14286.0,0.020033653136116537 -14287.0,0.02002673495225293 -14288.0,0.020019819157432773 -14289.0,0.02001290575083107 -14290.0,0.0200059947316231 -14291.0,0.019999086098984445 -14292.0,0.019992179852090928 -14293.0,0.019985275990118703 -14294.0,0.01997837451224418 -14295.0,0.019971475417644078 -14296.0,0.019964578705495364 -14297.0,0.019957684374975325 -14298.0,0.019950792425261512 -14299.0,0.019943902855531766 -14300.0,0.019937015664964225 -14301.0,0.019930130852737274 -14302.0,0.01992324841802962 -14303.0,0.019916368360020233 -14304.0,0.019909490677888383 -14305.0,0.019902615370813594 -14306.0,0.019895742437975705 -14307.0,0.01988887187855482 -14308.0,0.019882003691731345 -14309.0,0.019875137876685933 -14310.0,0.019868274432599555 -14311.0,0.019861413358653452 -14312.0,0.019854554654029154 -14313.0,0.019847698317908453 -14314.0,0.019840844349473443 -14315.0,0.0198339927479065 -14316.0,0.01982714351239028 -14317.0,0.019820296642107712 -14318.0,0.019813452136242013 -14319.0,0.01980660999397669 -14320.0,0.01979977021449552 -14321.0,0.01979293279698258 -14322.0,0.019786097740622198 -14323.0,0.019779265044599006 -14324.0,0.019772434708097923 -14325.0,0.019765606730304138 -14326.0,0.01975878111040311 -14327.0,0.0197519578475806 -14328.0,0.019745136941022645 -14329.0,0.019738318389915566 -14330.0,0.019731502193445945 -14331.0,0.019724688350800663 -14332.0,0.019717876861166887 -14333.0,0.01971106772373206 -14334.0,0.01970426093768388 -14335.0,0.019697456502210362 -14336.0,0.01969065441649978 -14337.0,0.019683854679740705 -14338.0,0.01967705729112198 -14339.0,0.019670262249832704 -14340.0,0.019663469555062298 -14341.0,0.019656679206000432 -14342.0,0.019649891201837084 -14343.0,0.019643105541762473 -14344.0,0.01963632222496713 -14345.0,0.01962954125064185 -14346.0,0.019622762617977726 -14347.0,0.0196159863261661 -14348.0,0.019609212374398614 -14349.0,0.019602440761867186 -14350.0,0.019595671487764026 -14351.0,0.019588904551281584 -14352.0,0.019582139951612627 -14353.0,0.019575377687950184 -14354.0,0.01956861775948758 -14355.0,0.019561860165418384 -14356.0,0.019555104904936473 -14357.0,0.019548351977235996 -14358.0,0.019541601381511377 -14359.0,0.019534853116957324 -14360.0,0.019528107182768806 -14361.0,0.01952136357814109 -14362.0,0.01951462230226971 -14363.0,0.019507883354350494 -14364.0,0.019501146733579514 -14365.0,0.01949441243915315 -14366.0,0.01948768047026805 -14367.0,0.019480950826121148 -14368.0,0.01947422350590963 -14369.0,0.01946749850883098 -14370.0,0.019460775834082962 -14371.0,0.019454055480863614 -14372.0,0.019447337448371228 -14373.0,0.019440621735804405 -14374.0,0.019433908342362007 -14375.0,0.019427197267243172 -14376.0,0.019420488509647334 -14377.0,0.01941378206877416 -14378.0,0.01940707794382364 -14379.0,0.019400376133996013 -14380.0,0.019393676638491814 -14381.0,0.019386979456511823 -14382.0,0.019380284587257122 -14383.0,0.019373592029929068 -14384.0,0.019366901783729292 -14385.0,0.01936021384785968 -14386.0,0.019353528221522413 -14387.0,0.019346844903919955 -14388.0,0.01934016389425504 -14389.0,0.01933348519173065 -14390.0,0.019326808795550075 -14391.0,0.019320134704916874 -14392.0,0.019313462919034883 -14393.0,0.01930679343710819 -14394.0,0.019300126258341176 -14395.0,0.019293461381938506 -14396.0,0.019286798807105102 -14397.0,0.01928013853304618 -14398.0,0.019273480558967198 -14399.0,0.019266824884073917 -14400.0,0.019260171507572362 -14401.0,0.019253520428668847 -14402.0,0.019246871646569925 -14403.0,0.019240225160482453 -14404.0,0.01923358096961356 -14405.0,0.019226939073170645 -14406.0,0.019220299470361364 -14407.0,0.019213662160393667 -14408.0,0.019207027142475776 -14409.0,0.019200394415816183 -14410.0,0.019193763979623638 -14411.0,0.019187135833107192 -14412.0,0.01918050997547615 -14413.0,0.019173886405940095 -14414.0,0.019167265123708893 -14415.0,0.019160646127992658 -14416.0,0.0191540294180018 -14417.0,0.019147414992946993 -14418.0,0.019140802852039195 -14419.0,0.019134192994489603 -14420.0,0.019127585419509725 -14421.0,0.019120980126311322 -14422.0,0.019114377114106434 -14423.0,0.019107776382107363 -14424.0,0.019101177929526692 -14425.0,0.019094581755577277 -14426.0,0.019087987859472248 -14427.0,0.019081396240424982 -14428.0,0.019074806897649163 -14429.0,0.019068219830358724 -14430.0,0.019061635037767886 -14431.0,0.019055052519091117 -14432.0,0.019048472273543178 -14433.0,0.01904189430033909 -14434.0,0.019035318598694152 -14435.0,0.01902874516782394 -14436.0,0.019022174006944267 -14437.0,0.019015605115271263 -14438.0,0.019009038492021298 -14439.0,0.019002474136411034 -14440.0,0.018995912047657368 -14441.0,0.018989352224977506 -14442.0,0.01898279466758891 -14443.0,0.018976239374709315 -14444.0,0.018969686345556704 -14445.0,0.018963135579349363 -14446.0,0.018956587075305828 -14447.0,0.018950040832644923 -14448.0,0.01894349685058571 -14449.0,0.018936955128347546 -14450.0,0.018930415665150056 -14451.0,0.018923878460213123 -14452.0,0.018917343512756923 -14453.0,0.01891081082200186 -14454.0,0.018904280387168643 -14455.0,0.01889775220747824 -14456.0,0.018891226282151893 -14457.0,0.018884702610411093 -14458.0,0.01887818119147762 -14459.0,0.018871662024573514 -14460.0,0.018865145108921098 -14461.0,0.018858630443742933 -14462.0,0.018852118028261873 -14463.0,0.018845607861701037 -14464.0,0.01883909994328382 -14465.0,0.018832594272233855 -14466.0,0.018826090847775073 -14467.0,0.01881958966913166 -14468.0,0.018813090735528087 -14469.0,0.018806594046189055 -14470.0,0.018800099600339567 -14471.0,0.018793607397204884 -14472.0,0.018787117436010536 -14473.0,0.01878062971598232 -14474.0,0.018774144236346286 -14475.0,0.01876766099632877 -14476.0,0.01876117999515637 -14477.0,0.01875470123205596 -14478.0,0.01874822470625465 -14479.0,0.018741750416979848 -14480.0,0.01873527836345922 -14481.0,0.018728808544920702 -14482.0,0.018722340960592478 -14483.0,0.01871587560970302 -14484.0,0.01870941249148106 -14485.0,0.0187029516051556 -14486.0,0.01869649294995589 -14487.0,0.018690036525111465 -14488.0,0.018683582329852125 -14489.0,0.01867713036340793 -14490.0,0.01867068062500921 -14491.0,0.01866423311388655 -14492.0,0.01865778782927081 -14493.0,0.018651344770393118 -14494.0,0.018644903936484873 -14495.0,0.018638465326777716 -14496.0,0.01863202894050357 -14497.0,0.018625594776894627 -14498.0,0.01861916283518334 -14499.0,0.018612733114602417 -14500.0,0.01860630561438484 -14501.0,0.01859988033376386 -14502.0,0.018593457271972993 -14503.0,0.018587036428246002 -14504.0,0.01858061780181693 -14505.0,0.018574201391920085 -14506.0,0.018567787197790044 -14507.0,0.01856137521866162 -14508.0,0.018554965453769928 -14509.0,0.018548557902350323 -14510.0,0.01854215256363843 -14511.0,0.01853574943687015 -14512.0,0.01852934852128162 -14513.0,0.018522949816109264 -14514.0,0.018516553320589765 -14515.0,0.018510159033960076 -14516.0,0.018503766955457385 -14517.0,0.018497377084319176 -14518.0,0.018490989419783183 -14519.0,0.018484603961087413 -14520.0,0.01847822070747011 -14521.0,0.018471839658169807 -14522.0,0.01846546081242529 -14523.0,0.018459084169475618 -14524.0,0.01845270972856009 -14525.0,0.018446337488918284 -14526.0,0.018439967449790044 -14527.0,0.01843359961041547 -14528.0,0.01842723397003493 -14529.0,0.018420870527889037 -14530.0,0.018414509283218687 -14531.0,0.018408150235265024 -14532.0,0.018401793383269475 -14533.0,0.018395438726473697 -14534.0,0.018389086264119628 -14535.0,0.01838273599544947 -14536.0,0.01837638791970569 -14537.0,0.018370042036130997 -14538.0,0.018363698343968372 -14539.0,0.018357356842461064 -14540.0,0.01835101753085259 -14541.0,0.01834468040838669 -14542.0,0.01833834547430741 -14543.0,0.01833201272785903 -14544.0,0.018325682168286117 -14545.0,0.01831935379483346 -14546.0,0.018313027606746135 -14547.0,0.018306703603269477 -14548.0,0.01830038178364908 -14549.0,0.018294062147130793 -14550.0,0.018287744692960736 -14551.0,0.018281429420385294 -14552.0,0.01827511632865107 -14553.0,0.018268805417004975 -14554.0,0.01826249668469416 -14555.0,0.018256190130966042 -14556.0,0.018249885755068296 -14557.0,0.018243583556248853 -14558.0,0.01823728353375591 -14559.0,0.018230985686837935 -14560.0,0.018224690014743607 -14561.0,0.018218396516721917 -14562.0,0.018212105192022092 -14563.0,0.018205816039893626 -14564.0,0.018199529059586272 -14565.0,0.018193244250350037 -14566.0,0.018186961611435185 -14567.0,0.01818068114209225 -14568.0,0.018174402841572023 -14569.0,0.01816812670912553 -14570.0,0.01816185274400408 -14571.0,0.01815558094545924 -14572.0,0.018149311312742826 -14573.0,0.018143043845106923 -14574.0,0.01813677854180386 -14575.0,0.01813051540208624 -14576.0,0.018124254425206925 -14577.0,0.018117995610418998 -14578.0,0.01811173895697584 -14579.0,0.018105484464131086 -14580.0,0.018099232131138614 -14581.0,0.018092981957252566 -14582.0,0.018086733941727346 -14583.0,0.018080488083817608 -14584.0,0.018074244382778267 -14585.0,0.01806800283786451 -14586.0,0.018061763448331738 -14587.0,0.01805552621343565 -14588.0,0.018049291132432192 -14589.0,0.018043058204577564 -14590.0,0.018036827429128217 -14591.0,0.018030598805340876 -14592.0,0.0180243723324725 -14593.0,0.01801814800978034 -14594.0,0.018011925836521846 -14595.0,0.01800570581195477 -14596.0,0.01799948793533712 -14597.0,0.017993272205927134 -14598.0,0.01798705862298333 -14599.0,0.017980847185764464 -14600.0,0.017974637893529568 -14601.0,0.01796843074553793 -14602.0,0.01796222574104905 -14603.0,0.01795602287932273 -14604.0,0.01794982215961902 -14605.0,0.017943623581198213 -14606.0,0.017937427143320868 -14607.0,0.017931232845247794 -14608.0,0.017925040686240054 -14609.0,0.017918850665558973 -14610.0,0.017912662782466136 -14611.0,0.017906477036223348 -14612.0,0.017900293426092707 -14613.0,0.01789411195133656 -14614.0,0.017887932611217492 -14615.0,0.01788175540499836 -14616.0,0.017875580331942264 -14617.0,0.017869407391312566 -14618.0,0.017863236582372894 -14619.0,0.017857067904387083 -14620.0,0.01785090135661927 -14621.0,0.017844736938333838 -14622.0,0.017838574648795406 -14623.0,0.017832414487268862 -14624.0,0.017826256453019346 -14625.0,0.01782010054531225 -14626.0,0.017813946763413212 -14627.0,0.017807795106588156 -14628.0,0.017801645574103193 -14629.0,0.017795498165224754 -14630.0,0.017789352879219494 -14631.0,0.017783209715354322 -14632.0,0.017777068672896405 -14633.0,0.017770929751113163 -14634.0,0.017764792949272266 -14635.0,0.017758658266641657 -14636.0,0.017752525702489478 -14637.0,0.017746395256084176 -14638.0,0.01774026692669443 -14639.0,0.017734140713589183 -14640.0,0.017728016616037616 -14641.0,0.017721894633309167 -14642.0,0.017715774764673536 -14643.0,0.01770965700940066 -14644.0,0.017703541366760757 -14645.0,0.01769742783602424 -14646.0,0.017691316416461825 -14647.0,0.017685207107344468 -14648.0,0.017679099907943367 -14649.0,0.017672994817529982 -14650.0,0.01766689183537602 -14651.0,0.017660790960753438 -14652.0,0.017654692192934463 -14653.0,0.017648595531191524 -14654.0,0.01764250097479735 -14655.0,0.017636408523024904 -14656.0,0.017630318175147406 -14657.0,0.017624229930438315 -14658.0,0.01761814378817135 -14659.0,0.017612059747620482 -14660.0,0.017605977808059923 -14661.0,0.017599897968764166 -14662.0,0.01759382022900789 -14663.0,0.017587744588066088 -14664.0,0.017581671045213975 -14665.0,0.017575599599727022 -14666.0,0.017569530250880958 -14667.0,0.017563462997951744 -14668.0,0.017557397840215604 -14669.0,0.017551334776949028 -14670.0,0.0175452738074287 -14671.0,0.01753921493093161 -14672.0,0.017533158146734975 -14673.0,0.01752710345411627 -14674.0,0.01752105085235321 -14675.0,0.017515000340723764 -14676.0,0.017508951918506155 -14677.0,0.017502905584978842 -14678.0,0.017496861339420564 -14679.0,0.01749081918111025 -14680.0,0.017484779109327137 -14681.0,0.01747874112335068 -14682.0,0.017472705222460597 -14683.0,0.01746667140593685 -14684.0,0.017460639673059646 -14685.0,0.017454610023109444 -14686.0,0.017448582455366964 -14687.0,0.01744255696911313 -14688.0,0.017436533563629168 -14689.0,0.017430512238196524 -14690.0,0.017424492992096897 -14691.0,0.017418475824612235 -14692.0,0.017412460735024737 -14693.0,0.017406447722616843 -14694.0,0.017400436786671265 -14695.0,0.017394427926470904 -14696.0,0.017388421141298967 -14697.0,0.01738241643043889 -14698.0,0.01737641379317435 -14699.0,0.01737041322878928 -14700.0,0.017364414736567853 -14701.0,0.017358418315794495 -14702.0,0.017352423965753875 -14703.0,0.01734643168573093 -14704.0,0.01734044147501079 -14705.0,0.017334453332878884 -14706.0,0.017328467258620868 -14707.0,0.017322483251522646 -14708.0,0.017316501310870376 -14709.0,0.01731052143595045 -14710.0,0.017304543626049516 -14711.0,0.017298567880454477 -14712.0,0.017292594198452443 -14713.0,0.01728662257933081 -14714.0,0.01728065302237721 -14715.0,0.017274685526879514 -14716.0,0.01726872009212585 -14717.0,0.017262756717404577 -14718.0,0.017256795402004314 -14719.0,0.017250836145213916 -14720.0,0.017244878946322505 -14721.0,0.0172389238046194 -14722.0,0.017232970719394208 -14723.0,0.01722701968993677 -14724.0,0.017221070715537176 -14725.0,0.017215123795485756 -14726.0,0.01720917892907308 -14727.0,0.017203236115589975 -14728.0,0.017197295354327517 -14729.0,0.01719135664457699 -14730.0,0.01718541998562996 -14731.0,0.017179485376778235 -14732.0,0.01717355281731385 -14733.0,0.017167622306529098 -14734.0,0.017161693843716515 -14735.0,0.017155767428168874 -14736.0,0.0171498430591792 -14737.0,0.017143920736040773 -14738.0,0.017138000458047073 -14739.0,0.017132082224491866 -14740.0,0.017126166034669158 -14741.0,0.01712025188787318 -14742.0,0.017114339783398425 -14743.0,0.017108429720539622 -14744.0,0.01710252169859174 -14745.0,0.01709661571685001 -14746.0,0.017090711774609864 -14747.0,0.01708480987116702 -14748.0,0.01707891000581742 -14749.0,0.01707301217785726 -14750.0,0.017067116386582964 -14751.0,0.01706122263129121 -14752.0,0.01705533091127892 -14753.0,0.01704944122584325 -14754.0,0.017043553574281622 -14755.0,0.017037667955891646 -14756.0,0.017031784369971235 -14757.0,0.017025902815818512 -14758.0,0.017020023292731855 -14759.0,0.01701414580000988 -14760.0,0.017008270336951438 -14761.0,0.017002396902855637 -14762.0,0.016996525497021832 -14763.0,0.016990656118749576 -14764.0,0.01698478876733871 -14765.0,0.016978923442089306 -14766.0,0.016973060142301665 -14767.0,0.016967198867276344 -14768.0,0.016961339616314138 -14769.0,0.016955482388716074 -14770.0,0.016949627183783445 -14771.0,0.01694377400081774 -14772.0,0.016937922839120732 -14773.0,0.016932073697994418 -14774.0,0.01692622657674104 -14775.0,0.016920381474663074 -14776.0,0.016914538391063248 -14777.0,0.016908697325244523 -14778.0,0.016902858276510103 -14779.0,0.016897021244163445 -14780.0,0.016891186227508206 -14781.0,0.01688535322584832 -14782.0,0.016879522238487963 -14783.0,0.016873693264731534 -14784.0,0.016867866303883677 -14785.0,0.016862041355249283 -14786.0,0.016856218418133475 -14787.0,0.016850397491841636 -14788.0,0.01684457857567934 -14789.0,0.01683876166895245 -14790.0,0.01683294677096705 -14791.0,0.016827133881029466 -14792.0,0.01682132299844626 -14793.0,0.016815514122524237 -14794.0,0.016809707252570444 -14795.0,0.01680390238789216 -14796.0,0.01679809952779692 -14797.0,0.016792298671592463 -14798.0,0.0167864998185868 -14799.0,0.016780702968088167 -14800.0,0.016774908119405043 -14801.0,0.016769115271846147 -14802.0,0.016763324424720435 -14803.0,0.0167575355773371 -14804.0,0.01675174872900559 -14805.0,0.016745963879035545 -14806.0,0.01674018102673689 -14807.0,0.016734400171419774 -14808.0,0.01672862131239458 -14809.0,0.01672284444897194 -14810.0,0.016717069580462707 -14811.0,0.016711296706177988 -14812.0,0.016705525825429116 -14813.0,0.016699756937527687 -14814.0,0.01669399004178548 -14815.0,0.016688225137514563 -14816.0,0.01668246222402723 -14817.0,0.016676701300635997 -14818.0,0.01667094236665364 -14819.0,0.01666518542139315 -14820.0,0.01665943046416777 -14821.0,0.01665367749429099 -14822.0,0.01664792651107649 -14823.0,0.01664217751383824 -14824.0,0.016636430501890426 -14825.0,0.016630685474547467 -14826.0,0.016624942431124026 -14827.0,0.016619201370934998 -14828.0,0.01661346229329552 -14829.0,0.016607725197520955 -14830.0,0.01660199008292693 -14831.0,0.01659625694882926 -14832.0,0.016590525794544033 -14833.0,0.016584796619387564 -14834.0,0.01657906942267641 -14835.0,0.01657334420372735 -14836.0,0.01656762096185742 -14837.0,0.016561899696383862 -14838.0,0.0165561804066242 -14839.0,0.016550463091896127 -14840.0,0.016544747751517624 -14841.0,0.0165390343848069 -14842.0,0.016533322991082382 -14843.0,0.016527613569662748 -14844.0,0.016521906119866904 -14845.0,0.016516200641013997 -14846.0,0.01651049713242341 -14847.0,0.01650479559341474 -14848.0,0.01649909602330784 -14849.0,0.016493398421422792 -14850.0,0.01648770278707992 -14851.0,0.01648200911959977 -14852.0,0.016476317418303136 -14853.0,0.016470627682511032 -14854.0,0.016464939911544723 -14855.0,0.016459254104725703 -14856.0,0.01645357026137568 -14857.0,0.016447888380816615 -14858.0,0.016442208462370708 -14859.0,0.016436530505360387 -14860.0,0.01643085450910831 -14861.0,0.01642518047293737 -14862.0,0.016419508396170703 -14863.0,0.01641383827813168 -14864.0,0.016408170118143873 -14865.0,0.016402503915531122 -14866.0,0.016396839669617493 -14867.0,0.01639117737972728 -14868.0,0.016385517045185018 -14869.0,0.016379858665315463 -14870.0,0.01637420223944362 -14871.0,0.01636854776689471 -14872.0,0.01636289524699422 -14873.0,0.01635724467906781 -14874.0,0.016351596062441423 -14875.0,0.01634594939644122 -14876.0,0.0163403046803936 -14877.0,0.016334661913625183 -14878.0,0.016329021095462828 -14879.0,0.016323382225233635 -14880.0,0.016317745302264933 -14881.0,0.01631211032588426 -14882.0,0.016306477295419404 -14883.0,0.016300846210198394 -14884.0,0.016295217069549485 -14885.0,0.016289589872801158 -14886.0,0.01628396461928213 -14887.0,0.01627834130832135 -14888.0,0.016272719939247997 -14889.0,0.016267100511391495 -14890.0,0.016261483024081463 -14891.0,0.016255867476647787 -14892.0,0.016250253868420578 -14893.0,0.016244642198730164 -14894.0,0.01623903246690712 -14895.0,0.016233424672282247 -14896.0,0.016227818814186574 -14897.0,0.01622221489195138 -14898.0,0.016216612904908122 -14899.0,0.016211012852388546 -14900.0,0.016205414733724603 -14901.0,0.01619981854824848 -14902.0,0.01619422429529259 -14903.0,0.016188631974189578 -14904.0,0.016183041584272327 -14905.0,0.016177453124873942 -14906.0,0.016171866595327773 -14907.0,0.01616628199496736 -14908.0,0.016160699323126516 -14909.0,0.016155118579139267 -14910.0,0.016149539762339873 -14911.0,0.016143962872062823 -14912.0,0.01613838790764283 -14913.0,0.016132814868414842 -14914.0,0.016127243753714056 -14915.0,0.016121674562875846 -14916.0,0.016116107295235865 -14917.0,0.016110541950129974 -14918.0,0.01610497852689427 -14919.0,0.016099417024865077 -14920.0,0.01609385744337895 -14921.0,0.01608829978177267 -14922.0,0.016082744039383264 -14923.0,0.016077190215547942 -14924.0,0.016071638309604192 -14925.0,0.016066088320889706 -14926.0,0.016060540248742414 -14927.0,0.01605499409250047 -14928.0,0.016049449851502258 -14929.0,0.016043907525086394 -14930.0,0.016038367112591715 -14931.0,0.01603282861335731 -14932.0,0.01602729202672244 -14933.0,0.016021757352026645 -14934.0,0.016016224588609688 -14935.0,0.01601069373581154 -14936.0,0.01600516479297242 -14937.0,0.015999637759432757 -14938.0,0.015994112634533222 -14939.0,0.01598858941761472 -14940.0,0.015983068108018344 -14941.0,0.015977548705085456 -14942.0,0.01597203120815763 -14943.0,0.01596651561657667 -14944.0,0.015961001929684606 -14945.0,0.015955490146823695 -14946.0,0.01594998026733642 -14947.0,0.015944472290565496 -14948.0,0.015938966215853875 -14949.0,0.015933462042544692 -14950.0,0.015927959769981355 -14951.0,0.01592245939750748 -14952.0,0.01591696092446692 -14953.0,0.01591146435020374 -14954.0,0.015905969674062242 -14955.0,0.01590047689538695 -14956.0,0.01589498601352263 -14957.0,0.015889497027814233 -14958.0,0.015884009937606972 -14959.0,0.015878524742246287 -14960.0,0.015873041441077824 -14961.0,0.01586756003344747 -14962.0,0.015862080518701333 -14963.0,0.015856602896185745 -14964.0,0.015851127165247267 -14965.0,0.0158456533252327 -14966.0,0.015840181375489024 -14967.0,0.01583471131536349 -14968.0,0.01582924314420356 -14969.0,0.01582377686135692 -14970.0,0.015818312466171484 -14971.0,0.015812849957995388 -14972.0,0.015807389336176994 -14973.0,0.01580193060006491 -14974.0,0.01579647374900791 -14975.0,0.015791018782355053 -14976.0,0.0157855656994556 -14977.0,0.015780114499659038 -14978.0,0.015774665182315076 -14979.0,0.015769217746773652 -14980.0,0.015763772192384926 -14981.0,0.015758328518499287 -14982.0,0.01575288672446735 -14983.0,0.01574744680963993 -14984.0,0.015742008773368094 -14985.0,0.015736572615003122 -14986.0,0.015731138333896524 -14987.0,0.01572570592940003 -14988.0,0.01572027540086559 -14989.0,0.015714846747645384 -14990.0,0.015709419969091826 -14991.0,0.015703995064557517 -14992.0,0.015698572033395315 -14993.0,0.015693150874958293 -14994.0,0.015687731588599745 -14995.0,0.01568231417367319 -14996.0,0.015676898629532372 -14997.0,0.015671484955531258 -14998.0,0.015666073151024047 -14999.0,0.01566066321536512 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516201000_theo_VPR_VPR.png b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516201000_theo_VPR_VPR.png deleted file mode 100644 index b3e95cc..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516201000_theo_VPR_VPR.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516201500_theo_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516201500_theo_VPR_VPR.csv deleted file mode 100644 index 108cecf..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516201500_theo_VPR_VPR.csv +++ /dev/null @@ -1,15008 +0,0 @@ -# Height Profile -# ============== -# -# Datatype (Unit) : normalized reflectivity (-) -# Fill value : -9999.0 -# Time : 2020-05-16 20:15:00 -# Sector specification: None -Altitude [m MSL],Znorm -0.0,1.0 -1.0,1.0 -2.0,1.0 -3.0,1.0 -4.0,1.0 -5.0,1.0 -6.0,1.0 -7.0,1.0 -8.0,1.0 -9.0,1.0 -10.0,1.0 -11.0,1.0 -12.0,1.0 -13.0,1.0 -14.0,1.0 -15.0,1.0 -16.0,1.0 -17.0,1.0 -18.0,1.0 -19.0,1.0 -20.0,1.0 -21.0,1.0 -22.0,1.0 -23.0,1.0 -24.0,1.0 -25.0,1.0 -26.0,1.0 -27.0,1.0 -28.0,1.0 -29.0,1.0 -30.0,1.0 -31.0,1.0 -32.0,1.0 -33.0,1.0 -34.0,1.0 -35.0,1.0 -36.0,1.0 -37.0,1.0 -38.0,1.0 -39.0,1.0 -40.0,1.0 -41.0,1.0 -42.0,1.0 -43.0,1.0 -44.0,1.0 -45.0,1.0 -46.0,1.0 -47.0,1.0 -48.0,1.0 -49.0,1.0 -50.0,1.0 -51.0,1.0 -52.0,1.0 -53.0,1.0 -54.0,1.0 -55.0,1.0 -56.0,1.0 -57.0,1.0 -58.0,1.0 -59.0,1.0 -60.0,1.0 -61.0,1.0 -62.0,1.0 -63.0,1.0 -64.0,1.0 -65.0,1.0 -66.0,1.0 -67.0,1.0 -68.0,1.0 -69.0,1.0 -70.0,1.0 -71.0,1.0 -72.0,1.0 -73.0,1.0 -74.0,1.0 -75.0,1.0 -76.0,1.0 -77.0,1.0 -78.0,1.0 -79.0,1.0 -80.0,1.0 -81.0,1.0 -82.0,1.0 -83.0,1.0 -84.0,1.0 -85.0,1.0 -86.0,1.0 -87.0,1.0 -88.0,1.0 -89.0,1.0 -90.0,1.0 -91.0,1.0 -92.0,1.0 -93.0,1.0 -94.0,1.0 -95.0,1.0 -96.0,1.0 -97.0,1.0 -98.0,1.0 -99.0,1.0 -100.0,1.0 -101.0,1.0 -102.0,1.0 -103.0,1.0 -104.0,1.0 -105.0,1.0 -106.0,1.0 -107.0,1.0 -108.0,1.0 -109.0,1.0 -110.0,1.0 -111.0,1.0 -112.0,1.0 -113.0,1.0 -114.0,1.0 -115.0,1.0 -116.0,1.0 -117.0,1.0 -118.0,1.0 -119.0,1.0 -120.0,1.0 -121.0,1.0 -122.0,1.0 -123.0,1.0 -124.0,1.0 -125.0,1.0 -126.0,1.0 -127.0,1.0 -128.0,1.0 -129.0,1.0 -130.0,1.0 -131.0,1.0 -132.0,1.0 -133.0,1.0 -134.0,1.0 -135.0,1.0 -136.0,1.0 -137.0,1.0 -138.0,1.0 -139.0,1.0 -140.0,1.0 -141.0,1.0 -142.0,1.0 -143.0,1.0 -144.0,1.0 -145.0,1.0 -146.0,1.0 -147.0,1.0 -148.0,1.0 -149.0,1.0 -150.0,1.0 -151.0,1.0 -152.0,1.0 -153.0,1.0 -154.0,1.0 -155.0,1.0 -156.0,1.0 -157.0,1.0 -158.0,1.0 -159.0,1.0 -160.0,1.0 -161.0,1.0 -162.0,1.0 -163.0,1.0 -164.0,1.0 -165.0,1.0 -166.0,1.0 -167.0,1.0 -168.0,1.0 -169.0,1.0 -170.0,1.0 -171.0,1.0 -172.0,1.0 -173.0,1.0 -174.0,1.0 -175.0,1.0 -176.0,1.0 -177.0,1.0 -178.0,1.0 -179.0,1.0 -180.0,1.0 -181.0,1.0 -182.0,1.0 -183.0,1.0 -184.0,1.0 -185.0,1.0 -186.0,1.0 -187.0,1.0 -188.0,1.0 -189.0,1.0 -190.0,1.0 -191.0,1.0 -192.0,1.0 -193.0,1.0 -194.0,1.0 -195.0,1.0 -196.0,1.0 -197.0,1.0 -198.0,1.0 -199.0,1.0 -200.0,1.0 -201.0,1.0 -202.0,1.0 -203.0,1.0 -204.0,1.0 -205.0,1.0 -206.0,1.0 -207.0,1.0 -208.0,1.0 -209.0,1.0 -210.0,1.0 -211.0,1.0 -212.0,1.0 -213.0,1.0 -214.0,1.0 -215.0,1.0 -216.0,1.0 -217.0,1.0 -218.0,1.0 -219.0,1.0 -220.0,1.0 -221.0,1.0 -222.0,1.0 -223.0,1.0 -224.0,1.0 -225.0,1.0 -226.0,1.0 -227.0,1.0 -228.0,1.0 -229.0,1.0 -230.0,1.0 -231.0,1.0 -232.0,1.0 -233.0,1.0 -234.0,1.0 -235.0,1.0 -236.0,1.0 -237.0,1.0 -238.0,1.0 -239.0,1.0 -240.0,1.0 -241.0,1.0 -242.0,1.0 -243.0,1.0 -244.0,1.0 -245.0,1.0 -246.0,1.0 -247.0,1.0 -248.0,1.0 -249.0,1.0 -250.0,1.0 -251.0,1.0 -252.0,1.0 -253.0,1.0 -254.0,1.0 -255.0,1.0 -256.0,1.0 -257.0,1.0 -258.0,1.0 -259.0,1.0 -260.0,1.0 -261.0,1.0 -262.0,1.0 -263.0,1.0 -264.0,1.0 -265.0,1.0 -266.0,1.0 -267.0,1.0 -268.0,1.0 -269.0,1.0 -270.0,1.0 -271.0,1.0 -272.0,1.0 -273.0,1.0 -274.0,1.0 -275.0,1.0 -276.0,1.0 -277.0,1.0 -278.0,1.0 -279.0,1.0 -280.0,1.0 -281.0,1.0 -282.0,1.0 -283.0,1.0 -284.0,1.0 -285.0,1.0 -286.0,1.0 -287.0,1.0 -288.0,1.0 -289.0,1.0 -290.0,1.0 -291.0,1.0 -292.0,1.0 -293.0,1.0 -294.0,1.0 -295.0,1.0 -296.0,1.0 -297.0,1.0 -298.0,1.0 -299.0,1.0 -300.0,1.0 -301.0,1.0 -302.0,1.0 -303.0,1.0 -304.0,1.0 -305.0,1.0 -306.0,1.0 -307.0,1.0 -308.0,1.0 -309.0,1.0 -310.0,1.0 -311.0,1.0 -312.0,1.0 -313.0,1.0 -314.0,1.0 -315.0,1.0 -316.0,1.0 -317.0,1.0 -318.0,1.0 -319.0,1.0 -320.0,1.0 -321.0,1.0 -322.0,1.0 -323.0,1.0 -324.0,1.0 -325.0,1.0 -326.0,1.0 -327.0,1.0 -328.0,1.0 -329.0,1.0 -330.0,1.0 -331.0,1.0 -332.0,1.0 -333.0,1.0 -334.0,1.0 -335.0,1.0 -336.0,1.0 -337.0,1.0 -338.0,1.0 -339.0,1.0 -340.0,1.0 -341.0,1.0 -342.0,1.0 -343.0,1.0 -344.0,1.0 -345.0,1.0 -346.0,1.0 -347.0,1.0 -348.0,1.0 -349.0,1.0 -350.0,1.0 -351.0,1.0 -352.0,1.0 -353.0,1.0 -354.0,1.0 -355.0,1.0 -356.0,1.0 -357.0,1.0 -358.0,1.0 -359.0,1.0 -360.0,1.0 -361.0,1.0 -362.0,1.0 -363.0,1.0 -364.0,1.0 -365.0,1.0 -366.0,1.0 -367.0,1.0 -368.0,1.0 -369.0,1.0 -370.0,1.0 -371.0,1.0 -372.0,1.0 -373.0,1.0 -374.0,1.0 -375.0,1.0 -376.0,1.0 -377.0,1.0 -378.0,1.0 -379.0,1.0 -380.0,1.0 -381.0,1.0 -382.0,1.0 -383.0,1.0 -384.0,1.0 -385.0,1.0 -386.0,1.0 -387.0,1.0 -388.0,1.0 -389.0,1.0 -390.0,1.0 -391.0,1.0 -392.0,1.0 -393.0,1.0 -394.0,1.0 -395.0,1.0 -396.0,1.0 -397.0,1.0 -398.0,1.0 -399.0,1.0 -400.0,1.0 -401.0,1.0 -402.0,1.0 -403.0,1.0 -404.0,1.0 -405.0,1.0 -406.0,1.0 -407.0,1.0 -408.0,1.0 -409.0,1.0 -410.0,1.0 -411.0,1.0 -412.0,1.0 -413.0,1.0 -414.0,1.0 -415.0,1.0 -416.0,1.0 -417.0,1.0 -418.0,1.0 -419.0,1.0 -420.0,1.0 -421.0,1.0 -422.0,1.0 -423.0,1.0 -424.0,1.0 -425.0,1.0 -426.0,1.0 -427.0,1.0 -428.0,1.0 -429.0,1.0 -430.0,1.0 -431.0,1.0 -432.0,1.0 -433.0,1.0 -434.0,1.0 -435.0,1.0 -436.0,1.0 -437.0,1.0 -438.0,1.0 -439.0,1.0 -440.0,1.0 -441.0,1.0 -442.0,1.0 -443.0,1.0 -444.0,1.0 -445.0,1.0 -446.0,1.0 -447.0,1.0 -448.0,1.0 -449.0,1.0 -450.0,1.0 -451.0,1.0 -452.0,1.0 -453.0,1.0 -454.0,1.0 -455.0,1.0 -456.0,1.0 -457.0,1.0 -458.0,1.0 -459.0,1.0 -460.0,1.0 -461.0,1.0 -462.0,1.0 -463.0,1.0 -464.0,1.0 -465.0,1.0 -466.0,1.0 -467.0,1.0 -468.0,1.0 -469.0,1.0 -470.0,1.0 -471.0,1.0 -472.0,1.0 -473.0,1.0 -474.0,1.0 -475.0,1.0 -476.0,1.0 -477.0,1.0 -478.0,1.0 -479.0,1.0 -480.0,1.0 -481.0,1.0 -482.0,1.0 -483.0,1.0 -484.0,1.0 -485.0,1.0 -486.0,1.0 -487.0,1.0 -488.0,1.0 -489.0,1.0 -490.0,1.0 -491.0,1.0 -492.0,1.0 -493.0,1.0 -494.0,1.0 -495.0,1.0 -496.0,1.0 -497.0,1.0 -498.0,1.0 -499.0,1.0 -500.0,1.0 -501.0,1.0 -502.0,1.0 -503.0,1.0 -504.0,1.0 -505.0,1.0 -506.0,1.0 -507.0,1.0 -508.0,1.0 -509.0,1.0 -510.0,1.0 -511.0,1.0 -512.0,1.0 -513.0,1.0 -514.0,1.0 -515.0,1.0 -516.0,1.0 -517.0,1.0 -518.0,1.0 -519.0,1.0 -520.0,1.0 -521.0,1.0 -522.0,1.0 -523.0,1.0 -524.0,1.0 -525.0,1.0 -526.0,1.0 -527.0,1.0 -528.0,1.0 -529.0,1.0 -530.0,1.0 -531.0,1.0 -532.0,1.0 -533.0,1.0 -534.0,1.0 -535.0,1.0 -536.0,1.0 -537.0,1.0 -538.0,1.0 -539.0,1.0 -540.0,1.0 -541.0,1.0 -542.0,1.0 -543.0,1.0 -544.0,1.0 -545.0,1.0 -546.0,1.0 -547.0,1.0 -548.0,1.0 -549.0,1.0 -550.0,1.0 -551.0,1.0 -552.0,1.0 -553.0,1.0 -554.0,1.0 -555.0,1.0 -556.0,1.0 -557.0,1.0 -558.0,1.0 -559.0,1.0 -560.0,1.0 -561.0,1.0 -562.0,1.0 -563.0,1.0 -564.0,1.0 -565.0,1.0 -566.0,1.0 -567.0,1.0 -568.0,1.0 -569.0,1.0 -570.0,1.0 -571.0,1.0 -572.0,1.0 -573.0,1.0 -574.0,1.0 -575.0,1.0 -576.0,1.0 -577.0,1.0 -578.0,1.0 -579.0,1.0 -580.0,1.0 -581.0,1.0 -582.0,1.0 -583.0,1.0 -584.0,1.0 -585.0,1.0 -586.0,1.0 -587.0,1.0 -588.0,1.0 -589.0,1.0 -590.0,1.0 -591.0,1.0 -592.0,1.0 -593.0,1.0 -594.0,1.0 -595.0,1.0 -596.0,1.0 -597.0,1.0 -598.0,1.0 -599.0,1.0 -600.0,1.0 -601.0,1.0 -602.0,1.0 -603.0,1.0 -604.0,1.0 -605.0,1.0 -606.0,1.0 -607.0,1.0 -608.0,1.0 -609.0,1.0 -610.0,1.0 -611.0,1.0 -612.0,1.0 -613.0,1.0 -614.0,1.0 -615.0,1.0 -616.0,1.0 -617.0,1.0 -618.0,1.0 -619.0,1.0 -620.0,1.0 -621.0,1.0 -622.0,1.0 -623.0,1.0 -624.0,1.0 -625.0,1.0 -626.0,1.0 -627.0,1.0 -628.0,1.0 -629.0,1.0 -630.0,1.0 -631.0,1.0 -632.0,1.0 -633.0,1.0 -634.0,1.0 -635.0,1.0 -636.0,1.0 -637.0,1.0 -638.0,1.0 -639.0,1.0 -640.0,1.0 -641.0,1.0 -642.0,1.0 -643.0,1.0 -644.0,1.0 -645.0,1.0 -646.0,1.0 -647.0,1.0 -648.0,1.0 -649.0,1.0 -650.0,1.0 -651.0,1.0 -652.0,1.0 -653.0,1.0 -654.0,1.0 -655.0,1.0 -656.0,1.0 -657.0,1.0 -658.0,1.0 -659.0,1.0 -660.0,1.0 -661.0,1.0 -662.0,1.0 -663.0,1.0 -664.0,1.0 -665.0,1.0 -666.0,1.0 -667.0,1.0 -668.0,1.0 -669.0,1.0 -670.0,1.0 -671.0,1.0 -672.0,1.0 -673.0,1.0 -674.0,1.0 -675.0,1.0 -676.0,1.0 -677.0,1.0 -678.0,1.0 -679.0,1.0 -680.0,1.0 -681.0,1.0 -682.0,1.0 -683.0,1.0 -684.0,1.0 -685.0,1.0 -686.0,1.0 -687.0,1.0 -688.0,1.0 -689.0,1.0 -690.0,1.0 -691.0,1.0 -692.0,1.0 -693.0,1.0 -694.0,1.0 -695.0,1.0 -696.0,1.0 -697.0,1.0 -698.0,1.0 -699.0,1.0 -700.0,1.0 -701.0,1.0 -702.0,1.0 -703.0,1.0 -704.0,1.0 -705.0,1.0 -706.0,1.0 -707.0,1.0 -708.0,1.0 -709.0,1.0 -710.0,1.0 -711.0,1.0 -712.0,1.0 -713.0,1.0 -714.0,1.0 -715.0,1.0 -716.0,1.0 -717.0,1.0 -718.0,1.0 -719.0,1.0 -720.0,1.0 -721.0,1.0 -722.0,1.0 -723.0,1.0 -724.0,1.0 -725.0,1.0 -726.0,1.0 -727.0,1.0 -728.0,1.0 -729.0,1.0 -730.0,1.0 -731.0,1.0 -732.0,1.0 -733.0,1.0 -734.0,1.0 -735.0,1.0 -736.0,1.0 -737.0,1.0 -738.0,1.0 -739.0,1.0 -740.0,1.0 -741.0,1.0 -742.0,1.0 -743.0,1.0 -744.0,1.0 -745.0,1.0 -746.0,1.0 -747.0,1.0 -748.0,1.0 -749.0,1.0 -750.0,1.0 -751.0,1.0 -752.0,1.0 -753.0,1.0 -754.0,1.0 -755.0,1.0 -756.0,1.0 -757.0,1.0 -758.0,1.0 -759.0,1.0 -760.0,1.0 -761.0,1.0 -762.0,1.0 -763.0,1.0 -764.0,1.0 -765.0,1.0 -766.0,1.0 -767.0,1.0 -768.0,1.0 -769.0,1.0 -770.0,1.0 -771.0,1.0 -772.0,1.0 -773.0,1.0 -774.0,1.0 -775.0,1.0 -776.0,1.0 -777.0,1.0 -778.0,1.0 -779.0,1.0 -780.0,1.0 -781.0,1.0 -782.0,1.0 -783.0,1.0 -784.0,1.0 -785.0,1.0 -786.0,1.0 -787.0,1.0 -788.0,1.0 -789.0,1.0 -790.0,1.0 -791.0,1.0 -792.0,1.0 -793.0,1.0 -794.0,1.0 -795.0,1.0 -796.0,1.0 -797.0,1.0 -798.0,1.0 -799.0,1.0 -800.0,1.0 -801.0,1.0 -802.0,1.0 -803.0,1.0 -804.0,1.0 -805.0,1.0 -806.0,1.0 -807.0,1.0 -808.0,1.0 -809.0,1.0 -810.0,1.0 -811.0,1.0 -812.0,1.0 -813.0,1.0 -814.0,1.0 -815.0,1.0 -816.0,1.0 -817.0,1.0 -818.0,1.0 -819.0,1.0 -820.0,1.0 -821.0,1.0 -822.0,1.0 -823.0,1.0 -824.0,1.0 -825.0,1.0 -826.0,1.0 -827.0,1.0 -828.0,1.0 -829.0,1.0 -830.0,1.0 -831.0,1.0 -832.0,1.0 -833.0,1.0 -834.0,1.0 -835.0,1.0 -836.0,1.0 -837.0,1.0 -838.0,1.0 -839.0,1.0 -840.0,1.0 -841.0,1.0 -842.0,1.0 -843.0,1.0 -844.0,1.0 -845.0,1.0 -846.0,1.0 -847.0,1.0 -848.0,1.0 -849.0,1.0 -850.0,1.0 -851.0,1.0 -852.0,1.0 -853.0,1.0 -854.0,1.0 -855.0,1.0 -856.0,1.0 -857.0,1.0 -858.0,1.0 -859.0,1.0 -860.0,1.0 -861.0,1.0 -862.0,1.0 -863.0,1.0 -864.0,1.0 -865.0,1.0 -866.0,1.0 -867.0,1.0 -868.0,1.0 -869.0,1.0 -870.0,1.0 -871.0,1.0 -872.0,1.0 -873.0,1.0 -874.0,1.0 -875.0,1.0 -876.0,1.0 -877.0,1.0 -878.0,1.0 -879.0,1.0 -880.0,1.0 -881.0,1.0 -882.0,1.0 -883.0,1.0 -884.0,1.0 -885.0,1.0 -886.0,1.0 -887.0,1.0 -888.0,1.0 -889.0,1.0 -890.0,1.0 -891.0,1.0 -892.0,1.0 -893.0,1.0 -894.0,1.0 -895.0,1.0 -896.0,1.0 -897.0,1.0 -898.0,1.0 -899.0,1.0 -900.0,1.0 -901.0,1.0 -902.0,1.0 -903.0,1.0 -904.0,1.0 -905.0,1.0 -906.0,1.0 -907.0,1.0 -908.0,1.0 -909.0,1.0 -910.0,1.0 -911.0,1.0 -912.0,1.0 -913.0,1.0 -914.0,1.0 -915.0,1.0 -916.0,1.0 -917.0,1.0 -918.0,1.0 -919.0,1.0 -920.0,1.0 -921.0,1.0 -922.0,1.0 -923.0,1.0 -924.0,1.0 -925.0,1.0 -926.0,1.0 -927.0,1.0 -928.0,1.0 -929.0,1.0 -930.0,1.0 -931.0,1.0 -932.0,1.0 -933.0,1.0 -934.0,1.0 -935.0,1.0 -936.0,1.0 -937.0,1.0 -938.0,1.0 -939.0,1.0 -940.0,1.0 -941.0,1.0 -942.0,1.0 -943.0,1.0 -944.0,1.0 -945.0,1.0 -946.0,1.0 -947.0,1.0 -948.0,1.0 -949.0,1.0 -950.0,1.0 -951.0,1.0 -952.0,1.0 -953.0,1.0 -954.0,1.0 -955.0,1.0 -956.0,1.0 -957.0,1.0 -958.0,1.0 -959.0,1.0 -960.0,1.0 -961.0,1.0 -962.0,1.0 -963.0,1.0 -964.0,1.0 -965.0,1.0 -966.0,1.0 -967.0,1.0 -968.0,1.0 -969.0,1.0 -970.0,1.0 -971.0,1.0 -972.0,1.0 -973.0,1.0 -974.0,1.0 -975.0,1.0 -976.0,1.0 -977.0,1.0 -978.0,1.0 -979.0,1.0 -980.0,1.0 -981.0,1.0 -982.0,1.0 -983.0,1.0 -984.0,1.0 -985.0,1.0 -986.0,1.0 -987.0,1.0 -988.0,1.0 -989.0,1.0 -990.0,1.0 -991.0,1.0 -992.0,1.0 -993.0,1.0 -994.0,1.0 -995.0,1.0 -996.0,1.0 -997.0,1.0 -998.0,1.0 -999.0,1.0 -1000.0,1.0 -1001.0,1.0 -1002.0,1.0 -1003.0,1.0 -1004.0,1.0 -1005.0,1.0 -1006.0,1.0 -1007.0,1.0 -1008.0,1.0 -1009.0,1.0 -1010.0,1.0 -1011.0,1.0 -1012.0,1.0 -1013.0,1.0 -1014.0,1.0 -1015.0,1.0 -1016.0,1.0 -1017.0,1.0 -1018.0,1.0 -1019.0,1.0 -1020.0,1.0 -1021.0,1.0 -1022.0,1.0 -1023.0,1.0 -1024.0,1.0 -1025.0,1.0 -1026.0,1.0 -1027.0,1.0 -1028.0,1.0 -1029.0,1.0 -1030.0,1.0 -1031.0,1.0 -1032.0,1.0 -1033.0,1.0 -1034.0,1.0 -1035.0,1.0 -1036.0,1.0 -1037.0,1.0 -1038.0,1.0 -1039.0,1.0 -1040.0,1.0 -1041.0,1.0 -1042.0,1.0 -1043.0,1.0 -1044.0,1.0 -1045.0,1.0 -1046.0,1.0 -1047.0,1.0 -1048.0,1.0 -1049.0,1.0 -1050.0,1.0 -1051.0,1.0 -1052.0,1.0 -1053.0,1.0 -1054.0,1.0 -1055.0,1.0 -1056.0,1.0 -1057.0,1.0 -1058.0,1.0 -1059.0,1.0 -1060.0,1.0 -1061.0,1.0 -1062.0,1.0 -1063.0,1.0 -1064.0,1.0 -1065.0,1.0 -1066.0,1.0 -1067.0,1.0 -1068.0,1.0 -1069.0,1.0 -1070.0,1.0 -1071.0,1.0 -1072.0,1.0 -1073.0,1.0 -1074.0,1.0 -1075.0,1.0 -1076.0,1.0 -1077.0,1.0 -1078.0,1.0 -1079.0,1.0 -1080.0,1.0 -1081.0,1.0 -1082.0,1.0 -1083.0,1.0 -1084.0,1.0 -1085.0,1.0 -1086.0,1.0 -1087.0,1.0 -1088.0,1.0 -1089.0,1.0 -1090.0,1.0 -1091.0,1.0 -1092.0,1.0 -1093.0,1.0 -1094.0,1.0 -1095.0,1.0 -1096.0,1.0 -1097.0,1.0 -1098.0,1.0 -1099.0,1.0 -1100.0,1.0 -1101.0,1.0 -1102.0,1.0 -1103.0,1.0 -1104.0,1.0 -1105.0,1.0 -1106.0,1.0 -1107.0,1.0 -1108.0,1.0 -1109.0,1.0 -1110.0,1.0 -1111.0,1.0 -1112.0,1.0 -1113.0,1.0 -1114.0,1.0 -1115.0,1.0 -1116.0,1.0 -1117.0,1.0 -1118.0,1.0 -1119.0,1.0 -1120.0,1.0 -1121.0,1.0 -1122.0,1.0 -1123.0,1.0 -1124.0,1.0 -1125.0,1.0 -1126.0,1.0 -1127.0,1.0 -1128.0,1.0 -1129.0,1.0 -1130.0,1.0 -1131.0,1.0 -1132.0,1.0 -1133.0,1.0 -1134.0,1.0 -1135.0,1.0 -1136.0,1.0 -1137.0,1.0 -1138.0,1.0 -1139.0,1.0 -1140.0,1.0 -1141.0,1.0 -1142.0,1.0 -1143.0,1.0 -1144.0,1.0 -1145.0,1.0 -1146.0,1.0 -1147.0,1.0 -1148.0,1.0 -1149.0,1.0 -1150.0,1.0 -1151.0,1.0 -1152.0,1.0 -1153.0,1.0 -1154.0,1.0 -1155.0,1.0 -1156.0,1.0 -1157.0,1.0 -1158.0,1.0 -1159.0,1.0 -1160.0,1.0 -1161.0,1.0 -1162.0,1.0 -1163.0,1.0 -1164.0,1.0 -1165.0,1.0 -1166.0,1.0 -1167.0,1.0 -1168.0,1.0 -1169.0,1.0 -1170.0,1.0 -1171.0,1.0 -1172.0,1.0 -1173.0,1.0 -1174.0,1.0 -1175.0,1.0 -1176.0,1.0 -1177.0,1.0 -1178.0,1.0 -1179.0,1.0 -1180.0,1.0 -1181.0,1.0 -1182.0,1.0 -1183.0,1.0 -1184.0,1.0 -1185.0,1.0 -1186.0,1.0 -1187.0,1.0 -1188.0,1.0 -1189.0,1.0 -1190.0,1.0 -1191.0,1.0 -1192.0,1.0 -1193.0,1.0 -1194.0,1.0 -1195.0,1.0 -1196.0,1.0 -1197.0,1.0 -1198.0,1.0 -1199.0,1.0 -1200.0,1.0 -1201.0,1.0 -1202.0,1.0 -1203.0,1.0 -1204.0,1.0 -1205.0,1.0 -1206.0,1.0 -1207.0,1.0 -1208.0,1.0 -1209.0,1.0 -1210.0,1.0 -1211.0,1.0 -1212.0,1.0 -1213.0,1.0 -1214.0,1.0 -1215.0,1.0 -1216.0,1.0 -1217.0,1.0 -1218.0,1.0 -1219.0,1.0 -1220.0,1.0 -1221.0,1.0 -1222.0,1.0 -1223.0,1.0 -1224.0,1.0 -1225.0,1.0 -1226.0,1.0 -1227.0,1.0 -1228.0,1.0 -1229.0,1.0 -1230.0,1.0 -1231.0,1.0 -1232.0,1.0 -1233.0,1.0 -1234.0,1.0 -1235.0,1.0 -1236.0,1.0 -1237.0,1.0 -1238.0,1.0 -1239.0,1.0 -1240.0,1.0 -1241.0,1.0 -1242.0,1.0 -1243.0,1.0 -1244.0,1.0 -1245.0,1.0 -1246.0,1.0 -1247.0,1.0 -1248.0,1.0 -1249.0,1.0 -1250.0,1.0 -1251.0,1.0 -1252.0,1.0 -1253.0,1.0 -1254.0,1.0 -1255.0,1.0 -1256.0,1.0 -1257.0,1.0 -1258.0,1.0 -1259.0,1.0 -1260.0,1.0 -1261.0,1.0 -1262.0,1.0 -1263.0,1.0 -1264.0,1.0 -1265.0,1.0 -1266.0,1.0 -1267.0,1.0 -1268.0,1.0 -1269.0,1.0 -1270.0,1.0 -1271.0,1.0 -1272.0,1.0 -1273.0,1.0 -1274.0,1.0 -1275.0,1.0 -1276.0,1.0 -1277.0,1.0 -1278.0,1.0 -1279.0,1.0 -1280.0,1.0 -1281.0,1.0 -1282.0,1.0 -1283.0,1.0 -1284.0,1.0 -1285.0,1.0 -1286.0,1.0 -1287.0,1.0 -1288.0,1.0 -1289.0,1.0 -1290.0,1.0 -1291.0,1.0 -1292.0,1.0 -1293.0,1.0 -1294.0,1.0 -1295.0,1.0 -1296.0,1.0 -1297.0,1.0 -1298.0,1.0 -1299.0,1.0 -1300.0,1.0 -1301.0,1.0 -1302.0,1.0 -1303.0,1.0 -1304.0,1.0 -1305.0,1.0 -1306.0,1.0 -1307.0,1.0 -1308.0,1.0 -1309.0,1.0 -1310.0,1.0 -1311.0,1.0 -1312.0,1.0 -1313.0,1.0 -1314.0,1.0 -1315.0,1.0 -1316.0,1.0 -1317.0,1.0 -1318.0,1.0 -1319.0,1.0 -1320.0,1.0 -1321.0,1.0 -1322.0,1.0 -1323.0,1.0 -1324.0,1.0 -1325.0,1.0 -1326.0,1.0 -1327.0,1.0 -1328.0,1.0 -1329.0,1.0 -1330.0,1.0 -1331.0,1.0 -1332.0,1.0 -1333.0,1.0 -1334.0,1.0 -1335.0,1.0 -1336.0,1.0 -1337.0,1.0 -1338.0,1.0 -1339.0,1.0 -1340.0,1.0 -1341.0,1.0 -1342.0,1.0 -1343.0,1.0 -1344.0,1.0 -1345.0,1.0 -1346.0,1.0 -1347.0,1.0 -1348.0,1.0 -1349.0,1.0 -1350.0,1.0 -1351.0,1.0 -1352.0,1.0 -1353.0,1.0 -1354.0,1.0 -1355.0,1.0 -1356.0,1.0 -1357.0,1.0 -1358.0,1.0 -1359.0,1.0 -1360.0,1.0 -1361.0,1.0 -1362.0,1.0 -1363.0,1.0 -1364.0,1.0 -1365.0,1.0 -1366.0,1.0 -1367.0,1.0 -1368.0,1.0 -1369.0,1.0 -1370.0,1.0 -1371.0,1.0 -1372.0,1.0 -1373.0,1.0 -1374.0,1.0 -1375.0,1.0 -1376.0,1.0 -1377.0,1.0 -1378.0,1.0 -1379.0,1.0 -1380.0,1.0 -1381.0,1.0 -1382.0,1.0 -1383.0,1.0 -1384.0,1.0 -1385.0,1.0 -1386.0,1.0 -1387.0,1.0 -1388.0,1.0 -1389.0,1.0 -1390.0,1.0 -1391.0,1.0 -1392.0,1.0 -1393.0,1.0 -1394.0,1.0 -1395.0,1.0 -1396.0,1.0 -1397.0,1.0 -1398.0,1.0 -1399.0,1.0 -1400.0,1.0 -1401.0,1.0 -1402.0,1.0 -1403.0,1.0 -1404.0,1.0 -1405.0,1.0 -1406.0,1.0 -1407.0,1.0 -1408.0,1.0 -1409.0,1.0 -1410.0,1.0 -1411.0,1.0 -1412.0,1.0 -1413.0,1.0 -1414.0,1.0 -1415.0,1.0 -1416.0,1.0 -1417.0,1.0 -1418.0,1.0 -1419.0,1.0 -1420.0,1.0 -1421.0,1.0 -1422.0,1.0 -1423.0,1.0 -1424.0,1.0 -1425.0,1.0 -1426.0,1.0 -1427.0,1.0 -1428.0,1.0 -1429.0,1.0 -1430.0,1.0 -1431.0,1.0 -1432.0,1.0 -1433.0,1.0 -1434.0,1.0 -1435.0,1.0 -1436.0,1.0 -1437.0,1.0 -1438.0,1.0 -1439.0,1.0 -1440.0,1.0 -1441.0,1.0 -1442.0,1.0 -1443.0,1.0 -1444.0,1.0 -1445.0,1.0 -1446.0,1.0 -1447.0,1.0 -1448.0,1.0 -1449.0,1.0 -1450.0,1.0 -1451.0,1.0 -1452.0,1.0 -1453.0,1.0 -1454.0,1.0 -1455.0,1.0 -1456.0,1.0 -1457.0,1.0 -1458.0,1.0 -1459.0,1.0 -1460.0,1.0 -1461.0,1.0 -1462.0,1.0 -1463.0,1.0 -1464.0,1.0 -1465.0,1.0 -1466.0,1.0 -1467.0,1.0 -1468.0,1.0 -1469.0,1.0 -1470.0,1.0 -1471.0,1.0 -1472.0,1.0 -1473.0,1.0 -1474.0,1.0 -1475.0,1.0 -1476.0,1.0 -1477.0,1.0 -1478.0,1.0 -1479.0,1.0 -1480.0,1.0 -1481.0,1.0 -1482.0,1.0 -1483.0,1.0 -1484.0,1.0 -1485.0,1.0 -1486.0,1.0 -1487.0,1.0 -1488.0,1.0 -1489.0,1.0 -1490.0,1.0 -1491.0,1.0 -1492.0,1.0 -1493.0,1.0 -1494.0,1.0 -1495.0,1.0 -1496.0,1.0 -1497.0,1.0 -1498.0,1.0 -1499.0,1.0 -1500.0,1.0 -1501.0,1.0 -1502.0,1.0 -1503.0,1.0 -1504.0,1.0 -1505.0,1.0 -1506.0,1.0 -1507.0,1.0 -1508.0,1.0 -1509.0,1.0 -1510.0,1.0 -1511.0,1.0 -1512.0,1.0 -1513.0,1.0 -1514.0,1.0 -1515.0,1.0 -1516.0,1.0 -1517.0,1.0 -1518.0,1.0 -1519.0,1.0 -1520.0,1.0 -1521.0,1.0 -1522.0,1.0 -1523.0,1.0 -1524.0,1.0 -1525.0,1.0 -1526.0,1.0 -1527.0,1.0 -1528.0,1.0 -1529.0,1.0 -1530.0,1.0 -1531.0,1.0 -1532.0,1.0 -1533.0,1.0 -1534.0,1.0 -1535.0,1.0 -1536.0,1.0 -1537.0,1.0 -1538.0,1.0 -1539.0,1.0 -1540.0,1.0 -1541.0,1.0 -1542.0,1.0 -1543.0,1.0 -1544.0,1.0 -1545.0,1.0 -1546.0,1.0 -1547.0,1.0 -1548.0,1.0 -1549.0,1.0 -1550.0,1.0 -1551.0,1.0 -1552.0,1.0 -1553.0,1.0 -1554.0,1.0 -1555.0,1.0 -1556.0,1.0 -1557.0,1.0 -1558.0,1.0 -1559.0,1.0 -1560.0,1.0 -1561.0,1.0 -1562.0,1.0 -1563.0,1.0 -1564.0,1.0 -1565.0,1.0 -1566.0,1.0 -1567.0,1.0 -1568.0,1.0 -1569.0,1.0 -1570.0,1.0 -1571.0,1.0 -1572.0,1.0 -1573.0,1.0 -1574.0,1.0 -1575.0,1.0 -1576.0,1.0 -1577.0,1.0 -1578.0,1.0 -1579.0,1.0 -1580.0,1.0 -1581.0,1.0 -1582.0,1.0 -1583.0,1.0 -1584.0,1.0 -1585.0,1.0 -1586.0,1.0 -1587.0,1.0 -1588.0,1.0 -1589.0,1.0 -1590.0,1.0 -1591.0,1.0 -1592.0,1.0 -1593.0,1.0 -1594.0,1.0 -1595.0,1.0 -1596.0,1.0 -1597.0,1.0 -1598.0,1.0 -1599.0,1.0 -1600.0,1.0 -1601.0,1.0 -1602.0,1.0 -1603.0,1.0 -1604.0,1.0 -1605.0,1.0 -1606.0,1.0 -1607.0,1.0 -1608.0,1.0 -1609.0,1.0 -1610.0,1.0 -1611.0,1.0 -1612.0,1.0 -1613.0,1.0 -1614.0,1.0 -1615.0,1.0 -1616.0,1.0 -1617.0,1.0 -1618.0,1.0 -1619.0,1.0 -1620.0,1.0 -1621.0,1.0 -1622.0,1.0 -1623.0,1.0 -1624.0,1.0 -1625.0,1.0 -1626.0,1.0 -1627.0,1.0 -1628.0,1.0 -1629.0,1.0 -1630.0,1.0 -1631.0,1.0 -1632.0,1.0 -1633.0,1.0 -1634.0,1.0 -1635.0,1.0 -1636.0,1.0 -1637.0,1.0 -1638.0,1.0 -1639.0,1.0 -1640.0,1.0 -1641.0,1.0 -1642.0,1.0 -1643.0,1.0 -1644.0,1.0 -1645.0,1.0 -1646.0,1.0 -1647.0,1.0 -1648.0,1.0 -1649.0,1.0 -1650.0,1.0 -1651.0,1.0 -1652.0,1.0 -1653.0,1.0 -1654.0,1.0 -1655.0,1.0 -1656.0,1.0 -1657.0,1.0 -1658.0,1.0 -1659.0,1.0 -1660.0,1.0 -1661.0,1.0 -1662.0,1.0 -1663.0,1.0 -1664.0,1.0 -1665.0,1.0 -1666.0,1.0 -1667.0,1.0 -1668.0,1.0 -1669.0,1.0 -1670.0,1.0 -1671.0,1.0 -1672.0,1.0 -1673.0,1.0 -1674.0,1.0 -1675.0,1.0 -1676.0,1.0 -1677.0,1.0 -1678.0,1.0 -1679.0,1.0 -1680.0,1.0 -1681.0,1.0 -1682.0,1.0 -1683.0,1.0 -1684.0,1.0 -1685.0,1.0 -1686.0,1.0 -1687.0,1.0 -1688.0,1.0 -1689.0,1.0 -1690.0,1.0 -1691.0,1.0 -1692.0,1.0 -1693.0,1.0 -1694.0,1.0 -1695.0,1.0 -1696.0,1.0 -1697.0,1.0 -1698.0,1.0 -1699.0,1.0 -1700.0,1.0 -1701.0,1.0 -1702.0,1.0 -1703.0,1.0 -1704.0,1.0 -1705.0,1.0 -1706.0,1.0 -1707.0,1.0 -1708.0,1.0 -1709.0,1.0 -1710.0,1.0 -1711.0,1.0 -1712.0,1.0 -1713.0,1.0 -1714.0,1.0 -1715.0,1.0 -1716.0,1.0 -1717.0,1.0 -1718.0,1.0 -1719.0,1.0 -1720.0,1.0 -1721.0,1.0 -1722.0,1.0 -1723.0,1.0 -1724.0,1.0 -1725.0,1.0 -1726.0,1.0 -1727.0,1.0 -1728.0,1.0 -1729.0,1.0 -1730.0,1.0 -1731.0,1.0 -1732.0,1.0 -1733.0,1.0 -1734.0,1.0 -1735.0,1.0 -1736.0,1.0 -1737.0,1.0 -1738.0,1.0 -1739.0,1.0 -1740.0,1.0 -1741.0,1.0 -1742.0,1.0 -1743.0,1.0 -1744.0,1.0 -1745.0,1.0 -1746.0,1.0 -1747.0,1.0 -1748.0,1.0 -1749.0,1.0 -1750.0,1.0 -1751.0,1.0 -1752.0,1.0 -1753.0,1.0 -1754.0,1.0 -1755.0,1.0 -1756.0,1.0 -1757.0,1.0 -1758.0,1.0 -1759.0,1.0 -1760.0,1.0 -1761.0,1.0 -1762.0,1.0 -1763.0,1.0 -1764.0,1.0 -1765.0,1.0 -1766.0,1.0 -1767.0,1.0 -1768.0,1.0 -1769.0,1.0 -1770.0,1.0 -1771.0,1.0 -1772.0,1.0 -1773.0,1.0 -1774.0,1.0 -1775.0,1.0 -1776.0,1.0 -1777.0,1.0 -1778.0,1.0 -1779.0,1.0 -1780.0,1.0 -1781.0,1.0 -1782.0,1.0 -1783.0,1.0 -1784.0,1.0 -1785.0,1.0 -1786.0,1.0 -1787.0,1.0 -1788.0,1.0 -1789.0,1.0 -1790.0,1.0 -1791.0,1.0 -1792.0,1.0 -1793.0,1.0 -1794.0,1.0 -1795.0,1.0 -1796.0,1.0 -1797.0,1.0 -1798.0,1.0 -1799.0,1.0 -1800.0,1.0 -1801.0,1.0 -1802.0,1.0 -1803.0,1.0 -1804.0,1.0 -1805.0,1.0 -1806.0,1.0 -1807.0,1.0 -1808.0,1.0 -1809.0,1.0 -1810.0,1.0 -1811.0,1.0 -1812.0,1.0 -1813.0,1.0 -1814.0,1.0 -1815.0,1.0 -1816.0,1.0 -1817.0,1.0 -1818.0,1.0 -1819.0,1.0 -1820.0,1.0 -1821.0,1.0 -1822.0,1.0 -1823.0,1.0 -1824.0,1.0 -1825.0,1.0 -1826.0,1.0 -1827.0,1.0 -1828.0,1.0 -1829.0,1.0 -1830.0,1.0 -1831.0,1.0 -1832.0,1.0 -1833.0,1.0 -1834.0,1.0 -1835.0,1.0 -1836.0,1.0 -1837.0,1.0 -1838.0,1.0 -1839.0,1.0 -1840.0,1.0 -1841.0,1.0 -1842.0,1.0 -1843.0,1.0 -1844.0,1.0 -1845.0,1.0 -1846.0,1.0 -1847.0,1.0 -1848.0,1.0 -1849.0,1.0 -1850.0,1.0 -1851.0,1.0 -1852.0,1.0 -1853.0,1.0 -1854.0,1.0 -1855.0,1.0 -1856.0,1.0 -1857.0,1.0 -1858.0,1.0 -1859.0,1.0 -1860.0,1.0 -1861.0,1.0 -1862.0,1.0 -1863.0,1.0 -1864.0,1.0 -1865.0,1.0 -1866.0,1.0 -1867.0,1.0 -1868.0,1.0 -1869.0,1.0 -1870.0,1.0 -1871.0,1.0 -1872.0,1.0 -1873.0,1.0 -1874.0,1.0 -1875.0,1.0 -1876.0,1.0 -1877.0,1.0 -1878.0,1.0 -1879.0,1.0 -1880.0,1.0 -1881.0,1.0 -1882.0,1.0 -1883.0,1.0 -1884.0,1.0 -1885.0,1.0 -1886.0,1.0 -1887.0,1.0 -1888.0,1.0 -1889.0,1.0 -1890.0,1.0 -1891.0,1.0 -1892.0,1.0 -1893.0,1.0 -1894.0,1.0 -1895.0,1.0 -1896.0,1.0 -1897.0,1.0 -1898.0,1.0 -1899.0,1.0 -1900.0,1.0 -1901.0,1.0 -1902.0,1.0 -1903.0,1.0 -1904.0,1.0 -1905.0,1.0 -1906.0,1.0 -1907.0,1.0 -1908.0,1.0 -1909.0,1.0 -1910.0,1.0 -1911.0,1.0 -1912.0,1.0 -1913.0,1.0 -1914.0,1.0 -1915.0,1.0 -1916.0,1.0 -1917.0,1.0 -1918.0,1.0 -1919.0,1.0 -1920.0,1.0 -1921.0,1.0 -1922.0,1.0 -1923.0,1.0 -1924.0,1.0 -1925.0,1.0 -1926.0,1.0 -1927.0,1.0 -1928.0,1.0 -1929.0,1.0 -1930.0,1.0 -1931.0,1.0 -1932.0,1.0 -1933.0,1.0 -1934.0,1.0 -1935.0,1.0 -1936.0,1.0 -1937.0,1.0 -1938.0,1.0 -1939.0,1.0 -1940.0,1.0 -1941.0,1.0 -1942.0,1.0 -1943.0,1.0 -1944.0,1.0 -1945.0,1.0 -1946.0,1.0 -1947.0,1.0 -1948.0,1.0 -1949.0,1.0 -1950.0,1.0 -1951.0,1.0 -1952.0,1.0 -1953.0,1.0 -1954.0,1.0 -1955.0,1.0 -1956.0,1.0 -1957.0,1.0 -1958.0,1.0 -1959.0,1.0 -1960.0,1.0 -1961.0,1.0 -1962.0,1.0 -1963.0,1.0 -1964.0,1.0 -1965.0,1.0 -1966.0,1.0 -1967.0,1.0 -1968.0,1.0 -1969.0,1.0 -1970.0,1.0 -1971.0,1.0 -1972.0,1.0 -1973.0,1.0 -1974.0,1.0 -1975.0,1.0 -1976.0,1.0 -1977.0,1.0 -1978.0,1.0 -1979.0,1.0 -1980.0,1.0 -1981.0,1.0 -1982.0,1.0 -1983.0,1.0 -1984.0,1.0 -1985.0,1.0 -1986.0,1.0 -1987.0,1.0 -1988.0,1.0 -1989.0,1.0 -1990.0,1.0 -1991.0,1.0 -1992.0,1.0 -1993.0,1.0 -1994.0,1.0 -1995.0,1.0 -1996.0,1.0 -1997.0,1.0 -1998.0,1.0 -1999.0,1.0 -2000.0,1.0 -2001.0,1.0 -2002.0,1.0 -2003.0,1.0 -2004.0,1.0 -2005.0,1.0 -2006.0,1.0 -2007.0,1.0 -2008.0,1.0 -2009.0,1.0 -2010.0,1.0 -2011.0,1.0 -2012.0,1.0 -2013.0,1.0 -2014.0,1.0 -2015.0,1.0 -2016.0,1.0 -2017.0,1.0 -2018.0,1.0 -2019.0,1.0 -2020.0,1.0 -2021.0,1.0 -2022.0,1.0 -2023.0,1.0 -2024.0,1.0 -2025.0,1.0 -2026.0,1.0 -2027.0,1.0 -2028.0,1.0 -2029.0,1.0 -2030.0,1.0 -2031.0,1.0 -2032.0,1.0 -2033.0,1.0 -2034.0,1.0 -2035.0,1.0 -2036.0,1.0 -2037.0,1.0 -2038.0,1.0 -2039.0,1.0 -2040.0,1.0 -2041.0,1.0 -2042.0,1.0 -2043.0,1.0 -2044.0,1.0 -2045.0,1.0 -2046.0,1.0 -2047.0,1.0 -2048.0,1.0 -2049.0,1.0 -2050.0,1.0 -2051.0,1.0 -2052.0,1.0 -2053.0,1.0 -2054.0,1.0 -2055.0,1.0 -2056.0,1.0 -2057.0,1.0 -2058.0,1.0 -2059.0,1.0 -2060.0,1.0 -2061.0,1.0 -2062.0,1.0 -2063.0,1.0 -2064.0,1.0 -2065.0,1.0 -2066.0,1.0 -2067.0,1.0 -2068.0,1.0 -2069.0,1.0 -2070.0,1.0 -2071.0,1.0 -2072.0,1.0 -2073.0,1.0 -2074.0,1.0 -2075.0,1.0 -2076.0,1.0 -2077.0,1.0 -2078.0,1.0 -2079.0,1.0 -2080.0,1.0 -2081.0,1.0 -2082.0,1.0 -2083.0,1.0 -2084.0,1.0 -2085.0,1.0 -2086.0,1.0 -2087.0,1.0 -2088.0,1.0 -2089.0,1.0 -2090.0,1.0 -2091.0,1.0 -2092.0,1.0 -2093.0,1.0 -2094.0,1.0 -2095.0,1.0 -2096.0,1.0 -2097.0,1.0 -2098.0,1.0 -2099.0,1.0 -2100.0,1.0 -2101.0,1.0 -2102.0,1.0 -2103.0,1.0 -2104.0,1.0 -2105.0,1.0 -2106.0,1.0 -2107.0,1.0 -2108.0,1.0 -2109.0,1.0 -2110.0,1.0 -2111.0,1.0 -2112.0,1.0 -2113.0,1.0 -2114.0,1.0 -2115.0,1.0 -2116.0,1.0 -2117.0,1.0 -2118.0,1.0 -2119.0,1.0 -2120.0,1.0 -2121.0,1.0 -2122.0,1.0 -2123.0,1.0 -2124.0,1.0 -2125.0,1.0 -2126.0,1.0 -2127.0,1.0 -2128.0,1.0 -2129.0,1.0 -2130.0,1.0 -2131.0,1.0 -2132.0,1.0 -2133.0,1.0 -2134.0,1.0 -2135.0,1.0 -2136.0,1.0 -2137.0,1.0 -2138.0,1.0 -2139.0,1.0 -2140.0,1.0 -2141.0,1.0 -2142.0,1.0 -2143.0,1.0 -2144.0,1.0 -2145.0,1.0 -2146.0,1.0 -2147.0,1.0 -2148.0,1.0 -2149.0,1.0 -2150.0,1.0 -2151.0,1.0 -2152.0,1.0 -2153.0,1.0 -2154.0,1.0 -2155.0,1.0 -2156.0,1.0 -2157.0,1.0 -2158.0,1.0 -2159.0,1.0 -2160.0,1.0 -2161.0,1.0 -2162.0,1.0 -2163.0,1.0 -2164.0,1.0 -2165.0,1.0 -2166.0,1.0 -2167.0,1.0 -2168.0,1.0 -2169.0,1.0 -2170.0,1.0 -2171.0,1.0 -2172.0,1.0 -2173.0,1.0 -2174.0,1.0 -2175.0,1.0 -2176.0,1.0 -2177.0,1.0 -2178.0,1.0 -2179.0,1.0 -2180.0,1.0 -2181.0,1.0 -2182.0,1.0 -2183.0,1.0 -2184.0,1.0 -2185.0,1.0 -2186.0,1.0 -2187.0,1.0 -2188.0,1.0 -2189.0,1.0 -2190.0,1.0 -2191.0,1.0 -2192.0,1.0 -2193.0,1.0 -2194.0,1.0 -2195.0,1.0 -2196.0,1.0 -2197.0,1.0 -2198.0,1.0 -2199.0,1.0 -2200.0,1.0 -2201.0,1.0 -2202.0,1.0 -2203.0,1.0 -2204.0,1.0 -2205.0,1.0 -2206.0,1.0 -2207.0,1.0 -2208.0,1.0 -2209.0,1.0 -2210.0,1.0 -2211.0,1.0 -2212.0,1.0 -2213.0,1.0 -2214.0,1.0 -2215.0,1.0 -2216.0,1.0 -2217.0,1.0 -2218.0,1.0 -2219.0,1.0 -2220.0,1.0 -2221.0,1.0 -2222.0,1.0 -2223.0,1.0 -2224.0,1.0 -2225.0,1.0 -2226.0,1.0 -2227.0,1.0 -2228.0,1.0 -2229.0,1.0 -2230.0,1.0 -2231.0,1.0 -2232.0,1.0 -2233.0,1.0 -2234.0,1.0 -2235.0,1.0 -2236.0,1.0 -2237.0,1.0 -2238.0,1.0 -2239.0,1.0 -2240.0,1.0 -2241.0,1.0 -2242.0,1.0 -2243.0,1.0 -2244.0,1.0 -2245.0,1.0 -2246.0,1.0 -2247.0,1.0 -2248.0,1.0 -2249.0,1.0 -2250.0,1.0 -2251.0,1.0 -2252.0,1.0 -2253.0,1.0 -2254.0,1.0 -2255.0,1.0 -2256.0,1.0 -2257.0,1.0 -2258.0,1.0 -2259.0,1.0 -2260.0,1.0 -2261.0,1.0 -2262.0,1.0 -2263.0,1.0 -2264.0,1.0 -2265.0,1.0 -2266.0,1.0 -2267.0,1.0 -2268.0,1.0 -2269.0,1.0 -2270.0,1.0 -2271.0,1.0 -2272.0,1.0 -2273.0,1.0 -2274.0,1.0 -2275.0,1.0 -2276.0,1.0 -2277.0,1.0 -2278.0,1.0 -2279.0,1.0 -2280.0,1.0 -2281.0,1.0 -2282.0,1.0 -2283.0,1.0 -2284.0,1.0 -2285.0,1.0 -2286.0,1.0 -2287.0,1.0 -2288.0,1.0 -2289.0,1.0 -2290.0,1.0 -2291.0,1.0 -2292.0,1.0 -2293.0,1.0 -2294.0,1.0 -2295.0,1.0 -2296.0,1.0 -2297.0,1.0 -2298.0,1.0 -2299.0,1.0 -2300.0,1.0 -2301.0,1.0 -2302.0,1.0 -2303.0,1.0 -2304.0,1.0 -2305.0,1.0 -2306.0,1.0 -2307.0,1.0 -2308.0,1.0 -2309.0,1.0 -2310.0,1.0 -2311.0,1.0 -2312.0,1.0 -2313.0,1.0 -2314.0,1.0 -2315.0,1.0 -2316.0,1.0 -2317.0,1.0 -2318.0,1.0 -2319.0,1.0 -2320.0,1.0 -2321.0,1.0 -2322.0,1.0 -2323.0,1.0 -2324.0,1.0 -2325.0,1.0 -2326.0,1.0 -2327.0,1.0 -2328.0,1.0 -2329.0,1.0 -2330.0,1.0 -2331.0,1.0 -2332.0,1.0 -2333.0,1.0 -2334.0,1.0 -2335.0,1.0 -2336.0,1.0 -2337.0,1.0 -2338.0,1.0 -2339.0,1.0 -2340.0,1.0 -2341.0,1.0 -2342.0,1.0 -2343.0,1.0 -2344.0,1.0 -2345.0,1.0 -2346.0,1.0 -2347.0,1.0 -2348.0,1.0 -2349.0,1.0 -2350.0,1.0 -2351.0,1.0 -2352.0,1.0 -2353.0,1.0 -2354.0,1.0 -2355.0,1.0 -2356.0,1.0 -2357.0,1.0 -2358.0,1.0 -2359.0,1.0 -2360.0,1.0 -2361.0,1.0 -2362.0,1.0 -2363.0,1.0 -2364.0,1.0 -2365.0,1.0 -2366.0,1.0 -2367.0,1.0 -2368.0,1.0 -2369.0,1.0 -2370.0,1.0 -2371.0,1.0 -2372.0,1.0 -2373.0,1.0 -2374.0,1.0 -2375.0,1.0 -2376.0,1.0 -2377.0,1.0 -2378.0,1.0 -2379.0,1.0 -2380.0,1.0 -2381.0,1.0 -2382.0,1.0 -2383.0,1.0 -2384.0,1.0 -2385.0,1.0 -2386.0,1.0 -2387.0,1.0 -2388.0,1.0 -2389.0,1.0 -2390.0,1.0 -2391.0,1.0 -2392.0,1.0 -2393.0,1.0 -2394.0,1.0 -2395.0,1.0 -2396.0,1.0 -2397.0,1.0 -2398.0,1.0 -2399.0,1.0 -2400.0,1.0 -2401.0,1.0 -2402.0,1.0 -2403.0,1.0 -2404.0,1.0 -2405.0,1.0 -2406.0,1.0 -2407.0,1.0 -2408.0,1.0 -2409.0,1.0 -2410.0,1.0 -2411.0,1.0 -2412.0,1.0 -2413.0,1.0 -2414.0,1.0 -2415.0,1.0 -2416.0,1.0 -2417.0,1.0 -2418.0,1.0 -2419.0,1.0 -2420.0,1.0 -2421.0,1.0 -2422.0,1.0 -2423.0,1.0 -2424.0,1.0 -2425.0,1.0 -2426.0,1.0 -2427.0,1.0 -2428.0,1.0 -2429.0,1.0 -2430.0,1.0 -2431.0,1.0 -2432.0,1.0 -2433.0,1.0 -2434.0,1.0 -2435.0,1.0 -2436.0,1.0 -2437.0,1.0 -2438.0,1.0 -2439.0,1.0 -2440.0,1.0 -2441.0,1.0 -2442.0,1.0 -2443.0,1.0 -2444.0,1.0 -2445.0,1.0 -2446.0,1.0 -2447.0,1.0 -2448.0,1.0 -2449.0,1.0 -2450.0,1.0 -2451.0,1.0 -2452.0,1.0 -2453.0,1.0 -2454.0,1.0 -2455.0,1.0 -2456.0,1.0 -2457.0,1.0 -2458.0,1.0 -2459.0,1.0 -2460.0,1.0 -2461.0,1.0 -2462.0,1.0 -2463.0,1.0 -2464.0,1.0 -2465.0,1.0 -2466.0,1.0 -2467.0,1.0 -2468.0,1.0 -2469.0,1.0 -2470.0,1.0 -2471.0,1.0 -2472.0,1.0 -2473.0,1.0 -2474.0,1.0 -2475.0,1.0 -2476.0,1.0 -2477.0,1.0 -2478.0,1.0 -2479.0,1.0 -2480.0,1.0 -2481.0,1.0 -2482.0,1.0 -2483.0,1.0 -2484.0,1.0 -2485.0,1.0 -2486.0,1.0 -2487.0,1.0 -2488.0,1.0 -2489.0,1.0 -2490.0,1.0 -2491.0,1.0 -2492.0,1.0 -2493.0,1.0 -2494.0,1.0 -2495.0,1.0 -2496.0,1.0 -2497.0,1.0 -2498.0,1.0 -2499.0,1.0 -2500.0,1.0 -2501.0,1.0 -2502.0,1.0 -2503.0,1.0 -2504.0,1.0 -2505.0,1.0 -2506.0,1.0 -2507.0,1.0 -2508.0,1.0 -2509.0,1.0 -2510.0,1.0 -2511.0,1.0 -2512.0,1.0 -2513.0,1.0 -2514.0,1.0 -2515.0,1.0 -2516.0,1.0 -2517.0,1.0 -2518.0,1.0 -2519.0,1.0 -2520.0,1.0 -2521.0,1.0 -2522.0,1.0 -2523.0,1.0 -2524.0,1.0 -2525.0,1.0 -2526.0,1.0 -2527.0,1.0 -2528.0,1.0 -2529.0,1.0 -2530.0,1.0 -2531.0,1.0 -2532.0,1.0 -2533.0,1.0 -2534.0,1.0 -2535.0,1.0 -2536.0,1.0 -2537.0,1.0 -2538.0,1.0 -2539.0,1.0 -2540.0,1.0 -2541.0,1.0 -2542.0,1.0 -2543.0,1.0 -2544.0,1.0 -2545.0,1.0 -2546.0,1.0 -2547.0,1.0 -2548.0,1.0 -2549.0,1.0 -2550.0,1.0 -2551.0,1.0 -2552.0,1.0 -2553.0,1.0 -2554.0,1.0 -2555.0,1.0 -2556.0,1.0 -2557.0,1.0 -2558.0,1.0 -2559.0,1.0 -2560.0,1.0 -2561.0,1.0 -2562.0,1.0 -2563.0,1.0 -2564.0,1.0 -2565.0,1.0 -2566.0,1.0 -2567.0,1.0 -2568.0,1.0 -2569.0,1.0 -2570.0,1.0 -2571.0,1.0 -2572.0,1.0 -2573.0,1.0 -2574.0,1.0 -2575.0,1.0 -2576.0,1.0 -2577.0,1.0 -2578.0,1.0 -2579.0,1.0 -2580.0,1.0 -2581.0,1.0 -2582.0,1.0 -2583.0,1.0 -2584.0,1.0 -2585.0,1.0 -2586.0,1.0 -2587.0,1.0 -2588.0,1.0 -2589.0,1.0 -2590.0,1.0 -2591.0,1.0 -2592.0,1.0 -2593.0,1.0 -2594.0,1.0 -2595.0,1.0 -2596.0,1.0 -2597.0,1.0 -2598.0,1.0 -2599.0,1.0 -2600.0,1.0 -2601.0,1.0 -2602.0,1.0 -2603.0,1.0 -2604.0,1.0 -2605.0,1.0 -2606.0,1.0 -2607.0,1.0 -2608.0,1.0 -2609.0,1.0 -2610.0,1.0 -2611.0,1.0 -2612.0,1.0 -2613.0,1.0 -2614.0,1.0 -2615.0,1.0 -2616.0,1.0 -2617.0,1.0 -2618.0,1.0 -2619.0,1.0 -2620.0,1.0 -2621.0,1.0 -2622.0,1.0 -2623.0,1.0 -2624.0,1.0 -2625.0,1.0 -2626.0,1.0 -2627.0,1.0 -2628.0,1.0 -2629.0,1.0 -2630.0,1.0 -2631.0,1.0 -2632.0,1.0 -2633.0,1.0 -2634.0,1.0 -2635.0,1.0 -2636.0,1.0 -2637.0,1.0 -2638.0,1.0 -2639.0,1.0 -2640.0,1.0 -2641.0,1.0 -2642.0,1.0 -2643.0,1.0 -2644.0,1.0 -2645.0,1.0 -2646.0,1.0 -2647.0,1.0 -2648.0,1.0 -2649.0,1.0 -2650.0,1.0 -2651.0,1.0 -2652.0,1.0 -2653.0,1.0 -2654.0,1.0 -2655.0,1.0 -2656.0,1.0 -2657.0,1.0 -2658.0,1.0 -2659.0,1.0 -2660.0,1.0 -2661.0,1.0 -2662.0,1.0 -2663.0,1.0 -2664.0,1.0 -2665.0,1.0 -2666.0,1.0 -2667.0,1.0 -2668.0,1.0 -2669.0,1.0 -2670.0,1.0 -2671.0,1.0 -2672.0,1.0 -2673.0,1.0 -2674.0,1.0 -2675.0,1.0 -2676.0,1.0 -2677.0,1.0 -2678.0,1.0 -2679.0,1.0 -2680.0,1.0 -2681.0,1.0 -2682.0,1.0 -2683.0,1.0 -2684.0,1.0 -2685.0,1.0 -2686.0,1.0 -2687.0,1.0 -2688.0,1.0 -2689.0,1.0 -2690.0,1.0 -2691.0,1.0 -2692.0,1.0 -2693.0,1.0 -2694.0,1.0 -2695.0,1.0 -2696.0,1.0 -2697.0,1.0 -2698.0,1.0 -2699.0,1.0 -2700.0,1.0 -2701.0,1.0 -2702.0,1.0 -2703.0,1.0 -2704.0,1.0 -2705.0,1.0 -2706.0,1.0 -2707.0,1.0 -2708.0,1.0 -2709.0,1.0 -2710.0,1.0 -2711.0,1.0 -2712.0,1.0 -2713.0,1.0 -2714.0,1.0 -2715.0,1.0 -2716.0,1.0 -2717.0,1.0 -2718.0,1.0 -2719.0,1.0 -2720.0,1.0 -2721.0,1.0 -2722.0,1.0 -2723.0,1.0 -2724.0,1.0 -2725.0,1.0 -2726.0,1.0 -2727.0,1.0 -2728.0,1.0 -2729.0,1.0 -2730.0,1.0 -2731.0,1.0 -2732.0,1.0 -2733.0,1.0 -2734.0,1.0 -2735.0,1.0 -2736.0,1.0 -2737.0,1.0 -2738.0,1.0 -2739.0,1.0 -2740.0,1.0 -2741.0,1.0 -2742.0,1.0 -2743.0,1.0 -2744.0,1.0 -2745.0,1.0 -2746.0,1.0 -2747.0,1.0 -2748.0,1.0 -2749.0,1.0 -2750.0,1.0 -2751.0,1.0 -2752.0,1.0 -2753.0,1.0 -2754.0,1.0 -2755.0,1.0 -2756.0,1.0 -2757.0,1.0 -2758.0,1.0 -2759.0,1.0 -2760.0,1.0 -2761.0,1.0 -2762.0,1.0 -2763.0,1.0 -2764.0,1.0 -2765.0,1.0 -2766.0,1.0 -2767.0,1.0 -2768.0,1.0 -2769.0,1.0 -2770.0,1.0 -2771.0,1.0 -2772.0,1.0 -2773.0,1.0 -2774.0,1.0 -2775.0,1.0 -2776.0,1.0 -2777.0,1.0 -2778.0,1.0 -2779.0,1.0 -2780.0,1.0 -2781.0,1.0 -2782.0,1.0 -2783.0,1.0 -2784.0,1.0 -2785.0,1.0 -2786.0,1.0 -2787.0,1.0 -2788.0,1.0 -2789.0,1.0 -2790.0,1.0 -2791.0,1.0 -2792.0,1.0 -2793.0,1.0 -2794.0,1.0 -2795.0,1.0 -2796.0,1.0 -2797.0,1.0 -2798.0,1.0 -2799.0,1.0 -2800.0,1.0 -2801.0,1.0 -2802.0,1.0 -2803.0,1.0 -2804.0,1.0 -2805.0,1.0 -2806.0,1.0 -2807.0,1.0 -2808.0,1.0 -2809.0,1.0 -2810.0,1.0 -2811.0,1.0 -2812.0,1.0 -2813.0,1.0 -2814.0,1.0 -2815.0,1.0 -2816.0,1.0 -2817.0,1.0 -2818.0,1.0 -2819.0,1.0 -2820.0,1.0 -2821.0,1.0 -2822.0,1.0 -2823.0,1.0 -2824.0,1.0 -2825.0,1.0 -2826.0,1.0 -2827.0,1.0 -2828.0,1.0 -2829.0,1.0 -2830.0,1.0 -2831.0,1.0 -2832.0,1.0 -2833.0,1.0 -2834.0,1.0 -2835.0,1.0 -2836.0,1.0 -2837.0,1.0 -2838.0,1.0 -2839.0,1.0 -2840.0,1.0 -2841.0,1.0 -2842.0,1.0 -2843.0,1.0 -2844.0,1.0 -2845.0,1.0 -2846.0,1.0467366550419002 -2847.0,1.0967366550419002 -2848.0,1.1467366550419 -2849.0,1.1967366550419 -2850.0,1.2467366550419001 -2851.0,1.2967366550419002 -2852.0,1.3467366550419002 -2853.0,1.3967366550419 -2854.0,1.4467366550419 -2855.0,1.4967366550419001 -2856.0,1.5467366550419002 -2857.0,1.5967366550419002 -2858.0,1.6467366550419 -2859.0,1.6967366550419003 -2860.0,1.7467366550419001 -2861.0,1.7967366550419002 -2862.0,1.8467366550419002 -2863.0,1.8967366550419 -2864.0,1.9467366550419003 -2865.0,1.9967366550419001 -2866.0,2.0467366550419 -2867.0,2.0967366550419 -2868.0,2.1467366550419005 -2869.0,2.1967366550419003 -2870.0,2.2467366550419 -2871.0,2.2967366550419 -2872.0,2.3467366550419 -2873.0,2.3967366550419005 -2874.0,2.4467366550419003 -2875.0,2.4967366550419 -2876.0,2.5467366550419 -2877.0,2.5967366550419 -2878.0,2.6467366550419005 -2879.0,2.6967366550419003 -2880.0,2.7467366550419 -2881.0,2.7967366550419 -2882.0,2.8467366550419 -2883.0,2.8967366550419005 -2884.0,2.9467366550419003 -2885.0,2.9967366550419 -2886.0,3.0467366550419004 -2887.0,3.0967366550419 -2888.0,3.1467366550419 -2889.0,3.1967366550419003 -2890.0,3.2467366550419 -2891.0,3.2967366550419004 -2892.0,3.3467366550419 -2893.0,3.3967366550419 -2894.0,3.4467366550419003 -2895.0,3.4967366550419 -2896.0,3.5467366550419004 -2897.0,3.5967366550419 -2898.0,3.6467366550419005 -2899.0,3.6967366550419003 -2900.0,3.7467366550419 -2901.0,3.7967366550419004 -2902.0,3.8467366550419 -2903.0,3.8967366550419005 -2904.0,3.9467366550419003 -2905.0,3.9967366550419 -2906.0,4.046736655041901 -2907.0,4.0967366550419 -2908.0,4.1467366550419005 -2909.0,4.1967366550419 -2910.0,4.2467366550419 -2911.0,4.296736655041901 -2912.0,4.3467366550419 -2913.0,4.3967366550419005 -2914.0,4.4467366550419 -2915.0,4.4967366550419 -2916.0,4.546736655041901 -2917.0,4.5967366550419 -2918.0,4.6467366550419005 -2919.0,4.6967366550419 -2920.0,4.7467366550419 -2921.0,4.796736655041901 -2922.0,4.8467366550419 -2923.0,4.8967366550419005 -2924.0,4.9467366550419 -2925.0,4.9967366550419 -2926.0,5.0467366550419 -2927.0,5.096736655041901 -2928.0,5.1467366550419005 -2929.0,5.1967366550419 -2930.0,5.2467366550419 -2931.0,5.2967366550419 -2932.0,5.346736655041901 -2933.0,5.3967366550419005 -2934.0,5.4467366550419 -2935.0,5.4967366550419 -2936.0,5.5467366550419 -2937.0,5.596736655041901 -2938.0,5.6467366550419005 -2939.0,5.6967366550419 -2940.0,5.7467366550419 -2941.0,5.7967366550419 -2942.0,5.846736655041901 -2943.0,5.8967366550419005 -2944.0,5.9467366550419 -2945.0,5.9967366550419 -2946.0,5.9532633449581 -2947.0,5.9032633449581 -2948.0,5.8532633449580995 -2949.0,5.8032633449581 -2950.0,5.7532633449581 -2951.0,5.7032633449581 -2952.0,5.6532633449581 -2953.0,5.6032633449580995 -2954.0,5.5532633449581 -2955.0,5.5032633449581 -2956.0,5.4532633449581 -2957.0,5.4032633449581 -2958.0,5.3532633449580995 -2959.0,5.3032633449581 -2960.0,5.2532633449581 -2961.0,5.2032633449581 -2962.0,5.1532633449581 -2963.0,5.1032633449580995 -2964.0,5.0532633449581 -2965.0,5.0032633449581 -2966.0,4.9532633449581 -2967.0,4.9032633449581 -2968.0,4.8532633449580995 -2969.0,4.8032633449581 -2970.0,4.7532633449581 -2971.0,4.7032633449581 -2972.0,4.6532633449581 -2973.0,4.6032633449580995 -2974.0,4.5532633449581 -2975.0,4.5032633449581 -2976.0,4.4532633449581 -2977.0,4.4032633449581 -2978.0,4.3532633449580995 -2979.0,4.3032633449581 -2980.0,4.2532633449581 -2981.0,4.2032633449581 -2982.0,4.1532633449581 -2983.0,4.1032633449580995 -2984.0,4.0532633449581 -2985.0,4.0032633449581 -2986.0,3.9532633449580996 -2987.0,3.9032633449581 -2988.0,3.8532633449581 -2989.0,3.8032633449580997 -2990.0,3.7532633449581 -2991.0,3.7032633449580996 -2992.0,3.6532633449581 -2993.0,3.6032633449581 -2994.0,3.5532633449580997 -2995.0,3.5032633449581 -2996.0,3.4532633449580996 -2997.0,3.4032633449581 -2998.0,3.3532633449580995 -2999.0,3.3032633449580997 -3000.0,3.2532633449581 -3001.0,3.2032633449580996 -3002.0,3.1532633449581 -3003.0,3.1032633449580995 -3004.0,3.0532633449580997 -3005.0,3.0032633449581 -3006.0,2.9532633449580996 -3007.0,2.9032633449581 -3008.0,2.8532633449580995 -3009.0,2.8032633449580997 -3010.0,2.7532633449581 -3011.0,2.7032633449580996 -3012.0,2.6532633449581 -3013.0,2.6032633449580995 -3014.0,2.5532633449580997 -3015.0,2.5032633449581 -3016.0,2.4532633449580996 -3017.0,2.4032633449581 -3018.0,2.3532633449580995 -3019.0,2.3032633449580997 -3020.0,2.2532633449581 -3021.0,2.2032633449580996 -3022.0,2.1532633449581 -3023.0,2.1032633449580995 -3024.0,2.0532633449580997 -3025.0,2.0032633449581 -3026.0,1.9532633449581 -3027.0,1.9032633449580993 -3028.0,1.8532633449580995 -3029.0,1.8032633449580997 -3030.0,1.7532633449580999 -3031.0,1.7032633449581 -3032.0,1.6532633449580993 -3033.0,1.6032633449580995 -3034.0,1.5532633449580997 -3035.0,1.5032633449580999 -3036.0,1.4532633449581 -3037.0,1.4032633449580993 -3038.0,1.3532633449580995 -3039.0,1.3032633449580997 -3040.0,1.2532633449580999 -3041.0,1.2032633449581 -3042.0,1.1532633449580993 -3043.0,1.1032633449580995 -3044.0,1.0532633449580997 -3045.0,1.0032633449580999 -3046.0,0.9996772067333728 -3047.0,0.9993319900785044 -3048.0,0.9989868926366559 -3049.0,0.9986419143666597 -3050.0,0.9982970552273626 -3051.0,0.9979523151776252 -3052.0,0.9976076941763226 -3053.0,0.9972631921823439 -3054.0,0.9969188091545929 -3055.0,0.9965745450519867 -3056.0,0.9962303998334576 -3057.0,0.9958863734579513 -3058.0,0.995542465884428 -3059.0,0.9951986770718619 -3060.0,0.9948550069792419 -3061.0,0.9945114555655703 -3062.0,0.994168022789864 -3063.0,0.9938247086111541 -3064.0,0.9934815129884856 -3065.0,0.9931384358809178 -3066.0,0.9927954772475241 -3067.0,0.9924526370473921 -3068.0,0.9921099152396233 -3069.0,0.9917673117833337 -3070.0,0.991424826637653 -3071.0,0.9910824597617253 -3072.0,0.9907402111147088 -3073.0,0.9903980806557756 -3074.0,0.9900560683441122 -3075.0,0.9897141741389189 -3076.0,0.9893723979994102 -3077.0,0.9890307398848148 -3078.0,0.9886891997543753 -3079.0,0.9883477775673485 -3080.0,0.9880064732830052 -3081.0,0.9876652868606302 -3082.0,0.9873242182595225 -3083.0,0.9869832674389953 -3084.0,0.9866424343583754 -3085.0,0.986301718977004 -3086.0,0.9859611212542362 -3087.0,0.9856206411494413 -3088.0,0.9852802786220022 -3089.0,0.9849400336313164 -3090.0,0.9845999061367953 -3091.0,0.9842598960978637 -3092.0,0.9839200034739612 -3093.0,0.9835802282245412 -3094.0,0.9832405703090706 -3095.0,0.9829010296870311 -3096.0,0.9825616063179177 -3097.0,0.9822223001612397 -3098.0,0.9818831111765205 -3099.0,0.9815440393232971 -3100.0,0.981205084561121 -3101.0,0.980866246849557 -3102.0,0.9805275261481846 -3103.0,0.9801889224165967 -3104.0,0.9798504356144003 -3105.0,0.9795120657012165 -3106.0,0.9791738126366802 -3107.0,0.9788356763804402 -3108.0,0.9784976568921595 -3109.0,0.9781597541315147 -3110.0,0.9778219680581964 -3111.0,0.9774842986319093 -3112.0,0.9771467458123718 -3113.0,0.9768093095593166 -3114.0,0.9764719898324895 -3115.0,0.9761347865916512 -3116.0,0.9757976997965756 -3117.0,0.9754607294070506 -3118.0,0.9751238753828784 -3119.0,0.9747871376838745 -3120.0,0.9744505162698686 -3121.0,0.9741140111007043 -3122.0,0.973777622136239 -3123.0,0.9734413493363437 -3124.0,0.9731051926609038 -3125.0,0.9727691520698182 -3126.0,0.9724332275229997 -3127.0,0.9720974189803747 -3128.0,0.9717617264018841 -3129.0,0.971426149747482 -3130.0,0.9710906889771365 -3131.0,0.9707553440508296 -3132.0,0.9704201149285573 -3133.0,0.9700850015703291 -3134.0,0.9697500039361683 -3135.0,0.9694151219861121 -3136.0,0.9690803556802118 -3137.0,0.9687457049785319 -3138.0,0.9684111698411513 -3139.0,0.9680767502281621 -3140.0,0.9677424460996708 -3141.0,0.9674082574157971 -3142.0,0.9670741841366748 -3143.0,0.9667402262224515 -3144.0,0.9664063836332882 -3145.0,0.9660726563293602 -3146.0,0.9657390442708562 -3147.0,0.9654055474179786 -3148.0,0.9650721657309437 -3149.0,0.9647388991699816 -3150.0,0.9644057476953358 -3151.0,0.964072711267264 -3152.0,0.9637397898460373 -3153.0,0.9634069833919405 -3154.0,0.9630742918652724 -3155.0,0.9627417152263451 -3156.0,0.9624092534354849 -3157.0,0.9620769064530313 -3158.0,0.9617446742393378 -3159.0,0.9614125567547717 -3160.0,0.9610805539597135 -3161.0,0.9607486658145579 -3162.0,0.9604168922797129 -3163.0,0.9600852333156006 -3164.0,0.9597536888826562 -3165.0,0.959422258941329 -3166.0,0.9590909434520819 -3167.0,0.9587597423753913 -3168.0,0.9584286556717473 -3169.0,0.9580976833016537 -3170.0,0.957766825225628 -3171.0,0.957436081404201 -3172.0,0.9571054517979176 -3173.0,0.9567749363673361 -3174.0,0.9564445350730283 -3175.0,0.9561142478755797 -3176.0,0.9557840747355897 -3177.0,0.9554540156136708 -3178.0,0.9551240704704494 -3179.0,0.9547942392665655 -3180.0,0.9544645219626726 -3181.0,0.954134918519438 -3182.0,0.953805428897542 -3183.0,0.9534760530576795 -3184.0,0.9531467909605578 -3185.0,0.9528176425668986 -3186.0,0.9524886078374368 -3187.0,0.9521596867329211 -3188.0,0.9518308792141135 -3189.0,0.9515021852417895 -3190.0,0.9511736047767387 -3191.0,0.9508451377797635 -3192.0,0.9505167842116804 -3193.0,0.9501885440333192 -3194.0,0.949860417205523 -3195.0,0.9495324036891489 -3196.0,0.9492045034450672 -3197.0,0.9488767164341618 -3198.0,0.9485490426173302 -3199.0,0.9482214819554831 -3200.0,0.947894034409545 -3201.0,0.9475666999404538 -3202.0,0.9472394785091609 -3203.0,0.9469123700766311 -3204.0,0.9465853746038428 -3205.0,0.9462584920517879 -3206.0,0.9459317223814716 -3207.0,0.9456050655539128 -3208.0,0.9452785215301434 -3209.0,0.9449520902712094 -3210.0,0.9446257717381698 -3211.0,0.9442995658920971 -3212.0,0.9439734726940775 -3213.0,0.9436474921052104 -3214.0,0.9433216240866086 -3215.0,0.9429958685993984 -3216.0,0.9426702256047198 -3217.0,0.9423446950637258 -3218.0,0.9420192769375828 -3219.0,0.9416939711874711 -3220.0,0.9413687777745839 -3221.0,0.9410436966601281 -3222.0,0.940718727805324 -3223.0,0.9403938711714048 -3224.0,0.9400691267196178 -3225.0,0.9397444944112232 -3226.0,0.9394199742074949 -3227.0,0.9390955660697199 -3228.0,0.9387712699591986 -3229.0,0.938447085837245 -3230.0,0.9381230136651861 -3231.0,0.9377990534043626 -3232.0,0.9374752050161285 -3233.0,0.9371514684618508 -3234.0,0.9368278437029103 -3235.0,0.9365043307007007 -3236.0,0.9361809294166294 -3237.0,0.9358576398121171 -3238.0,0.9355344618485976 -3239.0,0.935211395487518 -3240.0,0.9348884406903389 -3241.0,0.9345655974185343 -3242.0,0.9342428656335913 -3243.0,0.9339202452970102 -3244.0,0.9335977363703049 -3245.0,0.9332753388150024 -3246.0,0.9329530525926428 -3247.0,0.9326308776647801 -3248.0,0.9323088139929809 -3249.0,0.9319868615388256 -3250.0,0.9316650202639073 -3251.0,0.9313432901298329 -3252.0,0.9310216710982223 -3253.0,0.9307001631307086 -3254.0,0.9303787661889383 -3255.0,0.9300574802345712 -3256.0,0.9297363052292802 -3257.0,0.9294152411347513 -3258.0,0.929094287912684 -3259.0,0.9287734455247909 -3260.0,0.9284527139327979 -3261.0,0.928132093098444 -3262.0,0.9278115829834815 -3263.0,0.9274911835496759 -3264.0,0.9271708947588059 -3265.0,0.9268507165726632 -3266.0,0.926530648953053 -3267.0,0.9262106918617937 -3268.0,0.9258908452607166 -3269.0,0.9255711091116664 -3270.0,0.9252514833765008 -3271.0,0.9249319680170909 -3272.0,0.9246125629953208 -3273.0,0.9242932682730878 -3274.0,0.9239740838123023 -3275.0,0.9236550095748881 -3276.0,0.9233360455227819 -3277.0,0.9230171916179335 -3278.0,0.922698447822306 -3279.0,0.9223798140978757 -3280.0,0.9220612904066319 -3281.0,0.921742876710577 -3282.0,0.9214245729717264 -3283.0,0.9211063791521091 -3284.0,0.9207882952137667 -3285.0,0.9204703211187542 -3286.0,0.9201524568291395 -3287.0,0.9198347023070037 -3288.0,0.9195170575144411 -3289.0,0.9191995224135591 -3290.0,0.9188820969664778 -3291.0,0.9185647811353308 -3292.0,0.9182475748822646 -3293.0,0.917930478169439 -3294.0,0.9176134909590263 -3295.0,0.9172966132132127 -3296.0,0.9169798448941966 -3297.0,0.9166631859641899 -3298.0,0.9163466363854178 -3299.0,0.9160301961201179 -3300.0,0.9157138651305413 -3301.0,0.9153976433789521 -3302.0,0.9150815308276273 -3303.0,0.914765527438857 -3304.0,0.9144496331749442 -3305.0,0.9141338479982052 -3306.0,0.9138181718709688 -3307.0,0.9135026047555775 -3308.0,0.9131871466143863 -3309.0,0.9128717974097633 -3310.0,0.9125565571040897 -3311.0,0.9122414256597596 -3312.0,0.9119264030391802 -3313.0,0.9116114892047714 -3314.0,0.9112966841189665 -3315.0,0.9109819877442115 -3316.0,0.9106674000429652 -3317.0,0.9103529209776999 -3318.0,0.9100385505109003 -3319.0,0.9097242886050645 -3320.0,0.9094101352227031 -3321.0,0.9090960903263401 -3322.0,0.9087821538785121 -3323.0,0.908468325841769 -3324.0,0.9081546061786729 -3325.0,0.9078409948517999 -3326.0,0.9075274918237383 -3327.0,0.9072140970570892 -3328.0,0.9069008105144671 -3329.0,0.9065876321584994 -3330.0,0.9062745619518258 -3331.0,0.9059615998570995 -3332.0,0.9056487458369864 -3333.0,0.9053359998541654 -3334.0,0.9050233618713279 -3335.0,0.9047108318511788 -3336.0,0.9043984097564354 -3337.0,0.9040860955498279 -3338.0,0.9037738891940996 -3339.0,0.9034617906520067 -3340.0,0.9031497998863179 -3341.0,0.9028379168598152 -3342.0,0.902526141535293 -3343.0,0.9022144738755589 -3344.0,0.901902913843433 -3345.0,0.9015914614017488 -3346.0,0.9012801165133523 -3347.0,0.9009688791411019 -3348.0,0.9006577492478697 -3349.0,0.9003467267965399 -3350.0,0.9000358117500099 -3351.0,0.8997250040711898 -3352.0,0.8994143037230026 -3353.0,0.8991037106683838 -3354.0,0.898793224870282 -3355.0,0.8984828462916585 -3356.0,0.8981725748954875 -3357.0,0.8978624106447558 -3358.0,0.8975523535024631 -3359.0,0.8972424034316219 -3360.0,0.8969325603952572 -3361.0,0.8966228243564072 -3362.0,0.8963131952781225 -3363.0,0.8960036731234667 -3364.0,0.8956942578555162 -3365.0,0.8953849494373597 -3366.0,0.8950757478320992 -3367.0,0.8947666530028491 -3368.0,0.8944576649127366 -3369.0,0.8941487835249018 -3370.0,0.8938400088024973 -3371.0,0.8935313407086886 -3372.0,0.8932227792066538 -3373.0,0.8929143242595838 -3374.0,0.8926059758306821 -3375.0,0.8922977338831651 -3376.0,0.8919895983802617 -3377.0,0.8916815692852137 -3378.0,0.8913736465612753 -3379.0,0.8910658301717136 -3380.0,0.8907581200798084 -3381.0,0.8904505162488521 -3382.0,0.8901430186421497 -3383.0,0.8898356272230193 -3384.0,0.8895283419547911 -3385.0,0.8892211628008082 -3386.0,0.8889140897244264 -3387.0,0.8886071226890142 -3388.0,0.8883002616579526 -3389.0,0.8879935065946354 -3390.0,0.8876868574624688 -3391.0,0.8873803142248718 -3392.0,0.8870738768452763 -3393.0,0.8867675452871262 -3394.0,0.8864613195138786 -3395.0,0.8861551994890029 -3396.0,0.8858491851759813 -3397.0,0.8855432765383084 -3398.0,0.8852374735394917 -3399.0,0.8849317761430511 -3400.0,0.8846261843125188 -3401.0,0.8843206980114404 -3402.0,0.8840153172033733 -3403.0,0.8837100418518881 -3404.0,0.8834048719205673 -3405.0,0.8830998073730065 -3406.0,0.8827948481728137 -3407.0,0.8824899942836097 -3408.0,0.8821852456690275 -3409.0,0.8818806022927127 -3410.0,0.8815760641183237 -3411.0,0.8812716311095312 -3412.0,0.8809673032300188 -3413.0,0.8806630804434822 -3414.0,0.8803589627136299 -3415.0,0.8800549500041829 -3416.0,0.8797510422788746 -3417.0,0.8794472395014511 -3418.0,0.879143541635671 -3419.0,0.8788399486453052 -3420.0,0.8785364604941374 -3421.0,0.8782330771459637 -3422.0,0.8779297985645924 -3423.0,0.877626624713845 -3424.0,0.8773235555575548 -3425.0,0.877020591059568 -3426.0,0.876717731183743 -3427.0,0.8764149758939509 -3428.0,0.8761123251540752 -3429.0,0.8758097789280119 -3430.0,0.8755073371796693 -3431.0,0.8752049998729685 -3432.0,0.8749027669718428 -3433.0,0.8746006384402379 -3434.0,0.8742986142421123 -3435.0,0.8739966943414366 -3436.0,0.8736948787021938 -3437.0,0.8733931672883797 -3438.0,0.8730915600640022 -3439.0,0.8727900569930819 -3440.0,0.8724886580396515 -3441.0,0.8721873631677565 -3442.0,0.8718861723414545 -3443.0,0.8715850855248156 -3444.0,0.8712841026819224 -3445.0,0.8709832237768699 -3446.0,0.8706824487737653 -3447.0,0.8703817776367284 -3448.0,0.8700812103298914 -3449.0,0.8697807468173987 -3450.0,0.8694803870634072 -3451.0,0.8691801310320864 -3452.0,0.8688799786876176 -3453.0,0.868579929994195 -3454.0,0.8682799849160249 -3455.0,0.8679801434173261 -3456.0,0.8676804054623297 -3457.0,0.8673807710152791 -3458.0,0.8670812400404302 -3459.0,0.866781812502051 -3460.0,0.8664824883644221 -3461.0,0.8661832675918362 -3462.0,0.8658841501485984 -3463.0,0.8655851359990264 -3464.0,0.8652862251074499 -3465.0,0.8649874174382108 -3466.0,0.8646887129556639 -3467.0,0.8643901116241756 -3468.0,0.8640916134081251 -3469.0,0.8637932182719037 -3470.0,0.8634949261799151 -3471.0,0.8631967370965751 -3472.0,0.8628986509863119 -3473.0,0.8626006678135661 -3474.0,0.8623027875427907 -3475.0,0.8620050101384503 -3476.0,0.8617073355650224 -3477.0,0.8614097637869969 -3478.0,0.8611122947688752 -3479.0,0.8608149284751716 -3480.0,0.8605176648704126 -3481.0,0.8602205039191366 -3482.0,0.8599234455858946 -3483.0,0.8596264898352497 -3484.0,0.8593296366317772 -3485.0,0.8590328859400648 -3486.0,0.858736237724712 -3487.0,0.8584396919503311 -3488.0,0.8581432485815463 -3489.0,0.8578469075829941 -3490.0,0.8575506689193231 -3491.0,0.8572545325551942 -3492.0,0.8569584984552806 -3493.0,0.8566625665842674 -3494.0,0.8563667369068522 -3495.0,0.8560710093877447 -3496.0,0.8557753839916666 -3497.0,0.8554798606833522 -3498.0,0.8551844394275476 -3499.0,0.8548891201890112 -3500.0,0.8545939029325135 -3501.0,0.8542987876228373 -3502.0,0.8540037742247775 -3503.0,0.8537088627031412 -3504.0,0.8534140530227474 -3505.0,0.8531193451484278 -3506.0,0.8528247390450255 -3507.0,0.8525302346773965 -3508.0,0.8522358320104084 -3509.0,0.8519415310089411 -3510.0,0.8516473316378866 -3511.0,0.8513532338621492 -3512.0,0.8510592376466452 -3513.0,0.8507653429563027 -3514.0,0.8504715497560625 -3515.0,0.8501778580108771 -3516.0,0.8498842676857112 -3517.0,0.8495907787455417 -3518.0,0.8492973911553575 -3519.0,0.8490041048801595 -3520.0,0.8487109198849608 -3521.0,0.8484178361347867 -3522.0,0.8481248535946744 -3523.0,0.847831972229673 -3524.0,0.8475391920048442 -3525.0,0.8472465128852613 -3526.0,0.8469539348360098 -3527.0,0.8466614578221874 -3528.0,0.8463690818089035 -3529.0,0.8460768067612799 -3530.0,0.8457846326444505 -3531.0,0.8454925594235607 -3532.0,0.8452005870637685 -3533.0,0.8449087155302438 -3534.0,0.8446169447881683 -3535.0,0.844325274802736 -3536.0,0.8440337055391527 -3537.0,0.8437422369626363 -3538.0,0.8434508690384167 -3539.0,0.843159601731736 -3540.0,0.842868435007848 -3541.0,0.8425773688320187 -3542.0,0.842286403169526 -3543.0,0.8419955379856597 -3544.0,0.8417047732457219 -3545.0,0.8414141089150264 -3546.0,0.8411235449588991 -3547.0,0.8408330813426779 -3548.0,0.8405427180317123 -3549.0,0.8402524549913644 -3550.0,0.8399622921870078 -3551.0,0.8396722295840282 -3552.0,0.8393822671478233 -3553.0,0.8390924048438027 -3554.0,0.8388026426373878 -3555.0,0.8385129804940122 -3556.0,0.8382234183791213 -3557.0,0.8379339562581725 -3558.0,0.8376445940966349 -3559.0,0.83735533185999 -3560.0,0.8370661695137307 -3561.0,0.8367771070233622 -3562.0,0.8364881443544011 -3563.0,0.8361992814723767 -3564.0,0.8359105183428295 -3565.0,0.8356218549313122 -3566.0,0.8353332912033896 -3567.0,0.8350448271246378 -3568.0,0.8347564626606453 -3569.0,0.8344681977770123 -3570.0,0.8341800324393509 -3571.0,0.8338919666132851 -3572.0,0.8336040002644508 -3573.0,0.8333161333584956 -3574.0,0.8330283658610792 -3575.0,0.8327406977378728 -3576.0,0.83245312895456 -3577.0,0.8321656594768357 -3578.0,0.8318782892704071 -3579.0,0.8315910183009929 -3580.0,0.8313038465343238 -3581.0,0.8310167739361422 -3582.0,0.8307298004722025 -3583.0,0.8304429261082709 -3584.0,0.8301561508101253 -3585.0,0.8298694745435556 -3586.0,0.8295828972743634 -3587.0,0.829296418968362 -3588.0,0.8290100395913768 -3589.0,0.8287237591092447 -3590.0,0.8284375774878145 -3591.0,0.828151494692947 -3592.0,0.8278655106905144 -3593.0,0.8275796254464011 -3594.0,0.8272938389265029 -3595.0,0.8270081510967275 -3596.0,0.8267225619229946 -3597.0,0.8264370713712356 -3598.0,0.8261516794073932 -3599.0,0.8258663859974225 -3600.0,0.8255811911072899 -3601.0,0.8252960947029739 -3602.0,0.8250110967504645 -3603.0,0.8247261972157635 -3604.0,0.8244413960648844 -3605.0,0.8241566932638527 -3606.0,0.8238720887787052 -3607.0,0.8235875825754908 -3608.0,0.82330317462027 -3609.0,0.8230188648791149 -3610.0,0.8227346533181096 -3611.0,0.8224505399033495 -3612.0,0.822166524600942 -3613.0,0.8218826073770062 -3614.0,0.821598788197673 -3615.0,0.8213150670290846 -3616.0,0.8210314438373952 -3617.0,0.8207479185887707 -3618.0,0.8204644912493885 -3619.0,0.8201811617854378 -3620.0,0.8198979301631195 -3621.0,0.8196147963486462 -3622.0,0.819331760308242 -3623.0,0.8190488220081428 -3624.0,0.818765981414596 -3625.0,0.818483238493861 -3626.0,0.8182005932122084 -3627.0,0.817918045535921 -3628.0,0.8176355954312925 -3629.0,0.8173532428646291 -3630.0,0.8170709878022479 -3631.0,0.8167888302104779 -3632.0,0.81650677005566 -3633.0,0.8162248073041463 -3634.0,0.8159429419223007 -3635.0,0.8156611738764988 -3636.0,0.8153795031331278 -3637.0,0.8150979296585862 -3638.0,0.8148164534192844 -3639.0,0.8145350743816445 -3640.0,0.8142537925121 -3641.0,0.8139726077770959 -3642.0,0.8136915201430889 -3643.0,0.8134105295765474 -3644.0,0.8131296360439513 -3645.0,0.8128488395117919 -3646.0,0.8125681399465723 -3647.0,0.8122875373148072 -3648.0,0.8120070315830226 -3649.0,0.8117266227177562 -3650.0,0.8114463106855573 -3651.0,0.8111660954529868 -3652.0,0.810885976986617 -3653.0,0.8106059552530318 -3654.0,0.8103260302188268 -3655.0,0.8100462018506087 -3656.0,0.8097664701149963 -3657.0,0.8094868349786193 -3658.0,0.8092072964081196 -3659.0,0.8089278543701502 -3660.0,0.8086485088313756 -3661.0,0.8083692597584721 -3662.0,0.8080901071181271 -3663.0,0.8078110508770399 -3664.0,0.8075320910019209 -3665.0,0.8072532274594926 -3666.0,0.8069744602164882 -3667.0,0.806695789239653 -3668.0,0.8064172144957437 -3669.0,0.8061387359515282 -3670.0,0.805860353573786 -3671.0,0.8055820673293083 -3672.0,0.8053038771848974 -3673.0,0.8050257831073673 -3674.0,0.8047477850635434 -3675.0,0.8044698830202626 -3676.0,0.8041920769443732 -3677.0,0.803914366802735 -3678.0,0.8036367525622191 -3679.0,0.8033592341897082 -3680.0,0.8030818116520964 -3681.0,0.8028044849162892 -3682.0,0.8025272539492034 -3683.0,0.8022501187177677 -3684.0,0.8019730791889217 -3685.0,0.8016961353296165 -3686.0,0.8014192871068148 -3687.0,0.8011425344874906 -3688.0,0.8008658774386296 -3689.0,0.8005893159272282 -3690.0,0.8003128499202948 -3691.0,0.8000364793848492 -3692.0,0.7997602042879222 -3693.0,0.7994840245965562 -3694.0,0.7992079402778052 -3695.0,0.798931951298734 -3696.0,0.7986560576264194 -3697.0,0.7983802592279492 -3698.0,0.7981045560704227 -3699.0,0.7978289481209505 -3700.0,0.7975534353466545 -3701.0,0.7972780177146682 -3702.0,0.7970026951921362 -3703.0,0.7967274677462144 -3704.0,0.7964523353440705 -3705.0,0.7961772979528828 -3706.0,0.7959023555398417 -3707.0,0.7956275080721483 -3708.0,0.7953527555170156 -3709.0,0.7950780978416674 -3710.0,0.794803535013339 -3711.0,0.7945290669992773 -3712.0,0.7942546937667401 -3713.0,0.7939804152829966 -3714.0,0.7937062315153275 -3715.0,0.7934321424310247 -3716.0,0.7931581479973913 -3717.0,0.7928842481817416 -3718.0,0.7926104429514018 -3719.0,0.7923367322737085 -3720.0,0.7920631161160102 -3721.0,0.7917895944456665 -3722.0,0.7915161672300483 -3723.0,0.7912428344365374 -3724.0,0.7909695960325276 -3725.0,0.7906964519854234 -3726.0,0.7904234022626406 -3727.0,0.7901504468316066 -3728.0,0.7898775856597595 -3729.0,0.7896048187145492 -3730.0,0.7893321459634366 -3731.0,0.7890595673738936 -3732.0,0.7887870829134037 -3733.0,0.7885146925494615 -3734.0,0.7882423962495728 -3735.0,0.7879701939812547 -3736.0,0.7876980857120354 -3737.0,0.7874260714094542 -3738.0,0.7871541510410621 -3739.0,0.7868823245744208 -3740.0,0.7866105919771033 -3741.0,0.7863389532166941 -3742.0,0.7860674082607885 -3743.0,0.7857959570769932 -3744.0,0.7855245996329261 -3745.0,0.7852533358962163 -3746.0,0.7849821658345039 -3747.0,0.7847110894154402 -3748.0,0.7844401066066881 -3749.0,0.7841692173759209 -3750.0,0.7838984216908238 -3751.0,0.7836277195190927 -3752.0,0.783357110828435 -3753.0,0.7830865955865687 -3754.0,0.7828161737612236 -3755.0,0.7825458453201403 -3756.0,0.7822756102310705 -3757.0,0.7820054684617772 -3758.0,0.7817354199800344 -3759.0,0.7814654647536273 -3760.0,0.7811956027503523 -3761.0,0.7809258339380167 -3762.0,0.7806561582844391 -3763.0,0.7803865757574492 -3764.0,0.7801170863248876 -3765.0,0.7798476899546065 -3766.0,0.7795783866144685 -3767.0,0.7793091762723481 -3768.0,0.77904005889613 -3769.0,0.7787710344537108 -3770.0,0.7785021029129977 -3771.0,0.7782332642419092 -3772.0,0.7779645184083748 -3773.0,0.777695865380335 -3774.0,0.7774273051257414 -3775.0,0.777158837612557 -3776.0,0.7768904628087554 -3777.0,0.7766221806823214 -3778.0,0.7763539912012508 -3779.0,0.7760858943335509 -3780.0,0.7758178900472394 -3781.0,0.7755499783103454 -3782.0,0.7752821590909091 -3783.0,0.7750144323569816 -3784.0,0.7747467980766249 -3785.0,0.7744792562179124 -3786.0,0.7742118067489281 -3787.0,0.7739444496377672 -3788.0,0.7736771848525361 -3789.0,0.7734100123613522 -3790.0,0.7731429321323434 -3791.0,0.7728759441336492 -3792.0,0.7726090483334199 -3793.0,0.7723422446998167 -3794.0,0.772075533201012 -3795.0,0.7718089138051888 -3796.0,0.7715423864805415 -3797.0,0.7712759511952754 -3798.0,0.7710096079176066 -3799.0,0.7707433566157624 -3800.0,0.7704771972579809 -3801.0,0.7702111298125113 -3802.0,0.7699451542476136 -3803.0,0.7696792705315587 -3804.0,0.769413478632629 -3805.0,0.7691477785191171 -3806.0,0.7688821701593271 -3807.0,0.7686166535215738 -3808.0,0.7683512285741831 -3809.0,0.7680858952854916 -3810.0,0.7678206536238472 -3811.0,0.7675555035576083 -3812.0,0.7672904450551443 -3813.0,0.767025478084836 -3814.0,0.7667606026150745 -3815.0,0.7664958186142622 -3816.0,0.7662311260508123 -3817.0,0.765966524893149 -3818.0,0.765702015109707 -3819.0,0.7654375966689326 -3820.0,0.7651732695392823 -3821.0,0.764909033689224 -3822.0,0.7646448890872363 -3823.0,0.7643808357018085 -3824.0,0.764116873501441 -3825.0,0.763853002454645 -3826.0,0.7635892225299429 -3827.0,0.7633255336958674 -3828.0,0.7630619359209624 -3829.0,0.7627984291737826 -3830.0,0.7625350134228936 -3831.0,0.7622716886368718 -3832.0,0.7620084547843045 -3833.0,0.7617453118337898 -3834.0,0.7614822597539367 -3835.0,0.7612192985133649 -3836.0,0.7609564280807051 -3837.0,0.7606936484245989 -3838.0,0.7604309595136984 -3839.0,0.7601683613166669 -3840.0,0.7599058538021781 -3841.0,0.7596434369389171 -3842.0,0.7593811106955792 -3843.0,0.759118875040871 -3844.0,0.7588567299435096 -3845.0,0.7585946753722229 -3846.0,0.75833271129575 -3847.0,0.7580708376828401 -3848.0,0.757809054502254 -3849.0,0.7575473617227625 -3850.0,0.7572857593131478 -3851.0,0.7570242472422025 -3852.0,0.7567628254787303 -3853.0,0.7565014939915453 -3854.0,0.7562402527494726 -3855.0,0.7559791017213481 -3856.0,0.7557180408760183 -3857.0,0.7554570701823408 -3858.0,0.7551961896091832 -3859.0,0.7549353991254248 -3860.0,0.754674698699955 -3861.0,0.7544140883016741 -3862.0,0.7541535678994934 -3863.0,0.7538931374623344 -3864.0,0.7536327969591299 -3865.0,0.7533725463588231 -3866.0,0.753112385630368 -3867.0,0.7528523147427293 -3868.0,0.7525923336648824 -3869.0,0.7523324423658136 -3870.0,0.7520726408145197 -3871.0,0.7518129289800082 -3872.0,0.7515533068312974 -3873.0,0.7512937743374162 -3874.0,0.7510343314674044 -3875.0,0.7507749781903124 -3876.0,0.750515714475201 -3877.0,0.7502565402911422 -3878.0,0.7499974556072183 -3879.0,0.7497384603925223 -3880.0,0.7494795546161581 -3881.0,0.74922073824724 -3882.0,0.7489620112548931 -3883.0,0.7487033736082533 -3884.0,0.748444825276467 -3885.0,0.7481863662286912 -3886.0,0.7479279964340935 -3887.0,0.7476697158618524 -3888.0,0.747411524481157 -3889.0,0.7471534222612067 -3890.0,0.7468954091712121 -3891.0,0.7466374851803939 -3892.0,0.7463796502579836 -3893.0,0.7461219043732236 -3894.0,0.7458642474953665 -3895.0,0.7456066795936758 -3896.0,0.7453492006374255 -3897.0,0.7450918105959002 -3898.0,0.7448345094383954 -3899.0,0.7445772971342165 -3900.0,0.7443201736526803 -3901.0,0.7440631389631137 -3902.0,0.7438061930348544 -3903.0,0.7435493358372506 -3904.0,0.7432925673396611 -3905.0,0.7430358875114553 -3906.0,0.7427792963220132 -3907.0,0.7425227937407253 -3908.0,0.7422663797369926 -3909.0,0.742010054280227 -3910.0,0.7417538173398506 -3911.0,0.7414976688852962 -3912.0,0.7412416088860072 -3913.0,0.7409856373114376 -3914.0,0.7407297541310517 -3915.0,0.7404739593143246 -3916.0,0.7402182528307417 -3917.0,0.7399626346497993 -3918.0,0.7397071047410039 -3919.0,0.7394516630738726 -3920.0,0.739196309617933 -3921.0,0.7389410443427237 -3922.0,0.738685867217793 -3923.0,0.7384307782127002 -3924.0,0.7381757772970151 -3925.0,0.737920864440318 -3926.0,0.7376660396121996 -3927.0,0.7374113027822612 -3928.0,0.7371566539201144 -3929.0,0.7369020929953817 -3930.0,0.7366476199776956 -3931.0,0.7363932348366994 -3932.0,0.7361389375420468 -3933.0,0.7358847280634022 -3934.0,0.73563060637044 -3935.0,0.7353765724328454 -3936.0,0.735122626220314 -3937.0,0.7348687677025518 -3938.0,0.7346149968492756 -3939.0,0.7343613136302121 -3940.0,0.7341077180150989 -3941.0,0.7338542099736838 -3942.0,0.7336007894757252 -3943.0,0.7333474564909918 -3944.0,0.7330942109892629 -3945.0,0.7328410529403282 -3946.0,0.7325879823139877 -3947.0,0.732334999080052 -3948.0,0.7320821032083419 -3949.0,0.7318292946686888 -3950.0,0.7315765734309347 -3951.0,0.7313239394649316 -3952.0,0.7310713927405421 -3953.0,0.7308189332276394 -3954.0,0.7305665608961067 -3955.0,0.730314275715838 -3956.0,0.7300620776567373 -3957.0,0.7298099666887194 -3958.0,0.7295579427817093 -3959.0,0.7293060059056422 -3960.0,0.7290541560304641 -3961.0,0.728802393126131 -3962.0,0.7285507171626094 -3963.0,0.7282991281098764 -3964.0,0.728047625937919 -3965.0,0.727796210616735 -3966.0,0.7275448821163324 -3967.0,0.7272936404067294 -3968.0,0.7270424854579547 -3969.0,0.7267914172400474 -3970.0,0.7265404357230569 -3971.0,0.726289540877043 -3972.0,0.7260387326720757 -3973.0,0.7257880110782355 -3974.0,0.725537376065613 -3975.0,0.7252868276043093 -3976.0,0.7250363656644359 -3977.0,0.7247859902161143 -3978.0,0.7245357012294767 -3979.0,0.7242854986746656 -3980.0,0.7240353825218334 -3981.0,0.7237853527411432 -3982.0,0.7235354093027682 -3983.0,0.7232855521768918 -3984.0,0.7230357813337083 -3985.0,0.7227860967434215 -3986.0,0.722536498376246 -3987.0,0.7222869862024066 -3988.0,0.7220375601921382 -3989.0,0.721788220315686 -3990.0,0.7215389665433057 -3991.0,0.7212897988452632 -3992.0,0.7210407171918346 -3993.0,0.7207917215533062 -3994.0,0.7205428118999745 -3995.0,0.7202939882021466 -3996.0,0.7200452504301397 -3997.0,0.719796598554281 -3998.0,0.7195480325449083 -3999.0,0.7192995523723693 -4000.0,0.7190511580070224 -4001.0,0.7188028494192358 -4002.0,0.718554626579388 -4003.0,0.718306489457868 -4004.0,0.7180584380250747 -4005.0,0.7178104722514175 -4006.0,0.7175625921073159 -4007.0,0.7173147975631995 -4008.0,0.7170670885895083 -4009.0,0.7168194651566925 -4010.0,0.7165719272352121 -4011.0,0.7163244747955381 -4012.0,0.7160771078081508 -4013.0,0.7158298262435414 -4014.0,0.7155826300722109 -4015.0,0.7153355192646705 -4016.0,0.715088493791442 -4017.0,0.7148415536230568 -4018.0,0.7145946987300568 -4019.0,0.7143479290829939 -4020.0,0.7141012446524305 -4021.0,0.7138546454089388 -4022.0,0.7136081313231014 -4023.0,0.713361702365511 -4024.0,0.7131153585067702 -4025.0,0.7128690997174921 -4026.0,0.7126229259682999 -4027.0,0.7123768372298268 -4028.0,0.7121308334727162 -4029.0,0.7118849146676216 -4030.0,0.7116390807852068 -4031.0,0.7113933317961455 -4032.0,0.7111476676711217 -4033.0,0.7109020883808295 -4034.0,0.7106565938959729 -4035.0,0.7104111841872663 -4036.0,0.7101658592254343 -4037.0,0.7099206189812112 -4038.0,0.7096754634253416 -4039.0,0.7094303925285804 -4040.0,0.7091854062616922 -4041.0,0.7089405045954522 -4042.0,0.7086956875006453 -4043.0,0.7084509549480665 -4044.0,0.7082063069085212 -4045.0,0.7079617433528244 -4046.0,0.7077172642518016 -4047.0,0.7074728695762883 -4048.0,0.7072285592971299 -4049.0,0.706984333385182 -4050.0,0.7067401918113102 -4051.0,0.7064961345463902 -4052.0,0.7062521615613078 -4053.0,0.7060082728269587 -4054.0,0.7057644683142488 -4055.0,0.705520747994094 -4056.0,0.7052771118374204 -4057.0,0.7050335598151637 -4058.0,0.7047900918982701 -4059.0,0.7045467080576956 -4060.0,0.7043034082644063 -4061.0,0.7040601924893783 -4062.0,0.7038170607035977 -4063.0,0.7035740128780608 -4064.0,0.7033310489837735 -4065.0,0.7030881689917522 -4066.0,0.702845372873023 -4067.0,0.7026026605986221 -4068.0,0.7023600321395956 -4069.0,0.702117487467 -4070.0,0.7018750265519011 -4071.0,0.7016326493653754 -4072.0,0.7013903558785088 -4073.0,0.7011481460623977 -4074.0,0.700906019888148 -4075.0,0.7006639773268761 -4076.0,0.7004220183497079 -4077.0,0.7001801429277794 -4078.0,0.6999383510322368 -4079.0,0.6996966426342359 -4080.0,0.6994550177049428 -4081.0,0.6992134762155333 -4082.0,0.6989720181371935 -4083.0,0.6987306434411188 -4084.0,0.6984893520985153 -4085.0,0.6982481440805985 -4086.0,0.6980070193585943 -4087.0,0.697765977903738 -4088.0,0.6975250196872752 -4089.0,0.6972841446804615 -4090.0,0.697043352854562 -4091.0,0.6968026441808521 -4092.0,0.6965620186306172 -4093.0,0.696321476175152 -4094.0,0.6960810167857621 -4095.0,0.6958406404337619 -4096.0,0.6956003470904767 -4097.0,0.695360136727241 -4098.0,0.6951200093153994 -4099.0,0.6948799648263067 -4100.0,0.694640003231327 -4101.0,0.6944001245018351 -4102.0,0.6941603286092148 -4103.0,0.6939206155248604 -4104.0,0.6936809852201758 -4105.0,0.6934414376665748 -4106.0,0.6932019728354814 -4107.0,0.6929625906983289 -4108.0,0.6927232912265608 -4109.0,0.6924840743916306 -4110.0,0.6922449401650012 -4111.0,0.6920058885181458 -4112.0,0.6917669194225473 -4113.0,0.6915280328496984 -4114.0,0.6912892287711017 -4115.0,0.6910505071582695 -4116.0,0.6908118679827242 -4117.0,0.6905733112159977 -4118.0,0.6903348368296321 -4119.0,0.6900964447951791 -4120.0,0.6898581350842002 -4121.0,0.6896199076682669 -4122.0,0.6893817625189602 -4123.0,0.6891436996078714 -4124.0,0.6889057189066011 -4125.0,0.6886678203867601 -4126.0,0.6884300040199688 -4127.0,0.6881922697778573 -4128.0,0.6879546176320658 -4129.0,0.687717047554244 -4130.0,0.6874795595160518 -4131.0,0.6872421534891582 -4132.0,0.6870048294452428 -4133.0,0.6867675873559942 -4134.0,0.6865304271931114 -4135.0,0.6862933489283028 -4136.0,0.6860563525332868 -4137.0,0.6858194379797914 -4138.0,0.6855826052395543 -4139.0,0.6853458542843233 -4140.0,0.6851091850858556 -4141.0,0.6848725976159183 -4142.0,0.6846360918462884 -4143.0,0.6843996677487523 -4144.0,0.6841633252951063 -4145.0,0.6839270644571566 -4146.0,0.683690885206719 -4147.0,0.6834547875156188 -4148.0,0.6832187713556916 -4149.0,0.6829828366987822 -4150.0,0.6827469835167455 -4151.0,0.6825112117814457 -4152.0,0.682275521464757 -4153.0,0.6820399125385634 -4154.0,0.6818043849747584 -4155.0,0.6815689387452452 -4156.0,0.6813335738219368 -4157.0,0.681098290176756 -4158.0,0.6808630877816352 -4159.0,0.6806279666085162 -4160.0,0.6803929266293511 -4161.0,0.680157967816101 -4162.0,0.6799230901407374 -4163.0,0.6796882935752409 -4164.0,0.6794535780916019 -4165.0,0.6792189436618206 -4166.0,0.6789843902579069 -4167.0,0.6787499178518803 -4168.0,0.67851552641577 -4169.0,0.6782812159216145 -4170.0,0.6780469863414627 -4171.0,0.6778128376473723 -4172.0,0.6775787698114115 -4173.0,0.6773447828056574 -4174.0,0.6771108766021972 -4175.0,0.6768770511731274 -4176.0,0.6766433064905545 -4177.0,0.6764096425265945 -4178.0,0.6761760592533729 -4179.0,0.6759425566430249 -4180.0,0.6757091346676956 -4181.0,0.675475793299539 -4182.0,0.6752425325107195 -4183.0,0.6750093522734107 -4184.0,0.674776252559796 -4185.0,0.6745432333420682 -4186.0,0.6743102945924297 -4187.0,0.6740774362830928 -4188.0,0.6738446583862792 -4189.0,0.67361196087422 -4190.0,0.6733793437191563 -4191.0,0.6731468068933384 -4192.0,0.6729143503690265 -4193.0,0.6726819741184902 -4194.0,0.6724496781140085 -4195.0,0.6722174623278704 -4196.0,0.6719853267323743 -4197.0,0.6717532712998279 -4198.0,0.6715212960025488 -4199.0,0.6712894008128641 -4200.0,0.6710575857031104 -4201.0,0.6708258506456336 -4202.0,0.6705941956127897 -4203.0,0.6703626205769437 -4204.0,0.6701311255104706 -4205.0,0.6698997103857546 -4206.0,0.6696683751751895 -4207.0,0.6694371198511789 -4208.0,0.6692059443861356 -4209.0,0.668974848752482 -4210.0,0.6687438329226502 -4211.0,0.6685128968690817 -4212.0,0.6682820405642274 -4213.0,0.6680512639805477 -4214.0,0.667820567090513 -4215.0,0.6675899498666026 -4216.0,0.6673594122813056 -4217.0,0.6671289543071206 -4218.0,0.6668985759165555 -4219.0,0.6666682770821281 -4220.0,0.6664380577763651 -4221.0,0.6662079179718032 -4222.0,0.6659778576409884 -4223.0,0.6657478767564762 -4224.0,0.6655179752908313 -4225.0,0.6652881532166286 -4226.0,0.6650584105064516 -4227.0,0.6648287471328939 -4228.0,0.6645991630685582 -4229.0,0.6643696582860568 -4230.0,0.6641402327580116 -4231.0,0.6639108864570537 -4232.0,0.6636816193558236 -4233.0,0.6634524314269716 -4234.0,0.6632233226431573 -4235.0,0.6629942929770497 -4236.0,0.662765342401327 -4237.0,0.6625364708886773 -4238.0,0.6623076784117977 -4239.0,0.6620789649433951 -4240.0,0.6618503304561857 -4241.0,0.6616217749228948 -4242.0,0.6613932983162575 -4243.0,0.6611649006090183 -4244.0,0.6609365817739311 -4245.0,0.6607083417837589 -4246.0,0.6604801806112744 -4247.0,0.6602520982292598 -4248.0,0.6600240946105063 -4249.0,0.6597961697278149 -4250.0,0.6595683235539956 -4251.0,0.6593405560618683 -4252.0,0.6591128672242618 -4253.0,0.6588852570140146 -4254.0,0.6586577254039744 -4255.0,0.6584302723669984 -4256.0,0.658202897875953 -4257.0,0.6579756019037142 -4258.0,0.6577483844231672 -4259.0,0.6575212454072065 -4260.0,0.6572941848287362 -4261.0,0.6570672026606696 -4262.0,0.6568402988759295 -4263.0,0.6566134734474477 -4264.0,0.6563867263481657 -4265.0,0.6561600575510343 -4266.0,0.6559334670290135 -4267.0,0.6557069547550727 -4268.0,0.6554805207021905 -4269.0,0.6552541648433552 -4270.0,0.655027887151564 -4271.0,0.6548016875998237 -4272.0,0.6545755661611505 -4273.0,0.6543495228085695 -4274.0,0.6541235575151155 -4275.0,0.6538976702538326 -4276.0,0.6536718609977739 -4277.0,0.653446129720002 -4278.0,0.653220476393589 -4279.0,0.652994900991616 -4280.0,0.6527694034871734 -4281.0,0.6525439838533611 -4282.0,0.6523186420632882 -4283.0,0.6520933780900731 -4284.0,0.6518681919068432 -4285.0,0.6516430834867357 -4286.0,0.6514180528028968 -4287.0,0.6511930998284817 -4288.0,0.6509682245366555 -4289.0,0.6507434269005921 -4290.0,0.6505187068934746 -4291.0,0.6502940644884957 -4292.0,0.6500694996588573 -4293.0,0.6498450123777703 -4294.0,0.649620602618455 -4295.0,0.649396270354141 -4296.0,0.6491720155580671 -4297.0,0.6489478382034813 -4298.0,0.648723738263641 -4299.0,0.6484997157118125 -4300.0,0.6482757705212717 -4301.0,0.6480519026653037 -4302.0,0.6478281121172023 -4303.0,0.6476043988502712 -4304.0,0.6473807628378231 -4305.0,0.6471572040531797 -4306.0,0.646933722469672 -4307.0,0.6467103180606405 -4308.0,0.6464869907994345 -4309.0,0.6462637406594127 -4310.0,0.6460405676139431 -4311.0,0.6458174716364028 -4312.0,0.6455944527001779 -4313.0,0.645371510778664 -4314.0,0.6451486458452658 -4315.0,0.6449258578733968 -4316.0,0.6447031468364806 -4317.0,0.6444805127079489 -4318.0,0.6442579554612432 -4319.0,0.6440354750698142 -4320.0,0.6438130715071214 -4321.0,0.6435907447466339 -4322.0,0.6433684947618296 -4323.0,0.6431463215261957 -4324.0,0.6429242250132285 -4325.0,0.6427022051964336 -4326.0,0.6424802620493257 -4327.0,0.6422583955454285 -4328.0,0.6420366056582749 -4329.0,0.6418148923614071 -4330.0,0.6415932556283762 -4331.0,0.6413716954327427 -4332.0,0.6411502117480761 -4333.0,0.6409288045479549 -4334.0,0.6407074738059667 -4335.0,0.6404862194957087 -4336.0,0.6402650415907866 -4337.0,0.6400439400648156 -4338.0,0.6398229148914198 -4339.0,0.6396019660442327 -4340.0,0.6393810934968965 -4341.0,0.6391602972230629 -4342.0,0.6389395771963924 -4343.0,0.6387189333905547 -4344.0,0.6384983657792288 -4345.0,0.6382778743361023 -4346.0,0.6380574590348723 -4347.0,0.637837119849245 -4348.0,0.6376168567529353 -4349.0,0.6373966697196676 -4350.0,0.637176558723175 -4351.0,0.6369565237372001 -4352.0,0.6367365647354943 -4353.0,0.636516681691818 -4354.0,0.6362968745799407 -4355.0,0.6360771433736411 -4356.0,0.6358574880467067 -4357.0,0.6356379085729346 -4358.0,0.6354184049261303 -4359.0,0.6351989770801086 -4360.0,0.6349796250086935 -4361.0,0.6347603486857178 -4362.0,0.6345411480850235 -4363.0,0.6343220231804614 -4364.0,0.6341029739458917 -4365.0,0.6338840003551833 -4366.0,0.6336651023822142 -4367.0,0.6334462800008717 -4368.0,0.6332275331850516 -4369.0,0.6330088619086593 -4370.0,0.6327902661456087 -4371.0,0.6325717458698229 -4372.0,0.6323533010552342 -4373.0,0.6321349316757835 -4374.0,0.6319166377054212 -4375.0,0.6316984191181061 -4376.0,0.6314802758878065 -4377.0,0.6312622079884996 -4378.0,0.6310442153941713 -4379.0,0.6308262980788167 -4380.0,0.63060845601644 -4381.0,0.6303906891810541 -4382.0,0.630172997546681 -4383.0,0.6299553810873517 -4384.0,0.6297378397771063 -4385.0,0.6295203735899934 -4386.0,0.629302982500071 -4387.0,0.6290856664814061 -4388.0,0.6288684255080742 -4389.0,0.6286512595541602 -4390.0,0.6284341685937579 -4391.0,0.6282171526009697 -4392.0,0.6280002115499073 -4393.0,0.6277833454146912 -4394.0,0.6275665541694506 -4395.0,0.6273498377883243 -4396.0,0.6271331962454595 -4397.0,0.6269166295150124 -4398.0,0.626700137571148 -4399.0,0.6264837203880406 -4400.0,0.6262673779398731 -4401.0,0.6260511102008376 -4402.0,0.6258349171451346 -4403.0,0.6256187987469742 -4404.0,0.6254027549805748 -4405.0,0.6251867858201642 -4406.0,0.6249708912399786 -4407.0,0.6247550712142634 -4408.0,0.624539325717273 -4409.0,0.6243236547232704 -4410.0,0.6241080582065277 -4411.0,0.6238925361413258 -4412.0,0.6236770885019544 -4413.0,0.6234617152627121 -4414.0,0.6232464163979067 -4415.0,0.6230311918818545 -4416.0,0.6228160416888807 -4417.0,0.6226009657933196 -4418.0,0.6223859641695141 -4419.0,0.6221710367918161 -4420.0,0.6219561836345863 -4421.0,0.6217414046721943 -4422.0,0.6215266998790187 -4423.0,0.6213120692294465 -4424.0,0.6210975126978739 -4425.0,0.6208830302587061 -4426.0,0.6206686218863567 -4427.0,0.6204542875552485 -4428.0,0.6202400272398126 -4429.0,0.6200258409144899 -4430.0,0.619811728553729 -4431.0,0.6195976901319881 -4432.0,0.6193837256237339 -4433.0,0.6191698350034421 -4434.0,0.618956018245597 -4435.0,0.618742275324692 -4436.0,0.6185286062152289 -4437.0,0.6183150108917186 -4438.0,0.6181014893286807 -4439.0,0.6178880415006438 -4440.0,0.617674667382145 -4441.0,0.6174613669477304 -4442.0,0.6172481401719546 -4443.0,0.6170349870293815 -4444.0,0.6168219074945833 -4445.0,0.6166089015421413 -4446.0,0.6163959691466453 -4447.0,0.616183110282694 -4448.0,0.6159703249248951 -4449.0,0.6157576130478646 -4450.0,0.6155449746262277 -4451.0,0.6153324096346181 -4452.0,0.6151199180476784 -4453.0,0.61490749984006 -4454.0,0.6146951549864227 -4455.0,0.6144828834614354 -4456.0,0.6142706852397758 -4457.0,0.6140585602961302 -4458.0,0.6138465086051933 -4459.0,0.6136345301416692 -4460.0,0.6134226248802704 -4461.0,0.6132107927957181 -4462.0,0.6129990338627422 -4463.0,0.6127873480560815 -4464.0,0.6125757353504834 -4465.0,0.612364195720704 -4466.0,0.6121527291415082 -4467.0,0.6119413355876695 -4468.0,0.6117300150339704 -4469.0,0.6115187674552017 -4470.0,0.6113075928261632 -4471.0,0.6110964911216633 -4472.0,0.6108854623165191 -4473.0,0.6106745063855563 -4474.0,0.6104636233036096 -4475.0,0.6102528130455219 -4476.0,0.6100420755861454 -4477.0,0.6098314109003404 -4478.0,0.6096208189629764 -4479.0,0.609410299748931 -4480.0,0.609199853233091 -4481.0,0.6089894793903515 -4482.0,0.6087791781956167 -4483.0,0.608568949623799 -4484.0,0.6083587936498197 -4485.0,0.6081487102486088 -4486.0,0.6079386993951048 -4487.0,0.6077287610642549 -4488.0,0.6075188952310151 -4489.0,0.6073091018703498 -4490.0,0.6070993809572324 -4491.0,0.6068897324666445 -4492.0,0.6066801563735766 -4493.0,0.606470652653028 -4494.0,0.6062612212800061 -4495.0,0.6060518622295277 -4496.0,0.6058425754766174 -4497.0,0.6056333609963088 -4498.0,0.6054242187636445 -4499.0,0.6052151487536751 -4500.0,0.6050061509414602 -4501.0,0.6047972253020677 -4502.0,0.6045883718105743 -4503.0,0.6043795904420656 -4504.0,0.6041708811716352 -4505.0,0.6039622439743858 -4506.0,0.6037536788254283 -4507.0,0.6035451856998827 -4508.0,0.603336764572877 -4509.0,0.6031284154195482 -4510.0,0.6029201382150416 -4511.0,0.6027119329345116 -4512.0,0.6025037995531206 -4513.0,0.6022957380460399 -4514.0,0.602087748388449 -4515.0,0.6018798305555366 -4516.0,0.6016719845224995 -4517.0,0.6014642102645431 -4518.0,0.6012565077568816 -4519.0,0.6010488769747374 -4520.0,0.6008413178933418 -4521.0,0.6006338304879346 -4522.0,0.6004264147337638 -4523.0,0.6002190706060865 -4524.0,0.6000117980801679 -4525.0,0.5998045971312819 -4526.0,0.599597467734711 -4527.0,0.5993904098657461 -4528.0,0.5991834234996868 -4529.0,0.598976508611841 -4530.0,0.5987696651775254 -4531.0,0.598562893172065 -4532.0,0.5983561925707935 -4533.0,0.5981495633490529 -4534.0,0.5979430054821939 -4535.0,0.5977365189455758 -4536.0,0.5975301037145659 -4537.0,0.5973237597645407 -4538.0,0.5971174870708847 -4539.0,0.5969112856089912 -4540.0,0.5967051553542618 -4541.0,0.5964990962821065 -4542.0,0.5962931083679442 -4543.0,0.596087191587202 -4544.0,0.5958813459153156 -4545.0,0.5956755713277289 -4546.0,0.5954698677998945 -4547.0,0.5952642353072737 -4548.0,0.5950586738253358 -4549.0,0.5948531833295589 -4550.0,0.5946477637954296 -4551.0,0.5944424151984428 -4552.0,0.5942371375141018 -4553.0,0.5940319307179185 -4554.0,0.5938267947854132 -4555.0,0.5936217296921148 -4556.0,0.5934167354135604 -4557.0,0.5932118119252958 -4558.0,0.593006959202875 -4559.0,0.5928021772218608 -4560.0,0.5925974659578238 -4561.0,0.5923928253863437 -4562.0,0.5921882554830085 -4563.0,0.5919837562234141 -4564.0,0.5917793275831658 -4565.0,0.5915749695378761 -4566.0,0.5913706820631671 -4567.0,0.5911664651346685 -4568.0,0.5909623187280189 -4569.0,0.5907582428188649 -4570.0,0.590554237382862 -4571.0,0.5903503023956735 -4572.0,0.5901464378329717 -4573.0,0.589942643670437 -4574.0,0.5897389198837583 -4575.0,0.5895352664486327 -4576.0,0.5893316833407659 -4577.0,0.589128170535872 -4578.0,0.5889247280096732 -4579.0,0.5887213557379003 -4580.0,0.5885180536962927 -4581.0,0.5883148218605979 -4582.0,0.5881116602065717 -4583.0,0.5879085687099784 -4584.0,0.5877055473465909 -4585.0,0.5875025960921898 -4586.0,0.5872997149225648 -4587.0,0.5870969038135136 -4588.0,0.5868941627408424 -4589.0,0.5866914916803656 -4590.0,0.5864888906079059 -4591.0,0.5862863594992945 -4592.0,0.5860838983303711 -4593.0,0.5858815070769835 -4594.0,0.5856791857149877 -4595.0,0.5854769342202484 -4596.0,0.5852747525686385 -4597.0,0.5850726407360392 -4598.0,0.5848705986983398 -4599.0,0.5846686264314385 -4600.0,0.5844667239112412 -4601.0,0.5842648911136626 -4602.0,0.5840631280146255 -4603.0,0.5838614345900608 -4604.0,0.5836598108159082 -4605.0,0.5834582566681155 -4606.0,0.5832567721226385 -4607.0,0.5830553571554418 -4608.0,0.5828540117424978 -4609.0,0.5826527358597878 -4610.0,0.5824515294833008 -4611.0,0.5822503925890344 -4612.0,0.5820493251529945 -4613.0,0.5818483271511952 -4614.0,0.5816473985596589 -4615.0,0.5814465393544161 -4616.0,0.581245749511506 -4617.0,0.5810450290069757 -4618.0,0.5808443778168809 -4619.0,0.5806437959172852 -4620.0,0.5804432832842608 -4621.0,0.5802428398938877 -4622.0,0.5800424657222548 -4623.0,0.5798421607454587 -4624.0,0.5796419249396046 -4625.0,0.5794417582808058 -4626.0,0.5792416607451838 -4627.0,0.5790416323088685 -4628.0,0.578841672947998 -4629.0,0.5786417826387186 -4630.0,0.5784419613571847 -4631.0,0.5782422090795593 -4632.0,0.5780425257820131 -4633.0,0.5778429114407256 -4634.0,0.5776433660318843 -4635.0,0.5774438895316847 -4636.0,0.5772444819163307 -4637.0,0.5770451431620346 -4638.0,0.5768458732450167 -4639.0,0.5766466721415054 -4640.0,0.5764475398277377 -4641.0,0.5762484762799583 -4642.0,0.5760494814744206 -4643.0,0.5758505553873858 -4644.0,0.5756516979951236 -4645.0,0.5754529092739117 -4646.0,0.575254189200036 -4647.0,0.5750555377497908 -4648.0,0.5748569548994783 -4649.0,0.574658440625409 -4650.0,0.5744599949039018 -4651.0,0.5742616177112833 -4652.0,0.5740633090238886 -4653.0,0.573865068818061 -4654.0,0.573666897070152 -4655.0,0.5734687937565208 -4656.0,0.5732707588535355 -4657.0,0.5730727923375718 -4658.0,0.5728748941850138 -4659.0,0.5726770643722536 -4660.0,0.5724793028756917 -4661.0,0.5722816096717364 -4662.0,0.5720839847368044 -4663.0,0.5718864280473207 -4664.0,0.5716889395797179 -4665.0,0.5714915193104373 -4666.0,0.5712941672159281 -4667.0,0.5710968832726474 -4668.0,0.5708996674570609 -4669.0,0.570702519745642 -4670.0,0.5705054401148727 -4671.0,0.5703084285412425 -4672.0,0.5701114850012496 -4673.0,0.5699146094714 -4674.0,0.5697178019282078 -4675.0,0.5695210623481954 -4676.0,0.5693243907078933 -4677.0,0.5691277869838398 -4678.0,0.5689312511525816 -4679.0,0.5687347831906734 -4680.0,0.5685383830746779 -4681.0,0.5683420507811662 -4682.0,0.5681457862867172 -4683.0,0.5679495895679179 -4684.0,0.5677534606013636 -4685.0,0.5675573993636573 -4686.0,0.5673614058314107 -4687.0,0.5671654799812429 -4688.0,0.5669696217897815 -4689.0,0.566773831233662 -4690.0,0.566578108289528 -4691.0,0.5663824529340313 -4692.0,0.5661868651438315 -4693.0,0.5659913448955964 -4694.0,0.565795892166002 -4695.0,0.5656005069317321 -4696.0,0.5654051891694788 -4697.0,0.565209938855942 -4698.0,0.5650147559678296 -4699.0,0.564819640481858 -4700.0,0.5646245923747512 -4701.0,0.5644296116232415 -4702.0,0.5642346982040689 -4703.0,0.5640398520939818 -4704.0,0.5638450732697364 -4705.0,0.5636503617080971 -4706.0,0.5634557173858363 -4707.0,0.5632611402797342 -4708.0,0.5630666303665791 -4709.0,0.5628721876231676 -4710.0,0.562677812026304 -4711.0,0.5624835035528007 -4712.0,0.562289262179478 -4713.0,0.5620950878831645 -4714.0,0.5619009806406967 -4715.0,0.5617069404289188 -4716.0,0.5615129672246834 -4717.0,0.5613190610048506 -4718.0,0.5611252217462892 -4719.0,0.5609314494258753 -4720.0,0.5607377440204934 -4721.0,0.5605441055070359 -4722.0,0.560350533862403 -4723.0,0.5601570290635032 -4724.0,0.5599635910872526 -4725.0,0.5597702199105755 -4726.0,0.5595769155104042 -4727.0,0.5593836778636788 -4728.0,0.5591905069473476 -4729.0,0.5589974027383667 -4730.0,0.5588043652137 -4731.0,0.5586113943503196 -4732.0,0.5584184901252056 -4733.0,0.558225652515346 -4734.0,0.5580328814977363 -4735.0,0.5578401770493807 -4736.0,0.5576475391472908 -4737.0,0.5574549677684864 -4738.0,0.5572624628899949 -4739.0,0.5570700244888521 -4740.0,0.5568776525421015 -4741.0,0.5566853470267945 -4742.0,0.5564931079199903 -4743.0,0.5563009351987563 -4744.0,0.5561088288401679 -4745.0,0.5559167888213078 -4746.0,0.5557248151192673 -4747.0,0.5555329077111453 -4748.0,0.5553410665740486 -4749.0,0.555149291685092 -4750.0,0.554957583021398 -4751.0,0.5547659405600973 -4752.0,0.5545743642783285 -4753.0,0.5543828541532376 -4754.0,0.5541914101619791 -4755.0,0.554000032281715 -4756.0,0.5538087204896154 -4757.0,0.5536174747628582 -4758.0,0.553426295078629 -4759.0,0.5532351814141216 -4760.0,0.5530441337465376 -4761.0,0.5528531520530863 -4762.0,0.552662236310985 -4763.0,0.5524713864974589 -4764.0,0.5522806025897409 -4765.0,0.5520898845650719 -4766.0,0.5518992324007007 -4767.0,0.5517086460738839 -4768.0,0.5515181255618858 -4769.0,0.5513276708419789 -4770.0,0.5511372818914431 -4771.0,0.5509469586875665 -4772.0,0.550756701207645 -4773.0,0.5505665094289822 -4774.0,0.5503763833288896 -4775.0,0.5501863228846866 -4776.0,0.5499963280737002 -4777.0,0.5498063988732657 -4778.0,0.5496165352607257 -4779.0,0.5494267372134309 -4780.0,0.5492370047087398 -4781.0,0.5490473377240187 -4782.0,0.5488577362366418 -4783.0,0.5486682002239908 -4784.0,0.5484787296634556 -4785.0,0.5482893245324337 -4786.0,0.5480999848083306 -4787.0,0.5479107104685591 -4788.0,0.5477215014905404 -4789.0,0.5475323578517033 -4790.0,0.5473432795294843 -4791.0,0.5471542665013275 -4792.0,0.5469653187446853 -4793.0,0.5467764362370175 -4794.0,0.5465876189557919 -4795.0,0.5463988668784839 -4796.0,0.5462101799825767 -4797.0,0.5460215582455613 -4798.0,0.5458330016449368 -4799.0,0.5456445101582093 -4800.0,0.5454560837628935 -4801.0,0.5452677224365113 -4802.0,0.5450794261565928 -4803.0,0.5448911949006754 -4804.0,0.5447030286463046 -4805.0,0.5445149273710335 -4806.0,0.544326891052423 -4807.0,0.5441389196680417 -4808.0,0.543951013195466 -4809.0,0.5437631716122802 -4810.0,0.5435753948960759 -4811.0,0.5433876830244528 -4812.0,0.5432000359750183 -4813.0,0.5430124537253875 -4814.0,0.5428249362531832 -4815.0,0.5426374835360357 -4816.0,0.5424500955515835 -4817.0,0.5422627722774725 -4818.0,0.5420755136913565 -4819.0,0.5418883197708968 -4820.0,0.5417011904937626 -4821.0,0.5415141258376307 -4822.0,0.5413271257801856 -4823.0,0.5411401902991196 -4824.0,0.5409533193721326 -4825.0,0.5407665129769326 -4826.0,0.5405797710912343 -4827.0,0.5403930936927615 -4828.0,0.5402064807592444 -4829.0,0.5400199322684217 -4830.0,0.5398334481980395 -4831.0,0.5396470285258516 -4832.0,0.5394606732296193 -4833.0,0.539274382287112 -4834.0,0.5390881556761065 -4835.0,0.5389019933743873 -4836.0,0.5387158953597466 -4837.0,0.5385298616099843 -4838.0,0.5383438921029078 -4839.0,0.5381579868163324 -4840.0,0.5379721457280809 -4841.0,0.5377863688159841 -4842.0,0.5376006560578797 -4843.0,0.5374150074316137 -4844.0,0.5372294229150398 -4845.0,0.5370439024860187 -4846.0,0.5368584461224196 -4847.0,0.5366730538021187 -4848.0,0.5364877255030001 -4849.0,0.5363024612029553 -4850.0,0.5361172608798839 -4851.0,0.5359321245116926 -4852.0,0.5357470520762961 -4853.0,0.5355620435516166 -4854.0,0.535377098915584 -4855.0,0.5351922181461357 -4856.0,0.5350074012212168 -4857.0,0.5348226481187799 -4858.0,0.5346379588167853 -4859.0,0.534453333293201 -4860.0,0.5342687715260025 -4861.0,0.534084273493173 -4862.0,0.533899839172703 -4863.0,0.533715468542591 -4864.0,0.5335311615808429 -4865.0,0.5333469182654723 -4866.0,0.5331627385745001 -4867.0,0.5329786224859553 -4868.0,0.532794569977874 -4869.0,0.5326105810283002 -4870.0,0.5324266556152851 -4871.0,0.532242793716888 -4872.0,0.5320589953111754 -4873.0,0.5318752603762216 -4874.0,0.5316915888901083 -4875.0,0.5315079808309247 -4876.0,0.5313244361767678 -4877.0,0.5311409549057422 -4878.0,0.5309575369959598 -4879.0,0.5307741824255401 -4880.0,0.5305908911726104 -4881.0,0.5304076632153052 -4882.0,0.5302244985317668 -4883.0,0.5300413971001451 -4884.0,0.5298583588985974 -4885.0,0.5296753839052886 -4886.0,0.529492472098391 -4887.0,0.5293096234560846 -4888.0,0.5291268379565569 -4889.0,0.5289441155780029 -4890.0,0.5287614562986253 -4891.0,0.528578860096634 -4892.0,0.5283963269502466 -4893.0,0.5282138568376884 -4894.0,0.528031449737192 -4895.0,0.5278491056269974 -4896.0,0.5276668244853523 -4897.0,0.5274846062905121 -4898.0,0.5273024510207394 -4899.0,0.5271203586543042 -4900.0,0.5269383291694845 -4901.0,0.5267563625445653 -4902.0,0.5265744587578395 -4903.0,0.5263926177876072 -4904.0,0.526210839612176 -4905.0,0.5260291242098613 -4906.0,0.5258474715589856 -4907.0,0.5256658816378791 -4908.0,0.5254843544248795 -4909.0,0.525302889898332 -4910.0,0.525121488036589 -4911.0,0.5249401488180108 -4912.0,0.5247588722209647 -4913.0,0.524577658223826 -4914.0,0.524396506804977 -4915.0,0.5242154179428077 -4916.0,0.5240343916157155 -4917.0,0.5238534278021054 -4918.0,0.5236725264803896 -4919.0,0.523491687628988 -4920.0,0.5233109112263277 -4921.0,0.5231301972508434 -4922.0,0.5229495456809775 -4923.0,0.5227689564951793 -4924.0,0.522588429671906 -4925.0,0.522407965189622 -4926.0,0.5222275630267991 -4927.0,0.5220472231619169 -4928.0,0.5218669455734618 -4929.0,0.5216867302399284 -4930.0,0.521506577139818 -4931.0,0.5213264862516398 -4932.0,0.5211464575539103 -4933.0,0.5209664910251532 -4934.0,0.5207865866439001 -4935.0,0.5206067443886895 -4936.0,0.5204269642380676 -4937.0,0.5202472461705879 -4938.0,0.5200675901648114 -4939.0,0.5198879961993064 -4940.0,0.5197084642526486 -4941.0,0.5195289943034214 -4942.0,0.519349586330215 -4943.0,0.5191702403116276 -4944.0,0.5189909562262643 -4945.0,0.5188117340527382 -4946.0,0.5186325737696689 -4947.0,0.5184534753556842 -4948.0,0.5182744387894189 -4949.0,0.5180954640495153 -4950.0,0.5179165511146229 -4951.0,0.5177376999633988 -4952.0,0.5175589105745072 -4953.0,0.51738018292662 -4954.0,0.5172015169984163 -4955.0,0.5170229127685825 -4956.0,0.5168443702158123 -4957.0,0.516665889318807 -4958.0,0.516487470056275 -4959.0,0.5163091124069326 -4960.0,0.5161308163495025 -4961.0,0.5159525818627156 -4962.0,0.5157744089253097 -4963.0,0.5155962975160302 -4964.0,0.5154182476136295 -4965.0,0.5152402591968677 -4966.0,0.515062332244512 -4967.0,0.514884466735337 -4968.0,0.5147066626481249 -4969.0,0.5145289199616646 -4970.0,0.5143512386547529 -4971.0,0.5141736187061936 -4972.0,0.513996060094798 -4973.0,0.5138185627993848 -4974.0,0.5136411267987796 -4975.0,0.5134637520718157 -4976.0,0.5132864385973337 -4977.0,0.5131091863541811 -4978.0,0.5129319953212133 -4979.0,0.5127548654772925 -4980.0,0.5125777968012887 -4981.0,0.5124007892720784 -4982.0,0.5122238428685464 -4983.0,0.512046957569584 -4984.0,0.5118701333540902 -4985.0,0.5116933702009709 -4986.0,0.5115166680891399 -4987.0,0.5113400269975177 -4988.0,0.5111634469050325 -4989.0,0.5109869277906193 -4990.0,0.5108104696332209 -4991.0,0.5106340724117869 -4992.0,0.5104577361052747 -4993.0,0.5102814606926485 -4994.0,0.5101052461528798 -4995.0,0.5099290924649477 -4996.0,0.5097529996078383 -4997.0,0.5095769675605448 -4998.0,0.5094009963020683 -4999.0,0.5092250858114162 -5000.0,0.5090492360676041 -5001.0,0.5088734470496542 -5002.0,0.5086977187365961 -5003.0,0.5085220511074668 -5004.0,0.5083464441413104 -5005.0,0.5081708978171783 -5006.0,0.5079954121141289 -5007.0,0.5078199870112283 -5008.0,0.5076446224875496 -5009.0,0.5074693185221728 -5010.0,0.5072940750941857 -5011.0,0.5071188921826828 -5012.0,0.5069437697667663 -5013.0,0.5067687078255451 -5014.0,0.5065937063381357 -5015.0,0.5064187652836618 -5016.0,0.506243884641254 -5017.0,0.5060690643900506 -5018.0,0.5058943045091967 -5019.0,0.5057196049778446 -5020.0,0.5055449657751541 -5021.0,0.5053703868802918 -5022.0,0.5051958682724319 -5023.0,0.5050214099307555 -5024.0,0.5048470118344511 -5025.0,0.5046726739627142 -5026.0,0.5044983962947475 -5027.0,0.504324178809761 -5028.0,0.504150021486972 -5029.0,0.5039759243056045 -5030.0,0.5038018872448901 -5031.0,0.5036279102840675 -5032.0,0.5034539934023825 -5033.0,0.503280136579088 -5034.0,0.5031063397934442 -5035.0,0.5029326030247185 -5036.0,0.5027589262521853 -5037.0,0.5025853094551263 -5038.0,0.50241175261283 -5039.0,0.5022382557045927 -5040.0,0.5020648187097172 -5041.0,0.501891441607514 -5042.0,0.5017181243773002 -5043.0,0.5015448669984005 -5044.0,0.5013716694501464 -5045.0,0.501198531711877 -5046.0,0.501025453762938 -5047.0,0.5008524355826823 -5048.0,0.5006794771504705 -5049.0,0.5005065784456695 -5050.0,0.5003337394476541 -5051.0,0.5001609601358057 -5052.0,0.499988240489513 -5053.0,0.49981558048817176 -5054.0,0.49964298011118496 -5055.0,0.49947043933796265 -5056.0,0.499297958147922 -5057.0,0.49912553652048713 -5058.0,0.4989531744350895 -5059.0,0.4987808718711676 -5060.0,0.4986086288081669 -5061.0,0.49843644522554015 -5062.0,0.498264321102747 -5063.0,0.4980922564192543 -5064.0,0.49792025115453614 -5065.0,0.49774830528807334 -5066.0,0.4975764187993542 -5067.0,0.49740459166787376 -5068.0,0.49723282387313444 -5069.0,0.4970611153946455 -5070.0,0.4968894662119233 -5071.0,0.49671787630449155 -5072.0,0.4965463456518806 -5073.0,0.4963748742336283 -5074.0,0.49620346202927923 -5075.0,0.4960321090183852 -5076.0,0.49586081518050507 -5077.0,0.4956895804952047 -5078.0,0.49551840494205696 -5079.0,0.495347288500642 -5080.0,0.4951762311505469 -5081.0,0.4950052328713656 -5082.0,0.4948342936426993 -5083.0,0.4946634134441563 -5084.0,0.4944925922553518 -5085.0,0.49432183005590796 -5086.0,0.49415112682545426 -5087.0,0.4939804825436269 -5088.0,0.4938098971900694 -5089.0,0.4936393707444321 -5090.0,0.4934689031863724 -5091.0,0.49329849449555474 -5092.0,0.4931281446516508 -5093.0,0.4929578536343389 -5094.0,0.4927876214233046 -5095.0,0.49261744799824053 -5096.0,0.49244733333884616 -5097.0,0.492277277424828 -5098.0,0.4921072802358997 -5099.0,0.4919373417517819 -5100.0,0.491767461952202 -5101.0,0.4915976408168947 -5102.0,0.4914278783256016 -5103.0,0.49125817445807113 -5104.0,0.491088529194059 -5105.0,0.49091894251332774 -5106.0,0.49074941439564684 -5107.0,0.4905799448207928 -5108.0,0.4904105337685493 -5109.0,0.4902411812187067 -5110.0,0.4900718871510624 -5111.0,0.4899026515454211 -5112.0,0.4897334743815941 -5113.0,0.4895643556393997 -5114.0,0.4893952952986634 -5115.0,0.48922629333921747 -5116.0,0.48905734974090126 -5117.0,0.48888846448356094 -5118.0,0.48871963754704983 -5119.0,0.48855086891122806 -5120.0,0.4883821585559628 -5121.0,0.48821350646112804 -5122.0,0.4880449126066049 -5123.0,0.4878763769722813 -5124.0,0.48770789953805227 -5125.0,0.48753948028381955 -5126.0,0.48737111918949205 -5127.0,0.4872028162349855 -5128.0,0.4870345714002226 -5129.0,0.4868663846651328 -5130.0,0.48669825600965294 -5131.0,0.4865301854137263 -5132.0,0.48636217285730327 -5133.0,0.4861942183203413 -5134.0,0.4860263217828046 -5135.0,0.48585848322466424 -5136.0,0.4856907026258984 -5137.0,0.4855229799664921 -5138.0,0.48535531522643716 -5139.0,0.48518770838573244 -5140.0,0.48502015942438365 -5141.0,0.4848526683224035 -5142.0,0.48468523505981137 -5143.0,0.48451785961663385 -5144.0,0.4843505419729042 -5145.0,0.4841832821086626 -5146.0,0.4840160800039563 -5147.0,0.4838489356388392 -5148.0,0.48368184899337213 -5149.0,0.48351482004762303 -5150.0,0.4833478487816665 -5151.0,0.4831809351755841 -5152.0,0.48301407920946415 -5153.0,0.4828472808634021 -5154.0,0.4826805401175001 -5155.0,0.4825138569518671 -5156.0,0.48234723134661905 -5157.0,0.4821806632818788 -5158.0,0.4820141527377759 -5159.0,0.48184769969444696 -5160.0,0.48168130413203525 -5161.0,0.481514966030691 -5162.0,0.48134868537057135 -5163.0,0.4811824621318401 -5164.0,0.48101629629466824 -5165.0,0.4808501878392332 -5166.0,0.48068413674571964 -5167.0,0.4805181429943186 -5168.0,0.48035220656522853 -5169.0,0.48018632743865425 -5170.0,0.4800205055948077 -5171.0,0.4798547410139074 -5172.0,0.479689033676179 -5173.0,0.4795233835618547 -5174.0,0.4793577906511737 -5175.0,0.47919225492438194 -5176.0,0.4790267763617323 -5177.0,0.4788613549434843 -5178.0,0.4786959906499044 -5179.0,0.4785306834612659 -5180.0,0.4783654333578488 -5181.0,0.47820024031993996 -5182.0,0.47803510432783314 -5183.0,0.4778700253618287 -5184.0,0.477705003402234 -5185.0,0.47754003842936305 -5186.0,0.4773751304235368 -5187.0,0.4772102793650829 -5188.0,0.4770454852343359 -5189.0,0.47688074801163693 -5190.0,0.4767160676773341 -5191.0,0.4765514442117823 -5192.0,0.4763868775953431 -5193.0,0.47622236780838484 -5194.0,0.47605791483128285 -5195.0,0.4758935186444189 -5196.0,0.4757291792281819 -5197.0,0.4755648965629673 -5198.0,0.47540067062917735 -5199.0,0.47523650140722107 -5200.0,0.47507238887751435 -5201.0,0.4749083330204797 -5202.0,0.4747443338165464 -5203.0,0.4745803912461507 -5204.0,0.4744165052897353 -5205.0,0.47425267592774983 -5206.0,0.4740889031406507 -5207.0,0.473925186908901 -5208.0,0.47376152721297055 -5209.0,0.4735979240333359 -5210.0,0.47343437735048044 -5211.0,0.4732708871448943 -5212.0,0.47310745339707416 -5213.0,0.47294407608752365 -5214.0,0.472780755196753 -5215.0,0.4726174907052793 -5216.0,0.4724542825936262 -5217.0,0.4722911308423242 -5218.0,0.47212803543191045 -5219.0,0.47196499634292893 -5220.0,0.4718020135559302 -5221.0,0.4716390870514716 -5222.0,0.47147621681011725 -5223.0,0.4713134028124379 -5224.0,0.4711506450390109 -5225.0,0.4709879434704206 -5226.0,0.47082529808725787 -5227.0,0.4706627088701202 -5228.0,0.47050017579961195 -5229.0,0.47033769885634413 -5230.0,0.4701752780209344 -5231.0,0.4700129132740071 -5232.0,0.4698506045961934 -5233.0,0.4696883519681309 -5234.0,0.4695261553704642 -5235.0,0.4693640147838444 -5236.0,0.4692019301889292 -5237.0,0.4690399015663832 -5238.0,0.46887792889687757 -5239.0,0.46871601216109005 -5240.0,0.46855415133970524 -5241.0,0.4683923464134143 -5242.0,0.4682305973629151 -5243.0,0.46806890416891206 -5244.0,0.46790726681211653 -5245.0,0.4677456852732463 -5246.0,0.46758415953302573 -5247.0,0.46742268957218613 -5248.0,0.4672612753714653 -5249.0,0.4670999169116076 -5250.0,0.4669386141733643 -5251.0,0.466777367137493 -5252.0,0.46661617578475817 -5253.0,0.4664550400959309 -5254.0,0.4662939600517888 -5255.0,0.46613293563311625 -5256.0,0.4659719668207042 -5257.0,0.46581105359535024 -5258.0,0.46565019593785856 -5259.0,0.4654893938290401 -5260.0,0.46532864724971224 -5261.0,0.4651679561806991 -5262.0,0.46500732060283145 -5263.0,0.4648467404969467 -5264.0,0.4646862158438887 -5265.0,0.4645257466245081 -5266.0,0.464365332819662 -5267.0,0.4642049744102143 -5268.0,0.4640446713770354 -5269.0,0.46388442370100225 -5270.0,0.46372423136299856 -5271.0,0.4635640943439145 -5272.0,0.46340401262464687 -5273.0,0.46324398618609913 -5274.0,0.4630840150091813 -5275.0,0.4629240990748099 -5276.0,0.46276423836390823 -5277.0,0.46260443285740604 -5278.0,0.46244468253623966 -5279.0,0.4622849873813521 -5280.0,0.4621253473736928 -5281.0,0.46196576249421795 -5282.0,0.46180623272389026 -5283.0,0.46164675804367894 -5284.0,0.46148733843455986 -5285.0,0.4613279738775154 -5286.0,0.4611686643535345 -5287.0,0.4610094098436127 -5288.0,0.4608502103287522 -5289.0,0.46069106578996155 -5290.0,0.460531976208256 -5291.0,0.4603729415646573 -5292.0,0.4602139618401938 -5293.0,0.4600550370159004 -5294.0,0.4598961670728185 -5295.0,0.45973735199199606 -5296.0,0.4595785917544876 -5297.0,0.4594198863413542 -5298.0,0.4592612357336635 -5299.0,0.4591026399124896 -5300.0,0.45894409885891313 -5301.0,0.45878561255402134 -5302.0,0.45862718097890803 -5303.0,0.4584688041146734 -5304.0,0.4583104819424242 -5305.0,0.45815221444327386 -5306.0,0.45799400159834214 -5307.0,0.45783584338875544 -5308.0,0.4576777397956466 -5309.0,0.45751969080015503 -5310.0,0.45736169638342666 -5311.0,0.45720375652661394 -5312.0,0.4570458712108757 -5313.0,0.45688804041737746 -5314.0,0.45673026412729106 -5315.0,0.45657254232179506 -5316.0,0.4564148749820743 -5317.0,0.45625726208932027 -5318.0,0.4560997036247309 -5319.0,0.45594219956951054 -5320.0,0.45578474990487017 -5321.0,0.45562735461202725 -5322.0,0.4554700136722056 -5323.0,0.45531272706663556 -5324.0,0.45515549477655404 -5325.0,0.4549983167832044 -5326.0,0.4548411930678364 -5327.0,0.4546841236117063 -5328.0,0.45452710839607685 -5329.0,0.45437014740221743 -5330.0,0.45421324061140356 -5331.0,0.4540563880049175 -5332.0,0.45389958956404786 -5333.0,0.45374284527008973 -5334.0,0.45358615510434463 -5335.0,0.4534295190481206 -5336.0,0.45327293708273214 -5337.0,0.4531164091895 -5338.0,0.4529599353497517 -5339.0,0.45280351554482107 -5340.0,0.45264714975604825 -5341.0,0.45249083796478 -5342.0,0.4523345801523695 -5343.0,0.45217837630017627 -5344.0,0.4520222263895663 -5345.0,0.45186613040191215 -5346.0,0.45171008831859266 -5347.0,0.4515541001209931 -5348.0,0.4513981657905053 -5349.0,0.4512422853085274 -5350.0,0.4510864586564639 -5351.0,0.450930685815726 -5352.0,0.45077496676773093 -5353.0,0.4506193014939027 -5354.0,0.45046368997567154 -5355.0,0.4503081321944741 -5356.0,0.4501526281317535 -5357.0,0.44999717776895914 -5358.0,0.4498417810875471 -5359.0,0.44968643806897957 -5360.0,0.44953114869472527 -5361.0,0.4493759129462594 -5362.0,0.4492207308050633 -5363.0,0.44906560225262504 -5364.0,0.44891052727043884 -5365.0,0.4487555058400054 -5366.0,0.4486005379428317 -5367.0,0.4484456235604314 -5368.0,0.44829076267432416 -5369.0,0.4481359552660363 -5370.0,0.44798120131710034 -5371.0,0.4478265008090554 -5372.0,0.4476718537234467 -5373.0,0.447517260041826 -5374.0,0.44736271974575154 -5375.0,0.44720823281678757 -5376.0,0.447053799236505 -5377.0,0.44689941898648117 -5378.0,0.4467450920482995 -5379.0,0.4465908184035499 -5380.0,0.4464365980338288 -5381.0,0.44628243092073866 -5382.0,0.4461283170458885 -5383.0,0.4459742563908938 -5384.0,0.44582024893737604 -5385.0,0.4456662946669634 -5386.0,0.44551239356129024 -5387.0,0.4453585456019972 -5388.0,0.44520475077073146 -5389.0,0.4450510090491463 -5390.0,0.4448973204189015 -5391.0,0.44474368486166316 -5392.0,0.4445901023591037 -5393.0,0.4444365728929017 -5394.0,0.44428309644474234 -5395.0,0.444129672996317 -5396.0,0.44397630252932335 -5397.0,0.4438229850254654 -5398.0,0.44366972046645353 -5399.0,0.44351650883400434 -5400.0,0.44336335010984085 -5401.0,0.4432102442756923 -5402.0,0.4430571913132943 -5403.0,0.4429041912043888 -5404.0,0.4427512439307239 -5405.0,0.4425983494740542 -5406.0,0.4424455078161404 -5407.0,0.4422927189387497 -5408.0,0.44213998282365546 -5409.0,0.4419872994526374 -5410.0,0.4418346688074815 -5411.0,0.44168209086998 -5412.0,0.4415295656219315 -5413.0,0.4413770930451408 -5414.0,0.4412246731214191 -5415.0,0.44107230583258383 -5416.0,0.4409199911604586 -5417.0,0.44076772908687345 -5418.0,0.4406155195936646 -5419.0,0.44046336266267455 -5420.0,0.4403112582757521 -5421.0,0.4401592064147523 -5422.0,0.4400072070615365 -5423.0,0.4398552601979723 -5424.0,0.43970336580593344 -5425.0,0.4395515238673002 -5426.0,0.43939973436395874 -5427.0,0.4392479972778018 -5428.0,0.4390963125907283 -5429.0,0.4389446802846432 -5430.0,0.438793100341458 -5431.0,0.43864157274309035 -5432.0,0.43849009747146395 -5433.0,0.43833867450850905 -5434.0,0.43818730383616195 -5435.0,0.43803598543636524 -5436.0,0.4378847192910677 -5437.0,0.43773350538222444 -5438.0,0.4375823436917967 -5439.0,0.437431234201752 -5440.0,0.4372801768940641 -5441.0,0.437129171750713 -5442.0,0.43697821875368476 -5443.0,0.43682731788497187 -5444.0,0.436676469126573 -5445.0,0.4365256724604929 -5446.0,0.43637492786874266 -5447.0,0.4362242353333396 -5448.0,0.43607359483630714 -5449.0,0.435923006359675 -5450.0,0.4357724698854791 -5451.0,0.43562198539576136 -5452.0,0.43547155287257033 -5453.0,0.43532117229796036 -5454.0,0.4351708436539922 -5455.0,0.4350205669227327 -5456.0,0.43487034208625497 -5457.0,0.43472016912663825 -5458.0,0.43457004802596805 -5459.0,0.434419978766336 -5460.0,0.43426996132983986 -5461.0,0.4341199956985837 -5462.0,0.4339700818546778 -5463.0,0.4338202197802383 -5464.0,0.43367040945738805 -5465.0,0.43352065086825553 -5466.0,0.4333709439949757 -5467.0,0.4332212888196897 -5468.0,0.43307168532454465 -5469.0,0.432922133491694 -5470.0,0.4327726333032973 -5471.0,0.4326231847415203 -5472.0,0.4324737877885348 -5473.0,0.4323244424265189 -5474.0,0.4321751486376567 -5475.0,0.4320259064041387 -5476.0,0.4318767157081612 -5477.0,0.431727576531927 -5478.0,0.4315784888576448 -5479.0,0.4314294526675295 -5480.0,0.43128046794380226 -5481.0,0.43113153466869025 -5482.0,0.43098265282442677 -5483.0,0.4308338223932513 -5484.0,0.43068504335740954 -5485.0,0.4305363156991532 -5486.0,0.4303876394007401 -5487.0,0.4302390144444343 -5488.0,0.4300904408125059 -5489.0,0.4299419184872311 -5490.0,0.42979344745089243 -5491.0,0.4296450276857782 -5492.0,0.42949665917418317 -5493.0,0.4293483418984079 -5494.0,0.42920007584075937 -5495.0,0.4290518609835504 -5496.0,0.4289036973091001 -5497.0,0.42875558479973364 -5498.0,0.4286075234377822 -5499.0,0.42845951320558323 -5500.0,0.4283115540854801 -5501.0,0.42816364605982243 -5502.0,0.4280157891109659 -5503.0,0.4278679832212722 -5504.0,0.4277202283731091 -5505.0,0.42757252454885064 -5506.0,0.4274248717308768 -5507.0,0.4272772699015736 -5508.0,0.4271297190433333 -5509.0,0.42698221913855416 -5510.0,0.42683477016964055 -5511.0,0.42668737211900276 -5512.0,0.42654002496905735 -5513.0,0.4263927287022269 -5514.0,0.42624548330094003 -5515.0,0.4260982887476314 -5516.0,0.4259511450247418 -5517.0,0.42580405211471806 -5518.0,0.425657010000013 -5519.0,0.4255100186630857 -5520.0,0.42536307808640106 -5521.0,0.4252161882524302 -5522.0,0.4250693491436502 -5523.0,0.4249225607425442 -5524.0,0.4247758230316015 -5525.0,0.42462913599331725 -5526.0,0.42448249961019285 -5527.0,0.42433591386473557 -5528.0,0.42418937873945883 -5529.0,0.4240428942168821 -5530.0,0.4238964602795309 -5531.0,0.42375007690993655 -5532.0,0.42360374409063667 -5533.0,0.4234574618041749 -5534.0,0.42331123003310067 -5535.0,0.42316504875996974 -5536.0,0.42301891796734364 -5537.0,0.4228728376377901 -5538.0,0.4227268077538828 -5539.0,0.4225808282982014 -5540.0,0.4224348992533317 -5541.0,0.42228902060186535 -5542.0,0.4221431923264001 -5543.0,0.4219974144095397 -5544.0,0.4218516868338939 -5545.0,0.42170600958207854 -5546.0,0.42156038263671525 -5547.0,0.4214148059804319 -5548.0,0.42126927959586224 -5549.0,0.42112380346564604 -5550.0,0.420978377572429 -5551.0,0.4208330018988629 -5552.0,0.4206876764276056 -5553.0,0.42054240114132063 -5554.0,0.42039717602267784 -5555.0,0.4202520010543529 -5556.0,0.4201068762190275 -5557.0,0.4199618014993893 -5558.0,0.4198167768781319 -5559.0,0.419671802337955 -5560.0,0.4195268778615641 -5561.0,0.41938200343167087 -5562.0,0.4192371790309928 -5563.0,0.41909240464225334 -5564.0,0.418947680248182 -5565.0,0.41880300583151425 -5566.0,0.4186583813749915 -5567.0,0.418513806861361 -5568.0,0.4183692822733762 -5569.0,0.4182248075937963 -5570.0,0.41808038280538656 -5571.0,0.4179360078909181 -5572.0,0.4177916828331681 -5573.0,0.4176474076149196 -5574.0,0.41750318221896154 -5575.0,0.41735900662808906 -5576.0,0.41721488082510294 -5577.0,0.41707080479281006 -5578.0,0.41692677851402316 -5579.0,0.41678280197156103 -5580.0,0.4166388751482482 -5581.0,0.4164949980269154 -5582.0,0.41635117059039906 -5583.0,0.4162073928215416 -5584.0,0.41606366470319134 -5585.0,0.4159199862182027 -5586.0,0.4157763573494358 -5587.0,0.41563277807975674 -5588.0,0.4154892483920376 -5589.0,0.41534576826915637 -5590.0,0.4152023376939968 -5591.0,0.4150589566494488 -5592.0,0.41491562511840796 -5593.0,0.4147723430837759 -5594.0,0.4146291105284602 -5595.0,0.4144859274353741 -5596.0,0.41434279378743705 -5597.0,0.4141997095675742 -5598.0,0.41405667475871655 -5599.0,0.41391368934380124 -5600.0,0.41377075330577107 -5601.0,0.41362786662757484 -5602.0,0.41348502929216724 -5603.0,0.4133422412825087 -5604.0,0.41319950258156574 -5605.0,0.4130568131723107 -5606.0,0.41291417303772177 -5607.0,0.4127715821607829 -5608.0,0.41262904052448424 -5609.0,0.4124865481118214 -5610.0,0.41234410490579626 -5611.0,0.41220171088941626 -5612.0,0.4120593660456949 -5613.0,0.41191707035765135 -5614.0,0.411774823808311 -5615.0,0.41163262638070464 -5616.0,0.4114904780578693 -5617.0,0.4113483788228477 -5618.0,0.4112063286586884 -5619.0,0.41106432754844585 -5620.0,0.4109223754751804 -5621.0,0.4107804724219582 -5622.0,0.4106386183718511 -5623.0,0.4104968133079372 -5624.0,0.4103550572133 -5625.0,0.4102133500710291 -5626.0,0.4100716918642199 -5627.0,0.4099300825759735 -5628.0,0.4097885221893971 -5629.0,0.40964701068760345 -5630.0,0.4095055480537113 -5631.0,0.4093641342708452 -5632.0,0.4092227693221356 -5633.0,0.4090814531907185 -5634.0,0.408940185859736 -5635.0,0.408798967312336 -5636.0,0.40865779753167214 -5637.0,0.4085166765009038 -5638.0,0.4083756042031964 -5639.0,0.4082345806217209 -5640.0,0.40809360573965436 -5641.0,0.4079526795401794 -5642.0,0.40781180200648465 -5643.0,0.40767097312176437 -5644.0,0.4075301928692187 -5645.0,0.4073894612320536 -5646.0,0.4072487781934808 -5647.0,0.4071081437367179 -5648.0,0.40696755784498817 -5649.0,0.40682702050152075 -5650.0,0.4066865316895506 -5651.0,0.4065460913923184 -5652.0,0.4064056995930706 -5653.0,0.4062653562750595 -5654.0,0.40612506142154325 -5655.0,0.4059848150157856 -5656.0,0.40584461704105623 -5657.0,0.40570446748063055 -5658.0,0.4055643663177897 -5659.0,0.4054243135358206 -5660.0,0.405284309118016 -5661.0,0.4051443530476745 -5662.0,0.40500444530810026 -5663.0,0.4048645858826033 -5664.0,0.4047247747544995 -5665.0,0.40458501190711027 -5666.0,0.40444529732376305 -5667.0,0.4043056309877908 -5668.0,0.40416601288253245 -5669.0,0.4040264429913325 -5670.0,0.40388692129754133 -5671.0,0.40374744778451505 -5672.0,0.40360802243561533 -5673.0,0.40346864523420994 -5674.0,0.40332931616367207 -5675.0,0.4031900352073808 -5676.0,0.4030508023487209 -5677.0,0.402911617571083 -5678.0,0.4027724808578633 -5679.0,0.4026333921924638 -5680.0,0.4024943515582923 -5681.0,0.4023553589387622 -5682.0,0.4022164143172927 -5683.0,0.40207751767730876 -5684.0,0.401938669002241 -5685.0,0.4017998682755258 -5686.0,0.40166111548060524 -5687.0,0.401522410600927 -5688.0,0.4013837536199448 -5689.0,0.4012451445211178 -5690.0,0.40110658328791093 -5691.0,0.40096806990379485 -5692.0,0.4008296043522459 -5693.0,0.4006911866167462 -5694.0,0.40055281668078346 -5695.0,0.40041449452785116 -5696.0,0.40027622014144854 -5697.0,0.40013799350508045 -5698.0,0.39999981460225736 -5699.0,0.3998616834164957 -5700.0,0.39972359993131734 -5701.0,0.3995855641302499 -5702.0,0.39944757599682684 -5703.0,0.39930963551458704 -5704.0,0.3991717426670752 -5705.0,0.3990338974378419 -5706.0,0.398896099810443 -5707.0,0.3987583497684403 -5708.0,0.3986206472954013 -5709.0,0.39848299237489904 -5710.0,0.39834538499051225 -5711.0,0.3982078251258255 -5712.0,0.3980703127644288 -5713.0,0.3979328478899179 -5714.0,0.39779543048589433 -5715.0,0.39765806053596514 -5716.0,0.39752073802374316 -5717.0,0.3973834629328467 -5718.0,0.39724623524689995 -5719.0,0.39710905494953264 -5720.0,0.3969719220243801 -5721.0,0.39683483645508344 -5722.0,0.3966977982252893 -5723.0,0.39656080731865 -5724.0,0.3964238637188236 -5725.0,0.3962869674094737 -5726.0,0.3961501183742695 -5727.0,0.39601331659688604 -5728.0,0.3958765620610037 -5729.0,0.3957398547503088 -5730.0,0.3956031946484931 -5731.0,0.39546658173925403 -5732.0,0.3953300160062947 -5733.0,0.39519349743332377 -5734.0,0.3950570260040556 -5735.0,0.3949206017022102 -5736.0,0.394784224511513 -5737.0,0.3946478944156953 -5738.0,0.39451161139849394 -5739.0,0.3943753754436513 -5740.0,0.3942391865349154 -5741.0,0.39410304465603996 -5742.0,0.3939669497907842 -5743.0,0.39383090192291303 -5744.0,0.3936949010361969 -5745.0,0.39355894711441186 -5746.0,0.3934230401413397 -5747.0,0.39328718010076763 -5748.0,0.39315136697648856 -5749.0,0.39301560075230096 -5750.0,0.39287988141200897 -5751.0,0.3927442089394222 -5752.0,0.3926085833183559 -5753.0,0.39247300453263095 -5754.0,0.3923374725660738 -5755.0,0.39220198740251644 -5756.0,0.3920665490257965 -5757.0,0.39193115741975726 -5758.0,0.3917958125682473 -5759.0,0.3916605144551211 -5760.0,0.3915252630642386 -5761.0,0.3913900583794652 -5762.0,0.39125490038467203 -5763.0,0.39111978906373573 -5764.0,0.39098472440053844 -5765.0,0.390849706378968 -5766.0,0.3907147349829177 -5767.0,0.39057981019628646 -5768.0,0.3904449320029787 -5769.0,0.3903101003869045 -5770.0,0.3901753153319794 -5771.0,0.3900405768221245 -5772.0,0.38990588484126654 -5773.0,0.3897712393733377 -5774.0,0.3896366404022757 -5775.0,0.38950208791202395 -5776.0,0.38936758188653137 -5777.0,0.38923312230975227 -5778.0,0.3890987091656466 -5779.0,0.3889643424381799 -5780.0,0.3888300221113232 -5781.0,0.38869574816905306 -5782.0,0.3885615205953516 -5783.0,0.38842733937420637 -5784.0,0.3882932044896106 -5785.0,0.3881591159255629 -5786.0,0.3880250736660676 -5787.0,0.3878910776951343 -5788.0,0.3877571279967784 -5789.0,0.3876232245550206 -5790.0,0.38748936735388717 -5791.0,0.3873555563774099 -5792.0,0.3872217916096263 -5793.0,0.38708807303457893 -5794.0,0.38695440063631636 -5795.0,0.3868207743988924 -5796.0,0.3866871943063664 -5797.0,0.38655366034280314 -5798.0,0.3864201724922731 -5799.0,0.38628673073885217 -5800.0,0.38615333506662164 -5801.0,0.3860199854596684 -5802.0,0.38588668190208486 -5803.0,0.3857534243779688 -5804.0,0.3856202128714236 -5805.0,0.3854870473665582 -5806.0,0.38535392784748684 -5807.0,0.38522085429832925 -5808.0,0.38508782670321084 -5809.0,0.3849548450462624 -5810.0,0.38482190931162 -5811.0,0.38468901948342565 -5812.0,0.38455617554582633 -5813.0,0.3844233774829749 -5814.0,0.3842906252790294 -5815.0,0.3841579189181536 -5816.0,0.3840252583845164 -5817.0,0.38389264366229253 -5818.0,0.3837600747356619 -5819.0,0.3836275515888102 -5820.0,0.3834950742059281 -5821.0,0.3833626425712122 -5822.0,0.3832302566688644 -5823.0,0.38309791648309194 -5824.0,0.3829656219981076 -5825.0,0.38283337319812966 -5826.0,0.38270117006738175 -5827.0,0.382569012590093 -5828.0,0.3824369007504981 -5829.0,0.3823048345328369 -5830.0,0.382172813921355 -5831.0,0.3820408389003032 -5832.0,0.38190890945393796 -5833.0,0.381777025566521 -5834.0,0.3816451872223195 -5835.0,0.3815133944056061 -5836.0,0.38138164710065897 -5837.0,0.38124994529176154 -5838.0,0.38111828896320277 -5839.0,0.38098667809927705 -5840.0,0.38085511268428407 -5841.0,0.38072359270252915 -5842.0,0.38059211813832283 -5843.0,0.3804606889759812 -5844.0,0.3803293051998256 -5845.0,0.3801979667941831 -5846.0,0.3800666737433859 -5847.0,0.37993542603177166 -5848.0,0.3798042236436835 -5849.0,0.37967306656346994 -5850.0,0.3795419547754849 -5851.0,0.3794108882640877 -5852.0,0.3792798670136431 -5853.0,0.3791488910085211 -5854.0,0.3790179602330974 -5855.0,0.37888707467175275 -5856.0,0.37875623430887356 -5857.0,0.37862543912885144 -5858.0,0.3784946891160835 -5859.0,0.37836398425497236 -5860.0,0.3782333245299257 -5861.0,0.3781027099253568 -5862.0,0.37797214042568433 -5863.0,0.37784161601533234 -5864.0,0.37771113667873013 -5865.0,0.37758070240031255 -5866.0,0.37745031316451966 -5867.0,0.37731996895579706 -5868.0,0.3771896697585955 -5869.0,0.3770594155573714 -5870.0,0.37692920633658633 -5871.0,0.37679904208070725 -5872.0,0.3766689227742065 -5873.0,0.3765388484015618 -5874.0,0.3764088189472563 -5875.0,0.37627883439577836 -5876.0,0.3761488947316218 -5877.0,0.3760189999392857 -5878.0,0.3758891500032747 -5879.0,0.37575934490809854 -5880.0,0.3756295846382724 -5881.0,0.3754998691783169 -5882.0,0.37537019851275794 -5883.0,0.37524057262612664 -5884.0,0.3751109915029597 -5885.0,0.37498145512779896 -5886.0,0.37485196348519173 -5887.0,0.3747225165596906 -5888.0,0.37459311433585335 -5889.0,0.37446375679824345 -5890.0,0.3743344439314294 -5891.0,0.3742051757199851 -5892.0,0.3740759521484898 -5893.0,0.3739467732015281 -5894.0,0.37381763886368985 -5895.0,0.37368854911957033 -5896.0,0.37355950395377 -5897.0,0.3734305033508948 -5898.0,0.3733015472955558 -5899.0,0.37317263577236953 -5900.0,0.3730437687659578 -5901.0,0.3729149462609477 -5902.0,0.3727861682419716 -5903.0,0.3726574346936673 -5904.0,0.3725287456006778 -5905.0,0.3724001009476514 -5906.0,0.3722715007192417 -5907.0,0.37214294490010774 -5908.0,0.3720144334749137 -5909.0,0.3718859664283291 -5910.0,0.37175754374502873 -5911.0,0.37162916540969276 -5912.0,0.3715008314070065 -5913.0,0.37137254172166073 -5914.0,0.3712442963383514 -5915.0,0.3711160952417797 -5916.0,0.3709879384166523 -5917.0,0.3708598258476809 -5918.0,0.3707317575195827 -5919.0,0.37060373341708003 -5920.0,0.3704757535249006 -5921.0,0.3703478178277772 -5922.0,0.37021992631044826 -5923.0,0.37009207895765706 -5924.0,0.36996427575415247 -5925.0,0.36983651668468837 -5926.0,0.36970880173402415 -5927.0,0.3695811308869243 -5928.0,0.36945350412815864 -5929.0,0.36932592144250226 -5930.0,0.3691983828147354 -5931.0,0.3690708882296437 -5932.0,0.36894343767201787 -5933.0,0.3688160311266541 -5934.0,0.3686886685783537 -5935.0,0.3685613500119232 -5936.0,0.3684340754121745 -5937.0,0.36830684476392456 -5938.0,0.3681796580519958 -5939.0,0.3680525152612157 -5940.0,0.3679254163764171 -5941.0,0.367798361382438 -5942.0,0.3676713502641217 -5943.0,0.3675443830063166 -5944.0,0.3674174595938766 -5945.0,0.3672905800116605 -5946.0,0.3671637442445326 -5947.0,0.3670369522773622 -5948.0,0.3669102040950241 -5949.0,0.36678349968239804 -5950.0,0.36665683902436924 -5951.0,0.3665302221058278 -5952.0,0.3664036489116695 -5953.0,0.3662771194267948 -5954.0,0.36615063363610983 -5955.0,0.3660241915245258 -5956.0,0.36589779307695897 -5957.0,0.36577143827833103 -5958.0,0.3656451271135686 -5959.0,0.36551885956760394 -5960.0,0.365392635625374 -5961.0,0.3652664552718214 -5962.0,0.36514031849189355 -5963.0,0.3650142252705434 -5964.0,0.3648881755927288 -5965.0,0.3647621694434131 -5966.0,0.36463620680756453 -5967.0,0.36451028767015686 -5968.0,0.3643844120161686 -5969.0,0.364258579830584 -5970.0,0.364132791098392 -5971.0,0.3640070458045869 -5972.0,0.3638813439341683 -5973.0,0.3637556854721409 -5974.0,0.36363007040351447 -5975.0,0.3635044987133041 -5976.0,0.36337897038653005 -5977.0,0.36325348540821756 -5978.0,0.36312804376339736 -5979.0,0.36300264543710503 -5980.0,0.3628772904143816 -5981.0,0.362751978680273 -5982.0,0.36262671021983056 -5983.0,0.3625014850181105 -5984.0,0.36237630306017465 -5985.0,0.36225116433108945 -5986.0,0.3621260688159269 -5987.0,0.36200101649976396 -5988.0,0.3618760073676829 -5989.0,0.3617510414047708 -5990.0,0.3616261185961204 -5991.0,0.3615012389268292 -5992.0,0.3613764023819999 -5993.0,0.36125160894674063 -5994.0,0.3611268586061642 -5995.0,0.361002151345389 -5996.0,0.3608774871495382 -5997.0,0.3607528660037404 -5998.0,0.36062828789312906 -5999.0,0.3605037528028431 -6000.0,0.36037926071802623 -6001.0,0.36025481162382755 -6002.0,0.3601304055054011 -6003.0,0.3600060423479063 -6004.0,0.3598817221365073 -6005.0,0.3597574448563739 -6006.0,0.35963321049268043 -6007.0,0.35950901903060684 -6008.0,0.3593848704553379 -6009.0,0.35926076475206364 -6010.0,0.35913670190597907 -6011.0,0.3590126819022844 -6012.0,0.3588887047261851 -6013.0,0.35876477036289145 -6014.0,0.35864087879761913 -6015.0,0.35851703001558854 -6016.0,0.3583932240020257 -6017.0,0.3582694607421612 -6018.0,0.35814574022123125 -6019.0,0.3580220624244766 -6020.0,0.35789842733714367 -6021.0,0.3577748349444835 -6022.0,0.3576512852317525 -6023.0,0.357527778184212 -6024.0,0.3574043137871287 -6025.0,0.357280892025774 -6026.0,0.35715751288542474 -6027.0,0.35703417635136253 -6028.0,0.35691088240887436 -6029.0,0.35678763104325206 -6030.0,0.3566644222397927 -6031.0,0.35654125598379843 -6032.0,0.3564181322605762 -6033.0,0.35629505105543857 -6034.0,0.3561720123537025 -6035.0,0.3560490161406907 -6036.0,0.3559260624017303 -6037.0,0.35580315112215405 -6038.0,0.3556802822872994 -6039.0,0.35555745588250914 -6040.0,0.35543467189313077 -6041.0,0.35531193030451724 -6042.0,0.35518923110202627 -6043.0,0.3550665742710208 -6044.0,0.35494395979686866 -6045.0,0.35482138766494303 -6046.0,0.3546988578606217 -6047.0,0.354576370369288 -6048.0,0.35445392517632984 -6049.0,0.35433152226714054 -6050.0,0.3542091616271184 -6051.0,0.35408684324166645 -6052.0,0.35396456709619323 -6053.0,0.35384233317611197 -6054.0,0.3537201414668411 -6055.0,0.3535979919538039 -6056.0,0.35347588462242907 -6057.0,0.3533538194581499 -6058.0,0.35323179644640507 -6059.0,0.3531098155726379 -6060.0,0.3529878768222972 -6061.0,0.35286598018083637 -6062.0,0.35274412563371416 -6063.0,0.3526223131663941 -6064.0,0.352500542764345 -6065.0,0.3523788144130404 -6066.0,0.3522571280979591 -6067.0,0.3521354838045847 -6068.0,0.35201388151840596 -6069.0,0.35189232122491676 -6070.0,0.3517708029096156 -6071.0,0.3516493265580064 -6072.0,0.3515278921555978 -6073.0,0.3514064996879038 -6074.0,0.35128514914044284 -6075.0,0.3511638404987389 -6076.0,0.35104257374832065 -6077.0,0.35092134887472193 -6078.0,0.3508001658634814 -6079.0,0.3506790247001429 -6080.0,0.35055792537025504 -6081.0,0.3504368678593717 -6082.0,0.35031585215305155 -6083.0,0.35019487823685835 -6084.0,0.35007394609636067 -6085.0,0.3499530557171323 -6086.0,0.34983220708475177 -6087.0,0.34971140018480285 -6088.0,0.34959063500287413 -6089.0,0.34946991152455914 -6090.0,0.34934922973545657 -6091.0,0.3492285896211698 -6092.0,0.3491079911673075 -6093.0,0.34898743435948304 -6094.0,0.34886691918331497 -6095.0,0.34874644562442664 -6096.0,0.3486260136684465 -6097.0,0.3485056233010077 -6098.0,0.3483852745077488 -6099.0,0.3482649672743129 -6100.0,0.34814470158634836 -6101.0,0.34802447742950815 -6102.0,0.3479042947894507 -6103.0,0.3477841536518388 -6104.0,0.3476640540023407 -6105.0,0.34754399582662926 -6106.0,0.3474239791103824 -6107.0,0.3473040038392832 -6108.0,0.3471840699990193 -6109.0,0.3470641775752836 -6110.0,0.34694432655377355 -6111.0,0.3468245169201921 -6112.0,0.3467047486602467 -6113.0,0.3465850217596499 -6114.0,0.346465336204119 -6115.0,0.34634569197937665 -6116.0,0.34622608907114993 -6117.0,0.3461065274651713 -6118.0,0.3459870071471777 -6119.0,0.3458675281029115 -6120.0,0.3457480903181194 -6121.0,0.34562869377855365 -6122.0,0.3455093384699709 -6123.0,0.34539002437813304 -6124.0,0.3452707514888067 -6125.0,0.3451515197877635 -6126.0,0.3450323292607801 -6127.0,0.34491317989363773 -6128.0,0.34479407167212295 -6129.0,0.3446750045820268 -6130.0,0.3445559786091457 -6131.0,0.34443699373928044 -6132.0,0.3443180499582372 -6133.0,0.34419914725182676 -6134.0,0.344080285605865 -6135.0,0.3439614650061724 -6136.0,0.3438426854385747 -6137.0,0.3437239468889023 -6138.0,0.3436052493429905 -6139.0,0.34348659278667965 -6140.0,0.3433679772058149 -6141.0,0.34324940258624614 -6142.0,0.34313086891382844 -6143.0,0.34301237617442143 -6144.0,0.3428939243538899 -6145.0,0.3427755134381035 -6146.0,0.3426571434129364 -6147.0,0.3425388142642682 -6148.0,0.34242052597798295 -6149.0,0.34230227853996975 -6150.0,0.3421840719361225 -6151.0,0.34206590615234017 -6152.0,0.3419477811745262 -6153.0,0.34182969698858934 -6154.0,0.3417116535804429 -6155.0,0.34159365093600524 -6156.0,0.34147568904119946 -6157.0,0.3413577678819536 -6158.0,0.3412398874442004 -6159.0,0.3411220477138778 -6160.0,0.34100424867692813 -6161.0,0.3408864903192991 -6162.0,0.34076877262694266 -6163.0,0.34065109558581624 -6164.0,0.34053345918188177 -6165.0,0.34041586340110597 -6166.0,0.34029830822946067 -6167.0,0.3401807936529222 -6168.0,0.34006331965747216 -6169.0,0.33994588622909655 -6170.0,0.33982849335378656 -6171.0,0.33971114101753797 -6172.0,0.33959382920635167 -6173.0,0.339476557906233 -6174.0,0.3393593271031925 -6175.0,0.33924213678324533 -6176.0,0.33912498693241155 -6177.0,0.339007877536716 -6178.0,0.33889080858218856 -6179.0,0.33877378005486347 -6180.0,0.33865679194078036 -6181.0,0.33853984422598316 -6182.0,0.338422936896521 -6183.0,0.3383060699384477 -6184.0,0.33818924333782174 -6185.0,0.33807245708070677 -6186.0,0.33795571115317086 -6187.0,0.3378390055412872 -6188.0,0.33772234023113357 -6189.0,0.33760571520879273 -6190.0,0.33748913046035206 -6191.0,0.337372585971904 -6192.0,0.33725608172954546 -6193.0,0.3371396177193785 -6194.0,0.3370231939275096 -6195.0,0.33690681034005054 -6196.0,0.3367904669431174 -6197.0,0.3366741637228313 -6198.0,0.33655790066531815 -6199.0,0.33644167775670863 -6200.0,0.3363254949831381 -6201.0,0.33620935233074684 -6202.0,0.33609324978567995 -6203.0,0.33597718733408716 -6204.0,0.33586116496212315 -6205.0,0.3357451826559472 -6206.0,0.3356292404017236 -6207.0,0.33551333818562107 -6208.0,0.33539747599381353 -6209.0,0.3352816538124793 -6210.0,0.33516587162780187 -6211.0,0.335050129425969 -6212.0,0.3349344271931737 -6213.0,0.33481876491561335 -6214.0,0.33470314257949046 -6215.0,0.33458756017101193 -6216.0,0.3344720176763899 -6217.0,0.3343565150818407 -6218.0,0.3342410523735859 -6219.0,0.3341256295378516 -6220.0,0.33401024656086864 -6221.0,0.3338949034288728 -6222.0,0.3337796001281043 -6223.0,0.3336643366448085 -6224.0,0.3335491129652351 -6225.0,0.33343392907563896 -6226.0,0.3333187849622793 -6227.0,0.3332036806114204 -6228.0,0.3330886160093311 -6229.0,0.33297359114228503 -6230.0,0.33285860599656053 -6231.0,0.3327436605584408 -6232.0,0.33262875481421356 -6233.0,0.3325138887501715 -6234.0,0.3323990623526119 -6235.0,0.33228427560783685 -6236.0,0.33216952850215303 -6237.0,0.33205482102187206 -6238.0,0.33194015315331 -6239.0,0.331825524882788 -6240.0,0.33171093619663167 -6241.0,0.3315963870811714 -6242.0,0.3314818775227424 -6243.0,0.33136740750768434 -6244.0,0.33125297702234197 -6245.0,0.3311385860530644 -6246.0,0.33102423458620583 -6247.0,0.33090992260812474 -6248.0,0.3307956501051847 -6249.0,0.3306814170637537 -6250.0,0.33056722347020473 -6251.0,0.3304530693109152 -6252.0,0.3303389545722675 -6253.0,0.3302248792406483 -6254.0,0.33011084330244955 -6255.0,0.3299968467440674 -6256.0,0.329882889551903 -6257.0,0.3297689717123619 -6258.0,0.32965509321185477 -6259.0,0.3295412540367967 -6260.0,0.3294274541736073 -6261.0,0.3293136936087113 -6262.0,0.3291999723285378 -6263.0,0.32908629031952075 -6264.0,0.3289726475680986 -6265.0,0.3288590440607147 -6266.0,0.3287454797838169 -6267.0,0.32863195472385787 -6268.0,0.32851846886729485 -6269.0,0.32840502220058987 -6270.0,0.32829161471020946 -6271.0,0.3281782463826251 -6272.0,0.3280649172043126 -6273.0,0.32795162716175275 -6274.0,0.3278383762414307 -6275.0,0.3277251644298367 -6276.0,0.32761199171346517 -6277.0,0.3274988580788155 -6278.0,0.32738576351239185 -6279.0,0.3272727080007026 -6280.0,0.3271596915302612 -6281.0,0.3270467140875855 -6282.0,0.3269337756591983 -6283.0,0.32682087623162664 -6284.0,0.32670801579140263 -6285.0,0.3265951943250627 -6286.0,0.3264824118191482 -6287.0,0.3263696682602049 -6288.0,0.32625696363478346 -6289.0,0.3261442979294388 -6290.0,0.32603167113073095 -6291.0,0.32591908322522417 -6292.0,0.32580653419948774 -6293.0,0.3256940240400952 -6294.0,0.32558155273362505 -6295.0,0.32546912026666014 -6296.0,0.3253567266257882 -6297.0,0.3252443717976015 -6298.0,0.32513205576869686 -6299.0,0.3250197785256759 -6300.0,0.32490754005514455 -6301.0,0.3247953403437139 -6302.0,0.324683179377999 -6303.0,0.32457105714462015 -6304.0,0.32445897363020176 -6305.0,0.3243469288213733 -6306.0,0.3242349227047684 -6307.0,0.3241229552670258 -6308.0,0.32401102649478836 -6309.0,0.323899136374704 -6310.0,0.3237872848934249 -6311.0,0.32367547203760816 -6312.0,0.3235636977939151 -6313.0,0.323451962149012 -6314.0,0.32334026508956953 -6315.0,0.32322860660226316 -6316.0,0.3231169866737728 -6317.0,0.323005405290783 -6318.0,0.3228938624399829 -6319.0,0.32278235810806627 -6320.0,0.32267089228173146 -6321.0,0.3225594649476814 -6322.0,0.3224480760926236 -6323.0,0.3223367257032702 -6324.0,0.32222541376633795 -6325.0,0.32211414026854807 -6326.0,0.32200290519662655 -6327.0,0.3218917085373037 -6328.0,0.3217805502773147 -6329.0,0.3216694304033992 -6330.0,0.3215583489023013 -6331.0,0.3214473057607698 -6332.0,0.32133630096555815 -6333.0,0.32122533450342416 -6334.0,0.3211144063611305 -6335.0,0.3210035165254442 -6336.0,0.32089266498313673 -6337.0,0.3207818517209846 -6338.0,0.3206710767257684 -6339.0,0.3205603399842735 -6340.0,0.3204496414832899 -6341.0,0.3203389812096121 -6342.0,0.3202283591500389 -6343.0,0.3201177752913742 -6344.0,0.3200072296204259 -6345.0,0.3198967221240069 -6346.0,0.3197862527889343 -6347.0,0.31967582160203006 -6348.0,0.3195654285501204 -6349.0,0.3194550736200364 -6350.0,0.31934475679861335 -6351.0,0.3192344780726914 -6352.0,0.319124237429115 -6353.0,0.31901403485473323 -6354.0,0.3189038703363999 -6355.0,0.318793743860973 -6356.0,0.31868365541531535 -6357.0,0.3185736049862941 -6358.0,0.3184635925607812 -6359.0,0.31835361812565277 -6360.0,0.3182436816677898 -6361.0,0.31813378317407764 -6362.0,0.3180239226314063 -6363.0,0.3179141000266699 -6364.0,0.3178043153467678 -6365.0,0.3176945685786032 -6366.0,0.3175848597090843 -6367.0,0.3174751887251234 -6368.0,0.3173655556136379 -6369.0,0.31725596036154896 -6370.0,0.31714640295578306 -6371.0,0.31703688338327046 -6372.0,0.31692740163094646 -6373.0,0.3168179576857508 -6374.0,0.3167085515346273 -6375.0,0.31659918316452484 -6376.0,0.3164898525623965 -6377.0,0.3163805597151999 -6378.0,0.3162713046098973 -6379.0,0.3161620872334553 -6380.0,0.316052907572845 -6381.0,0.31594376561504217 -6382.0,0.3158346613470269 -6383.0,0.31572559475578393 -6384.0,0.31561656582830233 -6385.0,0.3155075745515758 -6386.0,0.31539862091260235 -6387.0,0.3152897048983848 -6388.0,0.3151808264959301 -6389.0,0.31507198569225 -6390.0,0.31496318247436034 -6391.0,0.31485441682928195 -6392.0,0.3147456887440398 -6393.0,0.3146369982056633 -6394.0,0.3145283452011867 -6395.0,0.3144197297176483 -6396.0,0.3143111517420911 -6397.0,0.31420261126156257 -6398.0,0.3140941082631147 -6399.0,0.31398564273380364 -6400.0,0.31387721466069046 -6401.0,0.31376882403084033 -6402.0,0.3136604708313232 -6403.0,0.3135521550492132 -6404.0,0.31344387667158913 -6405.0,0.3133356356855341 -6406.0,0.31322743207813575 -6407.0,0.3131192658364862 -6408.0,0.31301113694768207 -6409.0,0.31290304539882424 -6410.0,0.31279499117701826 -6411.0,0.3126869742693741 -6412.0,0.3125789946630059 -6413.0,0.31247105234503286 -6414.0,0.3123631473025779 -6415.0,0.31225527952276894 -6416.0,0.312147448992738 -6417.0,0.31203965569962183 -6418.0,0.31193189963056134 -6419.0,0.3118241807727022 -6420.0,0.31171649911319405 -6421.0,0.3116088546391915 -6422.0,0.3115012473378532 -6423.0,0.3113936771963426 -6424.0,0.3112861442018271 -6425.0,0.31117864834147896 -6426.0,0.3110711896024746 -6427.0,0.3109637679719951 -6428.0,0.3108563834372257 -6429.0,0.3107490359853563 -6430.0,0.3106417256035812 -6431.0,0.3105344522790989 -6432.0,0.31042721599911266 -6433.0,0.31032001675082976 -6434.0,0.31021285452146224 -6435.0,0.3101057292982264 -6436.0,0.309998641068343 -6437.0,0.30989158981903714 -6438.0,0.30978457553753846 -6439.0,0.3096775982110809 -6440.0,0.30957065782690285 -6441.0,0.30946375437224705 -6442.0,0.30935688783436077 -6443.0,0.30925005820049556 -6444.0,0.30914326545790755 -6445.0,0.3090365095938569 -6446.0,0.30892979059560866 -6447.0,0.30882310845043187 -6448.0,0.3087164631456002 -6449.0,0.3086098546683917 -6450.0,0.3085032830060886 -6451.0,0.3083967481459778 -6452.0,0.3082902500753504 -6453.0,0.30818378878150204 -6454.0,0.30807736425173254 -6455.0,0.3079709764733464 -6456.0,0.3078646254336522 -6457.0,0.30775831111996305 -6458.0,0.3076520335195964 -6459.0,0.3075457926198743 -6460.0,0.3074395884081227 -6461.0,0.3073334208716725 -6462.0,0.30722728999785837 -6463.0,0.30712119577402 -6464.0,0.3070151381875008 -6465.0,0.3069091172256492 -6466.0,0.3068031328758174 -6467.0,0.30669718512536237 -6468.0,0.3065912739616453 -6469.0,0.3064853993720318 -6470.0,0.3063795613438917 -6471.0,0.30627375986459937 -6472.0,0.3061679949215335 -6473.0,0.30606226650207696 -6474.0,0.3059565745936173 -6475.0,0.3058509191835461 -6476.0,0.30574530025925956 -6477.0,0.305639717808158 -6478.0,0.3055341718176463 -6479.0,0.3054286622751335 -6480.0,0.3053231891680332 -6481.0,0.30521775248376304 -6482.0,0.3051123522097454 -6483.0,0.30500698833340667 -6484.0,0.3049016608421778 -6485.0,0.30479636972349383 -6486.0,0.3046911149647944 -6487.0,0.30458589655352347 -6488.0,0.3044807144771291 -6489.0,0.304375568723064 -6490.0,0.3042704592787848 -6491.0,0.304165386131753 -6492.0,0.3040603492694338 -6493.0,0.30395534867929747 -6494.0,0.3038503843488179 -6495.0,0.3037454562654737 -6496.0,0.30364056441674775 -6497.0,0.3035357087901272 -6498.0,0.30343088937310353 -6499.0,0.30332610615317257 -6500.0,0.3032213591178343 -6501.0,0.30311664825459345 -6502.0,0.3030119735509585 -6503.0,0.3029073349944427 -6504.0,0.30280273257256335 -6505.0,0.30269816627284213 -6506.0,0.3025936360828051 -6507.0,0.3024891419899825 -6508.0,0.3023846839819091 -6509.0,0.3022802620461236 -6510.0,0.30217587617016944 -6511.0,0.30207152634159395 -6512.0,0.3019672125479491 -6513.0,0.30186293477679094 -6514.0,0.30175869301568 -6515.0,0.3016544872521808 -6516.0,0.3015503174738625 -6517.0,0.3014461836682984 -6518.0,0.3013420858230661 -6519.0,0.3012380239257474 -6520.0,0.30113399796392853 -6521.0,0.30103000792519996 -6522.0,0.3009260537971564 -6523.0,0.30082213556739695 -6524.0,0.3007182532235248 -6525.0,0.30061440675314777 -6526.0,0.30051059614387743 -6527.0,0.30040682138333025 -6528.0,0.30030308245912635 -6529.0,0.3001993793588907 -6530.0,0.30009571207025204 -6531.0,0.2999920805808438 -6532.0,0.2998884848783034 -6533.0,0.2997849249502727 -6534.0,0.2996814007843977 -6535.0,0.29957791236832876 -6536.0,0.2994744596897204 -6537.0,0.29937104273623155 -6538.0,0.29926766149552525 -6539.0,0.299164315955269 -6540.0,0.2990610061031342 -6541.0,0.298957731926797 -6542.0,0.2988544934139373 -6543.0,0.29875129055223965 -6544.0,0.2986481233293927 -6545.0,0.29854499173308935 -6546.0,0.2984418957510267 -6547.0,0.29833883537090616 -6548.0,0.2982358105804334 -6549.0,0.2981328213673183 -6550.0,0.29802986771927503 -6551.0,0.29792694962402194 -6552.0,0.29782406706928166 -6553.0,0.297721220042781 -6554.0,0.2976184085322512 -6555.0,0.2975156325254274 -6556.0,0.2974128920100494 -6557.0,0.29731018697386075 -6558.0,0.2972075174046097 -6559.0,0.29710488329004836 -6560.0,0.29700228461793343 -6561.0,0.2968997213760254 -6562.0,0.29679719355208933 -6563.0,0.2966947011338945 -6564.0,0.29659224410921414 -6565.0,0.29648982246582606 -6566.0,0.29638743619151187 -6567.0,0.29628508527405784 -6568.0,0.2961827697012541 -6569.0,0.2960804894608953 -6570.0,0.29597824454078003 -6571.0,0.2958760349287113 -6572.0,0.2957738606124961 -6573.0,0.29567172157994603 -6574.0,0.29556961781887636 -6575.0,0.2954675493171071 -6576.0,0.2953655160624621 -6577.0,0.29526351804276957 -6578.0,0.29516155524586185 -6579.0,0.2950596276595756 -6580.0,0.2949577352717515 -6581.0,0.29485587807023456 -6582.0,0.2947540560428741 -6583.0,0.29465226917752324 -6584.0,0.29455051746203975 -6585.0,0.2944488008842853 -6586.0,0.29434711943212594 -6587.0,0.2942454730934317 -6588.0,0.294143861856077 -6589.0,0.2940422857079402 -6590.0,0.2939407446369043 -6591.0,0.29383923863085587 -6592.0,0.2937377676776862 -6593.0,0.29363633176529047 -6594.0,0.2935349308815682 -6595.0,0.29343356501442275 -6596.0,0.29333223415176224 -6597.0,0.2932309382814984 -6598.0,0.2931296773915475 -6599.0,0.29302845146982975 -6600.0,0.2929272605042697 -6601.0,0.29282610448279606 -6602.0,0.2927249833933415 -6603.0,0.2926238972238432 -6604.0,0.29252284596224215 -6605.0,0.29242182959648383 -6606.0,0.29232084811451753 -6607.0,0.2922199015042971 -6608.0,0.2921189897537802 -6609.0,0.2920181128509289 -6610.0,0.29191727078370916 -6611.0,0.29181646354009144 -6612.0,0.29171569110805 -6613.0,0.29161495347556365 -6614.0,0.29151425063061487 -6615.0,0.29141358256119076 -6616.0,0.29131294925528217 -6617.0,0.2912123507008844 -6618.0,0.29111178688599676 -6619.0,0.29101125779862264 -6620.0,0.2909107634267698 -6621.0,0.29081030375844985 -6622.0,0.2907098787816788 -6623.0,0.2906094884844766 -6624.0,0.29050913285486746 -6625.0,0.29040881188087964 -6626.0,0.29030852555054565 -6627.0,0.290208273851902 -6628.0,0.29010805677298945 -6629.0,0.29000787430185276 -6630.0,0.28990772642654095 -6631.0,0.28980761313510706 -6632.0,0.28970753441560837 -6633.0,0.28960749025610616 -6634.0,0.28950748064466597 -6635.0,0.28940750556935724 -6636.0,0.28930756501825383 -6637.0,0.28920765897943346 -6638.0,0.28910778744097804 -6639.0,0.2890079503909738 -6640.0,0.2889081478175107 -6641.0,0.28880837970868317 -6642.0,0.2887086460525895 -6643.0,0.2886089468373323 -6644.0,0.288509282051018 -6645.0,0.28840965168175753 -6646.0,0.28831005571766555 -6647.0,0.2882104941468611 -6648.0,0.2881109669574672 -6649.0,0.2880114741376109 -6650.0,0.28791201567542346 -6651.0,0.28781259155904027 -6652.0,0.28771320177660065 -6653.0,0.28761384631624826 -6654.0,0.2875145251661306 -6655.0,0.28741523831439947 -6656.0,0.2873159857492106 -6657.0,0.2872167674587239 -6658.0,0.28711758343110344 -6659.0,0.2870184336545171 -6660.0,0.2869193181171373 -6661.0,0.28682023680713997 -6662.0,0.2867211897127057 -6663.0,0.28662217682201874 -6664.0,0.28652319812326765 -6665.0,0.28642425360464496 -6666.0,0.2863253432543473 -6667.0,0.28622646706057536 -6668.0,0.28612762501153405 -6669.0,0.28602881709543204 -6670.0,0.2859300433004825 -6671.0,0.2858313036149022 -6672.0,0.2857325980269125 -6673.0,0.2856339265247382 -6674.0,0.2855352890966087 -6675.0,0.28543668573075737 -6676.0,0.28533811641542134 -6677.0,0.2852395811388421 -6678.0,0.2851410798892652 -6679.0,0.28504261265494 -6680.0,0.2849441794241202 -6681.0,0.28484578018506335 -6682.0,0.2847474149260312 -6683.0,0.28464908363528946 -6684.0,0.2845507863011079 -6685.0,0.28445252291176043 -6686.0,0.2843542934555249 -6687.0,0.28425609792068324 -6688.0,0.28415793629552144 -6689.0,0.2840598085683296 -6690.0,0.28396171472740167 -6691.0,0.2838636547610359 -6692.0,0.2837656286575344 -6693.0,0.28366763640520337 -6694.0,0.28356967799235305 -6695.0,0.2834717534072977 -6696.0,0.2833738626383557 -6697.0,0.28327600567384925 -6698.0,0.2831781825021049 -6699.0,0.2830803931114529 -6700.0,0.28298263749022784 -6701.0,0.28288491562676804 -6702.0,0.28278722750941615 -6703.0,0.28268957312651855 -6704.0,0.2825919524664259 -6705.0,0.28249436551749263 -6706.0,0.28239681226807745 -6707.0,0.2822992927065429 -6708.0,0.2822018068212557 -6709.0,0.28210435460058636 -6710.0,0.28200693603290966 -6711.0,0.28190955110660415 -6712.0,0.2818121998100526 -6713.0,0.28171488213164175 -6714.0,0.2816175980597623 -6715.0,0.28152034758280886 -6716.0,0.28142313068918023 -6717.0,0.28132594736727917 -6718.0,0.2812287976055124 -6719.0,0.28113168139229067 -6720.0,0.28103459871602865 -6721.0,0.28093754956514516 -6722.0,0.2808405339280629 -6723.0,0.2807435517932087 -6724.0,0.2806466031490132 -6725.0,0.2805496879839112 -6726.0,0.28045280628634134 -6727.0,0.28035595804474644 -6728.0,0.2802591432475732 -6729.0,0.2801623618832722 -6730.0,0.2800656139402983 -6731.0,0.27996889940710995 -6732.0,0.2798722182721701 -6733.0,0.2797755705239452 -6734.0,0.27967895615090593 -6735.0,0.2795823751415269 -6736.0,0.27948582748428674 -6737.0,0.2793893131676679 -6738.0,0.27929283218015705 -6739.0,0.27919638451024464 -6740.0,0.27909997014642524 -6741.0,0.2790035890771972 -6742.0,0.2789072412910631 -6743.0,0.2788109267765292 -6744.0,0.278714645522106 -6745.0,0.2786183975163078 -6746.0,0.27852218274765295 -6747.0,0.27842600120466365 -6748.0,0.2783298528758663 -6749.0,0.27823373774979093 -6750.0,0.27813765581497174 -6751.0,0.278041607059947 -6752.0,0.2779455914732586 -6753.0,0.27784960904345274 -6754.0,0.2777536597590793 -6755.0,0.27765774360869233 -6756.0,0.2775618605808496 -6757.0,0.27746601066411314 -6758.0,0.27737019384704853 -6759.0,0.2772744101182258 -6760.0,0.2771786594662184 -6761.0,0.2770829418796041 -6762.0,0.2769872573469644 -6763.0,0.276891605856885 -6764.0,0.2767959873979552 -6765.0,0.27670040195876855 -6766.0,0.27660484952792225 -6767.0,0.2765093300940178 -6768.0,0.2764138436456602 -6769.0,0.2763183901714587 -6770.0,0.2762229696600265 -6771.0,0.2761275820999805 -6772.0,0.27603222747994177 -6773.0,0.2759369057885351 -6774.0,0.27584161701438936 -6775.0,0.27574636114613726 -6776.0,0.27565113817241554 -6777.0,0.2755559480818647 -6778.0,0.2754607908631293 -6779.0,0.2753656665048577 -6780.0,0.27527057499570246 -6781.0,0.27517551632431964 -6782.0,0.2750804904793696 -6783.0,0.2749854974495163 -6784.0,0.2748905372234279 -6785.0,0.2747956097897762 -6786.0,0.27470071513723715 -6787.0,0.2746058532544905 -6788.0,0.2745110241302198 -6789.0,0.2744162277531129 -6790.0,0.274321464111861 -6791.0,0.27422673319515967 -6792.0,0.2741320349917081 -6793.0,0.2740373694902095 -6794.0,0.27394273667937097 -6795.0,0.2738481365479036 -6796.0,0.2737535690845221 -6797.0,0.27365903427794547 -6798.0,0.2735645321168962 -6799.0,0.27347006259010104 -6800.0,0.2733756256862903 -6801.0,0.2732812213941985 -6802.0,0.2731868497025638 -6803.0,0.2730925106001284 -6804.0,0.27299820407563824 -6805.0,0.2729039301178434 -6806.0,0.27280968871549754 -6807.0,0.2727154798573584 -6808.0,0.2726213035321875 -6809.0,0.2725271597287504 -6810.0,0.2724330484358164 -6811.0,0.2723389696421586 -6812.0,0.27224492333655426 -6813.0,0.27215090950778414 -6814.0,0.2720569281446333 -6815.0,0.27196297923589025 -6816.0,0.2718690627703477 -6817.0,0.271775178736802 -6818.0,0.2716813271240536 -6819.0,0.2715875079209065 -6820.0,0.27149372111616893 -6821.0,0.27139996669865274 -6822.0,0.2713062446571737 -6823.0,0.2712125549805514 -6824.0,0.27111889765760955 -6825.0,0.27102527267717524 -6826.0,0.2709316800280799 -6827.0,0.2708381196991585 -6828.0,0.27074459167925 -6829.0,0.2706510959571973 -6830.0,0.2705576325218468 -6831.0,0.27046420136204924 -6832.0,0.2703708024666588 -6833.0,0.2702774358245338 -6834.0,0.2701841014245361 -6835.0,0.2700907992555318 -6836.0,0.2699975293063905 -6837.0,0.2699042915659858 -6838.0,0.2698110860231951 -6839.0,0.26971791266689976 -6840.0,0.2696247714859847 -6841.0,0.269531662469339 -6842.0,0.2694385856058554 -6843.0,0.2693455408844305 -6844.0,0.26925252829396473 -6845.0,0.2691595478233623 -6846.0,0.2690665994615315 -6847.0,0.26897368319738413 -6848.0,0.268880799019836 -6849.0,0.26878794691780666 -6850.0,0.2686951268802196 -6851.0,0.26860233889600205 -6852.0,0.26850958295408506 -6853.0,0.26841685904340346 -6854.0,0.26832416715289614 -6855.0,0.2682315072715054 -6856.0,0.2681388793881778 -6857.0,0.2680462834918634 -6858.0,0.2679537195715162 -6859.0,0.26786118761609395 -6860.0,0.2677686876145584 -6861.0,0.26767621955587484 -6862.0,0.2675837834290126 -6863.0,0.26749137922294464 -6864.0,0.26739900692664786 -6865.0,0.26730666652910295 -6866.0,0.26721435801929433 -6867.0,0.2671220813862103 -6868.0,0.26702983661884283 -6869.0,0.2669376237061879 -6870.0,0.26684544263724513 -6871.0,0.26675329340101805 -6872.0,0.26666117598651384 -6873.0,0.2665690903827437 -6874.0,0.2664770365787223 -6875.0,0.26638501456346847 -6876.0,0.2662930243260045 -6877.0,0.26620106585535674 -6878.0,0.2661091391405552 -6879.0,0.2660172441706336 -6880.0,0.26592538093462964 -6881.0,0.2658335494215847 -6882.0,0.2657417496205439 -6883.0,0.26564998152055624 -6884.0,0.26555824511067444 -6885.0,0.265466540379955 -6886.0,0.26537486731745824 -6887.0,0.2652832259122482 -6888.0,0.26519161615339276 -6889.0,0.26510003802996346 -6890.0,0.2650084915310359 -6891.0,0.264916976645689 -6892.0,0.26482549336300587 -6893.0,0.2647340416720731 -6894.0,0.2646426215619813 -6895.0,0.26455123302182465 -6896.0,0.2644598760407012 -6897.0,0.26436855060771264 -6898.0,0.2642772567119646 -6899.0,0.26418599434256634 -6900.0,0.2640947634886309 -6901.0,0.2640035641392752 -6902.0,0.26391239628361973 -6903.0,0.2638212599107889 -6904.0,0.26373015500991076 -6905.0,0.2636390815701172 -6906.0,0.26354803958054374 -6907.0,0.2634570290303298 -6908.0,0.26336604990861845 -6909.0,0.26327510220455663 -6910.0,0.2631841859072948 -6911.0,0.26309330100598743 -6912.0,0.26300244748979257 -6913.0,0.2629116253478721 -6914.0,0.2628208345693915 -6915.0,0.26273007514352015 -6916.0,0.2626393470594311 -6917.0,0.26254865030630126 -6918.0,0.26245798487331096 -6919.0,0.2623673507496447 -6920.0,0.26227674792449024 -6921.0,0.2621861763870395 -6922.0,0.262095636126488 -6923.0,0.2620051271320348 -6924.0,0.26191464939288295 -6925.0,0.261824202898239 -6926.0,0.2617337876373135 -6927.0,0.26164340359932037 -6928.0,0.2615530507734776 -6929.0,0.2614627291490067 -6930.0,0.26137243871513305 -6931.0,0.2612821794610855 -6932.0,0.26119195137609696 -6933.0,0.2611017544494037 -6934.0,0.26101158867024604 -6935.0,0.26092145402786776 -6936.0,0.26083135051151646 -6937.0,0.26074127811044345 -6938.0,0.26065123681390384 -6939.0,0.2605612266111562 -6940.0,0.2604712474914631 -6941.0,0.26038129944409066 -6942.0,0.2602913824583087 -6943.0,0.2602014965233908 -6944.0,0.2601116416286142 -6945.0,0.26002181776325994 -6946.0,0.2599320249166126 -6947.0,0.2598422630779606 -6948.0,0.25975253223659595 -6949.0,0.25966283238181453 -6950.0,0.25957316350291565 -6951.0,0.25948352558920257 -6952.0,0.25939391862998207 -6953.0,0.2593043426145648 -6954.0,0.2592147975322649 -6955.0,0.2591252833724004 -6956.0,0.2590358001242927 -6957.0,0.2589463477772674 -6958.0,0.25885692632065316 -6959.0,0.25876753574378286 -6960.0,0.2586781760359929 -6961.0,0.25858884718662317 -6962.0,0.2584995491850175 -6963.0,0.2584102820205232 -6964.0,0.2583210456824914 -6965.0,0.25823184016027684 -6966.0,0.258142665443238 -6967.0,0.2580535215207369 -6968.0,0.2579644083821394 -6969.0,0.25787532601681484 -6970.0,0.25778627441413654 -6971.0,0.25769725356348105 -6972.0,0.25760826345422905 -6973.0,0.2575193040757645 -6974.0,0.2574303754174754 -6975.0,0.2573414774687529 -6976.0,0.25725261021899243 -6977.0,0.2571637736575926 -6978.0,0.25707496777395583 -6979.0,0.25698619255748845 -6980.0,0.25689744799759995 -6981.0,0.2568087340837039 -6982.0,0.25672005080521737 -6983.0,0.2566313981515611 -6984.0,0.25654277611215937 -6985.0,0.2564541846764404 -6986.0,0.25636562383383565 -6987.0,0.25627709357378065 -6988.0,0.25618859388571424 -6989.0,0.25610012475907923 -6990.0,0.2560116861833217 -6991.0,0.25592327814789173 -6992.0,0.2558349006422428 -6993.0,0.25574655365583215 -6994.0,0.2556582371781206 -6995.0,0.2555699511985727 -6996.0,0.25548169570665646 -6997.0,0.25539347069184376 -6998.0,0.25530527614361 -6999.0,0.25521711205143405 -7000.0,0.2551289784047988 -7001.0,0.2550408751931904 -7002.0,0.25495280240609886 -7003.0,0.25486476003301767 -7004.0,0.2547767480634441 -7005.0,0.2546887664868788 -7006.0,0.25460081529282647 -7007.0,0.2545128944707949 -7008.0,0.254425004010296 -7009.0,0.2543371439008449 -7010.0,0.25424931413196067 -7011.0,0.2541615146931657 -7012.0,0.25407374557398643 -7013.0,0.25398600676395233 -7014.0,0.253898298252597 -7015.0,0.25381062002945737 -7016.0,0.25372297208407407 -7017.0,0.25363535440599144 -7018.0,0.2535477669847572 -7019.0,0.2534602098099229 -7020.0,0.25337268287104353 -7021.0,0.2532851861576778 -7022.0,0.25319771965938803 -7023.0,0.25311028336574004 -7024.0,0.25302287726630335 -7025.0,0.25293550135065107 -7026.0,0.2528481556083598 -7027.0,0.25276084002900995 -7028.0,0.2526735546021853 -7029.0,0.2525862993174735 -7030.0,0.25249907416446543 -7031.0,0.25241187913275587 -7032.0,0.2523247142119431 -7033.0,0.25223757939162894 -7034.0,0.2521504746614188 -7035.0,0.2520634000109218 -7036.0,0.25197635542975055 -7037.0,0.2518893409075213 -7038.0,0.2518023564338538 -7039.0,0.2517154019983714 -7040.0,0.25162847759070117 -7041.0,0.2515415832004736 -7042.0,0.25145471881732284 -7043.0,0.25136788443088653 -7044.0,0.2512810800308061 -7045.0,0.2511943056067263 -7046.0,0.2511075611482957 -7047.0,0.25102084664516616 -7048.0,0.2509341620869934 -7049.0,0.2508475074634364 -7050.0,0.2507608827641582 -7051.0,0.25067428797882485 -7052.0,0.25058772309710636 -7053.0,0.25050118810867605 -7054.0,0.250414683003211 -7055.0,0.25032820777039183 -7056.0,0.2502417623999026 -7057.0,0.25015534688143104 -7058.0,0.2500689612046683 -7059.0,0.24998260535930947 -7060.0,0.24989627933505262 -7061.0,0.2498099831215999 -7062.0,0.24972371670865665 -7063.0,0.24963748008593206 -7064.0,0.24955127324313858 -7065.0,0.2494650961699925 -7066.0,0.2493789488562134 -7067.0,0.24929283129152466 -7068.0,0.24920674346565297 -7069.0,0.24912068536832876 -7070.0,0.24903465698928584 -7071.0,0.24894865831826177 -7072.0,0.24886268934499742 -7073.0,0.24877675005923736 -7074.0,0.24869084045072973 -7075.0,0.248604960509226 -7076.0,0.2485191102244815 -7077.0,0.2484332895862547 -7078.0,0.24834749858430805 -7079.0,0.24826173720840713 -7080.0,0.24817600544832133 -7081.0,0.24809030329382342 -7082.0,0.24800463073468984 -7083.0,0.24791898776070034 -7084.0,0.24783337436163852 -7085.0,0.24774779052729112 -7086.0,0.24766223624744882 -7087.0,0.24757671151190544 -7088.0,0.24749121631045864 -7089.0,0.24740575063290934 -7090.0,0.24732031446906225 -7091.0,0.2472349078087253 -7092.0,0.24714953064171022 -7093.0,0.2470641829578321 -7094.0,0.24697886474690958 -7095.0,0.24689357599876485 -7096.0,0.2468083167032235 -7097.0,0.24672308685011482 -7098.0,0.24663788642927142 -7099.0,0.24655271543052962 -7100.0,0.246467573843729 -7101.0,0.24638246165871291 -7102.0,0.24629737886532801 -7103.0,0.2462123254534246 -7104.0,0.24612730141285638 -7105.0,0.24604230673348065 -7106.0,0.2459573414051581 -7107.0,0.24587240541775307 -7108.0,0.2457874987611332 -7109.0,0.2457026214251699 -7110.0,0.24561777339973778 -7111.0,0.24553295467471514 -7112.0,0.24544816523998378 -7113.0,0.24536340508542884 -7114.0,0.24527867420093916 -7115.0,0.24519397257640682 -7116.0,0.2451093002017277 -7117.0,0.24502465706680088 -7118.0,0.24494004316152912 -7119.0,0.24485545847581852 -7120.0,0.24477090299957888 -7121.0,0.24468637672272317 -7122.0,0.2446018796351682 -7123.0,0.24451741172683392 -7124.0,0.24443297298764405 -7125.0,0.2443485634075256 -7126.0,0.24426418297640914 -7127.0,0.2441798316842287 -7128.0,0.2440955095209218 -7129.0,0.24401121647642937 -7130.0,0.24392695254069588 -7131.0,0.24384271770366936 -7132.0,0.24375851195530104 -7133.0,0.24367433528554594 -7134.0,0.2435901876843623 -7135.0,0.24350606914171197 -7136.0,0.24342197964756018 -7137.0,0.24333791919187572 -7138.0,0.24325388776463072 -7139.0,0.24316988535580095 -7140.0,0.2430859119553654 -7141.0,0.2430019675533068 -7142.0,0.24291805213961112 -7143.0,0.2428341657042678 -7144.0,0.24275030823726995 -7145.0,0.2426664797286138 -7146.0,0.2425826801682994 -7147.0,0.24249890954632994 -7148.0,0.2424151678527123 -7149.0,0.2423314550774566 -7150.0,0.24224777121057664 -7151.0,0.24216411624208942 -7152.0,0.2420804901620156 -7153.0,0.24199689296037913 -7154.0,0.24191332462720758 -7155.0,0.2418297851525317 -7156.0,0.24174627452638595 -7157.0,0.24166279273880814 -7158.0,0.24157933977983942 -7159.0,0.24149591563952458 -7160.0,0.24141252030791155 -7161.0,0.24132915377505204 -7162.0,0.24124581603100093 -7163.0,0.2411625070658167 -7164.0,0.24107922686956115 -7165.0,0.24099597543229961 -7166.0,0.2409127527441007 -7167.0,0.24082955879503667 -7168.0,0.240746393575183 -7169.0,0.24066325707461875 -7170.0,0.24058014928342628 -7171.0,0.24049707019169153 -7172.0,0.24041401978950364 -7173.0,0.24033099806695543 -7174.0,0.24024800501414292 -7175.0,0.24016504062116567 -7176.0,0.2400821048781267 -7177.0,0.23999919777513226 -7178.0,0.23991631930229226 -7179.0,0.23983346944971978 -7180.0,0.23975064820753159 -7181.0,0.23966785556584755 -7182.0,0.23958509151479124 -7183.0,0.23950235604448938 -7184.0,0.23941964914507238 -7185.0,0.23933697080667377 -7186.0,0.23925432101943075 -7187.0,0.2391716997734837 -7188.0,0.23908910705897662 -7189.0,0.2390065428660567 -7190.0,0.23892400718487466 -7191.0,0.2388415000055846 -7192.0,0.23875902131834406 -7193.0,0.23867657111331383 -7194.0,0.23859414938065826 -7195.0,0.2385117561105451 -7196.0,0.23842939129314533 -7197.0,0.23834705491863353 -7198.0,0.23826474697718744 -7199.0,0.23818246745898847 -7200.0,0.23810021635422116 -7201.0,0.23801799365307363 -7202.0,0.23793579934573722 -7203.0,0.23785363342240687 -7204.0,0.23777149587328064 -7205.0,0.23768938668856027 -7206.0,0.2376073058584506 -7207.0,0.2375252533731601 -7208.0,0.23744322922290043 -7209.0,0.23736123339788676 -7210.0,0.23727926588833748 -7211.0,0.23719732668447463 -7212.0,0.2371154157765233 -7213.0,0.23703353315471218 -7214.0,0.23695167880927334 -7215.0,0.23686985273044203 -7216.0,0.2367880549084571 -7217.0,0.23670628533356058 -7218.0,0.23662454399599805 -7219.0,0.23654283088601824 -7220.0,0.23646114599387352 -7221.0,0.23637948930981934 -7222.0,0.23629786082411477 -7223.0,0.23621626052702202 -7224.0,0.23613468840880686 -7225.0,0.23605314445973824 -7226.0,0.2359716286700887 -7227.0,0.2358901410301338 -7228.0,0.23580868153015289 -7229.0,0.23572725016042823 -7230.0,0.23564584691124582 -7231.0,0.23556447177289472 -7232.0,0.23548312473566752 -7233.0,0.23540180578986017 -7234.0,0.23532051492577183 -7235.0,0.23523925213370514 -7236.0,0.235158017403966 -7237.0,0.23507681072686373 -7238.0,0.23499563209271096 -7239.0,0.23491448149182367 -7240.0,0.23483335891452117 -7241.0,0.23475226435112617 -7242.0,0.2346711977919646 -7243.0,0.23459015922736592 -7244.0,0.23450914864766273 -7245.0,0.2344281660431911 -7246.0,0.23434721140429038 -7247.0,0.23426628472130331 -7248.0,0.23418538598457583 -7249.0,0.23410451518445743 -7250.0,0.23402367231130072 -7251.0,0.23394285735546178 -7252.0,0.2338620703073 -7253.0,0.233781311157178 -7254.0,0.2337005798954619 -7255.0,0.23361987651252095 -7256.0,0.2335392009987279 -7257.0,0.23345855334445867 -7258.0,0.2333779335400927 -7259.0,0.23329734157601248 -7260.0,0.23321677744260416 -7261.0,0.23313624113025685 -7262.0,0.23305573262936327 -7263.0,0.2329752519303193 -7264.0,0.2328947990235242 -7265.0,0.23281437389938048 -7266.0,0.23273397654829406 -7267.0,0.23265360696067408 -7268.0,0.2325732651269331 -7269.0,0.23249295103748685 -7270.0,0.23241266468275446 -7271.0,0.2323324060531584 -7272.0,0.23225217513912436 -7273.0,0.2321719719310814 -7274.0,0.23209179641946182 -7275.0,0.23201164859470133 -7276.0,0.2319315284472388 -7277.0,0.2318514359675166 -7278.0,0.23177137114598012 -7279.0,0.23169133397307837 -7280.0,0.23161132443926336 -7281.0,0.23153134253499066 -7282.0,0.2314513882507189 -7283.0,0.23137146157691024 -7284.0,0.23129156250402988 -7285.0,0.23121169102254654 -7286.0,0.23113184712293205 -7287.0,0.23105203079566172 -7288.0,0.23097224203121394 -7289.0,0.23089248082007055 -7290.0,0.23081274715271663 -7291.0,0.23073304101964048 -7292.0,0.23065336241133383 -7293.0,0.2305737113182915 -7294.0,0.23049408773101177 -7295.0,0.23041449163999606 -7296.0,0.23033492303574923 -7297.0,0.2302553819087792 -7298.0,0.23017586824959743 -7299.0,0.2300963820487184 -7300.0,0.2300169232966601 -7301.0,0.22993749198394356 -7302.0,0.22985808810109334 -7303.0,0.22977871163863697 -7304.0,0.22969936258710558 -7305.0,0.22962004093703328 -7306.0,0.22954074667895769 -7307.0,0.22946147980341944 -7308.0,0.2293822403009627 -7309.0,0.22930302816213471 -7310.0,0.22922384337748605 -7311.0,0.22914468593757062 -7312.0,0.22906555583294538 -7313.0,0.2289864530541708 -7314.0,0.22890737759181043 -7315.0,0.2288283294364312 -7316.0,0.22874930857860318 -7317.0,0.2286703150088998 -7318.0,0.22859134871789769 -7319.0,0.22851240969617675 -7320.0,0.2284334979343201 -7321.0,0.22835461342291422 -7322.0,0.22827575615254866 -7323.0,0.22819692611381642 -7324.0,0.22811812329731357 -7325.0,0.22803934769363957 -7326.0,0.22796059929339701 -7327.0,0.2278818780871918 -7328.0,0.22780318406563316 -7329.0,0.22772451721933332 -7330.0,0.227645877538908 -7331.0,0.227567265014976 -7332.0,0.22748867963815952 -7333.0,0.22741012139908376 -7334.0,0.2273315902883774 -7335.0,0.22725308629667215 -7336.0,0.2271746094146032 -7337.0,0.2270961596328087 -7338.0,0.22701773694193023 -7339.0,0.22693934133261248 -7340.0,0.22686097279550352 -7341.0,0.22678263132125445 -7342.0,0.2267043169005198 -7343.0,0.2266260295239571 -7344.0,0.2265477691822274 -7345.0,0.2264695358659947 -7346.0,0.2263913295659263 -7347.0,0.22631315027269291 -7348.0,0.2262349979769682 -7349.0,0.22615687266942922 -7350.0,0.2260787743407561 -7351.0,0.2260007029816324 -7352.0,0.22592265858274468 -7353.0,0.22584464113478292 -7354.0,0.22576665062844006 -7355.0,0.22568868705441253 -7356.0,0.22561075040339976 -7357.0,0.22553284066610457 -7358.0,0.22545495783323277 -7359.0,0.22537710189549365 -7360.0,0.2252992728435994 -7361.0,0.22522147066826573 -7362.0,0.2251436953602113 -7363.0,0.2250659469101582 -7364.0,0.22498822530883147 -7365.0,0.22491053054695956 -7366.0,0.22483286261527408 -7367.0,0.22475522150450974 -7368.0,0.2246776072054046 -7369.0,0.22460001970869978 -7370.0,0.22452245900513973 -7371.0,0.2244449250854719 -7372.0,0.2243674179404472 -7373.0,0.22428993756081944 -7374.0,0.22421248393734594 -7375.0,0.2241350570607869 -7376.0,0.224057656921906 -7377.0,0.2239802835114698 -7378.0,0.22390293682024842 -7379.0,0.22382561683901475 -7380.0,0.22374832355854526 -7381.0,0.22367105696961928 -7382.0,0.22359381706301962 -7383.0,0.22351660382953195 -7384.0,0.2234394172599454 -7385.0,0.22336225734505222 -7386.0,0.22328512407564766 -7387.0,0.2232080174425304 -7388.0,0.22313093743650214 -7389.0,0.2230538840483678 -7390.0,0.22297685726893543 -7391.0,0.22289985708901638 -7392.0,0.222822883499425 -7393.0,0.222745936490979 -7394.0,0.22266901605449907 -7395.0,0.22259212218080923 -7396.0,0.22251525486073653 -7397.0,0.22243841408511136 -7398.0,0.22236159984476705 -7399.0,0.22228481213054038 -7400.0,0.22220805093327095 -7401.0,0.2221313162438019 -7402.0,0.22205460805297916 -7403.0,0.2219779263516521 -7404.0,0.22190127113067318 -7405.0,0.2218246423808979 -7406.0,0.22174804009318513 -7407.0,0.22167146425839665 -7408.0,0.22159491486739763 -7409.0,0.22151839191105616 -7410.0,0.22144189538024375 -7411.0,0.2213654252658348 -7412.0,0.22128898155870708 -7413.0,0.2212125642497413 -7414.0,0.2211361733298216 -7415.0,0.22105980878983492 -7416.0,0.22098347062067167 -7417.0,0.22090715881322515 -7418.0,0.22083087335839202 -7419.0,0.22075461424707188 -7420.0,0.22067838147016766 -7421.0,0.22060217501858528 -7422.0,0.2205259948832339 -7423.0,0.22044984105502582 -7424.0,0.22037371352487636 -7425.0,0.22029761228370415 -7426.0,0.2202215373224308 -7427.0,0.22014548863198116 -7428.0,0.22006946620328313 -7429.0,0.21999347002726785 -7430.0,0.21991750009486946 -7431.0,0.2198415563970254 -7432.0,0.21976563892467604 -7433.0,0.21968974766876506 -7434.0,0.2196138826202391 -7435.0,0.2195380437700481 -7436.0,0.21946223110914492 -7437.0,0.21938644462848583 -7438.0,0.21931068431902992 -7439.0,0.2192349501717396 -7440.0,0.21915924217758032 -7441.0,0.21908356032752063 -7442.0,0.21900790461253233 -7443.0,0.21893227502359017 -7444.0,0.21885667155167213 -7445.0,0.2187810941877592 -7446.0,0.21870554292283567 -7447.0,0.2186300177478887 -7448.0,0.2185545186539088 -7449.0,0.21847904563188936 -7450.0,0.21840359867282713 -7451.0,0.2183281777677217 -7452.0,0.21825278290757605 -7453.0,0.21817741408339597 -7454.0,0.21810207128619066 -7455.0,0.21802675450697212 -7456.0,0.21795146373675578 -7457.0,0.21787619896655983 -7458.0,0.21780096018740586 -7459.0,0.21772574739031833 -7460.0,0.21765056056632495 -7461.0,0.21757539970645656 -7462.0,0.2175002648017469 -7463.0,0.21742515584323296 -7464.0,0.2173500728219548 -7465.0,0.21727501572895558 -7466.0,0.21719998455528144 -7467.0,0.21712497929198188 -7468.0,0.21704999993010912 -7469.0,0.21697504646071886 -7470.0,0.21690011887486954 -7471.0,0.21682521716362296 -7472.0,0.2167503413180438 -7473.0,0.2166754913292 -7474.0,0.21660066718816243 -7475.0,0.2165258688860052 -7476.0,0.2164510964138053 -7477.0,0.21637634976264306 -7478.0,0.2163016289236016 -7479.0,0.21622693388776734 -7480.0,0.2161522646462298 -7481.0,0.2160776211900813 -7482.0,0.2160030035104176 -7483.0,0.2159284115983372 -7484.0,0.21585384544494196 -7485.0,0.21577930504133655 -7486.0,0.215704790378629 -7487.0,0.21563030144793008 -7488.0,0.21555583824035396 -7489.0,0.2154814007470176 -7490.0,0.21540698895904126 -7491.0,0.21533260286754805 -7492.0,0.21525824246366435 -7493.0,0.2151839077385194 -7494.0,0.21510959868324572 -7495.0,0.21503531528897868 -7496.0,0.2149610575468569 -7497.0,0.2148868254480219 -7498.0,0.21481261898361836 -7499.0,0.21473843814479404 -7500.0,0.21466428292269962 -7501.0,0.214590153308489 -7502.0,0.214516049293319 -7503.0,0.2144419708683496 -7504.0,0.2143679180247437 -7505.0,0.21429389075366748 -7506.0,0.21421988904628986 -7507.0,0.2141459128937831 -7508.0,0.2140719622873223 -7509.0,0.2139980372180858 -7510.0,0.21392413767725474 -7511.0,0.21385026365601356 -7512.0,0.21377641514554954 -7513.0,0.2137025921370532 -7514.0,0.21362879462171785 -7515.0,0.21355502259074013 -7516.0,0.21348127603531944 -7517.0,0.21340755494665842 -7518.0,0.21333385931596274 -7519.0,0.21326018913444095 -7520.0,0.21318654439330478 -7521.0,0.21311292508376894 -7522.0,0.2130393311970512 -7523.0,0.21296576272437232 -7524.0,0.21289221965695615 -7525.0,0.21281870198602948 -7526.0,0.21274520970282226 -7527.0,0.21267174279856735 -7528.0,0.21259830126450072 -7529.0,0.21252488509186127 -7530.0,0.21245149427189106 -7531.0,0.212378128795835 -7532.0,0.21230478865494126 -7533.0,0.21223147384046076 -7534.0,0.2121581843436477 -7535.0,0.21208492015575905 -7536.0,0.212011681268055 -7537.0,0.21193846767179875 -7538.0,0.2118652793582563 -7539.0,0.21179211631869696 -7540.0,0.2117189785443928 -7541.0,0.21164586602661914 -7542.0,0.21157277875665403 -7543.0,0.21149971672577886 -7544.0,0.21142667992527772 -7545.0,0.21135366834643796 -7546.0,0.21128068198054972 -7547.0,0.2112077208189064 -7548.0,0.21113478485280412 -7549.0,0.2110618740735423 -7550.0,0.21098898847242306 -7551.0,0.2109161280407518 -7552.0,0.21084329276983674 -7553.0,0.2107704826509892 -7554.0,0.2106976976755234 -7555.0,0.21062493783475666 -7556.0,0.21055220312000933 -7557.0,0.21047949352260456 -7558.0,0.21040680903386874 -7559.0,0.21033414964513109 -7560.0,0.2102615153477239 -7561.0,0.21018890613298233 -7562.0,0.21011632199224478 -7563.0,0.21004376291685237 -7564.0,0.2099712288981494 -7565.0,0.20989871992748305 -7566.0,0.2098262359962036 -7567.0,0.20975377709566412 -7568.0,0.2096813432172209 -7569.0,0.20960893435223305 -7570.0,0.20953655049206277 -7571.0,0.20946419162807514 -7572.0,0.20939185775163832 -7573.0,0.20931954885412335 -7574.0,0.20924726492690435 -7575.0,0.2091750059613584 -7576.0,0.20910277194886545 -7577.0,0.2090305628808086 -7578.0,0.20895837874857376 -7579.0,0.20888621954354997 -7580.0,0.20881408525712905 -7581.0,0.208741975880706 -7582.0,0.20866989140567865 -7583.0,0.2085978318234479 -7584.0,0.2085257971254175 -7585.0,0.2084537873029943 -7586.0,0.20838180234758796 -7587.0,0.20830984225061133 -7588.0,0.20823790700347997 -7589.0,0.20816599659761262 -7590.0,0.20809411102443082 -7591.0,0.20802225027535923 -7592.0,0.2079504143418253 -7593.0,0.20787860321525956 -7594.0,0.2078068168870955 -7595.0,0.2077350553487695 -7596.0,0.20766331859172096 -7597.0,0.20759160660739215 -7598.0,0.2075199193872284 -7599.0,0.20744825692267793 -7600.0,0.207376619205192 -7601.0,0.2073050062262246 -7602.0,0.20723341797723296 -7603.0,0.20716185444967705 -7604.0,0.20709031563501995 -7605.0,0.20701880152472749 -7606.0,0.20694731211026865 -7607.0,0.20687584738311518 -7608.0,0.20680440733474192 -7609.0,0.20673299195662656 -7610.0,0.20666160124024985 -7611.0,0.20659023517709524 -7612.0,0.2065188937586494 -7613.0,0.20644757697640181 -7614.0,0.20637628482184484 -7615.0,0.20630501728647394 -7616.0,0.20623377436178733 -7617.0,0.20616255603928632 -7618.0,0.20609136231047498 -7619.0,0.20602019316686057 -7620.0,0.20594904859995297 -7621.0,0.20587792860126528 -7622.0,0.2058068331623133 -7623.0,0.20573576227461596 -7624.0,0.2056647159296949 -7625.0,0.20559369411907497 -7626.0,0.20552269683428362 -7627.0,0.20545172406685153 -7628.0,0.20538077580831207 -7629.0,0.2053098520502017 -7630.0,0.20523895278405965 -7631.0,0.2051680780014282 -7632.0,0.20509722769385255 -7633.0,0.20502640185288068 -7634.0,0.2049556004700637 -7635.0,0.20488482353695542 -7636.0,0.20481407104511273 -7637.0,0.2047433429860953 -7638.0,0.2046726393514659 -7639.0,0.20460196013279 -7640.0,0.20453130532163616 -7641.0,0.20446067490957567 -7642.0,0.20439006888818298 -7643.0,0.20431948724903518 -7644.0,0.2042489299837125 -7645.0,0.20417839708379787 -7646.0,0.20410788854087733 -7647.0,0.20403740434653964 -7648.0,0.2039669444923766 -7649.0,0.20389650896998282 -7650.0,0.2038260977709559 -7651.0,0.20375571088689629 -7652.0,0.20368534830940732 -7653.0,0.2036150100300953 -7654.0,0.20354469604056932 -7655.0,0.20347440633244152 -7656.0,0.20340414089732672 -7657.0,0.2033338997268429 -7658.0,0.2032636828126107 -7659.0,0.20319349014625385 -7660.0,0.20312332171939879 -7661.0,0.203053177523675 -7662.0,0.2029830575507147 -7663.0,0.2029129617921532 -7664.0,0.2028428902396285 -7665.0,0.20277284288478167 -7666.0,0.20270281971925647 -7667.0,0.2026328207346997 -7668.0,0.20256284592276097 -7669.0,0.2024928952750928 -7670.0,0.20242296878335064 -7671.0,0.20235306643919268 -7672.0,0.20228318823428015 -7673.0,0.20221333416027704 -7674.0,0.2021435042088503 -7675.0,0.20207369837166972 -7676.0,0.20200391664040798 -7677.0,0.20193415900674058 -7678.0,0.20186442546234604 -7679.0,0.20179471599890555 -7680.0,0.20172503060810337 -7681.0,0.20165536928162645 -7682.0,0.20158573201116478 -7683.0,0.20151611878841108 -7684.0,0.2014465296050611 -7685.0,0.20137696445281322 -7686.0,0.20130742332336893 -7687.0,0.2012379062084324 -7688.0,0.2011684130997108 -7689.0,0.20109894398891415 -7690.0,0.2010294988677552 -7691.0,0.20096007772794972 -7692.0,0.2008906805612162 -7693.0,0.20082130735927617 -7694.0,0.2007519581138538 -7695.0,0.20068263281667634 -7696.0,0.20061333145947366 -7697.0,0.20054405403397876 -7698.0,0.2004748005319272 -7699.0,0.20040557094505768 -7700.0,0.2003363652651115 -7701.0,0.20026718348383304 -7702.0,0.2001980255929693 -7703.0,0.20012889158427033 -7704.0,0.2000597814494889 -7705.0,0.19999069518038073 -7706.0,0.19992163276870425 -7707.0,0.19985259420622087 -7708.0,0.19978357948469483 -7709.0,0.19971458859589308 -7710.0,0.19964562153158563 -7711.0,0.19957667828354508 -7712.0,0.19950775884354716 -7713.0,0.1994388632033701 -7714.0,0.1993699913547953 -7715.0,0.19930114328960677 -7716.0,0.1992323189995915 -7717.0,0.19916351847653918 -7718.0,0.19909474171224248 -7719.0,0.19902598869849675 -7720.0,0.19895725942710038 -7721.0,0.19888855388985432 -7722.0,0.19881987207856264 -7723.0,0.198751213985032 -7724.0,0.19868257960107205 -7725.0,0.19861396891849517 -7726.0,0.1985453819291166 -7727.0,0.1984768186247545 -7728.0,0.19840827899722965 -7729.0,0.19833976303836587 -7730.0,0.1982712707399896 -7731.0,0.19820280209393032 -7732.0,0.19813435709202012 -7733.0,0.19806593572609413 -7734.0,0.19799753798799002 -7735.0,0.1979291638695486 -7736.0,0.1978608133626132 -7737.0,0.19779248645903025 -7738.0,0.19772418315064869 -7739.0,0.19765590342932055 -7740.0,0.19758764728690048 -7741.0,0.1975194147152461 -7742.0,0.19745120570621766 -7743.0,0.19738302025167845 -7744.0,0.1973148583434943 -7745.0,0.19724671997353407 -7746.0,0.1971786051336694 -7747.0,0.19711051381577455 -7748.0,0.19704244601172688 -7749.0,0.19697440171340624 -7750.0,0.1969063809126956 -7751.0,0.19683838360148043 -7752.0,0.19677040977164928 -7753.0,0.19670245941509323 -7754.0,0.1966345325237064 -7755.0,0.19656662908938555 -7756.0,0.19649874910403034 -7757.0,0.19643089255954316 -7758.0,0.19636305944782922 -7759.0,0.1962952497607965 -7760.0,0.19622746349035586 -7761.0,0.1961597006284208 -7762.0,0.19609196116690783 -7763.0,0.196024245097736 -7764.0,0.19595655241282733 -7765.0,0.19588888310410665 -7766.0,0.19582123716350136 -7767.0,0.1957536145829419 -7768.0,0.19568601535436136 -7769.0,0.19561843946969565 -7770.0,0.1955508869208834 -7771.0,0.1954833576998662 -7772.0,0.1954158517985882 -7773.0,0.1953483692089965 -7774.0,0.19528090992304087 -7775.0,0.19521347393267396 -7776.0,0.1951460612298511 -7777.0,0.19507867180653052 -7778.0,0.19501130565467303 -7779.0,0.19494396276624248 -7780.0,0.19487664313320524 -7781.0,0.19480934674753067 -7782.0,0.1947420736011907 -7783.0,0.19467482368616015 -7784.0,0.1946075969944167 -7785.0,0.19454039351794059 -7786.0,0.194473213248715 -7787.0,0.19440605617872572 -7788.0,0.19433892229996155 -7789.0,0.19427181160441376 -7790.0,0.19420472408407663 -7791.0,0.19413765973094702 -7792.0,0.19407061853702476 -7793.0,0.1940036004943122 -7794.0,0.19393660559481468 -7795.0,0.19386963383054012 -7796.0,0.19380268519349933 -7797.0,0.19373575967570578 -7798.0,0.1936688572691758 -7799.0,0.19360197796592835 -7800.0,0.19353512175798532 -7801.0,0.19346828863737112 -7802.0,0.19340147859611312 -7803.0,0.1933346916262414 -7804.0,0.19326792771978868 -7805.0,0.19320118686879062 -7806.0,0.1931344690652854 -7807.0,0.1930677743013142 -7808.0,0.19300110256892067 -7809.0,0.1929344538601515 -7810.0,0.1928678281670559 -7811.0,0.19280122548168596 -7812.0,0.19273464579609642 -7813.0,0.19266808910234487 -7814.0,0.19260155539249152 -7815.0,0.1925350446585994 -7816.0,0.19246855689273426 -7817.0,0.19240209208696465 -7818.0,0.19233565023336172 -7819.0,0.1922692313239995 -7820.0,0.19220283535095464 -7821.0,0.19213646230630665 -7822.0,0.1920701121821377 -7823.0,0.19200378497053266 -7824.0,0.19193748066357924 -7825.0,0.19187119925336774 -7826.0,0.19180494073199136 -7827.0,0.19173870509154584 -7828.0,0.19167249232412986 -7829.0,0.19160630242184462 -7830.0,0.19154013537679426 -7831.0,0.1914739911810854 -7832.0,0.19140786982682764 -7833.0,0.19134177130613308 -7834.0,0.19127569561111676 -7835.0,0.19120964273389623 -7836.0,0.19114361266659194 -7837.0,0.19107760540132693 -7838.0,0.19101162093022706 -7839.0,0.19094565924542078 -7840.0,0.1908797203390394 -7841.0,0.19081380420321697 -7842.0,0.19074791083009002 -7843.0,0.19068204021179808 -7844.0,0.19061619234048316 -7845.0,0.1905503672082902 -7846.0,0.19048456480736664 -7847.0,0.1904187851298628 -7848.0,0.1903530281679316 -7849.0,0.19028729391372876 -7850.0,0.19022158235941258 -7851.0,0.1901558934971443 -7852.0,0.19009022731908753 -7853.0,0.19002458381740894 -7854.0,0.1899589629842776 -7855.0,0.18989336481186556 -7856.0,0.1898277892923473 -7857.0,0.1897622364179003 -7858.0,0.1896967061807044 -7859.0,0.18963119857294242 -7860.0,0.1895657135867998 -7861.0,0.18950025121446457 -7862.0,0.18943481144812765 -7863.0,0.18936939427998248 -7864.0,0.18930399970222533 -7865.0,0.18923862770705502 -7866.0,0.18917327828667324 -7867.0,0.18910795143328418 -7868.0,0.18904264713909494 -7869.0,0.1889773653963151 -7870.0,0.18891210619715706 -7871.0,0.18884686953383584 -7872.0,0.18878165539856928 -7873.0,0.18871646378357768 -7874.0,0.18865129468108424 -7875.0,0.1885861480833147 -7876.0,0.18852102398249765 -7877.0,0.18845592237086412 -7878.0,0.18839084324064806 -7879.0,0.188325786584086 -7880.0,0.1882607523934171 -7881.0,0.18819574066088335 -7882.0,0.1881307513787292 -7883.0,0.188065784539202 -7884.0,0.18800084013455162 -7885.0,0.18793591815703073 -7886.0,0.18787101859889455 -7887.0,0.18780614145240107 -7888.0,0.18774128670981088 -7889.0,0.18767645436338737 -7890.0,0.1876116444053964 -7891.0,0.1875468568281067 -7892.0,0.18748209162378954 -7893.0,0.18741734878471894 -7894.0,0.18735262830317148 -7895.0,0.1872879301714266 -7896.0,0.18722325438176612 -7897.0,0.18715860092647482 -7898.0,0.18709396979784 -7899.0,0.18702936098815157 -7900.0,0.18696477448970225 -7901.0,0.1869002102947873 -7902.0,0.1868356683957047 -7903.0,0.186771148784755 -7904.0,0.18670665145424162 -7905.0,0.18664217639647038 -7906.0,0.1865777236037499 -7907.0,0.18651329306839146 -7908.0,0.186448884782709 -7909.0,0.18638449873901897 -7910.0,0.18632013492964067 -7911.0,0.18625579334689593 -7912.0,0.1861914739831093 -7913.0,0.18612717683060795 -7914.0,0.18606290188172167 -7915.0,0.18599864912878292 -7916.0,0.18593441856412682 -7917.0,0.1858702101800912 -7918.0,0.18580602396901635 -7919.0,0.18574185992324546 -7920.0,0.1856777180351241 -7921.0,0.1856135982970007 -7922.0,0.18554950070122617 -7923.0,0.1854854252401542 -7924.0,0.185421371906141 -7925.0,0.18535734069154555 -7926.0,0.1852933315887293 -7927.0,0.1852293445900565 -7928.0,0.1851653796878939 -7929.0,0.18510143687461103 -7930.0,0.18503751614257993 -7931.0,0.18497361748417535 -7932.0,0.18490974089177462 -7933.0,0.18484588635775775 -7934.0,0.18478205387450733 -7935.0,0.18471824343440862 -7936.0,0.18465445502984956 -7937.0,0.18459068865322056 -7938.0,0.18452694429691488 -7939.0,0.18446322195332812 -7940.0,0.1843995216148588 -7941.0,0.1843358432739079 -7942.0,0.18427218692287906 -7943.0,0.18420855255417848 -7944.0,0.18414494016021515 -7945.0,0.18408134973340046 -7946.0,0.18401778126614865 -7947.0,0.18395423475087636 -7948.0,0.18389071018000305 -7949.0,0.18382720754595064 -7950.0,0.18376372684114375 -7951.0,0.18370026805800957 -7952.0,0.18363683118897797 -7953.0,0.18357341622648138 -7954.0,0.1835100231629548 -7955.0,0.183446651990836 -7956.0,0.1833833027025652 -7957.0,0.18331997529058533 -7958.0,0.18325666974734184 -7959.0,0.1831933860652829 -7960.0,0.18313012423685915 -7961.0,0.183066884254524 -7962.0,0.1830036661107333 -7963.0,0.18294046979794565 -7964.0,0.18287729530862215 -7965.0,0.18281414263522658 -7966.0,0.18275101177022526 -7967.0,0.18268790270608717 -7968.0,0.18262481543528378 -7969.0,0.18256174995028937 -7970.0,0.18249870624358053 -7971.0,0.18243568430763676 -7972.0,0.18237268413493987 -7973.0,0.18230970571797447 -7974.0,0.18224674904922772 -7975.0,0.18218381412118928 -7976.0,0.18212090092635153 -7977.0,0.18205800945720932 -7978.0,0.18199513970626022 -7979.0,0.18193229166600428 -7980.0,0.18186946532894424 -7981.0,0.1818066606875853 -7982.0,0.18174387773443543 -7983.0,0.18168111646200494 -7984.0,0.18161837686280702 -7985.0,0.18155565892935716 -7986.0,0.1814929626541737 -7987.0,0.1814302880297773 -7988.0,0.1813676350486914 -7989.0,0.18130500370344196 -7990.0,0.18124239398655753 -7991.0,0.18117980589056917 -7992.0,0.1811172394080106 -7993.0,0.18105469453141815 -7994.0,0.18099217125333059 -7995.0,0.18092966956628942 -7996.0,0.18086718946283858 -7997.0,0.18080473093552474 -7998.0,0.18074229397689692 -7999.0,0.180679878579507 -8000.0,0.1806174847359091 -8001.0,0.18055511243866026 -8002.0,0.1804927616803198 -8003.0,0.18043043245344983 -8004.0,0.18036812475061484 -8005.0,0.18030583856438204 -8006.0,0.18024357388732107 -8007.0,0.1801813307120043 -8008.0,0.18011910903100645 -8009.0,0.18005690883690506 -8010.0,0.17999473012228 -8011.0,0.17993257287971384 -8012.0,0.17987043710179174 -8013.0,0.17980832278110123 -8014.0,0.17974622991023262 -8015.0,0.17968415848177863 -8016.0,0.17962210848833463 -8017.0,0.17956007992249845 -8018.0,0.17949807277687063 -8019.0,0.17943608704405406 -8020.0,0.1793741227166544 -8021.0,0.17931217978727965 -8022.0,0.17925025824854057 -8023.0,0.17918835809305028 -8024.0,0.17912647931342465 -8025.0,0.17906462190228187 -8026.0,0.1790027858522429 -8027.0,0.1789409711559311 -8028.0,0.17887917780597246 -8029.0,0.17881740579499544 -8030.0,0.1787556551156311 -8031.0,0.1786939257605131 -8032.0,0.1786322177222775 -8033.0,0.17857053099356301 -8034.0,0.17850886556701084 -8035.0,0.1784472214352648 -8036.0,0.17838559859097114 -8037.0,0.17832399702677873 -8038.0,0.17826241673533894 -8039.0,0.1782008577093057 -8040.0,0.17813931994133544 -8041.0,0.17807780342408722 -8042.0,0.17801630815022249 -8043.0,0.17795483411240537 -8044.0,0.1778933813033024 -8045.0,0.17783194971558278 -8046.0,0.17777053934191808 -8047.0,0.1777091501749826 -8048.0,0.17764778220745295 -8049.0,0.17758643543200844 -8050.0,0.17752510984133085 -8051.0,0.17746380542810447 -8052.0,0.17740252218501615 -8053.0,0.17734126010475518 -8054.0,0.17728001918001352 -8055.0,0.17721879940348553 -8056.0,0.17715760076786816 -8057.0,0.1770964232658608 -8058.0,0.17703526689016555 -8059.0,0.17697413163348674 -8060.0,0.17691301748853153 -8061.0,0.17685192444800932 -8062.0,0.17679085250463222 -8063.0,0.17672980165111477 -8064.0,0.1766687718801741 -8065.0,0.17660776318452973 -8066.0,0.17654677555690385 -8067.0,0.17648580899002098 -8068.0,0.17642486347660832 -8069.0,0.17636393900939554 -8070.0,0.1763030355811147 -8071.0,0.17624215318450057 -8072.0,0.17618129181229022 -8073.0,0.17612045145722346 -8074.0,0.17605963211204234 -8075.0,0.17599883376949169 -8076.0,0.17593805642231858 -8077.0,0.17587730006327282 -8078.0,0.17581656468510654 -8079.0,0.17575585028057453 -8080.0,0.17569515684243395 -8081.0,0.17563448436344453 -8082.0,0.17557383283636846 -8083.0,0.17551320225397055 -8084.0,0.17545259260901785 -8085.0,0.17539200389428025 -8086.0,0.17533143610252983 -8087.0,0.17527088922654133 -8088.0,0.17521036325909198 -8089.0,0.17514985819296144 -8090.0,0.17508937402093191 -8091.0,0.17502891073578808 -8092.0,0.1749684683303171 -8093.0,0.17490804679730862 -8094.0,0.17484764612955483 -8095.0,0.17478726631985034 -8096.0,0.17472690736099233 -8097.0,0.17466656924578033 -8098.0,0.1746062519670165 -8099.0,0.17454595551750543 -8100.0,0.1744856798900542 -8101.0,0.1744254250774723 -8102.0,0.17436519107257187 -8103.0,0.17430497786816732 -8104.0,0.17424478545707578 -8105.0,0.1741846138321166 -8106.0,0.17412446298611184 -8107.0,0.17406433291188594 -8108.0,0.17400422360226578 -8109.0,0.1739441350500808 -8110.0,0.1738840672481628 -8111.0,0.17382402018934623 -8112.0,0.1737639938664678 -8113.0,0.1737039882723669 -8114.0,0.17364400339988528 -8115.0,0.17358403924186716 -8116.0,0.17352409579115924 -8117.0,0.1734641730406108 -8118.0,0.17340427098307332 -8119.0,0.17334438961140108 -8120.0,0.1732845289184506 -8121.0,0.17322468889708095 -8122.0,0.17316486954015364 -8123.0,0.17310507084053267 -8124.0,0.17304529279108447 -8125.0,0.17298553538467795 -8126.0,0.17292579861418456 -8127.0,0.17286608247247806 -8128.0,0.17280638695243478 -8129.0,0.17274671204693345 -8130.0,0.17268705774885537 -8131.0,0.1726274240510841 -8132.0,0.1725678109465059 -8133.0,0.17250821842800923 -8134.0,0.17244864648848526 -8135.0,0.1723890951208274 -8136.0,0.17232956431793167 -8137.0,0.17227005407269644 -8138.0,0.1722105643780226 -8139.0,0.1721510952268134 -8140.0,0.1720916466119747 -8141.0,0.17203221852641462 -8142.0,0.17197281096304387 -8143.0,0.1719134239147756 -8144.0,0.17185405737452528 -8145.0,0.17179471133521101 -8146.0,0.17173538578975314 -8147.0,0.17167608073107465 -8148.0,0.17161679615210082 -8149.0,0.1715575320457595 -8150.0,0.17149828840498083 -8151.0,0.17143906522269753 -8152.0,0.17137986249184467 -8153.0,0.17132068020535987 -8154.0,0.171261518356183 -8155.0,0.1712023769372566 -8156.0,0.17114325594152544 -8157.0,0.17108415536193688 -8158.0,0.17102507519144058 -8159.0,0.1709660154229888 -8160.0,0.17090697604953606 -8161.0,0.17084795706403944 -8162.0,0.17078895845945838 -8163.0,0.17072998022875477 -8164.0,0.170671022364893 -8165.0,0.17061208486083973 -8166.0,0.17055316770956425 -8167.0,0.17049427090403807 -8168.0,0.1704353944372353 -8169.0,0.17037653830213237 -8170.0,0.17031770249170822 -8171.0,0.1702588869989441 -8172.0,0.1702000918168238 -8173.0,0.17014131693833345 -8174.0,0.17008256235646171 -8175.0,0.17002382806419947 -8176.0,0.16996511405454026 -8177.0,0.16990642032047984 -8178.0,0.16984774685501658 -8179.0,0.16978909365115105 -8180.0,0.1697304607018864 -8181.0,0.16967184800022822 -8182.0,0.1696132555391843 -8183.0,0.16955468331176513 -8184.0,0.16949613131098332 -8185.0,0.16943759952985418 -8186.0,0.16937908796139522 -8187.0,0.16932059659862647 -8188.0,0.1692621254345703 -8189.0,0.1692036744622516 -8190.0,0.16914524367469747 -8191.0,0.16908683306493769 -8192.0,0.16902844262600417 -8193.0,0.16897007235093145 -8194.0,0.1689117222327563 -8195.0,0.16885339226451807 -8196.0,0.16879508243925834 -8197.0,0.16873679275002124 -8198.0,0.16867852318985313 -8199.0,0.168620273751803 -8200.0,0.16856204442892206 -8201.0,0.16850383521426396 -8202.0,0.1684456461008848 -8203.0,0.168387477081843 -8204.0,0.1683293281501995 -8205.0,0.16827119929901746 -8206.0,0.1682130905213626 -8207.0,0.1681550018103029 -8208.0,0.16809693315890892 -8209.0,0.16803888456025334 -8210.0,0.16798085600741153 -8211.0,0.16792284749346098 -8212.0,0.1678648590114818 -8213.0,0.16780689055455628 -8214.0,0.16774894211576932 -8215.0,0.16769101368820802 -8216.0,0.167633105264962 -8217.0,0.16757521683912313 -8218.0,0.16751734840378577 -8219.0,0.1674594999520467 -8220.0,0.1674016714770049 -8221.0,0.16734386297176201 -8222.0,0.16728607442942175 -8223.0,0.16722830584309048 -8224.0,0.16717055720587676 -8225.0,0.16711282851089163 -8226.0,0.16705511975124843 -8227.0,0.16699743092006303 -8228.0,0.16693976201045344 -8229.0,0.1668821130155403 -8230.0,0.16682448392844637 -8231.0,0.1667668747422971 -8232.0,0.16670928545021996 -8233.0,0.16665171604534507 -8234.0,0.16659416652080478 -8235.0,0.16653663686973388 -8236.0,0.16647912708526946 -8237.0,0.16642163716055106 -8238.0,0.16636416708872057 -8239.0,0.16630671686292214 -8240.0,0.1662492864763025 -8241.0,0.16619187592201048 -8242.0,0.16613448519319757 -8243.0,0.16607711428301736 -8244.0,0.166019763184626 -8245.0,0.16596243189118184 -8246.0,0.16590512039584576 -8247.0,0.16584782869178083 -8248.0,0.16579055677215265 -8249.0,0.16573330463012903 -8250.0,0.16567607225888026 -8251.0,0.16561885965157888 -8252.0,0.16556166680139994 -8253.0,0.16550449370152062 -8254.0,0.16544734034512068 -8255.0,0.1653902067253821 -8256.0,0.16533309283548925 -8257.0,0.1652759986686289 -8258.0,0.16521892421799012 -8259.0,0.16516186947676434 -8260.0,0.1651048344381453 -8261.0,0.1650478190953292 -8262.0,0.1649908234415145 -8263.0,0.16493384746990203 -8264.0,0.16487689117369497 -8265.0,0.16481995454609888 -8266.0,0.16476303758032157 -8267.0,0.16470614026957336 -8268.0,0.1646492626070667 -8269.0,0.1645924045860166 -8270.0,0.16453556619964024 -8271.0,0.16447874744115729 -8272.0,0.16442194830378956 -8273.0,0.1643651687807615 -8274.0,0.16430840886529957 -8275.0,0.16425166855063278 -8276.0,0.1641949478299925 -8277.0,0.16413824669661223 -8278.0,0.16408156514372807 -8279.0,0.1640249031645782 -8280.0,0.16396826075240337 -8281.0,0.16391163790044647 -8282.0,0.16385503460195286 -8283.0,0.1637984508501701 -8284.0,0.1637418866383483 -8285.0,0.16368534195973963 -8286.0,0.1636288168075988 -8287.0,0.1635723111751827 -8288.0,0.1635158250557507 -8289.0,0.16345935844256437 -8290.0,0.16340291132888768 -8291.0,0.16334648370798688 -8292.0,0.16329007557313058 -8293.0,0.16323368691758966 -8294.0,0.1631773177346374 -8295.0,0.1631209680175494 -8296.0,0.1630646377596035 -8297.0,0.16300832695407996 -8298.0,0.16295203559426122 -8299.0,0.16289576367343225 -8300.0,0.1628395111848801 -8301.0,0.16278327812189436 -8302.0,0.16272706447776678 -8303.0,0.16267087024579152 -8304.0,0.16261469541926493 -8305.0,0.1625585399914859 -8306.0,0.16250240395575538 -8307.0,0.1624462873053768 -8308.0,0.16239019003365585 -8309.0,0.16233411213390056 -8310.0,0.16227805359942116 -8311.0,0.16222201442353038 -8312.0,0.16216599459954306 -8313.0,0.1621099941207765 -8314.0,0.16205401298055028 -8315.0,0.16199805117218619 -8316.0,0.16194210868900843 -8317.0,0.16188618552434345 -8318.0,0.16183028167152008 -8319.0,0.16177439712386932 -8320.0,0.1617185318747246 -8321.0,0.16166268591742156 -8322.0,0.16160685924529827 -8323.0,0.1615510518516949 -8324.0,0.16149526372995415 -8325.0,0.1614394948734208 -8326.0,0.1613837452754421 -8327.0,0.16132801492936752 -8328.0,0.16127230382854882 -8329.0,0.16121661196634005 -8330.0,0.16116093933609765 -8331.0,0.1611052859311802 -8332.0,0.16104965174494867 -8333.0,0.16099403677076637 -8334.0,0.16093844100199878 -8335.0,0.16088286443201377 -8336.0,0.1608273070541814 -8337.0,0.16077176886187416 -8338.0,0.16071624984846666 -8339.0,0.16066075000733598 -8340.0,0.16060526933186128 -8341.0,0.16054980781542424 -8342.0,0.16049436545140863 -8343.0,0.16043894223320063 -8344.0,0.1603835381541886 -8345.0,0.16032815320776328 -8346.0,0.1602727873873176 -8347.0,0.16021744068624688 -8348.0,0.16016211309794862 -8349.0,0.16010680461582266 -8350.0,0.1600515152332711 -8351.0,0.1599962449436983 -8352.0,0.159940993740511 -8353.0,0.159885761617118 -8354.0,0.15983054856693063 -8355.0,0.15977535458336228 -8356.0,0.15972017965982882 -8357.0,0.15966502378974817 -8358.0,0.15960988696654071 -8359.0,0.15955476918362899 -8360.0,0.15949967043443788 -8361.0,0.15944459071239447 -8362.0,0.1593895300109282 -8363.0,0.15933448832347066 -8364.0,0.15927946564345585 -8365.0,0.1592244619643199 -8366.0,0.15916947727950134 -8367.0,0.15911451158244083 -8368.0,0.15905956486658143 -8369.0,0.15900463712536833 -8370.0,0.15894972835224908 -8371.0,0.1588948385406735 -8372.0,0.15883996768409356 -8373.0,0.15878511577596366 -8374.0,0.15873028280974028 -8375.0,0.1586754687788823 -8376.0,0.1586206736768508 -8377.0,0.15856589749710912 -8378.0,0.15851114023312282 -8379.0,0.15845640187835983 -8380.0,0.15840168242629019 -8381.0,0.15834698187038634 -8382.0,0.15829230020412283 -8383.0,0.1582376374209766 -8384.0,0.15818299351442675 -8385.0,0.15812836847795467 -8386.0,0.15807376230504394 -8387.0,0.15801917498918056 -8388.0,0.15796460652385252 -8389.0,0.15791005690255028 -8390.0,0.15785552611876646 -8391.0,0.15780101416599593 -8392.0,0.15774652103773584 -8393.0,0.1576920467274855 -8394.0,0.15763759122874654 -8395.0,0.15758315453502283 -8396.0,0.1575287366398205 -8397.0,0.1574743375366478 -8398.0,0.15741995721901544 -8399.0,0.15736559568043612 -8400.0,0.157311252914425 -8401.0,0.1572569289144993 -8402.0,0.15720262367417864 -8403.0,0.15714833718698476 -8404.0,0.1570940694464417 -8405.0,0.15703982044607567 -8406.0,0.1569855901794152 -8407.0,0.15693137863999101 -8408.0,0.15687718582133606 -8409.0,0.15682301171698554 -8410.0,0.15676885632047685 -8411.0,0.1567147196253497 -8412.0,0.1566606016251459 -8413.0,0.15660650231340964 -8414.0,0.15655242168368722 -8415.0,0.15649835972952725 -8416.0,0.15644431644448048 -8417.0,0.1563902918221 -8418.0,0.15633628585594103 -8419.0,0.1562822985395611 -8420.0,0.15622832986651983 -8421.0,0.15617437983037924 -8422.0,0.1561204484247034 -8423.0,0.1560665356430588 -8424.0,0.15601264147901392 -8425.0,0.15595876592613964 -8426.0,0.155904908978009 -8427.0,0.1558510706281972 -8428.0,0.15579725087028182 -8429.0,0.15574344969784246 -8430.0,0.1556896671044611 -8431.0,0.15563590308372183 -8432.0,0.15558215762921102 -8433.0,0.1555284307345172 -8434.0,0.15547472239323115 -8435.0,0.15542103259894588 -8436.0,0.15536736134525658 -8437.0,0.15531370862576063 -8438.0,0.1552600744340577 -8439.0,0.15520645876374958 -8440.0,0.15515286160844036 -8441.0,0.1550992829617362 -8442.0,0.15504572281724568 -8443.0,0.15499218116857935 -8444.0,0.1549386580093502 -8445.0,0.15488515333317318 -8446.0,0.15483166713366564 -8447.0,0.1547781994044471 -8448.0,0.15472475013913914 -8449.0,0.1546713193313658 -8450.0,0.15461790697475306 -8451.0,0.15456451306292926 -8452.0,0.15451113758952487 -8453.0,0.15445778054817264 -8454.0,0.15440444193250738 -8455.0,0.15435112173616627 -8456.0,0.15429781995278855 -8457.0,0.1542445365760157 -8458.0,0.15419127159949142 -8459.0,0.1541380250168616 -8460.0,0.15408479682177426 -8461.0,0.15403158700787975 -8462.0,0.15397839556883042 -8463.0,0.153925222498281 -8464.0,0.1538720677898883 -8465.0,0.15381893143731135 -8466.0,0.1537658134342114 -8467.0,0.15371271377425177 -8468.0,0.1536596324510982 -8469.0,0.15360656945841836 -8470.0,0.1535535247898823 -8471.0,0.15350049843916208 -8472.0,0.15344749039993216 -8473.0,0.15339450066586896 -8474.0,0.15334152923065128 -8475.0,0.15328857608795993 -8476.0,0.15323564123147806 -8477.0,0.15318272465489088 -8478.0,0.15312982635188588 -8479.0,0.1530769463161526 -8480.0,0.15302408454138292 -8481.0,0.15297124102127074 -8482.0,0.1529184157495123 -8483.0,0.15286560871980584 -8484.0,0.15281281992585188 -8485.0,0.1527600493613532 -8486.0,0.15270729702001454 -8487.0,0.152654562895543 -8488.0,0.15260184698164772 -8489.0,0.15254914927204016 -8490.0,0.1524964697604338 -8491.0,0.1524438084405444 -8492.0,0.1523911653060898 -8493.0,0.15233854035079009 -8494.0,0.1522859335683675 -8495.0,0.15223334495254642 -8496.0,0.1521807744970534 -8497.0,0.1521282221956172 -8498.0,0.15207568804196867 -8499.0,0.15202317202984092 -8500.0,0.1519706741529691 -8501.0,0.15191819440509066 -8502.0,0.1518657327799451 -8503.0,0.1518132892712742 -8504.0,0.15176086387282178 -8505.0,0.15170845657833384 -8506.0,0.15165606738155868 -8507.0,0.15160369627624654 -8508.0,0.15155134325615 -8509.0,0.15149900831502366 -8510.0,0.15144669144662443 -8511.0,0.15139439264471122 -8512.0,0.1513421119030452 -8513.0,0.1512898492153896 -8514.0,0.15123760457550997 -8515.0,0.1511853779771738 -8516.0,0.1511331694141509 -8517.0,0.15108097888021313 -8518.0,0.1510288063691346 -8519.0,0.15097665187469142 -8520.0,0.150924515390662 -8521.0,0.15087239691082685 -8522.0,0.15082029642896855 -8523.0,0.15076821393887196 -8524.0,0.150716149434324 -8525.0,0.15066410290911375 -8526.0,0.15061207435703242 -8527.0,0.15056006377187342 -8528.0,0.1505080711474322 -8529.0,0.15045609647750652 -8530.0,0.15040413975589606 -8531.0,0.1503522009764029 -8532.0,0.150300280132831 -8533.0,0.15024837721898665 -8534.0,0.15019649222867817 -8535.0,0.1501446251557161 -8536.0,0.15009277599391305 -8537.0,0.15004094473708382 -8538.0,0.1499891313790453 -8539.0,0.14993733591361652 -8540.0,0.14988555833461864 -8541.0,0.14983379863587504 -8542.0,0.14978205681121112 -8543.0,0.14973033285445447 -8544.0,0.1496786267594348 -8545.0,0.14962693851998393 -8546.0,0.1495752681299359 -8547.0,0.14952361558312668 -8548.0,0.14947198087339464 -8549.0,0.14942036399458003 -8550.0,0.1493687649405254 -8551.0,0.1493171837050753 -8552.0,0.14926562028207652 -8553.0,0.14921407466537787 -8554.0,0.14916254684883037 -8555.0,0.1491110368262871 -8556.0,0.14905954459160334 -8557.0,0.14900807013863637 -8558.0,0.14895661346124575 -8559.0,0.14890517455329297 -8560.0,0.14885375340864182 -8561.0,0.14880235002115813 -8562.0,0.1487509643847098 -8563.0,0.14869959649316694 -8564.0,0.14864824634040172 -8565.0,0.14859691392028845 -8566.0,0.14854559922670355 -8567.0,0.14849430225352556 -8568.0,0.14844302299463505 -8569.0,0.1483917614439149 -8570.0,0.14834051759524988 -8571.0,0.14828929144252703 -8572.0,0.1482380829796354 -8573.0,0.14818689220046624 -8574.0,0.14813571909891282 -8575.0,0.1480845636688706 -8576.0,0.14803342590423707 -8577.0,0.14798230579891192 -8578.0,0.14793120334679682 -8579.0,0.1478801185417957 -8580.0,0.14782905137781446 -8581.0,0.1477780018487612 -8582.0,0.14772696994854606 -8583.0,0.14767595567108127 -8584.0,0.1476249590102813 -8585.0,0.14757397996006252 -8586.0,0.14752301851434355 -8587.0,0.14747207466704504 -8588.0,0.14742114841208978 -8589.0,0.14737023974340263 -8590.0,0.14731934865491056 -8591.0,0.14726847514054262 -8592.0,0.14721761919423 -8593.0,0.1471667808099059 -8594.0,0.14711595998150576 -8595.0,0.14706515670296694 -8596.0,0.14701437096822903 -8597.0,0.1469636027712336 -8598.0,0.14691285210592447 -8599.0,0.1468621189662474 -8600.0,0.14681140334615028 -8601.0,0.14676070523958318 -8602.0,0.14671002464049807 -8603.0,0.14665936154284925 -8604.0,0.14660871594059288 -8605.0,0.14655808782768737 -8606.0,0.14650747719809312 -8607.0,0.14645688404577267 -8608.0,0.14640630836469062 -8609.0,0.1463557501488137 -8610.0,0.14630520939211056 -8611.0,0.14625468608855222 -8612.0,0.14620418023211149 -8613.0,0.14615369181676346 -8614.0,0.14610322083648522 -8615.0,0.14605276728525593 -8616.0,0.14600233115705685 -8617.0,0.1459519124458713 -8618.0,0.14590151114568478 -8619.0,0.14585112725048469 -8620.0,0.14580076075426066 -8621.0,0.14575041165100425 -8622.0,0.1457000799347093 -8623.0,0.14564976559937148 -8624.0,0.1455994686389888 -8625.0,0.14554918904756103 -8626.0,0.1454989268190903 -8627.0,0.14544868194758065 -8628.0,0.14539845442703828 -8629.0,0.1453482442514713 -8630.0,0.14529805141489016 -8631.0,0.14524787591130708 -8632.0,0.14519771773473658 -8633.0,0.1451475768791951 -8634.0,0.14509745333870125 -8635.0,0.1450473471072756 -8636.0,0.14499725817894085 -8637.0,0.14494718654772185 -8638.0,0.14489713220764527 -8639.0,0.14484709515274014 -8640.0,0.1447970753770373 -8641.0,0.14474707287456978 -8642.0,0.14469708763937267 -8643.0,0.14464711966548308 -8644.0,0.1445971689469402 -8645.0,0.14454723547778528 -8646.0,0.14449731925206158 -8647.0,0.14444742026381452 -8648.0,0.14439753850709144 -8649.0,0.14434767397594192 -8650.0,0.14429782666441734 -8651.0,0.14424799656657145 -8652.0,0.1441981836764597 -8653.0,0.14414838798813995 -8654.0,0.14409860949567177 -8655.0,0.14404884819311708 -8656.0,0.14399910407453967 -8657.0,0.1439493771340054 -8658.0,0.1438996673655823 -8659.0,0.14384997476334024 -8660.0,0.14380029932135135 -8661.0,0.14375064103368967 -8662.0,0.14370099989443133 -8663.0,0.14365137589765448 -8664.0,0.1436017690374394 -8665.0,0.1435521793078683 -8666.0,0.14350260670302553 -8667.0,0.14345305121699736 -8668.0,0.1434035128438723 -8669.0,0.14335399157774067 -8670.0,0.14330448741269503 -8671.0,0.14325500034282984 -8672.0,0.14320553036224168 -8673.0,0.14315607746502912 -8674.0,0.1431066416452928 -8675.0,0.1430572228971354 -8676.0,0.1430078212146616 -8677.0,0.1429584365919782 -8678.0,0.1429090690231939 -8679.0,0.14285971850241955 -8680.0,0.14281038502376794 -8681.0,0.14276106858135404 -8682.0,0.14271176916929465 -8683.0,0.1426624867817088 -8684.0,0.1426132214127174 -8685.0,0.14256397305644353 -8686.0,0.1425147417070121 -8687.0,0.14246552735855028 -8688.0,0.14241633000518705 -8689.0,0.14236714964105365 -8690.0,0.14231798626028314 -8691.0,0.14226883985701072 -8692.0,0.1422197104253735 -8693.0,0.1421705979595108 -8694.0,0.14212150245356386 -8695.0,0.14207242390167585 -8696.0,0.14202336229799217 -8697.0,0.14197431763666002 -8698.0,0.14192528991182882 -8699.0,0.14187627911764986 -8700.0,0.14182728524827656 -8701.0,0.14177830829786425 -8702.0,0.14172934826057038 -8703.0,0.14168040513055435 -8704.0,0.14163147890197764 -8705.0,0.14158256956900367 -8706.0,0.14153367712579792 -8707.0,0.14148480156652787 -8708.0,0.14143594288536307 -8709.0,0.14138710107647495 -8710.0,0.14133827613403716 -8711.0,0.14128946805222511 -8712.0,0.1412406768252164 -8713.0,0.14119190244719065 -8714.0,0.14114314491232935 -8715.0,0.14109440421481614 -8716.0,0.14104568034883658 -8717.0,0.1409969733085783 -8718.0,0.14094828308823085 -8719.0,0.1408996096819859 -8720.0,0.14085095308403697 -8721.0,0.14080231328857984 -8722.0,0.140753690289812 -8723.0,0.14070508408193313 -8724.0,0.14065649465914487 -8725.0,0.14060792201565087 -8726.0,0.14055936614565673 -8727.0,0.14051082704337012 -8728.0,0.14046230470300064 -8729.0,0.14041379911875998 -8730.0,0.14036531028486174 -8731.0,0.14031683819552154 -8732.0,0.1402683828449571 -8733.0,0.14021994422738793 -8734.0,0.14017152233703578 -8735.0,0.14012311716812414 -8736.0,0.14007472871487875 -8737.0,0.14002635697152713 -8738.0,0.13997800193229895 -8739.0,0.13992966359142575 -8740.0,0.13988134194314117 -8741.0,0.13983303698168073 -8742.0,0.13978474870128205 -8743.0,0.13973647709618467 -8744.0,0.13968822216063015 -8745.0,0.139639983888862 -8746.0,0.1395917622751258 -8747.0,0.139543557313669 -8748.0,0.13949536899874115 -8749.0,0.1394471973245937 -8750.0,0.1393990422854801 -8751.0,0.13935090387565593 -8752.0,0.13930278208937846 -8753.0,0.13925467692090726 -8754.0,0.13920658836450361 -8755.0,0.13915851641443097 -8756.0,0.13911046106495467 -8757.0,0.1390624223103421 -8758.0,0.13901440014486255 -8759.0,0.13896639456278737 -8760.0,0.13891840555838975 -8761.0,0.13887043312594508 -8762.0,0.1388224772597305 -8763.0,0.13877453795402525 -8764.0,0.13872661520311053 -8765.0,0.1386787090012695 -8766.0,0.1386308193427873 -8767.0,0.13858294622195105 -8768.0,0.13853508963304983 -8769.0,0.13848724957037467 -8770.0,0.13843942602821868 -8771.0,0.13839161900087676 -8772.0,0.13834382848264598 -8773.0,0.1382960544678252 -8774.0,0.13824829695071536 -8775.0,0.13820055592561933 -8776.0,0.13815283138684198 -8777.0,0.13810512332869004 -8778.0,0.1380574317454724 -8779.0,0.1380097566314997 -8780.0,0.13796209798108472 -8781.0,0.13791445578854208 -8782.0,0.13786683004818848 -8783.0,0.13781922075434244 -8784.0,0.13777162790132455 -8785.0,0.13772405148345734 -8786.0,0.13767649149506528 -8787.0,0.13762894793047478 -8788.0,0.1375814207840143 -8789.0,0.13753391005001417 -8790.0,0.1374864157228067 -8791.0,0.13743893779672617 -8792.0,0.1373914762661088 -8793.0,0.1373440311252928 -8794.0,0.13729660236861826 -8795.0,0.13724918999042734 -8796.0,0.13720179398506402 -8797.0,0.1371544143468744 -8798.0,0.13710705107020632 -8799.0,0.13705970414940977 -8800.0,0.13701237357883653 -8801.0,0.1369650593528405 -8802.0,0.1369177614657774 -8803.0,0.1368704799120049 -8804.0,0.1368232146858827 -8805.0,0.1367759657817724 -8806.0,0.13672873319403753 -8807.0,0.13668151691704356 -8808.0,0.136634316945158 -8809.0,0.1365871332727502 -8810.0,0.13653996589419154 -8811.0,0.1364928148038552 -8812.0,0.13644567999611648 -8813.0,0.1363985614653525 -8814.0,0.1363514592059424 -8815.0,0.13630437321226715 -8816.0,0.13625730347870985 -8817.0,0.13621024999965528 -8818.0,0.13616321276949045 -8819.0,0.13611619178260406 -8820.0,0.1360691870333869 -8821.0,0.1360221985162316 -8822.0,0.13597522622553285 -8823.0,0.1359282701556871 -8824.0,0.1358813303010929 -8825.0,0.13583440665615065 -8826.0,0.13578749921526267 -8827.0,0.13574060797283333 -8828.0,0.13569373292326875 -8829.0,0.13564687406097714 -8830.0,0.13560003138036855 -8831.0,0.135553204875855 -8832.0,0.13550639454185043 -8833.0,0.13545960037277072 -8834.0,0.13541282236303365 -8835.0,0.13536606050705896 -8836.0,0.13531931479926826 -8837.0,0.13527258523408514 -8838.0,0.1352258718059352 -8839.0,0.13517917450924574 -8840.0,0.13513249333844615 -8841.0,0.13508582828796772 -8842.0,0.13503917935224372 -8843.0,0.1349925465257091 -8844.0,0.13494592980280107 -8845.0,0.1348993291779585 -8846.0,0.1348527446456223 -8847.0,0.13480617620023533 -8848.0,0.13475962383624224 -8849.0,0.13471308754808967 -8850.0,0.13466656733022622 -8851.0,0.1346200631771024 -8852.0,0.1345735750831705 -8853.0,0.1345271030428849 -8854.0,0.1344806470507018 -8855.0,0.13443420710107942 -8856.0,0.1343877831884777 -8857.0,0.1343413753073586 -8858.0,0.13429498345218607 -8859.0,0.13424860761742596 -8860.0,0.1342022477975458 -8861.0,0.1341559039870153 -8862.0,0.13410957618030597 -8863.0,0.13406326437189126 -8864.0,0.13401696855624654 -8865.0,0.13397068872784892 -8866.0,0.13392442488117767 -8867.0,0.1338781770107138 -8868.0,0.13383194511094038 -8869.0,0.13378572917634213 -8870.0,0.1337395292014059 -8871.0,0.13369334518062034 -8872.0,0.13364717710847615 -8873.0,0.13360102497946563 -8874.0,0.1335548887880833 -8875.0,0.1335087685288254 -8876.0,0.13346266419619016 -8877.0,0.1334165757846776 -8878.0,0.13337050328878974 -8879.0,0.13332444670303048 -8880.0,0.13327840602190566 -8881.0,0.13323238123992284 -8882.0,0.13318637235159167 -8883.0,0.13314037935142362 -8884.0,0.13309440223393204 -8885.0,0.13304844099363228 -8886.0,0.13300249562504135 -8887.0,0.13295656612267842 -8888.0,0.13291065248106437 -8889.0,0.13286475469472214 -8890.0,0.1328188727581763 -8891.0,0.1327730066659536 -8892.0,0.13272715641258245 -8893.0,0.1326813219925934 -8894.0,0.13263550340051858 -8895.0,0.1325897006308922 -8896.0,0.13254391367825036 -8897.0,0.13249814253713108 -8898.0,0.13245238720207403 -8899.0,0.13240664766762106 -8900.0,0.1323609239283157 -8901.0,0.1323152159787035 -8902.0,0.13226952381333185 -8903.0,0.13222384742674992 -8904.0,0.1321781868135089 -8905.0,0.13213254196816182 -8906.0,0.1320869128852636 -8907.0,0.132041299559371 -8908.0,0.13199570198504262 -8909.0,0.1319501201568391 -8910.0,0.1319045540693229 -8911.0,0.13185900371705814 -8912.0,0.1318134690946111 -8913.0,0.13176795019654985 -8914.0,0.13172244701744434 -8915.0,0.13167695955186626 -8916.0,0.13163148779438938 -8917.0,0.13158603173958922 -8918.0,0.13154059138204324 -8919.0,0.13149516671633069 -8920.0,0.1314497577370327 -8921.0,0.1314043644387324 -8922.0,0.13135898681601468 -8923.0,0.13131362486346634 -8924.0,0.13126827857567594 -8925.0,0.13122294794723408 -8926.0,0.13117763297273308 -8927.0,0.13113233364676732 -8928.0,0.13108704996393275 -8929.0,0.13104178191882748 -8930.0,0.13099652950605128 -8931.0,0.130951292720206 -8932.0,0.13090607155589506 -8933.0,0.130860866007724 -8934.0,0.1308156760703001 -8935.0,0.13077050173823257 -8936.0,0.13072534300613237 -8937.0,0.13068019986861243 -8938.0,0.13063507232028748 -8939.0,0.13058996035577417 -8940.0,0.130544863969691 -8941.0,0.13049978315665822 -8942.0,0.13045471791129806 -8943.0,0.13040966822823455 -8944.0,0.13036463410209365 -8945.0,0.130319615527503 -8946.0,0.1302746124990923 -8947.0,0.130229625011493 -8948.0,0.13018465305933843 -8949.0,0.13013969663726374 -8950.0,0.13009475573990595 -8951.0,0.13004983036190396 -8952.0,0.13000492049789855 -8953.0,0.1299600261425322 -8954.0,0.12991514729044937 -8955.0,0.12987028393629635 -8956.0,0.12982543607472136 -8957.0,0.12978060370037423 -8958.0,0.12973578680790684 -8959.0,0.12969098539197288 -8960.0,0.12964619944722786 -8961.0,0.12960142896832919 -8962.0,0.12955667394993595 -8963.0,0.1295119343867093 -8964.0,0.1294672102733121 -8965.0,0.12942250160440916 -8966.0,0.12937780837466695 -8967.0,0.12933313057875392 -8968.0,0.12928846821134038 -8969.0,0.12924382126709846 -8970.0,0.129199189740702 -8971.0,0.12915457362682684 -8972.0,0.1291099729201506 -8973.0,0.12906538761535283 -8974.0,0.12902081770711465 -8975.0,0.12897626319011932 -8976.0,0.12893172405905176 -8977.0,0.12888720030859882 -8978.0,0.12884269193344916 -8979.0,0.12879819892829317 -8980.0,0.12875372128782317 -8981.0,0.12870925900673336 -8982.0,0.12866481207971975 -8983.0,0.12862038050148 -8984.0,0.12857596426671386 -8985.0,0.12853156337012275 -8986.0,0.12848717780641003 -8987.0,0.12844280757028076 -8988.0,0.12839845265644187 -8989.0,0.12835411305960223 -8990.0,0.12830978877447244 -8991.0,0.12826547979576483 -8992.0,0.12822118611819375 -8993.0,0.12817690773647528 -8994.0,0.12813264464532736 -8995.0,0.12808839683946965 -8996.0,0.12804416431362375 -8997.0,0.12799994706251303 -8998.0,0.12795574508086272 -8999.0,0.12791155836339987 -9000.0,0.12786738690485322 -9001.0,0.12782323069995352 -9002.0,0.12777908974343324 -9003.0,0.12773496403002677 -9004.0,0.12769085355447007 -9005.0,0.12764675831150116 -9006.0,0.1276026782958598 -9007.0,0.12755861350228764 -9008.0,0.12751456392552793 -9009.0,0.12747052956032595 -9010.0,0.12742651040142872 -9011.0,0.12738250644358512 -9012.0,0.1273385176815457 -9013.0,0.12729454411006297 -9014.0,0.1272505857238912 -9015.0,0.1272066425177865 -9016.0,0.1271627144865068 -9017.0,0.12711880162481168 -9018.0,0.12707490392746273 -9019.0,0.1270310213892233 -9020.0,0.12698715400485852 -9021.0,0.12694330176913526 -9022.0,0.1268994646768223 -9023.0,0.12685564272269026 -9024.0,0.12681183590151146 -9025.0,0.12676804420806004 -9026.0,0.12672426763711195 -9027.0,0.126680506183445 -9028.0,0.12663675984183886 -9029.0,0.12659302860707475 -9030.0,0.12654931247393592 -9031.0,0.12650561143720734 -9032.0,0.12646192549167587 -9033.0,0.12641825463213 -9034.0,0.12637459885336014 -9035.0,0.12633095815015846 -9036.0,0.126287332517319 -9037.0,0.12624372194963754 -9038.0,0.1262001264419116 -9039.0,0.12615654598894055 -9040.0,0.12611298058552559 -9041.0,0.12606943022646974 -9042.0,0.12602589490657765 -9043.0,0.12598237462065592 -9044.0,0.12593886936351292 -9045.0,0.12589537912995882 -9046.0,0.12585190391480547 -9047.0,0.1258084437128666 -9048.0,0.12576499851895775 -9049.0,0.1257215683278963 -9050.0,0.12567815313450123 -9051.0,0.12563475293359344 -9052.0,0.12559136771999566 -9053.0,0.1255479974885323 -9054.0,0.12550464223402968 -9055.0,0.12546130195131575 -9056.0,0.12541797663522036 -9057.0,0.12537466628057511 -9058.0,0.12533137088221344 -9059.0,0.12528809043497047 -9060.0,0.12524482493368314 -9061.0,0.1252015743731902 -9062.0,0.1251583387483323 -9063.0,0.12511511805395156 -9064.0,0.12507191228489217 -9065.0,0.12502872143599997 -9066.0,0.12498554550212267 -9067.0,0.12494238447810957 -9068.0,0.12489923835881195 -9069.0,0.12485610713908277 -9070.0,0.12481299081377688 -9071.0,0.12476988937775067 -9072.0,0.12472680282586253 -9073.0,0.12468373115297254 -9074.0,0.12464067435394258 -9075.0,0.12459763242363632 -9076.0,0.12455460535691906 -9077.0,0.12451159314865806 -9078.0,0.12446859579372227 -9079.0,0.12442561328698247 -9080.0,0.12438264562331106 -9081.0,0.12433969279758235 -9082.0,0.12429675480467238 -9083.0,0.12425383163945904 -9084.0,0.12421092329682178 -9085.0,0.124168029771642 -9086.0,0.12412515105880283 -9087.0,0.1240822871531892 -9088.0,0.12403943804968764 -9089.0,0.12399660374318663 -9090.0,0.12395378422857635 -9091.0,0.12391097950074874 -9092.0,0.12386818955459757 -9093.0,0.12382541438501818 -9094.0,0.12378265398690788 -9095.0,0.12373990835516566 -9096.0,0.12369717748469233 -9097.0,0.12365446137039032 -9098.0,0.12361176000716394 -9099.0,0.12356907338991922 -9100.0,0.12352640151356403 -9101.0,0.12348374437300783 -9102.0,0.12344110196316196 -9103.0,0.12339847427893952 -9104.0,0.12335586131525536 -9105.0,0.12331326306702597 -9106.0,0.12327067952916976 -9107.0,0.12322811069660682 -9108.0,0.12318555656425902 -9109.0,0.12314301712704989 -9110.0,0.12310049237990482 -9111.0,0.12305798231775093 -9112.0,0.12301548693551707 -9113.0,0.12297300622813392 -9114.0,0.12293054019053372 -9115.0,0.12288808881765062 -9116.0,0.12284565210442051 -9117.0,0.12280323004578106 -9118.0,0.12276082263667147 -9119.0,0.12271842987203295 -9120.0,0.12267605174680833 -9121.0,0.12263368825594227 -9122.0,0.122591339394381 -9123.0,0.12254900515707266 -9124.0,0.1225066855389671 -9125.0,0.12246438053501593 -9126.0,0.12242209014017238 -9127.0,0.12237981434939157 -9128.0,0.1223375531576303 -9129.0,0.12229530655984712 -9130.0,0.12225307455100236 -9131.0,0.12221085712605796 -9132.0,0.12216865427997774 -9133.0,0.1221264660077272 -9134.0,0.12208429230427364 -9135.0,0.12204213316458594 -9136.0,0.12199998858363488 -9137.0,0.12195785855639292 -9138.0,0.1219157430778343 -9139.0,0.12187364214293486 -9140.0,0.1218315557466723 -9141.0,0.12178948388402602 -9142.0,0.12174742654997722 -9143.0,0.12170538373950865 -9144.0,0.12166335544760497 -9145.0,0.12162134166925251 -9146.0,0.12157934239943938 -9147.0,0.12153735763315526 -9148.0,0.12149538736539174 -9149.0,0.12145343159114208 -9150.0,0.12141149030540124 -9151.0,0.12136956350316601 -9152.0,0.1213276511794347 -9153.0,0.12128575332920753 -9154.0,0.12124386994748641 -9155.0,0.12120200102927499 -9156.0,0.12116014656957852 -9157.0,0.12111830656340412 -9158.0,0.12107648100576057 -9159.0,0.12103466989165847 -9160.0,0.12099287321610991 -9161.0,0.12095109097412893 -9162.0,0.1209093231607312 -9163.0,0.12086756977093421 -9164.0,0.12082583079975695 -9165.0,0.12078410624222032 -9166.0,0.12074239609334687 -9167.0,0.12070070034816092 -9168.0,0.1206590190016885 -9169.0,0.12061735204895724 -9170.0,0.1205756994849966 -9171.0,0.12053406130483778 -9172.0,0.12049243750351364 -9173.0,0.12045082807605871 -9174.0,0.12040923301750933 -9175.0,0.12036765232290349 -9176.0,0.12032608598728099 -9177.0,0.12028453400568316 -9178.0,0.12024299637315321 -9179.0,0.12020147308473599 -9180.0,0.12015996413547812 -9181.0,0.1201184695204278 -9182.0,0.12007698923463508 -9183.0,0.12003552327315165 -9184.0,0.11999407163103099 -9185.0,0.11995263430332809 -9186.0,0.11991121128509985 -9187.0,0.11986980257140481 -9188.0,0.11982840815730321 -9189.0,0.11978702803785704 -9190.0,0.11974566220812986 -9191.0,0.11970431066318708 -9192.0,0.11966297339809574 -9193.0,0.1196216504079247 -9194.0,0.1195803416877443 -9195.0,0.11953904723262675 -9196.0,0.11949776703764595 -9197.0,0.1194565010978775 -9198.0,0.1194152494083986 -9199.0,0.11937401196428823 -9200.0,0.11933278876062711 -9201.0,0.11929157979249765 -9202.0,0.11925038505498381 -9203.0,0.11920920454317141 -9204.0,0.11916803825214792 -9205.0,0.1191268861770025 -9206.0,0.11908574831282606 -9207.0,0.11904462465471104 -9208.0,0.11900351519775176 -9209.0,0.11896241993704415 -9210.0,0.11892133886768588 -9211.0,0.1188802719847762 -9212.0,0.11883921928341618 -9213.0,0.11879818075870852 -9214.0,0.11875715640575768 -9215.0,0.11871614621966965 -9216.0,0.11867515019555226 -9217.0,0.11863416832851499 -9218.0,0.11859320061366907 -9219.0,0.11855224704612721 -9220.0,0.11851130762100402 -9221.0,0.11847038233341574 -9222.0,0.11842947117848031 -9223.0,0.11838857415131722 -9224.0,0.11834769124704783 -9225.0,0.11830682246079509 -9226.0,0.11826596778768365 -9227.0,0.11822512722283991 -9228.0,0.11818430076139178 -9229.0,0.118143488398469 -9230.0,0.11810269012920296 -9231.0,0.1180619059487268 -9232.0,0.11802113585217512 -9233.0,0.11798037983468443 -9234.0,0.1179396378913928 -9235.0,0.11789891001744011 -9236.0,0.11785819620796768 -9237.0,0.11781749645811873 -9238.0,0.11777681076303805 -9239.0,0.11773613911787219 -9240.0,0.11769548151776923 -9241.0,0.11765483795787905 -9242.0,0.11761420843335318 -9243.0,0.11757359293934483 -9244.0,0.11753299147100889 -9245.0,0.1174924040235018 -9246.0,0.11745183059198185 -9247.0,0.1174112711716089 -9248.0,0.11737072575754458 -9249.0,0.11733019434495198 -9250.0,0.11728967692899608 -9251.0,0.11724917350484346 -9252.0,0.11720868406766237 -9253.0,0.11716820861262263 -9254.0,0.11712774713489588 -9255.0,0.11708729962965533 -9256.0,0.11704686609207597 -9257.0,0.11700644651733424 -9258.0,0.11696604090060846 -9259.0,0.11692564923707852 -9260.0,0.11688527152192603 -9261.0,0.11684490775033414 -9262.0,0.1168045579174878 -9263.0,0.11676422201857355 -9264.0,0.11672390004877962 -9265.0,0.11668359200329595 -9266.0,0.11664329787731396 -9267.0,0.11660301766602695 -9268.0,0.11656275136462974 -9269.0,0.11652249896831891 -9270.0,0.11648226047229257 -9271.0,0.11644203587175059 -9272.0,0.11640182516189447 -9273.0,0.11636162833792742 -9274.0,0.11632144539505415 -9275.0,0.11628127632848118 -9276.0,0.11624112113341663 -9277.0,0.11620097980507033 -9278.0,0.1161608523386536 -9279.0,0.1161207387293796 -9280.0,0.11608063897246304 -9281.0,0.11604055306312035 -9282.0,0.11600048099656958 -9283.0,0.11596042276803036 -9284.0,0.11592037837272406 -9285.0,0.1158803478058737 -9286.0,0.11584033106270396 -9287.0,0.11580032813844102 -9288.0,0.1157603390283129 -9289.0,0.11572036372754918 -9290.0,0.11568040223138114 -9291.0,0.11564045453504158 -9292.0,0.11560052063376507 -9293.0,0.11556060052278778 -9294.0,0.11552069419734762 -9295.0,0.1154808016526839 -9296.0,0.11544092288403783 -9297.0,0.11540105788665213 -9298.0,0.11536120665577126 -9299.0,0.11532136918664115 -9300.0,0.11528154547450956 -9301.0,0.11524173551462577 -9302.0,0.11520193930224078 -9303.0,0.11516215683260721 -9304.0,0.11512238810097922 -9305.0,0.11508263310261273 -9306.0,0.11504289183276525 -9307.0,0.11500316428669602 -9308.0,0.11496345045966572 -9309.0,0.1149237503469368 -9310.0,0.11488406394377337 -9311.0,0.11484439124544116 -9312.0,0.1148047322472074 -9313.0,0.11476508694434112 -9314.0,0.11472545533211292 -9315.0,0.11468583740579509 -9316.0,0.1146462331606614 -9317.0,0.11460664259198741 -9318.0,0.11456706569505025 -9319.0,0.11452750246512866 -9320.0,0.11448795289750313 -9321.0,0.11444841698745555 -9322.0,0.11440889473026963 -9323.0,0.11436938612123067 -9324.0,0.11432989115562561 -9325.0,0.11429040982874292 -9326.0,0.11425094213587277 -9327.0,0.11421148807230698 -9328.0,0.11417204763333902 -9329.0,0.11413262081426381 -9330.0,0.11409320761037811 -9331.0,0.11405380801698017 -9332.0,0.11401442202936998 -9333.0,0.11397504964284896 -9334.0,0.11393569085272034 -9335.0,0.1138963456542889 -9336.0,0.1138570140428611 -9337.0,0.11381769601374483 -9338.0,0.11377839156224984 -9339.0,0.11373910068368734 -9340.0,0.11369982337337026 -9341.0,0.11366055962661313 -9342.0,0.11362130943873198 -9343.0,0.1135820728050446 -9344.0,0.11354284972087034 -9345.0,0.11350364018153022 -9346.0,0.11346444418234673 -9347.0,0.11342526171864413 -9348.0,0.11338609278574822 -9349.0,0.1133469373789865 -9350.0,0.11330779549368793 -9351.0,0.11326866712518317 -9352.0,0.11322955226880453 -9353.0,0.11319045091988593 -9354.0,0.11315136307376276 -9355.0,0.1131122887257722 -9356.0,0.11307322787125293 -9357.0,0.1130341805055453 -9358.0,0.11299514662399128 -9359.0,0.11295612622193432 -9360.0,0.1129171192947196 -9361.0,0.11287812583769392 -9362.0,0.11283914584620566 -9363.0,0.11280017931560471 -9364.0,0.11276122624124268 -9365.0,0.11272228661847278 -9366.0,0.1126833604426498 -9367.0,0.11264444770913008 -9368.0,0.11260554841327164 -9369.0,0.11256666255043409 -9370.0,0.11252779011597865 -9371.0,0.11248893110526806 -9372.0,0.11245008551366675 -9373.0,0.11241125333654073 -9374.0,0.11237243456925766 -9375.0,0.11233362920718663 -9376.0,0.11229483724569853 -9377.0,0.11225605868016571 -9378.0,0.1122172935059622 -9379.0,0.11217854171846364 -9380.0,0.11213980331304713 -9381.0,0.11210107828509151 -9382.0,0.11206236662997716 -9383.0,0.11202366834308612 -9384.0,0.11198498341980186 -9385.0,0.1119463118555096 -9386.0,0.1119076536455961 -9387.0,0.11186900878544978 -9388.0,0.1118303772704605 -9389.0,0.11179175909601982 -9390.0,0.11175315425752089 -9391.0,0.11171456275035849 -9392.0,0.11167598456992882 -9393.0,0.11163741971162985 -9394.0,0.11159886817086107 -9395.0,0.11156032994302355 -9396.0,0.11152180502352002 -9397.0,0.11148329340775465 -9398.0,0.11144479509113331 -9399.0,0.11140631006906344 -9400.0,0.11136783833695411 -9401.0,0.11132937989021584 -9402.0,0.11129093472426084 -9403.0,0.1112525028345029 -9404.0,0.11121408421635741 -9405.0,0.11117567886524123 -9406.0,0.11113728677657292 -9407.0,0.11109890794577258 -9408.0,0.11106054236826195 -9409.0,0.11102219003946419 -9410.0,0.1109838509548042 -9411.0,0.11094552510970843 -9412.0,0.11090721249960489 -9413.0,0.11086891311992311 -9414.0,0.11083062696609428 -9415.0,0.11079235403355113 -9416.0,0.11075409431772801 -9417.0,0.11071584781406084 -9418.0,0.110677614517987 -9419.0,0.11063939442494558 -9420.0,0.11060118753037722 -9421.0,0.11056299382972413 -9422.0,0.11052481331843002 -9423.0,0.11048664599194026 -9424.0,0.11044849184570178 -9425.0,0.11041035087516311 -9426.0,0.1103722230757742 -9427.0,0.11033410844298676 -9428.0,0.11029600697225396 -9429.0,0.11025791865903065 -9430.0,0.11021984349877305 -9431.0,0.11018178148693913 -9432.0,0.11014373261898837 -9433.0,0.11010569689038183 -9434.0,0.11006767429658214 -9435.0,0.11002966483305342 -9436.0,0.10999166849526144 -9437.0,0.10995368527867354 -9438.0,0.10991571517875863 -9439.0,0.10987775819098705 -9440.0,0.10983981431083088 -9441.0,0.10980188353376368 -9442.0,0.10976396585526063 -9443.0,0.10972606127079833 -9444.0,0.10968816977585509 -9445.0,0.10965029136591073 -9446.0,0.10961242603644669 -9447.0,0.1095745737829458 -9448.0,0.10953673460089262 -9449.0,0.10949890848577322 -9450.0,0.10946109543307525 -9451.0,0.1094232954382878 -9452.0,0.10938550849690165 -9453.0,0.10934773460440911 -9454.0,0.109309973756304 -9455.0,0.10927222594808181 -9456.0,0.10923449117523938 -9457.0,0.10919676943327528 -9458.0,0.10915906071768958 -9459.0,0.10912136502398397 -9460.0,0.10908368234766151 -9461.0,0.10904601268422699 -9462.0,0.1090083560291867 -9463.0,0.1089707123780485 -9464.0,0.10893308172632173 -9465.0,0.1088954640695173 -9466.0,0.10885785940314778 -9467.0,0.1088202677227272 -9468.0,0.10878268902377106 -9469.0,0.10874512330179656 -9470.0,0.10870757055232237 -9471.0,0.10867003077086873 -9472.0,0.10863250395295745 -9473.0,0.10859499009411178 -9474.0,0.10855748918985661 -9475.0,0.10852000123571838 -9476.0,0.1084825262272251 -9477.0,0.10844506415990617 -9478.0,0.10840761502929266 -9479.0,0.10837017883091721 -9480.0,0.10833275556031398 -9481.0,0.10829534521301855 -9482.0,0.10825794778456818 -9483.0,0.10822056327050164 -9484.0,0.10818319166635927 -9485.0,0.10814583296768282 -9486.0,0.10810848717001573 -9487.0,0.10807115426890289 -9488.0,0.10803383425989081 -9489.0,0.10799652713852742 -9490.0,0.10795923290036227 -9491.0,0.10792195154094644 -9492.0,0.10788468305583254 -9493.0,0.10784742744057475 -9494.0,0.10781018469072864 -9495.0,0.1077729548018515 -9496.0,0.10773573776950207 -9497.0,0.10769853358924066 -9498.0,0.10766134225662898 -9499.0,0.10762416376723044 -9500.0,0.10758699811660992 -9501.0,0.10754984530033387 -9502.0,0.10751270531397014 -9503.0,0.10747557815308824 -9504.0,0.10743846381325918 -9505.0,0.10740136229005552 -9506.0,0.10736427357905125 -9507.0,0.10732719767582197 -9508.0,0.10729013457594483 -9509.0,0.10725308427499845 -9510.0,0.10721604676856306 -9511.0,0.10717902205222024 -9512.0,0.10714201012155329 -9513.0,0.10710501097214693 -9514.0,0.1070680245995875 -9515.0,0.10703105099946268 -9516.0,0.10699409016736185 -9517.0,0.10695714209887584 -9518.0,0.10692020678959709 -9519.0,0.10688328423511935 -9520.0,0.1068463744310381 -9521.0,0.10680947737295028 -9522.0,0.10677259305645437 -9523.0,0.10673572147715024 -9524.0,0.10669886263063945 -9525.0,0.10666201651252499 -9526.0,0.10662518311841145 -9527.0,0.10658836244390475 -9528.0,0.10655155448461254 -9529.0,0.10651475923614385 -9530.0,0.10647797669410933 -9531.0,0.1064412068541211 -9532.0,0.1064044497117927 -9533.0,0.10636770526273932 -9534.0,0.10633097350257763 -9535.0,0.10629425442692582 -9536.0,0.1062575480314035 -9537.0,0.10622085431163189 -9538.0,0.1061841732632337 -9539.0,0.10614750488183322 -9540.0,0.10611084916305608 -9541.0,0.10607420610252953 -9542.0,0.10603757569588236 -9543.0,0.10600095793874485 -9544.0,0.10596435282674871 -9545.0,0.10592776035552721 -9546.0,0.1058911805207152 -9547.0,0.10585461331794892 -9548.0,0.10581805874286623 -9549.0,0.10578151679110637 -9550.0,0.10574498745831015 -9551.0,0.10570847074011992 -9552.0,0.10567196663217955 -9553.0,0.10563547513013426 -9554.0,0.10559899622963093 -9555.0,0.10556252992631789 -9556.0,0.10552607621584502 -9557.0,0.10548963509386358 -9558.0,0.10545320655602644 -9559.0,0.10541679059798796 -9560.0,0.105380387215404 -9561.0,0.10534399640393184 -9562.0,0.10530761815923034 -9563.0,0.10527125247695987 -9564.0,0.10523489935278228 -9565.0,0.10519855878236085 -9566.0,0.10516223076136044 -9567.0,0.10512591528544739 -9568.0,0.10508961235028953 -9569.0,0.10505332195155623 -9570.0,0.1050170440849182 -9571.0,0.10498077874604782 -9572.0,0.1049445259306189 -9573.0,0.10490828563430678 -9574.0,0.10487205785278816 -9575.0,0.1048358425817414 -9576.0,0.10479963981684627 -9577.0,0.10476344955378408 -9578.0,0.10472727178823751 -9579.0,0.10469110651589086 -9580.0,0.10465495373242989 -9581.0,0.10461881343354186 -9582.0,0.10458268561491543 -9583.0,0.10454657027224083 -9584.0,0.1045104674012098 -9585.0,0.1044743769975155 -9586.0,0.10443829905685267 -9587.0,0.10440223357491737 -9588.0,0.1043661805474073 -9589.0,0.10433013997002162 -9590.0,0.10429411183846096 -9591.0,0.10425809614842738 -9592.0,0.10422209289562447 -9593.0,0.10418610207575732 -9594.0,0.10415012368453255 -9595.0,0.1041141577176581 -9596.0,0.10407820417084353 -9597.0,0.10404226303979984 -9598.0,0.10400633432023958 -9599.0,0.10397041800787661 -9600.0,0.10393451409842643 -9601.0,0.10389862258760596 -9602.0,0.10386274347113365 -9603.0,0.10382687674472929 -9604.0,0.1037910224041143 -9605.0,0.1037551804450115 -9606.0,0.10371935086314522 -9607.0,0.1036835336542413 -9608.0,0.10364772881402688 -9609.0,0.1036119363382308 -9610.0,0.10357615622258325 -9611.0,0.10354038846281598 -9612.0,0.10350463305466205 -9613.0,0.10346888999385617 -9614.0,0.10343315927613443 -9615.0,0.10339744089723449 -9616.0,0.10336173485289528 -9617.0,0.1033260411388574 -9618.0,0.10329035975086284 -9619.0,0.10325469068465513 -9620.0,0.1032190339359791 -9621.0,0.10318338950058122 -9622.0,0.10314775737420936 -9623.0,0.10311213755261286 -9624.0,0.10307653003154262 -9625.0,0.10304093480675078 -9626.0,0.10300535187399117 -9627.0,0.10296978122901898 -9628.0,0.10293422286759095 -9629.0,0.10289867678546515 -9630.0,0.1028631429784012 -9631.0,0.10282762144216022 -9632.0,0.10279211217250475 -9633.0,0.10275661516519875 -9634.0,0.1027211304160077 -9635.0,0.10268565792069853 -9636.0,0.10265019767503968 -9637.0,0.10261474967480091 -9638.0,0.10257931391575359 -9639.0,0.10254389039367047 -9640.0,0.10250847910432584 -9641.0,0.1024730800434953 -9642.0,0.10243769320695605 -9643.0,0.10240231859048668 -9644.0,0.10236695618986727 -9645.0,0.1023316060008794 -9646.0,0.10229626801930594 -9647.0,0.10226094224093138 -9648.0,0.10222562866154161 -9649.0,0.10219032727692402 -9650.0,0.10215503808286733 -9651.0,0.10211976107516184 -9652.0,0.10208449624959925 -9653.0,0.10204924360197279 -9654.0,0.10201400312807696 -9655.0,0.10197877482370789 -9656.0,0.1019435586846631 -9657.0,0.10190835470674159 -9658.0,0.10187316288574372 -9659.0,0.10183798321747138 -9660.0,0.10180281569772791 -9661.0,0.10176766032231806 -9662.0,0.10173251708704813 -9663.0,0.10169738598772567 -9664.0,0.10166226702015985 -9665.0,0.10162716018016123 -9666.0,0.10159206546354187 -9667.0,0.10155698286611513 -9668.0,0.10152191238369596 -9669.0,0.10148685401210071 -9670.0,0.10145180774714722 -9671.0,0.10141677358465463 -9672.0,0.10138175152044365 -9673.0,0.10134674155033643 -9674.0,0.10131174367015658 -9675.0,0.101276757875729 -9676.0,0.10124178416288018 -9677.0,0.10120682252743804 -9678.0,0.10117187296523189 -9679.0,0.10113693547209256 -9680.0,0.10110201004385215 -9681.0,0.10106709667634438 -9682.0,0.10103219536540432 -9683.0,0.10099730610686856 -9684.0,0.10096242889657497 -9685.0,0.100927563730363 -9686.0,0.10089271060407348 -9687.0,0.10085786951354875 -9688.0,0.1008230404546324 -9689.0,0.10078822342316966 -9690.0,0.1007534184150071 -9691.0,0.10071862542599275 -9692.0,0.100683844451976 -9693.0,0.10064907548880779 -9694.0,0.10061431853234042 -9695.0,0.10057957357842767 -9696.0,0.10054484062292465 -9697.0,0.10051011966168802 -9698.0,0.1004754106905758 -9699.0,0.10044071370544749 -9700.0,0.10040602870216402 -9701.0,0.10037135567658763 -9702.0,0.10033669462458214 -9703.0,0.10030204554201272 -9704.0,0.10026740842474605 -9705.0,0.10023278326865007 -9706.0,0.1001981700695943 -9707.0,0.10016356882344966 -9708.0,0.1001289795260885 -9709.0,0.10009440217338446 -9710.0,0.10005983676121279 -9711.0,0.10002528328545007 -9712.0,0.09999074174197438 -9713.0,0.09995621212666507 -9714.0,0.09992169443540305 -9715.0,0.09988718866407062 -9716.0,0.09985269480855148 -9717.0,0.09981821286473082 -9718.0,0.0997837428284951 -9719.0,0.09974928469573234 -9720.0,0.09971483846233195 -9721.0,0.09968040412418477 -9722.0,0.09964598167718297 -9723.0,0.09961157111722022 -9724.0,0.0995771724401916 -9725.0,0.09954278564199365 -9726.0,0.09950841071852419 -9727.0,0.09947404766568257 -9728.0,0.09943969647936955 -9729.0,0.09940535715548732 -9730.0,0.09937102968993934 -9731.0,0.09933671407863066 -9732.0,0.09930241031746768 -9733.0,0.09926811840235825 -9734.0,0.0992338383292115 -9735.0,0.09919957009393811 -9736.0,0.09916531369245014 -9737.0,0.09913106912066105 -9738.0,0.09909683637448576 -9739.0,0.09906261544984045 -9740.0,0.09902840634264286 -9741.0,0.0989942090488121 -9742.0,0.09896002356426874 -9743.0,0.09892584988493458 -9744.0,0.09889168800673301 -9745.0,0.09885753792558877 -9746.0,0.09882339963742805 -9747.0,0.0987892731381783 -9748.0,0.09875515842376854 -9749.0,0.09872105549012912 -9750.0,0.09868696433319187 -9751.0,0.09865288494888984 -9752.0,0.09861881733315768 -9753.0,0.09858476148193136 -9754.0,0.09855071739114829 -9755.0,0.09851668505674727 -9756.0,0.09848266447466841 -9757.0,0.09844865564085337 -9758.0,0.09841465855124512 -9759.0,0.0983806732017881 -9760.0,0.09834669958842802 -9761.0,0.09831273770711213 -9762.0,0.09827878755378902 -9763.0,0.09824484912440873 -9764.0,0.09821092241492255 -9765.0,0.09817700742128332 -9766.0,0.09814310413944526 -9767.0,0.09810921256536395 -9768.0,0.09807533269499631 -9769.0,0.09804146452430078 -9770.0,0.0980076080492371 -9771.0,0.0979737632657665 -9772.0,0.09793993016985146 -9773.0,0.09790610875745596 -9774.0,0.09787229902454539 -9775.0,0.09783850096708648 -9776.0,0.09780471458104739 -9777.0,0.09777093986239759 -9778.0,0.09773717680710801 -9779.0,0.09770342541115101 -9780.0,0.09766968567050033 -9781.0,0.09763595758113094 -9782.0,0.09760224113901941 -9783.0,0.09756853634014359 -9784.0,0.09753484318048279 -9785.0,0.09750116165601759 -9786.0,0.09746749176273006 -9787.0,0.09743383349660363 -9788.0,0.09740018685362316 -9789.0,0.09736655182977476 -9790.0,0.09733292842104606 -9791.0,0.09729931662342603 -9792.0,0.09726571643290503 -9793.0,0.09723212784547486 -9794.0,0.09719855085712854 -9795.0,0.09716498546386064 -9796.0,0.09713143166166703 -9797.0,0.09709788944654504 -9798.0,0.09706435881449327 -9799.0,0.09703083976151175 -9800.0,0.09699733228360195 -9801.0,0.09696383637676668 -9802.0,0.09693035203701006 -9803.0,0.09689687926033769 -9804.0,0.0968634180427565 -9805.0,0.09682996838027487 -9806.0,0.0967965302689024 -9807.0,0.09676310370465023 -9808.0,0.09672968868353078 -9809.0,0.09669628520155796 -9810.0,0.09666289325474688 -9811.0,0.09662951283911414 -9812.0,0.09659614395067774 -9813.0,0.096562786585457 -9814.0,0.09652944073947267 -9815.0,0.09649610640874676 -9816.0,0.09646278358930274 -9817.0,0.09642947227716547 -9818.0,0.09639617246836119 -9819.0,0.09636288415891739 -9820.0,0.09632960734486305 -9821.0,0.0962963420222285 -9822.0,0.09626308818704546 -9823.0,0.09622984583534692 -9824.0,0.09619661496316734 -9825.0,0.09616339556654252 -9826.0,0.09613018764150968 -9827.0,0.09609699118410726 -9828.0,0.09606380619037523 -9829.0,0.09603063265635484 -9830.0,0.09599747057808872 -9831.0,0.09596431995162094 -9832.0,0.0959311807729968 -9833.0,0.09589805303826303 -9834.0,0.09586493674346779 -9835.0,0.09583183188466055 -9836.0,0.09579873845789207 -9837.0,0.09576565645921457 -9838.0,0.09573258588468166 -9839.0,0.09569952673034825 -9840.0,0.09566647899227057 -9841.0,0.0956334426665063 -9842.0,0.09560041774911443 -9843.0,0.0955674042361554 -9844.0,0.09553440212369083 -9845.0,0.09550141140778386 -9846.0,0.09546843208449894 -9847.0,0.09543546414990192 -9848.0,0.09540250760005989 -9849.0,0.0953695624310414 -9850.0,0.09533662863891633 -9851.0,0.09530370621975594 -9852.0,0.09527079516963284 -9853.0,0.09523789548462092 -9854.0,0.09520500716079551 -9855.0,0.09517213019423329 -9856.0,0.09513926458101231 -9857.0,0.09510641031721187 -9858.0,0.09507356739891272 -9859.0,0.09504073582219695 -9860.0,0.09500791558314803 -9861.0,0.09497510667785067 -9862.0,0.09494230910239103 -9863.0,0.09490952285285661 -9864.0,0.0948767479253363 -9865.0,0.09484398431592021 -9866.0,0.0948112320206999 -9867.0,0.09477849103576827 -9868.0,0.09474576135721956 -9869.0,0.0947130429811494 -9870.0,0.09468033590365463 -9871.0,0.0946476401208336 -9872.0,0.09461495562878593 -9873.0,0.09458228242361262 -9874.0,0.09454962050141595 -9875.0,0.09451696985829962 -9876.0,0.09448433049036863 -9877.0,0.09445170239372938 -9878.0,0.09441908556448952 -9879.0,0.09438647999875813 -9880.0,0.09435388569264559 -9881.0,0.09432130264226371 -9882.0,0.09428873084372545 -9883.0,0.09425617029314529 -9884.0,0.09422362098663899 -9885.0,0.0941910829203237 -9886.0,0.0941585560903178 -9887.0,0.09412604049274108 -9888.0,0.0940935361237147 -9889.0,0.0940610429793611 -9890.0,0.09402856105580415 -9891.0,0.0939960903491689 -9892.0,0.09396363085558188 -9893.0,0.09393118257117088 -9894.0,0.09389874549206513 -9895.0,0.09386631961439502 -9896.0,0.09383390493429244 -9897.0,0.09380150144789055 -9898.0,0.09376910915132387 -9899.0,0.09373672804072819 -9900.0,0.09370435811224069 -9901.0,0.09367199936199988 -9902.0,0.09363965178614564 -9903.0,0.09360731538081907 -9904.0,0.0935749901421627 -9905.0,0.09354267606632036 -9906.0,0.09351037314943722 -9907.0,0.09347808138765984 -9908.0,0.09344580077713593 -9909.0,0.09341353131401472 -9910.0,0.09338127299444669 -9911.0,0.0933490258145837 -9912.0,0.0933167897705788 -9913.0,0.09328456485858652 -9914.0,0.09325235107476265 -9915.0,0.09322014841526438 -9916.0,0.09318795687625007 -9917.0,0.09315577645387957 -9918.0,0.09312360714431396 -9919.0,0.09309144894371572 -9920.0,0.09305930184824855 -9921.0,0.09302716585407755 -9922.0,0.09299504095736916 -9923.0,0.09296292715429114 -9924.0,0.09293082444101246 -9925.0,0.09289873281370353 -9926.0,0.09286665226853609 -9927.0,0.09283458280168315 -9928.0,0.09280252440931908 -9929.0,0.09277047708761947 -9930.0,0.09273844083276137 -9931.0,0.09270641564092306 -9932.0,0.09267440150828424 -9933.0,0.09264239843102576 -9934.0,0.09261040640532991 -9935.0,0.0925784254273803 -9936.0,0.09254645549336188 -9937.0,0.09251449659946076 -9938.0,0.09248254874186453 -9939.0,0.09245061191676204 -9940.0,0.09241868612034351 -9941.0,0.09238677134880033 -9942.0,0.09235486759832535 -9943.0,0.0923229748651127 -9944.0,0.0922910931453578 -9945.0,0.09225922243525742 -9946.0,0.09222736273100952 -9947.0,0.09219551402881355 -9948.0,0.09216367632487019 -9949.0,0.09213184961538144 -9950.0,0.09210003389655057 -9951.0,0.09206822916458218 -9952.0,0.09203643541568225 -9953.0,0.09200465264605803 -9954.0,0.091972880851918 -9955.0,0.09194112002947205 -9956.0,0.09190937017493134 -9957.0,0.0918776312845084 -9958.0,0.09184590335441692 -9959.0,0.09181418638087202 -9960.0,0.09178248036009012 -9961.0,0.09175078528828895 -9962.0,0.09171910116168744 -9963.0,0.09168742797650593 -9964.0,0.09165576572896607 -9965.0,0.09162411441529077 -9966.0,0.09159247403170429 -9967.0,0.0915608445744321 -9968.0,0.09152922603970105 -9969.0,0.09149761842373931 -9970.0,0.09146602172277636 -9971.0,0.09143443593304283 -9972.0,0.09140286105077085 -9973.0,0.09137129707219373 -9974.0,0.09133974399354618 -9975.0,0.09130820181106405 -9976.0,0.09127667052098465 -9977.0,0.09124515011954651 -9978.0,0.09121364060298952 -9979.0,0.09118214196755474 -9980.0,0.09115065420948468 -9981.0,0.09111917732502303 -9982.0,0.09108771131041488 -9983.0,0.09105625616190656 -9984.0,0.09102481187574564 -9985.0,0.09099337844818109 -9986.0,0.09096195587546313 -9987.0,0.0909305441538433 -9988.0,0.09089914327957437 -9989.0,0.09086775324891043 -9990.0,0.09083637405810692 -9991.0,0.09080500570342055 -9992.0,0.09077364818110924 -9993.0,0.09074230148743229 -9994.0,0.09071096561865027 -9995.0,0.0906796405710251 -9996.0,0.09064832634081982 -9997.0,0.09061702292429893 -9998.0,0.09058573031772817 -9999.0,0.09055444851737457 -10000.0,0.09052317751950638 -10001.0,0.09049191732039323 -10002.0,0.09046066791630603 -10003.0,0.09042942930351691 -10004.0,0.09039820147829941 -10005.0,0.09036698443692817 -10006.0,0.0903357781756793 -10007.0,0.09030458269083008 -10008.0,0.09027339797865917 -10009.0,0.0902422240354464 -10010.0,0.09021106085747296 -10011.0,0.09017990844102133 -10012.0,0.0901487667823753 -10013.0,0.09011763587781978 -10014.0,0.09008651572364115 -10015.0,0.090055406316127 -10016.0,0.09002430765156623 -10017.0,0.08999321972624894 -10018.0,0.08996214253646657 -10019.0,0.08993107607851189 -10020.0,0.08990002034867885 -10021.0,0.0898689753432628 -10022.0,0.08983794105856019 -10023.0,0.08980691749086891 -10024.0,0.08977590463648809 -10025.0,0.08974490249171814 -10026.0,0.08971391105286065 -10027.0,0.08968293031621863 -10028.0,0.08965196027809628 -10029.0,0.08962100093479915 -10030.0,0.08959005228263393 -10031.0,0.08955911431790874 -10032.0,0.08952818703693285 -10033.0,0.08949727043601696 -10034.0,0.08946636451147283 -10035.0,0.08943546925961365 -10036.0,0.08940458467675386 -10037.0,0.08937371075920918 -10038.0,0.0893428475032965 -10039.0,0.0893119949053341 -10040.0,0.08928115296164149 -10041.0,0.08925032166853945 -10042.0,0.08921950102235007 -10043.0,0.0891886910193966 -10044.0,0.08915789165600364 -10045.0,0.0891271029284971 -10046.0,0.08909632483320412 -10047.0,0.08906555736645302 -10048.0,0.0890348005245735 -10049.0,0.08900405430389652 -10050.0,0.08897331870075428 -10051.0,0.0889425937114802 -10052.0,0.08891187933240903 -10053.0,0.08888117555987679 -10054.0,0.08885048239022077 -10055.0,0.08881979981977942 -10056.0,0.08878912784489257 -10057.0,0.08875846646190129 -10058.0,0.08872781566714788 -10059.0,0.08869717545697597 -10060.0,0.08866654582773036 -10061.0,0.08863592677575714 -10062.0,0.08860531829740373 -10063.0,0.08857472038901877 -10064.0,0.08854413304695209 -10065.0,0.08851355626755489 -10066.0,0.08848299004717956 -10067.0,0.08845243438217983 -10068.0,0.08842188926891054 -10069.0,0.08839135470372791 -10070.0,0.08836083068298943 -10071.0,0.08833031720305382 -10072.0,0.08829981426028095 -10073.0,0.08826932185103212 -10074.0,0.08823883997166977 -10075.0,0.0882083686185577 -10076.0,0.08817790778806081 -10077.0,0.08814745747654538 -10078.0,0.08811701768037893 -10079.0,0.08808658839593018 -10080.0,0.0880561696195692 -10081.0,0.08802576134766718 -10082.0,0.08799536357659665 -10083.0,0.08796497630273141 -10084.0,0.08793459952244648 -10085.0,0.08790423323211809 -10086.0,0.08787387742812378 -10087.0,0.08784353210684233 -10088.0,0.0878131972646538 -10089.0,0.08778287289793939 -10090.0,0.08775255900308167 -10091.0,0.0877222555764644 -10092.0,0.08769196261447265 -10093.0,0.08766168011349261 -10094.0,0.08763140806991183 -10095.0,0.0876011464801191 -10096.0,0.0875708953405044 -10097.0,0.08754065464745905 -10098.0,0.08751042439737548 -10099.0,0.08748020458664747 -10100.0,0.08744999521167002 -10101.0,0.0874197962688394 -10102.0,0.08738960775455304 -10103.0,0.0873594296652097 -10104.0,0.08732926199720935 -10105.0,0.08729910474695325 -10106.0,0.08726895791084378 -10107.0,0.08723882148528468 -10108.0,0.0872086954666809 -10109.0,0.08717857985143866 -10110.0,0.08714847463596531 -10111.0,0.08711837981666956 -10112.0,0.08708829538996131 -10113.0,0.08705822135225175 -10114.0,0.08702815769995317 -10115.0,0.08699810442947928 -10116.0,0.0869680615372449 -10117.0,0.08693802901966616 -10118.0,0.08690800687316041 -10119.0,0.08687799509414619 -10120.0,0.08684799367904332 -10121.0,0.08681800262427285 -10122.0,0.08678802192625712 -10123.0,0.08675805158141957 -10124.0,0.08672809158618498 -10125.0,0.08669814193697936 -10126.0,0.08666820263022998 -10127.0,0.08663827366236519 -10128.0,0.08660835502981475 -10129.0,0.08657844672900958 -10130.0,0.08654854875638185 -10131.0,0.08651866110836491 -10132.0,0.08648878378139341 -10133.0,0.08645891677190319 -10134.0,0.08642906007633133 -10135.0,0.08639921369111621 -10136.0,0.08636937761269727 -10137.0,0.08633955183751534 -10138.0,0.0863097363620124 -10139.0,0.08627993118263175 -10140.0,0.08625013629581774 -10141.0,0.08622035169801612 -10142.0,0.0861905773856738 -10143.0,0.08616081335523895 -10144.0,0.08613105960316088 -10145.0,0.0861013161258902 -10146.0,0.08607158291987874 -10147.0,0.0860418599815796 -10148.0,0.08601214730744694 -10149.0,0.08598244489393632 -10150.0,0.08595275273750444 -10151.0,0.0859230708346093 -10152.0,0.08589339918170998 -10153.0,0.08586373777526689 -10154.0,0.08583408661174168 -10155.0,0.08580444568759714 -10156.0,0.08577481499929739 -10157.0,0.0857451945433076 -10158.0,0.08571558431609434 -10159.0,0.08568598431412532 -10160.0,0.08565639453386947 -10161.0,0.08562681497179693 -10162.0,0.08559724562437906 -10163.0,0.08556768648808849 -10164.0,0.08553813755939906 -10165.0,0.0855085988347857 -10166.0,0.08547907031072473 -10167.0,0.08544955198369357 -10168.0,0.08542004385017096 -10169.0,0.08539054590663674 -10170.0,0.08536105814957201 -10171.0,0.08533158057545914 -10172.0,0.08530211318078165 -10173.0,0.08527265596202432 -10174.0,0.08524320891567308 -10175.0,0.0852137720382151 -10176.0,0.08518434532613883 -10177.0,0.08515492877593388 -10178.0,0.08512552238409099 -10179.0,0.08509612614710226 -10180.0,0.0850667400614609 -10181.0,0.08503736412366142 -10182.0,0.08500799833019941 -10183.0,0.08497864267757178 -10184.0,0.08494929716227662 -10185.0,0.08491996178081325 -10186.0,0.08489063652968211 -10187.0,0.08486132140538494 -10188.0,0.08483201640442466 -10189.0,0.08480272152330542 -10190.0,0.08477343675853252 -10191.0,0.08474416210661251 -10192.0,0.08471489756405313 -10193.0,0.08468564312736335 -10194.0,0.08465639879305337 -10195.0,0.08462716455763446 -10196.0,0.08459794041761924 -10197.0,0.0845687263695215 -10198.0,0.08453952240985621 -10199.0,0.08451032853513951 -10200.0,0.08448114474188881 -10201.0,0.08445197102662269 -10202.0,0.084422807385861 -10203.0,0.08439365381612463 -10204.0,0.08436451031393581 -10205.0,0.08433537687581796 -10206.0,0.08430625349829568 -10207.0,0.0842771401778947 -10208.0,0.08424803691114205 -10209.0,0.08421894369456594 -10210.0,0.08418986052469572 -10211.0,0.08416078739806206 -10212.0,0.08413172431119664 -10213.0,0.08410267126063252 -10214.0,0.08407362824290385 -10215.0,0.08404459525454605 -10216.0,0.08401557229209564 -10217.0,0.08398655935209041 -10218.0,0.08395755643106935 -10219.0,0.08392856352557264 -10220.0,0.08389958063214156 -10221.0,0.08387060774731872 -10222.0,0.08384164486764786 -10223.0,0.08381269198967395 -10224.0,0.08378374910994306 -10225.0,0.08375481622500253 -10226.0,0.0837258933314009 -10227.0,0.0836969804256879 -10228.0,0.08366807750441438 -10229.0,0.08363918456413244 -10230.0,0.08361030160139539 -10231.0,0.08358142861275768 -10232.0,0.08355256559477503 -10233.0,0.0835237125440042 -10234.0,0.08349486945700328 -10235.0,0.0834660363303315 -10236.0,0.08343721316054932 -10237.0,0.08340839994421825 -10238.0,0.08337959667790115 -10239.0,0.08335080335816199 -10240.0,0.08332201998156595 -10241.0,0.08329324654467934 -10242.0,0.08326448304406972 -10243.0,0.08323572947630582 -10244.0,0.08320698583795759 -10245.0,0.08317825212559603 -10246.0,0.08314952833579348 -10247.0,0.08312081446512339 -10248.0,0.0830921105101604 -10249.0,0.08306341646748039 -10250.0,0.08303473233366027 -10251.0,0.0830060581052783 -10252.0,0.08297739377891382 -10253.0,0.08294873935114744 -10254.0,0.08292009481856083 -10255.0,0.08289146017773694 -10256.0,0.08286283542525985 -10257.0,0.08283422055771487 -10258.0,0.08280561557168842 -10259.0,0.08277702046376813 -10260.0,0.08274843523054283 -10261.0,0.08271985986860254 -10262.0,0.08269129437453837 -10263.0,0.08266273874494269 -10264.0,0.082634192976409 -10265.0,0.08260565706553208 -10266.0,0.08257713100890769 -10267.0,0.08254861480313294 -10268.0,0.08252010844480605 -10269.0,0.08249161193052641 -10270.0,0.08246312525689463 -10271.0,0.0824346484205124 -10272.0,0.08240618141798267 -10273.0,0.08237772424590953 -10274.0,0.08234927690089829 -10275.0,0.0823208393795553 -10276.0,0.08229241167848823 -10277.0,0.08226399379430585 -10278.0,0.08223558572361815 -10279.0,0.0822071874630362 -10280.0,0.08217879900917228 -10281.0,0.08215042035863993 -10282.0,0.08212205150805375 -10283.0,0.0820936924540295 -10284.0,0.0820653431931842 -10285.0,0.08203700372213597 -10286.0,0.08200867403750414 -10287.0,0.08198035413590919 -10288.0,0.08195204401397271 -10289.0,0.08192374366831755 -10290.0,0.08189545309556767 -10291.0,0.08186717229234826 -10292.0,0.08183890125528553 -10293.0,0.08181063998100703 -10294.0,0.08178238846614136 -10295.0,0.08175414670731837 -10296.0,0.08172591470116894 -10297.0,0.08169769244432526 -10298.0,0.0816694799334206 -10299.0,0.08164127716508944 -10300.0,0.08161308413596734 -10301.0,0.08158490084269111 -10302.0,0.0815567272818987 -10303.0,0.08152856345022923 -10304.0,0.08150040934432289 -10305.0,0.08147226496082113 -10306.0,0.08144413029636655 -10307.0,0.08141600534760286 -10308.0,0.08138789011117503 -10309.0,0.08135978458372903 -10310.0,0.0813316887619121 -10311.0,0.08130360264237263 -10312.0,0.08127552622176018 -10313.0,0.08124745949672536 -10314.0,0.08121940246392007 -10315.0,0.08119135511999728 -10316.0,0.0811633174616112 -10317.0,0.08113528948541708 -10318.0,0.08110727118807141 -10319.0,0.08107926256623181 -10320.0,0.0810512636165571 -10321.0,0.08102327433570712 -10322.0,0.080995294720343 -10323.0,0.080967324767127 -10324.0,0.08093936447272246 -10325.0,0.080911413833794 -10326.0,0.08088347284700721 -10327.0,0.08085554150902899 -10328.0,0.08082761981652732 -10329.0,0.08079970776617139 -10330.0,0.08077180535463142 -10331.0,0.08074391257857891 -10332.0,0.08071602943468643 -10333.0,0.08068815591962777 -10334.0,0.08066029203007775 -10335.0,0.08063243776271246 -10336.0,0.08060459311420907 -10337.0,0.08057675808124597 -10338.0,0.08054893266050255 -10339.0,0.08052111684865948 -10340.0,0.08049331064239855 -10341.0,0.08046551403840271 -10342.0,0.08043772703335597 -10343.0,0.08040994962394357 -10344.0,0.08038218180685185 -10345.0,0.08035442357876833 -10346.0,0.0803266749363817 -10347.0,0.08029893587638165 -10348.0,0.08027120639545918 -10349.0,0.08024348649030634 -10350.0,0.0802157761576164 -10351.0,0.08018807539408362 -10352.0,0.08016038419640358 -10353.0,0.08013270256127288 -10354.0,0.08010503048538936 -10355.0,0.08007736796545188 -10356.0,0.08004971499816053 -10357.0,0.0800220715802165 -10358.0,0.07999443770832218 -10359.0,0.07996681337918099 -10360.0,0.07993919858949755 -10361.0,0.07991159333597765 -10362.0,0.07988399761532818 -10363.0,0.07985641142425719 -10364.0,0.07982883475947379 -10365.0,0.07980126761768833 -10366.0,0.07977370999561223 -10367.0,0.0797461618899581 -10368.0,0.07971862329743962 -10369.0,0.07969109421477162 -10370.0,0.07966357463867012 -10371.0,0.07963606456585225 -10372.0,0.0796085639930362 -10373.0,0.07958107291694137 -10374.0,0.0795535913342883 -10375.0,0.07952611924179866 -10376.0,0.07949865663619515 -10377.0,0.07947120351420173 -10378.0,0.07944375987254344 -10379.0,0.07941632570794649 -10380.0,0.07938890101713811 -10381.0,0.07936148579684676 -10382.0,0.07933408004380203 -10383.0,0.0793066837547346 -10384.0,0.07927929692637631 -10385.0,0.07925191955546007 -10386.0,0.07922455163871997 -10387.0,0.07919719317289123 -10388.0,0.07916984415471023 -10389.0,0.07914250458091433 -10390.0,0.07911517444824219 -10391.0,0.07908785375343351 -10392.0,0.07906054249322915 -10393.0,0.07903324066437102 -10394.0,0.07900594826360224 -10395.0,0.07897866528766703 -10396.0,0.07895139173331078 -10397.0,0.07892412759727986 -10398.0,0.0788968728763219 -10399.0,0.0788696275671856 -10400.0,0.07884239166662081 -10401.0,0.07881516517137853 -10402.0,0.07878794807821074 -10403.0,0.07876074038387068 -10404.0,0.0787335420851127 -10405.0,0.07870635317869223 -10406.0,0.0786791736613658 -10407.0,0.0786520035298911 -10408.0,0.07862484278102695 -10409.0,0.0785976914115333 -10410.0,0.07857054941817113 -10411.0,0.0785434167977026 -10412.0,0.07851629354689102 -10413.0,0.07848917966250081 -10414.0,0.0784620751412974 -10415.0,0.07843497998004748 -10416.0,0.07840789417551874 -10417.0,0.07838081772448015 -10418.0,0.07835375062370156 -10419.0,0.07832669286995413 -10420.0,0.07829964446001003 -10421.0,0.07827260539064262 -10422.0,0.07824557565862636 -10423.0,0.07821855526073672 -10424.0,0.07819154419375042 -10425.0,0.07816454245444521 -10426.0,0.07813755003960002 -10427.0,0.0781105669459948 -10428.0,0.07808359317041068 -10429.0,0.0780566287096299 -10430.0,0.07802967356043582 -10431.0,0.07800272771961281 -10432.0,0.07797579118394649 -10433.0,0.0779488639502235 -10434.0,0.07792194601523167 -10435.0,0.0778950373757598 -10436.0,0.07786813802859795 -10437.0,0.07784124797053718 -10438.0,0.07781436719836975 -10439.0,0.07778749570888897 -10440.0,0.07776063349888923 -10441.0,0.0777337805651661 -10442.0,0.07770693690451619 -10443.0,0.0776801025137373 -10444.0,0.07765327738962823 -10445.0,0.07762646152898894 -10446.0,0.07759965492862053 -10447.0,0.07757285758532517 -10448.0,0.07754606949590608 -10449.0,0.07751929065716766 -10450.0,0.0774925210659154 -10451.0,0.07746576071895592 -10452.0,0.07743900961309683 -10453.0,0.07741226774514695 -10454.0,0.07738553511191618 -10455.0,0.07735881171021552 -10456.0,0.07733209753685703 -10457.0,0.07730539258865393 -10458.0,0.0772786968624205 -10459.0,0.07725201035497213 -10460.0,0.07722533306312537 -10461.0,0.07719866498369773 -10462.0,0.07717200611350795 -10463.0,0.07714535644937581 -10464.0,0.07711871598812224 -10465.0,0.07709208472656914 -10466.0,0.07706546266153966 -10467.0,0.07703884978985796 -10468.0,0.07701224610834936 -10469.0,0.07698565161384016 -10470.0,0.07695906630315788 -10471.0,0.07693249017313107 -10472.0,0.07690592322058944 -10473.0,0.07687936544236365 -10474.0,0.07685281683528562 -10475.0,0.07682627739618828 -10476.0,0.07679974712190565 -10477.0,0.07677322600927294 -10478.0,0.07674671405512626 -10479.0,0.07672021125630299 -10480.0,0.07669371760964153 -10481.0,0.07666723311198141 -10482.0,0.07664075776016317 -10483.0,0.07661429155102852 -10484.0,0.07658783448142022 -10485.0,0.07656138654818219 -10486.0,0.07653494774815929 -10487.0,0.07650851807819764 -10488.0,0.07648209753514433 -10489.0,0.07645568611584765 -10490.0,0.0764292838171568 -10491.0,0.07640289063592226 -10492.0,0.07637650656899549 -10493.0,0.0763501316132291 -10494.0,0.07632376576547668 -10495.0,0.07629740902259302 -10496.0,0.07627106138143394 -10497.0,0.07624472283885637 -10498.0,0.07621839339171835 -10499.0,0.07619207303687889 -10500.0,0.07616576177119819 -10501.0,0.07613945959153753 -10502.0,0.07611316649475927 -10503.0,0.07608688247772678 -10504.0,0.07606060753730459 -10505.0,0.0760343416703583 -10506.0,0.07600808487375461 -10507.0,0.07598183714436121 -10508.0,0.07595559847904698 -10509.0,0.07592936887468184 -10510.0,0.0759031483281368 -10511.0,0.07587693683628388 -10512.0,0.0758507343959963 -10513.0,0.07582454100414827 -10514.0,0.07579835665761513 -10515.0,0.07577218135327328 -10516.0,0.07574601508800018 -10517.0,0.07571985785867437 -10518.0,0.0756937096621755 -10519.0,0.07566757049538433 -10520.0,0.07564144035518258 -10521.0,0.07561531923845312 -10522.0,0.07558920714207992 -10523.0,0.07556310406294801 -10524.0,0.07553700999794344 -10525.0,0.07551092494395338 -10526.0,0.07548484889786611 -10527.0,0.07545878185657094 -10528.0,0.07543272381695824 -10529.0,0.07540667477591947 -10530.0,0.0753806347303472 -10531.0,0.07535460367713505 -10532.0,0.07532858161317765 -10533.0,0.0753025685353708 -10534.0,0.07527656444061132 -10535.0,0.0752505693257971 -10536.0,0.07522458318782717 -10537.0,0.07519860602360148 -10538.0,0.0751726378300212 -10539.0,0.0751466786039885 -10540.0,0.07512072834240668 -10541.0,0.07509478704217999 -10542.0,0.07506885470021384 -10543.0,0.07504293131341472 -10544.0,0.07501701687869015 -10545.0,0.07499111139294871 -10546.0,0.07496521485310008 -10547.0,0.07493932725605497 -10548.0,0.07491344859872523 -10549.0,0.07488757887802366 -10550.0,0.07486171809086421 -10551.0,0.0748358662341619 -10552.0,0.07481002330483277 -10553.0,0.074784189299794 -10554.0,0.0747583642159637 -10555.0,0.07473254805026115 -10556.0,0.0747067407996067 -10557.0,0.07468094246092175 -10558.0,0.07465515303112866 -10559.0,0.074629372507151 -10560.0,0.07460360088591335 -10561.0,0.07457783816434134 -10562.0,0.07455208433936163 -10563.0,0.07452633940790199 -10564.0,0.07450060336689124 -10565.0,0.07447487621325931 -10566.0,0.07444915794393704 -10567.0,0.07442344855585649 -10568.0,0.07439774804595072 -10569.0,0.07437205641115385 -10570.0,0.074346373648401 -10571.0,0.07432069975462846 -10572.0,0.0742950347267735 -10573.0,0.07426937856177447 -10574.0,0.07424373125657081 -10575.0,0.07421809280810293 -10576.0,0.07419246321331237 -10577.0,0.0741668424691417 -10578.0,0.0741412305725346 -10579.0,0.0741156275204357 -10580.0,0.07409003330979073 -10581.0,0.07406444793754655 -10582.0,0.074038871400651 -10583.0,0.07401330369605294 -10584.0,0.07398774482070235 -10585.0,0.07396219477155025 -10586.0,0.07393665354554874 -10587.0,0.07391112113965086 -10588.0,0.07388559755081082 -10589.0,0.07386008277598385 -10590.0,0.07383457681212623 -10591.0,0.07380907965619529 -10592.0,0.07378359130514935 -10593.0,0.07375811175594787 -10594.0,0.07373264100555135 -10595.0,0.0737071790509213 -10596.0,0.07368172588902028 -10597.0,0.0736562815168119 -10598.0,0.07363084593126086 -10599.0,0.07360541912933291 -10600.0,0.07358000110799474 -10601.0,0.07355459186421422 -10602.0,0.07352919139496018 -10603.0,0.0735037996972026 -10604.0,0.07347841676791234 -10605.0,0.07345304260406144 -10606.0,0.07342767720262296 -10607.0,0.07340232056057101 -10608.0,0.07337697267488068 -10609.0,0.07335163354252817 -10610.0,0.07332630316049071 -10611.0,0.07330098152574657 -10612.0,0.0732756686352751 -10613.0,0.07325036448605658 -10614.0,0.07322506907507247 -10615.0,0.07319978239930518 -10616.0,0.07317450445573824 -10617.0,0.07314923524135611 -10618.0,0.07312397475314439 -10619.0,0.07309872298808968 -10620.0,0.07307347994317968 -10621.0,0.07304824561540299 -10622.0,0.07302302000174939 -10623.0,0.07299780309920964 -10624.0,0.07297259490477559 -10625.0,0.07294739541544 -10626.0,0.0729222046281968 -10627.0,0.07289702254004092 -10628.0,0.0728718491479683 -10629.0,0.072846684448976 -10630.0,0.07282152844006197 -10631.0,0.07279638111822531 -10632.0,0.07277124248046614 -10633.0,0.07274611252378563 -10634.0,0.0727209912451859 -10635.0,0.07269587864167018 -10636.0,0.07267077471024275 -10637.0,0.0726456794479089 -10638.0,0.0726205928516749 -10639.0,0.07259551491854811 -10640.0,0.07257044564553694 -10641.0,0.07254538502965083 -10642.0,0.07252033306790018 -10643.0,0.07249528975729648 -10644.0,0.07247025509485228 -10645.0,0.07244522907758112 -10646.0,0.07242021170249754 -10647.0,0.0723952029666172 -10648.0,0.07237020286695668 -10649.0,0.07234521140053371 -10650.0,0.072320228564367 -10651.0,0.07229525435547621 -10652.0,0.07227028877088214 -10653.0,0.07224533180760656 -10654.0,0.07222038346267234 -10655.0,0.07219544373310326 -10656.0,0.0721705126159242 -10657.0,0.0721455901081611 -10658.0,0.07212067620684089 -10659.0,0.07209577090899146 -10660.0,0.07207087421164181 -10661.0,0.07204598611182197 -10662.0,0.072021106606563 -10663.0,0.07199623569289688 -10664.0,0.07197137336785674 -10665.0,0.07194651962847667 -10666.0,0.0719216744717918 -10667.0,0.07189683789483833 -10668.0,0.07187200989465337 -10669.0,0.07184719046827513 -10670.0,0.07182237961274286 -10671.0,0.07179757732509684 -10672.0,0.07177278360237825 -10673.0,0.07174799844162943 -10674.0,0.07172322183989369 -10675.0,0.07169845379421538 -10676.0,0.0716736943016398 -10677.0,0.07164894335921337 -10678.0,0.07162420096398345 -10679.0,0.07159946711299851 -10680.0,0.0715747418033079 -10681.0,0.07155002503196212 -10682.0,0.07152531679601264 -10683.0,0.07150061709251194 -10684.0,0.07147592591851352 -10685.0,0.0714512432710719 -10686.0,0.07142656914724263 -10687.0,0.07140190354408227 -10688.0,0.07137724645864842 -10689.0,0.0713525978879996 -10690.0,0.07132795782919545 -10691.0,0.07130332627929659 -10692.0,0.0712787032353647 -10693.0,0.07125408869446234 -10694.0,0.07122948265365324 -10695.0,0.07120488511000207 -10696.0,0.07118029606057454 -10697.0,0.0711557155024373 -10698.0,0.0711311434326581 -10699.0,0.07110657984830566 -10700.0,0.07108202474644978 -10701.0,0.07105747812416113 -10702.0,0.07103293997851153 -10703.0,0.07100841030657373 -10704.0,0.07098388910542154 -10705.0,0.07095937637212979 -10706.0,0.07093487210377421 -10707.0,0.07091037629743167 -10708.0,0.07088588895017998 -10709.0,0.07086141005909803 -10710.0,0.0708369396212656 -10711.0,0.07081247763376357 -10712.0,0.0707880240936738 -10713.0,0.0707635789980792 -10714.0,0.07073914234406357 -10715.0,0.07071471412871186 -10716.0,0.07069029434910992 -10717.0,0.07066588300234472 -10718.0,0.07064148008550407 -10719.0,0.07061708559567693 -10720.0,0.07059269952995322 -10721.0,0.07056832188542383 -10722.0,0.07054395265918074 -10723.0,0.07051959184831681 -10724.0,0.07049523944992601 -10725.0,0.07047089546110329 -10726.0,0.07044655987894458 -10727.0,0.07042223270054679 -10728.0,0.07039791392300788 -10729.0,0.07037360354342682 -10730.0,0.07034930155890358 -10731.0,0.07032500796653904 -10732.0,0.07030072276343519 -10733.0,0.07027644594669497 -10734.0,0.07025217751342237 -10735.0,0.0702279174607223 -10736.0,0.07020366578570073 -10737.0,0.07017942248546459 -10738.0,0.0701551875571219 -10739.0,0.07013096099778153 -10740.0,0.07010674280455345 -10741.0,0.07008253297454863 -10742.0,0.07005833150487897 -10743.0,0.0700341383926575 -10744.0,0.07000995363499805 -10745.0,0.06998577722901561 -10746.0,0.06996160917182612 -10747.0,0.0699374494605465 -10748.0,0.06991329809229464 -10749.0,0.06988915506418948 -10750.0,0.06986502037335093 -10751.0,0.06984089401689994 -10752.0,0.06981677599195835 -10753.0,0.06979266629564906 -10754.0,0.06976856492509599 -10755.0,0.06974447187742404 -10756.0,0.06972038714975902 -10757.0,0.06969631073922783 -10758.0,0.06967224264295835 -10759.0,0.06964818285807939 -10760.0,0.06962413138172087 -10761.0,0.06960008821101352 -10762.0,0.06957605334308924 -10763.0,0.0695520267750808 -10764.0,0.06952800850412207 -10765.0,0.06950399852734776 -10766.0,0.06947999684189371 -10767.0,0.06945600344489668 -10768.0,0.06943201833349447 -10769.0,0.06940804150482575 -10770.0,0.06938407295603032 -10771.0,0.06936011268424888 -10772.0,0.0693361606866232 -10773.0,0.0693122169602959 -10774.0,0.0692882815024107 -10775.0,0.06926435431011228 -10776.0,0.06924043538054633 -10777.0,0.06921652471085944 -10778.0,0.06919262229819927 -10779.0,0.06916872813971443 -10780.0,0.06914484223255453 -10781.0,0.06912096457387018 -10782.0,0.06909709516081289 -10783.0,0.06907323399053523 -10784.0,0.06904938106019076 -10785.0,0.06902553636693402 -10786.0,0.06900169990792045 -10787.0,0.06897787168030656 -10788.0,0.06895405168124982 -10789.0,0.06893023990790872 -10790.0,0.06890643635744262 -10791.0,0.06888264102701194 -10792.0,0.0688588539137781 -10793.0,0.06883507501490349 -10794.0,0.06881130432755139 -10795.0,0.06878754184888619 -10796.0,0.06876378757607317 -10797.0,0.06874004150627862 -10798.0,0.06871630363666986 -10799.0,0.06869257396441505 -10800.0,0.06866885248668346 -10801.0,0.06864513920064527 -10802.0,0.06862143410347173 -10803.0,0.06859773719233489 -10804.0,0.06857404846440793 -10805.0,0.06855036791686495 -10806.0,0.06852669554688107 -10807.0,0.0685030313516323 -10808.0,0.06847937532829568 -10809.0,0.06845572747404924 -10810.0,0.06843208778607197 -10811.0,0.0684084562615438 -10812.0,0.06838483289764567 -10813.0,0.06836121769155948 -10814.0,0.06833761064046816 -10815.0,0.06831401174155548 -10816.0,0.06829042099200629 -10817.0,0.0682668383890064 -10818.0,0.06824326392974259 -10819.0,0.0682196976114026 -10820.0,0.0681961394311751 -10821.0,0.06817258938624979 -10822.0,0.06814904747381731 -10823.0,0.06812551369106934 -10824.0,0.0681019880351984 -10825.0,0.06807847050339808 -10826.0,0.06805496109286291 -10827.0,0.06803145980078841 -10828.0,0.06800796662437099 -10829.0,0.06798448156080814 -10830.0,0.06796100460729822 -10831.0,0.06793753576104067 -10832.0,0.06791407501923574 -10833.0,0.06789062237908479 -10834.0,0.06786717783779006 -10835.0,0.06784374139255482 -10836.0,0.06782031304058328 -10837.0,0.06779689277908055 -10838.0,0.0677734806052528 -10839.0,0.06775007651630713 -10840.0,0.06772668050945163 -10841.0,0.06770329258189528 -10842.0,0.06767991273084807 -10843.0,0.06765654095352099 -10844.0,0.06763317724712595 -10845.0,0.0676098216088758 -10846.0,0.0675864740359844 -10847.0,0.06756313452566656 -10848.0,0.06753980307513807 -10849.0,0.06751647968161562 -10850.0,0.06749316434231689 -10851.0,0.06746985705446056 -10852.0,0.06744655781526626 -10853.0,0.0674232666219545 -10854.0,0.06739998347174685 -10855.0,0.06737670836186578 -10856.0,0.06735344128953476 -10857.0,0.06733018225197822 -10858.0,0.06730693124642147 -10859.0,0.06728368827009085 -10860.0,0.06726045332021366 -10861.0,0.06723722639401816 -10862.0,0.06721400748873349 -10863.0,0.06719079660158984 -10864.0,0.06716759372981831 -10865.0,0.067144398870651 -10866.0,0.06712121202132088 -10867.0,0.06709803317906195 -10868.0,0.06707486234110914 -10869.0,0.06705169950469837 -10870.0,0.06702854466706643 -10871.0,0.06700539782545115 -10872.0,0.06698225897709126 -10873.0,0.06695912811922647 -10874.0,0.06693600524909749 -10875.0,0.06691289036394583 -10876.0,0.06688978346101414 -10877.0,0.06686668453754588 -10878.0,0.06684359359078557 -10879.0,0.06682051061797857 -10880.0,0.06679743561637128 -10881.0,0.06677436858321101 -10882.0,0.06675130951574607 -10883.0,0.06672825841122562 -10884.0,0.06670521526689986 -10885.0,0.06668218008001991 -10886.0,0.06665915284783788 -10887.0,0.06663613356760671 -10888.0,0.06661312223658042 -10889.0,0.06659011885201391 -10890.0,0.06656712341116307 -10891.0,0.06654413591128468 -10892.0,0.06652115634963648 -10893.0,0.06649818472347724 -10894.0,0.06647522103006655 -10895.0,0.06645226526666508 -10896.0,0.06642931743053429 -10897.0,0.06640637751893672 -10898.0,0.0663834455291358 -10899.0,0.06636052145839592 -10900.0,0.06633760530398239 -10901.0,0.06631469706316147 -10902.0,0.06629179673320039 -10903.0,0.06626890431136732 -10904.0,0.06624601979493133 -10905.0,0.06622314318116249 -10906.0,0.06620027446733176 -10907.0,0.06617741365071113 -10908.0,0.06615456072857338 -10909.0,0.06613171569819239 -10910.0,0.06610887855684287 -10911.0,0.06608604930180056 -10912.0,0.06606322793034211 -10913.0,0.06604041443974502 -10914.0,0.06601760882728785 -10915.0,0.06599481109025007 -10916.0,0.06597202122591209 -10917.0,0.06594923923155517 -10918.0,0.06592646510446165 -10919.0,0.06590369884191473 -10920.0,0.06588094044119858 -10921.0,0.06585818989959823 -10922.0,0.06583544721439974 -10923.0,0.06581271238289008 -10924.0,0.06578998540235717 -10925.0,0.0657672662700898 -10926.0,0.06574455498337776 -10927.0,0.06572185153951177 -10928.0,0.0656991559357835 -10929.0,0.06567646816948547 -10930.0,0.06565378823791121 -10931.0,0.06563111613835519 -10932.0,0.06560845186811279 -10933.0,0.06558579542448036 -10934.0,0.06556314680475508 -10935.0,0.06554050600623518 -10936.0,0.06551787302621975 -10937.0,0.0654952478620089 -10938.0,0.06547263051090355 -10939.0,0.06545002097020564 -10940.0,0.065427419237218 -10941.0,0.06540482530924445 -10942.0,0.06538223918358965 -10943.0,0.06535966085755926 -10944.0,0.06533709032845986 -10945.0,0.06531452759359896 -10946.0,0.06529197265028494 -10947.0,0.0652694254958272 -10948.0,0.06524688612753603 -10949.0,0.06522435454272263 -10950.0,0.06520183073869917 -10951.0,0.0651793147127787 -10952.0,0.06515680646227523 -10953.0,0.06513430598450368 -10954.0,0.06511181327677995 -10955.0,0.06508932833642077 -10956.0,0.06506685116074386 -10957.0,0.06504438174706788 -10958.0,0.0650219200927124 -10959.0,0.06499946619499788 -10960.0,0.06497702005124574 -10961.0,0.06495458165877831 -10962.0,0.0649321510149189 -10963.0,0.06490972811699165 -10964.0,0.06488731296232167 -10965.0,0.06486490554823503 -10966.0,0.06484250587205868 -10967.0,0.06482011393112047 -10968.0,0.06479772972274923 -10969.0,0.06477535324427468 -10970.0,0.06475298449302748 -10971.0,0.06473062346633922 -10972.0,0.06470827016154233 -10973.0,0.06468592457597028 -10974.0,0.06466358670695738 -10975.0,0.0646412565518389 -10976.0,0.064618934107951 -10977.0,0.06459661937263077 -10978.0,0.06457431234321624 -10979.0,0.06455201301704637 -10980.0,0.06452972139146095 -10981.0,0.06450743746380079 -10982.0,0.06448516123140757 -10983.0,0.06446289269162393 -10984.0,0.06444063184179334 -10985.0,0.06441837867926027 -10986.0,0.06439613320137008 -10987.0,0.06437389540546906 -10988.0,0.0643516652889044 -10989.0,0.06432944284902418 -10990.0,0.06430722808317746 -10991.0,0.06428502098871415 -10992.0,0.06426282156298516 -10993.0,0.06424062980334218 -10994.0,0.06421844570713793 -10995.0,0.06419626927172603 -10996.0,0.064174100494461 -10997.0,0.06415193937269821 -10998.0,0.06412978590379405 -10999.0,0.06410764008510575 -11000.0,0.06408550191399151 -11001.0,0.06406337138781035 -11002.0,0.06404124850392229 -11003.0,0.06401913325968824 -11004.0,0.06399702565247001 -11005.0,0.0639749256796303 -11006.0,0.06395283333853277 -11007.0,0.06393074862654194 -11008.0,0.0639086715410233 -11009.0,0.06388660207934321 -11010.0,0.06386454023886891 -11011.0,0.0638424860169686 -11012.0,0.06382043941101137 -11013.0,0.06379840041836726 -11014.0,0.06377636903640711 -11015.0,0.06375434526250277 -11016.0,0.06373232909402698 -11017.0,0.06371032052835338 -11018.0,0.06368831956285645 -11019.0,0.06366632619491168 -11020.0,0.06364434042189542 -11021.0,0.06362236224118493 -11022.0,0.06360039165015835 -11023.0,0.06357842864619476 -11024.0,0.06355647322667413 -11025.0,0.06353452538897734 -11026.0,0.06351258513048622 -11027.0,0.06349065244858339 -11028.0,0.06346872734065245 -11029.0,0.06344680980407792 -11030.0,0.0634248998362452 -11031.0,0.06340299743454057 -11032.0,0.06338110259635124 -11033.0,0.06335921531906531 -11034.0,0.06333733560007183 -11035.0,0.06331546343676064 -11036.0,0.06329359882652259 -11037.0,0.06327174176674938 -11038.0,0.06324989225483366 -11039.0,0.06322805028816889 -11040.0,0.06320621586414948 -11041.0,0.06318438898017079 -11042.0,0.06316256963362901 -11043.0,0.06314075782192123 -11044.0,0.06311895354244548 -11045.0,0.06309715679260068 -11046.0,0.06307536756978661 -11047.0,0.06305358587140401 -11048.0,0.06303181169485444 -11049.0,0.06301004503754043 -11050.0,0.06298828589686535 -11051.0,0.06296653427023355 -11052.0,0.06294479015505014 -11053.0,0.06292305354872124 -11054.0,0.06290132444865384 -11055.0,0.06287960285225586 -11056.0,0.06285788875693597 -11057.0,0.0628361821601039 -11058.0,0.06281448305917021 -11059.0,0.06279279145154637 -11060.0,0.06277110733464468 -11061.0,0.0627494307058784 -11062.0,0.06272776156266169 -11063.0,0.06270609990240956 -11064.0,0.06268444572253797 -11065.0,0.06266279902046368 -11066.0,0.0626411597936044 -11067.0,0.06261952803937876 -11068.0,0.06259790375520626 -11069.0,0.06257628693850723 -11070.0,0.06255467758670295 -11071.0,0.06253307569721563 -11072.0,0.06251148126746829 -11073.0,0.06248989429488487 -11074.0,0.062468314776890195 -11075.0,0.06244674271091 -11076.0,0.062425178094370905 -11077.0,0.06240362092470038 -11078.0,0.062382071199326816 -11079.0,0.0623605289156795 -11080.0,0.062338994071188626 -11081.0,0.062317466663285186 -11082.0,0.06229594668940113 -11083.0,0.0622744341469693 -11084.0,0.0622529290334234 -11085.0,0.06223143134619805 -11086.0,0.06220994108272869 -11087.0,0.06218845824045171 -11088.0,0.062166982816804356 -11089.0,0.0621455148092248 -11090.0,0.062124054215152005 -11091.0,0.06210260103202592 -11092.0,0.06208115525728732 -11093.0,0.06205971688837792 -11094.0,0.06203828592274022 -11095.0,0.06201686235781769 -11096.0,0.06199544619105465 -11097.0,0.06197403741989634 -11098.0,0.06195263604178879 -11099.0,0.06193124205417901 -11100.0,0.06190985545451485 -11101.0,0.06188847624024503 -11102.0,0.06186710440881921 -11103.0,0.06184573995768782 -11104.0,0.061824382884302274 -11105.0,0.06180303318611482 -11106.0,0.06178169086057863 -11107.0,0.06176035590514766 -11108.0,0.06173902831727684 -11109.0,0.06171770809442193 -11110.0,0.06169639523403962 -11111.0,0.06167508973358739 -11112.0,0.06165379159052367 -11113.0,0.06163250080230775 -11114.0,0.061611217366399816 -11115.0,0.061589941280260865 -11116.0,0.06156867254135283 -11117.0,0.06154741114713851 -11118.0,0.061526157095081614 -11119.0,0.061504910382646626 -11120.0,0.061483671007298984 -11121.0,0.061462438966505 -11122.0,0.061441214257731844 -11123.0,0.06141999687844758 -11124.0,0.06139878682612109 -11125.0,0.06137758409822219 -11126.0,0.06135638869222155 -11127.0,0.06133520060559074 -11128.0,0.06131401983580211 -11129.0,0.061292846380328996 -11130.0,0.061271680236645545 -11131.0,0.06125052140222682 -11132.0,0.061229369874548675 -11133.0,0.06120822565108791 -11134.0,0.06118708872932218 -11135.0,0.061165959106730027 -11136.0,0.06114483678079078 -11137.0,0.06112372174898474 -11138.0,0.061102614008793035 -11139.0,0.061081513557697656 -11140.0,0.061060420393181505 -11141.0,0.06103933451272828 -11142.0,0.06101825591382259 -11143.0,0.060997184593949934 -11144.0,0.060976120550596674 -11145.0,0.06095506378124997 -11146.0,0.06093401428339794 -11147.0,0.060912972054529516 -11148.0,0.06089193709213455 -11149.0,0.06087090939370367 -11150.0,0.06084988895672845 -11151.0,0.06082887577870131 -11152.0,0.06080786985711555 -11153.0,0.06078687118946527 -11154.0,0.060765879773245504 -11155.0,0.06074489560595213 -11156.0,0.06072391868508192 -11157.0,0.06070294900813242 -11158.0,0.06068198657260213 -11159.0,0.060661031375990396 -11160.0,0.060640083415797394 -11161.0,0.06061914268952423 -11162.0,0.06059820919467277 -11163.0,0.06057728292874582 -11164.0,0.06055636388924704 -11165.0,0.06053545207368096 -11166.0,0.0605145474795529 -11167.0,0.06049365010436913 -11168.0,0.06047275994563673 -11169.0,0.06045187700086369 -11170.0,0.06043100126755878 -11171.0,0.060410132743231704 -11172.0,0.060389271425392986 -11173.0,0.06036841731155406 -11174.0,0.06034757039922713 -11175.0,0.060326730685925326 -11176.0,0.06030589816916264 -11177.0,0.06028507284645389 -11178.0,0.060264254715314804 -11179.0,0.060243443773261865 -11180.0,0.060222640017812516 -11181.0,0.06020184344648502 -11182.0,0.06018105405679852 -11183.0,0.06016027184627295 -11184.0,0.06013949681242916 -11185.0,0.06011872895278884 -11186.0,0.06009796826487456 -11187.0,0.06007721474620968 -11188.0,0.060056468394318475 -11189.0,0.06003572920672606 -11190.0,0.06001499718095842 -11191.0,0.05999427231454234 -11192.0,0.059973554605005495 -11193.0,0.059952844049876435 -11194.0,0.05993214064668456 -11195.0,0.059911444392960055 -11196.0,0.05989075528623403 -11197.0,0.059870073324038424 -11198.0,0.05984939850390603 -11199.0,0.059828730823370535 -11200.0,0.05980807027996637 -11201.0,0.0597874168712289 -11202.0,0.05976677059469433 -11203.0,0.05974613144789975 -11204.0,0.05972549942838299 -11205.0,0.05970487453368284 -11206.0,0.059684256761338886 -11207.0,0.05966364610889162 -11208.0,0.059643042573882275 -11209.0,0.05962244615385303 -11210.0,0.05960185684634689 -11211.0,0.059581274648907716 -11212.0,0.05956069955908016 -11213.0,0.05954013157440979 -11214.0,0.05951957069244298 -11215.0,0.059499016910726975 -11216.0,0.059478470226809896 -11217.0,0.059457930638240605 -11218.0,0.05943739814256892 -11219.0,0.059416872737345444 -11220.0,0.05939635442012169 -11221.0,0.05937584318844991 -11222.0,0.059355339039883305 -11223.0,0.05933484197197586 -11224.0,0.05931435198228246 -11225.0,0.05929386906835874 -11226.0,0.059273393227761276 -11227.0,0.05925292445804744 -11228.0,0.05923246275677548 -11229.0,0.05921200812150443 -11230.0,0.05919156054979421 -11231.0,0.05917112003920557 -11232.0,0.05915068658730015 -11233.0,0.05913026019164032 -11234.0,0.059109840849789395 -11235.0,0.05908942855931149 -11236.0,0.059069023317771585 -11237.0,0.05904862512273549 -11238.0,0.059028233971769796 -11239.0,0.05900784986244203 -11240.0,0.0589874727923205 -11241.0,0.058967102758974405 -11242.0,0.05894673975997369 -11243.0,0.05892638379288924 -11244.0,0.058906034855292715 -11245.0,0.05888569294475668 -11246.0,0.05886535805885442 -11247.0,0.05884503019516018 -11248.0,0.058824709351248984 -11249.0,0.058804395524696726 -11250.0,0.058784088713080065 -11251.0,0.05876378891397657 -11252.0,0.058743496124964635 -11253.0,0.05872321034362346 -11254.0,0.058702931567533145 -11255.0,0.05868265979427451 -11256.0,0.058662395021429316 -11257.0,0.05864213724658012 -11258.0,0.05862188646731035 -11259.0,0.05860164268120417 -11260.0,0.058581405885846684 -11261.0,0.05856117607882379 -11262.0,0.058540953257722225 -11263.0,0.058520737420129525 -11264.0,0.0585005285636341 -11265.0,0.058480326685825194 -11266.0,0.05846013178429288 -11267.0,0.05843994385662801 -11268.0,0.05841976290042235 -11269.0,0.058399588913268435 -11270.0,0.05837942189275969 -11271.0,0.058359261836490296 -11272.0,0.05833910874205532 -11273.0,0.05831896260705064 -11274.0,0.058298823429072985 -11275.0,0.058278691205719914 -11276.0,0.05825856593458975 -11277.0,0.058238447613281716 -11278.0,0.058218336239395846 -11279.0,0.058198231810533026 -11280.0,0.058178134324294896 -11281.0,0.05815804377828399 -11282.0,0.05813796017010366 -11283.0,0.05811788349735811 -11284.0,0.05809781375765227 -11285.0,0.058077750948592 -11286.0,0.05805769506778396 -11287.0,0.05803764611283564 -11288.0,0.05801760408135531 -11289.0,0.057997568970952124 -11290.0,0.05797754077923604 -11291.0,0.05795751950381783 -11292.0,0.05793750514230914 -11293.0,0.05791749769232234 -11294.0,0.057897497151470724 -11295.0,0.05787750351736837 -11296.0,0.0578575167876302 -11297.0,0.057837536959871906 -11298.0,0.05781756403171005 -11299.0,0.05779759800076203 -11300.0,0.05777763886464605 -11301.0,0.05775768662098108 -11302.0,0.057737741267387 -11303.0,0.05771780280148446 -11304.0,0.05769787122089499 -11305.0,0.05767794652324083 -11306.0,0.05765802870614515 -11307.0,0.057638117767231885 -11308.0,0.057618213704125835 -11309.0,0.05759831651445255 -11310.0,0.057578426195838445 -11311.0,0.05755854274591077 -11312.0,0.05753866616229756 -11313.0,0.057518796442627716 -11314.0,0.05749893358453088 -11315.0,0.05747907758563758 -11316.0,0.057459228443579126 -11317.0,0.0574393861559877 -11318.0,0.05741955072049621 -11319.0,0.05739972213473846 -11320.0,0.05737990039634903 -11321.0,0.05736008550296337 -11322.0,0.05734027745221766 -11323.0,0.057320476241748956 -11324.0,0.05730068186919513 -11325.0,0.05728089433219488 -11326.0,0.05726111362838764 -11327.0,0.057241339755413755 -11328.0,0.057221572710914326 -11329.0,0.057201812492531305 -11330.0,0.05718205909790746 -11331.0,0.057162312524686315 -11332.0,0.057142572770512254 -11333.0,0.057122839833030487 -11334.0,0.057103113709887035 -11335.0,0.057083394398728664 -11336.0,0.05706368189720303 -11337.0,0.05704397620295858 -11338.0,0.05702427731364458 -11339.0,0.05700458522691107 -11340.0,0.05698489994040893 -11341.0,0.05696522145178986 -11342.0,0.05694554975870638 -11343.0,0.05692588485881175 -11344.0,0.05690622674976012 -11345.0,0.05688657542920642 -11346.0,0.05686693089480642 -11347.0,0.05684729314421661 -11348.0,0.05682766217509438 -11349.0,0.0568080379850979 -11350.0,0.05678842057188614 -11351.0,0.056768809933118926 -11352.0,0.05674920606645679 -11353.0,0.056729608969561154 -11354.0,0.056710018640094235 -11355.0,0.05669043507571908 -11356.0,0.05667085827409945 -11357.0,0.056651288232900006 -11358.0,0.05663172494978619 -11359.0,0.05661216842242426 -11360.0,0.056592618648481224 -11361.0,0.056573075625624955 -11362.0,0.056553539351524115 -11363.0,0.056534009823848194 -11364.0,0.05651448704026742 -11365.0,0.056494970998452874 -11366.0,0.056475461696076444 -11367.0,0.05645595913081082 -11368.0,0.056436463300329504 -11369.0,0.056416974202306736 -11370.0,0.05639749183441764 -11371.0,0.056378016194338104 -11372.0,0.056358547279744854 -11373.0,0.05633908508831534 -11374.0,0.05631962961772789 -11375.0,0.05630018086566161 -11376.0,0.05628073882979643 -11377.0,0.056261303507813006 -11378.0,0.05624187489739287 -11379.0,0.056222452996218336 -11380.0,0.05620303780197253 -11381.0,0.05618362931233931 -11382.0,0.05616422752500341 -11383.0,0.05614483243765035 -11384.0,0.056125444047966454 -11385.0,0.05610606235363878 -11386.0,0.05608668735235525 -11387.0,0.056067319041804585 -11388.0,0.05604795741967627 -11389.0,0.056028602483660636 -11390.0,0.05600925423144873 -11391.0,0.05598991266073247 -11392.0,0.055970577769204555 -11393.0,0.05595124955455849 -11394.0,0.05593192801448851 -11395.0,0.05591261314668974 -11396.0,0.055893304948858025 -11397.0,0.05587400341869008 -11398.0,0.055854708553883324 -11399.0,0.055835420352136046 -11400.0,0.0558161388111473 -11401.0,0.05579686392861696 -11402.0,0.05577759570224564 -11403.0,0.055758334129734785 -11404.0,0.055739079208786645 -11405.0,0.05571983093710424 -11406.0,0.05570058931239142 -11407.0,0.05568135433235275 -11408.0,0.05566212599469366 -11409.0,0.05564290429712035 -11410.0,0.05562368923733983 -11411.0,0.05560448081305985 -11412.0,0.055585279021988995 -11413.0,0.05556608386183664 -11414.0,0.05554689533031296 -11415.0,0.05552771342512887 -11416.0,0.05550853814399611 -11417.0,0.05548936948462722 -11418.0,0.05547020744473554 -11419.0,0.05545105202203514 -11420.0,0.05543190321424093 -11421.0,0.0554127610190686 -11422.0,0.05539362543423466 -11423.0,0.055374496457456304 -11424.0,0.05535537408645163 -11425.0,0.055336258318939464 -11426.0,0.055317149152639446 -11427.0,0.05529804658527201 -11428.0,0.05527895061455831 -11429.0,0.05525986123822036 -11430.0,0.05524077845398094 -11431.0,0.05522170225956364 -11432.0,0.05520263265269275 -11433.0,0.05518356963109343 -11434.0,0.05516451319249161 -11435.0,0.05514546333461402 -11436.0,0.05512642005518809 -11437.0,0.05510738335194214 -11438.0,0.055088353222605205 -11439.0,0.05506932966490717 -11440.0,0.05505031267657862 -11441.0,0.055031302255350974 -11442.0,0.05501229839895643 -11443.0,0.054993301105127984 -11444.0,0.0549743103715994 -11445.0,0.05495532619610519 -11446.0,0.054936348576380696 -11447.0,0.05491737751016203 -11448.0,0.0548984129951861 -11449.0,0.05487945502919054 -11450.0,0.05486050360991382 -11451.0,0.05484155873509517 -11452.0,0.05482262040247463 -11453.0,0.05480368860979296 -11454.0,0.054784763354791745 -11455.0,0.05476584463521335 -11456.0,0.05474693244880092 -11457.0,0.054728026793298336 -11458.0,0.0547091276664503 -11459.0,0.0546902350660023 -11460.0,0.0546713489897006 -11461.0,0.05465246943529218 -11462.0,0.054633596400524884 -11463.0,0.05461472988314728 -11464.0,0.05459586988090873 -11465.0,0.05457701639155942 -11466.0,0.054558169412850195 -11467.0,0.05453932894253278 -11468.0,0.054520494978359646 -11469.0,0.05450166751808405 -11470.0,0.05448284655945999 -11471.0,0.05446403210024226 -11472.0,0.054445224138186456 -11473.0,0.05442642267104893 -11474.0,0.05440762769658676 -11475.0,0.054388839212557875 -11476.0,0.054370057216720946 -11477.0,0.05435128170683543 -11478.0,0.054332512680661506 -11479.0,0.054313750135960195 -11480.0,0.05429499407049325 -11481.0,0.054276244482023214 -11482.0,0.05425750136831343 -11483.0,0.054238764727127915 -11484.0,0.05422003455623157 -11485.0,0.05420131085339 -11486.0,0.054182593616369644 -11487.0,0.054163882842937626 -11488.0,0.0541451785308619 -11489.0,0.054126480677911176 -11490.0,0.05410778928185497 -11491.0,0.05408910434046349 -11492.0,0.05407042585150777 -11493.0,0.05405175381275962 -11494.0,0.054033088221991606 -11495.0,0.05401442907697702 -11496.0,0.05399577637548999 -11497.0,0.053977130115305375 -11498.0,0.053958490294198844 -11499.0,0.05393985690994675 -11500.0,0.05392122996032629 -11501.0,0.053902609443115417 -11502.0,0.05388399535609282 -11503.0,0.05386538769703801 -11504.0,0.05384678646373118 -11505.0,0.053828191653953354 -11506.0,0.05380960326548632 -11507.0,0.053791021296112636 -11508.0,0.05377244574361555 -11509.0,0.05375387660577918 -11510.0,0.05373531388038835 -11511.0,0.05371675756522869 -11512.0,0.053698207658086514 -11513.0,0.05367966415674898 -11514.0,0.053661127059003985 -11515.0,0.05364259636264021 -11516.0,0.05362407206544703 -11517.0,0.05360555416521466 -11518.0,0.05358704265973405 -11519.0,0.0535685375467969 -11520.0,0.05355003882419572 -11521.0,0.0535315464897237 -11522.0,0.053513060541174856 -11523.0,0.05349458097634395 -11524.0,0.053476107793026535 -11525.0,0.05345764098901885 -11526.0,0.05343918056211795 -11527.0,0.053420726510121655 -11528.0,0.05340227883082854 -11529.0,0.0533838375220379 -11530.0,0.053365402581549835 -11531.0,0.0533469740071652 -11532.0,0.05332855179668561 -11533.0,0.05331013594791339 -11534.0,0.053291726458651684 -11535.0,0.05327332332670438 -11536.0,0.05325492654987614 -11537.0,0.05323653612597232 -11538.0,0.05321815205279908 -11539.0,0.05319977432816336 -11540.0,0.05318140294987282 -11541.0,0.05316303791573591 -11542.0,0.053144679223561773 -11543.0,0.05312632687116037 -11544.0,0.0531079808563424 -11545.0,0.05308964117691934 -11546.0,0.05307130783070336 -11547.0,0.053052980815507446 -11548.0,0.05303466012914531 -11549.0,0.05301634576943146 -11550.0,0.05299803773418108 -11551.0,0.05297973602121017 -11552.0,0.05296144062833548 -11553.0,0.05294315155337452 -11554.0,0.05292486879414549 -11555.0,0.05290659234846742 -11556.0,0.052888322214160045 -11557.0,0.05287005838904389 -11558.0,0.052851800870940234 -11559.0,0.05283354965767104 -11560.0,0.05281530474705909 -11561.0,0.0527970661369279 -11562.0,0.05277883382510177 -11563.0,0.05276060780940566 -11564.0,0.05274238808766537 -11565.0,0.052724174657707415 -11566.0,0.052705967517359086 -11567.0,0.05268776666444837 -11568.0,0.05266957209680405 -11569.0,0.05265138381225565 -11570.0,0.052633201808633456 -11571.0,0.05261502608376846 -11572.0,0.052596856635492434 -11573.0,0.052578693461637904 -11574.0,0.05256053656003817 -11575.0,0.052542385928527176 -11576.0,0.052524241564939726 -11577.0,0.05250610346711132 -11578.0,0.05248797163287822 -11579.0,0.05246984606007745 -11580.0,0.05245172674654672 -11581.0,0.052433613690124545 -11582.0,0.052415506888650175 -11583.0,0.05239740633996362 -11584.0,0.052379312041905574 -11585.0,0.05236122399231753 -11586.0,0.052343142189041736 -11587.0,0.052325066629921174 -11588.0,0.052306997312799516 -11589.0,0.05228893423552126 -11590.0,0.05227087739593159 -11591.0,0.0522528267918765 -11592.0,0.05223478242120262 -11593.0,0.05221674428175743 -11594.0,0.05219871237138911 -11595.0,0.05218068668794657 -11596.0,0.05216266722927951 -11597.0,0.05214465399323829 -11598.0,0.052126646977674086 -11599.0,0.0521086461804388 -11600.0,0.052090651599385085 -11601.0,0.05207266323236627 -11602.0,0.0520546810772365 -11603.0,0.05203670513185063 -11604.0,0.0520187353940643 -11605.0,0.05200077186173378 -11606.0,0.0519828145327162 -11607.0,0.05196486340486937 -11608.0,0.051946918476051866 -11609.0,0.05192897974412295 -11610.0,0.051911047206942694 -11611.0,0.05189312086237187 -11612.0,0.051875200708272014 -11613.0,0.05185728674250534 -11614.0,0.05183937896293486 -11615.0,0.051821477367424325 -11616.0,0.05180358195383818 -11617.0,0.05178569272004168 -11618.0,0.05176780966390071 -11619.0,0.05174993278328197 -11620.0,0.05173206207605289 -11621.0,0.05171419754008164 -11622.0,0.05169633917323707 -11623.0,0.05167848697338883 -11624.0,0.05166064093840728 -11625.0,0.05164280106616355 -11626.0,0.05162496735452941 -11627.0,0.05160713980137746 -11628.0,0.05158931840458101 -11629.0,0.05157150316201411 -11630.0,0.051553694071551484 -11631.0,0.05153589113106868 -11632.0,0.05151809433844191 -11633.0,0.05150030369154816 -11634.0,0.051482519188265165 -11635.0,0.0514647408264713 -11636.0,0.05144696860404578 -11637.0,0.0514292025188685 -11638.0,0.051411442568820104 -11639.0,0.051393688751781935 -11640.0,0.0513759410656361 -11641.0,0.05135819950826544 -11642.0,0.05134046407755353 -11643.0,0.051322734771384625 -11644.0,0.051305011587643765 -11645.0,0.05128729452421671 -11646.0,0.05126958357898996 -11647.0,0.05125187874985068 -11648.0,0.05123418003468685 -11649.0,0.051216487431387125 -11650.0,0.05119880093784094 -11651.0,0.051181120551938374 -11652.0,0.051163446271570316 -11653.0,0.05114577809462834 -11654.0,0.05112811601900478 -11655.0,0.05111046004259269 -11656.0,0.0510928101632858 -11657.0,0.05107516637897862 -11658.0,0.051057528687566384 -11659.0,0.05103989708694507 -11660.0,0.05102227157501131 -11661.0,0.05100465214966252 -11662.0,0.05098703880879685 -11663.0,0.05096943155031316 -11664.0,0.050951830372111 -11665.0,0.0509342352720907 -11666.0,0.050916646248153286 -11667.0,0.05089906329820054 -11668.0,0.0508814864201349 -11669.0,0.05086391561185961 -11670.0,0.050846350871278576 -11671.0,0.05082879219629646 -11672.0,0.050811239584818674 -11673.0,0.050793693034751265 -11674.0,0.05077615254400108 -11675.0,0.05075861811047567 -11676.0,0.05074108973208332 -11677.0,0.050723567406732985 -11678.0,0.0507060511323344 -11679.0,0.050688540906798 -11680.0,0.05067103672803497 -11681.0,0.05065353859395713 -11682.0,0.050636046502477126 -11683.0,0.050618560451508254 -11684.0,0.0506010804389646 -11685.0,0.05058360646276087 -11686.0,0.050566138520812556 -11687.0,0.05054867661103588 -11688.0,0.05053122073134779 -11689.0,0.05051377087966586 -11690.0,0.05049632705390848 -11691.0,0.050478889251994744 -11692.0,0.05046145747184443 -11693.0,0.05044403171137809 -11694.0,0.0504266119685169 -11695.0,0.05040919824118284 -11696.0,0.050391790527298586 -11697.0,0.050374388824787536 -11698.0,0.05035699313157376 -11699.0,0.05033960344558209 -11700.0,0.05032221976473807 -11701.0,0.05030484208696798 -11702.0,0.05028747041019873 -11703.0,0.050270104732358045 -11704.0,0.050252745051374316 -11705.0,0.050235391365176685 -11706.0,0.05021804367169494 -11707.0,0.050200701968859646 -11708.0,0.05018336625460207 -11709.0,0.050166036526854176 -11710.0,0.050148712783548696 -11711.0,0.05013139502261897 -11712.0,0.050114083241999154 -11713.0,0.05009677743962406 -11714.0,0.05007947761342928 -11715.0,0.05006218376135099 -11716.0,0.05004489588132622 -11717.0,0.05002761397129263 -11718.0,0.05001033802918864 -11719.0,0.04999306805295332 -11720.0,0.04997580404052649 -11721.0,0.049958545989848696 -11722.0,0.049941293898861205 -11723.0,0.04992404776550591 -11724.0,0.0499068075877255 -11725.0,0.04988957336346335 -11726.0,0.04987234509066354 -11727.0,0.04985512276727088 -11728.0,0.04983790639123084 -11729.0,0.04982069596048965 -11730.0,0.049803491472994225 -11731.0,0.049786292926692226 -11732.0,0.04976910031953194 -11733.0,0.04975191364946244 -11734.0,0.04973473291443348 -11735.0,0.049717558112395546 -11736.0,0.04970038924129976 -11737.0,0.04968322629909804 -11738.0,0.04966606928374295 -11739.0,0.04964891819318783 -11740.0,0.04963177302538661 -11741.0,0.04961463377829403 -11742.0,0.04959750044986551 -11743.0,0.04958037303805718 -11744.0,0.049563251540825824 -11745.0,0.049546135956129 -11746.0,0.04952902628192493 -11747.0,0.04951192251617257 -11748.0,0.04949482465683158 -11749.0,0.049477732701862266 -11750.0,0.049460646649225705 -11751.0,0.049443566496883654 -11752.0,0.049426492242798596 -11753.0,0.04940942388493366 -11754.0,0.04939236142125273 -11755.0,0.049375304849720386 -11756.0,0.04935825416830192 -11757.0,0.049341209374963266 -11758.0,0.049324170467671125 -11759.0,0.049307137444392884 -11760.0,0.04929011030309665 -11761.0,0.04927308904175116 -11762.0,0.049256073658325926 -11763.0,0.04923906415079114 -11764.0,0.04922206051711769 -11765.0,0.04920506275527718 -11766.0,0.04918807086324187 -11767.0,0.04917108483898477 -11768.0,0.049154104680479566 -11769.0,0.04913713038570067 -11770.0,0.049120161952623136 -11771.0,0.04910319937922277 -11772.0,0.04908624266347606 -11773.0,0.04906929180336023 -11774.0,0.049052346796853094 -11775.0,0.04903540764193328 -11776.0,0.04901847433658007 -11777.0,0.04900154687877346 -11778.0,0.048984625266494074 -11779.0,0.048967709497723326 -11780.0,0.04895079957044328 -11781.0,0.048933895482636734 -11782.0,0.048916997232287096 -11783.0,0.04890010481737856 -11784.0,0.04888321823589598 -11785.0,0.04886633748582492 -11786.0,0.04884946256515164 -11787.0,0.04883259347186304 -11788.0,0.04881573020394679 -11789.0,0.048798872759391224 -11790.0,0.04878202113618539 -11791.0,0.04876517533231897 -11792.0,0.048748335345782406 -11793.0,0.0487315011745668 -11794.0,0.048714672816664 -11795.0,0.04869785027006644 -11796.0,0.04868103353276736 -11797.0,0.04866422260276062 -11798.0,0.04864741747804083 -11799.0,0.048630618156603224 -11800.0,0.04861382463644378 -11801.0,0.04859703691555915 -11802.0,0.0485802549919467 -11803.0,0.04856347886360447 -11804.0,0.04854670852853116 -11805.0,0.0485299439847262 -11806.0,0.048513185230189715 -11807.0,0.048496432262922516 -11808.0,0.048479685080926066 -11809.0,0.04846294368220257 -11810.0,0.048446208064754887 -11811.0,0.048429478226586616 -11812.0,0.04841275416570196 -11813.0,0.04839603588010588 -11814.0,0.04837932336780402 -11815.0,0.0483626166268027 -11816.0,0.048345915655108894 -11817.0,0.04832922045073032 -11818.0,0.04831253101167536 -11819.0,0.048295847335953115 -11820.0,0.04827916942157329 -11821.0,0.048262497266546356 -11822.0,0.048245830868883455 -11823.0,0.048229170226596396 -11824.0,0.048212515337697714 -11825.0,0.048195866200200554 -11826.0,0.048179222812118824 -11827.0,0.048162585171467084 -11828.0,0.0481459532762606 -11829.0,0.048129327124515286 -11830.0,0.04811270671424776 -11831.0,0.04809609204347534 -11832.0,0.048079483110216044 -11833.0,0.0480628799124885 -11834.0,0.04804628244831208 -11835.0,0.048029690715706834 -11836.0,0.048013104712693516 -11837.0,0.047996524437293485 -11838.0,0.047979949887528864 -11839.0,0.04796338106142243 -11840.0,0.04794681795699764 -11841.0,0.04793026057227865 -11842.0,0.04791370890529025 -11843.0,0.04789716295405797 -11844.0,0.047880622716608 -11845.0,0.04786408819096723 -11846.0,0.04784755937516316 -11847.0,0.047831036267224056 -11848.0,0.047814518865178825 -11849.0,0.04779800716705709 -11850.0,0.04778150117088907 -11851.0,0.04776500087470575 -11852.0,0.04774850627653877 -11853.0,0.047732017374420455 -11854.0,0.04771553416638376 -11855.0,0.04769905665046238 -11856.0,0.04768258482469068 -11857.0,0.047666118687103694 -11858.0,0.047649658235737094 -11859.0,0.047633203468627296 -11860.0,0.04761675438381136 -11861.0,0.047600310979327036 -11862.0,0.04758387325321276 -11863.0,0.047567441203507595 -11864.0,0.04755101482825134 -11865.0,0.047534594125484435 -11866.0,0.04751817909324805 -11867.0,0.04750176972958393 -11868.0,0.047485366032534594 -11869.0,0.04746896800014319 -11870.0,0.047452575630453575 -11871.0,0.047436188921510226 -11872.0,0.04741980787135834 -11873.0,0.04740343247804378 -11874.0,0.0473870627396131 -11875.0,0.04737069865411347 -11876.0,0.0473543402195928 -11877.0,0.04733798743409963 -11878.0,0.04732164029568321 -11879.0,0.04730529880239347 -11880.0,0.047288962952280925 -11881.0,0.04727263274339686 -11882.0,0.047256308173793206 -11883.0,0.047239989241522576 -11884.0,0.0472236759446382 -11885.0,0.04720736828119404 -11886.0,0.04719106624924472 -11887.0,0.04717476984684553 -11888.0,0.047158479072052395 -11889.0,0.04714219392292197 -11890.0,0.04712591439751154 -11891.0,0.04710964049387912 -11892.0,0.04709337221008329 -11893.0,0.0470771095441834 -11894.0,0.047060852494239414 -11895.0,0.04704460105831202 -11896.0,0.04702835523446249 -11897.0,0.04701211502075285 -11898.0,0.046995880415245744 -11899.0,0.04697965141600451 -11900.0,0.04696342802109317 -11901.0,0.04694721022857634 -11902.0,0.046930998036519386 -11903.0,0.04691479144298831 -11904.0,0.046898590446049805 -11905.0,0.04688239504377116 -11906.0,0.046866205234220415 -11907.0,0.04685002101546623 -11908.0,0.04683384238557798 -11909.0,0.04681766934262562 -11910.0,0.04680150188467986 -11911.0,0.04678534000981202 -11912.0,0.04676918371609414 -11913.0,0.046753033001598845 -11914.0,0.046736887864399494 -11915.0,0.0467207483025701 -11916.0,0.046704614314185315 -11917.0,0.0466884858973205 -11918.0,0.04667236305005161 -11919.0,0.04665624577045533 -11920.0,0.04664013405660899 -11921.0,0.046624027906590586 -11922.0,0.046607927318478744 -11923.0,0.0465918322903528 -11924.0,0.046575742820292726 -11925.0,0.04655965890637919 -11926.0,0.04654358054669346 -11927.0,0.046527507739317533 -11928.0,0.04651144048233403 -11929.0,0.046495378773826264 -11930.0,0.04647932261187815 -11931.0,0.046463271994574326 -11932.0,0.04644722692000008 -11933.0,0.04643118738624136 -11934.0,0.04641515339138473 -11935.0,0.04639912493351747 -11936.0,0.046383102010727505 -11937.0,0.046367084621103415 -11938.0,0.04635107276273446 -11939.0,0.046335066433710506 -11940.0,0.04631906563212214 -11941.0,0.046303070356060565 -11942.0,0.0462870806036177 -11943.0,0.04627109637288604 -11944.0,0.04625511766195879 -11945.0,0.04623914446892982 -11946.0,0.046223176791893666 -11947.0,0.04620721462894545 -11948.0,0.04619125797818102 -11949.0,0.04617530683769688 -11950.0,0.04615936120559019 -11951.0,0.0461434210799587 -11952.0,0.046127486458900906 -11953.0,0.04611155734051591 -11954.0,0.04609563372290349 -11955.0,0.0460797156041641 -11956.0,0.046063802982398774 -11957.0,0.04604789585570928 -11958.0,0.04603199422219801 -11959.0,0.04601609807996804 -11960.0,0.046000207427123026 -11961.0,0.04598432226176736 -11962.0,0.04596844258200605 -11963.0,0.04595256838594479 -11964.0,0.04593669967168987 -11965.0,0.04592083643734827 -11966.0,0.045904978681027636 -11967.0,0.045889126400836276 -11968.0,0.045873279594883076 -11969.0,0.04585743826127766 -11970.0,0.04584160239813027 -11971.0,0.04582577200355181 -11972.0,0.045809947075653806 -11973.0,0.04579412761254847 -11974.0,0.04577831361234866 -11975.0,0.045762505073167876 -11976.0,0.0457467019931203 -11977.0,0.045730904370320694 -11978.0,0.045715112202884545 -11979.0,0.04569932548892796 -11980.0,0.045683544226567716 -11981.0,0.04566776841392118 -11982.0,0.04565199804910644 -11983.0,0.045636233130242204 -11984.0,0.04562047365544785 -11985.0,0.04560471962284335 -11986.0,0.04558897103054938 -11987.0,0.04557322787668725 -11988.0,0.04555749015937894 -11989.0,0.04554175787674701 -11990.0,0.045526031026914736 -11991.0,0.04551030960800601 -11992.0,0.0454945936181454 -11993.0,0.04547888305545811 -11994.0,0.04546317791806995 -11995.0,0.04544747820410742 -11996.0,0.04543178391169767 -11997.0,0.045416095038968506 -11998.0,0.04540041158404832 -11999.0,0.0453847335450662 -12000.0,0.045369060920151874 -12001.0,0.04535339370743574 -12002.0,0.04533773190504877 -12003.0,0.04532207551112264 -12004.0,0.04530642452378966 -12005.0,0.04529077894118281 -12006.0,0.04527513876143563 -12007.0,0.04525950398268239 -12008.0,0.045243874603057975 -12009.0,0.045228250620697935 -12010.0,0.04521263203373839 -12011.0,0.0451970188403162 -12012.0,0.0451814110385688 -12013.0,0.04516580862663431 -12014.0,0.04515021160265149 -12015.0,0.04513461996475968 -12016.0,0.04511903371109895 -12017.0,0.04510345283980996 -12018.0,0.04508787734903406 -12019.0,0.04507230723691315 -12020.0,0.04505674250158985 -12021.0,0.04504118314120741 -12022.0,0.04502562915390974 -12023.0,0.04501008053784129 -12024.0,0.04499453729114728 -12025.0,0.0449789994119735 -12026.0,0.044963466898466406 -12027.0,0.04494793974877306 -12028.0,0.044932417961041186 -12029.0,0.04491690153341916 -12030.0,0.04490139046405598 -12031.0,0.04488588475110132 -12032.0,0.04487038439270541 -12033.0,0.04485488938701919 -12034.0,0.044839399732194224 -12035.0,0.04482391542638273 -12036.0,0.044808436467737495 -12037.0,0.04479296285441202 -12038.0,0.044777494584560415 -12039.0,0.04476203165633744 -12040.0,0.044746574067898455 -12041.0,0.044731121817399494 -12042.0,0.04471567490299721 -12043.0,0.04470023332284893 -12044.0,0.04468479707511254 -12045.0,0.04466936615794663 -12046.0,0.04465394056951041 -12047.0,0.04463852030796372 -12048.0,0.04462310537146701 -12049.0,0.04460769575818142 -12050.0,0.04459229146626868 -12051.0,0.04457689249389118 -12052.0,0.04456149883921194 -12053.0,0.04454611050039458 -12054.0,0.04453072747560341 -12055.0,0.04451534976300333 -12056.0,0.044499977360759925 -12057.0,0.04448461026703934 -12058.0,0.044469248480008404 -12059.0,0.044453891997834574 -12060.0,0.044438540818685944 -12061.0,0.04442319494073121 -12062.0,0.04440785436213972 -12063.0,0.04439251908108146 -12064.0,0.04437718909572707 -12065.0,0.044361864404247754 -12066.0,0.0443465450048154 -12067.0,0.04433123089560252 -12068.0,0.04431592207478225 -12069.0,0.044300618540528386 -12070.0,0.044285320291015284 -12071.0,0.044270027324417996 -12072.0,0.044254739638912174 -12073.0,0.04423945723267414 -12074.0,0.04422418010388077 -12075.0,0.044208908250709625 -12076.0,0.04419364167133889 -12077.0,0.04417838036394741 -12078.0,0.04416312432671456 -12079.0,0.04414787355782044 -12080.0,0.04413262805544574 -12081.0,0.044117387817771796 -12082.0,0.044102152842980524 -12083.0,0.044086923129254524 -12084.0,0.044071698674777005 -12085.0,0.04405647947773181 -12086.0,0.04404126553630337 -12087.0,0.04402605684867679 -12088.0,0.04401085341303778 -12089.0,0.04399565522757269 -12090.0,0.043980462290468494 -12091.0,0.043965274599912764 -12092.0,0.04395009215409372 -12093.0,0.04393491495120022 -12094.0,0.043919742989421744 -12095.0,0.04390457626694836 -12096.0,0.0438894147819708 -12097.0,0.04387425853268041 -12098.0,0.04385910751726918 -12099.0,0.04384396173392967 -12100.0,0.04382882118085511 -12101.0,0.04381368585623935 -12102.0,0.04379855575827687 -12103.0,0.043783430885162726 -12104.0,0.043768311235092644 -12105.0,0.04375319680626296 -12106.0,0.043738087596870645 -12107.0,0.043722983605113286 -12108.0,0.04370788482918905 -12109.0,0.04369279126729679 -12110.0,0.043677702917635945 -12111.0,0.04366261977840662 -12112.0,0.043647541847809446 -12113.0,0.04363246912404577 -12114.0,0.04361740160531752 -12115.0,0.04360233928982727 -12116.0,0.04358728217577816 -12117.0,0.04357223026137401 -12118.0,0.043557183544819224 -12119.0,0.04354214202431887 -12120.0,0.04352710569807856 -12121.0,0.04351207456430459 -12122.0,0.04349704862120385 -12123.0,0.04348202786698387 -12124.0,0.04346701229985277 -12125.0,0.043452001918019297 -12126.0,0.04343699671969283 -12127.0,0.04342199670308337 -12128.0,0.043407001866401514 -12129.0,0.043392012207858474 -12130.0,0.04337702772566611 -12131.0,0.04336204841803687 -12132.0,0.043347074283183865 -12133.0,0.04333210531932074 -12134.0,0.04331714152466183 -12135.0,0.04330218289742207 -12136.0,0.04328722943581702 -12137.0,0.04327228113806279 -12138.0,0.043257338002376196 -12139.0,0.04324240002697462 -12140.0,0.043227467210076094 -12141.0,0.0432125395498992 -12142.0,0.0431976170446632 -12143.0,0.043182699692587936 -12144.0,0.04316778749189389 -12145.0,0.04315288044080216 -12146.0,0.04313797853753441 -12147.0,0.04312308178031297 -12148.0,0.043108190167360755 -12149.0,0.043093303696901335 -12150.0,0.043078422367158815 -12151.0,0.043063546176357985 -12152.0,0.04304867512272422 -12153.0,0.04303380920448354 -12154.0,0.04301894841986251 -12155.0,0.04300409276708835 -12156.0,0.04298924224438891 -12157.0,0.04297439684999263 -12158.0,0.04295955658212854 -12159.0,0.04294472143902632 -12160.0,0.04292989141891624 -12161.0,0.04291506652002921 -12162.0,0.04290024674059669 -12163.0,0.04288543207885081 -12164.0,0.04287062253302428 -12165.0,0.04285581810135044 -12166.0,0.042841018782063235 -12167.0,0.04282622457339719 -12168.0,0.04281143547358747 -12169.0,0.042796651480869856 -12170.0,0.042781872593480735 -12171.0,0.04276709880965706 -12172.0,0.04275233012763644 -12173.0,0.04273756654565709 -12174.0,0.04272280806195783 -12175.0,0.04270805467477805 -12176.0,0.04269330638235779 -12177.0,0.04267856318293769 -12178.0,0.042663825074759014 -12179.0,0.04264909205606358 -12180.0,0.04263436412509385 -12181.0,0.042619641280092914 -12182.0,0.042604923519304415 -12183.0,0.04259021084097267 -12184.0,0.04257550324334252 -12185.0,0.042560800724659474 -12186.0,0.04254610328316963 -12187.0,0.04253141091711971 -12188.0,0.04251672362475698 -12189.0,0.04250204140432938 -12190.0,0.04248736425408542 -12191.0,0.04247269217227424 -12192.0,0.04245802515714554 -12193.0,0.04244336320694967 -12194.0,0.04242870631993756 -12195.0,0.04241405449436077 -12196.0,0.0423994077284714 -12197.0,0.042384766020522234 -12198.0,0.042370129368766614 -12199.0,0.04235549777145851 -12200.0,0.042340871226852435 -12201.0,0.042326249733203584 -12202.0,0.04231163328876771 -12203.0,0.04229702189180118 -12204.0,0.04228241554056098 -12205.0,0.04226781423330464 -12206.0,0.042253217968290346 -12207.0,0.042238626743776875 -12208.0,0.04222404055802362 -12209.0,0.042209459409290516 -12210.0,0.042194883295838155 -12211.0,0.04218031221592771 -12212.0,0.04216574616782098 -12213.0,0.042151185149780314 -12214.0,0.042136629160068696 -12215.0,0.0421220781969497 -12216.0,0.042107532258687526 -12217.0,0.042092991343546916 -12218.0,0.04207845544979326 -12219.0,0.042063924575692524 -12220.0,0.04204939871951129 -12221.0,0.04203487787951675 -12222.0,0.042020362053976634 -12223.0,0.042005851241159325 -12224.0,0.041991345439333784 -12225.0,0.04197684464676961 -12226.0,0.04196234886173691 -12227.0,0.04194785808250647 -12228.0,0.04193337230734964 -12229.0,0.0419188915345384 -12230.0,0.04190441576234526 -12231.0,0.04188994498904337 -12232.0,0.04187547921290649 -12233.0,0.04186101843220898 -12234.0,0.04184656264522572 -12235.0,0.04183211185023226 -12236.0,0.04181766604550474 -12237.0,0.04180322522931989 -12238.0,0.041788789399954986 -12239.0,0.041774358555687965 -12240.0,0.04175993269479733 -12241.0,0.041745511815562186 -12242.0,0.04173109591626223 -12243.0,0.04171668499517773 -12244.0,0.041702279050589576 -12245.0,0.04168787808077925 -12246.0,0.04167348208402883 -12247.0,0.04165909105862096 -12248.0,0.04164470500283889 -12249.0,0.041630323914966495 -12250.0,0.04161594779328822 -12251.0,0.04160157663608906 -12252.0,0.04158721044165466 -12253.0,0.041572849208271236 -12254.0,0.04155849293422562 -12255.0,0.04154414161780519 -12256.0,0.04152979525729793 -12257.0,0.04151545385099244 -12258.0,0.04150111739717789 -12259.0,0.04148678589414407 -12260.0,0.04147245934018129 -12261.0,0.04145813773358052 -12262.0,0.0414438210726333 -12263.0,0.04142950935563177 -12264.0,0.041415202580868615 -12265.0,0.04140090074663715 -12266.0,0.04138660385123128 -12267.0,0.041372311892945504 -12268.0,0.04135802487007486 -12269.0,0.04134374278091503 -12270.0,0.04132946562376226 -12271.0,0.04131519339691341 -12272.0,0.041300926098665876 -12273.0,0.04128666372731768 -12274.0,0.041272406281167434 -12275.0,0.04125815375851435 -12276.0,0.04124390615765816 -12277.0,0.04122966347689925 -12278.0,0.04121542571453858 -12279.0,0.041201192868877676 -12280.0,0.04118696493821869 -12281.0,0.0411727419208643 -12282.0,0.04115852381511781 -12283.0,0.041144310619283114 -12284.0,0.0411301023316647 -12285.0,0.04111589895056758 -12286.0,0.04110170047429741 -12287.0,0.04108750690116043 -12288.0,0.04107331822946345 -12289.0,0.04105913445751384 -12290.0,0.041044955583619605 -12291.0,0.041030781606089285 -12292.0,0.04101661252323207 -12293.0,0.04100244833335764 -12294.0,0.04098828903477633 -12295.0,0.040974134625799054 -12296.0,0.04095998510473728 -12297.0,0.040945840469903086 -12298.0,0.040931700719609096 -12299.0,0.04091756585216856 -12300.0,0.04090343586589528 -12301.0,0.04088931075910368 -12302.0,0.0408751905301087 -12303.0,0.04086107517722592 -12304.0,0.040846964698771464 -12305.0,0.0408328590930621 -12306.0,0.04081875835841507 -12307.0,0.0408046624931483 -12308.0,0.040790571495580234 -12309.0,0.04077648536402995 -12310.0,0.04076240409681704 -12311.0,0.040748327692261735 -12312.0,0.040734256148684804 -12313.0,0.04072018946440765 -12314.0,0.040706127637752165 -12315.0,0.04069207066704092 -12316.0,0.040678018550596995 -12317.0,0.04066397128674409 -12318.0,0.04064992887380648 -12319.0,0.04063589131010898 -12320.0,0.040621858593977024 -12321.0,0.04060783072373661 -12322.0,0.04059380769771433 -12323.0,0.04057978951423731 -12324.0,0.0405657761716333 -12325.0,0.04055176766823061 -12326.0,0.04053776400235814 -12327.0,0.04052376517234533 -12328.0,0.04050977117652223 -12329.0,0.040495782013219454 -12330.0,0.04048179768076823 -12331.0,0.04046781817750029 -12332.0,0.04045384350174799 -12333.0,0.040439873651844246 -12334.0,0.04042590862612258 -12335.0,0.04041194842291707 -12336.0,0.04039799304056233 -12337.0,0.04038404247739361 -12338.0,0.0403700967317467 -12339.0,0.040356155801958 -12340.0,0.040342219686364415 -12341.0,0.04032828838330349 -12342.0,0.04031436189111333 -12343.0,0.04030044020813261 -12344.0,0.040286523332700545 -12345.0,0.04027261126315697 -12346.0,0.04025870399784228 -12347.0,0.040244801535097456 -12348.0,0.040230903873264 -12349.0,0.040217011010684034 -12350.0,0.040203122945700255 -12351.0,0.04018923967665592 -12352.0,0.040175361201894834 -12353.0,0.0401614875197614 -12354.0,0.0401476186286006 -12355.0,0.04013375452675797 -12356.0,0.04011989521257965 -12357.0,0.04010604068441228 -12358.0,0.040092190940603144 -12359.0,0.04007834597950005 -12360.0,0.040064505799451436 -12361.0,0.040050670398806214 -12362.0,0.040036839775913956 -12363.0,0.04002301392912475 -12364.0,0.04000919285678931 -12365.0,0.03999537655725884 -12366.0,0.039981565028885176 -12367.0,0.0399677582700207 -12368.0,0.039953956279018384 -12369.0,0.03994015905423172 -12370.0,0.039926366594014814 -12371.0,0.03991257889672232 -12372.0,0.03989879596070948 -12373.0,0.039885017784332094 -12374.0,0.0398712443659465 -12375.0,0.03985747570390965 -12376.0,0.03984371179657903 -12377.0,0.03982995264231273 -12378.0,0.03981619823946936 -12379.0,0.039802448586408114 -12380.0,0.039788703681488784 -12381.0,0.0397749635230717 -12382.0,0.03976122810951774 -12383.0,0.03974749743918837 -12384.0,0.039733771510445645 -12385.0,0.03972005032165216 -12386.0,0.03970633387117105 -12387.0,0.03969262215736606 -12388.0,0.03967891517860148 -12389.0,0.03966521293324219 -12390.0,0.039651515419653574 -12391.0,0.03963782263620163 -12392.0,0.03962413458125291 -12393.0,0.03961045125317454 -12394.0,0.03959677265033421 -12395.0,0.039583098771100125 -12396.0,0.03956942961384111 -12397.0,0.039555765176926536 -12398.0,0.03954210545872635 -12399.0,0.03952845045761101 -12400.0,0.0395148001719516 -12401.0,0.039501154600119735 -12402.0,0.03948751374048761 -12403.0,0.039473877591427946 -12404.0,0.039460246151314056 -12405.0,0.03944661941851982 -12406.0,0.03943299739141968 -12407.0,0.03941938006838858 -12408.0,0.039405767447802116 -12409.0,0.03939215952803639 -12410.0,0.03937855630746807 -12411.0,0.03936495778447441 -12412.0,0.03935136395743317 -12413.0,0.039337774824722734 -12414.0,0.039324190384722006 -12415.0,0.03931061063581048 -12416.0,0.03929703557636817 -12417.0,0.039283465204775665 -12418.0,0.039269899519414134 -12419.0,0.03925633851866531 -12420.0,0.039242782200911416 -12421.0,0.039229230564535304 -12422.0,0.03921568360792037 -12423.0,0.039202141329450574 -12424.0,0.03918860372751038 -12425.0,0.03917507080048488 -12426.0,0.03916154254675969 -12427.0,0.039148018964721 -12428.0,0.03913450005275551 -12429.0,0.03912098580925054 -12430.0,0.039107476232593925 -12431.0,0.039093971321174086 -12432.0,0.039080471073379995 -12433.0,0.03906697548760114 -12434.0,0.039053484562227604 -12435.0,0.039039998295650025 -12436.0,0.03902651668625961 -12437.0,0.03901303973244806 -12438.0,0.0389995674326077 -12439.0,0.038986099785131366 -12440.0,0.0389726367884125 -12441.0,0.038959178440845024 -12442.0,0.038945724740823466 -12443.0,0.03893227568674291 -12444.0,0.038918831276998994 -12445.0,0.038905391509987855 -12446.0,0.03889195638410625 -12447.0,0.038878525897751474 -12448.0,0.03886510004932136 -12449.0,0.03885167883721432 -12450.0,0.03883826225982927 -12451.0,0.03882485031556572 -12452.0,0.038811443002823735 -12453.0,0.038798040320003925 -12454.0,0.03878464226550742 -12455.0,0.03877124883773595 -12456.0,0.03875786003509177 -12457.0,0.038744475855977706 -12458.0,0.038731096298797105 -12459.0,0.03871772136195389 -12460.0,0.038704351043852524 -12461.0,0.038690985342898054 -12462.0,0.038677624257496004 -12463.0,0.038664267786052524 -12464.0,0.03865091592697427 -12465.0,0.038637568678668494 -12466.0,0.038624226039542915 -12467.0,0.03861088800800589 -12468.0,0.038597554582466276 -12469.0,0.038584225761333496 -12470.0,0.03857090154301754 -12471.0,0.03855758192592888 -12472.0,0.03854426690847861 -12473.0,0.038530956489078345 -12474.0,0.03851765066614027 -12475.0,0.03850434943807705 -12476.0,0.03849105280330197 -12477.0,0.038477760760228845 -12478.0,0.03846447330727203 -12479.0,0.03845119044284642 -12480.0,0.03843791216536747 -12481.0,0.038424638473251164 -12482.0,0.038411369364914086 -12483.0,0.03839810483877329 -12484.0,0.03838484489324642 -12485.0,0.038371589526751675 -12486.0,0.03835833873770778 -12487.0,0.03834509252453403 -12488.0,0.038331850885650214 -12489.0,0.03831861381947672 -12490.0,0.03830538132443446 -12491.0,0.03829215339894491 -12492.0,0.03827893004143004 -12493.0,0.03826571125031243 -12494.0,0.038252497024015154 -12495.0,0.03823928736096189 -12496.0,0.038226082259576764 -12497.0,0.03821288171828454 -12498.0,0.038199685735510476 -12499.0,0.038186494309680415 -12500.0,0.03817330743922068 -12501.0,0.03816012512255818 -12502.0,0.03814694735812038 -12503.0,0.03813377414433527 -12504.0,0.03812060547963135 -12505.0,0.03810744136243772 -12506.0,0.03809428179118399 -12507.0,0.03808112676430031 -12508.0,0.038067976280217415 -12509.0,0.03805483033736651 -12510.0,0.03804168893417939 -12511.0,0.03802855206908839 -12512.0,0.038015419740526385 -12513.0,0.03800229194692675 -12514.0,0.037989168686723467 -12515.0,0.037976049958351014 -12516.0,0.03796293576024444 -12517.0,0.037949826090839286 -12518.0,0.03793672094857168 -12519.0,0.03792362033187828 -12520.0,0.03791052423919628 -12521.0,0.03789743266896339 -12522.0,0.0378843456196179 -12523.0,0.03787126308959861 -12524.0,0.03785818507734487 -12525.0,0.037845111581296595 -12526.0,0.03783204259989417 -12527.0,0.03781897813157859 -12528.0,0.03780591817479135 -12529.0,0.037792862727974504 -12530.0,0.0377798117895706 -12531.0,0.037766765358022786 -12532.0,0.03775372343177471 -12533.0,0.03774068600927057 -12534.0,0.037727653088955086 -12535.0,0.03771462466927353 -12536.0,0.0377016007486717 -12537.0,0.03768858132559597 -12538.0,0.03767556639849317 -12539.0,0.03766255596581074 -12540.0,0.037649550025996625 -12541.0,0.037636548577499325 -12542.0,0.03762355161876784 -12543.0,0.03761055914825173 -12544.0,0.03759757116440111 -12545.0,0.03758458766566658 -12546.0,0.037571608650499334 -12547.0,0.03755863411735104 -12548.0,0.037545664064673946 -12549.0,0.037532698490920814 -12550.0,0.03751973739454497 -12551.0,0.03750678077400021 -12552.0,0.037493828627740915 -12553.0,0.037480880954222 -12554.0,0.03746793775189892 -12555.0,0.037454999019227594 -12556.0,0.037442064754664564 -12557.0,0.03742913495666685 -12558.0,0.037416209623692055 -12559.0,0.03740328875419823 -12560.0,0.03739037234664404 -12561.0,0.03737746039948864 -12562.0,0.03736455291119173 -12563.0,0.03735164988021357 -12564.0,0.03733875130501488 -12565.0,0.03732585718405697 -12566.0,0.03731296751580166 -12567.0,0.03730008229871134 -12568.0,0.03728720153124885 -12569.0,0.03727432521187763 -12570.0,0.037261453339061626 -12571.0,0.03724858591126534 -12572.0,0.03723572292695374 -12573.0,0.037222864384592394 -12574.0,0.037210010282647366 -12575.0,0.037197160619585265 -12576.0,0.037184315393873194 -12577.0,0.03717147460397883 -12578.0,0.03715863824837035 -12579.0,0.0371458063255165 -12580.0,0.037132978833886485 -12581.0,0.037120155771950096 -12582.0,0.03710733713817763 -12583.0,0.03709452293103993 -12584.0,0.03708171314900836 -12585.0,0.03706890779055478 -12586.0,0.037056106854151616 -12587.0,0.03704331033827181 -12588.0,0.03703051824138885 -12589.0,0.0370177305619767 -12590.0,0.037004947298509894 -12591.0,0.036992168449463486 -12592.0,0.03697939401331307 -12593.0,0.036966623988534716 -12594.0,0.03695385837360507 -12595.0,0.03694109716700128 -12596.0,0.03692834036720105 -12597.0,0.03691558797268255 -12598.0,0.036902839981924535 -12599.0,0.03689009639340626 -12600.0,0.0368773572056075 -12601.0,0.0368646224170086 -12602.0,0.036851892026090335 -12603.0,0.036839166031334095 -12604.0,0.03682644443122175 -12605.0,0.03681372722423573 -12606.0,0.03680101440885893 -12607.0,0.036788305983574826 -12608.0,0.03677560194686739 -12609.0,0.03676290229722114 -12610.0,0.03675020703312106 -12611.0,0.03673751615305272 -12612.0,0.0367248296555022 -12613.0,0.0367121475389561 -12614.0,0.0366994698019015 -12615.0,0.03668679644282607 -12616.0,0.03667412746021795 -12617.0,0.03666146285256585 -12618.0,0.03664880261835894 -12619.0,0.03663614675608697 -12620.0,0.03662349526424018 -12621.0,0.03661084814130934 -12622.0,0.03659820538578576 -12623.0,0.03658556699616121 -12624.0,0.03657293297092805 -12625.0,0.03656030330857913 -12626.0,0.03654767800760784 -12627.0,0.03653505706650803 -12628.0,0.03652244048377414 -12629.0,0.03650982825790111 -12630.0,0.0364972203873844 -12631.0,0.03648461687071995 -12632.0,0.03647201770640427 -12633.0,0.03645942289293438 -12634.0,0.036446832428807814 -12635.0,0.036434246312522595 -12636.0,0.03642166454257731 -12637.0,0.03640908711747104 -12638.0,0.036396514035703396 -12639.0,0.03638394529577451 -12640.0,0.036371380896184996 -12641.0,0.036358820835436026 -12642.0,0.03634626511202928 -12643.0,0.03633371372446696 -12644.0,0.03632116667125175 -12645.0,0.0363086239508869 -12646.0,0.03629608556187615 -12647.0,0.03628355150272377 -12648.0,0.03627102177193452 -12649.0,0.0362584963680137 -12650.0,0.036245975289467124 -12651.0,0.03623345853480114 -12652.0,0.03622094610252254 -12653.0,0.03620843799113872 -12654.0,0.03619593419915755 -12655.0,0.03618343472508742 -12656.0,0.036170939567437214 -12657.0,0.036158448724716366 -12658.0,0.03614596219543481 -12659.0,0.03613347997810299 -12660.0,0.03612100207123189 -12661.0,0.03610852847333294 -12662.0,0.036096059182918167 -12663.0,0.03608359419850006 -12664.0,0.03607113351859167 -12665.0,0.03605867714170648 -12666.0,0.03604622506635855 -12667.0,0.036033777291062455 -12668.0,0.03602133381433327 -12669.0,0.036008894634686546 -12670.0,0.03599645975063841 -12671.0,0.03598402916070545 -12672.0,0.03597160286340482 -12673.0,0.03595918085725411 -12674.0,0.035946763140771484 -12675.0,0.035934349712475604 -12676.0,0.03592194057088564 -12677.0,0.035909535714521275 -12678.0,0.03589713514190268 -12679.0,0.03588473885155057 -12680.0,0.03587234684198616 -12681.0,0.03585995911173119 -12682.0,0.03584757565930785 -12683.0,0.035835196483238914 -12684.0,0.03582282158204764 -12685.0,0.03581045095425779 -12686.0,0.03579808459839362 -12687.0,0.03578572251297993 -12688.0,0.03577336469654201 -12689.0,0.03576101114760567 -12690.0,0.03574866186469721 -12691.0,0.03573631684634345 -12692.0,0.035723976091071724 -12693.0,0.03571163959740989 -12694.0,0.035699307363886254 -12695.0,0.03568697938902969 -12696.0,0.03567465567136957 -12697.0,0.03566233620943575 -12698.0,0.03565002100175863 -12699.0,0.03563771004686907 -12700.0,0.035625403343298466 -12701.0,0.035613100889578725 -12702.0,0.03560080268424227 -12703.0,0.03558850872582198 -12704.0,0.0355762190128513 -12705.0,0.03556393354386415 -12706.0,0.03555165231739497 -12707.0,0.035539375331978686 -12708.0,0.035527102586150744 -12709.0,0.0355148340784471 -12710.0,0.03550256980740423 -12711.0,0.035490309771559064 -12712.0,0.03547805396944908 -12713.0,0.03546580239961225 -12714.0,0.035453555060587054 -12715.0,0.03544131195091249 -12716.0,0.03542907306912801 -12717.0,0.035416838413773626 -12718.0,0.035404607983389826 -12719.0,0.03539238177651763 -12720.0,0.0353801597916985 -12721.0,0.035367942027474474 -12722.0,0.03535572848238805 -12723.0,0.03534351915498225 -12724.0,0.03533131404380058 -12725.0,0.03531911314738706 -12726.0,0.035306916464286214 -12727.0,0.035294723993043085 -12728.0,0.03528253573220316 -12729.0,0.0352703516803125 -12730.0,0.035258171835917625 -12731.0,0.03524599619756559 -12732.0,0.03523382476380389 -12733.0,0.035221657533180586 -12734.0,0.03520949450424422 -12735.0,0.03519733567554381 -12736.0,0.035185181045628934 -12737.0,0.0351730306130496 -12738.0,0.03516088437635635 -12739.0,0.035148742334100244 -12740.0,0.03513660448483283 -12741.0,0.03512447082710612 -12742.0,0.03511234135947268 -12743.0,0.035100216080485545 -12744.0,0.035088094988698276 -12745.0,0.03507597808266489 -12746.0,0.03506386536093994 -12747.0,0.03505175682207846 -12748.0,0.03503965246463601 -12749.0,0.0350275522871686 -12750.0,0.03501545628823278 -12751.0,0.035003364466385585 -12752.0,0.034991276820184554 -12753.0,0.03497919334818773 -12754.0,0.034967114048953606 -12755.0,0.03495503892104124 -12756.0,0.034942967963010135 -12757.0,0.034930901173420355 -12758.0,0.03491883855083237 -12759.0,0.034906780093807224 -12760.0,0.034894725800906426 -12761.0,0.034882675670692004 -12762.0,0.03487062970172643 -12763.0,0.03485858789257273 -12764.0,0.034846550241794394 -12765.0,0.034834516747955444 -12766.0,0.03482248740962033 -12767.0,0.03481046222535407 -12768.0,0.034798441193722135 -12769.0,0.03478642431329051 -12770.0,0.03477441158262568 -12771.0,0.03476240300029458 -12772.0,0.034750398564864705 -12773.0,0.03473839827490399 -12774.0,0.03472640212898093 -12775.0,0.03471441012566442 -12776.0,0.034702422263523915 -12777.0,0.03469043854112937 -12778.0,0.03467845895705121 -12779.0,0.034666483509860346 -12780.0,0.0346545121981282 -12781.0,0.03464254502042667 -12782.0,0.0346305819753282 -12783.0,0.03461862306140563 -12784.0,0.03460666827723238 -12785.0,0.03459471762138233 -12786.0,0.03458277109242987 -12787.0,0.03457082868894982 -12788.0,0.034558890409517574 -12789.0,0.03454695625270897 -12790.0,0.034535026217100355 -12791.0,0.034523100301268574 -12792.0,0.03451117850379092 -12793.0,0.03449926082324524 -12794.0,0.03448734725820983 -12795.0,0.0344754378072635 -12796.0,0.034463532468985515 -12797.0,0.03445163124195567 -12798.0,0.03443973412475423 -12799.0,0.03442784111596198 -12800.0,0.03441595221416013 -12801.0,0.03440406741793044 -12802.0,0.034392186725855145 -12803.0,0.034380310136516976 -12804.0,0.03436843764849911 -12805.0,0.03435656926038527 -12806.0,0.034344704970759636 -12807.0,0.03433284477820688 -12808.0,0.0343209886813122 -12809.0,0.0343091366786612 -12810.0,0.034297288768840056 -12811.0,0.03428544495043538 -12812.0,0.03427360522203432 -12813.0,0.03426176958222445 -12814.0,0.03424993802959387 -12815.0,0.034238110562731176 -12816.0,0.03422628718022544 -12817.0,0.0342144678806662 -12818.0,0.03420265266264351 -12819.0,0.0341908415247479 -12820.0,0.03417903446557039 -12821.0,0.03416723148370248 -12822.0,0.03415543257773616 -12823.0,0.0341436377462639 -12824.0,0.03413184698787869 -12825.0,0.03412006030117395 -12826.0,0.034108277684743615 -12827.0,0.034096499137182115 -12828.0,0.034084724657084356 -12829.0,0.03407295424304574 -12830.0,0.03406118789366211 -12831.0,0.03404942560752985 -12832.0,0.03403766738324579 -12833.0,0.034025913219407296 -12834.0,0.03401416311461213 -12835.0,0.03400241706745862 -12836.0,0.033990675076545546 -12837.0,0.03397893714047218 -12838.0,0.03396720325783825 -12839.0,0.033955473427244004 -12840.0,0.033943747647290155 -12841.0,0.03393202591657793 -12842.0,0.03392030823370896 -12843.0,0.033908594597285444 -12844.0,0.033896885005910024 -12845.0,0.03388517945818583 -12846.0,0.033873477952716495 -12847.0,0.033861780488106084 -12848.0,0.03385008706295918 -12849.0,0.03383839767588086 -12850.0,0.03382671232547667 -12851.0,0.033815031010352596 -12852.0,0.03380335372911517 -12853.0,0.03379168048037137 -12854.0,0.033780011262728685 -12855.0,0.03376834607479502 -12856.0,0.03375668491517883 -12857.0,0.03374502778248902 -12858.0,0.03373337467533499 -12859.0,0.03372172559232659 -12860.0,0.03371008053207417 -12861.0,0.03369843949318857 -12862.0,0.03368680247428111 -12863.0,0.03367516947396355 -12864.0,0.033663540490848166 -12865.0,0.03365191552354772 -12866.0,0.03364029457067542 -12867.0,0.033628677630845 -12868.0,0.0336170647026706 -12869.0,0.03360545578476691 -12870.0,0.03359385087574907 -12871.0,0.03358224997423271 -12872.0,0.0335706530788339 -12873.0,0.03355906018816922 -12874.0,0.03354747130085574 -12875.0,0.03353588641551099 -12876.0,0.03352430553075295 -12877.0,0.03351272864520013 -12878.0,0.03350115575747148 -12879.0,0.03348958686618646 -12880.0,0.03347802196996495 -12881.0,0.03346646106742737 -12882.0,0.03345490415719458 -12883.0,0.03344335123788792 -12884.0,0.033431802308129234 -12885.0,0.033420257366540786 -12886.0,0.033408716411745365 -12887.0,0.03339717944236622 -12888.0,0.03338564645702708 -12889.0,0.03337411745435213 -12890.0,0.03336259243296605 -12891.0,0.033351071391493986 -12892.0,0.033339554328561574 -12893.0,0.0333280412427949 -12894.0,0.033316532132820535 -12895.0,0.033305026997265536 -12896.0,0.03329352583475743 -12897.0,0.03328202864392419 -12898.0,0.033270535423394296 -12899.0,0.03325904617179669 -12900.0,0.033247560887760805 -12901.0,0.0332360795699165 -12902.0,0.033224602216894154 -12903.0,0.0332131288273246 -12904.0,0.03320165939983915 -12905.0,0.033190193933069594 -12906.0,0.03317873242564816 -12907.0,0.03316727487620759 -12908.0,0.03315582128338107 -12909.0,0.033144371645802306 -12910.0,0.03313292596210539 -12911.0,0.03312148423092496 -12912.0,0.0331100464508961 -12913.0,0.03309861262065438 -12914.0,0.0330871827388358 -12915.0,0.033075756804076865 -12916.0,0.03306433481501456 -12917.0,0.03305291677028632 -12918.0,0.033041502668530044 -12919.0,0.03303009250838412 -12920.0,0.03301868628848739 -12921.0,0.03300728400747919 -12922.0,0.03299588566399932 -12923.0,0.032984491256688016 -12924.0,0.03297310078418601 -12925.0,0.03296171424513451 -12926.0,0.032950331638175206 -12927.0,0.0329389529619502 -12928.0,0.03292757821510211 -12929.0,0.032916207396274016 -12930.0,0.032904840504109474 -12931.0,0.03289347753725247 -12932.0,0.0328821184943475 -12933.0,0.03287076337403951 -12934.0,0.03285941217497394 -12935.0,0.032848064895796635 -12936.0,0.03283672153515397 -12937.0,0.03282538209169275 -12938.0,0.0328140465640603 -12939.0,0.032802714950904324 -12940.0,0.03279138725087307 -12941.0,0.03278006346261522 -12942.0,0.032768743584779936 -12943.0,0.03275742761601684 -12944.0,0.03274611555497601 -12945.0,0.03273480740030799 -12946.0,0.03272350315066382 -12947.0,0.032712202804694994 -12948.0,0.03270090636105343 -12949.0,0.03268961381839157 -12950.0,0.032678325175362274 -12951.0,0.032667040430618924 -12952.0,0.0326557595828153 -12953.0,0.03264448263060569 -12954.0,0.03263320957264483 -12955.0,0.03262194040758795 -12956.0,0.032610675134090696 -12957.0,0.0325994137508092 -12958.0,0.032588156256400075 -12959.0,0.03257690264952038 -12960.0,0.03256565292882766 -12961.0,0.03255440709297987 -12962.0,0.03254316514063548 -12963.0,0.03253192707045341 -12964.0,0.032520692881093057 -12965.0,0.032509462571214225 -12966.0,0.03249823613947724 -12967.0,0.032487013584542875 -12968.0,0.032475794905072373 -12969.0,0.03246458009972739 -12970.0,0.03245336916717011 -12971.0,0.03244216210606314 -12972.0,0.03243095891506958 -12973.0,0.03241975959285293 -12974.0,0.03240856413807723 -12975.0,0.03239737254940692 -12976.0,0.03238618482550696 -12977.0,0.032375000965042686 -12978.0,0.032363820966679974 -12979.0,0.032352644829085134 -12980.0,0.03234147255092492 -12981.0,0.032330304130866586 -12982.0,0.032319139567577794 -12983.0,0.0323079788597267 -12984.0,0.03229682200598191 -12985.0,0.03228566900501252 -12986.0,0.03227451985548802 -12987.0,0.03226337455607842 -12988.0,0.03225223310545416 -12989.0,0.032241095502286155 -12990.0,0.03222996174524575 -12991.0,0.03221883183300479 -12992.0,0.03220770576423554 -12993.0,0.03219658353761077 -12994.0,0.03218546515180365 -12995.0,0.03217435060548784 -12996.0,0.032163239897337464 -12997.0,0.032152133026027103 -12998.0,0.03214102999023179 -12999.0,0.032129930788626984 -13000.0,0.03211883541988866 -13001.0,0.032107743882693204 -13002.0,0.032096656175717504 -13003.0,0.03208557229763885 -13004.0,0.03207449224713502 -13005.0,0.03206341602288425 -13006.0,0.03205234362356524 -13007.0,0.0320412750478571 -13008.0,0.032030210294439455 -13009.0,0.032019149361992356 -13010.0,0.032008092249196325 -13011.0,0.031997038954732306 -13012.0,0.031985989477281734 -13013.0,0.031974943815526485 -13014.0,0.03196390196814891 -13015.0,0.03195286393383177 -13016.0,0.03194182971125831 -13017.0,0.03193079929911224 -13018.0,0.03191977269607771 -13019.0,0.031908749900839334 -13020.0,0.03189773091208215 -13021.0,0.031886715728491694 -13022.0,0.03187570434875392 -13023.0,0.031864696771555276 -13024.0,0.031853692995582605 -13025.0,0.031842693019523256 -13026.0,0.03183169684206501 -13027.0,0.03182070446189611 -13028.0,0.03180971587770523 -13029.0,0.031798731088181514 -13030.0,0.031787750092014566 -13031.0,0.03177677288789444 -13032.0,0.03176579947451161 -13033.0,0.03175482985055705 -13034.0,0.031743864014722144 -13035.0,0.031732901965698765 -13036.0,0.031721943702179234 -13037.0,0.03171098922285627 -13038.0,0.031700038526423106 -13039.0,0.03168909161157341 -13040.0,0.031678148477001296 -13041.0,0.03166720912140131 -13042.0,0.03165627354346847 -13043.0,0.03164534174189825 -13044.0,0.031634413715386576 -13045.0,0.03162348946262979 -13046.0,0.03161256898232472 -13047.0,0.031601652273168634 -13048.0,0.03159073933385925 -13049.0,0.03157983016309473 -13050.0,0.03156892475957368 -13051.0,0.031558023121995175 -13052.0,0.03154712524905875 -13053.0,0.03153623113946433 -13054.0,0.03152534079191234 -13055.0,0.03151445420510364 -13056.0,0.031503571377739556 -13057.0,0.03149269230852184 -13058.0,0.031481816996152684 -13059.0,0.03147094543933475 -13060.0,0.03146007763677114 -13061.0,0.031449213587165424 -13062.0,0.031438353289221566 -13063.0,0.03142749674164402 -13064.0,0.0314166439431377 -13065.0,0.03140579489240794 -13066.0,0.03139494958816051 -13067.0,0.03138410802910165 -13068.0,0.031373270213938056 -13069.0,0.031362436141376855 -13070.0,0.031351605810125596 -13071.0,0.03134077921889231 -13072.0,0.03132995636638548 -13073.0,0.031319137251314 -13074.0,0.03130832187238725 -13075.0,0.03129751022831501 -13076.0,0.031286702317807544 -13077.0,0.031275898139575535 -13078.0,0.03126509769233015 -13079.0,0.031254300974782934 -13080.0,0.031243507985645947 -13081.0,0.031232718723631654 -13082.0,0.03122193318745299 -13083.0,0.031211151375823292 -13084.0,0.03120037328745638 -13085.0,0.031189598921066514 -13086.0,0.031178828275368397 -13087.0,0.031168061349077143 -13088.0,0.03115729814090835 -13089.0,0.031146538649578052 -13090.0,0.031135782873802725 -13091.0,0.03112503081229926 -13092.0,0.03111428246378503 -13093.0,0.031103537826977834 -13094.0,0.031092796900595913 -13095.0,0.03108205968335797 -13096.0,0.031071326173983102 -13097.0,0.031060596371190897 -13098.0,0.031049870273701364 -13099.0,0.031039147880234975 -13100.0,0.031028429189512596 -13101.0,0.03101771420025558 -13102.0,0.031007002911185712 -13103.0,0.03099629532102522 -13104.0,0.030985591428496745 -13105.0,0.030974891232323398 -13106.0,0.030964194731228727 -13107.0,0.03095350192393673 -13108.0,0.03094281280917181 -13109.0,0.030932127385658842 -13110.0,0.030921445652123136 -13111.0,0.03091076760729044 -13112.0,0.030900093249886948 -13113.0,0.030889422578639265 -13114.0,0.030878755592274473 -13115.0,0.030868092289520074 -13116.0,0.030857432669104033 -13117.0,0.0308467767297547 -13118.0,0.03083612447020092 -13119.0,0.03082547588917195 -13120.0,0.030814830985397508 -13121.0,0.030804189757607712 -13122.0,0.03079355220453315 -13123.0,0.030782918324904835 -13124.0,0.030772288117454246 -13125.0,0.030761661580913244 -13126.0,0.030751038714014176 -13127.0,0.03074041951548981 -13128.0,0.030729803984073364 -13129.0,0.030719192118498464 -13130.0,0.030708583917499196 -13131.0,0.030697979379810086 -13132.0,0.030687378504166085 -13133.0,0.030676781289302603 -13134.0,0.03066618773395544 -13135.0,0.030655597836860875 -13136.0,0.030645011596755613 -13137.0,0.030634429012376806 -13138.0,0.030623850082462 -13139.0,0.03061327480574922 -13140.0,0.030602703180976912 -13141.0,0.030592135206883975 -13142.0,0.030581570882209697 -13143.0,0.030571010205693847 -13144.0,0.030560453176076606 -13145.0,0.030549899792098618 -13146.0,0.030539350052500913 -13147.0,0.030528803956025 -13148.0,0.030518261501412798 -13149.0,0.030507722687406678 -13150.0,0.030497187512749446 -13151.0,0.030486655976184305 -13152.0,0.03047612807645493 -13153.0,0.03046560381230543 -13154.0,0.030455083182480337 -13155.0,0.0304445661857246 -13156.0,0.030434052820783628 -13157.0,0.030423543086403253 -13158.0,0.03041303698132975 -13159.0,0.030402534504309797 -13160.0,0.030392035654090536 -13161.0,0.03038154042941953 -13162.0,0.03037104882904479 -13163.0,0.03036056085171471 -13164.0,0.03035007649617818 -13165.0,0.030339595761184477 -13166.0,0.030329118645483346 -13167.0,0.03031864514782492 -13168.0,0.030308175266959794 -13169.0,0.030297709001638994 -13170.0,0.030287246350613965 -13171.0,0.030276787312636604 -13172.0,0.030266331886459198 -13173.0,0.030255880070834504 -13174.0,0.0302454318645157 -13175.0,0.0302349872662564 -13176.0,0.030224546274810613 -13177.0,0.03021410888893282 -13178.0,0.03020367510737792 -13179.0,0.03019324492890124 -13180.0,0.030182818352258525 -13181.0,0.030172395376205967 -13182.0,0.030161975999500178 -13183.0,0.030151560220898217 -13184.0,0.030141148039157534 -13185.0,0.030130739453036043 -13186.0,0.030120334461292076 -13187.0,0.03010993306268439 -13188.0,0.030099535255972195 -13189.0,0.030089141039915075 -13190.0,0.03007875041327309 -13191.0,0.030068363374806718 -13192.0,0.03005797992327687 -13193.0,0.030047600057444848 -13194.0,0.03003722377607243 -13195.0,0.030026851077921798 -13196.0,0.030016481961755572 -13197.0,0.030006116426336774 -13198.0,0.029995754470428883 -13199.0,0.02998539609279579 -13200.0,0.02997504129220183 -13201.0,0.029964690067411724 -13202.0,0.029954342417190662 -13203.0,0.029943998340304246 -13204.0,0.02993365783551851 -13205.0,0.029923320901599885 -13206.0,0.029912987537315264 -13207.0,0.02990265774143195 -13208.0,0.029892331512717675 -13209.0,0.029882008849940606 -13210.0,0.029871689751869303 -13211.0,0.029861374217272783 -13212.0,0.029851062244920474 -13213.0,0.029840753833582253 -13214.0,0.029830448982028374 -13215.0,0.029820147689029554 -13216.0,0.029809849953356924 -13217.0,0.02979955577378205 -13218.0,0.029789265149076892 -13219.0,0.029778978078013864 -13220.0,0.02976869455936579 -13221.0,0.029758414591905938 -13222.0,0.029748138174407954 -13223.0,0.029737865305645952 -13224.0,0.029727595984394454 -13225.0,0.029717330209428402 -13226.0,0.029707067979523175 -13227.0,0.029696809293454543 -13228.0,0.029686554149998733 -13229.0,0.029676302547932378 -13230.0,0.02966605448603255 -13231.0,0.0296558099630767 -13232.0,0.029645568977842752 -13233.0,0.02963533152910903 -13234.0,0.029625097615654288 -13235.0,0.029614867236257673 -13236.0,0.029604640389698785 -13237.0,0.029594417074757642 -13238.0,0.029584197290214685 -13239.0,0.029573981034850743 -13240.0,0.029563768307447107 -13241.0,0.02955355910678547 -13242.0,0.029543353431647962 -13243.0,0.029533151280817096 -13244.0,0.02952295265307584 -13245.0,0.029512757547207575 -13246.0,0.0295025659619961 -13247.0,0.029492377896225642 -13248.0,0.029482193348680817 -13249.0,0.029472012318146695 -13250.0,0.02946183480340875 -13251.0,0.029451660803252896 -13252.0,0.02944149031646542 -13253.0,0.02943132334183307 -13254.0,0.029421159878143 -13255.0,0.029410999924182803 -13256.0,0.029400843478740436 -13257.0,0.029390690540604322 -13258.0,0.029380541108563297 -13259.0,0.029370395181406612 -13260.0,0.02936025275792391 -13261.0,0.029350113836905292 -13262.0,0.029339978417141248 -13263.0,0.029329846497422703 -13264.0,0.029319718076541008 -13265.0,0.02930959315328788 -13266.0,0.029299471726455514 -13267.0,0.029289353794836492 -13268.0,0.029279239357223832 -13269.0,0.029269128412410934 -13270.0,0.02925902095919164 -13271.0,0.02924891699636021 -13272.0,0.029238816522711326 -13273.0,0.029228719537040055 -13274.0,0.029218626038141904 -13275.0,0.029208536024812798 -13276.0,0.029198449495849085 -13277.0,0.029188366450047486 -13278.0,0.029178286886205183 -13279.0,0.029168210803119758 -13280.0,0.02915813819958922 -13281.0,0.029148069074411954 -13282.0,0.029138003426386803 -13283.0,0.029127941254313002 -13284.0,0.029117882556990216 -13285.0,0.02910782733321852 -13286.0,0.02909777558179838 -13287.0,0.029087727301530704 -13288.0,0.029077682491216804 -13289.0,0.029067641149658426 -13290.0,0.029057603275657682 -13291.0,0.029047568868017144 -13292.0,0.029037537925539772 -13293.0,0.029027510447028965 -13294.0,0.029017486431288493 -13295.0,0.02900746587712258 -13296.0,0.02899744878333584 -13297.0,0.028987435148733323 -13298.0,0.02897742497212045 -13299.0,0.02896741825230309 -13300.0,0.02895741498808752 -13301.0,0.028947415178280415 -13302.0,0.028937418821688893 -13303.0,0.02892742591712043 -13304.0,0.02891743646338296 -13305.0,0.028907450459284813 -13306.0,0.028897467903634746 -13307.0,0.028887488795241886 -13308.0,0.02887751313291581 -13309.0,0.028867540915466495 -13310.0,0.028857572141704344 -13311.0,0.028847606810440123 -13312.0,0.02883764492048506 -13313.0,0.02882768647065077 -13314.0,0.028817731459749297 -13315.0,0.028807779886593055 -13316.0,0.028797831749994906 -13317.0,0.02878788704876811 -13318.0,0.02877794578172635 -13319.0,0.02876800794768368 -13320.0,0.0287580735454546 -13321.0,0.02874814257385401 -13322.0,0.02873821503169722 -13323.0,0.02872829091779995 -13324.0,0.028718370230978313 -13325.0,0.028708452970048846 -13326.0,0.028698539133828496 -13327.0,0.028688628721134625 -13328.0,0.02867872173078497 -13329.0,0.028668818161597713 -13330.0,0.02865891801239143 -13331.0,0.028649021281985116 -13332.0,0.02863912796919814 -13333.0,0.02862923807285031 -13334.0,0.028619351591761842 -13335.0,0.028609468524753354 -13336.0,0.02859958887064585 -13337.0,0.028589712628260766 -13338.0,0.028579839796419943 -13339.0,0.028569970373945625 -13340.0,0.02856010435966047 -13341.0,0.02855024175238751 -13342.0,0.028540382550950226 -13343.0,0.028530526754172482 -13344.0,0.028520674360878562 -13345.0,0.028510825369893134 -13346.0,0.028500979780041288 -13347.0,0.028491137590148517 -13348.0,0.02848129879904074 -13349.0,0.028471463405544226 -13350.0,0.0284616314084857 -13351.0,0.028451802806692284 -13352.0,0.028441977598991502 -13353.0,0.028432155784211252 -13354.0,0.028422337361179884 -13355.0,0.028412522328726122 -13356.0,0.028402710685679122 -13357.0,0.028392902430868405 -13358.0,0.028383097563123922 -13359.0,0.028373296081276027 -13360.0,0.028363497984155477 -13361.0,0.028353703270593444 -13362.0,0.02834391193942146 -13363.0,0.028334123989471504 -13364.0,0.02832433941957595 -13365.0,0.028314558228567578 -13366.0,0.028304780415279538 -13367.0,0.028295005978545423 -13368.0,0.028285234917199215 -13369.0,0.028275467230075305 -13370.0,0.02826570291600846 -13371.0,0.028255941973833878 -13372.0,0.02824618440238715 -13373.0,0.02823643020050428 -13374.0,0.02822667936702164 -13375.0,0.028216931900776038 -13376.0,0.028207187800604674 -13377.0,0.028197447065345146 -13378.0,0.028187709693835467 -13379.0,0.02817797568491402 -13380.0,0.028168245037419614 -13381.0,0.02815851775019146 -13382.0,0.028148793822069168 -13383.0,0.02813907325189273 -13384.0,0.028129356038502557 -13385.0,0.02811964218073946 -13386.0,0.028109931677444657 -13387.0,0.028100224527459732 -13388.0,0.028090520729626707 -13389.0,0.028080820282787983 -13390.0,0.02807112318578639 -13391.0,0.028061429437465105 -13392.0,0.028051739036667744 -13393.0,0.028042051982238317 -13394.0,0.028032368273021236 -13395.0,0.02802268790786129 -13396.0,0.028013010885603686 -13397.0,0.028003337205094028 -13398.0,0.027993666865178318 -13399.0,0.027983999864702968 -13400.0,0.027974336202514747 -13401.0,0.027964675877460866 -13402.0,0.027955018888388916 -13403.0,0.027945365234146907 -13404.0,0.027935714913583192 -13405.0,0.027926067925546583 -13406.0,0.02791642426888626 -13407.0,0.027906783942451812 -13408.0,0.027897146945093203 -13409.0,0.027887513275660813 -13410.0,0.027877882933005423 -13411.0,0.02786825591597821 -13412.0,0.027858632223430723 -13413.0,0.02784901185421493 -13414.0,0.0278393948071832 -13415.0,0.027829781081188276 -13416.0,0.027820170675083338 -13417.0,0.027810563587721902 -13418.0,0.027800959817957924 -13419.0,0.027791359364645746 -13420.0,0.027781762226640118 -13421.0,0.027772168402796147 -13422.0,0.02776257789196937 -13423.0,0.027752990693015706 -13424.0,0.027743406804791492 -13425.0,0.027733826226153408 -13426.0,0.02772424895595858 -13427.0,0.0277146749930645 -13428.0,0.027705104336329087 -13429.0,0.0276955369846106 -13430.0,0.02768597293676774 -13431.0,0.02767641219165958 -13432.0,0.027666854748145616 -13433.0,0.02765730060508568 -13434.0,0.027647749761340042 -13435.0,0.027638202215769368 -13436.0,0.027628657967234696 -13437.0,0.027619117014597485 -13438.0,0.027609579356719538 -13439.0,0.027600044992463102 -13440.0,0.027590513920690788 -13441.0,0.027580986140265627 -13442.0,0.027571461650051 -13443.0,0.027561940448910714 -13444.0,0.02755242253570896 -13445.0,0.027542907909310334 -13446.0,0.027533396568579786 -13447.0,0.02752388851238269 -13448.0,0.027514383739584813 -13449.0,0.027504882249052308 -13450.0,0.027495384039651696 -13451.0,0.027485889110249923 -13452.0,0.02747639745971431 -13453.0,0.02746690908691258 -13454.0,0.027457423990712843 -13455.0,0.027447942169983572 -13456.0,0.027438463623593673 -13457.0,0.027428988350412423 -13458.0,0.0274195163493095 -13459.0,0.02741004761915494 -13460.0,0.027400582158819204 -13461.0,0.027391119967173135 -13462.0,0.027381661043087972 -13463.0,0.02737220538543531 -13464.0,0.027362752993087172 -13465.0,0.027353303864915954 -13466.0,0.027343857999794458 -13467.0,0.027334415396595837 -13468.0,0.027324976054193668 -13469.0,0.027315539971461904 -13470.0,0.027306107147274907 -13471.0,0.027296677580507384 -13472.0,0.027287251270034465 -13473.0,0.027277828214731663 -13474.0,0.027268408413474873 -13475.0,0.0272589918651404 -13476.0,0.02724957856860489 -13477.0,0.027240168522745415 -13478.0,0.02723076172643943 -13479.0,0.02722135817856478 -13480.0,0.027211957877999668 -13481.0,0.027202560823622723 -13482.0,0.02719316701431294 -13483.0,0.02718377644894972 -13484.0,0.02717438912641281 -13485.0,0.027165005045582388 -13486.0,0.027155624205339 -13487.0,0.02714624660456359 -13488.0,0.027136872242137455 -13489.0,0.027127501116942315 -13490.0,0.02711813322786026 -13491.0,0.027108768573773777 -13492.0,0.027099407153565735 -13493.0,0.027090048966119364 -13494.0,0.027080694010318315 -13495.0,0.027071342285046603 -13496.0,0.027061993789188655 -13497.0,0.027052648521629235 -13498.0,0.027043306481253533 -13499.0,0.02703396766694711 -13500.0,0.027024632077595933 -13501.0,0.027015299712086303 -13502.0,0.02700597056930495 -13503.0,0.02699664464813898 -13504.0,0.026987321947475884 -13505.0,0.026978002466203514 -13506.0,0.02696868620321013 -13507.0,0.026959373157384375 -13508.0,0.02695006332761528 -13509.0,0.026940756712792224 -13510.0,0.02693145331180501 -13511.0,0.02692215312354381 -13512.0,0.02691285614689918 -13513.0,0.02690356238076207 -13514.0,0.026894271824023777 -13515.0,0.026884984475576017 -13516.0,0.02687570033431088 -13517.0,0.026866419399120843 -13518.0,0.02685714166889874 -13519.0,0.02684786714253781 -13520.0,0.026838595818931672 -13521.0,0.026829327696974343 -13522.0,0.026820062775560174 -13523.0,0.026810801053583938 -13524.0,0.026801542529940783 -13525.0,0.026792287203526242 -13526.0,0.026783035073236205 -13527.0,0.026773786137966965 -13528.0,0.026764540396615195 -13529.0,0.02675529784807795 -13530.0,0.026746058491252663 -13531.0,0.02673682232503713 -13532.0,0.026727589348329556 -13533.0,0.026718359560028507 -13534.0,0.026709132959032954 -13535.0,0.026699909544242208 -13536.0,0.026690689314555992 -13537.0,0.0266814722688744 -13538.0,0.02667225840609792 -13539.0,0.026663047725127377 -13540.0,0.02665384022486402 -13541.0,0.02664463590420946 -13542.0,0.0266354347620657 -13543.0,0.02662623679733509 -13544.0,0.02661704200892039 -13545.0,0.026607850395724723 -13546.0,0.026598661956651615 -13547.0,0.026589476690604928 -13548.0,0.02658029459648894 -13549.0,0.026571115673208287 -13550.0,0.026561939919667998 -13551.0,0.02655276733477348 -13552.0,0.02654359791743049 -13553.0,0.02653443166654519 -13554.0,0.026525268581024122 -13555.0,0.0265161086597742 -13556.0,0.026506951901702692 -13557.0,0.026497798305717274 -13558.0,0.026488647870725992 -13559.0,0.02647950059563727 -13560.0,0.026470356479359892 -13561.0,0.026461215520803036 -13562.0,0.026452077718876255 -13563.0,0.026442943072489487 -13564.0,0.02643381158055301 -13565.0,0.02642468324197752 -13566.0,0.026415558055674068 -13567.0,0.026406436020554085 -13568.0,0.026397317135529397 -13569.0,0.026388201399512156 -13570.0,0.02637908881141494 -13571.0,0.02636997937015068 -13572.0,0.0263608730746327 -13573.0,0.026351769923774658 -13574.0,0.02634266991649063 -13575.0,0.026333573051695047 -13576.0,0.026324479328302737 -13577.0,0.026315388745228856 -13578.0,0.02630630130138898 -13579.0,0.026297216995699042 -13580.0,0.02628813582707536 -13581.0,0.026279057794434596 -13582.0,0.02626998289669382 -13583.0,0.02626091113277046 -13584.0,0.02625184250158233 -13585.0,0.02624277700204759 -13586.0,0.026233714633084798 -13587.0,0.02622465539361289 -13588.0,0.026215599282551152 -13589.0,0.026206546298819272 -13590.0,0.026197496441337276 -13591.0,0.026188449709025594 -13592.0,0.02617940610080501 -13593.0,0.026170365615596703 -13594.0,0.02616132825232219 -13595.0,0.02615229400990338 -13596.0,0.026143262887262562 -13597.0,0.0261342348833224 -13598.0,0.026125209997005898 -13599.0,0.026116188227236457 -13600.0,0.02610716957293785 -13601.0,0.02609815403303423 -13602.0,0.026089141606450084 -13603.0,0.026080132292110307 -13604.0,0.026071126088940154 -13605.0,0.02606212299586525 -13606.0,0.026053123011811605 -13607.0,0.02604412613570556 -13608.0,0.026035132366473868 -13609.0,0.026026141703043633 -13610.0,0.026017154144342355 -13611.0,0.026008169689297853 -13612.0,0.02599918833683836 -13613.0,0.025990210085892466 -13614.0,0.025981234935389147 -13615.0,0.025972262884257705 -13616.0,0.02596329393142785 -13617.0,0.025954328075829657 -13618.0,0.025945365316393573 -13619.0,0.025936405652050385 -13620.0,0.025927449081731276 -13621.0,0.025918495604367802 -13622.0,0.025909545218891883 -13623.0,0.025900597924235783 -13624.0,0.025891653719332164 -13625.0,0.02588271260311405 -13626.0,0.02587377457451483 -13627.0,0.025864839632468273 -13628.0,0.025855907775908484 -13629.0,0.02584697900376997 -13630.0,0.02583805331498759 -13631.0,0.02582913070849659 -13632.0,0.025820211183232543 -13633.0,0.025811294738131426 -13634.0,0.025802381372129576 -13635.0,0.0257934710841637 -13636.0,0.02578456387317084 -13637.0,0.02577565973808845 -13638.0,0.02576675867785433 -13639.0,0.025757860691406655 -13640.0,0.025748965777683937 -13641.0,0.025740073935625097 -13642.0,0.025731185164169397 -13643.0,0.02572229946225647 -13644.0,0.025713416828826333 -13645.0,0.02570453726281933 -13646.0,0.025695660763176198 -13647.0,0.02568678732883804 -13648.0,0.02567791695874633 -13649.0,0.025669049651842878 -13650.0,0.025660185407069887 -13651.0,0.02565132422336992 -13652.0,0.025642466099685908 -13653.0,0.02563361103496113 -13654.0,0.025624759028139238 -13655.0,0.025615910078164262 -13656.0,0.025607064183980597 -13657.0,0.025598221344532966 -13658.0,0.025589381558766496 -13659.0,0.025580544825626668 -13660.0,0.02557171114405933 -13661.0,0.025562880513010672 -13662.0,0.02555405293142727 -13663.0,0.02554522839825606 -13664.0,0.025536406912444336 -13665.0,0.025527588472939778 -13666.0,0.025518773078690382 -13667.0,0.02550996072864455 -13668.0,0.02550115142175103 -13669.0,0.02549234515695895 -13670.0,0.02548354193321776 -13671.0,0.025474741749477316 -13672.0,0.025465944604687814 -13673.0,0.02545715049779984 -13674.0,0.02544835942776429 -13675.0,0.025439571393532468 -13676.0,0.025430786394056024 -13677.0,0.025422004428286984 -13678.0,0.025413225495177702 -13679.0,0.025404449593680923 -13680.0,0.02539567672274975 -13681.0,0.025386906881337643 -13682.0,0.02537814006839843 -13683.0,0.02536937628288628 -13684.0,0.025360615523755743 -13685.0,0.025351857789961723 -13686.0,0.025343103080459502 -13687.0,0.02533435139420468 -13688.0,0.025325602730153263 -13689.0,0.025316857087261592 -13690.0,0.025308114464486386 -13691.0,0.0252993748607847 -13692.0,0.025290638275113964 -13693.0,0.025281904706431976 -13694.0,0.02527317415369689 -13695.0,0.025264446615867193 -13696.0,0.02525572209190177 -13697.0,0.02524700058075984 -13698.0,0.025238282081401008 -13699.0,0.025229566592785198 -13700.0,0.025220854113872725 -13701.0,0.025212144643624253 -13702.0,0.025203438181000806 -13703.0,0.025194734724963783 -13704.0,0.025186034274474894 -13705.0,0.025177336828496256 -13706.0,0.025168642385990325 -13707.0,0.02515995094591993 -13708.0,0.025151262507248223 -13709.0,0.025142577068938746 -13710.0,0.02513389462995539 -13711.0,0.025125215189262414 -13712.0,0.025116538745824403 -13713.0,0.025107865298606334 -13714.0,0.025099194846573525 -13715.0,0.025090527388691664 -13716.0,0.025081862923926765 -13717.0,0.025073201451245235 -13718.0,0.025064542969613822 -13719.0,0.02505588747799963 -13720.0,0.025047234975370133 -13721.0,0.02503858546069313 -13722.0,0.025029938932936813 -13723.0,0.025021295391069703 -13724.0,0.025012654834060708 -13725.0,0.02500401726087905 -13726.0,0.024995382670494337 -13727.0,0.024986751061876526 -13728.0,0.024978122433995945 -13729.0,0.024969496785823234 -13730.0,0.024960874116329426 -13731.0,0.024952254424485905 -13732.0,0.02494363770926441 -13733.0,0.024935023969637014 -13734.0,0.024926413204576166 -13735.0,0.024917805413054665 -13736.0,0.02490920059404568 -13737.0,0.024900598746522694 -13738.0,0.024891999869459575 -13739.0,0.02488340396183055 -13740.0,0.02487481102261018 -13741.0,0.02486622105077341 -13742.0,0.024857634045295493 -13743.0,0.02484905000515207 -13744.0,0.02484046892931913 -13745.0,0.024831890816773027 -13746.0,0.024823315666490427 -13747.0,0.02481474347744839 -13748.0,0.02480617424862432 -13749.0,0.024797607978995977 -13750.0,0.02478904466754145 -13751.0,0.024780484313239204 -13752.0,0.024771926915068056 -13753.0,0.02476337247200718 -13754.0,0.02475482098303607 -13755.0,0.024746272447134607 -13756.0,0.024737726863283013 -13757.0,0.024729184230461866 -13758.0,0.024720644547652097 -13759.0,0.02471210781383497 -13760.0,0.024703574027992115 -13761.0,0.024695043189105523 -13762.0,0.024686515296157535 -13763.0,0.024677990348130813 -13764.0,0.0246694683440084 -13765.0,0.02466094928277369 -13766.0,0.024652433163410432 -13767.0,0.02464391998490269 -13768.0,0.024635409746234915 -13769.0,0.024626902446391895 -13770.0,0.024618398084358787 -13771.0,0.02460989665912106 -13772.0,0.024601398169664564 -13773.0,0.02459290261497549 -13774.0,0.024584409994040386 -13775.0,0.024575920305846155 -13776.0,0.02456743354938001 -13777.0,0.02455894972362956 -13778.0,0.024550468827582744 -13779.0,0.024541990860227864 -13780.0,0.02453351582055354 -13781.0,0.024525043707548773 -13782.0,0.024516574520202897 -13783.0,0.024508108257505618 -13784.0,0.024499644918446944 -13785.0,0.024491184502017274 -13786.0,0.02448272700720734 -13787.0,0.02447427243300824 -13788.0,0.02446582077841138 -13789.0,0.024457372042408547 -13790.0,0.024448926223991876 -13791.0,0.024440483322153848 -13792.0,0.024432043335887266 -13793.0,0.024423606264185313 -13794.0,0.024415172106041504 -13795.0,0.02440674086044971 -13796.0,0.024398312526404155 -13797.0,0.024389887102899376 -13798.0,0.024381464588930292 -13799.0,0.024373044983492163 -13800.0,0.0243646282855806 -13801.0,0.024356214494191526 -13802.0,0.024347803608321256 -13803.0,0.024339395626966426 -13804.0,0.02433099054912404 -13805.0,0.02432258837379141 -13806.0,0.02431418909996623 -13807.0,0.024305792726646527 -13808.0,0.024297399252830684 -13809.0,0.024289008677517404 -13810.0,0.024280620999705755 -13811.0,0.02427223621839516 -13812.0,0.024263854332585363 -13813.0,0.024255475341276485 -13814.0,0.024247099243468948 -13815.0,0.02423872603816356 -13816.0,0.024230355724361455 -13817.0,0.02422198830106413 -13818.0,0.02421362376727338 -13819.0,0.0242052621219914 -13820.0,0.024196903364220708 -13821.0,0.024188547492964164 -13822.0,0.024180194507224962 -13823.0,0.024171844406006657 -13824.0,0.024163497188313145 -13825.0,0.024155152853148676 -13826.0,0.024146811399517805 -13827.0,0.024138472826425474 -13828.0,0.024130137132876952 -13829.0,0.024121804317877856 -13830.0,0.024113474380434124 -13831.0,0.02410514731955207 -13832.0,0.024096823134238332 -13833.0,0.024088501823499895 -13834.0,0.0240801833863441 -13835.0,0.024071867821778597 -13836.0,0.024063555128811406 -13837.0,0.02405524530645089 -13838.0,0.02404693835370575 -13839.0,0.024038634269585014 -13840.0,0.024030333053098072 -13841.0,0.02402203470325465 -13842.0,0.024013739219064828 -13843.0,0.02400544659953899 -13844.0,0.0239971568436879 -13845.0,0.02398886995052265 -13846.0,0.023980585919054685 -13847.0,0.023972304748295762 -13848.0,0.023964026437258003 -13849.0,0.02395575098495387 -13850.0,0.023947478390396158 -13851.0,0.02393920865259802 -13852.0,0.023930941770572915 -13853.0,0.02392267774333468 -13854.0,0.023914416569897463 -13855.0,0.02390615824927579 -13856.0,0.023897902780484478 -13857.0,0.02388965016253872 -13858.0,0.02388140039445404 -13859.0,0.02387315347524631 -13860.0,0.02386490940393171 -13861.0,0.023856668179526797 -13862.0,0.02384842980104845 -13863.0,0.023840194267513905 -13864.0,0.023831961577940697 -13865.0,0.023823731731346737 -13866.0,0.02381550472675027 -13867.0,0.023807280563169875 -13868.0,0.023799059239624457 -13869.0,0.02379084075513328 -13870.0,0.023782625108715937 -13871.0,0.023774412299392363 -13872.0,0.02376620232618284 -13873.0,0.02375799518810796 -13874.0,0.023749790884188673 -13875.0,0.023741589413446274 -13876.0,0.023733390774902396 -13877.0,0.023725194967578977 -13878.0,0.023717001990498327 -13879.0,0.02370881184268309 -13880.0,0.023700624523156247 -13881.0,0.02369244003094109 -13882.0,0.02368425836506128 -13883.0,0.0236760795245408 -13884.0,0.02366790350840399 -13885.0,0.023659730315675486 -13886.0,0.0236515599453803 -13887.0,0.023643392396543762 -13888.0,0.02363522766819155 -13889.0,0.023627065759349673 -13890.0,0.023618906669044457 -13891.0,0.023610750396302595 -13892.0,0.0236025969401511 -13893.0,0.02359444629961734 -13894.0,0.023586298473728975 -13895.0,0.023578153461514043 -13896.0,0.023570011262000902 -13897.0,0.02356187187421826 -13898.0,0.023553735297195125 -13899.0,0.02354560152996087 -13900.0,0.0235374705715452 -13901.0,0.023529342420978164 -13902.0,0.023521217077290105 -13903.0,0.023513094539511743 -13904.0,0.023504974806674118 -13905.0,0.023496857877808613 -13906.0,0.02348874375194692 -13907.0,0.023480632428121095 -13908.0,0.023472523905363512 -13909.0,0.023464418182706885 -13910.0,0.023456315259184273 -13911.0,0.023448215133829033 -13912.0,0.023440117805674888 -13913.0,0.023432023273755886 -13914.0,0.023423931537106424 -13915.0,0.023415842594761187 -13916.0,0.023407756445755244 -13917.0,0.02339967308912397 -13918.0,0.02339159252390309 -13919.0,0.023383514749128635 -13920.0,0.02337543976383699 -13921.0,0.023367367567064874 -13922.0,0.023359298157849335 -13923.0,0.02335123153522774 -13924.0,0.023343167698237802 -13925.0,0.02333510664591757 -13926.0,0.023327048377305416 -13927.0,0.02331899289144006 -13928.0,0.023310940187360518 -13929.0,0.023302890264106174 -13930.0,0.023294843120716727 -13931.0,0.023286798756232227 -13932.0,0.023278757169693014 -13933.0,0.0232707183601398 -13934.0,0.02326268232661361 -13935.0,0.02325464906815582 -13936.0,0.023246618583808092 -13937.0,0.023238590872612465 -13938.0,0.023230565933611287 -13939.0,0.023222543765847255 -13940.0,0.02321452436836336 -13941.0,0.02320650774020296 -13942.0,0.02319849388040972 -13943.0,0.02319048278802767 -13944.0,0.023182474462101116 -13945.0,0.02317446890167473 -13946.0,0.023166466105793513 -13947.0,0.02315846607350279 -13948.0,0.02315046880384822 -13949.0,0.023142474295875775 -13950.0,0.023134482548631773 -13951.0,0.023126493561162857 -13952.0,0.02311850733251601 -13953.0,0.023110523861738515 -13954.0,0.023102543147878008 -13955.0,0.02309456518998245 -13956.0,0.02308658998710014 -13957.0,0.023078617538279673 -13958.0,0.023070647842570007 -13959.0,0.02306268089902041 -13960.0,0.023054716706680498 -13961.0,0.02304675526460018 -13962.0,0.023038796571829723 -13963.0,0.023030840627419714 -13964.0,0.023022887430421066 -13965.0,0.02301493697988503 -13966.0,0.02300698927486316 -13967.0,0.022999044314407354 -13968.0,0.022991102097569844 -13969.0,0.022983162623403185 -13970.0,0.022975225890960245 -13971.0,0.02296729189929423 -13972.0,0.022959360647458675 -13973.0,0.022951432134507455 -13974.0,0.02294350635949473 -13975.0,0.022935583321475026 -13976.0,0.02292766301950318 -13977.0,0.022919745452634373 -13978.0,0.022911830619924068 -13979.0,0.022903918520428102 -13980.0,0.022896009153202612 -13981.0,0.022888102517304085 -13982.0,0.02288019861178929 -13983.0,0.022872297435715366 -13984.0,0.022864398988139755 -13985.0,0.02285650326812023 -13986.0,0.022848610274714905 -13987.0,0.022840720006982177 -13988.0,0.022832832463980806 -13989.0,0.022824947644769864 -13990.0,0.022817065548408767 -13991.0,0.02280918617395721 -13992.0,0.022801309520475255 -13993.0,0.022793435587023275 -13994.0,0.022785564372661972 -13995.0,0.022777695876452356 -13996.0,0.022769830097455777 -13997.0,0.022761967034733904 -13998.0,0.022754106687348747 -13999.0,0.022746249054362597 -14000.0,0.02273839413483811 -14001.0,0.02273054192783825 -14002.0,0.02272269243242631 -14003.0,0.022714845647665904 -14004.0,0.022707001572620955 -14005.0,0.022699160206355727 -14006.0,0.022691321547934806 -14007.0,0.022683485596423105 -14008.0,0.022675652350885832 -14009.0,0.022667821810388553 -14010.0,0.022659993973997133 -14011.0,0.022652168840777785 -14012.0,0.022644346409797005 -14013.0,0.022636526680121644 -14014.0,0.022628709650818864 -14015.0,0.022620895320956163 -14016.0,0.02261308368960133 -14017.0,0.0226052747558225 -14018.0,0.022597468518688123 -14019.0,0.02258966497726699 -14020.0,0.022581864130628165 -14021.0,0.022574065977841083 -14022.0,0.022566270517975474 -14023.0,0.0225584777501014 -14024.0,0.022550687673289254 -14025.0,0.02254290028660971 -14026.0,0.022535115589133802 -14027.0,0.022527333579932876 -14028.0,0.022519554258078597 -14029.0,0.022511777622642937 -14030.0,0.022504003672698208 -14031.0,0.02249623240731703 -14032.0,0.02248846382557236 -14033.0,0.02248069792653745 -14034.0,0.02247293470928588 -14035.0,0.022465174172891567 -14036.0,0.02245741631642874 -14037.0,0.02244966113897193 -14038.0,0.022441908639596005 -14039.0,0.022434158817376145 -14040.0,0.022426411671387862 -14041.0,0.02241866720070698 -14042.0,0.022410925404409622 -14043.0,0.022403186281572264 -14044.0,0.022395449831271678 -14045.0,0.022387716052584973 -14046.0,0.022379984944589548 -14047.0,0.022372256506363146 -14048.0,0.02236453073698382 -14049.0,0.022356807635529958 -14050.0,0.022349087201080226 -14051.0,0.022341369432713643 -14052.0,0.022333654329509532 -14053.0,0.02232594189054755 -14054.0,0.022318232114907643 -14055.0,0.022310525001670096 -14056.0,0.02230282054991551 -14057.0,0.022295118758724804 -14058.0,0.0222874196271792 -14059.0,0.022279723154360248 -14060.0,0.022272029339349825 -14061.0,0.022264338181230105 -14062.0,0.022256649679083605 -14063.0,0.02224896383199312 -14064.0,0.022241280639041797 -14065.0,0.022233600099313088 -14066.0,0.022225922211890764 -14067.0,0.022218246975858894 -14068.0,0.022210574390301892 -14069.0,0.022202904454304465 -14070.0,0.022195237166951664 -14071.0,0.02218757252732881 -14072.0,0.022179910534521587 -14073.0,0.02217225118761597 -14074.0,0.02216459448569826 -14075.0,0.022156940427855053 -14076.0,0.022149289013173288 -14077.0,0.022141640240740206 -14078.0,0.02213399410964336 -14079.0,0.022126350618970635 -14080.0,0.0221187097678102 -14081.0,0.022111071555250564 -14082.0,0.022103435980380545 -14083.0,0.022095803042289284 -14084.0,0.022088172740066213 -14085.0,0.022080545072801095 -14086.0,0.022072920039584006 -14087.0,0.02206529763950535 -14088.0,0.022057677871655804 -14089.0,0.0220500607351264 -14090.0,0.02204244622900847 -14091.0,0.022034834352393663 -14092.0,0.02202722510437392 -14093.0,0.022019618484041527 -14094.0,0.022012014490489066 -14095.0,0.022004413122809447 -14096.0,0.02199681438009586 -14097.0,0.021989218261441845 -14098.0,0.02198162476594124 -14099.0,0.02197403389268819 -14100.0,0.021966445640777175 -14101.0,0.02195886000930295 -14102.0,0.021951276997360616 -14103.0,0.021943696604045573 -14104.0,0.021936118828453546 -14105.0,0.021928543669680542 -14106.0,0.02192097112682291 -14107.0,0.021913401198977302 -14108.0,0.021905833885240686 -14109.0,0.02189826918471032 -14110.0,0.021890707096483806 -14111.0,0.02188314761965903 -14112.0,0.02187559075333422 -14113.0,0.021868036496607873 -14114.0,0.021860484848578835 -14115.0,0.021852935808346248 -14116.0,0.021845389375009565 -14117.0,0.021837845547668565 -14118.0,0.021830304325423298 -14119.0,0.021822765707374167 -14120.0,0.021815229692621868 -14121.0,0.02180769628026742 -14122.0,0.021800165469412117 -14123.0,0.021792637259157605 -14124.0,0.02178511164860582 -14125.0,0.021777588636859028 -14126.0,0.021770068223019755 -14127.0,0.021762550406190892 -14128.0,0.021755035185475616 -14129.0,0.02174752255997742 -14130.0,0.02174001252880009 -14131.0,0.02173250509104774 -14132.0,0.021725000245824792 -14133.0,0.021717497992235976 -14134.0,0.02170999832938631 -14135.0,0.021702501256381155 -14136.0,0.021695006772326154 -14137.0,0.02168751487632728 -14138.0,0.021680025567490806 -14139.0,0.0216725388449233 -14140.0,0.021665054707731654 -14141.0,0.021657573155023067 -14142.0,0.021650094185905057 -14143.0,0.021642617799485415 -14144.0,0.02163514399487227 -14145.0,0.02162767277117406 -14146.0,0.021620204127499522 -14147.0,0.02161273806295769 -14148.0,0.021605274576657924 -14149.0,0.02159781366770988 -14150.0,0.021590355335223542 -14151.0,0.021582899578309164 -14152.0,0.021575446396077336 -14153.0,0.02156799578763895 -14154.0,0.0215605477521052 -14155.0,0.021553102288587603 -14156.0,0.02154565939619795 -14157.0,0.021538219074048365 -14158.0,0.021530781321251274 -14159.0,0.021523346136919416 -14160.0,0.02151591352016581 -14161.0,0.021508483470103805 -14162.0,0.021501055985847055 -14163.0,0.021493631066509523 -14164.0,0.02148620871120545 -14165.0,0.021478788919049408 -14166.0,0.02147137168915628 -14167.0,0.021463957020641248 -14168.0,0.02145654491261978 -14169.0,0.021449135364207672 -14170.0,0.021441728374521022 -14171.0,0.021434323942676234 -14172.0,0.02142692206779 -14173.0,0.02141952274897934 -14174.0,0.021412125985361564 -14175.0,0.021404731776054297 -14176.0,0.02139734012017547 -14177.0,0.0213899510168433 -14178.0,0.02138256446517632 -14179.0,0.021375180464293375 -14180.0,0.021367799013313614 -14181.0,0.021360420111356467 -14182.0,0.021353043757541695 -14183.0,0.02134566995098935 -14184.0,0.0213382986908198 -14185.0,0.02133092997615369 -14186.0,0.021323563806111997 -14187.0,0.02131620017981599 -14188.0,0.02130883909638725 -14189.0,0.02130148055494763 -14190.0,0.02129412455461933 -14191.0,0.021286771094524825 -14192.0,0.021279420173786902 -14193.0,0.021272071791528662 -14194.0,0.021264725946873474 -14195.0,0.021257382638945044 -14196.0,0.021250041866867367 -14197.0,0.021242703629764752 -14198.0,0.021235367926761787 -14199.0,0.02122803475698338 -14200.0,0.021220704119554738 -14201.0,0.02121337601360138 -14202.0,0.021206050438249097 -14203.0,0.021198727392624014 -14204.0,0.02119140687585254 -14205.0,0.0211840888870614 -14206.0,0.021176773425377597 -14207.0,0.021169460489928456 -14208.0,0.0211621500798416 -14209.0,0.021154842194244954 -14210.0,0.02114753683226673 -14211.0,0.021140233993035454 -14212.0,0.021132933675679953 -14213.0,0.021125635879329353 -14214.0,0.021118340603113087 -14215.0,0.021111047846160868 -14216.0,0.021103757607602726 -14217.0,0.021096469886568995 -14218.0,0.021089184682190308 -14219.0,0.021081901993597576 -14220.0,0.021074621819922035 -14221.0,0.021067344160295216 -14222.0,0.021060069013848957 -14223.0,0.02105279637971537 -14224.0,0.02104552625702688 -14225.0,0.02103825864491623 -14226.0,0.021030993542516443 -14227.0,0.021023730948960838 -14228.0,0.02101647086338304 -14229.0,0.021009213284916978 -14230.0,0.02100195821269688 -14231.0,0.02099470564585727 -14232.0,0.020987455583532957 -14233.0,0.020980208024859066 -14234.0,0.02097296296897102 -14235.0,0.020965720415004545 -14236.0,0.02095848036209564 -14237.0,0.020951242809380623 -14238.0,0.020944007755996117 -14239.0,0.02093677520107903 -14240.0,0.020929545143766562 -14241.0,0.020922317583196223 -14242.0,0.02091509251850582 -14243.0,0.02090786994883347 -14244.0,0.020900649873317544 -14245.0,0.020893432291096754 -14246.0,0.0208862172013101 -14247.0,0.020879004603096878 -14248.0,0.020871794495596657 -14249.0,0.02086458687794934 -14250.0,0.020857381749295103 -14251.0,0.020850179108774434 -14252.0,0.020842978955528113 -14253.0,0.020835781288697203 -14254.0,0.020828586107423077 -14255.0,0.02082139341084741 -14256.0,0.020814203198112165 -14257.0,0.020807015468359592 -14258.0,0.020799830220732254 -14259.0,0.020792647454373002 -14260.0,0.020785467168424995 -14261.0,0.020778289362031657 -14262.0,0.020771114034336742 -14263.0,0.02076394118448428 -14264.0,0.020756770811618613 -14265.0,0.02074960291488435 -14266.0,0.020742437493426424 -14267.0,0.02073527454639005 -14268.0,0.02072811407292074 -14269.0,0.02072095607216432 -14270.0,0.02071380054326686 -14271.0,0.020706647485374773 -14272.0,0.020699496897634756 -14273.0,0.0206923487791938 -14274.0,0.020685203129199168 -14275.0,0.020678059946798447 -14276.0,0.02067091923113951 -14277.0,0.020663780981370526 -14278.0,0.020656645196639938 -14279.0,0.020649511876096507 -14280.0,0.02064238101888928 -14281.0,0.020635252624167606 -14282.0,0.020628126691081106 -14283.0,0.020621003218779712 -14284.0,0.020613882206413647 -14285.0,0.020606763653133436 -14286.0,0.02059964755808987 -14287.0,0.02059253392043406 -14288.0,0.020585422739317398 -14289.0,0.020578314013891572 -14290.0,0.020571207743308575 -14291.0,0.020564103926720662 -14292.0,0.02055700256328041 -14293.0,0.020549903652140673 -14294.0,0.020542807192454614 -14295.0,0.020535713183375662 -14296.0,0.02052862162405756 -14297.0,0.020521532513654333 -14298.0,0.02051444585132032 -14299.0,0.020507361636210107 -14300.0,0.020500279867478613 -14301.0,0.02049320054428103 -14302.0,0.020486123665772862 -14303.0,0.020479049231109867 -14304.0,0.020471977239448123 -14305.0,0.020464907689944 -14306.0,0.020457840581754143 -14307.0,0.020450775914035515 -14308.0,0.020443713685945327 -14309.0,0.020436653896641125 -14310.0,0.02042959654528072 -14311.0,0.020422541631022233 -14312.0,0.020415489153024047 -14313.0,0.020408439110444862 -14314.0,0.020401391502443657 -14315.0,0.020394346328179713 -14316.0,0.020387303586812577 -14317.0,0.020380263277502107 -14318.0,0.020373225399408446 -14319.0,0.020366189951692037 -14320.0,0.020359156933513586 -14321.0,0.02035212634403411 -14322.0,0.020345098182414912 -14323.0,0.020338072447817594 -14324.0,0.02033104913940402 -14325.0,0.020324028256336366 -14326.0,0.020317009797777095 -14327.0,0.020309993762888952 -14328.0,0.02030298015083499 -14329.0,0.020295968960778513 -14330.0,0.020288960191883153 -14331.0,0.020281953843312807 -14332.0,0.02027494991423168 -14333.0,0.02026794840380424 -14334.0,0.020260949311195264 -14335.0,0.02025395263556981 -14336.0,0.02024695837609324 -14337.0,0.020239966531931164 -14338.0,0.02023297710224952 -14339.0,0.020225990086214517 -14340.0,0.02021900548299267 -14341.0,0.020212023291750744 -14342.0,0.02020504351165582 -14343.0,0.02019806614187527 -14344.0,0.020191091181576738 -14345.0,0.020184118629928173 -14346.0,0.020177148486097786 -14347.0,0.020170180749254092 -14348.0,0.020163215418565892 -14349.0,0.020156252493202288 -14350.0,0.020149291972332627 -14351.0,0.020142333855126586 -14352.0,0.020135378140754112 -14353.0,0.020128424828385443 -14354.0,0.02012147391719108 -14355.0,0.02011452540634185 -14356.0,0.020107579295008837 -14357.0,0.02010063558236343 -14358.0,0.02009369426757728 -14359.0,0.020086755349822346 -14360.0,0.020079818828270868 -14361.0,0.020072884702095374 -14362.0,0.02006595297046866 -14363.0,0.020059023632563826 -14364.0,0.020052096687554255 -14365.0,0.020045172134613612 -14366.0,0.02003824997291586 -14367.0,0.020031330201635212 -14368.0,0.020024412819946207 -14369.0,0.020017497827023643 -14370.0,0.020010585222042625 -14371.0,0.02000367500417851 -14372.0,0.019996767172606972 -14373.0,0.019989861726503955 -14374.0,0.019982958665045698 -14375.0,0.019976057987408695 -14376.0,0.019969159692769762 -14377.0,0.019962263780305977 -14378.0,0.01995537024919472 -14379.0,0.019948479098613622 -14380.0,0.01994159032774063 -14381.0,0.019934703935753962 -14382.0,0.019927819921832127 -14383.0,0.019920938285153914 -14384.0,0.01991405902489838 -14385.0,0.019907182140244888 -14386.0,0.019900307630373076 -14387.0,0.01989343549446287 -14388.0,0.019886565731694464 -14389.0,0.01987969834124835 -14390.0,0.0198728333223053 -14391.0,0.01986597067404637 -14392.0,0.019859110395652888 -14393.0,0.019852252486306475 -14394.0,0.019845396945189036 -14395.0,0.01983854377148276 -14396.0,0.019831692964370096 -14397.0,0.019824844523033805 -14398.0,0.01981799844665692 -14399.0,0.019811154734422753 -14400.0,0.01980431338551489 -14401.0,0.019797474399117214 -14402.0,0.019790637774413884 -14403.0,0.01978380351058934 -14404.0,0.019776971606828314 -14405.0,0.019770142062315792 -14406.0,0.019763314876237066 -14407.0,0.019756490047777707 -14408.0,0.019749667576123564 -14409.0,0.019742847460460757 -14410.0,0.019736029699975698 -14411.0,0.01972921429385508 -14412.0,0.019722401241285884 -14413.0,0.019715590541455347 -14414.0,0.019708782193551006 -14415.0,0.01970197619676068 -14416.0,0.019695172550272467 -14417.0,0.019688371253274727 -14418.0,0.019681572304956124 -14419.0,0.01967477570450559 -14420.0,0.019667981451112346 -14421.0,0.01966118954396589 -14422.0,0.01965439998225598 -14423.0,0.019647612765172684 -14424.0,0.019640827891906333 -14425.0,0.01963404536164755 -14426.0,0.019627265173587215 -14427.0,0.019620487326916503 -14428.0,0.01961371182082687 -14429.0,0.019606938654510055 -14430.0,0.019600167827158052 -14431.0,0.019593399337963162 -14432.0,0.01958663318611795 -14433.0,0.019579869370815274 -14434.0,0.01957310789124824 -14435.0,0.019566348746610264 -14436.0,0.01955959193609503 -14437.0,0.019552837458896508 -14438.0,0.019546085314208917 -14439.0,0.01953933550122679 -14440.0,0.01953258801914492 -14441.0,0.019525842867158378 -14442.0,0.019519100044462535 -14443.0,0.019512359550252996 -14444.0,0.01950562138372568 -14445.0,0.019498885544076774 -14446.0,0.01949215203050275 -14447.0,0.01948542084220033 -14448.0,0.01947869197836654 -14449.0,0.01947196543819868 -14450.0,0.01946524122089433 -14451.0,0.01945851932565132 -14452.0,0.019451799751667786 -14453.0,0.019445082498142134 -14454.0,0.01943836756427305 -14455.0,0.01943165494925948 -14456.0,0.01942494465230066 -14457.0,0.019418236672596106 -14458.0,0.0194115310093456 -14459.0,0.019404827661749217 -14460.0,0.01939812662900728 -14461.0,0.01939142791032041 -14462.0,0.0193847315048895 -14463.0,0.019378037411915728 -14464.0,0.019371345630600518 -14465.0,0.0193646561601456 -14466.0,0.019357968999752964 -14467.0,0.019351284148624897 -14468.0,0.019344601605963924 -14469.0,0.01933792137097287 -14470.0,0.01933124344285484 -14471.0,0.019324567820813213 -14472.0,0.019317894504051615 -14473.0,0.019311223491773978 -14474.0,0.019304554783184498 -14475.0,0.01929788837748766 -14476.0,0.019291224273888182 -14477.0,0.019284562471591108 -14478.0,0.019277902969801725 -14479.0,0.019271245767725605 -14480.0,0.0192645908645686 -14481.0,0.01925793825953681 -14482.0,0.019251287951836643 -14483.0,0.019244639940674758 -14484.0,0.01923799422525811 -14485.0,0.019231350804793892 -14486.0,0.0192247096784896 -14487.0,0.019218070845553003 -14488.0,0.019211434305192142 -14489.0,0.019204800056615307 -14490.0,0.01919816809903109 -14491.0,0.019191538431648347 -14492.0,0.019184911053676215 -14493.0,0.019178285964324082 -14494.0,0.019171663162801625 -14495.0,0.0191650426483188 -14496.0,0.019158424420085824 -14497.0,0.0191518084773132 -14498.0,0.019145194819211675 -14499.0,0.019138583444992297 -14500.0,0.01913197435386638 -14501.0,0.019125367545045516 -14502.0,0.01911876301774154 -14503.0,0.019112160771166592 -14504.0,0.01910556080453307 -14505.0,0.019098963117053655 -14506.0,0.019092367707941277 -14507.0,0.019085774576409156 -14508.0,0.01907918372167078 -14509.0,0.01907259514293992 -14510.0,0.01906600883943059 -14511.0,0.019059424810357092 -14512.0,0.01905284305493401 -14513.0,0.019046263572376192 -14514.0,0.019039686361898733 -14515.0,0.019033111422717037 -14516.0,0.019026538754046755 -14517.0,0.01901996835510382 -14518.0,0.019013400225104435 -14519.0,0.019006834363265054 -14520.0,0.01900027076880243 -14521.0,0.018993709440933572 -14522.0,0.01898715037887577 -14523.0,0.018980593581846554 -14524.0,0.01897403904906376 -14525.0,0.018967486779745482 -14526.0,0.018960936773110084 -14527.0,0.018954389028376185 -14528.0,0.018947843544762692 -14529.0,0.01894130032148878 -14530.0,0.018934759357773903 -14531.0,0.018928220652837745 -14532.0,0.018921684205900298 -14533.0,0.018915150016181815 -14534.0,0.018908618082902808 -14535.0,0.01890208840528408 -14536.0,0.01889556098254667 -14537.0,0.018889035813911915 -14538.0,0.018882512898601402 -14539.0,0.018875992235837007 -14540.0,0.01886947382484085 -14541.0,0.018862957664835332 -14542.0,0.018856443755043133 -14543.0,0.01884993209468719 -14544.0,0.018843422682990697 -14545.0,0.018836915519177135 -14546.0,0.01883041060247025 -14547.0,0.01882390793209406 -14548.0,0.018817407507272826 -14549.0,0.018810909327231104 -14550.0,0.01880441339119371 -14551.0,0.018797919698385727 -14552.0,0.0187914282480325 -14553.0,0.018784939039359645 -14554.0,0.018778452071593052 -14555.0,0.018771967343958872 -14556.0,0.01876548485568353 -14557.0,0.0187590046059937 -14558.0,0.018752526594116338 -14559.0,0.01874605081927867 -14560.0,0.01873957728070819 -14561.0,0.018733105977632634 -14562.0,0.01872663690928003 -14563.0,0.01872017007487867 -14564.0,0.01871370547365711 -14565.0,0.018707243104844163 -14566.0,0.018700782967668913 -14567.0,0.018694325061360716 -14568.0,0.018687869385149204 -14569.0,0.018681415938264244 -14570.0,0.018674964719935988 -14571.0,0.01866851572939486 -14572.0,0.01866206896587154 -14573.0,0.018655624428596987 -14574.0,0.01864918211680239 -14575.0,0.018642742029719248 -14576.0,0.0186363041665793 -14577.0,0.01862986852661456 -14578.0,0.01862343510905729 -14579.0,0.018617003913140043 -14580.0,0.018610574938095616 -14581.0,0.018604148183157095 -14582.0,0.018597723647557796 -14583.0,0.018591301330531322 -14584.0,0.018584881231311544 -14585.0,0.018578463349132594 -14586.0,0.018572047683228853 -14587.0,0.01856563423283499 -14588.0,0.018559222997185917 -14589.0,0.01855281397551684 -14590.0,0.01854640716706318 -14591.0,0.01854000257106067 -14592.0,0.01853360018674529 -14593.0,0.018527200013353274 -14594.0,0.01852080205012114 -14595.0,0.01851440629628564 -14596.0,0.018508012751083817 -14597.0,0.01850162141375297 -14598.0,0.01849523228353066 -14599.0,0.018488845359654702 -14600.0,0.018482460641363187 -14601.0,0.018476078127894462 -14602.0,0.018469697818487153 -14603.0,0.018463319712380116 -14604.0,0.0184569438088125 -14605.0,0.018450570107023705 -14606.0,0.0184441986062534 -14607.0,0.0184378293057415 -14608.0,0.0184314622047282 -14609.0,0.01842509730245395 -14610.0,0.018418734598159466 -14611.0,0.018412374091085728 -14612.0,0.01840601578047396 -14613.0,0.018399659665565674 -14614.0,0.018393305745602627 -14615.0,0.018386954019826852 -14616.0,0.018380604487480617 -14617.0,0.01837425714780648 -14618.0,0.018367912000047247 -14619.0,0.018361569043445998 -14620.0,0.018355228277246047 -14621.0,0.018348889700690995 -14622.0,0.018342553313024697 -14623.0,0.018336219113491276 -14624.0,0.01832988710133509 -14625.0,0.01832355727580079 -14626.0,0.018317229636133265 -14627.0,0.01831090418157769 -14628.0,0.018304580911379462 -14629.0,0.018298259824784276 -14630.0,0.018291940921038065 -14631.0,0.018285624199387035 -14632.0,0.018279309659077644 -14633.0,0.01827299729935662 -14634.0,0.01826668711947095 -14635.0,0.01826037911866785 -14636.0,0.018254073296194835 -14637.0,0.01824776965129967 -14638.0,0.018241468183230376 -14639.0,0.018235168891235227 -14640.0,0.018228871774562772 -14641.0,0.018222576832461805 -14642.0,0.018216284064181406 -14643.0,0.018209993468970856 -14644.0,0.01820370504607975 -14645.0,0.01819741879475793 -14646.0,0.01819113471425549 -14647.0,0.01818485280382278 -14648.0,0.01817857306271042 -14649.0,0.01817229549016928 -14650.0,0.018166020085450492 -14651.0,0.018159746847805462 -14652.0,0.01815347577648581 -14653.0,0.01814720687074345 -14654.0,0.018140940129830554 -14655.0,0.01813467555299954 -14656.0,0.0181284131395031 -14657.0,0.018122152888594163 -14658.0,0.018115894799525935 -14659.0,0.01810963887155188 -14660.0,0.018103385103925684 -14661.0,0.018097133495901335 -14662.0,0.018090884046733056 -14663.0,0.01808463675567534 -14664.0,0.01807839162198293 -14665.0,0.018072148644910822 -14666.0,0.018065907823714276 -14667.0,0.01805966915764881 -14668.0,0.018053432645970216 -14669.0,0.018047198287934482 -14670.0,0.018040966082797916 -14671.0,0.018034736029817065 -14672.0,0.018028508128248723 -14673.0,0.018022282377349947 -14674.0,0.018016058776378054 -14675.0,0.018009837324590612 -14676.0,0.018003618021245463 -14677.0,0.017997400865600657 -14678.0,0.01799118585691455 -14679.0,0.017984972994445736 -14680.0,0.017978762277453066 -14681.0,0.017972553705195647 -14682.0,0.01796634727693284 -14683.0,0.017960142991924263 -14684.0,0.017953940849429813 -14685.0,0.01794774084870958 -14686.0,0.017941542989023965 -14687.0,0.01793534726963361 -14688.0,0.017929153689799415 -14689.0,0.01792296224878253 -14690.0,0.017916772945844355 -14691.0,0.017910585780246555 -14692.0,0.01790440075125105 -14693.0,0.01789821785812002 -14694.0,0.017892037100115867 -14695.0,0.01788585847650128 -14696.0,0.0178796819865392 -14697.0,0.017873507629492812 -14698.0,0.017867335404625564 -14699.0,0.01786116531120115 -14700.0,0.01785499734848353 -14701.0,0.01784883151573692 -14702.0,0.017842667812225755 -14703.0,0.017836506237214764 -14704.0,0.01783034678996891 -14705.0,0.017824189469753428 -14706.0,0.017818034275833783 -14707.0,0.017811881207475712 -14708.0,0.017805730263945194 -14709.0,0.01779958144450847 -14710.0,0.01779343474843205 -14711.0,0.01778729017498264 -14712.0,0.017781147723427253 -14713.0,0.01777500739303314 -14714.0,0.017768869183067807 -14715.0,0.01776273309279901 -14716.0,0.017756599121494757 -14717.0,0.01775046726842331 -14718.0,0.017744337532853198 -14719.0,0.017738209914053157 -14720.0,0.017732084411292225 -14721.0,0.017725961023839675 -14722.0,0.017719839750965027 -14723.0,0.01771372059193806 -14724.0,0.017707603546028804 -14725.0,0.01770148861250754 -14726.0,0.017695375790644795 -14727.0,0.01768926507971138 -14728.0,0.017683156478978293 -14729.0,0.017677049987716843 -14730.0,0.017670945605198565 -14731.0,0.017664843330695252 -14732.0,0.01765874316347895 -14733.0,0.01765264510282195 -14734.0,0.0176465491479968 -14735.0,0.017640455298276313 -14736.0,0.017634363552933505 -14737.0,0.017628273911241693 -14738.0,0.01762218637247442 -14739.0,0.017616100935905498 -14740.0,0.017610017600808967 -14741.0,0.01760393636645914 -14742.0,0.017597857232130563 -14743.0,0.017591780197098044 -14744.0,0.017585705260636648 -14745.0,0.017579632422021655 -14746.0,0.017573561680528628 -14747.0,0.017567493035433375 -14748.0,0.01756142648601195 -14749.0,0.01755536203154066 -14750.0,0.017549299671296058 -14751.0,0.01754323940455495 -14752.0,0.017537181230594404 -14753.0,0.017531125148691692 -14754.0,0.01752507115812439 -14755.0,0.01751901925817029 -14756.0,0.017512969448107457 -14757.0,0.017506921727214183 -14758.0,0.01750087609476902 -14759.0,0.017494832550050774 -14760.0,0.017488791092338505 -14761.0,0.01748275172091148 -14762.0,0.01747671443504927 -14763.0,0.017470679234031655 -14764.0,0.01746464611713869 -14765.0,0.01745861508365067 -14766.0,0.017452586132848127 -14767.0,0.01744655926401186 -14768.0,0.01744053447642291 -14769.0,0.017434511769362566 -14770.0,0.017428491142112344 -14771.0,0.017422472593954037 -14772.0,0.01741645612416968 -14773.0,0.017410441732041544 -14774.0,0.017404429416852166 -14775.0,0.017398419177884313 -14776.0,0.017392411014421013 -14777.0,0.017386404925745547 -14778.0,0.017380400911141403 -14779.0,0.017374398969892364 -14780.0,0.017368399101282437 -14781.0,0.017362401304595886 -14782.0,0.017356405579117214 -14783.0,0.017350411924131177 -14784.0,0.017344420338922775 -14785.0,0.017338430822777254 -14786.0,0.01733244337498013 -14787.0,0.017326457994817104 -14788.0,0.017320474681574185 -14789.0,0.017314493434537608 -14790.0,0.017308514252993852 -14791.0,0.017302537136229642 -14792.0,0.017296562083531957 -14793.0,0.01729058909418801 -14794.0,0.017284618167485288 -14795.0,0.01727864930271147 -14796.0,0.017272682499154528 -14797.0,0.01726671775610267 -14798.0,0.01726075507284434 -14799.0,0.017254794448668242 -14800.0,0.017248835882863307 -14801.0,0.017242879374718724 -14802.0,0.01723692492352393 -14803.0,0.017230972528568613 -14804.0,0.01722502218914267 -14805.0,0.017219073904536277 -14806.0,0.017213127674039853 -14807.0,0.017207183496944053 -14808.0,0.017201241372539783 -14809.0,0.017195301300118187 -14810.0,0.017189363278970658 -14811.0,0.01718342730838885 -14812.0,0.017177493387664618 -14813.0,0.0171715615160901 -14814.0,0.017165631692957664 -14815.0,0.017159703917559933 -14816.0,0.01715377818918976 -14817.0,0.01714785450714025 -14818.0,0.017141932870704753 -14819.0,0.01713601327917686 -14820.0,0.017130095731850425 -14821.0,0.01712418022801949 -14822.0,0.0171182667669784 -14823.0,0.017112355348021722 -14824.0,0.017106445970444265 -14825.0,0.017100538633541083 -14826.0,0.017094633336607473 -14827.0,0.017088730078938977 -14828.0,0.017082828859831395 -14829.0,0.017076929678580727 -14830.0,0.017071032534483256 -14831.0,0.01706513742683549 -14832.0,0.017059244354934198 -14833.0,0.01705335331807637 -14834.0,0.017047464315559254 -14835.0,0.017041577346680332 -14836.0,0.017035692410737328 -14837.0,0.017029809507028232 -14838.0,0.017023928634851228 -14839.0,0.01701804979350478 -14840.0,0.01701217298228759 -14841.0,0.017006298200498596 -14842.0,0.017000425447436976 -14843.0,0.016994554722402157 -14844.0,0.016988686024693805 -14845.0,0.01698281935361184 -14846.0,0.016976954708456383 -14847.0,0.016971092088527838 -14848.0,0.016965231493126835 -14849.0,0.01695937292155425 -14850.0,0.0169535163731112 -14851.0,0.01694766184709904 -14852.0,0.016941809342819365 -14853.0,0.016935958859574034 -14854.0,0.016930110396665095 -14855.0,0.01692426395339488 -14856.0,0.016918419529065955 -14857.0,0.016912577122981123 -14858.0,0.016906736734443425 -14859.0,0.01690089836275615 -14860.0,0.01689506200722282 -14861.0,0.016889227667147195 -14862.0,0.016883395341833304 -14863.0,0.01687756503058536 -14864.0,0.016871736732707865 -14865.0,0.01686591044750554 -14866.0,0.016860086174283362 -14867.0,0.01685426391234653 -14868.0,0.016848443661000495 -14869.0,0.01684262541955094 -14870.0,0.016836809187303806 -14871.0,0.01683099496356523 -14872.0,0.016825182747641634 -14873.0,0.016819372538839663 -14874.0,0.016813564336466198 -14875.0,0.016807758139828367 -14876.0,0.01680195394823353 -14877.0,0.01679615176098929 -14878.0,0.01679035157740349 -14879.0,0.016784553396784228 -14880.0,0.016778757218439782 -14881.0,0.01677296304167874 -14882.0,0.016767170865809887 -14883.0,0.016761380690142262 -14884.0,0.016755592513985146 -14885.0,0.016749806336648042 -14886.0,0.016744022157440707 -14887.0,0.016738239975673145 -14888.0,0.016732459790655553 -14889.0,0.01672668160169841 -14890.0,0.016720905408112424 -14891.0,0.016715131209208534 -14892.0,0.016709359004297923 -14893.0,0.016703588792692008 -14894.0,0.016697820573702445 -14895.0,0.016692054346641127 -14896.0,0.0166862901108202 -14897.0,0.016680527865552002 -14898.0,0.016674767610149157 -14899.0,0.016669009343924505 -14900.0,0.016663253066191132 -14901.0,0.01665749877626235 -14902.0,0.016651746473451714 -14903.0,0.016645996157073024 -14904.0,0.016640247826440316 -14905.0,0.01663450148086783 -14906.0,0.016628757119670084 -14907.0,0.016623014742161813 -14908.0,0.016617274347658 -14909.0,0.016611535935473855 -14910.0,0.016605799504924825 -14911.0,0.016600065055326598 -14912.0,0.016594332585995096 -14913.0,0.016588602096246494 -14914.0,0.016582873585397152 -14915.0,0.016577147052763717 -14916.0,0.016571422497663055 -14917.0,0.01656569991941227 -14918.0,0.016559979317328704 -14919.0,0.016554260690729922 -14920.0,0.01654854403893374 -14921.0,0.016542829361258213 -14922.0,0.016537116657021594 -14923.0,0.01653140592554242 -14924.0,0.01652569716613943 -14925.0,0.016519990378131625 -14926.0,0.016514285560838216 -14927.0,0.016508582713578662 -14928.0,0.016502881835672657 -14929.0,0.016497182926440142 -14930.0,0.01649148598520125 -14931.0,0.01648579101127639 -14932.0,0.016480098003986195 -14933.0,0.016474406962651532 -14934.0,0.016468717886593494 -14935.0,0.016463030775133426 -14936.0,0.01645734562759289 -14937.0,0.016451662443293692 -14938.0,0.016445981221557885 -14939.0,0.016440301961707707 -14940.0,0.016434624663065684 -14941.0,0.01642894932495455 -14942.0,0.016423275946697284 -14943.0,0.01641760452761709 -14944.0,0.016411935067037413 -14945.0,0.016406267564281922 -14946.0,0.01640060201867454 -14947.0,0.016394938429539384 -14948.0,0.016389276796200846 -14949.0,0.016383617117983525 -14950.0,0.01637795939421227 -14951.0,0.016372303624212152 -14952.0,0.016366649807308484 -14953.0,0.0163609979428268 -14954.0,0.01635534803009288 -14955.0,0.01634970006843274 -14956.0,0.016344054057172593 -14957.0,0.016338409995638924 -14958.0,0.01633276788315844 -14959.0,0.016327127719058077 -14960.0,0.016321489502665005 -14961.0,0.016315853233306626 -14962.0,0.016310218910310575 -14963.0,0.016304586533004727 -14964.0,0.016298956100717157 -14965.0,0.01629332761277621 -14966.0,0.016287701068510445 -14967.0,0.016282076467248663 -14968.0,0.01627645380831988 -14969.0,0.016270833091053365 -14970.0,0.016265214314778596 -14971.0,0.016259597478825303 -14972.0,0.01625398258252345 -14973.0,0.01624836962520319 -14974.0,0.016242758606194955 -14975.0,0.016237149524829388 -14976.0,0.01623154238043737 -14977.0,0.016225937172350012 -14978.0,0.016220333899898645 -14979.0,0.01621473256241485 -14980.0,0.01620913315923043 -14981.0,0.016203535689677404 -14982.0,0.016197940153088033 -14983.0,0.016192346548794822 -14984.0,0.01618675487613049 -14985.0,0.01618116513442799 -14986.0,0.01617557732302051 -14987.0,0.01616999144124146 -14988.0,0.016164407488424494 -14989.0,0.01615882546390349 -14990.0,0.016153245367012535 -14991.0,0.01614766719708597 -14992.0,0.016142090953458366 -14993.0,0.016136516635464514 -14994.0,0.01613094424243944 -14995.0,0.0161253737737184 -14996.0,0.016119805228636874 -14997.0,0.016114238606530593 -14998.0,0.01610867390673547 -14999.0,0.016103111128587685 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516201500_theo_VPR_VPR.png b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516201500_theo_VPR_VPR.png deleted file mode 100644 index fa2aad4..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516201500_theo_VPR_VPR.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516202000_theo_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516202000_theo_VPR_VPR.csv deleted file mode 100644 index 727c27b..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516202000_theo_VPR_VPR.csv +++ /dev/null @@ -1,15008 +0,0 @@ -# Height Profile -# ============== -# -# Datatype (Unit) : normalized reflectivity (-) -# Fill value : -9999.0 -# Time : 2020-05-16 20:20:00 -# Sector specification: None -Altitude [m MSL],Znorm -0.0,1.0 -1.0,1.0 -2.0,1.0 -3.0,1.0 -4.0,1.0 -5.0,1.0 -6.0,1.0 -7.0,1.0 -8.0,1.0 -9.0,1.0 -10.0,1.0 -11.0,1.0 -12.0,1.0 -13.0,1.0 -14.0,1.0 -15.0,1.0 -16.0,1.0 -17.0,1.0 -18.0,1.0 -19.0,1.0 -20.0,1.0 -21.0,1.0 -22.0,1.0 -23.0,1.0 -24.0,1.0 -25.0,1.0 -26.0,1.0 -27.0,1.0 -28.0,1.0 -29.0,1.0 -30.0,1.0 -31.0,1.0 -32.0,1.0 -33.0,1.0 -34.0,1.0 -35.0,1.0 -36.0,1.0 -37.0,1.0 -38.0,1.0 -39.0,1.0 -40.0,1.0 -41.0,1.0 -42.0,1.0 -43.0,1.0 -44.0,1.0 -45.0,1.0 -46.0,1.0 -47.0,1.0 -48.0,1.0 -49.0,1.0 -50.0,1.0 -51.0,1.0 -52.0,1.0 -53.0,1.0 -54.0,1.0 -55.0,1.0 -56.0,1.0 -57.0,1.0 -58.0,1.0 -59.0,1.0 -60.0,1.0 -61.0,1.0 -62.0,1.0 -63.0,1.0 -64.0,1.0 -65.0,1.0 -66.0,1.0 -67.0,1.0 -68.0,1.0 -69.0,1.0 -70.0,1.0 -71.0,1.0 -72.0,1.0 -73.0,1.0 -74.0,1.0 -75.0,1.0 -76.0,1.0 -77.0,1.0 -78.0,1.0 -79.0,1.0 -80.0,1.0 -81.0,1.0 -82.0,1.0 -83.0,1.0 -84.0,1.0 -85.0,1.0 -86.0,1.0 -87.0,1.0 -88.0,1.0 -89.0,1.0 -90.0,1.0 -91.0,1.0 -92.0,1.0 -93.0,1.0 -94.0,1.0 -95.0,1.0 -96.0,1.0 -97.0,1.0 -98.0,1.0 -99.0,1.0 -100.0,1.0 -101.0,1.0 -102.0,1.0 -103.0,1.0 -104.0,1.0 -105.0,1.0 -106.0,1.0 -107.0,1.0 -108.0,1.0 -109.0,1.0 -110.0,1.0 -111.0,1.0 -112.0,1.0 -113.0,1.0 -114.0,1.0 -115.0,1.0 -116.0,1.0 -117.0,1.0 -118.0,1.0 -119.0,1.0 -120.0,1.0 -121.0,1.0 -122.0,1.0 -123.0,1.0 -124.0,1.0 -125.0,1.0 -126.0,1.0 -127.0,1.0 -128.0,1.0 -129.0,1.0 -130.0,1.0 -131.0,1.0 -132.0,1.0 -133.0,1.0 -134.0,1.0 -135.0,1.0 -136.0,1.0 -137.0,1.0 -138.0,1.0 -139.0,1.0 -140.0,1.0 -141.0,1.0 -142.0,1.0 -143.0,1.0 -144.0,1.0 -145.0,1.0 -146.0,1.0 -147.0,1.0 -148.0,1.0 -149.0,1.0 -150.0,1.0 -151.0,1.0 -152.0,1.0 -153.0,1.0 -154.0,1.0 -155.0,1.0 -156.0,1.0 -157.0,1.0 -158.0,1.0 -159.0,1.0 -160.0,1.0 -161.0,1.0 -162.0,1.0 -163.0,1.0 -164.0,1.0 -165.0,1.0 -166.0,1.0 -167.0,1.0 -168.0,1.0 -169.0,1.0 -170.0,1.0 -171.0,1.0 -172.0,1.0 -173.0,1.0 -174.0,1.0 -175.0,1.0 -176.0,1.0 -177.0,1.0 -178.0,1.0 -179.0,1.0 -180.0,1.0 -181.0,1.0 -182.0,1.0 -183.0,1.0 -184.0,1.0 -185.0,1.0 -186.0,1.0 -187.0,1.0 -188.0,1.0 -189.0,1.0 -190.0,1.0 -191.0,1.0 -192.0,1.0 -193.0,1.0 -194.0,1.0 -195.0,1.0 -196.0,1.0 -197.0,1.0 -198.0,1.0 -199.0,1.0 -200.0,1.0 -201.0,1.0 -202.0,1.0 -203.0,1.0 -204.0,1.0 -205.0,1.0 -206.0,1.0 -207.0,1.0 -208.0,1.0 -209.0,1.0 -210.0,1.0 -211.0,1.0 -212.0,1.0 -213.0,1.0 -214.0,1.0 -215.0,1.0 -216.0,1.0 -217.0,1.0 -218.0,1.0 -219.0,1.0 -220.0,1.0 -221.0,1.0 -222.0,1.0 -223.0,1.0 -224.0,1.0 -225.0,1.0 -226.0,1.0 -227.0,1.0 -228.0,1.0 -229.0,1.0 -230.0,1.0 -231.0,1.0 -232.0,1.0 -233.0,1.0 -234.0,1.0 -235.0,1.0 -236.0,1.0 -237.0,1.0 -238.0,1.0 -239.0,1.0 -240.0,1.0 -241.0,1.0 -242.0,1.0 -243.0,1.0 -244.0,1.0 -245.0,1.0 -246.0,1.0 -247.0,1.0 -248.0,1.0 -249.0,1.0 -250.0,1.0 -251.0,1.0 -252.0,1.0 -253.0,1.0 -254.0,1.0 -255.0,1.0 -256.0,1.0 -257.0,1.0 -258.0,1.0 -259.0,1.0 -260.0,1.0 -261.0,1.0 -262.0,1.0 -263.0,1.0 -264.0,1.0 -265.0,1.0 -266.0,1.0 -267.0,1.0 -268.0,1.0 -269.0,1.0 -270.0,1.0 -271.0,1.0 -272.0,1.0 -273.0,1.0 -274.0,1.0 -275.0,1.0 -276.0,1.0 -277.0,1.0 -278.0,1.0 -279.0,1.0 -280.0,1.0 -281.0,1.0 -282.0,1.0 -283.0,1.0 -284.0,1.0 -285.0,1.0 -286.0,1.0 -287.0,1.0 -288.0,1.0 -289.0,1.0 -290.0,1.0 -291.0,1.0 -292.0,1.0 -293.0,1.0 -294.0,1.0 -295.0,1.0 -296.0,1.0 -297.0,1.0 -298.0,1.0 -299.0,1.0 -300.0,1.0 -301.0,1.0 -302.0,1.0 -303.0,1.0 -304.0,1.0 -305.0,1.0 -306.0,1.0 -307.0,1.0 -308.0,1.0 -309.0,1.0 -310.0,1.0 -311.0,1.0 -312.0,1.0 -313.0,1.0 -314.0,1.0 -315.0,1.0 -316.0,1.0 -317.0,1.0 -318.0,1.0 -319.0,1.0 -320.0,1.0 -321.0,1.0 -322.0,1.0 -323.0,1.0 -324.0,1.0 -325.0,1.0 -326.0,1.0 -327.0,1.0 -328.0,1.0 -329.0,1.0 -330.0,1.0 -331.0,1.0 -332.0,1.0 -333.0,1.0 -334.0,1.0 -335.0,1.0 -336.0,1.0 -337.0,1.0 -338.0,1.0 -339.0,1.0 -340.0,1.0 -341.0,1.0 -342.0,1.0 -343.0,1.0 -344.0,1.0 -345.0,1.0 -346.0,1.0 -347.0,1.0 -348.0,1.0 -349.0,1.0 -350.0,1.0 -351.0,1.0 -352.0,1.0 -353.0,1.0 -354.0,1.0 -355.0,1.0 -356.0,1.0 -357.0,1.0 -358.0,1.0 -359.0,1.0 -360.0,1.0 -361.0,1.0 -362.0,1.0 -363.0,1.0 -364.0,1.0 -365.0,1.0 -366.0,1.0 -367.0,1.0 -368.0,1.0 -369.0,1.0 -370.0,1.0 -371.0,1.0 -372.0,1.0 -373.0,1.0 -374.0,1.0 -375.0,1.0 -376.0,1.0 -377.0,1.0 -378.0,1.0 -379.0,1.0 -380.0,1.0 -381.0,1.0 -382.0,1.0 -383.0,1.0 -384.0,1.0 -385.0,1.0 -386.0,1.0 -387.0,1.0 -388.0,1.0 -389.0,1.0 -390.0,1.0 -391.0,1.0 -392.0,1.0 -393.0,1.0 -394.0,1.0 -395.0,1.0 -396.0,1.0 -397.0,1.0 -398.0,1.0 -399.0,1.0 -400.0,1.0 -401.0,1.0 -402.0,1.0 -403.0,1.0 -404.0,1.0 -405.0,1.0 -406.0,1.0 -407.0,1.0 -408.0,1.0 -409.0,1.0 -410.0,1.0 -411.0,1.0 -412.0,1.0 -413.0,1.0 -414.0,1.0 -415.0,1.0 -416.0,1.0 -417.0,1.0 -418.0,1.0 -419.0,1.0 -420.0,1.0 -421.0,1.0 -422.0,1.0 -423.0,1.0 -424.0,1.0 -425.0,1.0 -426.0,1.0 -427.0,1.0 -428.0,1.0 -429.0,1.0 -430.0,1.0 -431.0,1.0 -432.0,1.0 -433.0,1.0 -434.0,1.0 -435.0,1.0 -436.0,1.0 -437.0,1.0 -438.0,1.0 -439.0,1.0 -440.0,1.0 -441.0,1.0 -442.0,1.0 -443.0,1.0 -444.0,1.0 -445.0,1.0 -446.0,1.0 -447.0,1.0 -448.0,1.0 -449.0,1.0 -450.0,1.0 -451.0,1.0 -452.0,1.0 -453.0,1.0 -454.0,1.0 -455.0,1.0 -456.0,1.0 -457.0,1.0 -458.0,1.0 -459.0,1.0 -460.0,1.0 -461.0,1.0 -462.0,1.0 -463.0,1.0 -464.0,1.0 -465.0,1.0 -466.0,1.0 -467.0,1.0 -468.0,1.0 -469.0,1.0 -470.0,1.0 -471.0,1.0 -472.0,1.0 -473.0,1.0 -474.0,1.0 -475.0,1.0 -476.0,1.0 -477.0,1.0 -478.0,1.0 -479.0,1.0 -480.0,1.0 -481.0,1.0 -482.0,1.0 -483.0,1.0 -484.0,1.0 -485.0,1.0 -486.0,1.0 -487.0,1.0 -488.0,1.0 -489.0,1.0 -490.0,1.0 -491.0,1.0 -492.0,1.0 -493.0,1.0 -494.0,1.0 -495.0,1.0 -496.0,1.0 -497.0,1.0 -498.0,1.0 -499.0,1.0 -500.0,1.0 -501.0,1.0 -502.0,1.0 -503.0,1.0 -504.0,1.0 -505.0,1.0 -506.0,1.0 -507.0,1.0 -508.0,1.0 -509.0,1.0 -510.0,1.0 -511.0,1.0 -512.0,1.0 -513.0,1.0 -514.0,1.0 -515.0,1.0 -516.0,1.0 -517.0,1.0 -518.0,1.0 -519.0,1.0 -520.0,1.0 -521.0,1.0 -522.0,1.0 -523.0,1.0 -524.0,1.0 -525.0,1.0 -526.0,1.0 -527.0,1.0 -528.0,1.0 -529.0,1.0 -530.0,1.0 -531.0,1.0 -532.0,1.0 -533.0,1.0 -534.0,1.0 -535.0,1.0 -536.0,1.0 -537.0,1.0 -538.0,1.0 -539.0,1.0 -540.0,1.0 -541.0,1.0 -542.0,1.0 -543.0,1.0 -544.0,1.0 -545.0,1.0 -546.0,1.0 -547.0,1.0 -548.0,1.0 -549.0,1.0 -550.0,1.0 -551.0,1.0 -552.0,1.0 -553.0,1.0 -554.0,1.0 -555.0,1.0 -556.0,1.0 -557.0,1.0 -558.0,1.0 -559.0,1.0 -560.0,1.0 -561.0,1.0 -562.0,1.0 -563.0,1.0 -564.0,1.0 -565.0,1.0 -566.0,1.0 -567.0,1.0 -568.0,1.0 -569.0,1.0 -570.0,1.0 -571.0,1.0 -572.0,1.0 -573.0,1.0 -574.0,1.0 -575.0,1.0 -576.0,1.0 -577.0,1.0 -578.0,1.0 -579.0,1.0 -580.0,1.0 -581.0,1.0 -582.0,1.0 -583.0,1.0 -584.0,1.0 -585.0,1.0 -586.0,1.0 -587.0,1.0 -588.0,1.0 -589.0,1.0 -590.0,1.0 -591.0,1.0 -592.0,1.0 -593.0,1.0 -594.0,1.0 -595.0,1.0 -596.0,1.0 -597.0,1.0 -598.0,1.0 -599.0,1.0 -600.0,1.0 -601.0,1.0 -602.0,1.0 -603.0,1.0 -604.0,1.0 -605.0,1.0 -606.0,1.0 -607.0,1.0 -608.0,1.0 -609.0,1.0 -610.0,1.0 -611.0,1.0 -612.0,1.0 -613.0,1.0 -614.0,1.0 -615.0,1.0 -616.0,1.0 -617.0,1.0 -618.0,1.0 -619.0,1.0 -620.0,1.0 -621.0,1.0 -622.0,1.0 -623.0,1.0 -624.0,1.0 -625.0,1.0 -626.0,1.0 -627.0,1.0 -628.0,1.0 -629.0,1.0 -630.0,1.0 -631.0,1.0 -632.0,1.0 -633.0,1.0 -634.0,1.0 -635.0,1.0 -636.0,1.0 -637.0,1.0 -638.0,1.0 -639.0,1.0 -640.0,1.0 -641.0,1.0 -642.0,1.0 -643.0,1.0 -644.0,1.0 -645.0,1.0 -646.0,1.0 -647.0,1.0 -648.0,1.0 -649.0,1.0 -650.0,1.0 -651.0,1.0 -652.0,1.0 -653.0,1.0 -654.0,1.0 -655.0,1.0 -656.0,1.0 -657.0,1.0 -658.0,1.0 -659.0,1.0 -660.0,1.0 -661.0,1.0 -662.0,1.0 -663.0,1.0 -664.0,1.0 -665.0,1.0 -666.0,1.0 -667.0,1.0 -668.0,1.0 -669.0,1.0 -670.0,1.0 -671.0,1.0 -672.0,1.0 -673.0,1.0 -674.0,1.0 -675.0,1.0 -676.0,1.0 -677.0,1.0 -678.0,1.0 -679.0,1.0 -680.0,1.0 -681.0,1.0 -682.0,1.0 -683.0,1.0 -684.0,1.0 -685.0,1.0 -686.0,1.0 -687.0,1.0 -688.0,1.0 -689.0,1.0 -690.0,1.0 -691.0,1.0 -692.0,1.0 -693.0,1.0 -694.0,1.0 -695.0,1.0 -696.0,1.0 -697.0,1.0 -698.0,1.0 -699.0,1.0 -700.0,1.0 -701.0,1.0 -702.0,1.0 -703.0,1.0 -704.0,1.0 -705.0,1.0 -706.0,1.0 -707.0,1.0 -708.0,1.0 -709.0,1.0 -710.0,1.0 -711.0,1.0 -712.0,1.0 -713.0,1.0 -714.0,1.0 -715.0,1.0 -716.0,1.0 -717.0,1.0 -718.0,1.0 -719.0,1.0 -720.0,1.0 -721.0,1.0 -722.0,1.0 -723.0,1.0 -724.0,1.0 -725.0,1.0 -726.0,1.0 -727.0,1.0 -728.0,1.0 -729.0,1.0 -730.0,1.0 -731.0,1.0 -732.0,1.0 -733.0,1.0 -734.0,1.0 -735.0,1.0 -736.0,1.0 -737.0,1.0 -738.0,1.0 -739.0,1.0 -740.0,1.0 -741.0,1.0 -742.0,1.0 -743.0,1.0 -744.0,1.0 -745.0,1.0 -746.0,1.0 -747.0,1.0 -748.0,1.0 -749.0,1.0 -750.0,1.0 -751.0,1.0 -752.0,1.0 -753.0,1.0 -754.0,1.0 -755.0,1.0 -756.0,1.0 -757.0,1.0 -758.0,1.0 -759.0,1.0 -760.0,1.0 -761.0,1.0 -762.0,1.0 -763.0,1.0 -764.0,1.0 -765.0,1.0 -766.0,1.0 -767.0,1.0 -768.0,1.0 -769.0,1.0 -770.0,1.0 -771.0,1.0 -772.0,1.0 -773.0,1.0 -774.0,1.0 -775.0,1.0 -776.0,1.0 -777.0,1.0 -778.0,1.0 -779.0,1.0 -780.0,1.0 -781.0,1.0 -782.0,1.0 -783.0,1.0 -784.0,1.0 -785.0,1.0 -786.0,1.0 -787.0,1.0 -788.0,1.0 -789.0,1.0 -790.0,1.0 -791.0,1.0 -792.0,1.0 -793.0,1.0 -794.0,1.0 -795.0,1.0 -796.0,1.0 -797.0,1.0 -798.0,1.0 -799.0,1.0 -800.0,1.0 -801.0,1.0 -802.0,1.0 -803.0,1.0 -804.0,1.0 -805.0,1.0 -806.0,1.0 -807.0,1.0 -808.0,1.0 -809.0,1.0 -810.0,1.0 -811.0,1.0 -812.0,1.0 -813.0,1.0 -814.0,1.0 -815.0,1.0 -816.0,1.0 -817.0,1.0 -818.0,1.0 -819.0,1.0 -820.0,1.0 -821.0,1.0 -822.0,1.0 -823.0,1.0 -824.0,1.0 -825.0,1.0 -826.0,1.0 -827.0,1.0 -828.0,1.0 -829.0,1.0 -830.0,1.0 -831.0,1.0 -832.0,1.0 -833.0,1.0 -834.0,1.0 -835.0,1.0 -836.0,1.0 -837.0,1.0 -838.0,1.0 -839.0,1.0 -840.0,1.0 -841.0,1.0 -842.0,1.0 -843.0,1.0 -844.0,1.0 -845.0,1.0 -846.0,1.0 -847.0,1.0 -848.0,1.0 -849.0,1.0 -850.0,1.0 -851.0,1.0 -852.0,1.0 -853.0,1.0 -854.0,1.0 -855.0,1.0 -856.0,1.0 -857.0,1.0 -858.0,1.0 -859.0,1.0 -860.0,1.0 -861.0,1.0 -862.0,1.0 -863.0,1.0 -864.0,1.0 -865.0,1.0 -866.0,1.0 -867.0,1.0 -868.0,1.0 -869.0,1.0 -870.0,1.0 -871.0,1.0 -872.0,1.0 -873.0,1.0 -874.0,1.0 -875.0,1.0 -876.0,1.0 -877.0,1.0 -878.0,1.0 -879.0,1.0 -880.0,1.0 -881.0,1.0 -882.0,1.0 -883.0,1.0 -884.0,1.0 -885.0,1.0 -886.0,1.0 -887.0,1.0 -888.0,1.0 -889.0,1.0 -890.0,1.0 -891.0,1.0 -892.0,1.0 -893.0,1.0 -894.0,1.0 -895.0,1.0 -896.0,1.0 -897.0,1.0 -898.0,1.0 -899.0,1.0 -900.0,1.0 -901.0,1.0 -902.0,1.0 -903.0,1.0 -904.0,1.0 -905.0,1.0 -906.0,1.0 -907.0,1.0 -908.0,1.0 -909.0,1.0 -910.0,1.0 -911.0,1.0 -912.0,1.0 -913.0,1.0 -914.0,1.0 -915.0,1.0 -916.0,1.0 -917.0,1.0 -918.0,1.0 -919.0,1.0 -920.0,1.0 -921.0,1.0 -922.0,1.0 -923.0,1.0 -924.0,1.0 -925.0,1.0 -926.0,1.0 -927.0,1.0 -928.0,1.0 -929.0,1.0 -930.0,1.0 -931.0,1.0 -932.0,1.0 -933.0,1.0 -934.0,1.0 -935.0,1.0 -936.0,1.0 -937.0,1.0 -938.0,1.0 -939.0,1.0 -940.0,1.0 -941.0,1.0 -942.0,1.0 -943.0,1.0 -944.0,1.0 -945.0,1.0 -946.0,1.0 -947.0,1.0 -948.0,1.0 -949.0,1.0 -950.0,1.0 -951.0,1.0 -952.0,1.0 -953.0,1.0 -954.0,1.0 -955.0,1.0 -956.0,1.0 -957.0,1.0 -958.0,1.0 -959.0,1.0 -960.0,1.0 -961.0,1.0 -962.0,1.0 -963.0,1.0 -964.0,1.0 -965.0,1.0 -966.0,1.0 -967.0,1.0 -968.0,1.0 -969.0,1.0 -970.0,1.0 -971.0,1.0 -972.0,1.0 -973.0,1.0 -974.0,1.0 -975.0,1.0 -976.0,1.0 -977.0,1.0 -978.0,1.0 -979.0,1.0 -980.0,1.0 -981.0,1.0 -982.0,1.0 -983.0,1.0 -984.0,1.0 -985.0,1.0 -986.0,1.0 -987.0,1.0 -988.0,1.0 -989.0,1.0 -990.0,1.0 -991.0,1.0 -992.0,1.0 -993.0,1.0 -994.0,1.0 -995.0,1.0 -996.0,1.0 -997.0,1.0 -998.0,1.0 -999.0,1.0 -1000.0,1.0 -1001.0,1.0 -1002.0,1.0 -1003.0,1.0 -1004.0,1.0 -1005.0,1.0 -1006.0,1.0 -1007.0,1.0 -1008.0,1.0 -1009.0,1.0 -1010.0,1.0 -1011.0,1.0 -1012.0,1.0 -1013.0,1.0 -1014.0,1.0 -1015.0,1.0 -1016.0,1.0 -1017.0,1.0 -1018.0,1.0 -1019.0,1.0 -1020.0,1.0 -1021.0,1.0 -1022.0,1.0 -1023.0,1.0 -1024.0,1.0 -1025.0,1.0 -1026.0,1.0 -1027.0,1.0 -1028.0,1.0 -1029.0,1.0 -1030.0,1.0 -1031.0,1.0 -1032.0,1.0 -1033.0,1.0 -1034.0,1.0 -1035.0,1.0 -1036.0,1.0 -1037.0,1.0 -1038.0,1.0 -1039.0,1.0 -1040.0,1.0 -1041.0,1.0 -1042.0,1.0 -1043.0,1.0 -1044.0,1.0 -1045.0,1.0 -1046.0,1.0 -1047.0,1.0 -1048.0,1.0 -1049.0,1.0 -1050.0,1.0 -1051.0,1.0 -1052.0,1.0 -1053.0,1.0 -1054.0,1.0 -1055.0,1.0 -1056.0,1.0 -1057.0,1.0 -1058.0,1.0 -1059.0,1.0 -1060.0,1.0 -1061.0,1.0 -1062.0,1.0 -1063.0,1.0 -1064.0,1.0 -1065.0,1.0 -1066.0,1.0 -1067.0,1.0 -1068.0,1.0 -1069.0,1.0 -1070.0,1.0 -1071.0,1.0 -1072.0,1.0 -1073.0,1.0 -1074.0,1.0 -1075.0,1.0 -1076.0,1.0 -1077.0,1.0 -1078.0,1.0 -1079.0,1.0 -1080.0,1.0 -1081.0,1.0 -1082.0,1.0 -1083.0,1.0 -1084.0,1.0 -1085.0,1.0 -1086.0,1.0 -1087.0,1.0 -1088.0,1.0 -1089.0,1.0 -1090.0,1.0 -1091.0,1.0 -1092.0,1.0 -1093.0,1.0 -1094.0,1.0 -1095.0,1.0 -1096.0,1.0 -1097.0,1.0 -1098.0,1.0 -1099.0,1.0 -1100.0,1.0 -1101.0,1.0 -1102.0,1.0 -1103.0,1.0 -1104.0,1.0 -1105.0,1.0 -1106.0,1.0 -1107.0,1.0 -1108.0,1.0 -1109.0,1.0 -1110.0,1.0 -1111.0,1.0 -1112.0,1.0 -1113.0,1.0 -1114.0,1.0 -1115.0,1.0 -1116.0,1.0 -1117.0,1.0 -1118.0,1.0 -1119.0,1.0 -1120.0,1.0 -1121.0,1.0 -1122.0,1.0 -1123.0,1.0 -1124.0,1.0 -1125.0,1.0 -1126.0,1.0 -1127.0,1.0 -1128.0,1.0 -1129.0,1.0 -1130.0,1.0 -1131.0,1.0 -1132.0,1.0 -1133.0,1.0 -1134.0,1.0 -1135.0,1.0 -1136.0,1.0 -1137.0,1.0 -1138.0,1.0 -1139.0,1.0 -1140.0,1.0 -1141.0,1.0 -1142.0,1.0 -1143.0,1.0 -1144.0,1.0 -1145.0,1.0 -1146.0,1.0 -1147.0,1.0 -1148.0,1.0 -1149.0,1.0 -1150.0,1.0 -1151.0,1.0 -1152.0,1.0 -1153.0,1.0 -1154.0,1.0 -1155.0,1.0 -1156.0,1.0 -1157.0,1.0 -1158.0,1.0 -1159.0,1.0 -1160.0,1.0 -1161.0,1.0 -1162.0,1.0 -1163.0,1.0 -1164.0,1.0 -1165.0,1.0 -1166.0,1.0 -1167.0,1.0 -1168.0,1.0 -1169.0,1.0 -1170.0,1.0 -1171.0,1.0 -1172.0,1.0 -1173.0,1.0 -1174.0,1.0 -1175.0,1.0 -1176.0,1.0 -1177.0,1.0 -1178.0,1.0 -1179.0,1.0 -1180.0,1.0 -1181.0,1.0 -1182.0,1.0 -1183.0,1.0 -1184.0,1.0 -1185.0,1.0 -1186.0,1.0 -1187.0,1.0 -1188.0,1.0 -1189.0,1.0 -1190.0,1.0 -1191.0,1.0 -1192.0,1.0 -1193.0,1.0 -1194.0,1.0 -1195.0,1.0 -1196.0,1.0 -1197.0,1.0 -1198.0,1.0 -1199.0,1.0 -1200.0,1.0 -1201.0,1.0 -1202.0,1.0 -1203.0,1.0 -1204.0,1.0 -1205.0,1.0 -1206.0,1.0 -1207.0,1.0 -1208.0,1.0 -1209.0,1.0 -1210.0,1.0 -1211.0,1.0 -1212.0,1.0 -1213.0,1.0 -1214.0,1.0 -1215.0,1.0 -1216.0,1.0 -1217.0,1.0 -1218.0,1.0 -1219.0,1.0 -1220.0,1.0 -1221.0,1.0 -1222.0,1.0 -1223.0,1.0 -1224.0,1.0 -1225.0,1.0 -1226.0,1.0 -1227.0,1.0 -1228.0,1.0 -1229.0,1.0 -1230.0,1.0 -1231.0,1.0 -1232.0,1.0 -1233.0,1.0 -1234.0,1.0 -1235.0,1.0 -1236.0,1.0 -1237.0,1.0 -1238.0,1.0 -1239.0,1.0 -1240.0,1.0 -1241.0,1.0 -1242.0,1.0 -1243.0,1.0 -1244.0,1.0 -1245.0,1.0 -1246.0,1.0 -1247.0,1.0 -1248.0,1.0 -1249.0,1.0 -1250.0,1.0 -1251.0,1.0 -1252.0,1.0 -1253.0,1.0 -1254.0,1.0 -1255.0,1.0 -1256.0,1.0 -1257.0,1.0 -1258.0,1.0 -1259.0,1.0 -1260.0,1.0 -1261.0,1.0 -1262.0,1.0 -1263.0,1.0 -1264.0,1.0 -1265.0,1.0 -1266.0,1.0 -1267.0,1.0 -1268.0,1.0 -1269.0,1.0 -1270.0,1.0 -1271.0,1.0 -1272.0,1.0 -1273.0,1.0 -1274.0,1.0 -1275.0,1.0 -1276.0,1.0 -1277.0,1.0 -1278.0,1.0 -1279.0,1.0 -1280.0,1.0 -1281.0,1.0 -1282.0,1.0 -1283.0,1.0 -1284.0,1.0 -1285.0,1.0 -1286.0,1.0 -1287.0,1.0 -1288.0,1.0 -1289.0,1.0 -1290.0,1.0 -1291.0,1.0 -1292.0,1.0 -1293.0,1.0 -1294.0,1.0 -1295.0,1.0 -1296.0,1.0 -1297.0,1.0 -1298.0,1.0 -1299.0,1.0 -1300.0,1.0 -1301.0,1.0 -1302.0,1.0 -1303.0,1.0 -1304.0,1.0 -1305.0,1.0 -1306.0,1.0 -1307.0,1.0 -1308.0,1.0 -1309.0,1.0 -1310.0,1.0 -1311.0,1.0 -1312.0,1.0 -1313.0,1.0 -1314.0,1.0 -1315.0,1.0 -1316.0,1.0 -1317.0,1.0 -1318.0,1.0 -1319.0,1.0 -1320.0,1.0 -1321.0,1.0 -1322.0,1.0 -1323.0,1.0 -1324.0,1.0 -1325.0,1.0 -1326.0,1.0 -1327.0,1.0 -1328.0,1.0 -1329.0,1.0 -1330.0,1.0 -1331.0,1.0 -1332.0,1.0 -1333.0,1.0 -1334.0,1.0 -1335.0,1.0 -1336.0,1.0 -1337.0,1.0 -1338.0,1.0 -1339.0,1.0 -1340.0,1.0 -1341.0,1.0 -1342.0,1.0 -1343.0,1.0 -1344.0,1.0 -1345.0,1.0 -1346.0,1.0 -1347.0,1.0 -1348.0,1.0 -1349.0,1.0 -1350.0,1.0 -1351.0,1.0 -1352.0,1.0 -1353.0,1.0 -1354.0,1.0 -1355.0,1.0 -1356.0,1.0 -1357.0,1.0 -1358.0,1.0 -1359.0,1.0 -1360.0,1.0 -1361.0,1.0 -1362.0,1.0 -1363.0,1.0 -1364.0,1.0 -1365.0,1.0 -1366.0,1.0 -1367.0,1.0 -1368.0,1.0 -1369.0,1.0 -1370.0,1.0 -1371.0,1.0 -1372.0,1.0 -1373.0,1.0 -1374.0,1.0 -1375.0,1.0 -1376.0,1.0 -1377.0,1.0 -1378.0,1.0 -1379.0,1.0 -1380.0,1.0 -1381.0,1.0 -1382.0,1.0 -1383.0,1.0 -1384.0,1.0 -1385.0,1.0 -1386.0,1.0 -1387.0,1.0 -1388.0,1.0 -1389.0,1.0 -1390.0,1.0 -1391.0,1.0 -1392.0,1.0 -1393.0,1.0 -1394.0,1.0 -1395.0,1.0 -1396.0,1.0 -1397.0,1.0 -1398.0,1.0 -1399.0,1.0 -1400.0,1.0 -1401.0,1.0 -1402.0,1.0 -1403.0,1.0 -1404.0,1.0 -1405.0,1.0 -1406.0,1.0 -1407.0,1.0 -1408.0,1.0 -1409.0,1.0 -1410.0,1.0 -1411.0,1.0 -1412.0,1.0 -1413.0,1.0 -1414.0,1.0 -1415.0,1.0 -1416.0,1.0 -1417.0,1.0 -1418.0,1.0 -1419.0,1.0 -1420.0,1.0 -1421.0,1.0 -1422.0,1.0 -1423.0,1.0 -1424.0,1.0 -1425.0,1.0 -1426.0,1.0 -1427.0,1.0 -1428.0,1.0 -1429.0,1.0 -1430.0,1.0 -1431.0,1.0 -1432.0,1.0 -1433.0,1.0 -1434.0,1.0 -1435.0,1.0 -1436.0,1.0 -1437.0,1.0 -1438.0,1.0 -1439.0,1.0 -1440.0,1.0 -1441.0,1.0 -1442.0,1.0 -1443.0,1.0 -1444.0,1.0 -1445.0,1.0 -1446.0,1.0 -1447.0,1.0 -1448.0,1.0 -1449.0,1.0 -1450.0,1.0 -1451.0,1.0 -1452.0,1.0 -1453.0,1.0 -1454.0,1.0 -1455.0,1.0 -1456.0,1.0 -1457.0,1.0 -1458.0,1.0 -1459.0,1.0 -1460.0,1.0 -1461.0,1.0 -1462.0,1.0 -1463.0,1.0 -1464.0,1.0 -1465.0,1.0 -1466.0,1.0 -1467.0,1.0 -1468.0,1.0 -1469.0,1.0 -1470.0,1.0 -1471.0,1.0 -1472.0,1.0 -1473.0,1.0 -1474.0,1.0 -1475.0,1.0 -1476.0,1.0 -1477.0,1.0 -1478.0,1.0 -1479.0,1.0 -1480.0,1.0 -1481.0,1.0 -1482.0,1.0 -1483.0,1.0 -1484.0,1.0 -1485.0,1.0 -1486.0,1.0 -1487.0,1.0 -1488.0,1.0 -1489.0,1.0 -1490.0,1.0 -1491.0,1.0 -1492.0,1.0 -1493.0,1.0 -1494.0,1.0 -1495.0,1.0 -1496.0,1.0 -1497.0,1.0 -1498.0,1.0 -1499.0,1.0 -1500.0,1.0 -1501.0,1.0 -1502.0,1.0 -1503.0,1.0 -1504.0,1.0 -1505.0,1.0 -1506.0,1.0 -1507.0,1.0 -1508.0,1.0 -1509.0,1.0 -1510.0,1.0 -1511.0,1.0 -1512.0,1.0 -1513.0,1.0 -1514.0,1.0 -1515.0,1.0 -1516.0,1.0 -1517.0,1.0 -1518.0,1.0 -1519.0,1.0 -1520.0,1.0 -1521.0,1.0 -1522.0,1.0 -1523.0,1.0 -1524.0,1.0 -1525.0,1.0 -1526.0,1.0 -1527.0,1.0 -1528.0,1.0 -1529.0,1.0 -1530.0,1.0 -1531.0,1.0 -1532.0,1.0 -1533.0,1.0 -1534.0,1.0 -1535.0,1.0 -1536.0,1.0 -1537.0,1.0 -1538.0,1.0 -1539.0,1.0 -1540.0,1.0 -1541.0,1.0 -1542.0,1.0 -1543.0,1.0 -1544.0,1.0 -1545.0,1.0 -1546.0,1.0 -1547.0,1.0 -1548.0,1.0 -1549.0,1.0 -1550.0,1.0 -1551.0,1.0 -1552.0,1.0 -1553.0,1.0 -1554.0,1.0 -1555.0,1.0 -1556.0,1.0 -1557.0,1.0 -1558.0,1.0 -1559.0,1.0 -1560.0,1.0 -1561.0,1.0 -1562.0,1.0 -1563.0,1.0 -1564.0,1.0 -1565.0,1.0 -1566.0,1.0 -1567.0,1.0 -1568.0,1.0 -1569.0,1.0 -1570.0,1.0 -1571.0,1.0 -1572.0,1.0 -1573.0,1.0 -1574.0,1.0 -1575.0,1.0 -1576.0,1.0 -1577.0,1.0 -1578.0,1.0 -1579.0,1.0 -1580.0,1.0 -1581.0,1.0 -1582.0,1.0 -1583.0,1.0 -1584.0,1.0 -1585.0,1.0 -1586.0,1.0 -1587.0,1.0 -1588.0,1.0 -1589.0,1.0 -1590.0,1.0 -1591.0,1.0 -1592.0,1.0 -1593.0,1.0 -1594.0,1.0 -1595.0,1.0 -1596.0,1.0 -1597.0,1.0 -1598.0,1.0 -1599.0,1.0 -1600.0,1.0 -1601.0,1.0 -1602.0,1.0 -1603.0,1.0 -1604.0,1.0 -1605.0,1.0 -1606.0,1.0 -1607.0,1.0 -1608.0,1.0 -1609.0,1.0 -1610.0,1.0 -1611.0,1.0 -1612.0,1.0 -1613.0,1.0 -1614.0,1.0 -1615.0,1.0 -1616.0,1.0 -1617.0,1.0 -1618.0,1.0 -1619.0,1.0 -1620.0,1.0 -1621.0,1.0 -1622.0,1.0 -1623.0,1.0 -1624.0,1.0 -1625.0,1.0 -1626.0,1.0 -1627.0,1.0 -1628.0,1.0 -1629.0,1.0 -1630.0,1.0 -1631.0,1.0 -1632.0,1.0 -1633.0,1.0 -1634.0,1.0 -1635.0,1.0 -1636.0,1.0 -1637.0,1.0 -1638.0,1.0 -1639.0,1.0 -1640.0,1.0 -1641.0,1.0 -1642.0,1.0 -1643.0,1.0 -1644.0,1.0 -1645.0,1.0 -1646.0,1.0 -1647.0,1.0 -1648.0,1.0 -1649.0,1.0 -1650.0,1.0 -1651.0,1.0 -1652.0,1.0 -1653.0,1.0 -1654.0,1.0 -1655.0,1.0 -1656.0,1.0 -1657.0,1.0 -1658.0,1.0 -1659.0,1.0 -1660.0,1.0 -1661.0,1.0 -1662.0,1.0 -1663.0,1.0 -1664.0,1.0 -1665.0,1.0 -1666.0,1.0 -1667.0,1.0 -1668.0,1.0 -1669.0,1.0 -1670.0,1.0 -1671.0,1.0 -1672.0,1.0 -1673.0,1.0 -1674.0,1.0 -1675.0,1.0 -1676.0,1.0 -1677.0,1.0 -1678.0,1.0 -1679.0,1.0 -1680.0,1.0 -1681.0,1.0 -1682.0,1.0 -1683.0,1.0 -1684.0,1.0 -1685.0,1.0 -1686.0,1.0 -1687.0,1.0 -1688.0,1.0 -1689.0,1.0 -1690.0,1.0 -1691.0,1.0 -1692.0,1.0 -1693.0,1.0 -1694.0,1.0 -1695.0,1.0 -1696.0,1.0 -1697.0,1.0 -1698.0,1.0 -1699.0,1.0 -1700.0,1.0 -1701.0,1.0 -1702.0,1.0 -1703.0,1.0 -1704.0,1.0 -1705.0,1.0 -1706.0,1.0 -1707.0,1.0 -1708.0,1.0 -1709.0,1.0 -1710.0,1.0 -1711.0,1.0 -1712.0,1.0 -1713.0,1.0 -1714.0,1.0 -1715.0,1.0 -1716.0,1.0 -1717.0,1.0 -1718.0,1.0 -1719.0,1.0 -1720.0,1.0 -1721.0,1.0 -1722.0,1.0 -1723.0,1.0 -1724.0,1.0 -1725.0,1.0 -1726.0,1.0 -1727.0,1.0 -1728.0,1.0 -1729.0,1.0 -1730.0,1.0 -1731.0,1.0 -1732.0,1.0 -1733.0,1.0 -1734.0,1.0 -1735.0,1.0 -1736.0,1.0 -1737.0,1.0 -1738.0,1.0 -1739.0,1.0 -1740.0,1.0 -1741.0,1.0 -1742.0,1.0 -1743.0,1.0 -1744.0,1.0 -1745.0,1.0 -1746.0,1.0 -1747.0,1.0 -1748.0,1.0 -1749.0,1.0 -1750.0,1.0 -1751.0,1.0 -1752.0,1.0 -1753.0,1.0 -1754.0,1.0 -1755.0,1.0 -1756.0,1.0 -1757.0,1.0 -1758.0,1.0 -1759.0,1.0 -1760.0,1.0 -1761.0,1.0 -1762.0,1.0 -1763.0,1.0 -1764.0,1.0 -1765.0,1.0 -1766.0,1.0 -1767.0,1.0 -1768.0,1.0 -1769.0,1.0 -1770.0,1.0 -1771.0,1.0 -1772.0,1.0 -1773.0,1.0 -1774.0,1.0 -1775.0,1.0 -1776.0,1.0 -1777.0,1.0 -1778.0,1.0 -1779.0,1.0 -1780.0,1.0 -1781.0,1.0 -1782.0,1.0 -1783.0,1.0 -1784.0,1.0 -1785.0,1.0 -1786.0,1.0 -1787.0,1.0 -1788.0,1.0 -1789.0,1.0 -1790.0,1.0 -1791.0,1.0 -1792.0,1.0 -1793.0,1.0 -1794.0,1.0 -1795.0,1.0 -1796.0,1.0 -1797.0,1.0 -1798.0,1.0 -1799.0,1.0 -1800.0,1.0 -1801.0,1.0 -1802.0,1.0 -1803.0,1.0 -1804.0,1.0 -1805.0,1.0 -1806.0,1.0 -1807.0,1.0 -1808.0,1.0 -1809.0,1.0 -1810.0,1.0 -1811.0,1.0 -1812.0,1.0 -1813.0,1.0 -1814.0,1.0 -1815.0,1.0 -1816.0,1.0 -1817.0,1.0 -1818.0,1.0 -1819.0,1.0 -1820.0,1.0 -1821.0,1.0 -1822.0,1.0 -1823.0,1.0 -1824.0,1.0 -1825.0,1.0 -1826.0,1.0 -1827.0,1.0 -1828.0,1.0 -1829.0,1.0 -1830.0,1.0 -1831.0,1.0 -1832.0,1.0 -1833.0,1.0 -1834.0,1.0 -1835.0,1.0 -1836.0,1.0 -1837.0,1.0 -1838.0,1.0 -1839.0,1.0 -1840.0,1.0 -1841.0,1.0 -1842.0,1.0 -1843.0,1.0 -1844.0,1.0 -1845.0,1.0 -1846.0,1.0 -1847.0,1.0 -1848.0,1.0 -1849.0,1.0 -1850.0,1.0 -1851.0,1.0 -1852.0,1.0 -1853.0,1.0 -1854.0,1.0 -1855.0,1.0 -1856.0,1.0 -1857.0,1.0 -1858.0,1.0 -1859.0,1.0 -1860.0,1.0 -1861.0,1.0 -1862.0,1.0 -1863.0,1.0 -1864.0,1.0 -1865.0,1.0 -1866.0,1.0 -1867.0,1.0 -1868.0,1.0 -1869.0,1.0 -1870.0,1.0 -1871.0,1.0 -1872.0,1.0 -1873.0,1.0 -1874.0,1.0 -1875.0,1.0 -1876.0,1.0 -1877.0,1.0 -1878.0,1.0 -1879.0,1.0 -1880.0,1.0 -1881.0,1.0 -1882.0,1.0 -1883.0,1.0 -1884.0,1.0 -1885.0,1.0 -1886.0,1.0 -1887.0,1.0 -1888.0,1.0 -1889.0,1.0 -1890.0,1.0 -1891.0,1.0 -1892.0,1.0 -1893.0,1.0 -1894.0,1.0 -1895.0,1.0 -1896.0,1.0 -1897.0,1.0 -1898.0,1.0 -1899.0,1.0 -1900.0,1.0 -1901.0,1.0 -1902.0,1.0 -1903.0,1.0 -1904.0,1.0 -1905.0,1.0 -1906.0,1.0 -1907.0,1.0 -1908.0,1.0 -1909.0,1.0 -1910.0,1.0 -1911.0,1.0 -1912.0,1.0 -1913.0,1.0 -1914.0,1.0 -1915.0,1.0 -1916.0,1.0 -1917.0,1.0 -1918.0,1.0 -1919.0,1.0 -1920.0,1.0 -1921.0,1.0 -1922.0,1.0 -1923.0,1.0 -1924.0,1.0 -1925.0,1.0 -1926.0,1.0 -1927.0,1.0 -1928.0,1.0 -1929.0,1.0 -1930.0,1.0 -1931.0,1.0 -1932.0,1.0 -1933.0,1.0 -1934.0,1.0 -1935.0,1.0 -1936.0,1.0 -1937.0,1.0 -1938.0,1.0 -1939.0,1.0 -1940.0,1.0 -1941.0,1.0 -1942.0,1.0 -1943.0,1.0 -1944.0,1.0 -1945.0,1.0 -1946.0,1.0 -1947.0,1.0 -1948.0,1.0 -1949.0,1.0 -1950.0,1.0 -1951.0,1.0 -1952.0,1.0 -1953.0,1.0 -1954.0,1.0 -1955.0,1.0 -1956.0,1.0 -1957.0,1.0 -1958.0,1.0 -1959.0,1.0 -1960.0,1.0 -1961.0,1.0 -1962.0,1.0 -1963.0,1.0 -1964.0,1.0 -1965.0,1.0 -1966.0,1.0 -1967.0,1.0 -1968.0,1.0 -1969.0,1.0 -1970.0,1.0 -1971.0,1.0 -1972.0,1.0 -1973.0,1.0 -1974.0,1.0 -1975.0,1.0 -1976.0,1.0 -1977.0,1.0 -1978.0,1.0 -1979.0,1.0 -1980.0,1.0 -1981.0,1.0 -1982.0,1.0 -1983.0,1.0 -1984.0,1.0 -1985.0,1.0 -1986.0,1.0 -1987.0,1.0 -1988.0,1.0 -1989.0,1.0 -1990.0,1.0 -1991.0,1.0 -1992.0,1.0 -1993.0,1.0 -1994.0,1.0 -1995.0,1.0 -1996.0,1.0 -1997.0,1.0 -1998.0,1.0 -1999.0,1.0 -2000.0,1.0 -2001.0,1.0 -2002.0,1.0 -2003.0,1.0 -2004.0,1.0 -2005.0,1.0 -2006.0,1.0 -2007.0,1.0 -2008.0,1.0 -2009.0,1.0 -2010.0,1.0 -2011.0,1.0 -2012.0,1.0 -2013.0,1.0 -2014.0,1.0 -2015.0,1.0 -2016.0,1.0 -2017.0,1.0 -2018.0,1.0 -2019.0,1.0 -2020.0,1.0 -2021.0,1.0 -2022.0,1.0 -2023.0,1.0 -2024.0,1.0 -2025.0,1.0 -2026.0,1.0 -2027.0,1.0 -2028.0,1.0 -2029.0,1.0 -2030.0,1.0 -2031.0,1.0 -2032.0,1.0 -2033.0,1.0 -2034.0,1.0 -2035.0,1.0 -2036.0,1.0 -2037.0,1.0 -2038.0,1.0 -2039.0,1.0 -2040.0,1.0 -2041.0,1.0 -2042.0,1.0 -2043.0,1.0 -2044.0,1.0 -2045.0,1.0 -2046.0,1.0 -2047.0,1.0 -2048.0,1.0 -2049.0,1.0 -2050.0,1.0 -2051.0,1.0 -2052.0,1.0 -2053.0,1.0 -2054.0,1.0 -2055.0,1.0 -2056.0,1.0 -2057.0,1.0 -2058.0,1.0 -2059.0,1.0 -2060.0,1.0 -2061.0,1.0 -2062.0,1.0 -2063.0,1.0 -2064.0,1.0 -2065.0,1.0 -2066.0,1.0 -2067.0,1.0 -2068.0,1.0 -2069.0,1.0 -2070.0,1.0 -2071.0,1.0 -2072.0,1.0 -2073.0,1.0 -2074.0,1.0 -2075.0,1.0 -2076.0,1.0 -2077.0,1.0 -2078.0,1.0 -2079.0,1.0 -2080.0,1.0 -2081.0,1.0 -2082.0,1.0 -2083.0,1.0 -2084.0,1.0 -2085.0,1.0 -2086.0,1.0 -2087.0,1.0 -2088.0,1.0 -2089.0,1.0 -2090.0,1.0 -2091.0,1.0 -2092.0,1.0 -2093.0,1.0 -2094.0,1.0 -2095.0,1.0 -2096.0,1.0 -2097.0,1.0 -2098.0,1.0 -2099.0,1.0 -2100.0,1.0 -2101.0,1.0 -2102.0,1.0 -2103.0,1.0 -2104.0,1.0 -2105.0,1.0 -2106.0,1.0 -2107.0,1.0 -2108.0,1.0 -2109.0,1.0 -2110.0,1.0 -2111.0,1.0 -2112.0,1.0 -2113.0,1.0 -2114.0,1.0 -2115.0,1.0 -2116.0,1.0 -2117.0,1.0 -2118.0,1.0 -2119.0,1.0 -2120.0,1.0 -2121.0,1.0 -2122.0,1.0 -2123.0,1.0 -2124.0,1.0 -2125.0,1.0 -2126.0,1.0 -2127.0,1.0 -2128.0,1.0 -2129.0,1.0 -2130.0,1.0 -2131.0,1.0 -2132.0,1.0 -2133.0,1.0 -2134.0,1.0 -2135.0,1.0 -2136.0,1.0 -2137.0,1.0 -2138.0,1.0 -2139.0,1.0 -2140.0,1.0 -2141.0,1.0 -2142.0,1.0 -2143.0,1.0 -2144.0,1.0 -2145.0,1.0 -2146.0,1.0 -2147.0,1.0 -2148.0,1.0 -2149.0,1.0 -2150.0,1.0 -2151.0,1.0 -2152.0,1.0 -2153.0,1.0 -2154.0,1.0 -2155.0,1.0 -2156.0,1.0 -2157.0,1.0 -2158.0,1.0 -2159.0,1.0 -2160.0,1.0 -2161.0,1.0 -2162.0,1.0 -2163.0,1.0 -2164.0,1.0 -2165.0,1.0 -2166.0,1.0 -2167.0,1.0 -2168.0,1.0 -2169.0,1.0 -2170.0,1.0 -2171.0,1.0 -2172.0,1.0 -2173.0,1.0 -2174.0,1.0 -2175.0,1.0 -2176.0,1.0 -2177.0,1.0 -2178.0,1.0 -2179.0,1.0 -2180.0,1.0 -2181.0,1.0 -2182.0,1.0 -2183.0,1.0 -2184.0,1.0 -2185.0,1.0 -2186.0,1.0 -2187.0,1.0 -2188.0,1.0 -2189.0,1.0 -2190.0,1.0 -2191.0,1.0 -2192.0,1.0 -2193.0,1.0 -2194.0,1.0 -2195.0,1.0 -2196.0,1.0 -2197.0,1.0 -2198.0,1.0 -2199.0,1.0 -2200.0,1.0 -2201.0,1.0 -2202.0,1.0 -2203.0,1.0 -2204.0,1.0 -2205.0,1.0 -2206.0,1.0 -2207.0,1.0 -2208.0,1.0 -2209.0,1.0 -2210.0,1.0 -2211.0,1.0 -2212.0,1.0 -2213.0,1.0 -2214.0,1.0 -2215.0,1.0 -2216.0,1.0 -2217.0,1.0 -2218.0,1.0 -2219.0,1.0 -2220.0,1.0 -2221.0,1.0 -2222.0,1.0 -2223.0,1.0 -2224.0,1.0 -2225.0,1.0 -2226.0,1.0 -2227.0,1.0 -2228.0,1.0 -2229.0,1.0 -2230.0,1.0 -2231.0,1.0 -2232.0,1.0 -2233.0,1.0 -2234.0,1.0 -2235.0,1.0 -2236.0,1.0 -2237.0,1.0 -2238.0,1.0 -2239.0,1.0 -2240.0,1.0 -2241.0,1.0 -2242.0,1.0 -2243.0,1.0 -2244.0,1.0 -2245.0,1.0 -2246.0,1.0 -2247.0,1.0 -2248.0,1.0 -2249.0,1.0 -2250.0,1.0 -2251.0,1.0 -2252.0,1.0 -2253.0,1.0 -2254.0,1.0 -2255.0,1.0 -2256.0,1.0 -2257.0,1.0 -2258.0,1.0 -2259.0,1.0 -2260.0,1.0 -2261.0,1.0 -2262.0,1.0 -2263.0,1.0 -2264.0,1.0 -2265.0,1.0 -2266.0,1.0 -2267.0,1.0 -2268.0,1.0 -2269.0,1.0 -2270.0,1.0 -2271.0,1.0 -2272.0,1.0 -2273.0,1.0 -2274.0,1.0 -2275.0,1.0 -2276.0,1.0 -2277.0,1.0 -2278.0,1.0 -2279.0,1.0 -2280.0,1.0 -2281.0,1.0 -2282.0,1.0 -2283.0,1.0 -2284.0,1.0 -2285.0,1.0 -2286.0,1.0 -2287.0,1.0 -2288.0,1.0 -2289.0,1.0 -2290.0,1.0 -2291.0,1.0 -2292.0,1.0 -2293.0,1.0 -2294.0,1.0 -2295.0,1.0 -2296.0,1.0 -2297.0,1.0 -2298.0,1.0 -2299.0,1.0 -2300.0,1.0 -2301.0,1.0 -2302.0,1.0 -2303.0,1.0 -2304.0,1.0 -2305.0,1.0 -2306.0,1.0 -2307.0,1.0 -2308.0,1.0 -2309.0,1.0 -2310.0,1.0 -2311.0,1.0 -2312.0,1.0 -2313.0,1.0 -2314.0,1.0 -2315.0,1.0 -2316.0,1.0 -2317.0,1.0 -2318.0,1.0 -2319.0,1.0 -2320.0,1.0 -2321.0,1.0 -2322.0,1.0 -2323.0,1.0 -2324.0,1.0 -2325.0,1.0 -2326.0,1.0 -2327.0,1.0 -2328.0,1.0 -2329.0,1.0 -2330.0,1.0 -2331.0,1.0 -2332.0,1.0 -2333.0,1.0 -2334.0,1.0 -2335.0,1.0 -2336.0,1.0 -2337.0,1.0 -2338.0,1.0 -2339.0,1.0 -2340.0,1.0 -2341.0,1.0 -2342.0,1.0 -2343.0,1.0 -2344.0,1.0 -2345.0,1.0 -2346.0,1.0 -2347.0,1.0 -2348.0,1.0 -2349.0,1.0 -2350.0,1.0 -2351.0,1.0 -2352.0,1.0 -2353.0,1.0 -2354.0,1.0 -2355.0,1.0 -2356.0,1.0 -2357.0,1.0 -2358.0,1.0 -2359.0,1.0 -2360.0,1.0 -2361.0,1.0 -2362.0,1.0 -2363.0,1.0 -2364.0,1.0 -2365.0,1.0 -2366.0,1.0 -2367.0,1.0 -2368.0,1.0 -2369.0,1.0 -2370.0,1.0 -2371.0,1.0 -2372.0,1.0 -2373.0,1.0 -2374.0,1.0 -2375.0,1.0 -2376.0,1.0 -2377.0,1.0 -2378.0,1.0 -2379.0,1.0 -2380.0,1.0 -2381.0,1.0 -2382.0,1.0 -2383.0,1.0 -2384.0,1.0 -2385.0,1.0 -2386.0,1.0 -2387.0,1.0 -2388.0,1.0 -2389.0,1.0 -2390.0,1.0 -2391.0,1.0 -2392.0,1.0 -2393.0,1.0 -2394.0,1.0 -2395.0,1.0 -2396.0,1.0 -2397.0,1.0 -2398.0,1.0 -2399.0,1.0 -2400.0,1.0 -2401.0,1.0 -2402.0,1.0 -2403.0,1.0 -2404.0,1.0 -2405.0,1.0 -2406.0,1.0 -2407.0,1.0 -2408.0,1.0 -2409.0,1.0 -2410.0,1.0 -2411.0,1.0 -2412.0,1.0 -2413.0,1.0 -2414.0,1.0 -2415.0,1.0 -2416.0,1.0 -2417.0,1.0 -2418.0,1.0 -2419.0,1.0 -2420.0,1.0 -2421.0,1.0 -2422.0,1.0 -2423.0,1.0 -2424.0,1.0 -2425.0,1.0 -2426.0,1.0 -2427.0,1.0 -2428.0,1.0 -2429.0,1.0 -2430.0,1.0 -2431.0,1.0 -2432.0,1.0 -2433.0,1.0 -2434.0,1.0 -2435.0,1.0 -2436.0,1.0 -2437.0,1.0 -2438.0,1.0 -2439.0,1.0 -2440.0,1.0 -2441.0,1.0 -2442.0,1.0 -2443.0,1.0 -2444.0,1.0 -2445.0,1.0 -2446.0,1.0 -2447.0,1.0 -2448.0,1.0 -2449.0,1.0 -2450.0,1.0 -2451.0,1.0 -2452.0,1.0 -2453.0,1.0 -2454.0,1.0 -2455.0,1.0 -2456.0,1.0 -2457.0,1.0 -2458.0,1.0 -2459.0,1.0 -2460.0,1.0 -2461.0,1.0 -2462.0,1.0 -2463.0,1.0 -2464.0,1.0 -2465.0,1.0 -2466.0,1.0 -2467.0,1.0 -2468.0,1.0 -2469.0,1.0 -2470.0,1.0 -2471.0,1.0 -2472.0,1.0 -2473.0,1.0 -2474.0,1.0 -2475.0,1.0 -2476.0,1.0 -2477.0,1.0 -2478.0,1.0 -2479.0,1.0 -2480.0,1.0 -2481.0,1.0 -2482.0,1.0 -2483.0,1.0 -2484.0,1.0 -2485.0,1.0 -2486.0,1.0 -2487.0,1.0 -2488.0,1.0 -2489.0,1.0 -2490.0,1.0 -2491.0,1.0 -2492.0,1.0 -2493.0,1.0 -2494.0,1.0 -2495.0,1.0 -2496.0,1.0 -2497.0,1.0 -2498.0,1.0 -2499.0,1.0 -2500.0,1.0 -2501.0,1.0 -2502.0,1.0 -2503.0,1.0 -2504.0,1.0 -2505.0,1.0 -2506.0,1.0 -2507.0,1.0 -2508.0,1.0 -2509.0,1.0 -2510.0,1.0 -2511.0,1.0 -2512.0,1.0 -2513.0,1.0 -2514.0,1.0 -2515.0,1.0 -2516.0,1.0 -2517.0,1.0 -2518.0,1.0 -2519.0,1.0 -2520.0,1.0 -2521.0,1.0 -2522.0,1.0 -2523.0,1.0 -2524.0,1.0 -2525.0,1.0 -2526.0,1.0 -2527.0,1.0 -2528.0,1.0 -2529.0,1.0 -2530.0,1.0 -2531.0,1.0 -2532.0,1.0 -2533.0,1.0 -2534.0,1.0 -2535.0,1.0 -2536.0,1.0 -2537.0,1.0 -2538.0,1.0 -2539.0,1.0 -2540.0,1.0 -2541.0,1.0 -2542.0,1.0 -2543.0,1.0 -2544.0,1.0 -2545.0,1.0 -2546.0,1.0 -2547.0,1.0 -2548.0,1.0 -2549.0,1.0 -2550.0,1.0 -2551.0,1.0 -2552.0,1.0 -2553.0,1.0 -2554.0,1.0 -2555.0,1.0 -2556.0,1.0 -2557.0,1.0 -2558.0,1.0 -2559.0,1.0 -2560.0,1.0 -2561.0,1.0 -2562.0,1.0 -2563.0,1.0 -2564.0,1.0 -2565.0,1.0 -2566.0,1.0 -2567.0,1.0 -2568.0,1.0 -2569.0,1.0 -2570.0,1.0 -2571.0,1.0 -2572.0,1.0 -2573.0,1.0 -2574.0,1.0 -2575.0,1.0 -2576.0,1.0 -2577.0,1.0 -2578.0,1.0 -2579.0,1.0 -2580.0,1.0 -2581.0,1.0 -2582.0,1.0 -2583.0,1.0 -2584.0,1.0 -2585.0,1.0 -2586.0,1.0 -2587.0,1.0 -2588.0,1.0 -2589.0,1.0 -2590.0,1.0 -2591.0,1.0 -2592.0,1.0 -2593.0,1.0 -2594.0,1.0 -2595.0,1.0 -2596.0,1.0 -2597.0,1.0 -2598.0,1.0 -2599.0,1.0 -2600.0,1.0 -2601.0,1.0 -2602.0,1.0 -2603.0,1.0 -2604.0,1.0 -2605.0,1.0 -2606.0,1.0 -2607.0,1.0 -2608.0,1.0 -2609.0,1.0 -2610.0,1.0 -2611.0,1.0 -2612.0,1.0 -2613.0,1.0 -2614.0,1.0 -2615.0,1.0 -2616.0,1.0 -2617.0,1.0 -2618.0,1.0 -2619.0,1.0 -2620.0,1.0 -2621.0,1.0 -2622.0,1.0 -2623.0,1.0 -2624.0,1.0 -2625.0,1.0 -2626.0,1.0 -2627.0,1.0 -2628.0,1.0 -2629.0,1.0 -2630.0,1.0 -2631.0,1.0 -2632.0,1.0 -2633.0,1.0 -2634.0,1.0 -2635.0,1.0 -2636.0,1.0 -2637.0,1.0 -2638.0,1.0 -2639.0,1.0 -2640.0,1.0 -2641.0,1.0 -2642.0,1.0 -2643.0,1.0 -2644.0,1.0 -2645.0,1.0 -2646.0,1.0 -2647.0,1.0 -2648.0,1.0 -2649.0,1.0 -2650.0,1.0 -2651.0,1.0 -2652.0,1.0 -2653.0,1.0 -2654.0,1.0 -2655.0,1.0 -2656.0,1.0 -2657.0,1.0 -2658.0,1.0 -2659.0,1.0 -2660.0,1.0 -2661.0,1.0 -2662.0,1.0 -2663.0,1.0 -2664.0,1.0 -2665.0,1.0 -2666.0,1.0 -2667.0,1.0 -2668.0,1.0 -2669.0,1.0 -2670.0,1.0 -2671.0,1.0 -2672.0,1.0 -2673.0,1.0 -2674.0,1.0 -2675.0,1.0 -2676.0,1.0 -2677.0,1.0 -2678.0,1.0 -2679.0,1.0 -2680.0,1.0 -2681.0,1.0 -2682.0,1.0 -2683.0,1.0 -2684.0,1.0 -2685.0,1.0 -2686.0,1.0 -2687.0,1.0 -2688.0,1.0 -2689.0,1.0 -2690.0,1.0 -2691.0,1.0 -2692.0,1.0 -2693.0,1.0 -2694.0,1.0 -2695.0,1.0 -2696.0,1.0 -2697.0,1.0 -2698.0,1.0 -2699.0,1.0 -2700.0,1.0 -2701.0,1.0 -2702.0,1.0 -2703.0,1.0 -2704.0,1.0 -2705.0,1.0 -2706.0,1.0 -2707.0,1.0 -2708.0,1.0 -2709.0,1.0 -2710.0,1.0 -2711.0,1.0 -2712.0,1.0 -2713.0,1.0 -2714.0,1.0 -2715.0,1.0 -2716.0,1.0 -2717.0,1.0 -2718.0,1.0 -2719.0,1.0 -2720.0,1.0 -2721.0,1.0 -2722.0,1.0 -2723.0,1.0 -2724.0,1.0 -2725.0,1.0 -2726.0,1.0 -2727.0,1.0 -2728.0,1.0 -2729.0,1.0 -2730.0,1.0 -2731.0,1.0 -2732.0,1.0 -2733.0,1.0 -2734.0,1.0 -2735.0,1.0 -2736.0,1.0 -2737.0,1.0 -2738.0,1.0 -2739.0,1.0 -2740.0,1.0 -2741.0,1.0 -2742.0,1.0 -2743.0,1.0 -2744.0,1.0 -2745.0,1.0 -2746.0,1.0 -2747.0,1.0 -2748.0,1.0 -2749.0,1.0 -2750.0,1.0 -2751.0,1.0 -2752.0,1.0 -2753.0,1.0 -2754.0,1.0 -2755.0,1.0 -2756.0,1.0 -2757.0,1.0 -2758.0,1.0 -2759.0,1.0 -2760.0,1.0 -2761.0,1.0 -2762.0,1.0 -2763.0,1.0 -2764.0,1.0 -2765.0,1.0 -2766.0,1.0 -2767.0,1.0 -2768.0,1.0 -2769.0,1.0 -2770.0,1.0 -2771.0,1.0 -2772.0,1.0 -2773.0,1.0 -2774.0,1.0 -2775.0,1.0 -2776.0,1.0 -2777.0,1.0 -2778.0,1.0 -2779.0,1.0 -2780.0,1.0 -2781.0,1.0 -2782.0,1.0 -2783.0,1.0 -2784.0,1.0 -2785.0,1.0 -2786.0,1.0 -2787.0,1.0 -2788.0,1.0 -2789.0,1.0 -2790.0,1.0 -2791.0,1.0 -2792.0,1.0 -2793.0,1.0 -2794.0,1.0 -2795.0,1.0 -2796.0,1.0 -2797.0,1.0 -2798.0,1.0 -2799.0,1.0 -2800.0,1.0 -2801.0,1.0 -2802.0,1.0 -2803.0,1.0 -2804.0,1.0 -2805.0,1.0 -2806.0,1.0 -2807.0,1.0 -2808.0,1.0 -2809.0,1.0 -2810.0,1.0 -2811.0,1.0 -2812.0,1.0 -2813.0,1.0 -2814.0,1.0 -2815.0,1.0 -2816.0,1.0 -2817.0,1.0 -2818.0,1.0 -2819.0,1.0 -2820.0,1.0 -2821.0,1.0 -2822.0,1.0 -2823.0,1.0 -2824.0,1.0 -2825.0,1.0 -2826.0,1.0 -2827.0,1.0 -2828.0,1.0 -2829.0,1.0 -2830.0,1.0 -2831.0,1.0 -2832.0,1.0 -2833.0,1.0 -2834.0,1.0 -2835.0,1.0 -2836.0,1.0 -2837.0,1.0 -2838.0,1.0 -2839.0,1.0 -2840.0,1.0284080674821552 -2841.0,1.0784080674821552 -2842.0,1.1284080674821553 -2843.0,1.1784080674821553 -2844.0,1.2284080674821554 -2845.0,1.2784080674821552 -2846.0,1.3284080674821552 -2847.0,1.3784080674821553 -2848.0,1.4284080674821553 -2849.0,1.4784080674821554 -2850.0,1.5284080674821552 -2851.0,1.5784080674821555 -2852.0,1.6284080674821553 -2853.0,1.6784080674821553 -2854.0,1.7284080674821554 -2855.0,1.7784080674821552 -2856.0,1.8284080674821555 -2857.0,1.8784080674821553 -2858.0,1.9284080674821553 -2859.0,1.9784080674821554 -2860.0,2.0284080674821556 -2861.0,2.0784080674821555 -2862.0,2.1284080674821553 -2863.0,2.178408067482155 -2864.0,2.2284080674821554 -2865.0,2.2784080674821556 -2866.0,2.3284080674821555 -2867.0,2.3784080674821553 -2868.0,2.428408067482155 -2869.0,2.4784080674821554 -2870.0,2.5284080674821556 -2871.0,2.5784080674821555 -2872.0,2.6284080674821553 -2873.0,2.678408067482155 -2874.0,2.7284080674821554 -2875.0,2.7784080674821556 -2876.0,2.8284080674821555 -2877.0,2.8784080674821553 -2878.0,2.928408067482155 -2879.0,2.9784080674821554 -2880.0,3.028408067482155 -2881.0,3.0784080674821555 -2882.0,3.1284080674821553 -2883.0,3.1784080674821555 -2884.0,3.2284080674821554 -2885.0,3.278408067482155 -2886.0,3.3284080674821555 -2887.0,3.3784080674821553 -2888.0,3.4284080674821555 -2889.0,3.4784080674821554 -2890.0,3.5284080674821556 -2891.0,3.5784080674821555 -2892.0,3.6284080674821553 -2893.0,3.6784080674821555 -2894.0,3.7284080674821554 -2895.0,3.7784080674821556 -2896.0,3.8284080674821555 -2897.0,3.8784080674821553 -2898.0,3.9284080674821555 -2899.0,3.9784080674821554 -2900.0,4.028408067482156 -2901.0,4.0784080674821555 -2902.0,4.128408067482155 -2903.0,4.178408067482156 -2904.0,4.228408067482155 -2905.0,4.278408067482156 -2906.0,4.3284080674821555 -2907.0,4.378408067482155 -2908.0,4.428408067482156 -2909.0,4.478408067482155 -2910.0,4.528408067482156 -2911.0,4.5784080674821555 -2912.0,4.628408067482155 -2913.0,4.678408067482156 -2914.0,4.728408067482155 -2915.0,4.778408067482156 -2916.0,4.8284080674821555 -2917.0,4.878408067482155 -2918.0,4.928408067482156 -2919.0,4.978408067482155 -2920.0,5.028408067482156 -2921.0,5.0784080674821555 -2922.0,5.128408067482155 -2923.0,5.178408067482155 -2924.0,5.228408067482156 -2925.0,5.278408067482156 -2926.0,5.3284080674821555 -2927.0,5.378408067482155 -2928.0,5.428408067482155 -2929.0,5.478408067482156 -2930.0,5.528408067482156 -2931.0,5.5784080674821555 -2932.0,5.628408067482155 -2933.0,5.678408067482155 -2934.0,5.728408067482156 -2935.0,5.778408067482156 -2936.0,5.8284080674821555 -2937.0,5.878408067482155 -2938.0,5.928408067482156 -2939.0,5.978408067482156 -2940.0,5.971591932517844 -2941.0,5.9215919325178445 -2942.0,5.871591932517845 -2943.0,5.821591932517845 -2944.0,5.771591932517845 -2945.0,5.721591932517844 -2946.0,5.6715919325178445 -2947.0,5.621591932517845 -2948.0,5.571591932517845 -2949.0,5.521591932517845 -2950.0,5.471591932517844 -2951.0,5.4215919325178445 -2952.0,5.371591932517845 -2953.0,5.321591932517845 -2954.0,5.271591932517845 -2955.0,5.221591932517844 -2956.0,5.1715919325178445 -2957.0,5.121591932517845 -2958.0,5.071591932517845 -2959.0,5.021591932517845 -2960.0,4.971591932517844 -2961.0,4.9215919325178445 -2962.0,4.871591932517845 -2963.0,4.821591932517845 -2964.0,4.771591932517845 -2965.0,4.721591932517844 -2966.0,4.6715919325178445 -2967.0,4.621591932517845 -2968.0,4.571591932517845 -2969.0,4.521591932517845 -2970.0,4.471591932517844 -2971.0,4.4215919325178445 -2972.0,4.371591932517845 -2973.0,4.321591932517845 -2974.0,4.271591932517845 -2975.0,4.221591932517844 -2976.0,4.1715919325178445 -2977.0,4.121591932517845 -2978.0,4.071591932517845 -2979.0,4.021591932517845 -2980.0,3.971591932517845 -2981.0,3.9215919325178445 -2982.0,3.8715919325178447 -2983.0,3.8215919325178445 -2984.0,3.7715919325178446 -2985.0,3.721591932517845 -2986.0,3.6715919325178445 -2987.0,3.6215919325178447 -2988.0,3.5715919325178445 -2989.0,3.5215919325178446 -2990.0,3.4715919325178444 -2991.0,3.4215919325178445 -2992.0,3.3715919325178447 -2993.0,3.3215919325178445 -2994.0,3.2715919325178446 -2995.0,3.2215919325178444 -2996.0,3.1715919325178445 -2997.0,3.1215919325178447 -2998.0,3.0715919325178445 -2999.0,3.0215919325178446 -3000.0,2.9715919325178444 -3001.0,2.9215919325178445 -3002.0,2.8715919325178447 -3003.0,2.8215919325178445 -3004.0,2.7715919325178446 -3005.0,2.7215919325178444 -3006.0,2.6715919325178445 -3007.0,2.6215919325178447 -3008.0,2.5715919325178445 -3009.0,2.5215919325178446 -3010.0,2.4715919325178444 -3011.0,2.4215919325178445 -3012.0,2.3715919325178447 -3013.0,2.3215919325178445 -3014.0,2.2715919325178446 -3015.0,2.2215919325178444 -3016.0,2.1715919325178445 -3017.0,2.1215919325178447 -3018.0,2.0715919325178445 -3019.0,2.0215919325178446 -3020.0,1.9715919325178444 -3021.0,1.9215919325178445 -3022.0,1.8715919325178447 -3023.0,1.821591932517845 -3024.0,1.7715919325178442 -3025.0,1.7215919325178444 -3026.0,1.6715919325178445 -3027.0,1.6215919325178447 -3028.0,1.571591932517845 -3029.0,1.5215919325178442 -3030.0,1.4715919325178444 -3031.0,1.4215919325178445 -3032.0,1.3715919325178447 -3033.0,1.321591932517845 -3034.0,1.2715919325178442 -3035.0,1.2215919325178444 -3036.0,1.1715919325178445 -3037.0,1.1215919325178447 -3038.0,1.071591932517844 -3039.0,1.0215919325178442 -3040.0,0.9998037832749047 -3041.0,0.9994585229095966 -3042.0,0.9991133817724028 -3043.0,0.9987683598221506 -3044.0,0.9984234570176814 -3045.0,0.9980786733178509 -3046.0,0.9977340086815287 -3047.0,0.9973894630675989 -3048.0,0.9970450364349599 -3049.0,0.9967007287425238 -3050.0,0.9963565399492175 -3051.0,0.9960124700139815 -3052.0,0.995668518895771 -3053.0,0.995324686553555 -3054.0,0.9949809729463169 -3055.0,0.9946373780330542 -3056.0,0.9942939017727784 -3057.0,0.9939505441245154 -3058.0,0.9936073050473051 -3059.0,0.9932641845002016 -3060.0,0.992921182442273 -3061.0,0.9925782988326018 -3062.0,0.9922355336302845 -3063.0,0.9918928867944315 -3064.0,0.9915503582841678 -3065.0,0.9912079480586321 -3066.0,0.9908656560769774 -3067.0,0.9905234822983707 -3068.0,0.9901814266819932 -3069.0,0.9898394891870402 -3070.0,0.989497669772721 -3071.0,0.989155968398259 -3072.0,0.9888143850228919 -3073.0,0.988472919605871 -3074.0,0.9881315721064623 -3075.0,0.9877903424839453 -3076.0,0.9874492306976138 -3077.0,0.9871082367067757 -3078.0,0.986767360470753 -3079.0,0.9864266019488814 -3080.0,0.9860859611005112 -3081.0,0.9857454378850062 -3082.0,0.9854050322617447 -3083.0,0.9850647441901185 -3084.0,0.9847245736295338 -3085.0,0.984384520539411 -3086.0,0.9840445848791838 -3087.0,0.9837047666083006 -3088.0,0.9833650656862236 -3089.0,0.983025482072429 -3090.0,0.9826860157264068 -3091.0,0.9823466666076611 -3092.0,0.9820074346757102 -3093.0,0.9816683198900861 -3094.0,0.9813293222103349 -3095.0,0.9809904415960166 -3096.0,0.9806516780067053 -3097.0,0.9803130314019889 -3098.0,0.9799745017414693 -3099.0,0.9796360889847625 -3100.0,0.9792977930914983 -3101.0,0.9789596140213205 -3102.0,0.9786215517338867 -3103.0,0.9782836061888684 -3104.0,0.9779457773459515 -3105.0,0.9776080651648352 -3106.0,0.9772704696052331 -3107.0,0.9769329906268724 -3108.0,0.9765956281894944 -3109.0,0.9762583822528541 -3110.0,0.9759212527767206 -3111.0,0.9755842397208768 -3112.0,0.9752473430451195 -3113.0,0.9749105627092594 -3114.0,0.9745738986731209 -3115.0,0.9742373508965427 -3116.0,0.9739009193393771 -3117.0,0.9735646039614899 -3118.0,0.9732284047227615 -3119.0,0.9728923215830856 -3120.0,0.97255635450237 -3121.0,0.9722205034405363 -3122.0,0.9718847683575199 -3123.0,0.97154914921327 -3124.0,0.9712136459677496 -3125.0,0.9708782585809359 -3126.0,0.9705429870128194 -3127.0,0.9702078312234047 -3128.0,0.9698727911727102 -3129.0,0.9695378668207679 -3130.0,0.9692030581276241 -3131.0,0.9688683650533382 -3132.0,0.9685337875579839 -3133.0,0.9681993256016486 -3134.0,0.9678649791444334 -3135.0,0.9675307481464532 -3136.0,0.9671966325678366 -3137.0,0.9668626323687262 -3138.0,0.9665287475092781 -3139.0,0.9661949779496624 -3140.0,0.9658613236500625 -3141.0,0.9655277845706762 -3142.0,0.9651943606717147 -3143.0,0.9648610519134028 -3144.0,0.9645278582559793 -3145.0,0.9641947796596966 -3146.0,0.9638618160848208 -3147.0,0.963528967491632 -3148.0,0.9631962338404234 -3149.0,0.9628636150915026 -3150.0,0.9625311112051905 -3151.0,0.9621987221418219 -3152.0,0.9618664478617451 -3153.0,0.9615342883253223 -3154.0,0.9612022434929292 -3155.0,0.9608703133249553 -3156.0,0.9605384977818038 -3157.0,0.9602067968238914 -3158.0,0.9598752104116487 -3159.0,0.9595437385055199 -3160.0,0.9592123810659627 -3161.0,0.9588811380534487 -3162.0,0.9585500094284628 -3163.0,0.958218995151504 -3164.0,0.9578880951830847 -3165.0,0.9575573094837307 -3166.0,0.957226638013982 -3167.0,0.9568960807343918 -3168.0,0.9565656376055269 -3169.0,0.956235308587968 -3170.0,0.9559050936423091 -3171.0,0.9555749927291581 -3172.0,0.9552450058091364 -3173.0,0.9549151328428789 -3174.0,0.954585373791034 -3175.0,0.9542557286142641 -3176.0,0.9539261972732448 -3177.0,0.9535967797286654 -3178.0,0.9532674759412288 -3179.0,0.9529382858716516 -3180.0,0.9526092094806637 -3181.0,0.9522802467290087 -3182.0,0.9519513975774437 -3183.0,0.9516226619867395 -3184.0,0.9512940399176804 -3185.0,0.9509655313310639 -3186.0,0.9506371361877014 -3187.0,0.950308854448418 -3188.0,0.9499806860740518 -3189.0,0.9496526310254549 -3190.0,0.9493246892634927 -3191.0,0.9489968607490441 -3192.0,0.9486691454430014 -3193.0,0.9483415433062709 -3194.0,0.9480140542997717 -3195.0,0.9476866783844369 -3196.0,0.9473594155212129 -3197.0,0.9470322656710597 -3198.0,0.9467052287949508 -3199.0,0.9463783048538728 -3200.0,0.9460514938088262 -3201.0,0.945724795620825 -3202.0,0.9453982102508962 -3203.0,0.9450717376600807 -3204.0,0.9447453778094327 -3205.0,0.9444191306600198 -3206.0,0.9440929961729231 -3207.0,0.9437669743092372 -3208.0,0.94344106503007 -3209.0,0.9431152682965429 -3210.0,0.9427895840697907 -3211.0,0.9424640123109618 -3212.0,0.9421385529812177 -3213.0,0.9418132060417336 -3214.0,0.9414879714536978 -3215.0,0.9411628491783123 -3216.0,0.9408378391767924 -3217.0,0.9405129414103668 -3218.0,0.9401881558402775 -3219.0,0.93986348242778 -3220.0,0.9395389211341431 -3221.0,0.9392144719206489 -3222.0,0.9388901347485932 -3223.0,0.9385659095792848 -3224.0,0.9382417963740459 -3225.0,0.9379177950942124 -3226.0,0.9375939057011332 -3227.0,0.9372701281561706 -3228.0,0.9369464624207003 -3229.0,0.9366229084561114 -3230.0,0.9362994662238063 -3231.0,0.9359761356852007 -3232.0,0.9356529168017235 -3233.0,0.9353298095348171 -3234.0,0.9350068138459372 -3235.0,0.9346839296965528 -3236.0,0.9343611570481462 -3237.0,0.9340384958622127 -3238.0,0.9337159461002614 -3239.0,0.9333935077238146 -3240.0,0.9330711806944074 -3241.0,0.932748964973589 -3242.0,0.9324268605229209 -3243.0,0.9321048673039787 -3244.0,0.9317829852783509 -3245.0,0.9314612144076393 -3246.0,0.931139554653459 -3247.0,0.9308180059774382 -3248.0,0.9304965683412189 -3249.0,0.9301752417064554 -3250.0,0.929854026034816 -3251.0,0.9295329212879823 -3252.0,0.9292119274276484 -3253.0,0.9288910444155222 -3254.0,0.9285702722133248 -3255.0,0.9282496107827903 -3256.0,0.9279290600856663 -3257.0,0.9276086200837134 -3258.0,0.9272882907387052 -3259.0,0.926968072012429 -3260.0,0.926647963866685 -3261.0,0.9263279662632866 -3262.0,0.9260080791640604 -3263.0,0.9256883025308461 -3264.0,0.9253686363254969 -3265.0,0.9250490805098789 -3266.0,0.9247296350458712 -3267.0,0.9244102998953666 -3268.0,0.9240910750202705 -3269.0,0.9237719603825019 -3270.0,0.9234529559439926 -3271.0,0.9231340616666878 -3272.0,0.9228152775125456 -3273.0,0.9224966034435375 -3274.0,0.9221780394216479 -3275.0,0.9218595854088746 -3276.0,0.9215412413672281 -3277.0,0.9212230072587326 -3278.0,0.920904883045425 -3279.0,0.9205868686893551 -3280.0,0.9202689641525864 -3281.0,0.9199511693971952 -3282.0,0.9196334843852708 -3283.0,0.9193159090789158 -3284.0,0.9189984434402456 -3285.0,0.9186810874313891 -3286.0,0.9183638410144879 -3287.0,0.9180467041516969 -3288.0,0.9177296768051838 -3289.0,0.9174127589371297 -3290.0,0.9170959505097286 -3291.0,0.9167792514851876 -3292.0,0.9164626618257267 -3293.0,0.9161461814935792 -3294.0,0.9158298104509911 -3295.0,0.9155135486602218 -3296.0,0.9151973960835437 -3297.0,0.9148813526832418 -3298.0,0.9145654184216147 -3299.0,0.9142495932609734 -3300.0,0.9139338771636426 -3301.0,0.9136182700919596 -3302.0,0.9133027720082747 -3303.0,0.9129873828749513 -3304.0,0.9126721026543658 -3305.0,0.9123569313089076 -3306.0,0.9120418688009789 -3307.0,0.9117269150929952 -3308.0,0.9114120701473848 -3309.0,0.911097333926589 -3310.0,0.9107827063930619 -3311.0,0.9104681875092709 -3312.0,0.9101537772376962 -3313.0,0.9098394755408309 -3314.0,0.909525282381181 -3315.0,0.9092111977212658 -3316.0,0.908897221523617 -3317.0,0.9085833537507797 -3318.0,0.9082695943653117 -3319.0,0.9079559433297838 -3320.0,0.9076424006067798 -3321.0,0.9073289661588962 -3322.0,0.9070156399487428 -3323.0,0.9067024219389417 -3324.0,0.9063893120921286 -3325.0,0.9060763103709516 -3326.0,0.9057634167380718 -3327.0,0.9054506311561636 -3328.0,0.9051379535879137 -3329.0,0.904825383996022 -3330.0,0.9045129223432011 -3331.0,0.9042005685921769 -3332.0,0.9038883227056876 -3333.0,0.9035761846464848 -3334.0,0.9032641543773324 -3335.0,0.9029522318610077 -3336.0,0.9026404170603006 -3337.0,0.9023287099380137 -3338.0,0.9020171104569628 -3339.0,0.9017056185799762 -3340.0,0.9013942342698953 -3341.0,0.9010829574895742 -3342.0,0.9007717882018799 -3343.0,0.900460726369692 -3344.0,0.9001497719559032 -3345.0,0.899838924923419 -3346.0,0.8995281852351574 -3347.0,0.8992175528540496 -3348.0,0.8989070277430394 -3349.0,0.8985966098650834 -3350.0,0.898286299183151 -3351.0,0.8979760956602243 -3352.0,0.8976659992592984 -3353.0,0.897356009943381 -3354.0,0.8970461276754927 -3355.0,0.8967363524186668 -3356.0,0.8964266841359494 -3357.0,0.8961171227903991 -3358.0,0.8958076683450878 -3359.0,0.8954983207630998 -3360.0,0.895189080007532 -3361.0,0.8948799460414942 -3362.0,0.8945709188281092 -3363.0,0.8942619983305122 -3364.0,0.8939531845118512 -3365.0,0.8936444773352871 -3366.0,0.8933358767639933 -3367.0,0.8930273827611559 -3368.0,0.892718995289974 -3369.0,0.892410714313659 -3370.0,0.8921025397954355 -3371.0,0.8917944716985403 -3372.0,0.8914865099862233 -3373.0,0.8911786546217467 -3374.0,0.8908709055683858 -3375.0,0.8905632627894282 -3376.0,0.8902557262481745 -3377.0,0.8899482959079379 -3378.0,0.889640971732044 -3379.0,0.8893337536838314 -3380.0,0.8890266417266511 -3381.0,0.8887196358238671 -3382.0,0.8884127359388557 -3383.0,0.8881059420350059 -3384.0,0.8877992540757196 -3385.0,0.8874926720244111 -3386.0,0.8871861958445073 -3387.0,0.8868798254994479 -3388.0,0.8865735609526851 -3389.0,0.8862674021676838 -3390.0,0.8859613491079217 -3391.0,0.8856554017368886 -3392.0,0.8853495600180873 -3393.0,0.8850438239150332 -3394.0,0.8847381933912541 -3395.0,0.8844326684102906 -3396.0,0.8841272489356957 -3397.0,0.8838219349310351 -3398.0,0.8835167263598872 -3399.0,0.8832116231858427 -3400.0,0.8829066253725051 -3401.0,0.8826017328834903 -3402.0,0.8822969456824269 -3403.0,0.881992263732956 -3404.0,0.8816876869987312 -3405.0,0.8813832154434189 -3406.0,0.8810788490306977 -3407.0,0.880774587724259 -3408.0,0.8804704314878066 -3409.0,0.8801663802850568 -3410.0,0.8798624340797385 -3411.0,0.8795585928355935 -3412.0,0.8792548565163752 -3413.0,0.8789512250858504 -3414.0,0.8786476985077982 -3415.0,0.8783442767460098 -3416.0,0.8780409597642893 -3417.0,0.8777377475264533 -3418.0,0.8774346399963306 -3419.0,0.8771316371377629 -3420.0,0.876828738914604 -3421.0,0.8765259452907204 -3422.0,0.876223256229991 -3423.0,0.8759206716963073 -3424.0,0.8756181916535731 -3425.0,0.8753158160657047 -3426.0,0.875013544896631 -3427.0,0.8747113781102932 -3428.0,0.874409315670645 -3429.0,0.8741073575416524 -3430.0,0.8738055036872943 -3431.0,0.8735037540715616 -3432.0,0.8732021086584577 -3433.0,0.8729005674119985 -3434.0,0.8725991302962125 -3435.0,0.8722977972751403 -3436.0,0.8719965683128351 -3437.0,0.8716954433733625 -3438.0,0.8713944224208005 -3439.0,0.8710935054192394 -3440.0,0.8707926923327821 -3441.0,0.8704919831255438 -3442.0,0.870191377761652 -3443.0,0.8698908762052467 -3444.0,0.8695904784204803 -3445.0,0.8692901843715175 -3446.0,0.8689899940225354 -3447.0,0.8686899073377236 -3448.0,0.8683899242812837 -3449.0,0.8680900448174301 -3450.0,0.8677902689103894 -3451.0,0.8674905965244003 -3452.0,0.8671910276237143 -3453.0,0.8668915621725949 -3454.0,0.866592200135318 -3455.0,0.8662929414761721 -3456.0,0.8659937861594577 -3457.0,0.8656947341494876 -3458.0,0.8653957854105873 -3459.0,0.8650969399070942 -3460.0,0.8647981976033585 -3461.0,0.8644995584637423 -3462.0,0.8642010224526199 -3463.0,0.8639025895343783 -3464.0,0.8636042596734167 -3465.0,0.8633060328341464 -3466.0,0.8630079089809913 -3467.0,0.8627098880783871 -3468.0,0.8624119700907824 -3469.0,0.8621141549826375 -3470.0,0.8618164427184254 -3471.0,0.8615188332626311 -3472.0,0.8612213265797519 -3473.0,0.8609239226342977 -3474.0,0.86062662139079 -3475.0,0.8603294228137633 -3476.0,0.8600323268677637 -3477.0,0.8597353335173499 -3478.0,0.8594384427270928 -3479.0,0.8591416544615755 -3480.0,0.8588449686853933 -3481.0,0.8585483853631537 -3482.0,0.8582519044594765 -3483.0,0.8579555259389937 -3484.0,0.8576592497663496 -3485.0,0.8573630759062004 -3486.0,0.8570670043232149 -3487.0,0.8567710349820739 -3488.0,0.8564751678474704 -3489.0,0.8561794028841094 -3490.0,0.8558837400567086 -3491.0,0.8555881793299975 -3492.0,0.8552927206687178 -3493.0,0.8549973640376234 -3494.0,0.8547021094014805 -3495.0,0.8544069567250673 -3496.0,0.8541119059731743 -3497.0,0.8538169571106041 -3498.0,0.8535221101021714 -3499.0,0.8532273649127031 -3500.0,0.8529327215070384 -3501.0,0.8526381798500282 -3502.0,0.8523437399065361 -3503.0,0.8520494016414374 -3504.0,0.8517551650196198 -3505.0,0.8514610300059828 -3506.0,0.8511669965654386 -3507.0,0.8508730646629108 -3508.0,0.8505792342633357 -3509.0,0.8502855053316614 -3510.0,0.8499918778328481 -3511.0,0.8496983517318684 -3512.0,0.8494049269937065 -3513.0,0.8491116035833591 -3514.0,0.8488183814658349 -3515.0,0.8485252606061546 -3516.0,0.848232240969351 -3517.0,0.847939322520469 -3518.0,0.8476465052245656 -3519.0,0.8473537890467098 -3520.0,0.8470611739519827 -3521.0,0.8467686599054774 -3522.0,0.8464762468722993 -3523.0,0.8461839348175654 -3524.0,0.8458917237064051 -3525.0,0.8455996135039598 -3526.0,0.8453076041753829 -3527.0,0.8450156956858397 -3528.0,0.8447238880005077 -3529.0,0.8444321810845764 -3530.0,0.8441405749032472 -3531.0,0.8438490694217338 -3532.0,0.8435576646052615 -3533.0,0.843266360419068 -3534.0,0.8429751568284027 -3535.0,0.8426840537985273 -3536.0,0.8423930512947152 -3537.0,0.8421021492822519 -3538.0,0.841811347726435 -3539.0,0.841520646592574 -3540.0,0.8412300458459903 -3541.0,0.8409395454520173 -3542.0,0.8406491453760007 -3543.0,0.8403588455832975 -3544.0,0.8400686460392774 -3545.0,0.8397785467093215 -3546.0,0.8394885475588231 -3547.0,0.8391986485531874 -3548.0,0.8389088496578316 -3549.0,0.838619150838185 -3550.0,0.8383295520596882 -3551.0,0.8380400532877945 -3552.0,0.8377506544879688 -3553.0,0.8374613556256878 -3554.0,0.8371721566664403 -3555.0,0.8368830575757271 -3556.0,0.8365940583190605 -3557.0,0.8363051588619653 -3558.0,0.8360163591699779 -3559.0,0.8357276592086462 -3560.0,0.8354390589435309 -3561.0,0.8351505583402037 -3562.0,0.8348621573642488 -3563.0,0.8345738559812621 -3564.0,0.8342856541568513 -3565.0,0.8339975518566359 -3566.0,0.8337095490462475 -3567.0,0.8334216456913295 -3568.0,0.833133841757537 -3569.0,0.8328461372105372 -3570.0,0.832558532016009 -3571.0,0.8322710261396432 -3572.0,0.8319836195471425 -3573.0,0.8316963122042214 -3574.0,0.8314091040766061 -3575.0,0.8311219951300348 -3576.0,0.8308349853302576 -3577.0,0.8305480746430363 -3578.0,0.8302612630341444 -3579.0,0.8299745504693675 -3580.0,0.8296879369145029 -3581.0,0.8294014223353596 -3582.0,0.8291150066977586 -3583.0,0.8288286899675326 -3584.0,0.8285424721105259 -3585.0,0.828256353092595 -3586.0,0.827970332879608 -3587.0,0.8276844114374446 -3588.0,0.8273985887319967 -3589.0,0.8271128647291676 -3590.0,0.8268272393948723 -3591.0,0.8265417126950382 -3592.0,0.8262562845956037 -3593.0,0.8259709550625196 -3594.0,0.8256857240617479 -3595.0,0.8254005915592628 -3596.0,0.8251155575210499 -3597.0,0.824830621913107 -3598.0,0.824545784701443 -3599.0,0.8242610458520792 -3600.0,0.8239764053310481 -3601.0,0.8236918631043944 -3602.0,0.8234074191381741 -3603.0,0.8231230733984551 -3604.0,0.8228388258513172 -3605.0,0.8225546764628516 -3606.0,0.8222706251991614 -3607.0,0.8219866720263613 -3608.0,0.8217028169105779 -3609.0,0.8214190598179492 -3610.0,0.8211354007146251 -3611.0,0.8208518395667671 -3612.0,0.8205683763405485 -3613.0,0.8202850110021541 -3614.0,0.8200017435177805 -3615.0,0.8197185738536362 -3616.0,0.8194355019759408 -3617.0,0.8191525278509261 -3618.0,0.8188696514448351 -3619.0,0.8185868727239229 -3620.0,0.8183041916544561 -3621.0,0.8180216082027129 -3622.0,0.817739122334983 -3623.0,0.817456734017568 -3624.0,0.817174443216781 -3625.0,0.8168922498989468 -3626.0,0.8166101540304018 -3627.0,0.816328155577494 -3628.0,0.8160462545065831 -3629.0,0.8157644507840403 -3630.0,0.8154827443762485 -3631.0,0.815201135249602 -3632.0,0.8149196233705072 -3633.0,0.8146382087053814 -3634.0,0.8143568912206542 -3635.0,0.8140756708827666 -3636.0,0.8137945476581706 -3637.0,0.8135135215133306 -3638.0,0.813232592414722 -3639.0,0.8129517603288322 -3640.0,0.81267102522216 -3641.0,0.8123903870612155 -3642.0,0.8121098458125209 -3643.0,0.8118294014426094 -3644.0,0.8115490539180263 -3645.0,0.811268803205328 -3646.0,0.8109886492710828 -3647.0,0.8107085920818702 -3648.0,0.8104286316042815 -3649.0,0.8101487678049194 -3650.0,0.8098690006503982 -3651.0,0.8095893301073439 -3652.0,0.8093097561423936 -3653.0,0.8090302787221963 -3654.0,0.8087508978134124 -3655.0,0.8084716133827137 -3656.0,0.8081924253967836 -3657.0,0.8079133338223171 -3658.0,0.8076343386260205 -3659.0,0.8073554397746119 -3660.0,0.8070766372348205 -3661.0,0.8067979309733873 -3662.0,0.8065193209570645 -3663.0,0.8062408071526163 -3664.0,0.8059623895268176 -3665.0,0.8056840680464555 -3666.0,0.8054058426783283 -3667.0,0.8051277133892456 -3668.0,0.8048496801460286 -3669.0,0.8045717429155101 -3670.0,0.8042939016645342 -3671.0,0.8040161563599563 -3672.0,0.8037385069686436 -3673.0,0.8034609534574744 -3674.0,0.8031834957933386 -3675.0,0.8029061339431376 -3676.0,0.8026288678737841 -3677.0,0.8023516975522024 -3678.0,0.8020746229453278 -3679.0,0.8017976440201078 -3680.0,0.8015207607435003 -3681.0,0.8012439730824756 -3682.0,0.8009672810040147 -3683.0,0.8006906844751103 -3684.0,0.8004141834627665 -3685.0,0.8001377779339987 -3686.0,0.7998614678558337 -3687.0,0.7995852531953097 -3688.0,0.7993091339194764 -3689.0,0.7990331099953949 -3690.0,0.7987571813901373 -3691.0,0.7984813480707874 -3692.0,0.7982056100044403 -3693.0,0.7979299671582026 -3694.0,0.797654419499192 -3695.0,0.7973789669945377 -3696.0,0.7971036096113802 -3697.0,0.7968283473168714 -3698.0,0.7965531800781744 -3699.0,0.7962781078624639 -3700.0,0.7960031306369257 -3701.0,0.7957282483687572 -3702.0,0.7954534610251667 -3703.0,0.7951787685733742 -3704.0,0.794904170980611 -3705.0,0.7946296682141193 -3706.0,0.7943552602411532 -3707.0,0.7940809470289778 -3708.0,0.7938067285448694 -3709.0,0.7935326047561159 -3710.0,0.7932585756300161 -3711.0,0.7929846411338806 -3712.0,0.7927108012350308 -3713.0,0.7924370559007997 -3714.0,0.7921634050985314 -3715.0,0.7918898487955814 -3716.0,0.7916163869593166 -3717.0,0.7913430195571146 -3718.0,0.7910697465563651 -3719.0,0.7907965679244683 -3720.0,0.7905234836288361 -3721.0,0.7902504936368915 -3722.0,0.7899775979160688 -3723.0,0.7897047964338136 -3724.0,0.7894320891575827 -3725.0,0.7891594760548439 -3726.0,0.7888869570930767 -3727.0,0.7886145322397713 -3728.0,0.7883422014624296 -3729.0,0.7880699647285645 -3730.0,0.7877978220057 -3731.0,0.7875257732613717 -3732.0,0.787253818463126 -3733.0,0.7869819575785207 -3734.0,0.7867101905751249 -3735.0,0.7864385174205186 -3736.0,0.7861669380822932 -3737.0,0.7858954525280514 -3738.0,0.7856240607254068 -3739.0,0.7853527626419844 -3740.0,0.7850815582454204 -3741.0,0.7848104475033619 -3742.0,0.7845394303834675 -3743.0,0.7842685068534069 -3744.0,0.7839976768808607 -3745.0,0.7837269404335211 -3746.0,0.783456297479091 -3747.0,0.7831857479852847 -3748.0,0.7829152919198278 -3749.0,0.7826449292504566 -3750.0,0.782374659944919 -3751.0,0.7821044839709738 -3752.0,0.7818344012963909 -3753.0,0.7815644118889514 -3754.0,0.7812945157164478 -3755.0,0.7810247127466831 -3756.0,0.7807550029474719 -3757.0,0.7804853862866399 -3758.0,0.7802158627320237 -3759.0,0.7799464322514711 -3760.0,0.7796770948128411 -3761.0,0.7794078503840035 -3762.0,0.7791386989328396 -3763.0,0.7788696404272415 -3764.0,0.7786006748351124 -3765.0,0.7783318021243669 -3766.0,0.7780630222629303 -3767.0,0.7777943352187392 -3768.0,0.7775257409597411 -3769.0,0.7772572394538947 -3770.0,0.7769888306691698 -3771.0,0.776720514573547 -3772.0,0.7764522911350182 -3773.0,0.7761841603215865 -3774.0,0.7759161221012657 -3775.0,0.7756481764420808 -3776.0,0.7753803233120679 -3777.0,0.7751125626792739 -3778.0,0.7748448945117571 -3779.0,0.7745773187775865 -3780.0,0.7743098354448424 -3781.0,0.774042444481616 -3782.0,0.7737751458560093 -3783.0,0.7735079395361356 -3784.0,0.7732408254901193 -3785.0,0.7729738036860955 -3786.0,0.7727068740922104 -3787.0,0.7724400366766214 -3788.0,0.7721732914074967 -3789.0,0.7719066382530154 -3790.0,0.771640077181368 -3791.0,0.7713736081607553 -3792.0,0.7711072311593897 -3793.0,0.7708409461454946 -3794.0,0.7705747530873038 -3795.0,0.7703086519530626 -3796.0,0.770042642711027 -3797.0,0.769776725329464 -3798.0,0.7695108997766515 -3799.0,0.7692451660208788 -3800.0,0.7689795240304454 -3801.0,0.7687139737736625 -3802.0,0.7684485152188516 -3803.0,0.7681831483343456 -3804.0,0.7679178730884881 -3805.0,0.7676526894496338 -3806.0,0.7673875973861481 -3807.0,0.7671225968664075 -3808.0,0.7668576878587994 -3809.0,0.766592870331722 -3810.0,0.7663281442535845 -3811.0,0.7660635095928071 -3812.0,0.7657989663178207 -3813.0,0.7655345143970674 -3814.0,0.765270153799 -3815.0,0.765005884492082 -3816.0,0.764741706444788 -3817.0,0.7644776196256037 -3818.0,0.7642136240030254 -3819.0,0.7639497195455602 -3820.0,0.7636859062217264 -3821.0,0.763422184000053 -3822.0,0.7631585528490797 -3823.0,0.7628950127373574 -3824.0,0.7626315636334475 -3825.0,0.7623682055059225 -3826.0,0.7621049383233659 -3827.0,0.7618417620543716 -3828.0,0.7615786766675448 -3829.0,0.7613156821315009 -3830.0,0.7610527784148671 -3831.0,0.7607899654862806 -3832.0,0.7605272433143899 -3833.0,0.7602646118678541 -3834.0,0.760002071115343 -3835.0,0.7597396210255377 -3836.0,0.7594772615671297 -3837.0,0.7592149927088213 -3838.0,0.7589528144193258 -3839.0,0.7586907266673674 -3840.0,0.7584287294216808 -3841.0,0.7581668226510117 -3842.0,0.7579050063241164 -3843.0,0.7576432804097623 -3844.0,0.7573816448767273 -3845.0,0.7571200996938002 -3846.0,0.7568586448297806 -3847.0,0.7565972802534788 -3848.0,0.756336005933716 -3849.0,0.756074821839324 -3850.0,0.7558137279391454 -3851.0,0.7555527242020337 -3852.0,0.755291810596853 -3853.0,0.7550309870924782 -3854.0,0.754770253657795 -3855.0,0.7545096102616998 -3856.0,0.7542490568730997 -3857.0,0.7539885934609126 -3858.0,0.7537282199940671 -3859.0,0.7534679364415027 -3860.0,0.7532077427721692 -3861.0,0.7529476389550276 -3862.0,0.7526876249590493 -3863.0,0.7524277007532166 -3864.0,0.7521678663065223 -3865.0,0.7519081215879703 -3866.0,0.7516484665665747 -3867.0,0.7513889012113606 -3868.0,0.751129425491364 -3869.0,0.7508700393756309 -3870.0,0.7506107428332187 -3871.0,0.7503515358331952 -3872.0,0.7500924183446389 -3873.0,0.749833390336639 -3874.0,0.7495744517782952 -3875.0,0.7493156026387181 -3876.0,0.7490568428870289 -3877.0,0.7487981724923594 -3878.0,0.7485395914238522 -3879.0,0.7482810996506604 -3880.0,0.7480226971419478 -3881.0,0.7477643838668889 -3882.0,0.7475061597946688 -3883.0,0.7472480248944833 -3884.0,0.7469899791355387 -3885.0,0.7467320224870521 -3886.0,0.746474154918251 -3887.0,0.7462163763983739 -3888.0,0.7459586868966696 -3889.0,0.7457010863823975 -3890.0,0.7454435748248279 -3891.0,0.7451861521932416 -3892.0,0.7449288184569298 -3893.0,0.7446715735851945 -3894.0,0.7444144175473483 -3895.0,0.7441573503127143 -3896.0,0.7439003718506264 -3897.0,0.7436434821304287 -3898.0,0.7433866811214764 -3899.0,0.7431299687931349 -3900.0,0.7428733451147801 -3901.0,0.7426168100557989 -3902.0,0.7423603635855885 -3903.0,0.7421040056735568 -3904.0,0.7418477362891219 -3905.0,0.741591555401713 -3906.0,0.7413354629807694 -3907.0,0.7410794589957412 -3908.0,0.740823543416089 -3909.0,0.740567716211284 -3910.0,0.7403119773508078 -3911.0,0.7400563268041527 -3912.0,0.7398007645408212 -3913.0,0.7395452905303269 -3914.0,0.7392899047421936 -3915.0,0.7390346071459554 -3916.0,0.7387793977111573 -3917.0,0.7385242764073546 -3918.0,0.7382692432041135 -3919.0,0.7380142980710099 -3920.0,0.7377594409776311 -3921.0,0.7375046718935743 -3922.0,0.7372499907884474 -3923.0,0.736995397631869 -3924.0,0.7367408923934677 -3925.0,0.7364864750428832 -3926.0,0.7362321455497652 -3927.0,0.735977903883774 -3928.0,0.7357237500145805 -3929.0,0.735469683911866 -3930.0,0.7352157055453221 -3931.0,0.7349618148846513 -3932.0,0.7347080118995661 -3933.0,0.7344542965597898 -3934.0,0.7342006688350559 -3935.0,0.7339471286951085 -3936.0,0.733693676109702 -3937.0,0.7334403110486015 -3938.0,0.7331870334815824 -3939.0,0.7329338433784306 -3940.0,0.7326807407089421 -3941.0,0.7324277254429238 -3942.0,0.7321747975501928 -3943.0,0.7319219570005765 -3944.0,0.7316692037639131 -3945.0,0.7314165378100508 -3946.0,0.7311639591088486 -3947.0,0.7309114676301754 -3948.0,0.7306590633439111 -3949.0,0.7304067462199455 -3950.0,0.7301545162281791 -3951.0,0.7299023733385227 -3952.0,0.7296503175208975 -3953.0,0.729398348745235 -3954.0,0.7291464669814772 -3955.0,0.7288946721995766 -3956.0,0.7286429643694957 -3957.0,0.7283913434612077 -3958.0,0.728139809444696 -3959.0,0.7278883622899546 -3960.0,0.7276370019669873 -3961.0,0.7273857284458091 -3962.0,0.7271345416964445 -3963.0,0.7268834416889292 -3964.0,0.7266324283933083 -3965.0,0.7263815017796382 -3966.0,0.7261306618179849 -3967.0,0.7258799084784251 -3968.0,0.7256292417310457 -3969.0,0.7253786615459441 -3970.0,0.7251281678932278 -3971.0,0.7248777607430148 -3972.0,0.7246274400654333 -3973.0,0.7243772058306219 -3974.0,0.7241270580087296 -3975.0,0.7238769965699153 -3976.0,0.7236270214843489 -3977.0,0.7233771327222098 -3978.0,0.7231273302536882 -3979.0,0.7228776140489847 -3980.0,0.7226279840783097 -3981.0,0.7223784403118843 -3982.0,0.7221289827199397 -3983.0,0.7218796112727176 -3984.0,0.7216303259404695 -3985.0,0.7213811266934578 -3986.0,0.7211320135019545 -3987.0,0.7208829863362426 -3988.0,0.7206340451666147 -3989.0,0.720385189963374 -3990.0,0.7201364206968338 -3991.0,0.7198877373373179 -3992.0,0.7196391398551601 -3993.0,0.7193906282207047 -3994.0,0.7191422024043058 -3995.0,0.7188938623763282 -3996.0,0.7186456081071466 -3997.0,0.7183974395671463 -3998.0,0.7181493567267224 -3999.0,0.7179013595562805 -4000.0,0.7176534480262363 -4001.0,0.7174056221070159 -4002.0,0.7171578817690554 -4003.0,0.716910226982801 -4004.0,0.7166626577187095 -4005.0,0.7164151739472477 -4006.0,0.7161677756388926 -4007.0,0.7159204627641312 -4008.0,0.715673235293461 -4009.0,0.7154260931973896 -4010.0,0.7151790364464347 -4011.0,0.7149320650111243 -4012.0,0.7146851788619963 -4013.0,0.7144383779695993 -4014.0,0.7141916623044915 -4015.0,0.7139450318372417 -4016.0,0.7136984865384285 -4017.0,0.7134520263786409 -4018.0,0.7132056513284781 -4019.0,0.7129593613585492 -4020.0,0.7127131564394739 -4021.0,0.7124670365418814 -4022.0,0.7122210016364114 -4023.0,0.711975051693714 -4024.0,0.7117291866844491 -4025.0,0.7114834065792865 -4026.0,0.7112377113489069 -4027.0,0.7109921009640002 -4028.0,0.7107465753952671 -4029.0,0.7105011346134182 -4030.0,0.7102557785891742 -4031.0,0.7100105072932659 -4032.0,0.709765320696434 -4033.0,0.70952021876943 -4034.0,0.7092752014830146 -4035.0,0.7090302688079592 -4036.0,0.7087854207150451 -4037.0,0.7085406571750636 -4038.0,0.7082959781588164 -4039.0,0.7080513836371151 -4040.0,0.707806873580781 -4041.0,0.7075624479606462 -4042.0,0.7073181067475524 -4043.0,0.7070738499123512 -4044.0,0.7068296774259051 -4045.0,0.7065855892590857 -4046.0,0.706341585382775 -4047.0,0.7060976657678654 -4048.0,0.705853830385259 -4049.0,0.7056100792058678 -4050.0,0.7053664122006142 -4051.0,0.7051228293404307 -4052.0,0.7048793305962594 -4053.0,0.7046359159390527 -4054.0,0.704392585339773 -4055.0,0.7041493387693928 -4056.0,0.7039061761988946 -4057.0,0.7036630975992707 -4058.0,0.7034201029415237 -4059.0,0.7031771921966662 -4060.0,0.7029343653357206 -4061.0,0.7026916223297195 -4062.0,0.7024489631497053 -4063.0,0.7022063877667307 -4064.0,0.7019638961518582 -4065.0,0.7017214882761601 -4066.0,0.7014791641107191 -4067.0,0.7012369236266277 -4068.0,0.7009947667949884 -4069.0,0.7007526935869135 -4070.0,0.7005107039735256 -4071.0,0.700268797925957 -4072.0,0.7000269754153501 -4073.0,0.6997852364128573 -4074.0,0.6995435808896407 -4075.0,0.6993020088168728 -4076.0,0.6990605201657356 -4077.0,0.6988191149074215 -4078.0,0.6985777930131325 -4079.0,0.6983365544540806 -4080.0,0.6980953992014879 -4081.0,0.6978543272265861 -4082.0,0.6976133385006175 -4083.0,0.6973724329948335 -4084.0,0.697131610680496 -4085.0,0.6968908715288766 -4086.0,0.696650215511257 -4087.0,0.6964096425989287 -4088.0,0.6961691527631928 -4089.0,0.6959287459753609 -4090.0,0.6956884222067542 -4091.0,0.6954481814287038 -4092.0,0.6952080236125506 -4093.0,0.6949679487296457 -4094.0,0.6947279567513498 -4095.0,0.6944880476490337 -4096.0,0.6942482213940779 -4097.0,0.6940084779578729 -4098.0,0.6937688173118192 -4099.0,0.6935292394273268 -4100.0,0.6932897442758159 -4101.0,0.6930503318287166 -4102.0,0.6928110020574685 -4103.0,0.6925717549335215 -4104.0,0.6923325904283351 -4105.0,0.6920935085133787 -4106.0,0.6918545091601316 -4107.0,0.6916155923400829 -4108.0,0.6913767580247314 -4109.0,0.6911380061855863 -4110.0,0.6908993367941659 -4111.0,0.690660749821999 -4112.0,0.6904222452406236 -4113.0,0.6901838230215879 -4114.0,0.6899454831364499 -4115.0,0.6897072255567775 -4116.0,0.6894690502541482 -4117.0,0.6892309572001495 -4118.0,0.6889929463663785 -4119.0,0.6887550177244425 -4120.0,0.688517171245958 -4121.0,0.6882794069025518 -4122.0,0.6880417246658606 -4123.0,0.6878041245075301 -4124.0,0.6875666063992169 -4125.0,0.6873291703125864 -4126.0,0.6870918162193146 -4127.0,0.6868545440910865 -4128.0,0.6866173538995974 -4129.0,0.6863802456165523 -4130.0,0.686143219213666 -4131.0,0.6859062746626627 -4132.0,0.6856694119352769 -4133.0,0.6854326310032524 -4134.0,0.6851959318383432 -4135.0,0.6849593144123125 -4136.0,0.6847227786969339 -4137.0,0.6844863246639902 -4138.0,0.6842499522852742 -4139.0,0.6840136615325885 -4140.0,0.6837774523777451 -4141.0,0.6835413247925662 -4142.0,0.6833052787488835 -4143.0,0.6830693142185383 -4144.0,0.6828334311733818 -4145.0,0.6825976295852748 -4146.0,0.6823619094260881 -4147.0,0.6821262706677018 -4148.0,0.681890713282006 -4149.0,0.6816552372409004 -4150.0,0.6814198425162945 -4151.0,0.6811845290801073 -4152.0,0.6809492969042675 -4153.0,0.680714145960714 -4154.0,0.6804790762213948 -4155.0,0.6802440876582677 -4156.0,0.6800091802433005 -4157.0,0.6797743539484703 -4158.0,0.679539608745764 -4159.0,0.6793049446071784 -4160.0,0.6790703615047196 -4161.0,0.6788358594104035 -4162.0,0.6786014382962559 -4163.0,0.678367098134312 -4164.0,0.6781328388966166 -4165.0,0.6778986605552244 -4166.0,0.6776645630821997 -4167.0,0.6774305464496163 -4168.0,0.6771966106295577 -4169.0,0.6769627555941172 -4170.0,0.6767289813153974 -4171.0,0.6764952877655107 -4172.0,0.6762616749165794 -4173.0,0.6760281427407351 -4174.0,0.675794691210119 -4175.0,0.6755613202968822 -4176.0,0.6753280299731852 -4177.0,0.675094820211198 -4178.0,0.6748616909831007 -4179.0,0.6746286422610823 -4180.0,0.674395674017342 -4181.0,0.6741627862240884 -4182.0,0.6739299788535398 -4183.0,0.6736972518779237 -4184.0,0.6734646052694776 -4185.0,0.6732320390004485 -4186.0,0.6729995530430929 -4187.0,0.6727671473696768 -4188.0,0.6725348219524762 -4189.0,0.672302576763776 -4190.0,0.6720704117758713 -4191.0,0.6718383269610665 -4192.0,0.6716063222916755 -4193.0,0.6713743977400218 -4194.0,0.6711425532784385 -4195.0,0.6709107888792684 -4196.0,0.6706791045148636 -4197.0,0.6704475001575857 -4198.0,0.6702159757798062 -4199.0,0.6699845313539058 -4200.0,0.6697531668522749 -4201.0,0.6695218822473135 -4202.0,0.6692906775114309 -4203.0,0.6690595526170461 -4204.0,0.6688285075365875 -4205.0,0.6685975422424933 -4206.0,0.668366656707211 -4207.0,0.6681358509031975 -4208.0,0.6679051248029194 -4209.0,0.6676744783788527 -4210.0,0.6674439116034832 -4211.0,0.6672134244493056 -4212.0,0.6669830168888249 -4213.0,0.6667526888945547 -4214.0,0.666522440439019 -4215.0,0.6662922714947505 -4216.0,0.6660621820342918 -4217.0,0.665832172030195 -4218.0,0.6656022414550213 -4219.0,0.6653723902813421 -4220.0,0.6651426184817376 -4221.0,0.6649129260287977 -4222.0,0.6646833128951217 -4223.0,0.6644537790533186 -4224.0,0.6642243244760065 -4225.0,0.6639949491358134 -4226.0,0.6637656530053762 -4227.0,0.6635364360573417 -4228.0,0.6633072982643659 -4229.0,0.6630782395991144 -4230.0,0.6628492600342623 -4231.0,0.6626203595424937 -4232.0,0.6623915380965026 -4233.0,0.6621627956689924 -4234.0,0.6619341322326757 -4235.0,0.6617055477602746 -4236.0,0.6614770422245205 -4237.0,0.6612486155981545 -4238.0,0.6610202678539271 -4239.0,0.6607919989645978 -4240.0,0.660563808902936 -4241.0,0.6603356976417202 -4242.0,0.6601076651537384 -4243.0,0.659879711411788 -4244.0,0.6596518363886757 -4245.0,0.6594240400572179 -4246.0,0.6591963223902398 -4247.0,0.6589686833605767 -4248.0,0.6587411229410728 -4249.0,0.6585136411045817 -4250.0,0.6582862378239664 -4251.0,0.6580589130720997 -4252.0,0.6578316668218631 -4253.0,0.6576044990461479 -4254.0,0.6573774097178547 -4255.0,0.6571503988098932 -4256.0,0.656923466295183 -4257.0,0.6566966121466522 -4258.0,0.6564698363372392 -4259.0,0.6562431388398912 -4260.0,0.6560165196275646 -4261.0,0.6557899786732256 -4262.0,0.6555635159498496 -4263.0,0.655337131430421 -4264.0,0.655110825087934 -4265.0,0.6548845968953917 -4266.0,0.6546584468258069 -4267.0,0.6544323748522015 -4268.0,0.6542063809476066 -4269.0,0.6539804650850631 -4270.0,0.6537546272376206 -4271.0,0.6535288673783384 -4272.0,0.653303185480285 -4273.0,0.6530775815165382 -4274.0,0.652852055460185 -4275.0,0.6526266072843219 -4276.0,0.6524012369620545 -4277.0,0.6521759444664978 -4278.0,0.6519507297707762 -4279.0,0.6517255928480229 -4280.0,0.6515005336713809 -4281.0,0.6512755522140024 -4282.0,0.6510506484490485 -4283.0,0.6508258223496899 -4284.0,0.6506010738891065 -4285.0,0.6503764030404875 -4286.0,0.6501518097770314 -4287.0,0.6499272940719456 -4288.0,0.6497028558984472 -4289.0,0.6494784952297623 -4290.0,0.6492542120391264 -4291.0,0.6490300062997839 -4292.0,0.648805877984989 -4293.0,0.6485818270680046 -4294.0,0.6483578535221032 -4295.0,0.6481339573205663 -4296.0,0.6479101384366849 -4297.0,0.6476863968437587 -4298.0,0.6474627325150972 -4299.0,0.6472391454240188 -4300.0,0.6470156355438513 -4301.0,0.6467922028479315 -4302.0,0.6465688473096055 -4303.0,0.6463455689022286 -4304.0,0.6461223675991654 -4305.0,0.6458992433737896 -4306.0,0.645676196199484 -4307.0,0.6454532260496408 -4308.0,0.6452303328976613 -4309.0,0.6450075167169559 -4310.0,0.6447847774809442 -4311.0,0.6445621151630552 -4312.0,0.6443395297367268 -4313.0,0.6441170211754061 -4314.0,0.6438945894525497 -4315.0,0.643672234541623 -4316.0,0.6434499564161006 -4317.0,0.6432277550494664 -4318.0,0.6430056304152134 -4319.0,0.6427835824868438 -4320.0,0.6425616112378687 -4321.0,0.6423397166418088 -4322.0,0.6421178986721935 -4323.0,0.6418961573025617 -4324.0,0.6416744925064611 -4325.0,0.6414529042574488 -4326.0,0.6412313925290911 -4327.0,0.641009957294963 -4328.0,0.640788598528649 -4329.0,0.6405673162037425 -4330.0,0.6403461102938464 -4331.0,0.6401249807725722 -4332.0,0.6399039276135409 -4333.0,0.6396829507903823 -4334.0,0.6394620502767356 -4335.0,0.6392412260462491 -4336.0,0.6390204780725799 -4337.0,0.6387998063293944 -4338.0,0.6385792107903681 -4339.0,0.6383586914291856 -4340.0,0.6381382482195405 -4341.0,0.6379178811351354 -4342.0,0.6376975901496823 -4343.0,0.6374773752369022 -4344.0,0.6372572363705248 -4345.0,0.6370371735242892 -4346.0,0.6368171866719436 -4347.0,0.6365972757872451 -4348.0,0.6363774408439601 -4349.0,0.6361576818158636 -4350.0,0.6359379986767402 -4351.0,0.6357183914003831 -4352.0,0.635498859960595 -4353.0,0.6352794043311871 -4354.0,0.6350600244859802 -4355.0,0.6348407203988038 -4356.0,0.6346214920434965 -4357.0,0.634402339393906 -4358.0,0.6341832624238889 -4359.0,0.633964261107311 -4360.0,0.6337453354180469 -4361.0,0.6335264853299806 -4362.0,0.6333077108170048 -4363.0,0.6330890118530211 -4364.0,0.6328703884119405 -4365.0,0.6326518404676827 -4366.0,0.6324333679941768 -4367.0,0.6322149709653603 -4368.0,0.6319966493551802 -4369.0,0.6317784031375921 -4370.0,0.6315602322865611 -4371.0,0.631342136776061 -4372.0,0.6311241165800744 -4373.0,0.6309061716725932 -4374.0,0.630688302027618 -4375.0,0.6304705076191589 -4376.0,0.6302527884212343 -4377.0,0.630035144407872 -4378.0,0.6298175755531086 -4379.0,0.6296000818309897 -4380.0,0.62938266321557 -4381.0,0.629165319680913 -4382.0,0.6289480512010912 -4383.0,0.628730857750186 -4384.0,0.6285137393022878 -4385.0,0.6282966958314962 -4386.0,0.6280797273119191 -4387.0,0.6278628337176739 -4388.0,0.627646015022887 -4389.0,0.6274292712016931 -4390.0,0.6272126022282366 -4391.0,0.6269960080766703 -4392.0,0.6267794887211562 -4393.0,0.626563044135865 -4394.0,0.6263466742949765 -4395.0,0.6261303791726793 -4396.0,0.625914158743171 -4397.0,0.6256980129806582 -4398.0,0.625481941859356 -4399.0,0.625265945353489 -4400.0,0.6250500234372903 -4401.0,0.6248341760850019 -4402.0,0.6246184032708748 -4403.0,0.6244027049691689 -4404.0,0.6241870811541531 -4405.0,0.6239715318001048 -4406.0,0.6237560568813107 -4407.0,0.6235406563720662 -4408.0,0.6233253302466756 -4409.0,0.6231100784794519 -4410.0,0.6228949010447173 -4411.0,0.6226797979168027 -4412.0,0.6224647690700479 -4413.0,0.6222498144788013 -4414.0,0.6220349341174207 -4415.0,0.6218201279602722 -4416.0,0.6216053959817311 -4417.0,0.6213907381561814 -4418.0,0.6211761544580159 -4419.0,0.6209616448616365 -4420.0,0.6207472093414538 -4421.0,0.620532847871887 -4422.0,0.6203185604273644 -4423.0,0.6201043469823232 -4424.0,0.6198902075112093 -4425.0,0.6196761419884771 -4426.0,0.6194621503885905 -4427.0,0.6192482326860217 -4428.0,0.619034388855252 -4429.0,0.6188206188707712 -4430.0,0.6186069227070783 -4431.0,0.6183933003386808 -4432.0,0.6181797517400951 -4433.0,0.6179662768858464 -4434.0,0.6177528757504688 -4435.0,0.617539548308505 -4436.0,0.6173262945345066 -4437.0,0.617113114403034 -4438.0,0.6169000078886564 -4439.0,0.6166869749659517 -4440.0,0.6164740156095068 -4441.0,0.6162611297939169 -4442.0,0.6160483174937864 -4443.0,0.6158355786837284 -4444.0,0.6156229133383647 -4445.0,0.6154103214323259 -4446.0,0.6151978029402512 -4447.0,0.6149853578367888 -4448.0,0.6147729860965956 -4449.0,0.614560687694337 -4450.0,0.6143484626046876 -4451.0,0.6141363108023303 -4452.0,0.613924232261957 -4453.0,0.6137122269582683 -4454.0,0.6135002948659736 -4455.0,0.6132884359597908 -4456.0,0.6130766502144466 -4457.0,0.6128649376046768 -4458.0,0.6126532981052253 -4459.0,0.6124417316908453 -4460.0,0.6122302383362984 -4461.0,0.6120188180163549 -4462.0,0.611807470705794 -4463.0,0.6115961963794034 -4464.0,0.6113849950119797 -4465.0,0.6111738665783282 -4466.0,0.6109628110532626 -4467.0,0.6107518284116057 -4468.0,0.6105409186281886 -4469.0,0.6103300816778516 -4470.0,0.6101193175354431 -4471.0,0.6099086261758208 -4472.0,0.6096980075738504 -4473.0,0.6094874617044068 -4474.0,0.6092769885423733 -4475.0,0.6090665880626422 -4476.0,0.6088562602401143 -4477.0,0.6086460050496987 -4478.0,0.6084358224663138 -4479.0,0.6082257124648861 -4480.0,0.6080156750203511 -4481.0,0.6078057101076529 -4482.0,0.6075958177017443 -4483.0,0.6073859977775865 -4484.0,0.6071762503101497 -4485.0,0.6069665752744122 -4486.0,0.6067569726453618 -4487.0,0.606547442397994 -4488.0,0.6063379845073136 -4489.0,0.6061285989483337 -4490.0,0.6059192856960762 -4491.0,0.6057100447255716 -4492.0,0.6055008760118588 -4493.0,0.6052917795299857 -4494.0,0.6050827552550084 -4495.0,0.604873803161992 -4496.0,0.60466492322601 -4497.0,0.6044561154221445 -4498.0,0.6042473797254863 -4499.0,0.6040387161111347 -4500.0,0.6038301245541977 -4501.0,0.6036216050297919 -4502.0,0.6034131575130424 -4503.0,0.6032047819790828 -4504.0,0.6029964784030555 -4505.0,0.6027882467601116 -4506.0,0.6025800870254102 -4507.0,0.6023719991741198 -4508.0,0.6021639831814166 -4509.0,0.6019560390224862 -4510.0,0.6017481666725221 -4511.0,0.6015403661067267 -4512.0,0.601332637300311 -4513.0,0.6011249802284944 -4514.0,0.600917394866505 -4515.0,0.6007098811895792 -4516.0,0.6005024391729623 -4517.0,0.600295068791908 -4518.0,0.6000877700216783 -4519.0,0.5998805428375443 -4520.0,0.5996733872147851 -4521.0,0.5994663031286885 -4522.0,0.5992592905545511 -4523.0,0.5990523494676776 -4524.0,0.5988454798433814 -4525.0,0.5986386816569848 -4526.0,0.5984319548838178 -4527.0,0.5982252994992198 -4528.0,0.5980187154785381 -4529.0,0.5978122027971289 -4530.0,0.5976057614303565 -4531.0,0.5973993913535942 -4532.0,0.5971930925422234 -4533.0,0.5969868649716343 -4534.0,0.5967807086172253 -4535.0,0.5965746234544035 -4536.0,0.5963686094585845 -4537.0,0.5961626666051922 -4538.0,0.5959567948696594 -4539.0,0.5957509942274267 -4540.0,0.5955452646539439 -4541.0,0.5953396061246689 -4542.0,0.595134018615068 -4543.0,0.5949285021006162 -4544.0,0.5947230565567969 -4545.0,0.5945176819591019 -4546.0,0.5943123782830316 -4547.0,0.5941071455040947 -4548.0,0.5939019835978084 -4549.0,0.5936968925396985 -4550.0,0.593491872305299 -4551.0,0.5932869228701524 -4552.0,0.5930820442098099 -4553.0,0.592877236299831 -4554.0,0.5926724991157835 -4555.0,0.5924678326332437 -4556.0,0.5922632368277965 -4557.0,0.5920587116750351 -4558.0,0.5918542571505611 -4559.0,0.5916498732299845 -4560.0,0.591445559888924 -4561.0,0.5912413171030062 -4562.0,0.5910371448478667 -4563.0,0.5908330430991492 -4564.0,0.5906290118325057 -4565.0,0.5904250510235968 -4566.0,0.5902211606480916 -4567.0,0.5900173406816673 -4568.0,0.5898135911000097 -4569.0,0.5896099118788131 -4570.0,0.5894063029937799 -4571.0,0.5892027644206211 -4572.0,0.588999296135056 -4573.0,0.5887958981128124 -4574.0,0.5885925703296262 -4575.0,0.5883893127612421 -4576.0,0.5881861253834129 -4577.0,0.5879830081718997 -4578.0,0.5877799611024723 -4579.0,0.5875769841509086 -4580.0,0.5873740772929948 -4581.0,0.5871712405045257 -4582.0,0.5869684737613045 -4583.0,0.5867657770391422 -4584.0,0.586563150313859 -4585.0,0.5863605935612827 -4586.0,0.5861581067572499 -4587.0,0.5859556898776053 -4588.0,0.5857533428982021 -4589.0,0.5855510657949018 -4590.0,0.5853488585435743 -4591.0,0.5851467211200976 -4592.0,0.5849446535003582 -4593.0,0.5847426556602509 -4594.0,0.5845407275756789 -4595.0,0.5843388692225536 -4596.0,0.5841370805767949 -4597.0,0.5839353616143308 -4598.0,0.5837337123110975 -4599.0,0.58353213264304 -4600.0,0.5833306225861112 -4601.0,0.5831291821162724 -4602.0,0.5829278112094932 -4603.0,0.5827265098417517 -4604.0,0.5825252779890339 -4605.0,0.5823241156273343 -4606.0,0.5821230227326558 -4607.0,0.5819219992810095 -4608.0,0.5817210452484147 -4609.0,0.5815201606108992 -4610.0,0.5813193453444987 -4611.0,0.5811185994252575 -4612.0,0.580917922829228 -4613.0,0.5807173155324711 -4614.0,0.5805167775110558 -4615.0,0.5803163087410593 -4616.0,0.5801159091985671 -4617.0,0.5799155788596732 -4618.0,0.5797153177004793 -4619.0,0.5795151256970961 -4620.0,0.5793150028256419 -4621.0,0.5791149490622435 -4622.0,0.578914964383036 -4623.0,0.5787150487641628 -4624.0,0.5785152021817752 -4625.0,0.5783154246120331 -4626.0,0.5781157160311046 -4627.0,0.5779160764151656 -4628.0,0.5777165057404008 -4629.0,0.5775170039830029 -4630.0,0.5773175711191726 -4631.0,0.5771182071251191 -4632.0,0.5769189119770598 -4633.0,0.5767196856512202 -4634.0,0.5765205281238341 -4635.0,0.5763214393711434 -4636.0,0.5761224193693982 -4637.0,0.575923468094857 -4638.0,0.5757245855237862 -4639.0,0.5755257716324608 -4640.0,0.5753270263971635 -4641.0,0.5751283497941856 -4642.0,0.5749297417998264 -4643.0,0.5747312023903933 -4644.0,0.5745327315422022 -4645.0,0.5743343292315768 -4646.0,0.5741359954348492 -4647.0,0.5739377301283597 -4648.0,0.5737395332884566 -4649.0,0.5735414048914964 -4650.0,0.5733433449138441 -4651.0,0.5731453533318723 -4652.0,0.5729474301219623 -4653.0,0.572749575260503 -4654.0,0.572551788723892 -4655.0,0.5723540704885347 -4656.0,0.5721564205308448 -4657.0,0.5719588388272441 -4658.0,0.5717613253541626 -4659.0,0.5715638800880382 -4660.0,0.5713665030053173 -4661.0,0.5711691940824541 -4662.0,0.5709719532959113 -4663.0,0.5707747806221594 -4664.0,0.570577676037677 -4665.0,0.5703806395189511 -4666.0,0.5701836710424767 -4667.0,0.5699867705847569 -4668.0,0.5697899381223027 -4669.0,0.5695931736316338 -4670.0,0.5693964770892773 -4671.0,0.569199848471769 -4672.0,0.5690032877556522 -4673.0,0.568806794917479 -4674.0,0.568610369933809 -4675.0,0.5684140127812103 -4676.0,0.5682177234362588 -4677.0,0.5680215018755385 -4678.0,0.5678253480756419 -4679.0,0.567629262013169 -4680.0,0.5674332436647284 -4681.0,0.5672372930069364 -4682.0,0.5670414100164175 -4683.0,0.5668455946698043 -4684.0,0.5666498469437375 -4685.0,0.5664541668148659 -4686.0,0.5662585542598462 -4687.0,0.5660630092553431 -4688.0,0.5658675317780297 -4689.0,0.565672121804587 -4690.0,0.5654767793117039 -4691.0,0.5652815042760775 -4692.0,0.5650862966744129 -4693.0,0.5648911564834233 -4694.0,0.5646960836798297 -4695.0,0.5645010782403617 -4696.0,0.5643061401417563 -4697.0,0.5641112693607588 -4698.0,0.5639164658741227 -4699.0,0.5637217296586092 -4700.0,0.5635270606909879 -4701.0,0.563332458948036 -4702.0,0.563137924406539 -4703.0,0.5629434570432904 -4704.0,0.5627490568350916 -4705.0,0.562554723758752 -4706.0,0.5623604577910892 -4707.0,0.5621662589089288 -4708.0,0.561972127089104 -4709.0,0.5617780623084565 -4710.0,0.5615840645438358 -4711.0,0.5613901337720992 -4712.0,0.5611962699701124 -4713.0,0.5610024731147486 -4714.0,0.5608087431828894 -4715.0,0.5606150801514244 -4716.0,0.5604214839972507 -4717.0,0.5602279546972738 -4718.0,0.5600344922284071 -4719.0,0.559841096567572 -4720.0,0.5596477676916977 -4721.0,0.5594545055777214 -4722.0,0.5592613102025885 -4723.0,0.5590681815432522 -4724.0,0.5588751195766736 -4725.0,0.5586821242798218 -4726.0,0.5584891956296739 -4727.0,0.558296333603215 -4728.0,0.5581035381774379 -4729.0,0.5579108093293436 -4730.0,0.5577181470359408 -4731.0,0.5575255512742466 -4732.0,0.5573330220212855 -4733.0,0.5571405592540903 -4734.0,0.5569481629497015 -4735.0,0.5567558330851676 -4736.0,0.5565635696375452 -4737.0,0.5563713725838985 -4738.0,0.5561792419012997 -4739.0,0.5559871775668295 -4740.0,0.5557951795575755 -4741.0,0.555603247850634 -4742.0,0.5554113824231088 -4743.0,0.5552195832521118 -4744.0,0.5550278503147629 -4745.0,0.5548361835881896 -4746.0,0.5546445830495276 -4747.0,0.5544530486759202 -4748.0,0.5542615804445188 -4749.0,0.5540701783324826 -4750.0,0.5538788423169789 -4751.0,0.5536875723751825 -4752.0,0.5534963684842763 -4753.0,0.5533052306214512 -4754.0,0.5531141587639058 -4755.0,0.5529231528888466 -4756.0,0.552732212973488 -4757.0,0.5525413389950522 -4758.0,0.5523505309307695 -4759.0,0.5521597887578776 -4760.0,0.5519691124536227 -4761.0,0.5517785019952582 -4762.0,0.5515879573600458 -4763.0,0.5513974785252549 -4764.0,0.5512070654681629 -4765.0,0.5510167181660546 -4766.0,0.5508264365962232 -4767.0,0.5506362207359695 -4768.0,0.550446070562602 -4769.0,0.5502559860534373 -4770.0,0.5500659671857996 -4771.0,0.549876013937021 -4772.0,0.5496861262844416 -4773.0,0.5494963042054091 -4774.0,0.5493065476772792 -4775.0,0.5491168566774152 -4776.0,0.5489272311831884 -4777.0,0.5487376711719779 -4778.0,0.5485481766211705 -4779.0,0.548358747508161 -4780.0,0.5481693838103517 -4781.0,0.5479800855051532 -4782.0,0.5477908525699832 -4783.0,0.5476016849822679 -4784.0,0.5474125827194408 -4785.0,0.5472235457589435 -4786.0,0.5470345740782252 -4787.0,0.5468456676547431 -4788.0,0.5466568264659618 -4789.0,0.5464680504893541 -4790.0,0.5462793397024003 -4791.0,0.5460906940825886 -4792.0,0.545902113607415 -4793.0,0.5457135982543833 -4794.0,0.5455251480010047 -4795.0,0.5453367628247988 -4796.0,0.5451484427032924 -4797.0,0.5449601876140204 -4798.0,0.5447719975345253 -4799.0,0.5445838724423574 -4800.0,0.5443958123150747 -4801.0,0.544207817130243 -4802.0,0.544019886865436 -4803.0,0.5438320214982348 -4804.0,0.5436442210062286 -4805.0,0.543456485367014 -4806.0,0.5432688145581956 -4807.0,0.5430812085573856 -4808.0,0.542893667342204 -4809.0,0.5427061908902786 -4810.0,0.5425187791792446 -4811.0,0.5423314321867454 -4812.0,0.5421441498904316 -4813.0,0.541956932267962 -4814.0,0.5417697792970029 -4815.0,0.5415826909552282 -4816.0,0.5413956672203196 -4817.0,0.5412087080699666 -4818.0,0.5410218134818664 -4819.0,0.5408349834337238 -4820.0,0.5406482179032512 -4821.0,0.5404615168681691 -4822.0,0.5402748803062052 -4823.0,0.5400883081950952 -4824.0,0.5399018005125825 -4825.0,0.539715357236418 -4826.0,0.5395289783443602 -4827.0,0.5393426638141758 -4828.0,0.5391564136236386 -4829.0,0.5389702277505304 -4830.0,0.5387841061726406 -4831.0,0.5385980488677662 -4832.0,0.5384120558137119 -4833.0,0.5382261269882901 -4834.0,0.5380402623693209 -4835.0,0.5378544619346319 -4836.0,0.5376687256620586 -4837.0,0.537483053529444 -4838.0,0.5372974455146386 -4839.0,0.5371119015955009 -4840.0,0.5369264217498968 -4841.0,0.5367410059557 -4842.0,0.5365556541907915 -4843.0,0.5363703664330605 -4844.0,0.5361851426604032 -4845.0,0.535999982850724 -4846.0,0.5358148869819346 -4847.0,0.5356298550319545 -4848.0,0.5354448869787105 -4849.0,0.5352599828001375 -4850.0,0.5350751424741776 -4851.0,0.5348903659787809 -4852.0,0.5347056532919048 -4853.0,0.5345210043915144 -4854.0,0.5343364192555824 -4855.0,0.5341518978620893 -4856.0,0.5339674401890228 -4857.0,0.5337830462143787 -4858.0,0.5335987159161598 -4859.0,0.5334144492723774 -4860.0,0.5332302462610492 -4861.0,0.5330461068602016 -4862.0,0.5328620310478679 -4863.0,0.5326780188020892 -4864.0,0.5324940701009143 -4865.0,0.5323101849223993 -4866.0,0.5321263632446082 -4867.0,0.5319426050456122 -4868.0,0.5317589103034904 -4869.0,0.5315752789963295 -4870.0,0.5313917111022235 -4871.0,0.5312082065992739 -4872.0,0.5310247654655903 -4873.0,0.5308413876792893 -4874.0,0.5306580732184953 -4875.0,0.5304748220613402 -4876.0,0.5302916341859636 -4877.0,0.5301085095705124 -4878.0,0.5299254481931411 -4879.0,0.5297424500320119 -4880.0,0.5295595150652946 -4881.0,0.5293766432711662 -4882.0,0.5291938346278116 -4883.0,0.5290110891134228 -4884.0,0.5288284067061997 -4885.0,0.5286457873843498 -4886.0,0.5284632311260876 -4887.0,0.5282807379096358 -4888.0,0.5280983077132242 -4889.0,0.5279159405150902 -4890.0,0.5277336362934786 -4891.0,0.527551395026642 -4892.0,0.5273692166928402 -4893.0,0.5271871012703407 -4894.0,0.5270050487374186 -4895.0,0.5268230590723563 -4896.0,0.5266411322534434 -4897.0,0.5264592682589779 -4898.0,0.5262774670672645 -4899.0,0.5260957286566157 -4900.0,0.5259140530053513 -4901.0,0.5257324400917989 -4902.0,0.5255508898942932 -4903.0,0.5253694023911768 -4904.0,0.5251879775607995 -4905.0,0.5250066153815185 -4906.0,0.5248253158316988 -4907.0,0.5246440788897125 -4908.0,0.5244629045339395 -4909.0,0.5242817927427671 -4910.0,0.5241007434945897 -4911.0,0.5239197567678097 -4912.0,0.5237388325408366 -4913.0,0.5235579707920874 -4914.0,0.5233771714999867 -4915.0,0.5231964346429665 -4916.0,0.5230157601994662 -4917.0,0.5228351481479325 -4918.0,0.5226545984668198 -4919.0,0.52247411113459 -4920.0,0.522293686129712 -4921.0,0.5221133234306626 -4922.0,0.5219330230159258 -4923.0,0.5217527848639931 -4924.0,0.5215726089533632 -4925.0,0.5213924952625427 -4926.0,0.5212124437700453 -4927.0,0.5210324544543921 -4928.0,0.5208525272941116 -4929.0,0.5206726622677399 -4930.0,0.5204928593538204 -4931.0,0.520313118530904 -4932.0,0.5201334397775489 -4933.0,0.5199538230723206 -4934.0,0.5197742683937923 -4935.0,0.5195947757205444 -4936.0,0.5194153450311646 -4937.0,0.5192359763042483 -4938.0,0.519056669518398 -4939.0,0.5188774246522239 -4940.0,0.5186982416843431 -4941.0,0.5185191205933807 -4942.0,0.5183400613579685 -4943.0,0.5181610639567464 -4944.0,0.5179821283683611 -4945.0,0.5178032545714669 -4946.0,0.5176244425447255 -4947.0,0.5174456922668059 -4948.0,0.5172670037163846 -4949.0,0.5170883768721453 -4950.0,0.5169098117127789 -4951.0,0.5167313082169843 -4952.0,0.5165528663634671 -4953.0,0.5163744861309403 -4954.0,0.5161961674981248 -4955.0,0.5160179104437483 -4956.0,0.515839714946546 -4957.0,0.5156615809852606 -4958.0,0.515483508538642 -4959.0,0.5153054975854474 -4960.0,0.5151275481044413 -4961.0,0.5149496600743958 -4962.0,0.5147718334740901 -4963.0,0.5145940682823107 -4964.0,0.5144163644778517 -4965.0,0.514238722039514 -4966.0,0.5140611409461064 -4967.0,0.5138836211764448 -4968.0,0.5137061627093523 -4969.0,0.5135287655236594 -4970.0,0.513351429598204 -4971.0,0.513174154911831 -4972.0,0.512996941443393 -4973.0,0.5128197891717498 -4974.0,0.5126426980757681 -4975.0,0.5124656681343226 -4976.0,0.5122886993262947 -4977.0,0.5121117916305734 -4978.0,0.5119349450260549 -4979.0,0.5117581594916425 -4980.0,0.5115814350062473 -4981.0,0.511404771548787 -4982.0,0.5112281690981874 -4983.0,0.5110516276333806 -4984.0,0.5108751471333068 -4985.0,0.5106987275769131 -4986.0,0.510522368943154 -4987.0,0.510346071210991 -4988.0,0.5101698343593932 -4989.0,0.5099936583673369 -4990.0,0.5098175432138056 -4991.0,0.5096414888777897 -4992.0,0.5094654953382877 -4993.0,0.5092895625743045 -4994.0,0.5091136905648527 -4995.0,0.5089378792889521 -4996.0,0.5087621287256296 -4997.0,0.5085864388539196 -4998.0,0.5084108096528636 -4999.0,0.50823524110151 -5000.0,0.5080597331789151 -5001.0,0.5078842858641418 -5002.0,0.5077088991362607 -5003.0,0.5075335729743494 -5004.0,0.5073583073574928 -5005.0,0.5071831022647829 -5006.0,0.507007957675319 -5007.0,0.5068328735682078 -5008.0,0.5066578499225629 -5009.0,0.5064828867175053 -5010.0,0.5063079839321631 -5011.0,0.5061331415456718 -5012.0,0.5059583595371738 -5013.0,0.5057836378858191 -5014.0,0.5056089765707645 -5015.0,0.5054343755711743 -5016.0,0.5052598348662198 -5017.0,0.5050853544350795 -5018.0,0.5049109342569393 -5019.0,0.5047365743109922 -5020.0,0.5045622745764381 -5021.0,0.5043880350324844 -5022.0,0.5042138556583456 -5023.0,0.5040397364332435 -5024.0,0.5038656773364067 -5025.0,0.5036916783470715 -5026.0,0.503517739444481 -5027.0,0.5033438606078853 -5028.0,0.5031700418165422 -5029.0,0.5029962830497163 -5030.0,0.5028225842866795 -5031.0,0.5026489455067107 -5032.0,0.5024753666890962 -5033.0,0.5023018478131291 -5034.0,0.5021283888581102 -5035.0,0.5019549898033467 -5036.0,0.5017816506281537 -5037.0,0.501608371311853 -5038.0,0.5014351518337735 -5039.0,0.5012619921732515 -5040.0,0.5010888923096304 -5041.0,0.5009158522222604 -5042.0,0.5007428718904994 -5043.0,0.5005699512937117 -5044.0,0.5003970904112696 -5045.0,0.5002242892225517 -5046.0,0.5000515477069443 -5047.0,0.4998788658438404 -5048.0,0.49970624361264043 -5049.0,0.4995336809927518 -5050.0,0.4993611779635891 -5051.0,0.49918873450457385 -5052.0,0.49901635059513494 -5053.0,0.4988440262147082 -5054.0,0.49867176134273644 -5055.0,0.4984995559586699 -5056.0,0.4983274100419657 -5057.0,0.49815532357208797 -5058.0,0.49798329652850815 -5059.0,0.4978113288907046 -5060.0,0.49763942063816297 -5061.0,0.49746757175037576 -5062.0,0.4972957822068426 -5063.0,0.4971240519870704 -5064.0,0.4969523810705728 -5065.0,0.4967807694368709 -5066.0,0.49660921706549255 -5067.0,0.4964377239359728 -5068.0,0.49626629002785394 -5069.0,0.496094915320685 -5070.0,0.49592359979402223 -5071.0,0.495752343427429 -5072.0,0.49558114620047566 -5073.0,0.49541000809273966 -5074.0,0.49523892908380535 -5075.0,0.4950679091532644 -5076.0,0.4948969482807153 -5077.0,0.4947260464457636 -5078.0,0.4945552036280221 -5079.0,0.4943844198071104 -5080.0,0.49421369496265527 -5081.0,0.4940430290742905 -5082.0,0.49387242212165683 -5083.0,0.49370187408440214 -5084.0,0.4935313849421813 -5085.0,0.4933609546746562 -5086.0,0.4931905832614956 -5087.0,0.49302027068237575 -5088.0,0.4928500169169793 -5089.0,0.49267982194499643 -5090.0,0.49250968574612397 -5091.0,0.492339608300066 -5092.0,0.4921695895865335 -5093.0,0.4919996295852444 -5094.0,0.49182972827592386 -5095.0,0.49165988563830376 -5096.0,0.4914901016521232 -5097.0,0.4913203762971281 -5098.0,0.49115070955307155 -5099.0,0.4909811013997135 -5100.0,0.49081155181682096 -5101.0,0.4906420607841679 -5102.0,0.4904726282815352 -5103.0,0.4903032542887109 -5104.0,0.49013393878548983 -5105.0,0.4899646817516739 -5106.0,0.4897954831670721 -5107.0,0.48962634301150015 -5108.0,0.4894572612647809 -5109.0,0.4892882379067441 -5110.0,0.48911927291722657 -5111.0,0.4889503662760719 -5112.0,0.4887815179631309 -5113.0,0.4886127279582611 -5114.0,0.4884439962413271 -5115.0,0.48827532279220043 -5116.0,0.48810670759075964 -5117.0,0.4879381506168901 -5118.0,0.4877696518504842 -5119.0,0.4876012112714413 -5120.0,0.4874328288596676 -5121.0,0.48726450459507636 -5122.0,0.48709623845758776 -5123.0,0.4869280304271288 -5124.0,0.48675988048363344 -5125.0,0.4865917886070428 -5126.0,0.4864237547773046 -5127.0,0.4862557789743737 -5128.0,0.4860878611782118 -5129.0,0.48592000136878744 -5130.0,0.4857521995260763 -5131.0,0.48558445563006075 -5132.0,0.4854167696607302 -5133.0,0.48524914159808097 -5134.0,0.48508157142211616 -5135.0,0.484914059112846 -5136.0,0.4847466046502874 -5137.0,0.4845792080144643 -5138.0,0.48441186918540746 -5139.0,0.48424458814315463 -5140.0,0.4840773648677504 -5141.0,0.48391019933924617 -5142.0,0.48374309153770045 -5143.0,0.4835760414431783 -5144.0,0.48340904903575205 -5145.0,0.4832421142955007 -5146.0,0.48307523720251005 -5147.0,0.482908417736873 -5148.0,0.48274165587868906 -5149.0,0.4825749516080649 -5150.0,0.4824083049051138 -5151.0,0.48224171574995617 -5152.0,0.482075184122719 -5153.0,0.4819087100035363 -5154.0,0.481742293372549 -5155.0,0.48157593420990474 -5156.0,0.4814096324957581 -5157.0,0.48124338821027046 -5158.0,0.48107720133361015 -5159.0,0.4809110718459523 -5160.0,0.4807449997274788 -5161.0,0.4805789849583785 -5162.0,0.48041302751884707 -5163.0,0.4802471273890869 -5164.0,0.4800812845493075 -5165.0,0.47991549897972485 -5166.0,0.47974977066056207 -5167.0,0.47958409957204884 -5168.0,0.4794184856944219 -5169.0,0.47925292900792477 -5170.0,0.47908742949280764 -5171.0,0.47892198712932765 -5172.0,0.4787566018977487 -5173.0,0.47859127377834165 -5174.0,0.478426002751384 -5175.0,0.4782607887971601 -5176.0,0.4780956318959612 -5177.0,0.47793053202808516 -5178.0,0.4777654891738369 -5179.0,0.47760050331352794 -5180.0,0.4774355744274766 -5181.0,0.47727070249600817 -5182.0,0.4771058874994547 -5183.0,0.4769411294181548 -5184.0,0.47677642823245414 -5185.0,0.47661178392270503 -5186.0,0.4764471964692666 -5187.0,0.4762826658525048 -5188.0,0.47611819205279227 -5189.0,0.4759537750505085 -5190.0,0.4757894148260398 -5191.0,0.47562511135977914 -5192.0,0.47546086463212633 -5193.0,0.47529667462348796 -5194.0,0.4751325413142773 -5195.0,0.47496846468491444 -5196.0,0.47480444471582633 -5197.0,0.47464048138744647 -5198.0,0.4744765746802153 -5199.0,0.47431272457457985 -5200.0,0.47414893105099415 -5201.0,0.47398519408991874 -5202.0,0.473821513671821 -5203.0,0.47365788977717505 -5204.0,0.4734943223864618 -5205.0,0.47333081148016876 -5206.0,0.4731673570387903 -5207.0,0.47300395904282755 -5208.0,0.47284061747278827 -5209.0,0.472677332309187 -5210.0,0.4725141035325451 -5211.0,0.47235093112339044 -5212.0,0.4721878150622578 -5213.0,0.4720247553296887 -5214.0,0.47186175190623114 -5215.0,0.4716988047724401 -5216.0,0.4715359139088771 -5217.0,0.4713730792961106 -5218.0,0.47121030091471544 -5219.0,0.4710475787452735 -5220.0,0.4708849127683731 -5221.0,0.47072230296460943 -5222.0,0.47055974931458433 -5223.0,0.4703972517989063 -5224.0,0.4702348103981906 -5225.0,0.47007242509305913 -5226.0,0.46991009586414056 -5227.0,0.4697478226920701 -5228.0,0.46958560555748985 -5229.0,0.4694234444410484 -5230.0,0.4692613393234012 -5231.0,0.4690992901852102 -5232.0,0.4689372970071442 -5233.0,0.4687753597698785 -5234.0,0.4686134784540953 -5235.0,0.4684516530404832 -5236.0,0.4682898835097377 -5237.0,0.4681281698425608 -5238.0,0.46796651201966133 -5239.0,0.4678049100217546 -5240.0,0.4676433638295628 -5241.0,0.46748187342381453 -5242.0,0.4673204387852452 -5243.0,0.46715905989459683 -5244.0,0.4669977367326181 -5245.0,0.4668364692800643 -5246.0,0.46667525751769745 -5247.0,0.46651410142628613 -5248.0,0.4663530009866056 -5249.0,0.46619195617943776 -5250.0,0.4660309669855711 -5251.0,0.46587003338580085 -5252.0,0.4657091553609288 -5253.0,0.46554833289176334 -5254.0,0.46538756595911945 -5255.0,0.46522685454381896 -5256.0,0.46506619862669 -5257.0,0.4649055981885677 -5258.0,0.46474505321029347 -5259.0,0.46458456367271544 -5260.0,0.46442412955668844 -5261.0,0.4642637508430738 -5262.0,0.4641034275127396 -5263.0,0.4639431595465603 -5264.0,0.4637829469254172 -5265.0,0.4636227896301981 -5266.0,0.4634626876417973 -5267.0,0.46330264094111595 -5268.0,0.4631426495090616 -5269.0,0.46298271332654833 -5270.0,0.46282283237449706 -5271.0,0.46266300663383503 -5272.0,0.4625032360854963 -5273.0,0.4623435207104214 -5274.0,0.4621838604895574 -5275.0,0.462024255403858 -5276.0,0.4618647054342835 -5277.0,0.4617052105618008 -5278.0,0.46154577076738323 -5279.0,0.4613863860320109 -5280.0,0.4612270563366702 -5281.0,0.4610677816623544 -5282.0,0.4609085619900632 -5283.0,0.4607493973008028 -5284.0,0.460590287575586 -5285.0,0.4604312327954322 -5286.0,0.4602722329413673 -5287.0,0.4601132879944238 -5288.0,0.45995439793564075 -5289.0,0.4597955627460637 -5290.0,0.4596367824067447 -5291.0,0.45947805689874255 -5292.0,0.45931938620312235 -5293.0,0.45916077030095587 -5294.0,0.45900220917332135 -5295.0,0.4588437028013037 -5296.0,0.45868525116599423 -5297.0,0.45852685424849077 -5298.0,0.45836851202989776 -5299.0,0.45821022449132615 -5300.0,0.4580519916138933 -5301.0,0.4578938133787233 -5302.0,0.45773568976694656 -5303.0,0.45757762075970015 -5304.0,0.4574196063381275 -5305.0,0.4572616464833787 -5306.0,0.4571037411766103 -5307.0,0.45694589039898525 -5308.0,0.45678809413167326 -5309.0,0.4566303523558503 -5310.0,0.4564726650526989 -5311.0,0.4563150322034082 -5312.0,0.45615745378917366 -5313.0,0.4559999297911973 -5314.0,0.4558424601906878 -5315.0,0.4556850449688601 -5316.0,0.45552768410693567 -5317.0,0.4553703775861426 -5318.0,0.4552131253877153 -5319.0,0.4550559274928948 -5320.0,0.4548987838829284 -5321.0,0.4547416945390702 -5322.0,0.4545846594425804 -5323.0,0.454427678574726 -5324.0,0.4542707519167803 -5325.0,0.454113879450023 -5326.0,0.4539570611557404 -5327.0,0.45380029701522534 -5328.0,0.45364358700977686 -5329.0,0.45348693112070065 -5330.0,0.4533303293293088 -5331.0,0.45317378161691985 -5332.0,0.45301728796485874 -5333.0,0.4528608483544571 -5334.0,0.4527044627670527 -5335.0,0.45254813118398984 -5336.0,0.4523918535866194 -5337.0,0.4522356299562985 -5338.0,0.4520794602743909 -5339.0,0.4519233445222666 -5340.0,0.45176728268130223 -5341.0,0.4516112747328807 -5342.0,0.4514553206583914 -5343.0,0.45129942043923016 -5344.0,0.45114357405679917 -5345.0,0.4509877814925071 -5346.0,0.4508320427277691 -5347.0,0.45067635774400666 -5348.0,0.45052072652264763 -5349.0,0.4503651490451264 -5350.0,0.4502096252928837 -5351.0,0.4500541552473666 -5352.0,0.4498987388900288 -5353.0,0.4497433762023302 -5354.0,0.44958806716573707 -5355.0,0.44943281176172234 -5356.0,0.4492776099717651 -5357.0,0.4491224617773508 -5358.0,0.4489673671599716 -5359.0,0.4488123261011257 -5360.0,0.4486573385823178 -5361.0,0.4485024045850592 -5362.0,0.4483475240908672 -5363.0,0.44819269708126586 -5364.0,0.44803792353778527 -5365.0,0.4478832034419622 -5366.0,0.44772853677533964 -5367.0,0.447573923519467 -5368.0,0.4474193636559 -5369.0,0.44726485716620085 -5370.0,0.4471104040319379 -5371.0,0.4469560042346862 -5372.0,0.44680165775602687 -5373.0,0.44664736457754756 -5374.0,0.4464931246808422 -5375.0,0.44633893804751107 -5376.0,0.4461848046591608 -5377.0,0.44603072449740455 -5378.0,0.4458766975438615 -5379.0,0.4457227237801575 -5380.0,0.44556880318792447 -5381.0,0.44541493574880087 -5382.0,0.4452611214444315 -5383.0,0.4451073602564673 -5384.0,0.4449536521665658 -5385.0,0.4447999971563907 -5386.0,0.444646395207612 -5387.0,0.4444928463019063 -5388.0,0.4443393504209562 -5389.0,0.44418590754645065 -5390.0,0.4440325176600853 -5391.0,0.4438791807435617 -5392.0,0.44372589677858787 -5393.0,0.44357266574687815 -5394.0,0.44341948763015326 -5395.0,0.44326636241014017 -5396.0,0.44311329006857203 -5397.0,0.44296027058718856 -5398.0,0.4428073039477356 -5399.0,0.44265439013196534 -5400.0,0.44250152912163626 -5401.0,0.44234872089851324 -5402.0,0.4421959654443673 -5403.0,0.4420432627409758 -5404.0,0.4418906127701225 -5405.0,0.44173801551359726 -5406.0,0.4415854709531965 -5407.0,0.44143297907072265 -5408.0,0.4412805398479845 -5409.0,0.44112815326679733 -5410.0,0.4409758193089824 -5411.0,0.4408235379563674 -5412.0,0.44067130919078634 -5413.0,0.44051913299407935 -5414.0,0.440367009348093 -5415.0,0.44021493823467994 -5416.0,0.44006291963569927 -5417.0,0.4399109535330163 -5418.0,0.4397590399085025 -5419.0,0.4396071787440358 -5420.0,0.4394553700215002 -5421.0,0.439303613722786 -5422.0,0.4391519098297898 -5423.0,0.43900025832441447 -5424.0,0.438848659188569 -5425.0,0.43869711240416887 -5426.0,0.4385456179531355 -5427.0,0.4383941758173968 -5428.0,0.4382427859788868 -5429.0,0.4380914484195458 -5430.0,0.43794016312132034 -5431.0,0.43778893006616315 -5432.0,0.4376377492360332 -5433.0,0.4374866206128959 -5434.0,0.4373355441787225 -5435.0,0.4371845199154908 -5436.0,0.4370335478051846 -5437.0,0.43688262782979415 -5438.0,0.43673175997131575 -5439.0,0.4365809442117519 -5440.0,0.43643018053311156 -5441.0,0.4362794689174095 -5442.0,0.4361288093466671 -5443.0,0.43597820180291164 -5444.0,0.43582764626817677 -5445.0,0.4356771427245024 -5446.0,0.4355266911539344 -5447.0,0.4353762915385252 -5448.0,0.43522594386033303 -5449.0,0.43507564810142263 -5450.0,0.4349254042438648 -5451.0,0.4347752122697364 -5452.0,0.43462507216112084 -5453.0,0.43447498390010736 -5454.0,0.4343249474687916 -5455.0,0.4341749628492752 -5456.0,0.43402503002366616 -5457.0,0.43387514897407864 -5458.0,0.43372531968263284 -5459.0,0.4335755421314552 -5460.0,0.43342581630267846 -5461.0,0.43327614217844135 -5462.0,0.4331265197408888 -5463.0,0.432976948972172 -5464.0,0.4328274298544483 -5465.0,0.43267796236988093 -5466.0,0.4325285465006398 -5467.0,0.43237918222890054 -5468.0,0.4322298695368451 -5469.0,0.43208060840666157 -5470.0,0.4319313988205442 -5471.0,0.4317822407606933 -5472.0,0.43163313420931554 -5473.0,0.43148407914862347 -5474.0,0.43133507556083595 -5475.0,0.4311861234281779 -5476.0,0.43103722273288053 -5477.0,0.43088837345718095 -5478.0,0.4307395755833226 -5479.0,0.4305908290935549 -5480.0,0.4304421339701336 -5481.0,0.4302934901953203 -5482.0,0.43014489775138304 -5483.0,0.42999635662059577 -5484.0,0.4298478667852385 -5485.0,0.42969942822759766 -5486.0,0.4295510409299655 -5487.0,0.42940270487464055 -5488.0,0.4292544200439274 -5489.0,0.42910618642013665 -5490.0,0.42895800398558526 -5491.0,0.428809872722596 -5492.0,0.428661792613498 -5493.0,0.4285137636406264 -5494.0,0.4283657857863223 -5495.0,0.4282178590329331 -5496.0,0.42806998336281216 -5497.0,0.42792215875831907 -5498.0,0.42777438520181943 -5499.0,0.4276266626756849 -5500.0,0.4274789911622932 -5501.0,0.4273313706440283 -5502.0,0.42718380110328014 -5503.0,0.42703628252244463 -5504.0,0.426888814883924 -5505.0,0.4267413981701264 -5506.0,0.4265940323634661 -5507.0,0.4264467174463635 -5508.0,0.4262994534012448 -5509.0,0.42615224021054265 -5510.0,0.42600507785669556 -5511.0,0.4258579663221481 -5512.0,0.42571090558935093 -5513.0,0.42556389564076086 -5514.0,0.42541693645884054 -5515.0,0.42527002802605895 -5516.0,0.4251231703248909 -5517.0,0.42497636333781735 -5518.0,0.4248296070473253 -5519.0,0.4246829014359078 -5520.0,0.4245362464860639 -5521.0,0.42438964218029884 -5522.0,0.42424308850112363 -5523.0,0.42409658543105566 -5524.0,0.42395013295261813 -5525.0,0.42380373104834024 -5526.0,0.4236573797007574 -5527.0,0.42351107889241096 -5528.0,0.42336482860584823 -5529.0,0.4232186288236227 -5530.0,0.42307247952829374 -5531.0,0.42292638070242683 -5532.0,0.4227803323285934 -5533.0,0.42263433438937104 -5534.0,0.4224883868673432 -5535.0,0.4223424897450994 -5536.0,0.42219664300523524 -5537.0,0.42205084663035214 -5538.0,0.42190510060305775 -5539.0,0.42175940490596564 -5540.0,0.42161375952169533 -5541.0,0.4214681644328724 -5542.0,0.4213226196221284 -5543.0,0.421177125072101 -5544.0,0.4210316807654336 -5545.0,0.4208862866847759 -5546.0,0.42074094281278335 -5547.0,0.4205956491321175 -5548.0,0.4204504056254459 -5549.0,0.4203052122754421 -5550.0,0.4201600690647855 -5551.0,0.4200149759761616 -5552.0,0.4198699329922619 -5553.0,0.41972494009578376 -5554.0,0.4195799972694307 -5555.0,0.4194351044959119 -5556.0,0.4192902617579429 -5557.0,0.41914546903824496 -5558.0,0.41900072631954527 -5559.0,0.41885603358457724 -5560.0,0.4187113908160799 -5561.0,0.4185667979967986 -5562.0,0.4184222551094844 -5563.0,0.4182777621368943 -5564.0,0.4181333190617915 -5565.0,0.4179889258669449 -5566.0,0.41784458253512946 -5567.0,0.4177002890491261 -5568.0,0.4175560453917216 -5569.0,0.4174118515457088 -5570.0,0.41726770749388636 -5571.0,0.41712361321905905 -5572.0,0.41697956870403735 -5573.0,0.4168355739316379 -5574.0,0.41669162888468314 -5575.0,0.41654773354600144 -5576.0,0.4164038878984272 -5577.0,0.4162600919248006 -5578.0,0.41611634560796795 -5579.0,0.4159726489307812 -5580.0,0.4158290018760985 -5581.0,0.4156854044267838 -5582.0,0.41554185656570697 -5583.0,0.4153983582757438 -5584.0,0.4152549095397759 -5585.0,0.41511151034069094 -5586.0,0.4149681606613825 -5587.0,0.4148248604847499 -5588.0,0.4146816097936986 -5589.0,0.41453840857113977 -5590.0,0.4143952567999905 -5591.0,0.41425215446317387 -5592.0,0.41410910154361885 -5593.0,0.41396609802426027 -5594.0,0.41382314388803876 -5595.0,0.413680239117901 -5596.0,0.41353738369679954 -5597.0,0.41339457760769266 -5598.0,0.41325182083354467 -5599.0,0.4131091133573258 -5600.0,0.412966455162012 -5601.0,0.41282384623058527 -5602.0,0.41268128654603337 -5603.0,0.4125387760913499 -5604.0,0.41239631484953454 -5605.0,0.4122539028035926 -5606.0,0.4121115399365354 -5607.0,0.41196922623138005 -5608.0,0.41182696167114957 -5609.0,0.41168474623887286 -5610.0,0.41154257991758464 -5611.0,0.41140046269032554 -5612.0,0.41125839454014196 -5613.0,0.4111163754500863 -5614.0,0.41097440540321656 -5615.0,0.41083248438259684 -5616.0,0.410690612371297 -5617.0,0.41054878935239275 -5618.0,0.4104070153089656 -5619.0,0.41026529022410296 -5620.0,0.4101236140808981 -5621.0,0.4099819868624501 -5622.0,0.4098404085518637 -5623.0,0.40969887913224984 -5624.0,0.409557398586725 -5625.0,0.4094159668984116 -5626.0,0.4092745840504379 -5627.0,0.4091332500259378 -5628.0,0.4089919648080514 -5629.0,0.4088507283799243 -5630.0,0.408709540724708 -5631.0,0.4085684018255599 -5632.0,0.4084273116656431 -5633.0,0.40828627022812664 -5634.0,0.4081452774961853 -5635.0,0.4080043334529996 -5636.0,0.4078634380817559 -5637.0,0.4077225913656466 -5638.0,0.4075817932878696 -5639.0,0.4074410438316287 -5640.0,0.40730034298013357 -5641.0,0.4071596907165996 -5642.0,0.407019087024248 -5643.0,0.40687853188630574 -5644.0,0.40673802528600567 -5645.0,0.40659756720658635 -5646.0,0.40645715763129214 -5647.0,0.40631679654337327 -5648.0,0.40617648392608563 -5649.0,0.40603621976269094 -5650.0,0.4058960040364567 -5651.0,0.4057558367306563 -5652.0,0.40561571782856864 -5653.0,0.4054756473134787 -5654.0,0.405335625168677 -5655.0,0.4051956513774599 -5656.0,0.4050557259231296 -5657.0,0.40491584878899406 -5658.0,0.40477601995836693 -5659.0,0.40463623941456756 -5660.0,0.4044965071409213 -5661.0,0.40435682312075893 -5662.0,0.4042171873374173 -5663.0,0.40407759977423885 -5664.0,0.4039380604145718 -5665.0,0.4037985692417701 -5666.0,0.4036591262391935 -5667.0,0.4035197313902074 -5668.0,0.4033803846781831 -5669.0,0.4032410860864975 -5670.0,0.4031018355985333 -5671.0,0.40296263319767894 -5672.0,0.4028234788673286 -5673.0,0.40268437259088213 -5674.0,0.40254531435174523 -5675.0,0.40240630413332923 -5676.0,0.4022673419190513 -5677.0,0.40212842769233414 -5678.0,0.40198956143660636 -5679.0,0.4018507431353022 -5680.0,0.40171197277186177 -5681.0,0.40157325032973057 -5682.0,0.4014345757923602 -5683.0,0.4012959491432077 -5684.0,0.40115737036573595 -5685.0,0.40101883944341354 -5686.0,0.4008803563597147 -5687.0,0.4007419210981194 -5688.0,0.4006035336421134 -5689.0,0.4004651939751879 -5690.0,0.40032690208084026 -5691.0,0.4001886579425731 -5692.0,0.40005046154389484 -5693.0,0.3999123128683198 -5694.0,0.3997742118993678 -5695.0,0.3996361586205644 -5696.0,0.39949815301544084 -5697.0,0.39936019506753406 -5698.0,0.3992222847603867 -5699.0,0.399084422077547 -5700.0,0.39894660700256906 -5701.0,0.39880883951901247 -5702.0,0.39867111961044255 -5703.0,0.39853344726043044 -5704.0,0.3983958224525527 -5705.0,0.3982582451703917 -5706.0,0.3981207153975356 -5707.0,0.39798323311757794 -5708.0,0.3978457983141182 -5709.0,0.3977084109707614 -5710.0,0.39757107107111817 -5711.0,0.39743377859880485 -5712.0,0.3972965335374436 -5713.0,0.39715933587066193 -5714.0,0.3970221855820932 -5715.0,0.3968850826553764 -5716.0,0.3967480270741562 -5717.0,0.3966110188220827 -5718.0,0.396474057882812 -5719.0,0.39633714424000555 -5720.0,0.39620027787733064 -5721.0,0.39606345877846 -5722.0,0.39592668692707217 -5723.0,0.39578996230685126 -5724.0,0.39565328490148705 -5725.0,0.39551665469467484 -5726.0,0.39538007167011574 -5727.0,0.39524353581151633 -5728.0,0.39510704710258887 -5729.0,0.3949706055270513 -5730.0,0.39483421106862704 -5731.0,0.39469786371104537 -5732.0,0.39456156343804094 -5733.0,0.3944253102333542 -5734.0,0.39428910408073103 -5735.0,0.3941529449639231 -5736.0,0.3940168328666876 -5737.0,0.3938807677727874 -5738.0,0.3937447496659908 -5739.0,0.393608778530072 -5740.0,0.3934728543488105 -5741.0,0.3933369771059916 -5742.0,0.3932011467854061 -5743.0,0.39306536337085046 -5744.0,0.3929296268461267 -5745.0,0.39279393719504246 -5746.0,0.3926582944014109 -5747.0,0.3925226984490509 -5748.0,0.3923871493217868 -5749.0,0.39225164700344856 -5750.0,0.3921161914778718 -5751.0,0.39198078272889764 -5752.0,0.3918454207403728 -5753.0,0.3917101054961496 -5754.0,0.3915748369800859 -5755.0,0.3914396151760451 -5756.0,0.39130444006789633 -5757.0,0.3911693116395141 -5758.0,0.3910342298747786 -5759.0,0.39089919475757556 -5760.0,0.3907642062717963 -5761.0,0.39062926440133766 -5762.0,0.39049436913010205 -5763.0,0.39035952044199745 -5764.0,0.3902247183209374 -5765.0,0.390089962750841 -5766.0,0.3899552537156329 -5767.0,0.3898205911992432 -5768.0,0.38968597518560777 -5769.0,0.38955140565866786 -5770.0,0.3894168826023703 -5771.0,0.38928240600066744 -5772.0,0.38914797583751726 -5773.0,0.3890135920968832 -5774.0,0.3888792547627342 -5775.0,0.3887449638190449 -5776.0,0.3886107192497953 -5777.0,0.388476521038971 -5778.0,0.38834236917056314 -5779.0,0.3882082636285684 -5780.0,0.38807420439698903 -5781.0,0.3879401914598326 -5782.0,0.38780622480111243 -5783.0,0.38767230440484723 -5784.0,0.38753843025506135 -5785.0,0.38740460233578444 -5786.0,0.387270820631052 -5787.0,0.38713708512490463 -5788.0,0.3870033958013888 -5789.0,0.3868697526445564 -5790.0,0.38673615563846464 -5791.0,0.38660260476717645 -5792.0,0.38646910001476015 -5793.0,0.38633564136528964 -5794.0,0.38620222880284416 -5795.0,0.3860688623115087 -5796.0,0.3859355418753736 -5797.0,0.38580226747853463 -5798.0,0.38566903910509315 -5799.0,0.385535856739156 -5800.0,0.3854027203648355 -5801.0,0.38526962996624947 -5802.0,0.3851365855275211 -5803.0,0.3850035870327793 -5804.0,0.3848706344661582 -5805.0,0.38473772781179755 -5806.0,0.38460486705384256 -5807.0,0.384472052176444 -5808.0,0.3843392831637579 -5809.0,0.38420655999994596 -5810.0,0.3840738826691753 -5811.0,0.3839412511556184 -5812.0,0.38380866544345327 -5813.0,0.38367612551686353 -5814.0,0.383543631360038 -5815.0,0.38341118295717114 -5816.0,0.3832787802924629 -5817.0,0.38314642335011845 -5818.0,0.3830141121143487 -5819.0,0.38288184656936985 -5820.0,0.3827496266994036 -5821.0,0.382617452488677 -5822.0,0.38248532392142276 -5823.0,0.38235324098187884 -5824.0,0.38222120365428863 -5825.0,0.38208921192290113 -5826.0,0.3819572657719707 -5827.0,0.3818253651857571 -5828.0,0.3816935101485256 -5829.0,0.38156170064454675 -5830.0,0.3814299366580967 -5831.0,0.381298218173457 -5832.0,0.3811665451749145 -5833.0,0.3810349176467617 -5834.0,0.38090333557329625 -5835.0,0.38077179893882146 -5836.0,0.380640307727646 -5837.0,0.38050886192408384 -5838.0,0.3803774615124545 -5839.0,0.38024610647708285 -5840.0,0.3801147968022992 -5841.0,0.3799835324724393 -5842.0,0.3798523134718442 -5843.0,0.37972113978486055 -5844.0,0.3795900113958401 -5845.0,0.3794589282891403 -5846.0,0.37932789044912396 -5847.0,0.3791968978601591 -5848.0,0.3790659505066193 -5849.0,0.37893504837288355 -5850.0,0.3788041914433361 -5851.0,0.3786733797023667 -5852.0,0.37854261313437043 -5853.0,0.3784118917237479 -5854.0,0.3782812154549049 -5855.0,0.37815058431225274 -5856.0,0.37801999828020805 -5857.0,0.37788945734319285 -5858.0,0.37775896148563465 -5859.0,0.3776285106919662 -5860.0,0.3774981049466256 -5861.0,0.3773677442340565 -5862.0,0.3772374285387078 -5863.0,0.3771071578450337 -5864.0,0.37697693213749395 -5865.0,0.3768467514005535 -5866.0,0.37671661561868286 -5867.0,0.3765865247763576 -5868.0,0.37645647885805905 -5869.0,0.3763264778482735 -5870.0,0.3761965217314928 -5871.0,0.37606661049221424 -5872.0,0.37593674411494027 -5873.0,0.37580692258417875 -5874.0,0.375677145884443 -5875.0,0.37554741400025154 -5876.0,0.37541772691612835 -5877.0,0.3752880846166027 -5878.0,0.3751584870862092 -5879.0,0.3750289343094878 -5880.0,0.37489942627098377 -5881.0,0.3747699629552478 -5882.0,0.3746405443468358 -5883.0,0.3745111704303092 -5884.0,0.3743818411902345 -5885.0,0.3742525566111837 -5886.0,0.37412331667773413 -5887.0,0.37399412137446836 -5888.0,0.37386497068597435 -5889.0,0.37373586459684544 -5890.0,0.3736068030916801 -5891.0,0.37347778615508226 -5892.0,0.3733488137716612 -5893.0,0.3732198859260314 -5894.0,0.3730910026028127 -5895.0,0.3729621637866303 -5896.0,0.37283336946211465 -5897.0,0.3727046196139015 -5898.0,0.372575914226632 -5899.0,0.3724472532849525 -5900.0,0.3723186367735146 -5901.0,0.3721900646769754 -5902.0,0.37206153697999717 -5903.0,0.3719330536672475 -5904.0,0.37180461472339926 -5905.0,0.37167622013313056 -5906.0,0.3715478698811249 -5907.0,0.3714195639520711 -5908.0,0.3712913023306631 -5909.0,0.3711630850016003 -5910.0,0.3710349119495872 -5911.0,0.37090678315933384 -5912.0,0.37077869861555524 -5913.0,0.37065065830297195 -5914.0,0.37052266220630964 -5915.0,0.37039471031029936 -5916.0,0.3702668025996773 -5917.0,0.3701389390591851 -5918.0,0.37001111967356953 -5919.0,0.36988334442758264 -5920.0,0.3697556133059818 -5921.0,0.3696279262935296 -5922.0,0.3695002833749939 -5923.0,0.36937268453514793 -5924.0,0.36924512975877 -5925.0,0.3691176190306438 -5926.0,0.3689901523355581 -5927.0,0.3688627296583072 -5928.0,0.3687353509836904 -5929.0,0.36860801629651246 -5930.0,0.3684807255815832 -5931.0,0.3683534788237178 -5932.0,0.3682262760077366 -5933.0,0.3680991171184653 -5934.0,0.3679720021407347 -5935.0,0.367844931059381 -5936.0,0.3677179038592455 -5937.0,0.3675909205251747 -5938.0,0.3674639810420206 -5939.0,0.36733708539464005 -5940.0,0.3672102335678955 -5941.0,0.3670834255466543 -5942.0,0.3669566613157893 -5943.0,0.3668299408601783 -5944.0,0.36670326416470467 -5945.0,0.3665766312142566 -5946.0,0.3664500419937279 -5947.0,0.3663234964880172 -5948.0,0.36619699468202865 -5949.0,0.3660705365606716 -5950.0,0.36594412210886035 -5951.0,0.3658177513115147 -5952.0,0.36569142415355943 -5953.0,0.36556514061992473 -5954.0,0.3654389006955458 -5955.0,0.3653127043653633 -5956.0,0.3651865516143227 -5957.0,0.36506044242737506 -5958.0,0.3649343767894764 -5959.0,0.3648083546855881 -5960.0,0.36468237610067644 -5961.0,0.3645564410197134 -5962.0,0.36443054942767555 -5963.0,0.3643047013095451 -5964.0,0.3641788966503092 -5965.0,0.3640531354349605 -5966.0,0.36392741764849623 -5967.0,0.3638017432759194 -5968.0,0.36367611230223806 -5969.0,0.36355052471246513 -5970.0,0.3634249804916191 -5971.0,0.3632994796247233 -5972.0,0.3631740220968066 -5973.0,0.3630486078929026 -5974.0,0.3629232369980505 -5975.0,0.36279790939729434 -5976.0,0.36267262507568354 -5977.0,0.3625473840182725 -5978.0,0.36242218621012096 -5979.0,0.3622970316362936 -5980.0,0.3621719202818606 -5981.0,0.3620468521318969 -5982.0,0.36192182717148297 -5983.0,0.361796845385704 -5984.0,0.36167190675965083 -5985.0,0.36154701127841893 -5986.0,0.3614221589271093 -5987.0,0.36129734969082816 -5988.0,0.36117258355468634 -5989.0,0.36104786050380044 -5990.0,0.36092318052329164 -5991.0,0.36079854359828684 -5992.0,0.3606739497139174 -5993.0,0.3605493988553205 -5994.0,0.3604248910076379 -5995.0,0.360300426156017 -5996.0,0.3601760042856097 -5997.0,0.3600516253815736 -5998.0,0.35992728942907115 -5999.0,0.35980299641327 -6000.0,0.3596787463193428 -6001.0,0.35955453913246765 -6002.0,0.35943037483782725 -6003.0,0.35930625342060996 -6004.0,0.3591821748660088 -6005.0,0.35905813915922213 -6006.0,0.35893414628545356 -6007.0,0.3588101962299115 -6008.0,0.3586862889778097 -6009.0,0.35856242451436676 -6010.0,0.3584386028248068 -6011.0,0.35831482389435854 -6012.0,0.3581910877082563 -6013.0,0.358067394251739 -6014.0,0.35794374351005115 -6015.0,0.357820135468442 -6016.0,0.35769657011216605 -6017.0,0.3575730474264827 -6018.0,0.3574495673966569 -6019.0,0.3573261300079581 -6020.0,0.35720273524566126 -6021.0,0.3570793830950462 -6022.0,0.3569560735413981 -6023.0,0.3568328065700067 -6024.0,0.35670958216616744 -6025.0,0.35658640031518046 -6026.0,0.356463261002351 -6027.0,0.3563401642129896 -6028.0,0.35621710993241146 -6029.0,0.35609409814593734 -6030.0,0.35597112883889265 -6031.0,0.35584820199660816 -6032.0,0.35572531760441956 -6033.0,0.35560247564766767 -6034.0,0.35547967611169823 -6035.0,0.35535691898186234 -6036.0,0.35523420424351576 -6037.0,0.3551115318820197 -6038.0,0.35498890188274007 -6039.0,0.3548663142310482 -6040.0,0.35474376891232007 -6041.0,0.35462126591193716 -6042.0,0.35449880521528543 -6043.0,0.35437638680775646 -6044.0,0.35425401067474666 -6045.0,0.3541316768016572 -6046.0,0.3540093851738948 -6047.0,0.3538871357768708 -6048.0,0.35376492859600184 -6049.0,0.3536427636167094 -6050.0,0.35352064082442014 -6051.0,0.35339856020456567 -6052.0,0.3532765217425828 -6053.0,0.35315452542391296 -6054.0,0.35303257123400317 -6055.0,0.352910659158305 -6056.0,0.3527887891822753 -6057.0,0.3526669612913758 -6058.0,0.35254517547107345 -6059.0,0.35242343170683993 -6060.0,0.3523017299841522 -6061.0,0.35218007028849213 -6062.0,0.3520584526053465 -6063.0,0.3519368769202074 -6064.0,0.3518153432185716 -6065.0,0.35169385148594107 -6066.0,0.35157240170782267 -6067.0,0.3514509938697284 -6068.0,0.3513296279571751 -6069.0,0.3512083039556848 -6070.0,0.35108702185078433 -6071.0,0.35096578162800574 -6072.0,0.35084458327288587 -6073.0,0.3507234267709667 -6074.0,0.350602312107795 -6075.0,0.3504812392689229 -6076.0,0.35036020823990704 -6077.0,0.35023921900630955 -6078.0,0.3501182715536971 -6079.0,0.3499973658676417 -6080.0,0.34987650193372 -6081.0,0.3497556797375139 -6082.0,0.3496348992646104 -6083.0,0.3495141605006009 -6084.0,0.3493934634310824 -6085.0,0.3492728080416565 -6086.0,0.34915219431793 -6087.0,0.34903162224551443 -6088.0,0.34891109181002655 -6089.0,0.34879060299708786 -6090.0,0.348670155792325 -6091.0,0.3485497501813694 -6092.0,0.3484293861498577 -6093.0,0.3483090636834311 -6094.0,0.3481887827677363 -6095.0,0.34806854338842447 -6096.0,0.347948345531152 -6097.0,0.3478281891815801 -6098.0,0.34770807432537515 -6099.0,0.3475880009482081 -6100.0,0.34746796903575516 -6101.0,0.34734797857369754 -6102.0,0.3472280295477211 -6103.0,0.3471081219435168 -6104.0,0.34698825574678055 -6105.0,0.3468684309432133 -6106.0,0.34674864751852064 -6107.0,0.3466289054584134 -6108.0,0.3465092047486072 -6109.0,0.34638954537482264 -6110.0,0.3462699273227851 -6111.0,0.34615035057822524 -6112.0,0.3460308151268783 -6113.0,0.3459113209544845 -6114.0,0.3457918680467892 -6115.0,0.34567245638954247 -6116.0,0.3455530859684993 -6117.0,0.3454337567694199 -6118.0,0.3453144687780689 -6119.0,0.3451952219802162 -6120.0,0.3450760163616366 -6121.0,0.34495685190810965 -6122.0,0.34483772860542 -6123.0,0.344718646439357 -6124.0,0.3445996053957151 -6125.0,0.3444806054602935 -6126.0,0.34436164661889646 -6127.0,0.3442427288573329 -6128.0,0.34412385216141705 -6129.0,0.3440050165169676 -6130.0,0.34388622190980833 -6131.0,0.34376746832576793 -6132.0,0.34364875575068005 -6133.0,0.343530084170383 -6134.0,0.3434114535707203 -6135.0,0.34329286393753994 -6136.0,0.3431743152566953 -6137.0,0.3430558075140442 -6138.0,0.3429373406954496 -6139.0,0.3428189147867794 -6140.0,0.34270052977390597 -6141.0,0.34258218564270715 -6142.0,0.34246388237906505 -6143.0,0.34234561996886725 -6144.0,0.34222739839800564 -6145.0,0.34210921765237745 -6146.0,0.34199107771788445 -6147.0,0.3418729785804335 -6148.0,0.34175492022593607 -6149.0,0.3416369026403089 -6150.0,0.34151892580947313 -6151.0,0.3414009897193552 -6152.0,0.34128309435588594 -6153.0,0.34116523970500157 -6154.0,0.34104742575264263 -6155.0,0.340929652484755 -6156.0,0.340811919887289 -6157.0,0.3406942279462 -6158.0,0.34057657664744845 -6159.0,0.3404589659769991 -6160.0,0.34034139592082213 -6161.0,0.340223866464892 -6162.0,0.3401063775951886 -6163.0,0.33998892929769614 -6164.0,0.339871521558404 -6165.0,0.33975415436330625 -6166.0,0.33963682769840187 -6167.0,0.3395195415496946 -6168.0,0.33940229590319315 -6169.0,0.3392850907449108 -6170.0,0.33916792606086604 -6171.0,0.3390508018370818 -6172.0,0.3389337180595862 -6173.0,0.3388166747144118 -6174.0,0.3386996717875963 -6175.0,0.338582709265182 -6176.0,0.33846578713321623 -6177.0,0.3383489053777511 -6178.0,0.33823206398484323 -6179.0,0.33811526294055455 -6180.0,0.33799850223095135 -6181.0,0.3378817818421051 -6182.0,0.3377651017600917 -6183.0,0.3376484619709923 -6184.0,0.3375318624608924 -6185.0,0.3374153032158827 -6186.0,0.3372987842220584 -6187.0,0.3371823054655198 -6188.0,0.3370658669323716 -6189.0,0.3369494686087238 -6190.0,0.33683311048069076 -6191.0,0.33671679253439185 -6192.0,0.3366005147559511 -6193.0,0.3364842771314976 -6194.0,0.33636807964716486 -6195.0,0.33625192228909145 -6196.0,0.3361358050434207 -6197.0,0.3360197278963006 -6198.0,0.335903690833884 -6199.0,0.3357876938423285 -6200.0,0.3356717369077966 -6201.0,0.33555582001645534 -6202.0,0.3354399431544769 -6203.0,0.3353241063080377 -6204.0,0.3352083094633196 -6205.0,0.33509255260650855 -6206.0,0.3349768357237959 -6207.0,0.3348611588013772 -6208.0,0.33474552182545325 -6209.0,0.33462992478222925 -6210.0,0.3345143676579154 -6211.0,0.3343988504387265 -6212.0,0.3342833731108824 -6213.0,0.3341679356606072 -6214.0,0.3340525380741302 -6215.0,0.33393718033768544 -6216.0,0.33382186243751133 -6217.0,0.33370658435985145 -6218.0,0.33359134609095387 -6219.0,0.3334761476170716 -6220.0,0.33336098892446225 -6221.0,0.33324586999938827 -6222.0,0.3331307908281167 -6223.0,0.3330157513969196 -6224.0,0.3329007516920734 -6225.0,0.3327857916998597 -6226.0,0.33267087140656443 -6227.0,0.33255599079847853 -6228.0,0.33244114986189754 -6229.0,0.3323263485831218 -6230.0,0.33221158694845637 -6231.0,0.332096864944211 -6232.0,0.33198218255670014 -6233.0,0.33186753977224304 -6234.0,0.33175293657716376 -6235.0,0.33163837295779086 -6236.0,0.33152384890045783 -6237.0,0.33140936439150265 -6238.0,0.33129491941726824 -6239.0,0.33118051396410214 -6240.0,0.33106614801835665 -6241.0,0.33095182156638864 -6242.0,0.33083753459455995 -6243.0,0.3307232870892368 -6244.0,0.3306090790367905 -6245.0,0.33049491042359663 -6246.0,0.33038078123603587 -6247.0,0.33026669146049337 -6248.0,0.3301526410833592 -6249.0,0.3300386300910277 -6250.0,0.32992465846989844 -6251.0,0.3298107262063753 -6252.0,0.32969683328686705 -6253.0,0.3295829796977871 -6254.0,0.32946916542555355 -6255.0,0.3293553904565891 -6256.0,0.32924165477732137 -6257.0,0.32912795837418246 -6258.0,0.3290143012336091 -6259.0,0.32890068334204303 -6260.0,0.32878710468593025 -6261.0,0.32867356525172187 -6262.0,0.3285600650258733 -6263.0,0.32844660399484493 -6264.0,0.3283331821451015 -6265.0,0.32821979946311275 -6266.0,0.3281064559353529 -6267.0,0.327993151548301 -6268.0,0.32787988628844045 -6269.0,0.32776666014225975 -6270.0,0.3276534730962517 -6271.0,0.3275403251369139 -6272.0,0.32742721625074883 -6273.0,0.32731414642426315 -6274.0,0.3272011156439687 -6275.0,0.3270881238963815 -6276.0,0.32697517116802266 -6277.0,0.3268622574454176 -6278.0,0.3267493827150967 -6279.0,0.32663654696359457 -6280.0,0.326523750177451 -6281.0,0.3264109923432099 -6282.0,0.32629827344742035 -6283.0,0.3261855934766356 -6284.0,0.3260729524174139 -6285.0,0.32596035025631787 -6286.0,0.32584778697991496 -6287.0,0.3257352625747771 -6288.0,0.3256227770274811 -6289.0,0.32551033032460813 -6290.0,0.3253979224527442 -6291.0,0.3252855533984798 -6292.0,0.3251732231484102 -6293.0,0.3250609316891352 -6294.0,0.3249486790072591 -6295.0,0.32483646508939124 -6296.0,0.3247242899221451 -6297.0,0.3246121534921391 -6298.0,0.3245000557859961 -6299.0,0.32438799679034386 -6300.0,0.3242759764918143 -6301.0,0.32416399487704434 -6302.0,0.3240520519326754 -6303.0,0.3239401476453535 -6304.0,0.32382828200172925 -6305.0,0.3237164549884579 -6306.0,0.32360466659219933 -6307.0,0.32349291679961795 -6308.0,0.3233812055973828 -6309.0,0.32326953297216765 -6310.0,0.3231578989106508 -6311.0,0.3230463033995149 -6312.0,0.32293474642544767 -6313.0,0.32282322797514096 -6314.0,0.3227117480352917 -6315.0,0.3226003065926008 -6316.0,0.3224889036337744 -6317.0,0.3223775391455228 -6318.0,0.32226621311456105 -6319.0,0.32215492552760877 -6320.0,0.32204367637139025 -6321.0,0.32193246563263406 -6322.0,0.32182129329807385 -6323.0,0.3217101593544473 -6324.0,0.3215990637884972 -6325.0,0.32148800658697035 -6326.0,0.32137698773661877 -6327.0,0.32126600722419846 -6328.0,0.32115506503647034 -6329.0,0.3210441611601999 -6330.0,0.32093329558215705 -6331.0,0.3208224682891163 -6332.0,0.3207116792678568 -6333.0,0.32060092850516225 -6334.0,0.32049021598782085 -6335.0,0.32037954170262545 -6336.0,0.32026890563637334 -6337.0,0.3201583077758665 -6338.0,0.32004774810791137 -6339.0,0.31993722661931906 -6340.0,0.3198267432969051 -6341.0,0.31971629812748964 -6342.0,0.3196058910978974 -6343.0,0.31949552219495764 -6344.0,0.3193851914055041 -6345.0,0.31927489871637516 -6346.0,0.3191646441144137 -6347.0,0.31905442758646707 -6348.0,0.31894424911938746 -6349.0,0.31883410870003115 -6350.0,0.3187240063152594 -6351.0,0.31861394195193754 -6352.0,0.3185039155969359 -6353.0,0.31839392723712906 -6354.0,0.31828397685939624 -6355.0,0.31817406445062113 -6356.0,0.31806418999769204 -6357.0,0.3179543534875016 -6358.0,0.31784455490694735 -6359.0,0.3177347942429309 -6360.0,0.3176250714823588 -6361.0,0.3175153866121417 -6362.0,0.3174057396191952 -6363.0,0.31729613049043903 -6364.0,0.3171865592127978 -6365.0,0.31707702577320035 -6366.0,0.31696753015858015 -6367.0,0.3168580723558752 -6368.0,0.3167486523520279 -6369.0,0.31663927013398546 -6370.0,0.3165299256886991 -6371.0,0.316420619003125 -6372.0,0.31631135006422356 -6373.0,0.31620211885895994 -6374.0,0.3160929253743035 -6375.0,0.3159837695972284 -6376.0,0.31587465151471295 -6377.0,0.3157655711137404 -6378.0,0.31565652838129804 -6379.0,0.315547523304378 -6380.0,0.3154385558699767 -6381.0,0.31532962606509524 -6382.0,0.31522073387673893 -6383.0,0.3151118792919178 -6384.0,0.31500306229764624 -6385.0,0.31489428288094323 -6386.0,0.31478554102883227 -6387.0,0.31467683672834107 -6388.0,0.3145681699665021 -6389.0,0.31445954073035215 -6390.0,0.31435094900693267 -6391.0,0.3142423947832893 -6392.0,0.3141338780464724 -6393.0,0.3140253987835367 -6394.0,0.31391695698154143 -6395.0,0.3138085526275502 -6396.0,0.3137001857086313 -6397.0,0.3135918562118572 -6398.0,0.31348356412430506 -6399.0,0.3133753094330564 -6400.0,0.31326709212519727 -6401.0,0.31315891218781805 -6402.0,0.31305076960801376 -6403.0,0.31294266437288365 -6404.0,0.31283459646953166 -6405.0,0.3127265658850661 -6406.0,0.3126185726065996 -6407.0,0.31251061662124946 -6408.0,0.31240269791613723 -6409.0,0.3122948164783891 -6410.0,0.3121869722951354 -6411.0,0.3120791653535113 -6412.0,0.3119713956406562 -6413.0,0.3118636631437139 -6414.0,0.31175596784983267 -6415.0,0.3116483097461653 -6416.0,0.31154068881986896 -6417.0,0.3114331050581053 -6418.0,0.3113255584480402 -6419.0,0.31121804897684435 -6420.0,0.3111105766316925 -6421.0,0.3110031413997641 -6422.0,0.3108957432682427 -6423.0,0.3107883822243167 -6424.0,0.3106810582551787 -6425.0,0.3105737713480256 -6426.0,0.310466521490059 -6427.0,0.3103593086684846 -6428.0,0.3102521328705129 -6429.0,0.31014499408335844 -6430.0,0.31003789229424045 -6431.0,0.30993082749038237 -6432.0,0.30982379965901224 -6433.0,0.30971680878736235 -6434.0,0.3096098548626695 -6435.0,0.30950293787217487 -6436.0,0.30939605780312407 -6437.0,0.30928921464276704 -6438.0,0.3091824083783582 -6439.0,0.3090756389971563 -6440.0,0.3089689064864246 -6441.0,0.3088622108334306 -6442.0,0.3087555520254463 -6443.0,0.30864893004974825 -6444.0,0.308542344893617 -6445.0,0.30843579654433784 -6446.0,0.30832928498920026 -6447.0,0.30822281021549836 -6448.0,0.30811637221053023 -6449.0,0.3080099709615988 -6450.0,0.3079036064560111 -6451.0,0.30779727868107865 -6452.0,0.30769098762411723 -6453.0,0.30758473327244723 -6454.0,0.3074785156133931 -6455.0,0.3073723346342841 -6456.0,0.30726619032245334 -6457.0,0.3071600826652388 -6458.0,0.3070540116499825 -6459.0,0.30694797726403095 -6460.0,0.30684197949473496 -6461.0,0.30673601832944986 -6462.0,0.3066300937555353 -6463.0,0.30652420576035516 -6464.0,0.3064183543312778 -6465.0,0.3063125394556759 -6466.0,0.30620676112092654 -6467.0,0.3061010193144111 -6468.0,0.30599531402351543 -6469.0,0.30588964523562956 -6470.0,0.3057840129381481 -6471.0,0.3056784171184697 -6472.0,0.3055728577639978 -6473.0,0.30546733486213967 -6474.0,0.30536184840030745 -6475.0,0.3052563983659171 -6476.0,0.30515098474638946 -6477.0,0.30504560752914933 -6478.0,0.304940266701626 -6479.0,0.304834962251253 -6480.0,0.30472969416546836 -6481.0,0.3046244624317144 -6482.0,0.30451926703743765 -6483.0,0.30441410797008917 -6484.0,0.30430898521712413 -6485.0,0.30420389876600223 -6486.0,0.30409884860418734 -6487.0,0.3039938347191479 -6488.0,0.3038888570983564 -6489.0,0.3037839157292898 -6490.0,0.3036790105994293 -6491.0,0.3035741416962606 -6492.0,0.3034693090072735 -6493.0,0.3033645125199623 -6494.0,0.3032597522218255 -6495.0,0.30315502810036604 -6496.0,0.30305034014309096 -6497.0,0.30294568833751184 -6498.0,0.3028410726711444 -6499.0,0.30273649313150885 -6500.0,0.30263194970612967 -6501.0,0.30252744238253537 -6502.0,0.3024229711482592 -6503.0,0.3023185359908384 -6504.0,0.3022141368978147 -6505.0,0.3021097738567339 -6506.0,0.30200544685514635 -6507.0,0.3019011558806066 -6508.0,0.3017969009206735 -6509.0,0.30169268196291016 -6510.0,0.3015884989948841 -6511.0,0.3014843520041669 -6512.0,0.30138024097833477 -6513.0,0.30127616590496786 -6514.0,0.3011721267716509 -6515.0,0.3010681235659726 -6516.0,0.30096415627552636 -6517.0,0.3008602248879095 -6518.0,0.3007563293907238 -6519.0,0.3006524697715753 -6520.0,0.3005486460180742 -6521.0,0.3004448581178353 -6522.0,0.30034110605847725 -6523.0,0.3002373898276233 -6524.0,0.3001337094129008 -6525.0,0.3000300648019415 -6526.0,0.29992645598238127 -6527.0,0.29982288294186044 -6528.0,0.29971934566802333 -6529.0,0.29961584414851894 -6530.0,0.29951237837100003 -6531.0,0.2994089483231241 -6532.0,0.2993055539925526 -6533.0,0.29920219536695136 -6534.0,0.2990988724339904 -6535.0,0.29899558518134417 -6536.0,0.2988923335966911 -6537.0,0.2987891176677141 -6538.0,0.29868593738210036 -6539.0,0.298582792727541 -6540.0,0.2984796836917319 -6541.0,0.29837661026237267 -6542.0,0.2982735724271675 -6543.0,0.2981705701738247 -6544.0,0.2980676034900569 -6545.0,0.2979646723635808 -6546.0,0.2978617767821176 -6547.0,0.29775891673339255 -6548.0,0.2976560922051353 -6549.0,0.29755330318507944 -6550.0,0.2974505496609631 -6551.0,0.2973478316205286 -6552.0,0.2972451490515223 -6553.0,0.2971425019416949 -6554.0,0.2970398902788015 -6555.0,0.2969373140506012 -6556.0,0.29683477324485735 -6557.0,0.29673226784933765 -6558.0,0.2966297978518139 -6559.0,0.2965273632400623 -6560.0,0.29642496400186297 -6561.0,0.2963226001250006 -6562.0,0.2962202715972638 -6563.0,0.29611797840644555 -6564.0,0.296015720540343 -6565.0,0.2959134979867576 -6566.0,0.29581131073349487 -6567.0,0.29570915876836473 -6568.0,0.29560704207918104 -6569.0,0.29550496065376214 -6570.0,0.2954029144799304 -6571.0,0.2953009035455125 -6572.0,0.29519892783833923 -6573.0,0.29509698734624573 -6574.0,0.2949950820570711 -6575.0,0.2948932119586588 -6576.0,0.29479137703885666 -6577.0,0.29468957728551626 -6578.0,0.29458781268649387 -6579.0,0.2944860832296495 -6580.0,0.29438438890284774 -6581.0,0.294282729693957 -6582.0,0.29418110559085037 -6583.0,0.2940795165814045 -6584.0,0.2939779626535009 -6585.0,0.2938764437950246 -6586.0,0.2937749599938654 -6587.0,0.29367351123791685 -6588.0,0.29357209751507696 -6589.0,0.29347071881324777 -6590.0,0.29336937512033556 -6591.0,0.2932680664242507 -6592.0,0.2931667927129079 -6593.0,0.2930655539742258 -6594.0,0.2929643501961275 -6595.0,0.29286318136654016 -6596.0,0.2927620474733949 -6597.0,0.2926609485046273 -6598.0,0.292559884448177 -6599.0,0.2924588552919878 -6600.0,0.2923578610240075 -6601.0,0.2922569016321884 -6602.0,0.29215597710448676 -6603.0,0.292055087428863 -6604.0,0.2919542325932816 -6605.0,0.2918534125857115 -6606.0,0.2917526273941255 -6607.0,0.2916518770065007 -6608.0,0.29155116141081827 -6609.0,0.2914504805950636 -6610.0,0.29134983454722624 -6611.0,0.2912492232552998 -6612.0,0.2911486467072821 -6613.0,0.291048104891175 -6614.0,0.2909475977949848 -6615.0,0.2908471254067216 -6616.0,0.29074668771439977 -6617.0,0.29064628470603787 -6618.0,0.29054591636965854 -6619.0,0.2904455826932886 -6620.0,0.2903452836649589 -6621.0,0.2902450192727045 -6622.0,0.29014478950456474 -6623.0,0.2900445943485827 -6624.0,0.28994443379280604 -6625.0,0.2898443078252862 -6626.0,0.289744216434079 -6627.0,0.28964415960724416 -6628.0,0.2895441373328457 -6629.0,0.2894441495989516 -6630.0,0.2893441963936342 -6631.0,0.28924427770496963 -6632.0,0.28914439352103843 -6633.0,0.28904454382992517 -6634.0,0.2889447286197184 -6635.0,0.2888449478785111 -6636.0,0.2887452015943999 -6637.0,0.28864548975548604 -6638.0,0.28854581234987436 -6639.0,0.2884461693656743 -6640.0,0.288346560790999 -6641.0,0.2882469866139661 -6642.0,0.2881474468226969 -6643.0,0.2880479414053172 -6644.0,0.2879484703499566 -6645.0,0.287849033644749 -6646.0,0.2877496312778323 -6647.0,0.2876502632373486 -6648.0,0.28755092951144384 -6649.0,0.28745163008826846 -6650.0,0.28735236495597655 -6651.0,0.28725313410272657 -6652.0,0.28715393751668117 -6653.0,0.2870547751860067 -6654.0,0.2869556470988739 -6655.0,0.2868565532434575 -6656.0,0.2867574936079364 -6657.0,0.28665846818049334 -6658.0,0.28655947694931555 -6659.0,0.28646051990259386 -6660.0,0.28636159702852354 -6661.0,0.28626270831530376 -6662.0,0.28616385375113795 -6663.0,0.2860650333242333 -6664.0,0.2859662470228013 -6665.0,0.2858674948350575 -6666.0,0.2857687767492216 -6667.0,0.285670092753517 -6668.0,0.28557144283617164 -6669.0,0.2854728269854171 -6670.0,0.2853742451894894 -6671.0,0.28527569743662845 -6672.0,0.2851771837150781 -6673.0,0.2850787040130865 -6674.0,0.2849802583189056 -6675.0,0.28488184662079175 -6676.0,0.28478346890700496 -6677.0,0.2846851251658096 -6678.0,0.2845868153854739 -6679.0,0.28448853955427034 -6680.0,0.28439029766047513 -6681.0,0.28429208969236897 -6682.0,0.2841939156382361 -6683.0,0.28409577548636533 -6684.0,0.2839976692250491 -6685.0,0.2838995968425841 -6686.0,0.28380155832727094 -6687.0,0.2837035536674145 -6688.0,0.28360558285132337 -6689.0,0.28350764586731036 -6690.0,0.28340974270369246 -6691.0,0.2833118733487904 -6692.0,0.2832140377909291 -6693.0,0.28311623601843744 -6694.0,0.2830184680196486 -6695.0,0.2829207337828992 -6696.0,0.2828230332965307 -6697.0,0.28272536654888775 -6698.0,0.28262773352831966 -6699.0,0.2825301342231794 -6700.0,0.2824325686218242 -6701.0,0.28233503671261506 -6702.0,0.2822375384839173 -6703.0,0.2821400739240999 -6704.0,0.2820426430215362 -6705.0,0.2819452457646033 -6706.0,0.2818478821416825 -6707.0,0.28175055214115896 -6708.0,0.2816532557514219 -6709.0,0.28155599296086475 -6710.0,0.2814587637578846 -6711.0,0.28136156813088276 -6712.0,0.28126440606826447 -6713.0,0.28116727755843907 -6714.0,0.28107018258981975 -6715.0,0.2809731211508239 -6716.0,0.28087609322987267 -6717.0,0.2807790988153915 -6718.0,0.2806821378958095 -6719.0,0.28058521045956 -6720.0,0.28048831649508027 -6721.0,0.2803914559908116 -6722.0,0.28029462893519913 -6723.0,0.28019783531669223 -6724.0,0.28010107512374405 -6725.0,0.28000434834481186 -6726.0,0.2799076549683568 -6727.0,0.279810994982844 -6728.0,0.27971436837674285 -6729.0,0.27961777513852626 -6730.0,0.2795212152566715 -6731.0,0.2794246887196596 -6732.0,0.27932819551597576 -6733.0,0.27923173563410886 -6734.0,0.2791353090625522 -6735.0,0.2790389157898025 -6736.0,0.278942555804361 -6737.0,0.27884622909473245 -6738.0,0.27874993564942596 -6739.0,0.27865367545695424 -6740.0,0.27855744850583436 -6741.0,0.27846125478458694 -6742.0,0.27836509428173695 -6743.0,0.27826896698581294 -6744.0,0.27817287288534787 -6745.0,0.2780768119688782 -6746.0,0.2779807842249446 -6747.0,0.2778847896420918 -6748.0,0.2777888282088682 -6749.0,0.27769289991382645 -6750.0,0.2775970047455228 -6751.0,0.27750114269251785 -6752.0,0.2774053137433758 -6753.0,0.2773095178866651 -6754.0,0.27721375511095786 -6755.0,0.2771180254048304 -6756.0,0.2770223287568628 -6757.0,0.27692666515563913 -6758.0,0.27683103458974745 -6759.0,0.27673543704777975 -6760.0,0.27663987251833194 -6761.0,0.27654434099000386 -6762.0,0.2764488424513992 -6763.0,0.2763533768911259 -6764.0,0.2762579442977953 -6765.0,0.27616254466002327 -6766.0,0.27606717796642927 -6767.0,0.2759718442056366 -6768.0,0.2758765433662728 -6769.0,0.2757812754369691 -6770.0,0.2756860404063608 -6771.0,0.27559083826308695 -6772.0,0.27549566899579075 -6773.0,0.27540053259311903 -6774.0,0.2753054290437229 -6775.0,0.27521035833625707 -6776.0,0.27511532045938036 -6777.0,0.2750203154017554 -6778.0,0.27492534315204886 -6779.0,0.2748304036989311 -6780.0,0.2747354970310767 -6781.0,0.27464062313716386 -6782.0,0.27454578200587487 -6783.0,0.2744509736258959 -6784.0,0.27435619798591687 -6785.0,0.27426145507463195 -6786.0,0.2741667448807389 -6787.0,0.27407206739293943 -6788.0,0.27397742259993924 -6789.0,0.27388281049044794 -6790.0,0.2737882310531789 -6791.0,0.27369368427684965 -6792.0,0.27359917015018126 -6793.0,0.273504688661899 -6794.0,0.27341023980073187 -6795.0,0.27331582355541284 -6796.0,0.2732214399146787 -6797.0,0.2731270888672702 -6798.0,0.27303277040193197 -6799.0,0.2729384845074125 -6800.0,0.27284423117246404 -6801.0,0.27275001038584307 -6802.0,0.27265582213630957 -6803.0,0.2725616664126276 -6804.0,0.27246754320356514 -6805.0,0.2723734524978939 -6806.0,0.2722793942843897 -6807.0,0.2721853685518318 -6808.0,0.2720913752890039 -6809.0,0.27199741448469306 -6810.0,0.27190348612769066 -6811.0,0.2718095902067915 -6812.0,0.2717157267107947 -6813.0,0.27162189562850286 -6814.0,0.2715280969487227 -6815.0,0.27143433066026473 -6816.0,0.2713405967519433 -6817.0,0.27124689521257656 -6818.0,0.27115322603098674 -6819.0,0.27105958919599965 -6820.0,0.2709659846964453 -6821.0,0.27087241252115707 -6822.0,0.27077887265897266 -6823.0,0.2706853650987335 -6824.0,0.2705918898292846 -6825.0,0.2704984468394753 -6826.0,0.2704050361181584 -6827.0,0.27031165765419074 -6828.0,0.2702183114364328 -6829.0,0.27012499745374924 -6830.0,0.2700317156950083 -6831.0,0.2699384661490821 -6832.0,0.2698452488048468 -6833.0,0.2697520636511821 -6834.0,0.2696589106769717 -6835.0,0.26956578987110325 -6836.0,0.2694727012224679 -6837.0,0.2693796447199612 -6838.0,0.2692866203524818 -6839.0,0.2691936281089328 -6840.0,0.2691006679782209 -6841.0,0.26900773994925653 -6842.0,0.26891484401095417 -6843.0,0.2688219801522319 -6844.0,0.26872914836201184 -6845.0,0.26863634862921976 -6846.0,0.2685435809427854 -6847.0,0.26845084529164215 -6848.0,0.2683581416647274 -6849.0,0.2682654700509822 -6850.0,0.2681728304393517 -6851.0,0.2680802228187844 -6852.0,0.26798764717823315 -6853.0,0.26789510350665413 -6854.0,0.2678025917930077 -6855.0,0.2677101120262578 -6856.0,0.2676176641953723 -6857.0,0.26752524828932284 -6858.0,0.26743286429708496 -6859.0,0.26734051220763777 -6860.0,0.2672481920099644 -6861.0,0.26715590369305187 -6862.0,0.2670636472458906 -6863.0,0.26697142265747525 -6864.0,0.266879229916804 -6865.0,0.2667870690128791 -6866.0,0.26669493993470617 -6867.0,0.2666028426712951 -6868.0,0.2665107772116592 -6869.0,0.2664187435448159 -6870.0,0.26632674165978604 -6871.0,0.26623477154559466 -6872.0,0.2661428331912703 -6873.0,0.2660509265858454 -6874.0,0.26595905171835615 -6875.0,0.2658672085778427 -6876.0,0.2657753971533485 -6877.0,0.26568361743392155 -6878.0,0.2655918694086128 -6879.0,0.2655001530664776 -6880.0,0.26540846839657484 -6881.0,0.26531681538796714 -6882.0,0.26522519402972106 -6883.0,0.26513360431090677 -6884.0,0.2650420462205983 -6885.0,0.26495051974787337 -6886.0,0.2648590248818137 -6887.0,0.26476756161150444 -6888.0,0.26467612992603484 -6889.0,0.26458472981449765 -6890.0,0.2644933612659896 -6891.0,0.264402024269611 -6892.0,0.2643107188144661 -6893.0,0.2642194448896627 -6894.0,0.2641282024843127 -6895.0,0.26403699158753124 -6896.0,0.2639458121884378 -6897.0,0.2638546642761552 -6898.0,0.2637635478398102 -6899.0,0.2636724628685333 -6900.0,0.2635814093514587 -6901.0,0.2634903872777244 -6902.0,0.263399396636472 -6903.0,0.2633084374168472 -6904.0,0.26321750960799906 -6905.0,0.26312661319908065 -6906.0,0.2630357481792486 -6907.0,0.26294491453766344 -6908.0,0.26285411226348937 -6909.0,0.26276334134589435 -6910.0,0.26267260177405005 -6911.0,0.26258189353713196 -6912.0,0.2624912166243191 -6913.0,0.2624005710247946 -6914.0,0.2623099567277448 -6915.0,0.2622193737223604 -6916.0,0.26212882199783527 -6917.0,0.2620383015433674 -6918.0,0.2619478123481583 -6919.0,0.26185735440141317 -6920.0,0.2617669276923412 -6921.0,0.2616765322101551 -6922.0,0.2615861679440713 -6923.0,0.26149583488331 -6924.0,0.2614055330170952 -6925.0,0.26131526233465446 -6926.0,0.2612250228252192 -6927.0,0.26113481447802445 -6928.0,0.2610446372823091 -6929.0,0.26095449122731557 -6930.0,0.2608643763022902 -6931.0,0.2607742924964828 -6932.0,0.2606842397991472 -6933.0,0.26059421819954054 -6934.0,0.26050422768692416 -6935.0,0.26041426825056263 -6936.0,0.26032433987972453 -6937.0,0.2602344425636821 -6938.0,0.2601445762917112 -6939.0,0.2600547410530915 -6940.0,0.25996493683710625 -6941.0,0.25987516363304247 -6942.0,0.25978542143019084 -6943.0,0.2596957102178459 -6944.0,0.2596060299853055 -6945.0,0.2595163807218718 -6946.0,0.2594267624168499 -6947.0,0.25933717505954934 -6948.0,0.25924761863928275 -6949.0,0.2591580931453669 -6950.0,0.2590685985671219 -6951.0,0.2589791348938718 -6952.0,0.2588897021149441 -6953.0,0.25880030021967027 -6954.0,0.25871092919738525 -6955.0,0.2586215890374277 -6956.0,0.25853227972914017 -6957.0,0.2584430012618684 -6958.0,0.2583537536249624 -6959.0,0.2582645368077754 -6960.0,0.2581753507996646 -6961.0,0.25808619558999063 -6962.0,0.2579970711681181 -6963.0,0.25790797752341493 -6964.0,0.2578189146452531 -6965.0,0.2577298825230078 -6966.0,0.25764088114605843 -6967.0,0.25755191050378756 -6968.0,0.25746297058558176 -6969.0,0.257374061380831 -6970.0,0.2572851828789293 -6971.0,0.25719633506927386 -6972.0,0.2571075179412659 -6973.0,0.25701873148431026 -6974.0,0.2569299756878152 -6975.0,0.25684125054119294 -6976.0,0.2567525560338591 -6977.0,0.2566638921552332 -6978.0,0.25657525889473815 -6979.0,0.2564866562418007 -6980.0,0.25639808418585125 -6981.0,0.2563095427163238 -6982.0,0.2562210318226559 -6983.0,0.25613255149428893 -6984.0,0.2560441017206677 -6985.0,0.25595568249124107 -6986.0,0.25586729379546097 -6987.0,0.25577893562278353 -6988.0,0.255690607962668 -6989.0,0.2556023108045778 -6990.0,0.2555140441379795 -6991.0,0.2554258079523437 -6992.0,0.2553376022371444 -6993.0,0.25524942698185926 -6994.0,0.2551612821759697 -6995.0,0.25507316780896055 -6996.0,0.2549850838703206 -6997.0,0.25489703034954186 -6998.0,0.2548090072361204 -6999.0,0.25472101451955553 -7000.0,0.2546330521893505 -7001.0,0.25454512023501197 -7002.0,0.2544572186460503 -7003.0,0.2543693474119795 -7004.0,0.2542815065223172 -7005.0,0.2541936959665845 -7006.0,0.25410591573430635 -7007.0,0.25401816581501113 -7008.0,0.253930446198231 -7009.0,0.2538427568735016 -7010.0,0.25375509783036226 -7011.0,0.2536674690583559 -7012.0,0.25357987054702896 -7013.0,0.2534923022859317 -7014.0,0.2534047642646178 -7015.0,0.25331725647264464 -7016.0,0.2532297788995731 -7017.0,0.25314233153496785 -7018.0,0.253054914368397 -7019.0,0.25296752738943235 -7020.0,0.25288017058764917 -7021.0,0.2527928439526266 -7022.0,0.252705547473947 -7023.0,0.2526182811411968 -7024.0,0.2525310449439655 -7025.0,0.2524438388718466 -7026.0,0.2523566629144371 -7027.0,0.25226951706133743 -7028.0,0.2521824013021517 -7029.0,0.25209531562648774 -7030.0,0.2520082600239569 -7031.0,0.25192123448417386 -7032.0,0.2518342389967574 -7033.0,0.25174727355132936 -7034.0,0.25166033813751554 -7035.0,0.25157343274494504 -7036.0,0.2514865573632508 -7037.0,0.2513997119820692 -7038.0,0.2513128965910402 -7039.0,0.25122611117980737 -7040.0,0.2511393557380178 -7041.0,0.2510526302553222 -7042.0,0.25096593472137496 -7043.0,0.2508792691258338 -7044.0,0.2507926334583603 -7045.0,0.2507060277086192 -7046.0,0.2506194518662794 -7047.0,0.25053290592101274 -7048.0,0.250446389862495 -7049.0,0.2503599036804056 -7050.0,0.2502734473644272 -7051.0,0.25018702090424627 -7052.0,0.2501006242895527 -7053.0,0.2500142575100401 -7054.0,0.24992792055540541 -7055.0,0.2498416134153494 -7056.0,0.24975533607957615 -7057.0,0.2496690885377935 -7058.0,0.2495828707797126 -7059.0,0.2494966827950485 -7060.0,0.24941052457351942 -7061.0,0.24932439610484744 -7062.0,0.24923829737875794 -7063.0,0.2491522283849801 -7064.0,0.2490661891132464 -7065.0,0.24898017955329313 -7066.0,0.2488941996948598 -7067.0,0.2488082495276897 -7068.0,0.24872232904152972 -7069.0,0.24863643822613 -7070.0,0.24855057707124453 -7071.0,0.2484647455666306 -7072.0,0.24837894370204922 -7073.0,0.24829317146726476 -7074.0,0.24820742885204533 -7075.0,0.24812171584616233 -7076.0,0.24803603243939096 -7077.0,0.24795037862150968 -7078.0,0.24786475438230074 -7079.0,0.2477791597115497 -7080.0,0.2476935945990458 -7081.0,0.2476080590345817 -7082.0,0.24752255300795367 -7083.0,0.2474370765089614 -7084.0,0.2473516295274083 -7085.0,0.247266212053101 -7086.0,0.2471808240758499 -7087.0,0.24709546558546888 -7088.0,0.2470101365717752 -7089.0,0.24692483702458987 -7090.0,0.2468395669337371 -7091.0,0.24675432628904492 -7092.0,0.24666911508034467 -7093.0,0.24658393329747133 -7094.0,0.24649878093026328 -7095.0,0.24641365796856254 -7096.0,0.24632856440221446 -7097.0,0.2462435002210681 -7098.0,0.24615846541497582 -7099.0,0.2460734599737937 -7100.0,0.2459884838873811 -7101.0,0.2459035371456011 -7102.0,0.24581861973832006 -7103.0,0.24573373165540804 -7104.0,0.24564887288673848 -7105.0,0.2455640434221883 -7106.0,0.24547924325163809 -7107.0,0.24539447236497167 -7108.0,0.2453097307520766 -7109.0,0.24522501840284375 -7110.0,0.2451403353071676 -7111.0,0.24505568145494602 -7112.0,0.2449710568360805 -7113.0,0.24488646144047582 -7114.0,0.24480189525804052 -7115.0,0.24471735827868635 -7116.0,0.24463285049232875 -7117.0,0.24454837188888645 -7118.0,0.2444639224582819 -7119.0,0.2443795021904408 -7120.0,0.24429511107529248 -7121.0,0.24421074910276963 -7122.0,0.2441264162628086 -7123.0,0.24404211254534894 -7124.0,0.24395783794033393 -7125.0,0.24387359243771028 -7126.0,0.24378937602742798 -7127.0,0.24370518869944072 -7128.0,0.2436210304437055 -7129.0,0.24353690125018296 -7130.0,0.24345280110883696 -7131.0,0.2433687300096351 -7132.0,0.2432846879425482 -7133.0,0.24320067489755076 -7134.0,0.2431166908646205 -7135.0,0.24303273583373888 -7136.0,0.24294880979489053 -7137.0,0.24286491273806385 -7138.0,0.24278104465325043 -7139.0,0.24269720553044546 -7140.0,0.2426133953596475 -7141.0,0.24252961413085866 -7142.0,0.24244586183408437 -7143.0,0.24236213845933371 -7144.0,0.24227844399661896 -7145.0,0.2421947784359561 -7146.0,0.24211114176736437 -7147.0,0.24202753398086654 -7148.0,0.2419439550664888 -7149.0,0.24186040501426084 -7150.0,0.24177688381421567 -7151.0,0.2416933914563899 -7152.0,0.24160992793082345 -7153.0,0.24152649322755976 -7154.0,0.24144308733664563 -7155.0,0.24135971024813135 -7156.0,0.24127636195207075 -7157.0,0.24119304243852085 -7158.0,0.24110975169754234 -7159.0,0.24102648971919916 -7160.0,0.24094325649355885 -7161.0,0.2408600520106922 -7162.0,0.24077687626067357 -7163.0,0.24069372923358068 -7164.0,0.24061061091949476 -7165.0,0.2405275213085003 -7166.0,0.2404444603906854 -7167.0,0.24036142815614145 -7168.0,0.24027842459496335 -7169.0,0.2401954496972493 -7170.0,0.24011250345310112 -7171.0,0.2400295858526238 -7172.0,0.239946696885926 -7173.0,0.23986383654311955 -7174.0,0.23978100481431988 -7175.0,0.2396982016896458 -7176.0,0.2396154271592194 -7177.0,0.23953268121316643 -7178.0,0.23944996384161576 -7179.0,0.2393672750346999 -7180.0,0.2392846147825546 -7181.0,0.2392019830753192 -7182.0,0.23911937990313625 -7183.0,0.23903680525615184 -7184.0,0.23895425912451537 -7185.0,0.23887174149837978 -7186.0,0.2387892523679012 -7187.0,0.23870679172323936 -7188.0,0.23862435955455727 -7189.0,0.23854195585202143 -7190.0,0.23845958060580155 -7191.0,0.23837723380607104 -7192.0,0.23829491544300638 -7193.0,0.23821262550678762 -7194.0,0.23813036398759826 -7195.0,0.23804813087562499 -7196.0,0.2379659261610581 -7197.0,0.23788374983409105 -7198.0,0.23780160188492094 -7199.0,0.23771948230374798 -7200.0,0.23763739108077603 -7201.0,0.23755532820621206 -7202.0,0.23747329367026673 -7203.0,0.2373912874631538 -7204.0,0.23730930957509058 -7205.0,0.23722735999629768 -7206.0,0.23714543871699914 -7207.0,0.2370635457274223 -7208.0,0.236981681017798 -7209.0,0.2368998445783603 -7210.0,0.2368180363993468 -7211.0,0.23673625647099825 -7212.0,0.23665450478355898 -7213.0,0.2365727813272767 -7214.0,0.2364910860924022 -7215.0,0.23640941906919 -7216.0,0.2363277802478977 -7217.0,0.2362461696187865 -7218.0,0.23616458717212072 -7219.0,0.23608303289816832 -7220.0,0.2360015067872003 -7221.0,0.23592000882949135 -7222.0,0.23583853901531923 -7223.0,0.23575709733496528 -7224.0,0.235675683778714 -7225.0,0.23559429833685347 -7226.0,0.2355129409996749 -7227.0,0.235431611757473 -7228.0,0.23535031060054576 -7229.0,0.2352690375191946 -7230.0,0.23518779250372412 -7231.0,0.23510657554444248 -7232.0,0.23502538663166112 -7233.0,0.23494422575569465 -7234.0,0.23486309290686133 -7235.0,0.2347819880754825 -7236.0,0.234700911251883 -7237.0,0.23461986242639088 -7238.0,0.23453884158933772 -7239.0,0.2344578487310582 -7240.0,0.2343768838418906 -7241.0,0.23429594691217623 -7242.0,0.23421503793226006 -7243.0,0.23413415689249015 -7244.0,0.23405330378321804 -7245.0,0.23397247859479847 -7246.0,0.23389168131758967 -7247.0,0.23381091194195303 -7248.0,0.23373017045825342 -7249.0,0.23364945685685892 -7250.0,0.233568771128141 -7251.0,0.23348811326247448 -7252.0,0.2334074832502374 -7253.0,0.2333268810818113 -7254.0,0.23324630674758076 -7255.0,0.23316576023793398 -7256.0,0.2330852415432623 -7257.0,0.23300475065396045 -7258.0,0.2329242875604264 -7259.0,0.2328438522530616 -7260.0,0.23276344472227053 -7261.0,0.23268306495846136 -7262.0,0.2326027129520452 -7263.0,0.23252238869343678 -7264.0,0.23244209217305387 -7265.0,0.23236182338131778 -7266.0,0.23228158230865298 -7267.0,0.23220136894548732 -7268.0,0.2321211832822519 -7269.0,0.23204102530938114 -7270.0,0.2319608950173129 -7271.0,0.23188079239648807 -7272.0,0.2318007174373511 -7273.0,0.23172067013034953 -7274.0,0.2316406504659344 -7275.0,0.23156065843455986 -7276.0,0.23148069402668353 -7277.0,0.23140075723276615 -7278.0,0.23132084804327196 -7279.0,0.23124096644866823 -7280.0,0.2311611124394258 -7281.0,0.23108128600601857 -7282.0,0.2310014871389239 -7283.0,0.2309217158286223 -7284.0,0.23084197206559773 -7285.0,0.23076225584033724 -7286.0,0.23068256714333135 -7287.0,0.23060290596507368 -7288.0,0.2305232722960613 -7289.0,0.2304436661267945 -7290.0,0.2303640874477768 -7291.0,0.23028453624951514 -7292.0,0.23020501252251951 -7293.0,0.23012551625730343 -7294.0,0.23004604744438348 -7295.0,0.22996660607427968 -7296.0,0.22988719213751518 -7297.0,0.22980780562461656 -7298.0,0.22972844652611352 -7299.0,0.22964911483253914 -7300.0,0.22956981053442968 -7301.0,0.2294905336223248 -7302.0,0.22941128408676725 -7303.0,0.22933206191830321 -7304.0,0.22925286710748197 -7305.0,0.2291736996448563 -7306.0,0.22909455952098193 -7307.0,0.22901544672641813 -7308.0,0.22893636125172734 -7309.0,0.22885730308747515 -7310.0,0.22877827222423058 -7311.0,0.22869926865256576 -7312.0,0.2286202923630562 -7313.0,0.22854134334628054 -7314.0,0.22846242159282082 -7315.0,0.22838352709326212 -7316.0,0.22830465983819306 -7317.0,0.22822581981820522 -7318.0,0.22814700702389368 -7319.0,0.2280682214458565 -7320.0,0.2279894630746953 -7321.0,0.22791073190101463 -7322.0,0.22783202791542256 -7323.0,0.22775335110853018 -7324.0,0.227674701470952 -7325.0,0.2275960789933056 -7326.0,0.22751748366621197 -7327.0,0.22743891548029527 -7328.0,0.22736037442618282 -7329.0,0.2272818604945053 -7330.0,0.22720337367589652 -7331.0,0.22712491396099366 -7332.0,0.22704648134043692 -7333.0,0.22696807580487 -7334.0,0.22688969734493958 -7335.0,0.22681134595129576 -7336.0,0.22673302161459172 -7337.0,0.22665472432548403 -7338.0,0.22657645407463228 -7339.0,0.2264982108526995 -7340.0,0.22641999465035176 -7341.0,0.22634180545825852 -7342.0,0.2262636432670923 -7343.0,0.22618550806752902 -7344.0,0.22610739985024758 -7345.0,0.22602931860593034 -7346.0,0.2259512643252628 -7347.0,0.22587323699893355 -7348.0,0.22579523661763462 -7349.0,0.225717263172061 -7350.0,0.22563931665291118 -7351.0,0.22556139705088657 -7352.0,0.22548350435669204 -7353.0,0.22540563856103543 -7354.0,0.22532779965462807 -7355.0,0.22524998762818418 -7356.0,0.22517220247242153 -7357.0,0.22509444417806077 -7358.0,0.22501671273582602 -7359.0,0.22493900813644438 -7360.0,0.22486133037064635 -7361.0,0.22478367942916544 -7362.0,0.22470605530273854 -7363.0,0.22462845798210562 -7364.0,0.22455088745800988 -7365.0,0.22447334372119782 -7366.0,0.22439582676241887 -7367.0,0.22431833657242597 -7368.0,0.224240873141975 -7369.0,0.22416343646182524 -7370.0,0.22408602652273893 -7371.0,0.22400864331548176 -7372.0,0.22393128683082236 -7373.0,0.2238539570595328 -7374.0,0.22377665399238802 -7375.0,0.22369937762016653 -7376.0,0.22362212793364966 -7377.0,0.2235449049236222 -7378.0,0.22346770858087192 -7379.0,0.22339053889618993 -7380.0,0.22331339586037036 -7381.0,0.22323627946421074 -7382.0,0.2231591896985115 -7383.0,0.22308212655407647 -7384.0,0.22300509002171262 -7385.0,0.22292808009222997 -7386.0,0.22285109675644188 -7387.0,0.22277414000516468 -7388.0,0.22269720982921815 -7389.0,0.2226203062194249 -7390.0,0.22254342916661107 -7391.0,0.22246657866160563 -7392.0,0.22238975469524103 -7393.0,0.22231295725835257 -7394.0,0.222236186341779 -7395.0,0.22215944193636203 -7396.0,0.22208272403294668 -7397.0,0.222006032622381 -7398.0,0.22192936769551633 -7399.0,0.221852729243207 -7400.0,0.22177611725631075 -7401.0,0.22169953172568818 -7402.0,0.22162297264220326 -7403.0,0.2215464399967231 -7404.0,0.2214699337801178 -7405.0,0.22139345398326088 -7406.0,0.2213170005970287 -7407.0,0.22124057361230104 -7408.0,0.2211641730199606 -7409.0,0.22108779881089352 -7410.0,0.22101145097598873 -7411.0,0.22093512950613864 -7412.0,0.22085883439223852 -7413.0,0.22078256562518708 -7414.0,0.22070632319588585 -7415.0,0.22063010709523975 -7416.0,0.22055391731415672 -7417.0,0.22047775384354795 -7418.0,0.2204016166743276 -7419.0,0.2203255057974131 -7420.0,0.22024942120372498 -7421.0,0.22017336288418687 -7422.0,0.22009733082972566 -7423.0,0.22002132503127114 -7424.0,0.21994534547975653 -7425.0,0.21986939216611787 -7426.0,0.2197934650812946 -7427.0,0.2197175642162291 -7428.0,0.21964168956186703 -7429.0,0.21956584110915697 -7430.0,0.2194900188490509 -7431.0,0.21941422277250364 -7432.0,0.21933845287047338 -7433.0,0.21926270913392124 -7434.0,0.21918699155381163 -7435.0,0.2191113001211119 -7436.0,0.21903563482679272 -7437.0,0.21895999566182767 -7438.0,0.21888438261719362 -7439.0,0.21880879568387043 -7440.0,0.21873323485284116 -7441.0,0.21865770011509197 -7442.0,0.21858219146161206 -7443.0,0.2185067088833939 -7444.0,0.21843125237143285 -7445.0,0.21835582191672762 -7446.0,0.21828041751027977 -7447.0,0.21820503914309422 -7448.0,0.2181296868061788 -7449.0,0.2180543604905446 -7450.0,0.21797906018720567 -7451.0,0.2179037858871793 -7452.0,0.2178285375814857 -7453.0,0.21775331526114847 -7454.0,0.21767811891719396 -7455.0,0.21760294854065196 -7456.0,0.217527804122555 -7457.0,0.2174526856539391 -7458.0,0.21737759312584304 -7459.0,0.21730252652930884 -7460.0,0.21722748585538168 -7461.0,0.21715247109510966 -7462.0,0.21707748223954418 -7463.0,0.21700251927973946 -7464.0,0.21692758220675312 -7465.0,0.21685267101164563 -7466.0,0.21677778568548065 -7467.0,0.21670292621932488 -7468.0,0.2166280926042482 -7469.0,0.2165532848313234 -7470.0,0.2164785028916266 -7471.0,0.21640374677623672 -7472.0,0.21632901647623598 -7473.0,0.21625431198270956 -7474.0,0.2161796332867458 -7475.0,0.21610498037943604 -7476.0,0.21603035325187478 -7477.0,0.21595575189515948 -7478.0,0.21588117630039075 -7479.0,0.21580662645867235 -7480.0,0.21573210236111093 -7481.0,0.21565760399881637 -7482.0,0.21558313136290153 -7483.0,0.2155086844444824 -7484.0,0.21543426323467793 -7485.0,0.2153598677246103 -7486.0,0.2152854979054046 -7487.0,0.2152111537681891 -7488.0,0.21513683530409508 -7489.0,0.21506254250425688 -7490.0,0.21498827535981188 -7491.0,0.2149140338619006 -7492.0,0.21483981800166654 -7493.0,0.21476562777025635 -7494.0,0.21469146315881954 -7495.0,0.21461732415850898 -7496.0,0.21454321076048027 -7497.0,0.21446912295589232 -7498.0,0.21439506073590703 -7499.0,0.21432102409168918 -7500.0,0.2142470130144069 -7501.0,0.21417302749523107 -7502.0,0.21409906752533586 -7503.0,0.2140251330958983 -7504.0,0.21395122419809862 -7505.0,0.21387734082311996 -7506.0,0.21380348296214866 -7507.0,0.21372965060637392 -7508.0,0.21365584374698815 -7509.0,0.21358206237518668 -7510.0,0.21350830648216798 -7511.0,0.21343457605913346 -7512.0,0.21336087109728769 -7513.0,0.2132871915878381 -7514.0,0.21321353752199537 -7515.0,0.213139908890973 -7516.0,0.2130663056859877 -7517.0,0.21299272789825918 -7518.0,0.21291917551901005 -7519.0,0.21284564853946614 -7520.0,0.2127721469508561 -7521.0,0.2126986707444119 -7522.0,0.21262521991136818 -7523.0,0.21255179444296293 -7524.0,0.21247839433043694 -7525.0,0.21240501956503416 -7526.0,0.21233167013800147 -7527.0,0.2122583460405889 -7528.0,0.21218504726404933 -7529.0,0.2121117737996388 -7530.0,0.2120385256386163 -7531.0,0.21196530277224387 -7532.0,0.21189210519178656 -7533.0,0.2118189328885124 -7534.0,0.2117457858536925 -7535.0,0.21167266407860094 -7536.0,0.21159956755451487 -7537.0,0.2115264962727143 -7538.0,0.2114534502244825 -7539.0,0.2113804294011055 -7540.0,0.21130743379387248 -7541.0,0.2112344633940756 -7542.0,0.21116151819301004 -7543.0,0.21108859818197392 -7544.0,0.2110157033522685 -7545.0,0.21094283369519784 -7546.0,0.21086998920206923 -7547.0,0.21079716986419278 -7548.0,0.21072437567288174 -7549.0,0.21065160661945223 -7550.0,0.2105788626952235 -7551.0,0.21050614389151762 -7552.0,0.21043345019965987 -7553.0,0.2103607816109784 -7554.0,0.21028813811680433 -7555.0,0.21021551970847194 -7556.0,0.2101429263773182 -7557.0,0.21007035811468344 -7558.0,0.20999781491191066 -7559.0,0.20992529676034608 -7560.0,0.2098528036513387 -7561.0,0.2097803355762408 -7562.0,0.20970789252640726 -7563.0,0.20963547449319628 -7564.0,0.20956308146796887 -7565.0,0.2094907134420891 -7566.0,0.20941837040692396 -7567.0,0.20934605235384351 -7568.0,0.20927375927422068 -7569.0,0.20920149115943146 -7570.0,0.20912924800085472 -7571.0,0.20905702978987245 -7572.0,0.2089848365178696 -7573.0,0.20891266817623388 -7574.0,0.2088405247563563 -7575.0,0.20876840624963056 -7576.0,0.2086963126474535 -7577.0,0.20862424394122484 -7578.0,0.20855220012234738 -7579.0,0.20848018118222672 -7580.0,0.20840818711227163 -7581.0,0.20833621790389364 -7582.0,0.20826427354850746 -7583.0,0.20819235403753053 -7584.0,0.20812045936238346 -7585.0,0.2080485895144897 -7586.0,0.20797674448527576 -7587.0,0.20790492426617097 -7588.0,0.20783312884860777 -7589.0,0.20776135822402145 -7590.0,0.20768961238385028 -7591.0,0.2076178913195356 -7592.0,0.20754619502252147 -7593.0,0.20747452348425519 -7594.0,0.20740287669618673 -7595.0,0.2073312546497693 -7596.0,0.20725965733645874 -7597.0,0.20718808474771416 -7598.0,0.2071165368749974 -7599.0,0.20704501370977335 -7600.0,0.20697351524350976 -7601.0,0.20690204146767746 -7602.0,0.2068305923737501 -7603.0,0.20675916795320437 -7604.0,0.20668776819751977 -7605.0,0.20661639309817897 -7606.0,0.2065450426466673 -7607.0,0.20647371683447324 -7608.0,0.20640241565308812 -7609.0,0.20633113909400622 -7610.0,0.20625988714872484 -7611.0,0.20618865980874407 -7612.0,0.20611745706556703 -7613.0,0.2060462789106997 -7614.0,0.20597512533565118 -7615.0,0.2059039963319332 -7616.0,0.20583289189106074 -7617.0,0.20576181200455143 -7618.0,0.20569075666392606 -7619.0,0.20561972586070815 -7620.0,0.20554871958642434 -7621.0,0.205477737832604 -7622.0,0.20540678059077963 -7623.0,0.20533584785248646 -7624.0,0.20526493960926281 -7625.0,0.20519405585264977 -7626.0,0.20512319657419148 -7627.0,0.20505236176543487 -7628.0,0.20498155141792992 -7629.0,0.20491076552322954 -7630.0,0.20484000407288935 -7631.0,0.20476926705846812 -7632.0,0.20469855447152738 -7633.0,0.20462786630363172 -7634.0,0.20455720254634843 -7635.0,0.20448656319124797 -7636.0,0.20441594822990347 -7637.0,0.20434535765389117 -7638.0,0.20427479145479005 -7639.0,0.20420424962418218 -7640.0,0.2041337321536523 -7641.0,0.20406323903478832 -7642.0,0.2039927702591808 -7643.0,0.20392232581842346 -7644.0,0.20385190570411268 -7645.0,0.20378150990784794 -7646.0,0.20371113842123142 -7647.0,0.20364079123586842 -7648.0,0.20357046834336706 -7649.0,0.20350016973533822 -7650.0,0.20342989540339587 -7651.0,0.20335964533915674 -7652.0,0.20328941953424057 -7653.0,0.20321921798026985 -7654.0,0.20314904066887016 -7655.0,0.20307888759166973 -7656.0,0.20300875874029994 -7657.0,0.2029386541063948 -7658.0,0.20286857368159147 -7659.0,0.20279851745752972 -7660.0,0.2027284854258525 -7661.0,0.2026584775782054 -7662.0,0.20258849390623707 -7663.0,0.20251853440159884 -7664.0,0.2024485990559452 -7665.0,0.20237868786093327 -7666.0,0.2023088008082232 -7667.0,0.202238937889478 -7668.0,0.20216909909636346 -7669.0,0.2020992844205484 -7670.0,0.20202949385370436 -7671.0,0.20195972738750592 -7672.0,0.20188998501363034 -7673.0,0.201820266723758 -7674.0,0.20175057250957187 -7675.0,0.20168090236275807 -7676.0,0.20161125627500534 -7677.0,0.20154163423800553 -7678.0,0.20147203624345314 -7679.0,0.2014024622830457 -7680.0,0.2013329123484835 -7681.0,0.20126338643146977 -7682.0,0.20119388452371054 -7683.0,0.2011244066169148 -7684.0,0.20105495270279428 -7685.0,0.20098552277306364 -7686.0,0.20091611681944047 -7687.0,0.20084673483364504 -7688.0,0.20077737680740068 -7689.0,0.2007080427324334 -7690.0,0.2006387326004722 -7691.0,0.2005694464032489 -7692.0,0.20050018413249812 -7693.0,0.20043094577995738 -7694.0,0.20036173133736712 -7695.0,0.20029254079647044 -7696.0,0.20022337414901353 -7697.0,0.2001542313867452 -7698.0,0.20008511250141733 -7699.0,0.20001601748478448 -7700.0,0.19994694632860416 -7701.0,0.19987789902463662 -7702.0,0.1998088755646451 -7703.0,0.19973987594039552 -7704.0,0.19967090014365677 -7705.0,0.19960194816620058 -7706.0,0.1995330199998014 -7707.0,0.19946411563623667 -7708.0,0.19939523506728657 -7709.0,0.19932637828473418 -7710.0,0.19925754528036532 -7711.0,0.19918873604596882 -7712.0,0.19911995057333612 -7713.0,0.19905118885426173 -7714.0,0.19898245088054278 -7715.0,0.1989137366439794 -7716.0,0.19884504613637444 -7717.0,0.19877637934953366 -7718.0,0.19870773627526556 -7719.0,0.19863911690538158 -7720.0,0.19857052123169588 -7721.0,0.19850194924602554 -7722.0,0.19843340094019038 -7723.0,0.1983648763060131 -7724.0,0.19829637533531927 -7725.0,0.19822789801993715 -7726.0,0.19815944435169794 -7727.0,0.19809101432243553 -7728.0,0.19802260792398685 -7729.0,0.19795422514819142 -7730.0,0.19788586598689173 -7731.0,0.19781753043193295 -7732.0,0.19774921847516325 -7733.0,0.1976809301084334 -7734.0,0.19761266532359723 -7735.0,0.1975444241125111 -7736.0,0.19747620646703445 -7737.0,0.19740801237902936 -7738.0,0.1973398418403608 -7739.0,0.19727169484289644 -7740.0,0.19720357137850697 -7741.0,0.19713547143906562 -7742.0,0.19706739501644865 -7743.0,0.19699934210253509 -7744.0,0.19693131268920658 -7745.0,0.19686330676834785 -7746.0,0.19679532433184616 -7747.0,0.1967273653715918 -7748.0,0.1966594298794777 -7749.0,0.19659151784739973 -7750.0,0.19652362926725636 -7751.0,0.1964557641309491 -7752.0,0.196387922430382 -7753.0,0.1963201041574622 -7754.0,0.19625230930409934 -7755.0,0.19618453786220608 -7756.0,0.19611678982369768 -7757.0,0.19604906518049242 -7758.0,0.19598136392451113 -7759.0,0.19591368604767764 -7760.0,0.19584603154191838 -7761.0,0.1957784003991627 -7762.0,0.19571079261134272 -7763.0,0.1956432081703933 -7764.0,0.19557564706825215 -7765.0,0.19550810929685963 -7766.0,0.19544059484815912 -7767.0,0.19537310371409647 -7768.0,0.19530563588662062 -7769.0,0.19523819135768306 -7770.0,0.19517077011923822 -7771.0,0.19510337216324314 -7772.0,0.19503599748165787 -7773.0,0.19496864606644496 -7774.0,0.19490131790957 -7775.0,0.19483401300300113 -7776.0,0.19476673133870948 -7777.0,0.19469947290866868 -7778.0,0.19463223770485547 -7779.0,0.19456502571924902 -7780.0,0.1944978369438315 -7781.0,0.19443067137058784 -7782.0,0.19436352899150555 -7783.0,0.19429640979857515 -7784.0,0.19422931378378974 -7785.0,0.1941622409391453 -7786.0,0.19409519125664046 -7787.0,0.19402816472827678 -7788.0,0.19396116134605837 -7789.0,0.19389418110199233 -7790.0,0.1938272239880883 -7791.0,0.19376028999635886 -7792.0,0.19369337911881923 -7793.0,0.19362649134748747 -7794.0,0.1935596266743843 -7795.0,0.19349278509153334 -7796.0,0.19342596659096076 -7797.0,0.19335917116469573 -7798.0,0.1932923988047699 -7799.0,0.1932256495032179 -7800.0,0.19315892325207706 -7801.0,0.19309222004338736 -7802.0,0.19302553986919163 -7803.0,0.19295888272153533 -7804.0,0.1928922485924669 -7805.0,0.19282563747403722 -7806.0,0.19275904935830018 -7807.0,0.19269248423731222 -7808.0,0.1926259421031327 -7809.0,0.19255942294782352 -7810.0,0.1924929267634495 -7811.0,0.1924264535420781 -7812.0,0.1923600032757796 -7813.0,0.19229357595662688 -7814.0,0.19222717157669575 -7815.0,0.19216079012806456 -7816.0,0.19209443160281456 -7817.0,0.19202809599302958 -7818.0,0.1919617832907963 -7819.0,0.19189549348820417 -7820.0,0.1918292265773452 -7821.0,0.19176298255031432 -7822.0,0.191696761399209 -7823.0,0.1916305631161296 -7824.0,0.19156438769317913 -7825.0,0.1914982351224634 -7826.0,0.1914321053960908 -7827.0,0.1913659985061726 -7828.0,0.1912999144448227 -7829.0,0.19123385320415778 -7830.0,0.19116781477629716 -7831.0,0.191101799153363 -7832.0,0.1910358063274801 -7833.0,0.190969836290776 -7834.0,0.19090388903538089 -7835.0,0.19083796455342786 -7836.0,0.1907720628370525 -7837.0,0.19070618387839325 -7838.0,0.19064032766959127 -7839.0,0.19057449420279032 -7840.0,0.19050868347013705 -7841.0,0.1904428954637806 -7842.0,0.19037713017587304 -7843.0,0.19031138759856897 -7844.0,0.19024566772402585 -7845.0,0.1901799705444037 -7846.0,0.19011429605186542 -7847.0,0.19004864423857643 -7848.0,0.18998301509670504 -7849.0,0.18991740861842207 -7850.0,0.18985182479590126 -7851.0,0.1897862636213188 -7852.0,0.18972072508685386 -7853.0,0.18965520918468806 -7854.0,0.18958971590700593 -7855.0,0.1895242452459945 -7856.0,0.18945879719384365 -7857.0,0.18939337174274593 -7858.0,0.18932796888489647 -7859.0,0.18926258861249332 -7860.0,0.18919723091773696 -7861.0,0.1891318957928308 -7862.0,0.1890665832299807 -7863.0,0.18900129322139553 -7864.0,0.1889360257592865 -7865.0,0.1888707808358678 -7866.0,0.18880555844335611 -7867.0,0.18874035857397092 -7868.0,0.1886751812199343 -7869.0,0.18861002637347116 -7870.0,0.18854489402680888 -7871.0,0.18847978417217778 -7872.0,0.1884146968018106 -7873.0,0.18834963190794302 -7874.0,0.18828458948281315 -7875.0,0.18821956951866198 -7876.0,0.1881545720077331 -7877.0,0.18808959694227276 -7878.0,0.18802464431452992 -7879.0,0.18795971411675616 -7880.0,0.18789480634120587 -7881.0,0.18782992098013593 -7882.0,0.18776505802580606 -7883.0,0.18770021747047852 -7884.0,0.1876353993064184 -7885.0,0.18757060352589325 -7886.0,0.1875058301211735 -7887.0,0.1874410790845321 -7888.0,0.18737635040824474 -7889.0,0.18731164408458975 -7890.0,0.18724696010584818 -7891.0,0.18718229846430362 -7892.0,0.18711765915224252 -7893.0,0.18705304216195376 -7894.0,0.1869884474857291 -7895.0,0.18692387511586284 -7896.0,0.1868593250446519 -7897.0,0.18679479726439607 -7898.0,0.18673029176739753 -7899.0,0.1866658085459613 -7900.0,0.18660134759239497 -7901.0,0.18653690889900884 -7902.0,0.18647249245811584 -7903.0,0.18640809826203156 -7904.0,0.18634372630307422 -7905.0,0.18627937657356478 -7906.0,0.1862150490658267 -7907.0,0.18615074377218627 -7908.0,0.18608646068497223 -7909.0,0.18602219979651616 -7910.0,0.18595796109915216 -7911.0,0.18589374458521707 -7912.0,0.18582955024705025 -7913.0,0.18576537807699384 -7914.0,0.1857012280673926 -7915.0,0.1856371002105938 -7916.0,0.18557299449894757 -7917.0,0.18550891092480645 -7918.0,0.18544484948052586 -7919.0,0.18538081015846364 -7920.0,0.1853167929509804 -7921.0,0.18525279785043935 -7922.0,0.1851888248492064 -7923.0,0.1851248739396499 -7924.0,0.18506094511414112 -7925.0,0.1849970383650537 -7926.0,0.18493315368476412 -7927.0,0.18486929106565134 -7928.0,0.18480545050009708 -7929.0,0.18474163198048554 -7930.0,0.18467783549920372 -7931.0,0.18461406104864111 -7932.0,0.18455030862118987 -7933.0,0.1844865782092449 -7934.0,0.1844228698052035 -7935.0,0.18435918340146584 -7936.0,0.18429551899043448 -7937.0,0.1842318765645148 -7938.0,0.1841682561161147 -7939.0,0.18410465763764475 -7940.0,0.18404108112151804 -7941.0,0.18397752656015043 -7942.0,0.18391399394596028 -7943.0,0.18385048327136866 -7944.0,0.18378699452879912 -7945.0,0.18372352771067804 -7946.0,0.1836600828094342 -7947.0,0.18359665981749915 -7948.0,0.18353325872730689 -7949.0,0.18346987953129423 -7950.0,0.18340652222190043 -7951.0,0.18334318679156747 -7952.0,0.18327987323273992 -7953.0,0.18321658153786483 -7954.0,0.18315331169939209 -7955.0,0.18309006370977393 -7956.0,0.18302683756146546 -7957.0,0.18296363324692416 -7958.0,0.1829004507586103 -7959.0,0.1828372900889866 -7960.0,0.18277415123051852 -7961.0,0.18271103417567397 -7962.0,0.1826479389169236 -7963.0,0.1825848654467406 -7964.0,0.1825218137576008 -7965.0,0.1824587838419825 -7966.0,0.18239577569236679 -7967.0,0.18233278930123714 -7968.0,0.18226982466107988 -7969.0,0.18220688176438368 -7970.0,0.18214396060363994 -7971.0,0.18208106117134265 -7972.0,0.1820181834599883 -7973.0,0.18195532746207616 -7974.0,0.1818924931701078 -7975.0,0.18182968057658772 -7976.0,0.1817668896740227 -7977.0,0.18170412045492235 -7978.0,0.18164137291179863 -7979.0,0.18157864703716636 -7980.0,0.1815159428235427 -7981.0,0.18145326026344752 -7982.0,0.18139059934940324 -7983.0,0.18132796007393495 -7984.0,0.1812653424295701 -7985.0,0.181202746408839 -7986.0,0.1811401720042743 -7987.0,0.18107761920841137 -7988.0,0.1810150880137881 -7989.0,0.180952578412945 -7990.0,0.18089009039842516 -7991.0,0.1808276239627741 -7992.0,0.18076517909854017 -7993.0,0.18070275579827405 -7994.0,0.1806403540545292 -7995.0,0.1805779738598614 -7996.0,0.18051561520682927 -7997.0,0.1804532780879938 -7998.0,0.1803909624959187 -7999.0,0.18032866842317014 -8000.0,0.18026639586231688 -8001.0,0.18020414480593022 -8002.0,0.18014191524658418 -8003.0,0.1800797071768551 -8004.0,0.1800175205893221 -8005.0,0.17995535547656671 -8006.0,0.17989321183117316 -8007.0,0.17983108964572805 -8008.0,0.17976898891282075 -8009.0,0.17970690962504313 -8010.0,0.17964485177498946 -8011.0,0.1795828153552568 -8012.0,0.1795208003584446 -8013.0,0.17945880677715492 -8014.0,0.1793968346039924 -8015.0,0.17933488383156423 -8016.0,0.1792729544524801 -8017.0,0.17921104645935232 -8018.0,0.17914915984479565 -8019.0,0.17908729460142755 -8020.0,0.17902545072186787 -8021.0,0.17896362819873918 -8022.0,0.17890182702466642 -8023.0,0.17884004719227722 -8024.0,0.17877828869420162 -8025.0,0.1787165515230724 -8026.0,0.17865483567152463 -8027.0,0.17859314113219613 -8028.0,0.17853146789772723 -8029.0,0.17846981596076067 -8030.0,0.17840818531394192 -8031.0,0.1783465759499188 -8032.0,0.17828498786134184 -8033.0,0.17822342104086397 -8034.0,0.1781618754811408 -8035.0,0.17810035117483028 -8036.0,0.17803884811459308 -8037.0,0.17797736629309233 -8038.0,0.1779159057029937 -8039.0,0.17785446633696533 -8040.0,0.17779304818767805 -8041.0,0.17773165124780504 -8042.0,0.17767027551002215 -8043.0,0.17760892096700764 -8044.0,0.17754758761144246 -8045.0,0.17748627543600984 -8046.0,0.1774249844333958 -8047.0,0.17736371459628877 -8048.0,0.17730246591737964 -8049.0,0.17724123838936195 -8050.0,0.17718003200493165 -8051.0,0.17711884675678732 -8052.0,0.17705768263762994 -8053.0,0.17699653964016315 -8054.0,0.17693541775709296 -8055.0,0.17687431698112807 -8056.0,0.1768132373049795 -8057.0,0.17675217872136093 -8058.0,0.17669114122298854 -8059.0,0.176630124802581 -8060.0,0.17656912945285946 -8061.0,0.17650815516654766 -8062.0,0.17644720193637178 -8063.0,0.17638626975506058 -8064.0,0.17632535861534523 -8065.0,0.17626446850995953 -8066.0,0.17620359943163974 -8067.0,0.17614275137312457 -8068.0,0.17608192432715536 -8069.0,0.17602111828647582 -8070.0,0.1759603332438323 -8071.0,0.1758995691919735 -8072.0,0.17583882612365082 -8073.0,0.17577810403161795 -8074.0,0.17571740290863128 -8075.0,0.17565672274744953 -8076.0,0.17559606354083407 -8077.0,0.1755354252815486 -8078.0,0.17547480796235956 -8079.0,0.1754142115760356 -8080.0,0.17535363611534813 -8081.0,0.17529308157307083 -8082.0,0.1752325479419801 -8083.0,0.17517203521485458 -8084.0,0.17511154338447568 -8085.0,0.1750510724436271 -8086.0,0.1749906223850951 -8087.0,0.17493019320166847 -8088.0,0.17486978488613839 -8089.0,0.17480939743129864 -8090.0,0.17474903082994536 -8091.0,0.17468868507487736 -8092.0,0.17462836015889574 -8093.0,0.17456805607480425 -8094.0,0.17450777281540897 -8095.0,0.17444751037351863 -8096.0,0.1743872687419443 -8097.0,0.17432704791349965 -8098.0,0.1742668478810007 -8099.0,0.1742066686372661 -8100.0,0.17414651017511684 -8101.0,0.17408637248737652 -8102.0,0.17402625556687107 -8103.0,0.17396615940642904 -8104.0,0.1739060839988814 -8105.0,0.17384602933706156 -8106.0,0.1737859954138055 -8107.0,0.17372598222195149 -8108.0,0.1736659897543405 -8109.0,0.1736060180038158 -8110.0,0.1735460669632233 -8111.0,0.17348613662541115 -8112.0,0.17342622698323018 -8113.0,0.17336633802953358 -8114.0,0.17330646975717703 -8115.0,0.17324662215901868 -8116.0,0.1731867952279192 -8117.0,0.17312698895674156 -8118.0,0.1730672033383514 -8119.0,0.17300743836561672 -8120.0,0.172947694031408 -8121.0,0.17288797032859812 -8122.0,0.1728282672500625 -8123.0,0.1727685847886791 -8124.0,0.17270892293732806 -8125.0,0.17264928168889232 -8126.0,0.172589661036257 -8127.0,0.17253006097230986 -8128.0,0.172470481489941 -8129.0,0.17241092258204307 -8130.0,0.17235138424151106 -8131.0,0.17229186646124256 -8132.0,0.17223236923413746 -8133.0,0.17217289255309826 -8134.0,0.1721134364110297 -8135.0,0.1720540008008392 -8136.0,0.1719945857154365 -8137.0,0.1719351911477338 -8138.0,0.17187581709064578 -8139.0,0.17181646353708954 -8140.0,0.1717571304799846 -8141.0,0.171697817912253 -8142.0,0.17163852582681918 -8143.0,0.17157925421661 -8144.0,0.17152000307455484 -8145.0,0.1714607723935854 -8146.0,0.17140156216663596 -8147.0,0.17134237238664313 -8148.0,0.171283203046546 -8149.0,0.17122405413928612 -8150.0,0.1711649256578075 -8151.0,0.17110581759505641 -8152.0,0.17104672994398182 -8153.0,0.17098766269753493 -8154.0,0.1709286158486695 -8155.0,0.1708695893903416 -8156.0,0.1708105833155099 -8157.0,0.17075159761713532 -8158.0,0.17069263228818135 -8159.0,0.1706336873216138 -8160.0,0.170574762710401 -8161.0,0.1705158584475137 -8162.0,0.17045697452592504 -8163.0,0.17039811093861057 -8164.0,0.1703392676785483 -8165.0,0.17028044473871867 -8166.0,0.17022164211210453 -8167.0,0.17016285979169116 -8168.0,0.17010409777046623 -8169.0,0.1700453560414199 -8170.0,0.16998663459754465 -8171.0,0.16992793343183552 -8172.0,0.16986925253728982 -8173.0,0.16981059190690742 -8174.0,0.16975195153369044 -8175.0,0.16969333141064358 -8176.0,0.16963473153077385 -8177.0,0.16957615188709077 -8178.0,0.16951759247260614 -8179.0,0.16945905328033425 -8180.0,0.1694005343032919 -8181.0,0.16934203553449811 -8182.0,0.16928355696697445 -8183.0,0.16922509859374482 -8184.0,0.1691666604078356 -8185.0,0.16910824240227548 -8186.0,0.1690498445700957 -8187.0,0.16899146690432973 -8188.0,0.16893310939801362 -8189.0,0.1688747720441857 -8190.0,0.16881645483588675 -8191.0,0.16875815776616 -8192.0,0.16869988082805099 -8193.0,0.16864162401460767 -8194.0,0.16858338731888053 -8195.0,0.16852517073392229 -8196.0,0.16846697425278814 -8197.0,0.16840879786853566 -8198.0,0.16835064157422483 -8199.0,0.16829250536291807 -8200.0,0.1682343892276801 -8201.0,0.16817629316157814 -8202.0,0.1681182171576817 -8203.0,0.16806016120906278 -8204.0,0.16800212530879569 -8205.0,0.16794410944995722 -8206.0,0.16788611362562644 -8207.0,0.16782813782888495 -8208.0,0.16777018205281657 -8209.0,0.16771224629050768 -8210.0,0.16765433053504686 -8211.0,0.16759643477952532 -8212.0,0.1675385590170364 -8213.0,0.16748070324067604 -8214.0,0.16742286744354237 -8215.0,0.1673650516187361 -8216.0,0.16730725575936012 -8217.0,0.16724947985851987 -8218.0,0.16719172390932313 -8219.0,0.16713398790488 -8220.0,0.16707627183830298 -8221.0,0.16701857570270698 -8222.0,0.1669608994912093 -8223.0,0.1669032431969295 -8224.0,0.16684560681298974 -8225.0,0.16678799033251432 -8226.0,0.16673039374863005 -8227.0,0.16667281705446604 -8228.0,0.16661526024315387 -8229.0,0.16655772330782737 -8230.0,0.16650020624162287 -8231.0,0.16644270903767894 -8232.0,0.16638523168913663 -8233.0,0.16632777418913924 -8234.0,0.16627033653083262 -8235.0,0.1662129187073648 -8236.0,0.16615552071188622 -8237.0,0.16609814253754984 -8238.0,0.16604078417751073 -8239.0,0.16598344562492656 -8240.0,0.16592612687295719 -8241.0,0.16586882791476495 -8242.0,0.16581154874351445 -8243.0,0.16575428935237277 -8244.0,0.1656970497345092 -8245.0,0.16563982988309553 -8246.0,0.1655826297913058 -8247.0,0.16552544945231656 -8248.0,0.16546828885930648 -8249.0,0.16541114800545678 -8250.0,0.16535402688395098 -8251.0,0.16529692548797495 -8252.0,0.16523984381071688 -8253.0,0.16518278184536736 -8254.0,0.1651257395851193 -8255.0,0.165068717023168 -8256.0,0.1650117141527111 -8257.0,0.1649547309669485 -8258.0,0.16489776745908258 -8259.0,0.16484082362231797 -8260.0,0.16478389944986177 -8261.0,0.1647269949349232 -8262.0,0.16467011007071414 -8263.0,0.16461324485044848 -8264.0,0.16455639926734272 -8265.0,0.1644995733146155 -8266.0,0.16444276698548804 -8267.0,0.1643859802731836 -8268.0,0.16432921317092808 -8269.0,0.16427246567194945 -8270.0,0.16421573776947826 -8271.0,0.1641590294567472 -8272.0,0.16410234072699145 -8273.0,0.16404567157344838 -8274.0,0.16398902198935783 -8275.0,0.16393239196796194 -8276.0,0.1638757815025051 -8277.0,0.16381919058623412 -8278.0,0.16376261921239813 -8279.0,0.16370606737424856 -8280.0,0.16364953506503918 -8281.0,0.16359302227802613 -8282.0,0.1635365290064678 -8283.0,0.16348005524362502 -8284.0,0.16342360098276082 -8285.0,0.16336716621714067 -8286.0,0.16331075094003225 -8287.0,0.16325435514470568 -8288.0,0.16319797882443332 -8289.0,0.16314162197248996 -8290.0,0.16308528458215252 -8291.0,0.16302896664670047 -8292.0,0.16297266815941538 -8293.0,0.16291638911358133 -8294.0,0.16286012950248469 -8295.0,0.16280388931941397 -8296.0,0.16274766855766024 -8297.0,0.16269146721051667 -8298.0,0.16263528527127893 -8299.0,0.16257912273324487 -8300.0,0.16252297958971476 -8301.0,0.1624668558339911 -8302.0,0.16241075145937875 -8303.0,0.16235466645918484 -8304.0,0.16229860082671888 -8305.0,0.1622425545552926 -8306.0,0.16218652763822014 -8307.0,0.16213052006881784 -8308.0,0.1620745318404045 -8309.0,0.162018562946301 -8310.0,0.16196261337983076 -8311.0,0.16190668313431936 -8312.0,0.16185077220309474 -8313.0,0.16179488057948715 -8314.0,0.1617390082568291 -8315.0,0.16168315522845547 -8316.0,0.16162732148770337 -8317.0,0.16157150702791223 -8318.0,0.1615157118424238 -8319.0,0.16145993592458216 -8320.0,0.1614041792677336 -8321.0,0.1613484418652268 -8322.0,0.16129272371041262 -8323.0,0.16123702479664437 -8324.0,0.16118134511727752 -8325.0,0.16112568466566995 -8326.0,0.16107004343518172 -8327.0,0.1610144214191753 -8328.0,0.1609588186110153 -8329.0,0.16090323500406878 -8330.0,0.16084767059170496 -8331.0,0.16079212536729545 -8332.0,0.16073659932421416 -8333.0,0.16068109245583714 -8334.0,0.1606256047555429 -8335.0,0.16057013621671212 -8336.0,0.16051468683272785 -8337.0,0.1604592565969753 -8338.0,0.16040384550284215 -8339.0,0.16034845354371818 -8340.0,0.1602930807129956 -8341.0,0.16023772700406877 -8342.0,0.16018239241033444 -8343.0,0.16012707692519154 -8344.0,0.16007178054204144 -8345.0,0.16001650325428757 -8346.0,0.15996124505533585 -8347.0,0.1599060059385943 -8348.0,0.15985078589747337 -8349.0,0.15979558492538565 -8350.0,0.15974040301574605 -8351.0,0.1596852401619719 -8352.0,0.1596300963574825 -8353.0,0.15957497159569972 -8354.0,0.15951986587004752 -8355.0,0.15946477917395224 -8356.0,0.15940971150084235 -8357.0,0.1593546628441488 -8358.0,0.15929963319730456 -8359.0,0.1592446225537451 -8360.0,0.15918963090690796 -8361.0,0.15913465825023312 -8362.0,0.1590797045771627 -8363.0,0.15902476988114114 -8364.0,0.1589698541556151 -8365.0,0.1589149573940336 -8366.0,0.15886007958984777 -8367.0,0.15880522073651118 -8368.0,0.15875038082747947 -8369.0,0.1586955598562107 -8370.0,0.15864075781616516 -8371.0,0.1585859747008053 -8372.0,0.15853121050359592 -8373.0,0.15847646521800404 -8374.0,0.158421738837499 -8375.0,0.15836703135555225 -8376.0,0.15831234276563766 -8377.0,0.15825767306123123 -8378.0,0.1582030222358113 -8379.0,0.15814839028285843 -8380.0,0.1580937771958554 -8381.0,0.15803918296828726 -8382.0,0.15798460759364136 -8383.0,0.1579300510654072 -8384.0,0.15787551337707664 -8385.0,0.15782099452214368 -8386.0,0.15776649449410465 -8387.0,0.1577120132864581 -8388.0,0.15765755089270475 -8389.0,0.15760310730634775 -8390.0,0.1575486825208923 -8391.0,0.15749427652984593 -8392.0,0.1574398893267184 -8393.0,0.15738552090502175 -8394.0,0.15733117125827015 -8395.0,0.15727684037998016 -8396.0,0.15722252826367045 -8397.0,0.15716823490286203 -8398.0,0.15711396029107805 -8399.0,0.15705970442184397 -8400.0,0.15700546728868744 -8401.0,0.1569512488851384 -8402.0,0.15689704920472894 -8403.0,0.1568428682409935 -8404.0,0.1567887059874686 -8405.0,0.15673456243769318 -8406.0,0.15668043758520822 -8407.0,0.15662633142355703 -8408.0,0.15657224394628522 -8409.0,0.15651817514694047 -8410.0,0.1564641250190728 -8411.0,0.1564100935562344 -8412.0,0.15635608075197974 -8413.0,0.15630208659986544 -8414.0,0.15624811109345046 -8415.0,0.15619415422629584 -8416.0,0.15614021599196498 -8417.0,0.1560862963840234 -8418.0,0.15603239539603894 -8419.0,0.15597851302158153 -8420.0,0.15592464925422347 -8421.0,0.15587080408753912 -8422.0,0.15581697751510523 -8423.0,0.15576316953050062 -8424.0,0.15570938012730645 -8425.0,0.15565560929910596 -8426.0,0.1556018570394847 -8427.0,0.1555481233420305 -8428.0,0.15549440820033322 -8429.0,0.15544071160798514 -8430.0,0.15538703355858052 -8431.0,0.15533337404571607 -8432.0,0.15527973306299053 -8433.0,0.15522611060400496 -8434.0,0.15517250666236257 -8435.0,0.15511892123166884 -8436.0,0.15506535430553137 -8437.0,0.15501180587756003 -8438.0,0.15495827594136688 -8439.0,0.15490476449056623 -8440.0,0.1548512715187745 -8441.0,0.1547977970196104 -8442.0,0.1547443409866948 -8443.0,0.1546909034136508 -8444.0,0.15463748429410365 -8445.0,0.15458408362168086 -8446.0,0.15453070139001213 -8447.0,0.15447733759272933 -8448.0,0.15442399222346662 -8449.0,0.15437066527586016 -8450.0,0.15431735674354854 -8451.0,0.15426406662017236 -8452.0,0.1542107948993746 -8453.0,0.15415754157480022 -8454.0,0.15410430664009656 -8455.0,0.15405109008891302 -8456.0,0.15399789191490135 -8457.0,0.1539447121117153 -8458.0,0.15389155067301094 -8459.0,0.1538384075924465 -8460.0,0.15378528286368243 -8461.0,0.15373217648038126 -8462.0,0.15367908843620787 -8463.0,0.15362601872482917 -8464.0,0.15357296733991438 -8465.0,0.15351993427513488 -8466.0,0.15346691952416414 -8467.0,0.15341392308067794 -8468.0,0.15336094493835414 -8469.0,0.1533079850908729 -8470.0,0.15325504353191644 -8471.0,0.15320212025516927 -8472.0,0.15314921525431796 -8473.0,0.1530963285230514 -8474.0,0.15304346005506053 -8475.0,0.1529906098440386 -8476.0,0.15293777788368088 -8477.0,0.15288496416768496 -8478.0,0.1528321686897505 -8479.0,0.15277939144357947 -8480.0,0.15272663242287582 -8481.0,0.15267389162134587 -8482.0,0.15262116903269798 -8483.0,0.15256846465064272 -8484.0,0.15251577846889292 -8485.0,0.1524631104811634 -8486.0,0.15241046068117134 -8487.0,0.15235782906263595 -8488.0,0.1523052156192787 -8489.0,0.15225262034482312 -8490.0,0.15220004323299507 -8491.0,0.1521474842775224 -8492.0,0.15209494347213526 -8493.0,0.1520424208105659 -8494.0,0.15198991628654876 -8495.0,0.15193742989382042 -8496.0,0.15188496162611964 -8497.0,0.15183251147718732 -8498.0,0.1517800794407666 -8499.0,0.15172766551060263 -8500.0,0.15167526968044293 -8501.0,0.1516228919440369 -8502.0,0.1515705322951364 -8503.0,0.15151819072749526 -8504.0,0.15146586723486946 -8505.0,0.15141356181101728 -8506.0,0.15136127444969896 -8507.0,0.15130900514467713 -8508.0,0.15125675388971632 -8509.0,0.15120452067858342 -8510.0,0.15115230550504732 -8511.0,0.1511001083628792 -8512.0,0.15104792924585225 -8513.0,0.15099576814774196 -8514.0,0.1509436250623258 -8515.0,0.15089149998338358 -8516.0,0.15083939290469708 -8517.0,0.15078730382005037 -8518.0,0.15073523272322953 -8519.0,0.1506831796080229 -8520.0,0.1506311444682209 -8521.0,0.15057912729761616 -8522.0,0.15052712809000338 -8523.0,0.15047514683917942 -8524.0,0.15042318353894335 -8525.0,0.15037123818309625 -8526.0,0.1503193107654415 -8527.0,0.15026740127978447 -8528.0,0.15021550971993278 -8529.0,0.15016363607969613 -8530.0,0.15011178035288636 -8531.0,0.15005994253331748 -8532.0,0.15000812261480562 -8533.0,0.14995632059116898 -8534.0,0.14990453645622806 -8535.0,0.1498527702038053 -8536.0,0.14980102182772542 -8537.0,0.14974929132181516 -8538.0,0.14969757867990355 -8539.0,0.14964588389582154 -8540.0,0.14959420696340234 -8541.0,0.14954254787648133 -8542.0,0.1494909066288959 -8543.0,0.14943928321448566 -8544.0,0.14938767762709226 -8545.0,0.1493360898605596 -8546.0,0.1492845199087336 -8547.0,0.14923296776546233 -8548.0,0.149181433424596 -8549.0,0.14912991687998697 -8550.0,0.14907841812548966 -8551.0,0.14902693715496065 -8552.0,0.14897547396225863 -8553.0,0.14892402854124445 -8554.0,0.148872600885781 -8555.0,0.14882119098973337 -8556.0,0.1487697988469687 -8557.0,0.1487184244513563 -8558.0,0.1486670677967676 -8559.0,0.1486157288770761 -8560.0,0.14856440768615747 -8561.0,0.1485131042178894 -8562.0,0.14846181846615186 -8563.0,0.14841055042482676 -8564.0,0.1483593000877982 -8565.0,0.14830806744895242 -8566.0,0.14825685250217774 -8567.0,0.14820565524136453 -8568.0,0.1481544756604054 -8569.0,0.14810331375319497 -8570.0,0.14805216951363 -8571.0,0.14800104293560934 -8572.0,0.14794993401303402 -8573.0,0.14789884273980702 -8574.0,0.14784776910983363 -8575.0,0.14779671311702106 -8576.0,0.14774567475527872 -8577.0,0.14769465401851817 -8578.0,0.1476436509006529 -8579.0,0.1475926653955987 -8580.0,0.1475416974972733 -8581.0,0.14749074719959668 -8582.0,0.14743981449649074 -8583.0,0.14738889938187968 -8584.0,0.14733800184968965 -8585.0,0.14728712189384896 -8586.0,0.14723625950828795 -8587.0,0.14718541468693921 -8588.0,0.14713458742373722 -8589.0,0.14708377771261874 -8590.0,0.14703298554752245 -8591.0,0.14698221092238933 -8592.0,0.14693145383116224 -8593.0,0.1468807142677863 -8594.0,0.14682999222620857 -8595.0,0.14677928770037832 -8596.0,0.14672860068424692 -8597.0,0.14667793117176772 -8598.0,0.14662727915689625 -8599.0,0.14657664463359005 -8600.0,0.14652602759580885 -8601.0,0.14647542803751434 -8602.0,0.1464248459526704 -8603.0,0.14637428133524294 -8604.0,0.14632373417920003 -8605.0,0.14627320447851166 -8606.0,0.1462226922271501 -8607.0,0.14617219741908952 -8608.0,0.14612172004830634 -8609.0,0.1460712601087789 -8610.0,0.1460208175944878 -8611.0,0.14597039249941549 -8612.0,0.14591998481754673 -8613.0,0.14586959454286816 -8614.0,0.14581922166936867 -8615.0,0.14576886619103913 -8616.0,0.1457185281018724 -8617.0,0.1456682073958637 -8618.0,0.14561790406700995 -8619.0,0.14556761810931043 -8620.0,0.14551734951676637 -8621.0,0.1454670982833811 -8622.0,0.14541686440315998 -8623.0,0.14536664787011053 -8624.0,0.14531644867824223 -8625.0,0.14526626682156674 -8626.0,0.14521610229409768 -8627.0,0.1451659550898508 -8628.0,0.1451158252028439 -8629.0,0.14506571262709692 -8630.0,0.14501561735663165 -8631.0,0.14496553938547224 -8632.0,0.14491547870764465 -8633.0,0.14486543531717702 -8634.0,0.14481540920809963 -8635.0,0.1447654003744446 -8636.0,0.14471540881024636 -8637.0,0.14466543450954117 -8638.0,0.14461547746636755 -8639.0,0.14456553767476593 -8640.0,0.1445156151287789 -8641.0,0.14446570982245102 -8642.0,0.144415821749829 -8643.0,0.14436595090496152 -8644.0,0.14431609728189937 -8645.0,0.14426626087469535 -8646.0,0.14421644167740438 -8647.0,0.14416663968408336 -8648.0,0.1441168548887913 -8649.0,0.1440670872855892 -8650.0,0.1440173368685402 -8651.0,0.1439676036317094 -8652.0,0.143917887569164 -8653.0,0.14386818867497325 -8654.0,0.14381850694320839 -8655.0,0.1437688423679428 -8656.0,0.14371919494325183 -8657.0,0.14366956466321293 -8658.0,0.14361995152190551 -8659.0,0.14357035551341119 -8660.0,0.1435207766318134 -8661.0,0.14347121487119785 -8662.0,0.1434216702256521 -8663.0,0.14337214268926593 -8664.0,0.14332263225613096 -8665.0,0.14327313892034102 -8666.0,0.1432236626759919 -8667.0,0.14317420351718146 -8668.0,0.14312476143800953 -8669.0,0.14307533643257814 -8670.0,0.1430259284949911 -8671.0,0.1429765376193545 -8672.0,0.14292716379977638 -8673.0,0.14287780703036676 -8674.0,0.14282846730523777 -8675.0,0.14277914461850347 -8676.0,0.14272983896428013 -8677.0,0.14268055033668584 -8678.0,0.1426312787298409 -8679.0,0.14258202413786752 -8680.0,0.14253278655489005 -8681.0,0.1424835659750347 -8682.0,0.14243436239242993 -8683.0,0.14238517580120602 -8684.0,0.14233600619549547 -8685.0,0.14228685356943258 -8686.0,0.1422377179171539 -8687.0,0.1421885992327978 -8688.0,0.14213949751050492 -8689.0,0.14209041274441767 -8690.0,0.14204134492868062 -8691.0,0.14199229405744038 -8692.0,0.14194326012484546 -8693.0,0.1418942431250466 -8694.0,0.14184524305219626 -8695.0,0.14179625990044922 -8696.0,0.1417472936639621 -8697.0,0.1416983443368936 -8698.0,0.14164941191340438 -8699.0,0.14160049638765723 -8700.0,0.1415515977538168 -8701.0,0.1415027160060499 -8702.0,0.14145385113852527 -8703.0,0.1414050031454137 -8704.0,0.141356172020888 -8705.0,0.14130735775912293 -8706.0,0.1412585603542953 -8707.0,0.141209779800584 -8708.0,0.14116101609216977 -8709.0,0.14111226922323553 -8710.0,0.14106353918796613 -8711.0,0.1410148259805484 -8712.0,0.14096612959517124 -8713.0,0.1409174500260255 -8714.0,0.14086878726730406 -8715.0,0.14082014131320184 -8716.0,0.1407715121579157 -8717.0,0.14072289979564453 -8718.0,0.1406743042205893 -8719.0,0.1406257254269528 -8720.0,0.14057716340894008 -8721.0,0.14052861816075787 -8722.0,0.14048008967661524 -8723.0,0.14043157795072297 -8724.0,0.14038308297729404 -8725.0,0.14033460475054332 -8726.0,0.14028614326468775 -8727.0,0.14023769851394616 -8728.0,0.1401892704925395 -8729.0,0.14014085919469063 -8730.0,0.14009246461462446 -8731.0,0.14004408674656788 -8732.0,0.13999572558474968 -8733.0,0.13994738112340085 -8734.0,0.13989905335675415 -8735.0,0.1398507422790445 -8736.0,0.13980244788450868 -8737.0,0.13975417016738556 -8738.0,0.13970590912191594 -8739.0,0.13965766474234265 -8740.0,0.13960943702291043 -8741.0,0.13956122595786616 -8742.0,0.13951303154145853 -8743.0,0.13946485376793835 -8744.0,0.13941669263155831 -8745.0,0.1393685481265732 -8746.0,0.13932042024723967 -8747.0,0.13927230898781645 -8748.0,0.13922421434256424 -8749.0,0.13917613630574563 -8750.0,0.13912807487162535 -8751.0,0.13908003003446992 -8752.0,0.13903200178854805 -8753.0,0.13898399012813023 -8754.0,0.13893599504748907 -8755.0,0.13888801654089908 -8756.0,0.1388400546026368 -8757.0,0.13879210922698068 -8758.0,0.13874418040821124 -8759.0,0.13869626814061087 -8760.0,0.13864837241846403 -8761.0,0.13860049323605708 -8762.0,0.1385526305876784 -8763.0,0.1385047844676183 -8764.0,0.13845695487016912 -8765.0,0.1384091417896251 -8766.0,0.1383613452202825 -8767.0,0.13831356515643958 -8768.0,0.13826580159239646 -8769.0,0.13821805452245536 -8770.0,0.13817032394092035 -8771.0,0.13812260984209757 -8772.0,0.13807491222029503 -8773.0,0.13802723106982276 -8774.0,0.13797956638499276 -8775.0,0.137931918160119 -8776.0,0.13788428638951733 -8777.0,0.1378366710675057 -8778.0,0.13778907218840386 -8779.0,0.13774148974653375 -8780.0,0.13769392373621897 -8781.0,0.13764637415178538 -8782.0,0.13759884098756056 -8783.0,0.13755132423787422 -8784.0,0.1375038238970579 -8785.0,0.1374563399594452 -8786.0,0.13740887241937164 -8787.0,0.13736142127117462 -8788.0,0.13731398650919366 -8789.0,0.13726656812777005 -8790.0,0.13721916612124718 -8791.0,0.1371717804839703 -8792.0,0.1371244112102867 -8793.0,0.1370770582945455 -8794.0,0.13702972173109793 -8795.0,0.136982401514297 -8796.0,0.1369350976384978 -8797.0,0.13688781009805728 -8798.0,0.13684053888733447 -8799.0,0.13679328400069013 -8800.0,0.13674604543248722 -8801.0,0.13669882317709042 -8802.0,0.13665161722886657 -8803.0,0.13660442758218425 -8804.0,0.1365572542314141 -8805.0,0.1365100971709287 -8806.0,0.13646295639510256 -8807.0,0.13641583189831213 -8808.0,0.1363687236749358 -8809.0,0.13632163171935388 -8810.0,0.13627455602594865 -8811.0,0.13622749658910435 -8812.0,0.13618045340320709 -8813.0,0.13613342646264504 -8814.0,0.1360864157618081 -8815.0,0.13603942129508836 -8816.0,0.13599244305687966 -8817.0,0.13594548104157786 -8818.0,0.1358985352435807 -8819.0,0.13585160565728793 -8820.0,0.13580469227710115 -8821.0,0.13575779509742403 -8822.0,0.13571091411266195 -8823.0,0.1356640493172224 -8824.0,0.1356172007055148 -8825.0,0.1355703682719504 -8826.0,0.13552355201094246 -8827.0,0.1354767519169061 -8828.0,0.13542996798425846 -8829.0,0.13538320020741854 -8830.0,0.1353364485808073 -8831.0,0.13528971309884755 -8832.0,0.13524299375596413 -8833.0,0.1351962905465838 -8834.0,0.13514960346513516 -8835.0,0.13510293250604877 -8836.0,0.13505627766375716 -8837.0,0.13500963893269477 -8838.0,0.13496301630729787 -8839.0,0.13491640978200475 -8840.0,0.13486981935125558 -8841.0,0.13482324500949255 -8842.0,0.13477668675115956 -8843.0,0.1347301445707026 -8844.0,0.13468361846256952 -8845.0,0.1346371084212101 -8846.0,0.1345906144410761 -8847.0,0.13454413651662098 -8848.0,0.13449767464230034 -8849.0,0.13445122881257163 -8850.0,0.13440479902189423 -8851.0,0.13435838526472932 -8852.0,0.13431198753554013 -8853.0,0.1342656058287917 -8854.0,0.13421924013895117 -8855.0,0.1341728904604873 -8856.0,0.13412655678787094 -8857.0,0.13408023911557485 -8858.0,0.13403393743807374 -8859.0,0.13398765174984398 -8860.0,0.13394138204536415 -8861.0,0.1338951283191146 -8862.0,0.13384889056557756 -8863.0,0.1338026687792373 -8864.0,0.13375646295457977 -8865.0,0.133710273086093 -8866.0,0.1336640991682669 -8867.0,0.13361794119559328 -8868.0,0.13357179916256576 -8869.0,0.13352567306367993 -8870.0,0.13347956289343335 -8871.0,0.1334334686463254 -8872.0,0.13338739031685734 -8873.0,0.13334132789953235 -8874.0,0.13329528138885555 -8875.0,0.13324925077933397 -8876.0,0.13320323606547638 -8877.0,0.13315723724179362 -8878.0,0.13311125430279838 -8879.0,0.1330652872430053 -8880.0,0.13301933605693067 -8881.0,0.13297340073909297 -8882.0,0.1329274812840124 -8883.0,0.13288157768621114 -8884.0,0.1328356899402133 -8885.0,0.13278981804054463 -8886.0,0.13274396198173305 -8887.0,0.13269812175830825 -8888.0,0.1326522973648019 -8889.0,0.13260648879574735 -8890.0,0.13256069604568005 -8891.0,0.1325149191091372 -8892.0,0.1324691579806581 -8893.0,0.13242341265478358 -8894.0,0.13237768312605666 -8895.0,0.1323319693890221 -8896.0,0.13228627143822672 -8897.0,0.1322405892682189 -8898.0,0.13219492287354917 -8899.0,0.13214927224876985 -8900.0,0.13210363738843517 -8901.0,0.1320580182871013 -8902.0,0.13201241493932606 -8903.0,0.13196682733966936 -8904.0,0.13192125548269296 -8905.0,0.13187569936296054 -8906.0,0.13183015897503741 -8907.0,0.13178463431349105 -8908.0,0.13173912537289068 -8909.0,0.13169363214780747 -8910.0,0.13164815463281426 -8911.0,0.13160269282248604 -8912.0,0.1315572467113995 -8913.0,0.13151181629413336 -8914.0,0.13146640156526793 -8915.0,0.13142100251938563 -8916.0,0.1313756191510707 -8917.0,0.1313302514549093 -8918.0,0.13128489942548927 -8919.0,0.1312395630574005 -8920.0,0.1311942423452347 -8921.0,0.1311489372835854 -8922.0,0.13110364786704815 -8923.0,0.13105837409022011 -8924.0,0.1310131159477005 -8925.0,0.13096787343409036 -8926.0,0.13092264654399266 -8927.0,0.13087743527201204 -8928.0,0.13083223961275517 -8929.0,0.13078705956083053 -8930.0,0.13074189511084858 -8931.0,0.13069674625742134 -8932.0,0.130651612995163 -8933.0,0.13060649531868945 -8934.0,0.13056139322261856 -8935.0,0.13051630670156988 -8936.0,0.13047123575016492 -8937.0,0.13042618036302708 -8938.0,0.1303811405347816 -8939.0,0.13033611626005556 -8940.0,0.13029110753347783 -8941.0,0.13024611434967923 -8942.0,0.13020113670329242 -8943.0,0.1301561745889519 -8944.0,0.13011122800129396 -8945.0,0.13006629693495686 -8946.0,0.13002138138458058 -8947.0,0.12997648134480716 -8948.0,0.12993159681028021 -8949.0,0.12988672777564536 -8950.0,0.1298418742355501 -8951.0,0.12979703618464378 -8952.0,0.1297522136175774 -8953.0,0.1297074065290041 -8954.0,0.1296626149135786 -8955.0,0.12961783876595773 -8956.0,0.12957307808079987 -8957.0,0.12952833285276547 -8958.0,0.12948360307651674 -8959.0,0.12943888874671777 -8960.0,0.12939418985803447 -8961.0,0.12934950640513454 -8962.0,0.12930483838268758 -8963.0,0.12926018578536502 -8964.0,0.12921554860784024 -8965.0,0.12917092684478818 -8966.0,0.12912632049088585 -8967.0,0.12908172954081207 -8968.0,0.12903715398924748 -8969.0,0.12899259383087447 -8970.0,0.12894804906037738 -8971.0,0.12890351967244235 -8972.0,0.12885900566175737 -8973.0,0.12881450702301217 -8974.0,0.12877002375089844 -8975.0,0.1287255558401096 -8976.0,0.12868110328534102 -8977.0,0.12863666608128987 -8978.0,0.128592244222655 -8979.0,0.12854783770413722 -8980.0,0.1285034465204392 -8981.0,0.1284590706662655 -8982.0,0.1284147101363222 -8983.0,0.12837036492531748 -8984.0,0.12832603502796133 -8985.0,0.12828172043896555 -8986.0,0.12823742115304362 -8987.0,0.12819313716491101 -8988.0,0.12814886846928497 -8989.0,0.1281046150608846 -8990.0,0.1280603769344307 -8991.0,0.12801615408464606 -8992.0,0.12797194650625518 -8993.0,0.1279277541939845 -8994.0,0.12788357714256204 -8995.0,0.12783941534671794 -8996.0,0.12779526880118394 -8997.0,0.12775113750069372 -8998.0,0.12770702143998278 -8999.0,0.1276629206137883 -9000.0,0.12761883501684942 -9001.0,0.12757476464390702 -9002.0,0.12753070948970394 -9003.0,0.12748666954898455 -9004.0,0.1274426448164953 -9005.0,0.12739863528698436 -9006.0,0.12735464095520177 -9007.0,0.12731066181589917 -9008.0,0.1272666978638303 -9009.0,0.1272227490937505 -9010.0,0.12717881550041713 -9011.0,0.12713489707858908 -9012.0,0.12709099382302727 -9013.0,0.12704710572849437 -9014.0,0.12700323278975484 -9015.0,0.126959375001575 -9016.0,0.12691553235872285 -9017.0,0.12687170485596833 -9018.0,0.12682789248808313 -9019.0,0.12678409524984083 -9020.0,0.12674031313601658 -9021.0,0.12669654614138762 -9022.0,0.1266527942607328 -9023.0,0.12660905748883294 -9024.0,0.12656533582047044 -9025.0,0.12652162925042965 -9026.0,0.12647793777349675 -9027.0,0.12643426138445965 -9028.0,0.12639060007810804 -9029.0,0.12634695384923345 -9030.0,0.12630332269262923 -9031.0,0.12625970660309052 -9032.0,0.12621610557541416 -9033.0,0.12617251960439893 -9034.0,0.1261289486848453 -9035.0,0.12608539281155562 -9036.0,0.126041851979334 -9037.0,0.1259983261829863 -9038.0,0.12595481541732018 -9039.0,0.12591131967714514 -9040.0,0.12586783895727258 -9041.0,0.1258243732525154 -9042.0,0.1257809225576885 -9043.0,0.12573748686760855 -9044.0,0.12569406617709408 -9045.0,0.12565066048096515 -9046.0,0.12560726977404385 -9047.0,0.125563894051154 -9048.0,0.12552053330712123 -9049.0,0.12547718753677284 -9050.0,0.125433856734938 -9051.0,0.1253905408964477 -9052.0,0.12534724001613465 -9053.0,0.12530395408883346 -9054.0,0.12526068310938032 -9055.0,0.12521742707261332 -9056.0,0.1251741859733724 -9057.0,0.12513095980649921 -9058.0,0.12508774856683713 -9059.0,0.12504455224923136 -9060.0,0.12500137084852897 -9061.0,0.12495820435957873 -9062.0,0.12491505277723111 -9063.0,0.12487191609633849 -9064.0,0.12482879431175498 -9065.0,0.12478568741833651 -9066.0,0.12474259541094065 -9067.0,0.12469951828442688 -9068.0,0.12465645603365641 -9069.0,0.12461340865349224 -9070.0,0.12457037613879918 -9071.0,0.12452735848444366 -9072.0,0.12448435568529402 -9073.0,0.12444136773622037 -9074.0,0.1243983946320946 -9075.0,0.12435543636779023 -9076.0,0.1243124929381827 -9077.0,0.12426956433814916 -9078.0,0.12422665056256862 -9079.0,0.12418375160632167 -9080.0,0.12414086746429082 -9081.0,0.1240979981313603 -9082.0,0.12405514360241617 -9083.0,0.12401230387234609 -9084.0,0.12396947893603966 -9085.0,0.12392666878838815 -9086.0,0.1238838734242847 -9087.0,0.123841092838624 -9088.0,0.12379832702630274 -9089.0,0.12375557598221922 -9090.0,0.12371283970127357 -9091.0,0.12367011817836773 -9092.0,0.1236274114084052 -9093.0,0.12358471938629147 -9094.0,0.12354204210693365 -9095.0,0.12349937956524072 -9096.0,0.12345673175612325 -9097.0,0.1234140986744937 -9098.0,0.12337148031526628 -9099.0,0.12332887667335697 -9100.0,0.12328628774368337 -9101.0,0.12324371352116498 -9102.0,0.12320115400072298 -9103.0,0.12315860917728043 -9104.0,0.1231160790457619 -9105.0,0.12307356360109392 -9106.0,0.12303106283820471 -9107.0,0.12298857675202424 -9108.0,0.12294610533748428 -9109.0,0.12290364858951819 -9110.0,0.12286120650306125 -9111.0,0.12281877907305042 -9112.0,0.12277636629442447 -9113.0,0.12273396816212377 -9114.0,0.12269158467109056 -9115.0,0.12264921581626884 -9116.0,0.12260686159260434 -9117.0,0.1225645219950444 -9118.0,0.12252219701853828 -9119.0,0.12247988665803691 -9120.0,0.12243759090849304 -9121.0,0.12239530976486097 -9122.0,0.12235304322209695 -9123.0,0.12231079127515886 -9124.0,0.1222685539190064 -9125.0,0.12222633114860088 -9126.0,0.12218412295890548 -9127.0,0.12214192934488505 -9128.0,0.12209975030150622 -9129.0,0.12205758582373738 -9130.0,0.12201543590654852 -9131.0,0.12197330054491151 -9132.0,0.12193117973379991 -9133.0,0.12188907346818906 -9134.0,0.12184698174305589 -9135.0,0.12180490455337922 -9136.0,0.12176284189413954 -9137.0,0.12172079376031913 -9138.0,0.12167876014690186 -9139.0,0.12163674104887348 -9140.0,0.12159473646122142 -9141.0,0.12155274637893487 -9142.0,0.12151077079700465 -9143.0,0.1214688097104234 -9144.0,0.12142686311418548 -9145.0,0.12138493100328696 -9146.0,0.12134301337272571 -9147.0,0.12130111021750115 -9148.0,0.12125922153261459 -9149.0,0.12121734731306902 -9150.0,0.1211754875538692 -9151.0,0.12113364225002146 -9152.0,0.12109181139653402 -9153.0,0.12104999498841676 -9154.0,0.12100819302068135 -9155.0,0.12096640548834098 -9156.0,0.1209246323864108 -9157.0,0.12088287370990755 -9158.0,0.1208411294538498 -9159.0,0.12079939961325764 -9160.0,0.12075768418315307 -9161.0,0.12071598315855973 -9162.0,0.12067429653450307 -9163.0,0.12063262430601004 -9164.0,0.12059096646810953 -9165.0,0.12054932301583204 -9166.0,0.12050769394420983 -9167.0,0.1204660792482769 -9168.0,0.12042447892306882 -9169.0,0.120382892963623 -9170.0,0.12034132136497858 -9171.0,0.1202997641221764 -9172.0,0.12025822123025888 -9173.0,0.12021669268427031 -9174.0,0.12017517847925663 -9175.0,0.12013367861026557 -9176.0,0.12009219307234638 -9177.0,0.12005072186055019 -9178.0,0.12000926496992978 -9179.0,0.11996782239553971 -9180.0,0.11992639413243608 -9181.0,0.11988498017567685 -9182.0,0.11984358052032162 -9183.0,0.11980219516143174 -9184.0,0.11976082409407028 -9185.0,0.11971946731330185 -9186.0,0.11967812481419297 -9187.0,0.11963679659181177 -9188.0,0.11959548264122814 -9189.0,0.11955418295751352 -9190.0,0.11951289753574124 -9191.0,0.1194716263709862 -9192.0,0.11943036945832515 -9193.0,0.11938912679283631 -9194.0,0.1193478983695998 -9195.0,0.11930668418369735 -9196.0,0.11926548423021248 -9197.0,0.11922429850423022 -9198.0,0.11918312700083747 -9199.0,0.11914196971512275 -9200.0,0.11910082664217639 -9201.0,0.11905969777709018 -9202.0,0.11901858311495782 -9203.0,0.11897748265087461 -9204.0,0.11893639637993758 -9205.0,0.11889532429724549 -9206.0,0.11885426639789863 -9207.0,0.11881322267699915 -9208.0,0.11877219312965083 -9209.0,0.11873117775095919 -9210.0,0.1186901765360313 -9211.0,0.11864918947997605 -9212.0,0.118608216577904 -9213.0,0.11856725782492744 -9214.0,0.11852631321616017 -9215.0,0.11848538274671784 -9216.0,0.11844446641171777 -9217.0,0.11840356420627897 -9218.0,0.11836267612552201 -9219.0,0.11832180216456929 -9220.0,0.11828094231854484 -9221.0,0.1182400965825744 -9222.0,0.11819926495178538 -9223.0,0.11815844742130681 -9224.0,0.11811764398626948 -9225.0,0.11807685464180584 -9226.0,0.11803607938305008 -9227.0,0.1179953182051379 -9228.0,0.11795457110320683 -9229.0,0.11791383807239604 -9230.0,0.11787311910784645 -9231.0,0.11783241420470046 -9232.0,0.11779172335810233 -9233.0,0.11775104656319794 -9234.0,0.11771038381513489 -9235.0,0.11766973510906233 -9236.0,0.11762910044013118 -9237.0,0.11758847980349404 -9238.0,0.11754787319430524 -9239.0,0.11750728060772056 -9240.0,0.11746670203889767 -9241.0,0.11742613748299585 -9242.0,0.11738558693517603 -9243.0,0.1173450503906009 -9244.0,0.11730452784443464 -9245.0,0.11726401929184323 -9246.0,0.1172235247279943 -9247.0,0.11718304414805722 -9248.0,0.11714257754720284 -9249.0,0.11710212492060383 -9250.0,0.1170616862634345 -9251.0,0.11702126157087084 -9252.0,0.1169808508380904 -9253.0,0.11694045406027252 -9254.0,0.11690007123259817 -9255.0,0.11685970235025 -9256.0,0.11681934740841221 -9257.0,0.1167790064022708 -9258.0,0.11673867932701337 -9259.0,0.11669836617782922 -9260.0,0.11665806694990931 -9261.0,0.11661778163844615 -9262.0,0.11657751023863404 -9263.0,0.11653725274566888 -9264.0,0.11649700915474832 -9265.0,0.1164567794610715 -9266.0,0.11641656365983934 -9267.0,0.11637636174625438 -9268.0,0.1163361737155209 -9269.0,0.11629599956284463 -9270.0,0.11625583928343318 -9271.0,0.11621569287249568 -9272.0,0.11617556032524304 -9273.0,0.1161354416368876 -9274.0,0.11609533680264358 -9275.0,0.11605524581772675 -9276.0,0.1160151686773546 -9277.0,0.11597510537674612 -9278.0,0.11593505591112209 -9279.0,0.11589502027570492 -9280.0,0.11585499846571863 -9281.0,0.11581499047638898 -9282.0,0.11577499630294319 -9283.0,0.11573501594061031 -9284.0,0.11569504938462097 -9285.0,0.1156550966302075 -9286.0,0.11561515767260373 -9287.0,0.11557523250704528 -9288.0,0.11553532112876937 -9289.0,0.11549542353301492 -9290.0,0.11545553971502233 -9291.0,0.1154156696700338 -9292.0,0.11537581339329313 -9293.0,0.11533597088004581 -9294.0,0.1152961421255388 -9295.0,0.1152563271250209 -9296.0,0.11521652587374245 -9297.0,0.11517673836695545 -9298.0,0.1151369645999136 -9299.0,0.11509720456787208 -9300.0,0.11505745826608785 -9301.0,0.11501772568981947 -9302.0,0.11497800683432717 -9303.0,0.11493830169487271 -9304.0,0.11489861026671958 -9305.0,0.1148589325451329 -9306.0,0.11481926852537944 -9307.0,0.11477961820272747 -9308.0,0.11473998157244707 -9309.0,0.11470035862980986 -9310.0,0.11466074937008917 -9311.0,0.1146211537885598 -9312.0,0.11458157188049833 -9313.0,0.11454200364118294 -9314.0,0.11450244906589348 -9315.0,0.11446290814991127 -9316.0,0.11442338088851939 -9317.0,0.11438386727700257 -9318.0,0.11434436731064711 -9319.0,0.11430488098474098 -9320.0,0.11426540829457368 -9321.0,0.11422594923543644 -9322.0,0.11418650380262209 -9323.0,0.11414707199142511 -9324.0,0.1141076537971415 -9325.0,0.11406824921506897 -9326.0,0.11402885824050689 -9327.0,0.11398948086875621 -9328.0,0.11395011709511942 -9329.0,0.11391076691490074 -9330.0,0.11387143032340599 -9331.0,0.11383210731594266 -9332.0,0.11379279788781971 -9333.0,0.11375350203434782 -9334.0,0.11371421975083933 -9335.0,0.11367495103260812 -9336.0,0.11363569587496979 -9337.0,0.11359645427324136 -9338.0,0.11355722622274166 -9339.0,0.11351801171879106 -9340.0,0.11347881075671161 -9341.0,0.11343962333182683 -9342.0,0.11340044943946198 -9343.0,0.11336128907494392 -9344.0,0.11332214223360113 -9345.0,0.1132830089107636 -9346.0,0.11324388910176303 -9347.0,0.11320478280193275 -9348.0,0.11316569000660769 -9349.0,0.11312661071112427 -9350.0,0.11308754491082067 -9351.0,0.11304849260103661 -9352.0,0.1130094537771135 -9353.0,0.11297042843439419 -9354.0,0.11293141656822327 -9355.0,0.11289241817394693 -9356.0,0.11285343324691297 -9357.0,0.11281446178247076 -9358.0,0.11277550377597124 -9359.0,0.11273655922276704 -9360.0,0.11269762811821235 -9361.0,0.11265871045766303 -9362.0,0.1126198062364764 -9363.0,0.11258091545001149 -9364.0,0.11254203809362892 -9365.0,0.11250317416269098 -9366.0,0.11246432365256137 -9367.0,0.11242548655860556 -9368.0,0.11238666287619055 -9369.0,0.11234785260068503 -9370.0,0.11230905572745911 -9371.0,0.11227027225188466 -9372.0,0.11223150216933508 -9373.0,0.11219274547518542 -9374.0,0.11215400216481228 -9375.0,0.11211527223359381 -9376.0,0.11207655567690984 -9377.0,0.11203785249014178 -9378.0,0.11199916266867267 -9379.0,0.111960486207887 -9380.0,0.11192182310317098 -9381.0,0.11188317334991241 -9382.0,0.11184453694350067 -9383.0,0.11180591387932667 -9384.0,0.11176730415278296 -9385.0,0.11172870775926373 -9386.0,0.11169012469416471 -9387.0,0.11165155495288316 -9388.0,0.11161299853081802 -9389.0,0.11157445542336981 -9390.0,0.11153592562594064 -9391.0,0.11149740913393412 -9392.0,0.11145890594275554 -9393.0,0.11142041604781174 -9394.0,0.11138193944451118 -9395.0,0.11134347612826392 -9396.0,0.11130502609448148 -9397.0,0.1112665893385771 -9398.0,0.11122816585596552 -9399.0,0.1111897556420632 -9400.0,0.11115135869228794 -9401.0,0.11111297500205934 -9402.0,0.1110746045667985 -9403.0,0.11103624738192815 -9404.0,0.11099790344287246 -9405.0,0.11095957274505733 -9406.0,0.11092125528391018 -9407.0,0.11088295105486007 -9408.0,0.1108446600533375 -9409.0,0.11080638227477466 -9410.0,0.1107681177146053 -9411.0,0.11072986636826473 -9412.0,0.11069162823118991 -9413.0,0.1106534032988192 -9414.0,0.11061519156659269 -9415.0,0.11057699302995201 -9416.0,0.11053880768434038 -9417.0,0.11050063552520249 -9418.0,0.11046247654798473 -9419.0,0.110424330748135 -9420.0,0.11038619812110283 -9421.0,0.11034807866233919 -9422.0,0.11030997236729674 -9423.0,0.1102718792314297 -9424.0,0.11023379925019387 -9425.0,0.11019573241904648 -9426.0,0.1101576787334465 -9427.0,0.11011963818885441 -9428.0,0.11008161078073228 -9429.0,0.11004359650454362 -9430.0,0.11000559535575366 -9431.0,0.10996760732982915 -9432.0,0.10992963242223837 -9433.0,0.10989167062845126 -9434.0,0.10985372194393915 -9435.0,0.10981578636417509 -9436.0,0.10977786388463363 -9437.0,0.10973995450079096 -9438.0,0.10970205820812468 -9439.0,0.10966417500211405 -9440.0,0.1096263048782399 -9441.0,0.10958844783198467 -9442.0,0.10955060385883215 -9443.0,0.10951277295426791 -9444.0,0.10947495511377899 -9445.0,0.10943715033285405 -9446.0,0.10939935860698315 -9447.0,0.10936157993165806 -9448.0,0.10932381430237206 -9449.0,0.10928606171462 -9450.0,0.10924832216389832 -9451.0,0.10921059564570484 -9452.0,0.10917288215553915 -9453.0,0.10913518168890227 -9454.0,0.10909749424129687 -9455.0,0.10905981980822703 -9456.0,0.1090221583851985 -9457.0,0.10898450996771855 -9458.0,0.10894687455129605 -9459.0,0.10890925213144126 -9460.0,0.10887164270366616 -9461.0,0.10883404626348421 -9462.0,0.10879646280641049 -9463.0,0.10875889232796146 -9464.0,0.1087213348236553 -9465.0,0.10868379028901165 -9466.0,0.10864625871955177 -9467.0,0.10860874011079835 -9468.0,0.10857123445827571 -9469.0,0.10853374175750972 -9470.0,0.10849626200402777 -9471.0,0.10845879519335884 -9472.0,0.10842134132103332 -9473.0,0.10838390038258328 -9474.0,0.1083464723735423 -9475.0,0.10830905728944552 -9476.0,0.10827165512582952 -9477.0,0.10823426587823254 -9478.0,0.1081968895421943 -9479.0,0.10815952611325612 -9480.0,0.10812217558696074 -9481.0,0.10808483795885256 -9482.0,0.10804751322447745 -9483.0,0.10801020137938291 -9484.0,0.10797290241911782 -9485.0,0.10793561633923272 -9486.0,0.10789834313527964 -9487.0,0.10786108280281219 -9488.0,0.10782383533738552 -9489.0,0.10778660073455616 -9490.0,0.10774937898988238 -9491.0,0.10771217009892387 -9492.0,0.10767497405724193 -9493.0,0.10763779086039925 -9494.0,0.10760062050396021 -9495.0,0.10756346298349063 -9496.0,0.10752631829455797 -9497.0,0.10748918643273102 -9498.0,0.10745206739358026 -9499.0,0.10741496117267768 -9500.0,0.10737786776559682 -9501.0,0.10734078716791261 -9502.0,0.10730371937520164 -9503.0,0.10726666438304201 -9504.0,0.10722962218701339 -9505.0,0.10719259278269679 -9506.0,0.10715557616567492 -9507.0,0.10711857233153199 -9508.0,0.10708158127585371 -9509.0,0.10704460299422734 -9510.0,0.10700763748224158 -9511.0,0.10697068473548674 -9512.0,0.10693374474955462 -9513.0,0.10689681752003861 -9514.0,0.10685990304253348 -9515.0,0.10682300131263561 -9516.0,0.10678611232594293 -9517.0,0.10674923607805488 -9518.0,0.1067123725645723 -9519.0,0.1066755217810977 -9520.0,0.10663868372323504 -9521.0,0.10660185838658985 -9522.0,0.10656504576676905 -9523.0,0.10652824585938121 -9524.0,0.10649145866003638 -9525.0,0.1064546841643461 -9526.0,0.10641792236792348 -9527.0,0.10638117326638304 -9528.0,0.1063444368553409 -9529.0,0.10630771313041468 -9530.0,0.10627100208722357 -9531.0,0.1062343037213881 -9532.0,0.10619761802853048 -9533.0,0.10616094500427437 -9534.0,0.10612428464424498 -9535.0,0.10608763694406892 -9536.0,0.10605100189937443 -9537.0,0.1060143795057912 -9538.0,0.10597776975895053 -9539.0,0.10594117265448501 -9540.0,0.10590458818802893 -9541.0,0.10586801635521806 -9542.0,0.10583145715168965 -9543.0,0.10579491057308239 -9544.0,0.10575837661503656 -9545.0,0.10572185527319396 -9546.0,0.10568534654319783 -9547.0,0.10564885042069301 -9548.0,0.10561236690132568 -9549.0,0.10557589598074366 -9550.0,0.10553943765459624 -9551.0,0.10550299191853427 -9552.0,0.10546655876820991 -9553.0,0.10543013819927703 -9554.0,0.10539373020739091 -9555.0,0.1053573347882084 -9556.0,0.10532095193738768 -9557.0,0.1052845816505886 -9558.0,0.10524822392347244 -9559.0,0.10521187875170206 -9560.0,0.10517554613094161 -9561.0,0.10513922605685695 -9562.0,0.10510291852511537 -9563.0,0.10506662353138561 -9564.0,0.10503034107133803 -9565.0,0.10499407114064427 -9566.0,0.10495781373497765 -9567.0,0.10492156885001293 -9568.0,0.1048853364814264 -9569.0,0.10484911662489571 -9570.0,0.10481290927610014 -9571.0,0.10477671443072042 -9572.0,0.10474053208443883 -9573.0,0.10470436223293897 -9574.0,0.10466820487190609 -9575.0,0.10463205999702688 -9576.0,0.10459592760398956 -9577.0,0.10455980768848372 -9578.0,0.10452370024620056 -9579.0,0.10448760527283273 -9580.0,0.10445152276407438 -9581.0,0.10441545271562107 -9582.0,0.10437939512316995 -9583.0,0.10434334998241959 -9584.0,0.10430731728907008 -9585.0,0.10427129703882304 -9586.0,0.10423528922738141 -9587.0,0.10419929385044978 -9588.0,0.10416331090373415 -9589.0,0.10412734038294207 -9590.0,0.10409138228378241 -9591.0,0.10405543660196571 -9592.0,0.10401950333320388 -9593.0,0.10398358247321042 -9594.0,0.10394767401770011 -9595.0,0.1039117779623894 -9596.0,0.10387589430299615 -9597.0,0.10384002303523973 -9598.0,0.1038041641548409 -9599.0,0.10376831765752197 -9600.0,0.10373248353900673 -9601.0,0.10369666179502042 -9602.0,0.10366085242128983 -9603.0,0.10362505541354307 -9604.0,0.10358927076750984 -9605.0,0.10355349847892133 -9606.0,0.10351773854351018 -9607.0,0.1034819909570104 -9608.0,0.10344625571515763 -9609.0,0.10341053281368891 -9610.0,0.1033748222483428 -9611.0,0.1033391240148592 -9612.0,0.1033034381089796 -9613.0,0.10326776452644697 -9614.0,0.10323210326300572 -9615.0,0.10319645431440165 -9616.0,0.10316081767638213 -9617.0,0.10312519334469598 -9618.0,0.10308958131509353 -9619.0,0.10305398158332643 -9620.0,0.10301839414514793 -9621.0,0.1029828189963127 -9622.0,0.10294725613257691 -9623.0,0.1029117055496982 -9624.0,0.10287616724343554 -9625.0,0.10284064120954953 -9626.0,0.10280512744380217 -9627.0,0.10276962594195699 -9628.0,0.1027341366997788 -9629.0,0.10269865971303405 -9630.0,0.1026631949774906 -9631.0,0.10262774248891779 -9632.0,0.10259230224308634 -9633.0,0.10255687423576851 -9634.0,0.10252145846273798 -9635.0,0.10248605491976999 -9636.0,0.10245066360264105 -9637.0,0.10241528450712926 -9638.0,0.10237991762901419 -9639.0,0.10234456296407679 -9640.0,0.10230922050809958 -9641.0,0.10227389025686635 -9642.0,0.10223857220616253 -9643.0,0.10220326635177492 -9644.0,0.10216797268949182 -9645.0,0.10213269121510288 -9646.0,0.10209742192439931 -9647.0,0.10206216481317378 -9648.0,0.10202691987722036 -9649.0,0.10199168711233453 -9650.0,0.10195646651431332 -9651.0,0.10192125807895518 -9652.0,0.10188606180206002 -9653.0,0.1018508776794291 -9654.0,0.10181570570686525 -9655.0,0.10178054588017274 -9656.0,0.10174539819515728 -9657.0,0.10171026264762591 -9658.0,0.10167513923338728 -9659.0,0.1016400279482514 -9660.0,0.10160492878802978 -9661.0,0.10156984174853537 -9662.0,0.10153476682558245 -9663.0,0.1014997040149869 -9664.0,0.10146465331256596 -9665.0,0.1014296147141384 -9666.0,0.10139458821552427 -9667.0,0.10135957381254522 -9668.0,0.10132457150102428 -9669.0,0.10128958127678596 -9670.0,0.10125460313565611 -9671.0,0.10121963707346214 -9672.0,0.10118468308603285 -9673.0,0.10114974116919852 -9674.0,0.10111481131879076 -9675.0,0.10107989353064271 -9676.0,0.10104498780058897 -9677.0,0.10101009412446552 -9678.0,0.10097521249810984 -9679.0,0.10094034291736072 -9680.0,0.10090548537805852 -9681.0,0.100870639876045 -9682.0,0.10083580640716337 -9683.0,0.10080098496725819 -9684.0,0.10076617555217553 -9685.0,0.1007313781577629 -9686.0,0.10069659277986925 -9687.0,0.10066181941434488 -9688.0,0.1006270580570416 -9689.0,0.10059230870381264 -9690.0,0.1005575713505127 -9691.0,0.10052284599299778 -9692.0,0.10048813262712546 -9693.0,0.10045343124875465 -9694.0,0.10041874185374579 -9695.0,0.10038406443796061 -9696.0,0.10034939899726239 -9697.0,0.10031474552751578 -9698.0,0.1002801040245869 -9699.0,0.10024547448434327 -9700.0,0.1002108569026538 -9701.0,0.10017625127538889 -9702.0,0.10014165759842034 -9703.0,0.10010707586762141 -9704.0,0.10007250607886668 -9705.0,0.10003794822803226 -9706.0,0.10000340231099565 -9707.0,0.09996886832363583 -9708.0,0.09993434626183305 -9709.0,0.09989983612146912 -9710.0,0.09986533789842725 -9711.0,0.09983085158859206 -9712.0,0.09979637718784955 -9713.0,0.09976191469208717 -9714.0,0.09972746409719382 -9715.0,0.09969302539905979 -9716.0,0.09965859859357684 -9717.0,0.09962418367663803 -9718.0,0.09958978064413791 -9719.0,0.0995553894919725 -9720.0,0.09952101021603921 -9721.0,0.09948664281223675 -9722.0,0.09945228727646539 -9723.0,0.09941794360462676 -9724.0,0.09938361179262396 -9725.0,0.09934929183636136 -9726.0,0.09931498373174488 -9727.0,0.09928068747468184 -9728.0,0.09924640306108096 -9729.0,0.09921213048685229 -9730.0,0.09917786974790739 -9731.0,0.09914362084015922 -9732.0,0.09910938375952216 -9733.0,0.09907515850191191 -9734.0,0.09904094506324568 -9735.0,0.09900674343944206 -9736.0,0.09897255362642103 -9737.0,0.09893837562010406 -9738.0,0.09890420941641385 -9739.0,0.0988700550112747 -9740.0,0.09883591240061221 -9741.0,0.09880178158035346 -9742.0,0.09876766254642683 -9743.0,0.09873355529476219 -9744.0,0.09869945982129079 -9745.0,0.09866537612194534 -9746.0,0.09863130419265982 -9747.0,0.09859724402936974 -9748.0,0.09856319562801195 -9749.0,0.09852915898452481 -9750.0,0.09849513409484788 -9751.0,0.09846112095492228 -9752.0,0.09842711956069049 -9753.0,0.09839312990809641 -9754.0,0.09835915199308536 -9755.0,0.09832518581160392 -9756.0,0.09829123135960023 -9757.0,0.09825728863302377 -9758.0,0.09822335762782546 -9759.0,0.09818943833995748 -9760.0,0.09815553076537357 -9761.0,0.0981216349000288 -9762.0,0.09808775073987969 -9763.0,0.098053878280884 -9764.0,0.09802001751900104 -9765.0,0.09798616845019148 -9766.0,0.09795233107041741 -9767.0,0.09791850537564219 -9768.0,0.0978846913618307 -9769.0,0.09785088902494919 -9770.0,0.09781709836096532 -9771.0,0.09778331936584801 -9772.0,0.09774955203556775 -9773.0,0.09771579636609631 -9774.0,0.0976820523534069 -9775.0,0.09764831999347416 -9776.0,0.09761459928227395 -9777.0,0.0975808902157837 -9778.0,0.09754719278998217 -9779.0,0.09751350700084951 -9780.0,0.0974798328443672 -9781.0,0.0974461703165182 -9782.0,0.0974125194132868 -9783.0,0.09737888013065875 -9784.0,0.09734525246462103 -9785.0,0.09731163641116214 -9786.0,0.09727803196627195 -9787.0,0.09724443912594175 -9788.0,0.09721085788616403 -9789.0,0.09717728824293287 -9790.0,0.09714373019224364 -9791.0,0.09711018373009311 -9792.0,0.09707664885247949 -9793.0,0.09704312555540222 -9794.0,0.09700961383486226 -9795.0,0.09697611368686189 -9796.0,0.09694262510740484 -9797.0,0.09690914809249608 -9798.0,0.0968756826381421 -9799.0,0.0968422287403507 -9800.0,0.09680878639513113 -9801.0,0.09677535559849386 -9802.0,0.0967419363464509 -9803.0,0.09670852863501557 -9804.0,0.09667513246020261 -9805.0,0.09664174781802802 -9806.0,0.0966083747045093 -9807.0,0.09657501311566527 -9808.0,0.0965416630475162 -9809.0,0.09650832449608357 -9810.0,0.09647499745739037 -9811.0,0.09644168192746094 -9812.0,0.09640837790232099 -9813.0,0.0963750853779976 -9814.0,0.09634180435051917 -9815.0,0.09630853481591553 -9816.0,0.09627527677021787 -9817.0,0.0962420302094588 -9818.0,0.09620879512967216 -9819.0,0.0961755715268933 -9820.0,0.09614235939715886 -9821.0,0.09610915873650694 -9822.0,0.09607596954097684 -9823.0,0.0960427918066094 -9824.0,0.09600962552944674 -9825.0,0.0959764707055324 -9826.0,0.0959433273309112 -9827.0,0.09591019540162937 -9828.0,0.09587707491373455 -9829.0,0.09584396586327569 -9830.0,0.09581086824630318 -9831.0,0.09577778205886861 -9832.0,0.0957447072970251 -9833.0,0.09571164395682706 -9834.0,0.09567859203433034 -9835.0,0.09564555152559195 -9836.0,0.0956125224266705 -9837.0,0.09557950473362582 -9838.0,0.09554649844251921 -9839.0,0.09551350354941314 -9840.0,0.09548052005037164 -9841.0,0.09544754794146 -9842.0,0.09541458721874492 -9843.0,0.09538163787829437 -9844.0,0.09534869991617775 -9845.0,0.09531577332846582 -9846.0,0.0952828581112307 -9847.0,0.09524995426054578 -9848.0,0.0952170617724859 -9849.0,0.09518418064312724 -9850.0,0.0951513108685473 -9851.0,0.09511845244482502 -9852.0,0.09508560536804052 -9853.0,0.09505276963427545 -9854.0,0.09501994523961274 -9855.0,0.09498713218013671 -9856.0,0.09495433045193293 -9857.0,0.09492154005108842 -9858.0,0.09488876097369155 -9859.0,0.09485599321583203 -9860.0,0.09482323677360083 -9861.0,0.09479049164309039 -9862.0,0.09475775782039447 -9863.0,0.09472503530160818 -9864.0,0.09469232408282788 -9865.0,0.09465962416015142 -9866.0,0.09462693552967792 -9867.0,0.09459425818750788 -9868.0,0.09456159212974316 -9869.0,0.09452893735248687 -9870.0,0.09449629385184356 -9871.0,0.0944636616239191 -9872.0,0.09443104066482075 -9873.0,0.09439843097065698 -9874.0,0.09436583253753773 -9875.0,0.09433324536157425 -9876.0,0.09430066943887919 -9877.0,0.09426810476556635 -9878.0,0.09423555133775108 -9879.0,0.09420300915154997 -9880.0,0.09417047820308104 -9881.0,0.0941379584884635 -9882.0,0.094105450003818 -9883.0,0.09407295274526653 -9884.0,0.09404046670893246 -9885.0,0.09400799189094033 -9886.0,0.0939755282874162 -9887.0,0.0939430758944874 -9888.0,0.09391063470828258 -9889.0,0.09387820472493177 -9890.0,0.09384578594056626 -9891.0,0.09381337835131875 -9892.0,0.09378098195332325 -9893.0,0.09374859674271516 -9894.0,0.09371622271563106 -9895.0,0.09368385986820901 -9896.0,0.09365150819658838 -9897.0,0.09361916769690985 -9898.0,0.0935868383653154 -9899.0,0.09355452019794838 -9900.0,0.0935222131909535 -9901.0,0.09348991734047678 -9902.0,0.09345763264266549 -9903.0,0.09342535909366835 -9904.0,0.09339309668963534 -9905.0,0.09336084542671783 -9906.0,0.09332860530106848 -9907.0,0.09329637630884122 -9908.0,0.09326415844619139 -9909.0,0.09323195170927565 -9910.0,0.093199756094252 -9911.0,0.09316757159727966 -9912.0,0.0931353982145193 -9913.0,0.09310323594213286 -9914.0,0.09307108477628367 -9915.0,0.09303894471313624 -9916.0,0.09300681574885654 -9917.0,0.09297469787961182 -9918.0,0.09294259110157067 -9919.0,0.09291049541090295 -9920.0,0.09287841080377987 -9921.0,0.092846337276374 -9922.0,0.09281427482485922 -9923.0,0.09278222344541066 -9924.0,0.09275018313420486 -9925.0,0.09271815388741962 -9926.0,0.09268613570123412 -9927.0,0.09265412857182882 -9928.0,0.09262213249538545 -9929.0,0.09259014746808716 -9930.0,0.09255817348611836 -9931.0,0.09252621054566482 -9932.0,0.09249425864291351 -9933.0,0.09246231777405287 -9934.0,0.09243038793527254 -9935.0,0.09239846912276362 -9936.0,0.0923665613327183 -9937.0,0.09233466456133027 -9938.0,0.09230277880479448 -9939.0,0.09227090405930725 -9940.0,0.09223904032106604 -9941.0,0.0922071875862698 -9942.0,0.09217534585111872 -9943.0,0.09214351511181433 -9944.0,0.09211169536455949 -9945.0,0.09207988660555823 -9946.0,0.09204808883101608 -9947.0,0.09201630203713976 -9948.0,0.09198452622013739 -9949.0,0.09195276137621827 -9950.0,0.09192100750159313 -9951.0,0.09188926459247394 -9952.0,0.09185753264507408 -9953.0,0.09182581165560806 -9954.0,0.09179410162029183 -9955.0,0.09176240253534264 -9956.0,0.09173071439697902 -9957.0,0.09169903720142077 -9958.0,0.09166737094488904 -9959.0,0.09163571562360628 -9960.0,0.0916040712337963 -9961.0,0.09157243777168406 -9962.0,0.09154081523349596 -9963.0,0.09150920361545965 -9964.0,0.09147760291380412 -9965.0,0.09144601312475967 -9966.0,0.09141443424455778 -9967.0,0.09138286626943136 -9968.0,0.09135130919561457 -9969.0,0.09131976301934296 -9970.0,0.09128822773685318 -9971.0,0.09125670334438336 -9972.0,0.09122518983817286 -9973.0,0.09119368721446242 -9974.0,0.09116219546949388 -9975.0,0.09113071459951057 -9976.0,0.09109924460075704 -9977.0,0.0910677854694792 -9978.0,0.09103633720192413 -9979.0,0.0910048997943403 -9980.0,0.09097347324297748 -9981.0,0.0909420575440867 -9982.0,0.09091065269392033 -9983.0,0.09087925868873192 -9984.0,0.09084787552477647 -9985.0,0.09081650319831014 -9986.0,0.09078514170559052 -9987.0,0.09075379104287631 -9988.0,0.09072245120642768 -9989.0,0.09069112219250597 -9990.0,0.09065980399737393 -9991.0,0.09062849661729543 -9992.0,0.09059720004853578 -9993.0,0.09056591428736151 -9994.0,0.09053463933004052 -9995.0,0.09050337517284184 -9996.0,0.09047212181203593 -9997.0,0.09044087924389449 -9998.0,0.09040964746469055 -9999.0,0.0903784264706983 -10000.0,0.09034721625819336 -10001.0,0.09031601682345256 -10002.0,0.09028482816275404 -10003.0,0.09025365027237728 -10004.0,0.09022248314860287 -10005.0,0.09019132678771287 -10006.0,0.09016018118599053 -10007.0,0.09012904633972048 -10008.0,0.09009792224518844 -10009.0,0.09006680889868159 -10010.0,0.09003570629648834 -10011.0,0.0900046144348984 -10012.0,0.08997353331020269 -10013.0,0.08994246291869346 -10014.0,0.08991140325666426 -10015.0,0.08988035432040994 -10016.0,0.0898493161062265 -10017.0,0.08981828861041136 -10018.0,0.08978727182926315 -10019.0,0.08975626575908179 -10020.0,0.08972527039616854 -10021.0,0.0896942857368258 -10022.0,0.08966331177735734 -10023.0,0.08963234851406822 -10024.0,0.08960139594326479 -10025.0,0.08957045406125452 -10026.0,0.08953952286434635 -10027.0,0.08950860234885039 -10028.0,0.0894776925110781 -10029.0,0.08944679334734207 -10030.0,0.0894159048539563 -10031.0,0.08938502702723601 -10032.0,0.08935415986349776 -10033.0,0.08932330335905922 -10034.0,0.0892924575102395 -10035.0,0.0892616223133589 -10036.0,0.08923079776473904 -10037.0,0.0891999838607027 -10038.0,0.08916918059757405 -10039.0,0.08913838797167847 -10040.0,0.08910760597934266 -10041.0,0.08907683461689456 -10042.0,0.08904607388066331 -10043.0,0.0890153237669794 -10044.0,0.08898458427217458 -10045.0,0.08895385539258188 -10046.0,0.0889231371245355 -10047.0,0.08889242946437102 -10048.0,0.08886173240842522 -10049.0,0.08883104595303623 -10050.0,0.08880037009454328 -10051.0,0.088769704829287 -10052.0,0.08873905015360926 -10053.0,0.08870840606385323 -10054.0,0.0886777725563632 -10055.0,0.08864714962748484 -10056.0,0.08861653727356508 -10057.0,0.0885859354909521 -10058.0,0.08855534427599535 -10059.0,0.08852476362504544 -10060.0,0.08849419353445437 -10061.0,0.08846363400057534 -10062.0,0.08843308501976288 -10063.0,0.08840254658837261 -10064.0,0.0883720187027616 -10065.0,0.08834150135928805 -10066.0,0.08831099455431154 -10067.0,0.08828049828419274 -10068.0,0.08825001254529369 -10069.0,0.08821953733397768 -10070.0,0.08818907264660929 -10071.0,0.0881586184795542 -10072.0,0.08812817482917949 -10073.0,0.08809774169185348 -10074.0,0.08806731906394574 -10075.0,0.088036906941827 -10076.0,0.08800650532186935 -10077.0,0.0879761142004461 -10078.0,0.08794573357393182 -10079.0,0.08791536343870233 -10080.0,0.08788500379113466 -10081.0,0.08785465462760714 -10082.0,0.08782431594449934 -10083.0,0.08779398773819212 -10084.0,0.08776367000506745 -10085.0,0.08773336274150871 -10086.0,0.08770306594390044 -10087.0,0.08767277960862851 -10088.0,0.08764250373207991 -10089.0,0.08761223831064296 -10090.0,0.08758198334070724 -10091.0,0.08755173881866357 -10092.0,0.08752150474090395 -10093.0,0.08749128110382169 -10094.0,0.08746106790381133 -10095.0,0.08743086513726868 -10096.0,0.08740067280059077 -10097.0,0.08737049089017584 -10098.0,0.08734031940242341 -10099.0,0.08731015833373428 -10100.0,0.08728000768051045 -10101.0,0.08724986743915512 -10102.0,0.08721973760607281 -10103.0,0.08718961817766924 -10104.0,0.08715950915035144 -10105.0,0.08712941052052751 -10106.0,0.087099322284607 -10107.0,0.08706924443900055 -10108.0,0.08703917698012015 -10109.0,0.0870091199043789 -10110.0,0.08697907320819123 -10111.0,0.08694903688797281 -10112.0,0.08691901094014053 -10113.0,0.08688899536111251 -10114.0,0.08685899014730808 -10115.0,0.08682899529514786 -10116.0,0.08679901080105368 -10117.0,0.08676903666144864 -10118.0,0.08673907287275696 -10119.0,0.08670911943140425 -10120.0,0.08667917633381726 -10121.0,0.08664924357642403 -10122.0,0.08661932115565375 -10123.0,0.0865894090679369 -10124.0,0.08655950730970521 -10125.0,0.08652961587739164 -10126.0,0.08649973476743028 -10127.0,0.0864698639762566 -10128.0,0.0864400035003072 -10129.0,0.08641015333601999 -10130.0,0.086380313479834 -10131.0,0.08635048392818957 -10132.0,0.08632066467752827 -10133.0,0.08629085572429288 -10134.0,0.08626105706492744 -10135.0,0.0862312686958771 -10136.0,0.08620149061358838 -10137.0,0.08617172281450897 -10138.0,0.08614196529508782 -10139.0,0.086112218051775 -10140.0,0.08608248108102193 -10141.0,0.08605275437928118 -10142.0,0.08602303794300666 -10143.0,0.08599333176865327 -10144.0,0.08596363585267737 -10145.0,0.08593395019153645 -10146.0,0.08590427478168923 -10147.0,0.08587460961959562 -10148.0,0.08584495470171678 -10149.0,0.08581531002451512 -10150.0,0.08578567558445423 -10151.0,0.08575605137799899 -10152.0,0.08572643740161537 -10153.0,0.08569683365177067 -10154.0,0.08566724012493337 -10155.0,0.08563765681757324 -10156.0,0.08560808372616112 -10157.0,0.08557852084716919 -10158.0,0.0855489681770708 -10159.0,0.0855194257123406 -10160.0,0.0854898934494543 -10161.0,0.08546037138488895 -10162.0,0.08543085951512279 -10163.0,0.0854013578366353 -10164.0,0.08537186634590707 -10165.0,0.08534238503942003 -10166.0,0.08531291391365725 -10167.0,0.0852834529651031 -10168.0,0.08525400219024304 -10169.0,0.08522456158556381 -10170.0,0.08519513114755338 -10171.0,0.0851657108727009 -10172.0,0.0851363007574968 -10173.0,0.0851069007984326 -10174.0,0.0850775109920011 -10175.0,0.08504813133469635 -10176.0,0.08501876182301359 -10177.0,0.08498940245344917 -10178.0,0.08496005322250078 -10179.0,0.08493071412666726 -10180.0,0.08490138516244873 -10181.0,0.08487206632634636 -10182.0,0.08484275761486268 -10183.0,0.08481345902450137 -10184.0,0.08478417055176735 -10185.0,0.08475489219316665 -10186.0,0.08472562394520661 -10187.0,0.08469636580439574 -10188.0,0.08466711776724377 -10189.0,0.08463787983026165 -10190.0,0.08460865198996144 -10191.0,0.0845794342428565 -10192.0,0.08455022658546135 -10193.0,0.0845210290142918 -10194.0,0.08449184152586471 -10195.0,0.08446266411669826 -10196.0,0.08443349678331177 -10197.0,0.08440433952222587 -10198.0,0.08437519232996221 -10199.0,0.0843460552030438 -10200.0,0.08431692813799477 -10201.0,0.08428781113134051 -10202.0,0.08425870417960753 -10203.0,0.08422960727932359 -10204.0,0.08420052042701766 -10205.0,0.08417144361921992 -10206.0,0.08414237685246165 -10207.0,0.08411332012327541 -10208.0,0.08408427342819498 -10209.0,0.08405523676375527 -10210.0,0.08402621012649249 -10211.0,0.08399719351294387 -10212.0,0.08396818691964797 -10213.0,0.08393919034314454 -10214.0,0.08391020377997453 -10215.0,0.08388122722667997 -10216.0,0.08385226067980422 -10217.0,0.08382330413589177 -10218.0,0.08379435759148836 -10219.0,0.0837654210431408 -10220.0,0.0837364944873972 -10221.0,0.08370757792080685 -10222.0,0.08367867133992025 -10223.0,0.08364977474128897 -10224.0,0.0836208881214659 -10225.0,0.08359201147700508 -10226.0,0.08356314480446173 -10227.0,0.0835342881003923 -10228.0,0.08350544136135434 -10229.0,0.08347660458390664 -10230.0,0.08344777776460924 -10231.0,0.0834189609000233 -10232.0,0.08339015398671114 -10233.0,0.08336135702123632 -10234.0,0.08333257000016357 -10235.0,0.08330379292005886 -10236.0,0.08327502577748921 -10237.0,0.08324626856902297 -10238.0,0.08321752129122957 -10239.0,0.08318878394067973 -10240.0,0.08316005651394523 -10241.0,0.08313133900759913 -10242.0,0.08310263141821563 -10243.0,0.08307393374237015 -10244.0,0.08304524597663923 -10245.0,0.08301656811760064 -10246.0,0.08298790016183333 -10247.0,0.0829592421059174 -10248.0,0.08293059394643422 -10249.0,0.0829019556799662 -10250.0,0.082873327303097 -10251.0,0.0828447088124115 -10252.0,0.08281610020449576 -10253.0,0.08278750147593689 -10254.0,0.08275891262332331 -10255.0,0.0827303336432446 -10256.0,0.0827017645322915 -10257.0,0.08267320528705588 -10258.0,0.08264465590413084 -10259.0,0.08261611638011067 -10260.0,0.08258758671159083 -10261.0,0.08255906689516788 -10262.0,0.08253055692743964 -10263.0,0.0825020568050051 -10264.0,0.08247356652446437 -10265.0,0.08244508608241884 -10266.0,0.08241661547547088 -10267.0,0.08238815470022424 -10268.0,0.08235970375328373 -10269.0,0.08233126263125541 -10270.0,0.08230283133074638 -10271.0,0.08227440984836502 -10272.0,0.08224599818072088 -10273.0,0.08221759632442467 -10274.0,0.0821892042760882 -10275.0,0.08216082203232451 -10276.0,0.08213244958974784 -10277.0,0.08210408694497359 -10278.0,0.08207573409461821 -10279.0,0.0820473910352995 -10280.0,0.08201905776363627 -10281.0,0.08199073427624866 -10282.0,0.08196242056975779 -10283.0,0.08193411664078608 -10284.0,0.08190582248595707 -10285.0,0.08187753810189549 -10286.0,0.08184926348522724 -10287.0,0.08182099863257929 -10288.0,0.0817927435405799 -10289.0,0.08176449820585845 -10290.0,0.08173626262504548 -10291.0,0.08170803679477265 -10292.0,0.08167982071167285 -10293.0,0.0816516143723801 -10294.0,0.08162341777352963 -10295.0,0.08159523091175772 -10296.0,0.08156705378370192 -10297.0,0.08153888638600092 -10298.0,0.08151072871529456 -10299.0,0.08148258076822379 -10300.0,0.08145444254143078 -10301.0,0.08142631403155885 -10302.0,0.08139819523525249 -10303.0,0.08137008614915735 -10304.0,0.08134198676992016 -10305.0,0.0813138970941889 -10306.0,0.08128581711861267 -10307.0,0.08125774683984179 -10308.0,0.08122968625452757 -10309.0,0.08120163535932268 -10310.0,0.0811735941508808 -10311.0,0.08114556262585687 -10312.0,0.08111754078090688 -10313.0,0.08108952861268805 -10314.0,0.08106152611785873 -10315.0,0.08103353329307847 -10316.0,0.08100555013500785 -10317.0,0.08097757664030872 -10318.0,0.08094961280564404 -10319.0,0.08092165862767799 -10320.0,0.08089371410307575 -10321.0,0.08086577922850377 -10322.0,0.08083785400062965 -10323.0,0.08080993841612208 -10324.0,0.080782032471651 -10325.0,0.08075413616388734 -10326.0,0.08072624948950331 -10327.0,0.08069837244517226 -10328.0,0.08067050502756867 -10329.0,0.08064264723336811 -10330.0,0.08061479905924737 -10331.0,0.08058696050188437 -10332.0,0.0805591315579582 -10333.0,0.08053131222414901 -10334.0,0.08050350249713818 -10335.0,0.08047570237360824 -10336.0,0.08044791185024283 -10337.0,0.08042013092372671 -10338.0,0.08039235959074584 -10339.0,0.0803645978479873 -10340.0,0.08033684569213932 -10341.0,0.0803091031198913 -10342.0,0.0802813701279337 -10343.0,0.08025364671295818 -10344.0,0.08022593287165757 -10345.0,0.08019822860072583 -10346.0,0.08017053389685797 -10347.0,0.08014284875675025 -10348.0,0.08011517317710005 -10349.0,0.0800875071546059 -10350.0,0.08005985068596737 -10351.0,0.08003220376788528 -10352.0,0.08000456639706156 -10353.0,0.07997693857019932 -10354.0,0.07994932028400266 -10355.0,0.07992171153517698 -10356.0,0.07989411232042876 -10357.0,0.07986652263646563 -10358.0,0.07983894247999627 -10359.0,0.07981137184773064 -10360.0,0.07978381073637973 -10361.0,0.0797562591426557 -10362.0,0.0797287170632719 -10363.0,0.07970118449494269 -10364.0,0.07967366143438366 -10365.0,0.07964614787831152 -10366.0,0.07961864382344412 -10367.0,0.07959114926650036 -10368.0,0.0795636642042004 -10369.0,0.07953618863326545 -10370.0,0.07950872255041791 -10371.0,0.07948126595238121 -10372.0,0.07945381883588001 -10373.0,0.07942638119764008 -10374.0,0.07939895303438833 -10375.0,0.07937153434285273 -10376.0,0.07934412511976245 -10377.0,0.07931672536184776 -10378.0,0.0792893350658401 -10379.0,0.07926195422847201 -10380.0,0.07923458284647711 -10381.0,0.07920722091659022 -10382.0,0.07917986843554725 -10383.0,0.0791525254000853 -10384.0,0.07912519180694245 -10385.0,0.07909786765285808 -10386.0,0.07907055293457259 -10387.0,0.07904324764882756 -10388.0,0.0790159517923656 -10389.0,0.07898866536193057 -10390.0,0.07896138835426739 -10391.0,0.07893412076612213 -10392.0,0.07890686259424193 -10393.0,0.07887961383537508 -10394.0,0.07885237448627103 -10395.0,0.07882514454368035 -10396.0,0.07879792400435465 -10397.0,0.07877071286504672 -10398.0,0.0787435111225105 -10399.0,0.07871631877350102 -10400.0,0.07868913581477446 -10401.0,0.07866196224308801 -10402.0,0.07863479805520011 -10403.0,0.07860764324787027 -10404.0,0.07858049781785915 -10405.0,0.07855336176192843 -10406.0,0.078526235076841 -10407.0,0.07849911775936086 -10408.0,0.07847200980625314 -10409.0,0.07844491121428399 -10410.0,0.07841782198022078 -10411.0,0.07839074210083195 -10412.0,0.07836367157288714 -10413.0,0.07833661039315692 -10414.0,0.07830955855841315 -10415.0,0.07828251606542873 -10416.0,0.0782554829109777 -10417.0,0.07822845909183522 -10418.0,0.07820144460477749 -10419.0,0.07817443944658191 -10420.0,0.07814744361402697 -10421.0,0.07812045710389227 -10422.0,0.07809347991295848 -10423.0,0.07806651203800744 -10424.0,0.07803955347582206 -10425.0,0.07801260422318644 -10426.0,0.07798566427688566 -10427.0,0.077958733633706 -10428.0,0.07793181229043486 -10429.0,0.07790490024386072 -10430.0,0.07787799749077311 -10431.0,0.07785110402796278 -10432.0,0.0778242198522215 -10433.0,0.07779734496034227 -10434.0,0.07777047934911899 -10435.0,0.07774362301534686 -10436.0,0.07771677595582209 -10437.0,0.07768993816734204 -10438.0,0.07766310964670518 -10439.0,0.077636290390711 -10440.0,0.0776094803961602 -10441.0,0.07758267965985453 -10442.0,0.0775558881785969 -10443.0,0.07752910594919121 -10444.0,0.07750233296844257 -10445.0,0.07747556923315715 -10446.0,0.07744881474014229 -10447.0,0.07742206948620627 -10448.0,0.07739533346815863 -10449.0,0.07736860668280997 -10450.0,0.077341889126972 -10451.0,0.07731518079745744 -10452.0,0.07728848169108023 -10453.0,0.07726179180465534 -10454.0,0.07723511113499887 -10455.0,0.07720843967892804 -10456.0,0.07718177743326109 -10457.0,0.07715512439481742 -10458.0,0.07712848056041753 -10459.0,0.07710184592688304 -10460.0,0.07707522049103656 -10461.0,0.07704860424970189 -10462.0,0.07702199719970394 -10463.0,0.07699539933786868 -10464.0,0.07696881066102315 -10465.0,0.07694223116599551 -10466.0,0.07691566084961504 -10467.0,0.07688909970871213 -10468.0,0.07686254774011815 -10469.0,0.0768360049406657 -10470.0,0.07680947130718839 -10471.0,0.076782946836521 -10472.0,0.07675643152549928 -10473.0,0.0767299253709602 -10474.0,0.07670342836974174 -10475.0,0.07667694051868301 -10476.0,0.07665046181462426 -10477.0,0.07662399225440668 -10478.0,0.07659753183487267 -10479.0,0.07657108055286573 -10480.0,0.07654463840523042 -10481.0,0.07651820538881232 -10482.0,0.07649178150045821 -10483.0,0.07646536673701591 -10484.0,0.07643896109533435 -10485.0,0.07641256457226349 -10486.0,0.07638617716465441 -10487.0,0.07635979886935934 -10488.0,0.07633342968323152 -10489.0,0.07630706960312526 -10490.0,0.07628071862589604 -10491.0,0.07625437674840035 -10492.0,0.07622804396749581 -10493.0,0.07620172028004114 -10494.0,0.07617540568289607 -10495.0,0.07614910017292147 -10496.0,0.0761228037469793 -10497.0,0.0760965164019326 -10498.0,0.07607023813464543 -10499.0,0.07604396894198302 -10500.0,0.07601770882081166 -10501.0,0.0759914577679987 -10502.0,0.07596521578041256 -10503.0,0.07593898285492276 -10504.0,0.07591275898839993 -10505.0,0.07588654417771576 -10506.0,0.07586033841974298 -10507.0,0.07583414171135544 -10508.0,0.07580795404942808 -10509.0,0.07578177543083693 -10510.0,0.075755605852459 -10511.0,0.0757294453111725 -10512.0,0.07570329380385665 -10513.0,0.07567715132739178 -10514.0,0.0756510178786593 -10515.0,0.07562489345454163 -10516.0,0.07559877805192233 -10517.0,0.07557267166768605 -10518.0,0.07554657429871851 -10519.0,0.07552048594190641 -10520.0,0.07549440659413764 -10521.0,0.07546833625230112 -10522.0,0.07544227491328688 -10523.0,0.07541622257398593 -10524.0,0.07539017923129046 -10525.0,0.07536414488209367 -10526.0,0.07533811952328989 -10527.0,0.07531210315177443 -10528.0,0.07528609576444374 -10529.0,0.07526009735819535 -10530.0,0.07523410792992782 -10531.0,0.07520812747654085 -10532.0,0.07518215599493508 -10533.0,0.07515619348201234 -10534.0,0.0751302399346755 -10535.0,0.07510429534982853 -10536.0,0.07507835972437633 -10537.0,0.07505243305522503 -10538.0,0.07502651533928177 -10539.0,0.07500060657345478 -10540.0,0.07497470675465326 -10541.0,0.07494881587978759 -10542.0,0.07492293394576918 -10543.0,0.07489706094951054 -10544.0,0.07487119688792514 -10545.0,0.07484534175792762 -10546.0,0.07481949555643364 -10547.0,0.07479365828035998 -10548.0,0.07476782992662438 -10549.0,0.07474201049214572 -10550.0,0.07471619997384396 -10551.0,0.07469039836864008 -10552.0,0.07466460567345615 -10553.0,0.07463882188521526 -10554.0,0.07461304700084158 -10555.0,0.07458728101726039 -10556.0,0.07456152393139802 -10557.0,0.07453577574018178 -10558.0,0.07451003644054009 -10559.0,0.0744843060294025 -10560.0,0.07445858450369955 -10561.0,0.07443287186036279 -10562.0,0.07440716809632494 -10563.0,0.07438147320851972 -10564.0,0.07435578719388194 -10565.0,0.07433011004934739 -10566.0,0.074304441771853 -10567.0,0.07427878235833674 -10568.0,0.07425313180573762 -10569.0,0.07422749011099575 -10570.0,0.0742018572710522 -10571.0,0.0741762332828492 -10572.0,0.07415061814332999 -10573.0,0.07412501184943888 -10574.0,0.0740994143981212 -10575.0,0.07407382578632338 -10576.0,0.07404824601099287 -10577.0,0.07402267506907823 -10578.0,0.07399711295752896 -10579.0,0.07397155967329574 -10580.0,0.07394601521333025 -10581.0,0.07392047957458522 -10582.0,0.0738949527540144 -10583.0,0.07386943474857266 -10584.0,0.07384392555521588 -10585.0,0.07381842517090102 -10586.0,0.07379293359258603 -10587.0,0.07376745081722995 -10588.0,0.0737419768417929 -10589.0,0.073716511663236 -10590.0,0.0736910552785215 -10591.0,0.07366560768461256 -10592.0,0.07364016887847348 -10593.0,0.07361473885706961 -10594.0,0.07358931761736738 -10595.0,0.07356390515633414 -10596.0,0.0735385014709384 -10597.0,0.07351310655814972 -10598.0,0.07348772041493865 -10599.0,0.07346234303827678 -10600.0,0.07343697442513679 -10601.0,0.0734116145724924 -10602.0,0.0733862634773184 -10603.0,0.0733609211365905 -10604.0,0.07333558754728561 -10605.0,0.0733102627063816 -10606.0,0.07328494661085738 -10607.0,0.073259639257693 -10608.0,0.07323434064386938 -10609.0,0.07320905076636863 -10610.0,0.07318376962217385 -10611.0,0.0731584972082692 -10612.0,0.07313323352163982 -10613.0,0.07310797855927195 -10614.0,0.07308273231815288 -10615.0,0.07305749479527093 -10616.0,0.07303226598761539 -10617.0,0.07300704589217669 -10618.0,0.07298183450594624 -10619.0,0.07295663182591654 -10620.0,0.07293143784908103 -10621.0,0.0729062525724343 -10622.0,0.07288107599297192 -10623.0,0.07285590810769053 -10624.0,0.07283074891358773 -10625.0,0.07280559840766225 -10626.0,0.0727804565869138 -10627.0,0.07275532344834316 -10628.0,0.07273019898895215 -10629.0,0.07270508320574355 -10630.0,0.07267997609572127 -10631.0,0.0726548776558902 -10632.0,0.07262978788325632 -10633.0,0.07260470677482651 -10634.0,0.07257963432760886 -10635.0,0.07255457053861238 -10636.0,0.07252951540484717 -10637.0,0.07250446892332428 -10638.0,0.07247943109105588 -10639.0,0.07245440190505514 -10640.0,0.07242938136233629 -10641.0,0.0724043694599145 -10642.0,0.07237936619480606 -10643.0,0.07235437156402827 -10644.0,0.07232938556459943 -10645.0,0.07230440819353896 -10646.0,0.07227943944786716 -10647.0,0.07225447932460546 -10648.0,0.07222952782077634 -10649.0,0.07220458493340325 -10650.0,0.07217965065951064 -10651.0,0.07215472499612408 -10652.0,0.0721298079402701 -10653.0,0.07210489948897632 -10654.0,0.07207999963927128 -10655.0,0.07205510838818463 -10656.0,0.07203022573274703 -10657.0,0.07200535166999021 -10658.0,0.07198048619694679 -10659.0,0.07195562931065054 -10660.0,0.07193078100813623 -10661.0,0.07190594128643964 -10662.0,0.07188111014259752 -10663.0,0.07185628757364773 -10664.0,0.07183147357662913 -10665.0,0.07180666814858158 -10666.0,0.071781871286546 -10667.0,0.07175708298756425 -10668.0,0.0717323032486793 -10669.0,0.0717075320669351 -10670.0,0.07168276943937667 -10671.0,0.07165801536304993 -10672.0,0.07163326983500194 -10673.0,0.07160853285228075 -10674.0,0.07158380441193543 -10675.0,0.071559084511016 -10676.0,0.07153437314657361 -10677.0,0.07150967031566034 -10678.0,0.07148497601532938 -10679.0,0.0714602902426348 -10680.0,0.0714356129946318 -10681.0,0.07141094426837657 -10682.0,0.07138628406092633 -10683.0,0.07136163236933929 -10684.0,0.07133698919067465 -10685.0,0.07131235452199268 -10686.0,0.07128772836035463 -10687.0,0.07126311070282283 -10688.0,0.0712385015464605 -10689.0,0.07121390088833199 -10690.0,0.0711893087255026 -10691.0,0.07116472505503872 -10692.0,0.07114014987400762 -10693.0,0.07111558317947769 -10694.0,0.07109102496851831 -10695.0,0.07106647523819988 -10696.0,0.07104193398559376 -10697.0,0.07101740120777236 -10698.0,0.07099287690180912 -10699.0,0.0709683610647785 -10700.0,0.07094385369375586 -10701.0,0.07091935478581769 -10702.0,0.07089486433804146 -10703.0,0.07087038234750563 -10704.0,0.07084590881128969 -10705.0,0.07082144372647409 -10706.0,0.07079698709014035 -10707.0,0.07077253889937095 -10708.0,0.07074809915124945 -10709.0,0.0707236678428603 -10710.0,0.07069924497128906 -10711.0,0.07067483053362225 -10712.0,0.07065042452694745 -10713.0,0.07062602694835311 -10714.0,0.07060163779492884 -10715.0,0.07057725706376518 -10716.0,0.07055288475195372 -10717.0,0.07052852085658695 -10718.0,0.07050416537475847 -10719.0,0.07047981830356286 -10720.0,0.07045547964009566 -10721.0,0.07043114938145352 -10722.0,0.07040682752473391 -10723.0,0.0703825140670355 -10724.0,0.0703582090054578 -10725.0,0.07033391233710148 -10726.0,0.07030962405906804 -10727.0,0.0702853441684601 -10728.0,0.07026107266238125 -10729.0,0.0702368095379361 -10730.0,0.07021255479223017 -10731.0,0.07018830842237009 -10732.0,0.07016407042546344 -10733.0,0.07013984079861883 -10734.0,0.0701156195389458 -10735.0,0.07009140664355493 -10736.0,0.0700672021095578 -10737.0,0.07004300593406705 -10738.0,0.07001881811419616 -10739.0,0.06999463864705975 -10740.0,0.06997046752977337 -10741.0,0.06994630475945358 -10742.0,0.069922150333218 -10743.0,0.06989800424818508 -10744.0,0.06987386650147442 -10745.0,0.06984973709020657 -10746.0,0.06982561601150308 -10747.0,0.06980150326248644 -10748.0,0.06977739884028017 -10749.0,0.06975330274200883 -10750.0,0.06972921496479793 -10751.0,0.06970513550577394 -10752.0,0.06968106436206437 -10753.0,0.06965700153079771 -10754.0,0.06963294700910347 -10755.0,0.06960890079411206 -10756.0,0.06958486288295497 -10757.0,0.06956083327276466 -10758.0,0.06953681196067457 -10759.0,0.06951279894381916 -10760.0,0.0694887942193338 -10761.0,0.06946479778435491 -10762.0,0.06944080963601991 -10763.0,0.06941682977146722 -10764.0,0.06939285818783614 -10765.0,0.0693688948822671 -10766.0,0.06934493985190139 -10767.0,0.06932099309388144 -10768.0,0.0692970546053505 -10769.0,0.0692731243834529 -10770.0,0.06924920242533394 -10771.0,0.06922528872813995 -10772.0,0.06920138328901812 -10773.0,0.06917748610511676 -10774.0,0.06915359717358509 -10775.0,0.06912971649157337 -10776.0,0.06910584405623275 -10777.0,0.06908197986471545 -10778.0,0.06905812391417465 -10779.0,0.06903427620176451 -10780.0,0.0690104367246402 -10781.0,0.06898660547995779 -10782.0,0.0689627824648744 -10783.0,0.06893896767654813 -10784.0,0.06891516111213808 -10785.0,0.06889136276880423 -10786.0,0.06886757264370766 -10787.0,0.06884379073401035 -10788.0,0.06882001703687536 -10789.0,0.06879625154946659 -10790.0,0.06877249426894899 -10791.0,0.06874874519248854 -10792.0,0.06872500431725213 -10793.0,0.06870127164040761 -10794.0,0.06867754715912389 -10795.0,0.06865383087057078 -10796.0,0.06863012277191913 -10797.0,0.06860642286034073 -10798.0,0.06858273113300833 -10799.0,0.06855904758709569 -10800.0,0.06853537221977754 -10801.0,0.06851170502822962 -10802.0,0.06848804600962853 -10803.0,0.06846439516115196 -10804.0,0.06844075247997855 -10805.0,0.06841711796328791 -10806.0,0.06839349160826055 -10807.0,0.06836987341207808 -10808.0,0.06834626337192298 -10809.0,0.0683226614849788 -10810.0,0.06829906774842995 -10811.0,0.06827548215946189 -10812.0,0.06825190471526103 -10813.0,0.06822833541301478 -10814.0,0.06820477424991145 -10815.0,0.06818122122314038 -10816.0,0.06815767632989186 -10817.0,0.06813413956735717 -10818.0,0.06811061093272859 -10819.0,0.06808709042319923 -10820.0,0.06806357803596332 -10821.0,0.068040073768216 -10822.0,0.06801657761715339 -10823.0,0.06799308957997255 -10824.0,0.06796960965387153 -10825.0,0.06794613783604934 -10826.0,0.06792267412370602 -10827.0,0.06789921851404244 -10828.0,0.06787577100426055 -10829.0,0.06785233159156324 -10830.0,0.0678289002731544 -10831.0,0.06780547704623875 -10832.0,0.06778206190802213 -10833.0,0.06775865485571127 -10834.0,0.06773525588651388 -10835.0,0.06771186499763868 -10836.0,0.06768848218629522 -10837.0,0.06766510744969416 -10838.0,0.06764174078504705 -10839.0,0.06761838218956644 -10840.0,0.06759503166046577 -10841.0,0.06757168919495951 -10842.0,0.06754835479026308 -10843.0,0.06752502844359291 -10844.0,0.06750171015216624 -10845.0,0.06747839991320143 -10846.0,0.06745509772391771 -10847.0,0.06743180358153535 -10848.0,0.06740851748327545 -10849.0,0.06738523942636018 -10850.0,0.06736196940801266 -10851.0,0.06733870742545696 -10852.0,0.06731545347591804 -10853.0,0.0672922075566219 -10854.0,0.06726896966479547 -10855.0,0.06724573979766664 -10856.0,0.06722251795246428 -10857.0,0.06719930412641816 -10858.0,0.06717609831675904 -10859.0,0.06715290052071864 -10860.0,0.06712971073552967 -10861.0,0.0671065289584257 -10862.0,0.06708335518664134 -10863.0,0.06706018941741212 -10864.0,0.06703703164797457 -10865.0,0.06701388187556609 -10866.0,0.06699074009742509 -10867.0,0.06696760631079093 -10868.0,0.06694448051290394 -10869.0,0.06692136270100535 -10870.0,0.06689825287233737 -10871.0,0.0668751510241432 -10872.0,0.06685205715366692 -10873.0,0.06682897125815365 -10874.0,0.06680589333484935 -10875.0,0.06678282338100103 -10876.0,0.0667597613938566 -10877.0,0.06673670737066496 -10878.0,0.06671366130867588 -10879.0,0.06669062320514017 -10880.0,0.06666759305730954 -10881.0,0.0666445708624367 -10882.0,0.0666215566177752 -10883.0,0.06659855032057965 -10884.0,0.06657555196810556 -10885.0,0.06655256155760944 -10886.0,0.06652957908634861 -10887.0,0.06650660455158149 -10888.0,0.06648363795056735 -10889.0,0.06646067928056651 -10890.0,0.06643772853884009 -10891.0,0.06641478572265026 -10892.0,0.06639185082926011 -10893.0,0.0663689238559337 -10894.0,0.06634600479993599 -10895.0,0.0663230936585329 -10896.0,0.06630019042899128 -10897.0,0.06627729510857897 -10898.0,0.06625440769456474 -10899.0,0.06623152818421824 -10900.0,0.06620865657481013 -10901.0,0.06618579286361202 -10902.0,0.06616293704789643 -10903.0,0.06614008912493678 -10904.0,0.06611724909200753 -10905.0,0.066094416946384 -10906.0,0.06607159268534253 -10907.0,0.0660487763061603 -10908.0,0.06602596780611548 -10909.0,0.06600316718248721 -10910.0,0.06598037443255554 -10911.0,0.06595758955360148 -10912.0,0.06593481254290691 -10913.0,0.06591204339775472 -10914.0,0.06588928211542872 -10915.0,0.06586652869321369 -10916.0,0.06584378312839524 -10917.0,0.06582104541826003 -10918.0,0.06579831556009562 -10919.0,0.06577559355119053 -10920.0,0.06575287938883413 -10921.0,0.06573017307031681 -10922.0,0.06570747459292989 -10923.0,0.06568478395396561 -10924.0,0.06566210115071709 -10925.0,0.0656394261804785 -10926.0,0.06561675904054483 -10927.0,0.06559409972821212 -10928.0,0.06557144824077721 -10929.0,0.06554880457553797 -10930.0,0.06552616872979318 -10931.0,0.06550354070084254 -10932.0,0.06548092048598673 -10933.0,0.06545830808252727 -10934.0,0.06543570348776667 -10935.0,0.0654131066990084 -10936.0,0.06539051771355683 -10937.0,0.06536793652871722 -10938.0,0.06534536314179581 -10939.0,0.06532279755009977 -10940.0,0.06530023975093723 -10941.0,0.06527768974161711 -10942.0,0.06525514751944944 -10943.0,0.06523261308174506 -10944.0,0.06521008642581583 -10945.0,0.0651875675489744 -10946.0,0.06516505644853447 -10947.0,0.06514255312181065 -10948.0,0.06512005756611844 -10949.0,0.0650975697787743 -10950.0,0.06507508975709557 -10951.0,0.06505261749840056 -10952.0,0.0650301530000085 -10953.0,0.06500769625923956 -10954.0,0.06498524727341477 -10955.0,0.06496280603985614 -10956.0,0.06494037255588662 -10957.0,0.06491794681883006 -10958.0,0.0648955288260112 -10959.0,0.06487311857475575 -10960.0,0.06485071606239033 -10961.0,0.06482832128624252 -10962.0,0.06480593424364074 -10963.0,0.06478355493191437 -10964.0,0.06476118334839376 -10965.0,0.06473881949041016 -10966.0,0.06471646335529566 -10967.0,0.06469411494038337 -10968.0,0.06467177424300727 -10969.0,0.06464944126050232 -10970.0,0.06462711599020435 -10971.0,0.06460479842945006 -10972.0,0.06458248857557718 -10973.0,0.06456018642592429 -10974.0,0.06453789197783094 -10975.0,0.06451560522863752 -10976.0,0.06449332617568539 -10977.0,0.06447105481631682 -10978.0,0.06444879114787505 -10979.0,0.06442653516770412 -10980.0,0.06440428687314907 -10981.0,0.06438204626155586 -10982.0,0.06435981333027137 -10983.0,0.0643375880766433 -10984.0,0.0643153704980204 -10985.0,0.06429316059175225 -10986.0,0.06427095835518937 -10987.0,0.06424876378568323 -10988.0,0.06422657688058613 -10989.0,0.06420439763725133 -10990.0,0.06418222605303306 -10991.0,0.0641600621252864 -10992.0,0.06413790585136732 -10993.0,0.06411575722863275 -10994.0,0.06409361625444053 -10995.0,0.06407148292614943 -10996.0,0.06404935724111906 -10997.0,0.06402723919670998 -10998.0,0.06400512879028371 -10999.0,0.06398302601920265 -11000.0,0.06396093088083003 -11001.0,0.06393884337253013 -11002.0,0.06391676349166803 -11003.0,0.0638946912356098 -11004.0,0.06387262660172233 -11005.0,0.0638505695873735 -11006.0,0.06382852018993207 -11007.0,0.0638064784067677 -11008.0,0.063784444235251 -11009.0,0.0637624176727534 -11010.0,0.0637403987166473 -11011.0,0.06371838736430603 -11012.0,0.0636963836131038 -11013.0,0.06367438746041568 -11014.0,0.06365239890361772 -11015.0,0.06363041794008682 -11016.0,0.06360844456720088 -11017.0,0.06358647878233854 -11018.0,0.06356452058287951 -11019.0,0.0635425699662043 -11020.0,0.0635206269296944 -11021.0,0.06349869147073213 -11022.0,0.06347676358670076 -11023.0,0.06345484327498445 -11024.0,0.06343293053296828 -11025.0,0.06341102535803823 -11026.0,0.06338912774758113 -11027.0,0.06336723769898478 -11028.0,0.06334535520963785 -11029.0,0.06332348027692997 -11030.0,0.06330161289825154 -11031.0,0.06327975307099397 -11032.0,0.06325790079254955 -11033.0,0.06323605606031149 -11034.0,0.0632142188716738 -11035.0,0.06319238922403153 -11036.0,0.06317056711478053 -11037.0,0.06314875254131762 -11038.0,0.06312694550104041 -11039.0,0.06310514599134753 -11040.0,0.06308335400963844 -11041.0,0.06306156955331355 -11042.0,0.06303979261977408 -11043.0,0.06301802320642223 -11044.0,0.06299626131066105 -11045.0,0.06297450692989454 -11046.0,0.06295276006152754 -11047.0,0.0629310207029658 -11048.0,0.06290928885161597 -11049.0,0.06288756450488561 -11050.0,0.06286584766018319 -11051.0,0.06284413831491799 -11052.0,0.06282243646650026 -11053.0,0.06280074211234117 -11054.0,0.06277905524985272 -11055.0,0.0627573758764478 -11056.0,0.06273570398954023 -11057.0,0.06271403958654473 -11058.0,0.06269238266487691 -11059.0,0.0626707332219532 -11060.0,0.062649091255191 -11061.0,0.06262745676200861 -11062.0,0.06260582973982516 -11063.0,0.06258421018606075 -11064.0,0.06256259809813627 -11065.0,0.06254099347347357 -11066.0,0.06251939630949539 -11067.0,0.062497806603625375 -11068.0,0.062476224353287965 -11069.0,0.062454649555908584 -11070.0,0.06243308220891351 -11071.0,0.06241152230972996 -11072.0,0.06238996985578593 -11073.0,0.0623684248445104 -11074.0,0.0623468872733332 -11075.0,0.06232535713968509 -11076.0,0.06230383444099762 -11077.0,0.062282319174703324 -11078.0,0.062260811338235585 -11079.0,0.0622393109290287 -11080.0,0.06221781794451778 -11081.0,0.06219633238213888 -11082.0,0.062174854239328954 -11083.0,0.06215338351352579 -11084.0,0.06213192020216813 -11085.0,0.0621104643026955 -11086.0,0.06208901581254839 -11087.0,0.06206757472916816 -11088.0,0.06204614104999706 -11089.0,0.062024714772478166 -11090.0,0.062003295894055496 -11091.0,0.06198188441217395 -11092.0,0.0619604803242793 -11093.0,0.06193908362781816 -11094.0,0.061917694320238074 -11095.0,0.06189631239898746 -11096.0,0.061874937861515635 -11097.0,0.061853570705272726 -11098.0,0.061832210927709796 -11099.0,0.0618108585262788 -11100.0,0.061789513498432536 -11101.0,0.06176817584162474 -11102.0,0.06174684555330991 -11103.0,0.06172552263094355 -11104.0,0.06170420707198197 -11105.0,0.061682898873882425 -11106.0,0.061661598034102934 -11107.0,0.06164030455010249 -11108.0,0.06161901841934094 -11109.0,0.06159773963927904 -11110.0,0.06157646820737831 -11111.0,0.06155520412110127 -11112.0,0.061533947377911256 -11113.0,0.061512697975272534 -11114.0,0.06149145591065014 -11115.0,0.06147022118151008 -11116.0,0.06144899378531921 -11117.0,0.061427773719545255 -11118.0,0.061406560981656845 -11119.0,0.06138535556912339 -11120.0,0.06136415747941528 -11121.0,0.06134296671000373 -11122.0,0.06132178325836086 -11123.0,0.06130060712195959 -11124.0,0.061279438298273786 -11125.0,0.06125827678477816 -11126.0,0.06123712257894833 -11127.0,0.0612159756782607 -11128.0,0.06119483608019262 -11129.0,0.06117370378222229 -11130.0,0.061152578781828816 -11131.0,0.061131461076492075 -11132.0,0.061110350663692914 -11133.0,0.061089247540913015 -11134.0,0.06106815170563495 -11135.0,0.061047063155342085 -11136.0,0.06102598188751874 -11137.0,0.06100490789965008 -11138.0,0.06098384118922212 -11139.0,0.06096278175372179 -11140.0,0.060941729590636796 -11141.0,0.0609206846974558 -11142.0,0.060899647071668284 -11143.0,0.06087861671076466 -11144.0,0.0608575936122361 -11145.0,0.06083657777357472 -11146.0,0.06081556919227349 -11147.0,0.060794567865826266 -11148.0,0.06077357379172769 -11149.0,0.06075258696747334 -11150.0,0.060731607390559654 -11151.0,0.06071063505848394 -11152.0,0.0606896699687443 -11153.0,0.060668712118839785 -11154.0,0.06064776150627026 -11155.0,0.06062681812853649 -11156.0,0.0606058819831401 -11157.0,0.0605849530675835 -11158.0,0.060564031379370054 -11159.0,0.06054311691600397 -11160.0,0.06052220967499031 -11161.0,0.060501309653834955 -11162.0,0.0604804168500447 -11163.0,0.06045953126112721 -11164.0,0.06043865288459098 -11165.0,0.06041778171794534 -11166.0,0.060396917758700534 -11167.0,0.06037606100436764 -11168.0,0.06035521145245863 -11169.0,0.06033436910048625 -11170.0,0.060313533945964184 -11171.0,0.06029270598640696 -11172.0,0.06027188521932996 -11173.0,0.06025107164224939 -11174.0,0.06023026525268235 -11175.0,0.060209466048146795 -11176.0,0.060188674026161536 -11177.0,0.06016788918424626 -11178.0,0.06014711151992143 -11179.0,0.060126341030708456 -11180.0,0.06010557771412956 -11181.0,0.06008482156770787 -11182.0,0.06006407258896727 -11183.0,0.06004333077543257 -11184.0,0.06002259612462944 -11185.0,0.06000186863408442 -11186.0,0.059981148301324796 -11187.0,0.05996043512387883 -11188.0,0.059939729099275585 -11189.0,0.059919030225045 -11190.0,0.059898338498717806 -11191.0,0.05987765391782566 -11192.0,0.05985697647990104 -11193.0,0.05983630618247727 -11194.0,0.059815643023088574 -11195.0,0.059794986999269925 -11196.0,0.05977433810855724 -11197.0,0.05975369634848726 -11198.0,0.059733061716597605 -11199.0,0.05971243421042664 -11200.0,0.0596918138275137 -11201.0,0.059671200565398916 -11202.0,0.0596505944216233 -11203.0,0.059629995393728645 -11204.0,0.05960940347925765 -11205.0,0.059588818675753864 -11206.0,0.059568240980761696 -11207.0,0.05954767039182631 -11208.0,0.05952710690649383 -11209.0,0.059506550522311165 -11210.0,0.05948600123682612 -11211.0,0.059465459047587266 -11212.0,0.059444923952144096 -11213.0,0.059424395948046924 -11214.0,0.0594038750328469 -11215.0,0.05938336120409606 -11216.0,0.059362854459347206 -11217.0,0.05934235479615406 -11218.0,0.05932186221207115 -11219.0,0.059301376704653894 -11220.0,0.059280898271458465 -11221.0,0.05926042691004196 -11222.0,0.059239962617962307 -11223.0,0.059219505392778274 -11224.0,0.05919905523204943 -11225.0,0.05917861213333622 -11226.0,0.05915817609419996 -11227.0,0.059137747112202786 -11228.0,0.05911732518490763 -11229.0,0.05909691030987832 -11230.0,0.059076502484679515 -11231.0,0.05905610170687671 -11232.0,0.05903570797403627 -11233.0,0.05901532128372532 -11234.0,0.05899494163351189 -11235.0,0.058974569020964845 -11236.0,0.058954203443653916 -11237.0,0.05893384489914957 -11238.0,0.05891349338502322 -11239.0,0.058893148898847066 -11240.0,0.0588728114381942 -11241.0,0.058852481000638446 -11242.0,0.05883215758375457 -11243.0,0.05881184118511812 -11244.0,0.058791531802305536 -11245.0,0.05877122943289401 -11246.0,0.05875093407446162 -11247.0,0.058730645724587305 -11248.0,0.058710364380850824 -11249.0,0.058690090040832706 -11250.0,0.058669822702114405 -11251.0,0.05864956236227817 -11252.0,0.05862930901890709 -11253.0,0.05860906266958512 -11254.0,0.058588823311896965 -11255.0,0.058568590943428235 -11256.0,0.05854836556176536 -11257.0,0.058528147164495635 -11258.0,0.05850793574920709 -11259.0,0.058487731313488674 -11260.0,0.05846753385493016 -11261.0,0.058447343371122146 -11262.0,0.05842715985965601 -11263.0,0.058406983318124044 -11264.0,0.05838681374411932 -11265.0,0.05836665113523578 -11266.0,0.058346495489068124 -11267.0,0.058326346803211956 -11268.0,0.05830620507526369 -11269.0,0.058286070302820556 -11270.0,0.05826594248348065 -11271.0,0.058245821614842826 -11272.0,0.05822570769450683 -11273.0,0.05820560072007322 -11274.0,0.0581855006891434 -11275.0,0.05816540759931954 -11276.0,0.05814532144820471 -11277.0,0.05812524223340276 -11278.0,0.05810516995251843 -11279.0,0.05808510460315719 -11280.0,0.058065046182925406 -11281.0,0.058044994689430265 -11282.0,0.058024950120279785 -11283.0,0.05800491247308275 -11284.0,0.057984881745448844 -11285.0,0.057964857934988546 -11286.0,0.05794484103931318 -11287.0,0.057924831056034826 -11288.0,0.05790482798276647 -11289.0,0.057884831817121896 -11290.0,0.057864842556715694 -11291.0,0.05784486019916333 -11292.0,0.05782488474208099 -11293.0,0.05780491618308578 -11294.0,0.057784954519795595 -11295.0,0.05776499974982918 -11296.0,0.05774505187080603 -11297.0,0.05772511088034653 -11298.0,0.05770517677607186 -11299.0,0.057685249555604064 -11300.0,0.05766532921656591 -11301.0,0.057645415756581074 -11302.0,0.057625509173274025 -11303.0,0.05760560946427008 -11304.0,0.057585716627195305 -11305.0,0.05756583065967664 -11306.0,0.057545951559341835 -11307.0,0.05752607932381947 -11308.0,0.05750621395073896 -11309.0,0.057486355437730445 -11310.0,0.05746650378242498 -11311.0,0.057446658982454414 -11312.0,0.05742682103545142 -11313.0,0.05740698993904944 -11314.0,0.057387165690882785 -11315.0,0.05736734828858657 -11316.0,0.05734753772979674 -11317.0,0.05732773401215 -11318.0,0.057307937133283936 -11319.0,0.05728814709083692 -11320.0,0.057268363882448166 -11321.0,0.05724858750575764 -11322.0,0.05722881795840618 -11323.0,0.05720905523803543 -11324.0,0.05718929934228787 -11325.0,0.057169550268806706 -11326.0,0.057149808015236045 -11327.0,0.057130072579220786 -11328.0,0.05711034395840663 -11329.0,0.057090622150440126 -11330.0,0.05707090715296855 -11331.0,0.057051198963640075 -11332.0,0.05703149758010366 -11333.0,0.05701180300000909 -11334.0,0.0569921152210069 -11335.0,0.05697243424074852 -11336.0,0.05695276005688613 -11337.0,0.056933092667072784 -11338.0,0.056913432068962246 -11339.0,0.05689377826020918 -11340.0,0.05687413123846903 -11341.0,0.05685449100139807 -11342.0,0.05683485754665332 -11343.0,0.05681523087189268 -11344.0,0.05679561097477481 -11345.0,0.056775997852959226 -11346.0,0.05675639150410624 -11347.0,0.0567367919258769 -11348.0,0.05671719911593315 -11349.0,0.05669761307193771 -11350.0,0.05667803379155414 -11351.0,0.056658461272446704 -11352.0,0.056638895512280595 -11353.0,0.056619336508721745 -11354.0,0.05659978425943694 -11355.0,0.05658023876209368 -11356.0,0.05656070001436035 -11357.0,0.05654116801390614 -11358.0,0.05652164275840104 -11359.0,0.056502124245515775 -11360.0,0.05648261247292195 -11361.0,0.05646310743829197 -11362.0,0.05644360913929904 -11363.0,0.05642411757361711 -11364.0,0.05640463273892099 -11365.0,0.05638515463288629 -11366.0,0.05636568325318943 -11367.0,0.05634621859750761 -11368.0,0.05632676066351881 -11369.0,0.05630730944890187 -11370.0,0.05628786495133638 -11371.0,0.05626842716850279 -11372.0,0.056248996098082274 -11373.0,0.056229571737756855 -11374.0,0.05621015408520936 -11375.0,0.056190743138123424 -11376.0,0.056171338894183416 -11377.0,0.05615194135107457 -11378.0,0.05613255050648291 -11379.0,0.05611316635809527 -11380.0,0.05609378890359921 -11381.0,0.05607441814068316 -11382.0,0.05605505406703635 -11383.0,0.056035696680348766 -11384.0,0.056016345978311254 -11385.0,0.05599700195861535 -11386.0,0.05597766461895349 -11387.0,0.05595833395701887 -11388.0,0.05593900997050551 -11389.0,0.05591969265710813 -11390.0,0.05590038201452237 -11391.0,0.055881078040444586 -11392.0,0.055861780732571996 -11393.0,0.055842490088602516 -11394.0,0.05582320610623493 -11395.0,0.05580392878316882 -11396.0,0.05578465811710454 -11397.0,0.055765394105743216 -11398.0,0.055746136746786794 -11399.0,0.05572688603793803 -11400.0,0.05570764197690047 -11401.0,0.05568840456137839 -11402.0,0.05566917378907694 -11403.0,0.05564994965770201 -11404.0,0.05563073216496032 -11405.0,0.05561152130855937 -11406.0,0.05559231708620741 -11407.0,0.05557311949561354 -11408.0,0.05555392853448762 -11409.0,0.05553474420054034 -11410.0,0.05551556649148309 -11411.0,0.055496395405028154 -11412.0,0.05547723093888854 -11413.0,0.05545807309077809 -11414.0,0.055438921858411386 -11415.0,0.05541977723950383 -11416.0,0.05540063923177161 -11417.0,0.05538150783293174 -11418.0,0.055362383040701915 -11419.0,0.05534326485280073 -11420.0,0.055324153266947514 -11421.0,0.0553050482808624 -11422.0,0.05528594989226632 -11423.0,0.05526685809888092 -11424.0,0.055247772898428735 -11425.0,0.05522869428863302 -11426.0,0.05520962226721787 -11427.0,0.05519055683190808 -11428.0,0.05517149798042931 -11429.0,0.05515244571050797 -11430.0,0.0551334000198713 -11431.0,0.05511436090624723 -11432.0,0.05509532836736456 -11433.0,0.05507630240095284 -11434.0,0.05505728300474245 -11435.0,0.055038270176464454 -11436.0,0.055019263913850786 -11437.0,0.055000264214634144 -11438.0,0.054981271076548016 -11439.0,0.05496228449732662 -11440.0,0.05494330447470502 -11441.0,0.054924331006419025 -11442.0,0.05490536409020525 -11443.0,0.05488640372380111 -11444.0,0.05486744990494471 -11445.0,0.05484850263137502 -11446.0,0.05482956190083179 -11447.0,0.05481062771105553 -11448.0,0.05479170005978749 -11449.0,0.054772778944769764 -11450.0,0.0547538643637452 -11451.0,0.05473495631445745 -11452.0,0.05471605479465087 -11453.0,0.05469715980207068 -11454.0,0.05467827133446284 -11455.0,0.05465938938957411 -11456.0,0.05464051396515198 -11457.0,0.054621645058944755 -11458.0,0.05460278266870153 -11459.0,0.054583926792172145 -11460.0,0.054565077427107256 -11461.0,0.054546234571258234 -11462.0,0.05452739822237728 -11463.0,0.05450856837821736 -11464.0,0.054489745036532235 -11465.0,0.05447092819507636 -11466.0,0.05445211785160505 -11467.0,0.054433314003874377 -11468.0,0.0544145166496412 -11469.0,0.054395725786663074 -11470.0,0.05437694141269842 -11471.0,0.0543581635255064 -11472.0,0.05433939212284697 -11473.0,0.054320627202480785 -11474.0,0.05430186876216936 -11475.0,0.05428311679967494 -11476.0,0.05426437131276059 -11477.0,0.05424563229919004 -11478.0,0.05422689975672791 -11479.0,0.054208173683139536 -11480.0,0.05418945407619103 -11481.0,0.05417074093364931 -11482.0,0.05415203425328198 -11483.0,0.0541333340328575 -11484.0,0.054114640270145065 -11485.0,0.05409595296291467 -11486.0,0.054077272108937 -11487.0,0.054058597705983605 -11488.0,0.05403992975182676 -11489.0,0.05402126824423953 -11490.0,0.054002613180995696 -11491.0,0.053983964559869854 -11492.0,0.05396532237863738 -11493.0,0.0539466866350744 -11494.0,0.05392805732695778 -11495.0,0.05390943445206519 -11496.0,0.05389081800817505 -11497.0,0.05387220799306657 -11498.0,0.05385360440451973 -11499.0,0.0538350072403152 -11500.0,0.05381641649823451 -11501.0,0.05379783217605991 -11502.0,0.05377925427157446 -11503.0,0.053760682782561894 -11504.0,0.053742117706806806 -11505.0,0.0537235590420945 -11506.0,0.053705006786211096 -11507.0,0.0536864609369434 -11508.0,0.05366792149207905 -11509.0,0.05364938844940642 -11510.0,0.05363086180671468 -11511.0,0.053612341561793696 -11512.0,0.05359382771243414 -11513.0,0.05357532025642748 -11514.0,0.0535568191915659 -11515.0,0.05353832451564233 -11516.0,0.05351983622645051 -11517.0,0.053501354321784926 -11518.0,0.05348287879944081 -11519.0,0.0534644096572142 -11520.0,0.05344594689290181 -11521.0,0.05342749050430119 -11522.0,0.053409040489210635 -11523.0,0.053390596845429204 -11524.0,0.05337215957075667 -11525.0,0.05335372866299362 -11526.0,0.053335304119941376 -11527.0,0.05331688593940206 -11528.0,0.05329847411917846 -11529.0,0.053280068657074194 -11530.0,0.05326166955089365 -11531.0,0.05324327679844195 -11532.0,0.05322489039752494 -11533.0,0.05320651034594927 -11534.0,0.05318813664152234 -11535.0,0.0531697692820523 -11536.0,0.053151408265348074 -11537.0,0.0531330535892193 -11538.0,0.05311470525147639 -11539.0,0.053096363249930556 -11540.0,0.05307802758239373 -11541.0,0.05305969824667857 -11542.0,0.05304137524059852 -11543.0,0.05302305856196781 -11544.0,0.05300474820860139 -11545.0,0.05298644417831494 -11546.0,0.052968146468924934 -11547.0,0.0529498550782486 -11548.0,0.05293157000410392 -11549.0,0.05291329124430958 -11550.0,0.052895018796685074 -11551.0,0.05287675265905064 -11552.0,0.05285849282922728 -11553.0,0.052840239305036674 -11554.0,0.05282199208430135 -11555.0,0.05280375116484453 -11556.0,0.05278551654449022 -11557.0,0.052767288221063184 -11558.0,0.052749066192388866 -11559.0,0.052730850456293527 -11560.0,0.052712641010604175 -11561.0,0.05269443785314857 -11562.0,0.05267624098175517 -11563.0,0.05265805039425323 -11564.0,0.052639866088472764 -11565.0,0.05262168806224453 -11566.0,0.052603516313399976 -11567.0,0.052585350839771366 -11568.0,0.0525671916391917 -11569.0,0.05254903870949473 -11570.0,0.0525308920485149 -11571.0,0.05251275165408748 -11572.0,0.052494617524048444 -11573.0,0.05247648965623452 -11574.0,0.05245836804848321 -11575.0,0.05244025269863269 -11576.0,0.052422143604521965 -11577.0,0.05240404076399074 -11578.0,0.05238594417487951 -11579.0,0.05236785383502943 -11580.0,0.05234976974228248 -11581.0,0.05233169189448137 -11582.0,0.05231362028946955 -11583.0,0.05229555492509118 -11584.0,0.0522774957991912 -11585.0,0.052259442909615296 -11586.0,0.05224139625420992 -11587.0,0.05222335583082218 -11588.0,0.05220532163730002 -11589.0,0.05218729367149207 -11590.0,0.052169271931247777 -11591.0,0.052151256414417216 -11592.0,0.0521332471188513 -11593.0,0.05211524404240163 -11594.0,0.052097247182920595 -11595.0,0.05207925653826131 -11596.0,0.05206127210627758 -11597.0,0.05204329388482402 -11598.0,0.05202532187175595 -11599.0,0.052007356064929476 -11600.0,0.05198939646220135 -11601.0,0.05197144306142915 -11602.0,0.05195349586047117 -11603.0,0.051935554857186456 -11604.0,0.05191762004943473 -11605.0,0.051899691435076535 -11606.0,0.05188176901197311 -11607.0,0.05186385277798646 -11608.0,0.05184594273097927 -11609.0,0.05182803886881502 -11610.0,0.051810141189357915 -11611.0,0.051792249690472886 -11612.0,0.05177436437002563 -11613.0,0.051756485225882526 -11614.0,0.05173861225591073 -11615.0,0.05172074545797813 -11616.0,0.05170288482995338 -11617.0,0.05168503036970579 -11618.0,0.051667182075105456 -11619.0,0.05164933994402323 -11620.0,0.05163150397433069 -11621.0,0.05161367416390008 -11622.0,0.051595850510604474 -11623.0,0.05157803301231763 -11624.0,0.051560221666914076 -11625.0,0.051542416472268995 -11626.0,0.05152461742625839 -11627.0,0.05150682452675897 -11628.0,0.05148903777164818 -11629.0,0.05147125715880414 -11630.0,0.0514534826861058 -11631.0,0.05143571435143277 -11632.0,0.05141795215266543 -11633.0,0.0514001960876849 -11634.0,0.051382446154372964 -11635.0,0.05136470235061221 -11636.0,0.05134696467428593 -11637.0,0.05132923312327817 -11638.0,0.051311507695473636 -11639.0,0.051293788388757845 -11640.0,0.05127607520101701 -11641.0,0.0512583681301381 -11642.0,0.05124066717400874 -11643.0,0.05122297233051736 -11644.0,0.0512052835975531 -11645.0,0.051187600973005835 -11646.0,0.051169924454766126 -11647.0,0.0511522540407253 -11648.0,0.051134589728775416 -11649.0,0.05111693151680925 -11650.0,0.05109927940272033 -11651.0,0.05108163338440283 -11652.0,0.051063993459751746 -11653.0,0.05104635962666275 -11654.0,0.05102873188303229 -11655.0,0.05101111022675745 -11656.0,0.050993494655736125 -11657.0,0.0509758851678669 -11658.0,0.05095828176104912 -11659.0,0.050940684433182774 -11660.0,0.05092309318216866 -11661.0,0.050905508005908255 -11662.0,0.05088792890230382 -11663.0,0.050870355869258234 -11664.0,0.05085278890467519 -11665.0,0.050835228006459086 -11666.0,0.050817673172515045 -11667.0,0.05080012440074886 -11668.0,0.050782581689067116 -11669.0,0.0507650450353771 -11670.0,0.05074751443758681 -11671.0,0.05072998989360499 -11672.0,0.05071247140134106 -11673.0,0.05069495895870521 -11674.0,0.050677452563608325 -11675.0,0.05065995221396205 -11676.0,0.05064245790767867 -11677.0,0.05062496964267127 -11678.0,0.05060748741685363 -11679.0,0.050590011228140254 -11680.0,0.05057254107444634 -11681.0,0.05055507695368782 -11682.0,0.05053761886378138 -11683.0,0.0505201668026444 -11684.0,0.05050272076819494 -11685.0,0.05048528075835183 -11686.0,0.05046784677103462 -11687.0,0.050450418804163545 -11688.0,0.05043299685565961 -11689.0,0.050415580923444454 -11690.0,0.0503981710054405 -11691.0,0.05038076709957088 -11692.0,0.05036336920375946 -11693.0,0.05034597731593074 -11694.0,0.05032859143401003 -11695.0,0.05031121155592331 -11696.0,0.05029383767959732 -11697.0,0.05027646980295943 -11698.0,0.050259107923937806 -11699.0,0.05024175204046131 -11700.0,0.050224402150459514 -11701.0,0.050207058251862675 -11702.0,0.05018972034260181 -11703.0,0.05017238842060863 -11704.0,0.05015506248381559 -11705.0,0.050137742530155786 -11706.0,0.05012042855756309 -11707.0,0.05010312056397208 -11708.0,0.050085818547318035 -11709.0,0.05006852250553697 -11710.0,0.050051232436565556 -11711.0,0.050033948338341225 -11712.0,0.05001667020880212 -11713.0,0.04999939804588711 -11714.0,0.0499821318475357 -11715.0,0.04996487161168818 -11716.0,0.049947617336285534 -11717.0,0.04993036901926948 -11718.0,0.049913126658582364 -11719.0,0.04989589025216732 -11720.0,0.04987865979796818 -11721.0,0.0498614352939295 -11722.0,0.049844216737996466 -11723.0,0.04982700412811506 -11724.0,0.04980979746223194 -11725.0,0.04979259673829448 -11726.0,0.04977540195425078 -11727.0,0.049758213108049586 -11728.0,0.0497410301976404 -11729.0,0.049723853220973446 -11730.0,0.049706682175999654 -11731.0,0.04968951706067059 -11732.0,0.04967235787293861 -11733.0,0.049655204610756745 -11734.0,0.04963805727207876 -11735.0,0.04962091585485907 -11736.0,0.049603780357052825 -11737.0,0.0495866507766159 -11738.0,0.049569527111504884 -11739.0,0.04955240935967701 -11740.0,0.04953529751909026 -11741.0,0.04951819158770333 -11742.0,0.049501091563475624 -11743.0,0.04948399744436719 -11744.0,0.04946690922833885 -11745.0,0.0494498269133521 -11746.0,0.04943275049736914 -11747.0,0.04941567997835292 -11748.0,0.049398615354266984 -11749.0,0.04938155662307568 -11750.0,0.04936450378274402 -11751.0,0.04934745683123776 -11752.0,0.04933041576652326 -11753.0,0.04931338058656768 -11754.0,0.04929635128933884 -11755.0,0.0492793278728053 -11756.0,0.04926231033493624 -11757.0,0.049245298673701615 -11758.0,0.04922829288707206 -11759.0,0.049211292973018926 -11760.0,0.049194298929514206 -11761.0,0.04917731075453066 -11762.0,0.04916032844604172 -11763.0,0.049143352002021516 -11764.0,0.049126381420444905 -11765.0,0.04910941669928738 -11766.0,0.0490924578365252 -11767.0,0.049075504830135286 -11768.0,0.0490585576780953 -11769.0,0.049041616378383515 -11770.0,0.049024680928978985 -11771.0,0.049007751327861435 -11772.0,0.04899082757301131 -11773.0,0.048973909662409686 -11774.0,0.0489569975940384 -11775.0,0.04894009136587996 -11776.0,0.04892319097591761 -11777.0,0.048906296422135204 -11778.0,0.04888940770251737 -11779.0,0.048872524815049403 -11780.0,0.04885564775771733 -11781.0,0.04883877652850779 -11782.0,0.04882191112540818 -11783.0,0.048805051546406596 -11784.0,0.04878819778949181 -11785.0,0.04877134985265331 -11786.0,0.048754507733881215 -11787.0,0.04873767143116641 -11788.0,0.04872084094250045 -11789.0,0.04870401626587558 -11790.0,0.048687197399284725 -11791.0,0.048670384340721524 -11792.0,0.0486535770881803 -11793.0,0.0486367756396561 -11794.0,0.04861997999314458 -11795.0,0.048603190146642175 -11796.0,0.04858640609814597 -11797.0,0.04856962784565377 -11798.0,0.04855285538716402 -11799.0,0.0485360887206759 -11800.0,0.04851932784418927 -11801.0,0.04850257275570469 -11802.0,0.0484858234532234 -11803.0,0.048469079934747306 -11804.0,0.04845234219827905 -11805.0,0.04843561024182193 -11806.0,0.04841888406337997 -11807.0,0.04840216366095783 -11808.0,0.04838544903256089 -11809.0,0.048368740176195225 -11810.0,0.04835203708986762 -11811.0,0.04833533977158546 -11812.0,0.048318648219356906 -11813.0,0.04830196243119078 -11814.0,0.048285282405096615 -11815.0,0.04826860813908455 -11816.0,0.04825193963116549 -11817.0,0.04823527687935101 -11818.0,0.04821861988165338 -11819.0,0.04820196863608551 -11820.0,0.04818532314066104 -11821.0,0.048168683393394286 -11822.0,0.04815204939230024 -11823.0,0.04813542113539463 -11824.0,0.04811879862069376 -11825.0,0.04810218184621471 -11826.0,0.048085570809975234 -11827.0,0.04806896550999377 -11828.0,0.048052365944289376 -11829.0,0.04803577211088188 -11830.0,0.048019184007791746 -11831.0,0.04800260163304016 -11832.0,0.047986024984648934 -11833.0,0.0479694540606406 -11834.0,0.04795288885903838 -11835.0,0.047936329377866176 -11836.0,0.04791977561514853 -11837.0,0.04790322756891072 -11838.0,0.04788668523717867 -11839.0,0.047870148617979016 -11840.0,0.047853617709339075 -11841.0,0.04783709250928679 -11842.0,0.047820573015850854 -11843.0,0.047804059227060595 -11844.0,0.047787551140946065 -11845.0,0.047771048755537934 -11846.0,0.047754552068867605 -11847.0,0.047738061078967144 -11848.0,0.04772157578386932 -11849.0,0.04770509618160751 -11850.0,0.047688622270215836 -11851.0,0.04767215404772909 -11852.0,0.047655691512182755 -11853.0,0.04763923466161291 -11854.0,0.047622783494056416 -11855.0,0.04760633800755076 -11856.0,0.04758989820013413 -11857.0,0.04757346406984535 -11858.0,0.04755703561472395 -11859.0,0.04754061283281015 -11860.0,0.04752419572214483 -11861.0,0.04750778428076956 -11862.0,0.047491378506726536 -11863.0,0.0474749783980587 -11864.0,0.04745858395280963 -11865.0,0.04744219516902361 -11866.0,0.04742581204474553 -11867.0,0.047409434578021034 -11868.0,0.04739306276689641 -11869.0,0.04737669660941863 -11870.0,0.0473603361036353 -11871.0,0.047343981247594744 -11872.0,0.04732763203934595 -11873.0,0.04731128847693861 -11874.0,0.047294950558422984 -11875.0,0.04727861828185013 -11876.0,0.0472622916452717 -11877.0,0.04724597064674007 -11878.0,0.04722965528430827 -11879.0,0.047213345556029955 -11880.0,0.047197041459959524 -11881.0,0.047180742994152 -11882.0,0.04716445015666313 -11883.0,0.04714816294554926 -11884.0,0.04713188135886744 -11885.0,0.04711560539467542 -11886.0,0.047099335051031616 -11887.0,0.047083070325995034 -11888.0,0.04706681121762545 -11889.0,0.04705055772398327 -11890.0,0.047034309843129576 -11891.0,0.04701806757312609 -11892.0,0.04700183091203524 -11893.0,0.046985599857920106 -11894.0,0.04696937440884447 -11895.0,0.04695315456287272 -11896.0,0.046936940318069956 -11897.0,0.04692073167250193 -11898.0,0.04690452862423509 -11899.0,0.04688833117133653 -11900.0,0.046872139311873985 -11901.0,0.0468559530439159 -11902.0,0.046839772365531364 -11903.0,0.04682359727479017 -11904.0,0.04680742776976271 -11905.0,0.046791263848520094 -11906.0,0.04677510550913408 -11907.0,0.04675895274967712 -11908.0,0.04674280556822227 -11909.0,0.046726663962843314 -11910.0,0.04671052793161466 -11911.0,0.04669439747261143 -11912.0,0.04667827258390933 -11913.0,0.04666215326358481 -11914.0,0.046646039509714944 -11915.0,0.046629931320377474 -11916.0,0.04661382869365084 -11917.0,0.046597731627614075 -11918.0,0.046581640120346934 -11919.0,0.04656555416992981 -11920.0,0.0465494737744438 -11921.0,0.04653339893197058 -11922.0,0.04651732964059257 -11923.0,0.046501265898392805 -11924.0,0.04648520770345503 -11925.0,0.04646915505386357 -11926.0,0.04645310794770349 -11927.0,0.046437066383060485 -11928.0,0.04642103035802093 -11929.0,0.0464049998706718 -11930.0,0.04638897491910081 -11931.0,0.046372955501396286 -11932.0,0.046356941615647254 -11933.0,0.04634093325994333 -11934.0,0.04632493043237486 -11935.0,0.04630893313103282 -11936.0,0.04629294135400885 -11937.0,0.046276955099395264 -11938.0,0.04626097436528498 -11939.0,0.046244999149771635 -11940.0,0.0462290294509495 -11941.0,0.04621306526691353 -11942.0,0.04619710659575927 -11943.0,0.04618115343558299 -11944.0,0.04616520578448159 -11945.0,0.04614926364055266 -11946.0,0.04613332700189437 -11947.0,0.04611739586660562 -11948.0,0.046101470232785935 -11949.0,0.04608555009853554 -11950.0,0.04606963546195521 -11951.0,0.04605372632114649 -11952.0,0.046037822674211526 -11953.0,0.04602192451925313 -11954.0,0.04600603185437479 -11955.0,0.04599014467768058 -11956.0,0.045974262987275305 -11957.0,0.04595838678126439 -11958.0,0.04594251605775394 -11959.0,0.04592665081485066 -11960.0,0.045910791050661946 -11961.0,0.04589493676329586 -11962.0,0.04587908795086111 -11963.0,0.04586324461146702 -11964.0,0.0458474067432236 -11965.0,0.045831574344241524 -11966.0,0.045815747412632106 -11967.0,0.04579992594650728 -11968.0,0.04578410994397968 -11969.0,0.045768299403162564 -11970.0,0.04575249432216988 -11971.0,0.045736694699116155 -11972.0,0.045720900532116616 -11973.0,0.04570511181928715 -11974.0,0.045689328558744274 -11975.0,0.045673550748605185 -11976.0,0.04565777838698765 -11977.0,0.04564201147201018 -11978.0,0.04562625000179187 -11979.0,0.04561049397445255 -11980.0,0.04559474338811257 -11981.0,0.04557899824089303 -11982.0,0.04556325853091565 -11983.0,0.04554752425630281 -11984.0,0.0455317954151775 -11985.0,0.04551607200566339 -11986.0,0.0455003540258848 -11987.0,0.04548464147396671 -11988.0,0.04546893434803469 -11989.0,0.045453232646214994 -11990.0,0.04543753636663455 -11991.0,0.045421845507420885 -11992.0,0.04540616006670223 -11993.0,0.04539048004260738 -11994.0,0.04537480543326584 -11995.0,0.04535913623680775 -11996.0,0.04534347245136389 -11997.0,0.04532781407506568 -11998.0,0.045312161106045176 -11999.0,0.04529651354243511 -12000.0,0.04528087138236886 -12001.0,0.04526523462398038 -12002.0,0.04524960326540435 -12003.0,0.04523397730477607 -12004.0,0.045218356740231475 -12005.0,0.04520274156990712 -12006.0,0.04518713179194025 -12007.0,0.045171527404468725 -12008.0,0.04515592840563108 -12009.0,0.045140334793566425 -12010.0,0.04512474656641458 -12011.0,0.04510916372231598 -12012.0,0.045093586259411705 -12013.0,0.045078014175843506 -12014.0,0.04506244746975369 -12015.0,0.0450468861392853 -12016.0,0.04503133018258197 -12017.0,0.04501577959778801 -12018.0,0.045000234383048315 -12019.0,0.044984694536508475 -12020.0,0.04496916005631469 -12021.0,0.04495363094061383 -12022.0,0.04493810718755336 -12023.0,0.04492258879528141 -12024.0,0.04490707576194676 -12025.0,0.044891568085698844 -12026.0,0.04487606576468765 -12027.0,0.044860568797063904 -12028.0,0.044845077180978916 -12029.0,0.04482959091458466 -12030.0,0.04481410999603375 -12031.0,0.044798634423479394 -12032.0,0.04478316419507548 -12033.0,0.04476769930897652 -12034.0,0.0447522397633377 -12035.0,0.04473678555631475 -12036.0,0.044721336686064136 -12037.0,0.04470589315074291 -12038.0,0.04469045494850879 -12039.0,0.04467502207752007 -12040.0,0.044659594535935744 -12041.0,0.04464417232191542 -12042.0,0.044628755433619355 -12043.0,0.0446133438692084 -12044.0,0.04459793762684407 -12045.0,0.04458253670468852 -12046.0,0.04456714110090455 -12047.0,0.044551750813655554 -12048.0,0.044536365841105575 -12049.0,0.044520986181419316 -12050.0,0.044505611832762096 -12051.0,0.044490242793299876 -12052.0,0.04447487906119921 -12053.0,0.04445952063462733 -12054.0,0.044444167511752106 -12055.0,0.04442881969074202 -12056.0,0.04441347716976616 -12057.0,0.04439813994699429 -12058.0,0.0443828080205968 -12059.0,0.04436748138874471 -12060.0,0.04435216004960964 -12061.0,0.04433684400136387 -12062.0,0.04432153324218032 -12063.0,0.04430622777023254 -12064.0,0.04429092758369466 -12065.0,0.04427563268074151 -12066.0,0.0442603430595485 -12067.0,0.04424505871829171 -12068.0,0.04422977965514783 -12069.0,0.04421450586829415 -12070.0,0.044199237355908645 -12071.0,0.04418397411616988 -12072.0,0.044168716147257085 -12073.0,0.044153463447350064 -12074.0,0.04413821601462929 -12075.0,0.04412297384727587 -12076.0,0.044107736943471525 -12077.0,0.04409250530139858 -12078.0,0.044077278919240015 -12079.0,0.04406205779517945 -12080.0,0.04404684192740113 -12081.0,0.04403163131408987 -12082.0,0.04401642595343118 -12083.0,0.04400122584361116 -12084.0,0.04398603098281658 -12085.0,0.043970841369234764 -12086.0,0.04395565700105371 -12087.0,0.04394047787646205 -12088.0,0.04392530399364901 -12089.0,0.04391013535080448 -12090.0,0.04389497194611892 -12091.0,0.04387981377778345 -12092.0,0.043864660843989836 -12093.0,0.04384951314293044 -12094.0,0.043834370672798224 -12095.0,0.04381923343178682 -12096.0,0.04380410141809046 -12097.0,0.04378897462990403 -12098.0,0.043773853065422974 -12099.0,0.043758736722843423 -12100.0,0.0437436256003621 -12101.0,0.04372851969617638 -12102.0,0.0437134190084842 -12103.0,0.04369832353548419 -12104.0,0.04368323327537555 -12105.0,0.04366814822635813 -12106.0,0.04365306838663242 -12107.0,0.04363799375439945 -12108.0,0.04362292432786097 -12109.0,0.04360786010521928 -12110.0,0.04359280108467737 -12111.0,0.043577747264438756 -12112.0,0.043562698642707655 -12113.0,0.043547655217688865 -12114.0,0.04353261698758785 -12115.0,0.0435175839506106 -12116.0,0.04350255610496383 -12117.0,0.0434875334488548 -12118.0,0.04347251598049145 -12119.0,0.04345750369808227 -12120.0,0.043442496599836414 -12121.0,0.04342749468396365 -12122.0,0.043412497948674376 -12123.0,0.04339750639217955 -12124.0,0.043382520012690814 -12125.0,0.043367538808420404 -12126.0,0.043352562777581156 -12127.0,0.04333759191838658 -12128.0,0.043322626229050705 -12129.0,0.04330766570778827 -12130.0,0.04329271035281457 -12131.0,0.04327776016234558 -12132.0,0.0432628151345978 -12133.0,0.04324787526778843 -12134.0,0.04323294056013524 -12135.0,0.04321801100985666 -12136.0,0.04320308661517165 -12137.0,0.04318816737429987 -12138.0,0.04317325328546155 -12139.0,0.043158344346877583 -12140.0,0.04314344055676939 -12141.0,0.04312854191335909 -12142.0,0.04311364841486937 -12143.0,0.04309876005952355 -12144.0,0.043083876845545585 -12145.0,0.043068998771159966 -12146.0,0.043054125834591866 -12147.0,0.04303925803406706 -12148.0,0.04302439536781194 -12149.0,0.043009537834053466 -12150.0,0.04299468543101926 -12151.0,0.04297983815693754 -12152.0,0.04296499601003714 -12153.0,0.04295015898854748 -12154.0,0.042935327090698625 -12155.0,0.042920500314721236 -12156.0,0.042905678658846605 -12157.0,0.04289086212130658 -12158.0,0.04287605070033368 -12159.0,0.042861244394160995 -12160.0,0.04284644320102225 -12161.0,0.0428316471191518 -12162.0,0.04281685614678453 -12163.0,0.042802070282156005 -12164.0,0.04278728952350238 -12165.0,0.04277251386906044 -12166.0,0.04275774331706752 -12167.0,0.04274297786576161 -12168.0,0.04272821751338131 -12169.0,0.04271346225816583 -12170.0,0.04269871209835494 -12171.0,0.04268396703218908 -12172.0,0.04266922705790926 -12173.0,0.04265449217375713 -12174.0,0.04263976237797489 -12175.0,0.042625037668805404 -12176.0,0.04261031804449212 -12177.0,0.04259560350327911 -12178.0,0.042580894043411 -12179.0,0.042566189663133074 -12180.0,0.04255149036069121 -12181.0,0.042536796134331895 -12182.0,0.04252210698230223 -12183.0,0.04250742290284986 -12184.0,0.04249274389422311 -12185.0,0.04247806995467088 -12186.0,0.04246340108244269 -12187.0,0.042448737275788614 -12188.0,0.042434078532959385 -12189.0,0.04241942485220633 -12190.0,0.042404776231781384 -12191.0,0.04239013266993703 -12192.0,0.04237549416492643 -12193.0,0.042360860715003314 -12194.0,0.04234623231842203 -12195.0,0.042331608973437476 -12196.0,0.04231699067830523 -12197.0,0.042302377431281415 -12198.0,0.042287769230622795 -12199.0,0.04227316607458672 -12200.0,0.04225856796143112 -12201.0,0.04224397488941455 -12202.0,0.042229386856796176 -12203.0,0.04221480386183576 -12204.0,0.042200225902793626 -12205.0,0.04218565297793074 -12206.0,0.042171085085508674 -12207.0,0.042156522223789586 -12208.0,0.04214196439103621 -12209.0,0.04212741158551191 -12210.0,0.042112863805480655 -12211.0,0.042098321049207 -12212.0,0.04208378331495608 -12213.0,0.04206925060099367 -12214.0,0.04205472290558611 -12215.0,0.04204020022700038 -12216.0,0.04202568256350398 -12217.0,0.04201116991336509 -12218.0,0.041996662274852464 -12219.0,0.041982159646235424 -12220.0,0.041967662025783954 -12221.0,0.041953169411768534 -12222.0,0.04193868180246033 -12223.0,0.041924199196131086 -12224.0,0.04190972159105314 -12225.0,0.04189524898549938 -12226.0,0.04188078137774335 -12227.0,0.041866318766059174 -12228.0,0.04185186114872159 -12229.0,0.04183740852400586 -12230.0,0.041822960890187916 -12231.0,0.04180851824554426 -12232.0,0.04179408058835202 -12233.0,0.04177964791688883 -12234.0,0.04176522022943301 -12235.0,0.041750797524263444 -12236.0,0.0417363797996596 -12237.0,0.04172196705390157 -12238.0,0.041707559285269986 -12239.0,0.04169315649204612 -12240.0,0.04167875867251183 -12241.0,0.04166436582494956 -12242.0,0.04164997794764234 -12243.0,0.0416355950388738 -12244.0,0.04162121709692817 -12245.0,0.04160684412009028 -12246.0,0.041592476106645515 -12247.0,0.04157811305487988 -12248.0,0.04156375496307997 -12249.0,0.041549401829533 -12250.0,0.04153505365252669 -12251.0,0.04152071043034943 -12252.0,0.041506372161290196 -12253.0,0.041492038843638536 -12254.0,0.04147771047568456 -12255.0,0.041463387055719024 -12256.0,0.04144906858203323 -12257.0,0.0414347550529191 -12258.0,0.04142044646666916 -12259.0,0.041406142821576446 -12260.0,0.04139184411593467 -12261.0,0.0413775503480381 -12262.0,0.041363261516181596 -12263.0,0.04134897761866059 -12264.0,0.04133469865377112 -12265.0,0.04132042461980981 -12266.0,0.041306155515073904 -12267.0,0.041291891337861146 -12268.0,0.04127763208646996 -12269.0,0.04126337775919931 -12270.0,0.04124912835434878 -12271.0,0.04123488387021849 -12272.0,0.041220644305109175 -12273.0,0.04120640965732218 -12274.0,0.04119217992515941 -12275.0,0.041177955106923375 -12276.0,0.04116373520091712 -12277.0,0.041149520205444344 -12278.0,0.04113531011880929 -12279.0,0.04112110493931682 -12280.0,0.04110690466527232 -12281.0,0.04109270929498183 -12282.0,0.04107851882675194 -12283.0,0.04106433325888984 -12284.0,0.041050152589703265 -12285.0,0.04103597681750059 -12286.0,0.04102180594059074 -12287.0,0.04100763995728325 -12288.0,0.040993478865888194 -12289.0,0.04097932266471627 -12290.0,0.04096517135207874 -12291.0,0.04095102492628749 -12292.0,0.0409368833856549 -12293.0,0.04092274672849401 -12294.0,0.040908614953118434 -12295.0,0.040894488057842335 -12296.0,0.04088036604098051 -12297.0,0.040866248900848265 -12298.0,0.04085213663576154 -12299.0,0.04083802924403685 -12300.0,0.0408239267239913 -12301.0,0.04080982907394254 -12302.0,0.04079573629220882 -12303.0,0.04078164837710899 -12304.0,0.04076756532696248 -12305.0,0.04075348714008924 -12306.0,0.04073941381480987 -12307.0,0.04072534534944552 -12308.0,0.04071128174231795 -12309.0,0.04069722299174944 -12310.0,0.040683169096062885 -12311.0,0.040669120053581774 -12312.0,0.040655075862630154 -12313.0,0.04064103652153268 -12314.0,0.0406270020286145 -12315.0,0.040612972382201455 -12316.0,0.04059894758061988 -12317.0,0.04058492762219676 -12318.0,0.040570912505259564 -12319.0,0.04055690222813641 -12320.0,0.040542896789155985 -12321.0,0.04052889618664755 -12322.0,0.0405149004189409 -12323.0,0.04050090948436647 -12324.0,0.04048692338125523 -12325.0,0.04047294210793877 -12326.0,0.04045896566274918 -12327.0,0.040444994044019196 -12328.0,0.040431027250082095 -12329.0,0.040417065279271774 -12330.0,0.04040310812992263 -12331.0,0.04038915580036969 -12332.0,0.04037520828894855 -12333.0,0.04036126559399537 -12334.0,0.0403473277138469 -12335.0,0.04033339464684043 -12336.0,0.040319466391313855 -12337.0,0.040305542945605635 -12338.0,0.04029162430805483 -12339.0,0.040277710477001 -12340.0,0.04026380145078436 -12341.0,0.040249897227745655 -12342.0,0.04023599780622623 -12343.0,0.04022210318456795 -12344.0,0.04020821336111331 -12345.0,0.04019432833420535 -12346.0,0.04018044810218771 -12347.0,0.040166572663404544 -12348.0,0.04015270201620063 -12349.0,0.0401388361589213 -12350.0,0.04012497508991245 -12351.0,0.040111118807520586 -12352.0,0.04009726731009272 -12353.0,0.04008342059597648 -12354.0,0.040069578663520046 -12355.0,0.04005574151107221 -12356.0,0.040041909136982266 -12357.0,0.040028081539600115 -12358.0,0.040014258717276235 -12359.0,0.040000440668361684 -12360.0,0.03998662739120803 -12361.0,0.03997281888416747 -12362.0,0.03995901514559274 -12363.0,0.039945216173837186 -12364.0,0.039931421967254646 -12365.0,0.039917632524199595 -12366.0,0.03990384784302706 -12367.0,0.039890067922092626 -12368.0,0.039876292759752435 -12369.0,0.03986252235436322 -12370.0,0.039848756704282264 -12371.0,0.03983499580786743 -12372.0,0.03982123966347717 -12373.0,0.039807488269470434 -12374.0,0.0397937416242068 -12375.0,0.039779999726046386 -12376.0,0.03976626257334991 -12377.0,0.0397525301644786 -12378.0,0.03973880249779428 -12379.0,0.039725079571659355 -12380.0,0.039711361384436795 -12381.0,0.03969764793449008 -12382.0,0.03968393922018331 -12383.0,0.03967023523988114 -12384.0,0.03965653599194881 -12385.0,0.039642841474752055 -12386.0,0.03962915168665724 -12387.0,0.03961546662603127 -12388.0,0.039601786291241614 -12389.0,0.03958811068065634 -12390.0,0.039574439792643995 -12391.0,0.039560773625573774 -12392.0,0.03954711217781539 -12393.0,0.03953345544773915 -12394.0,0.03951980343371589 -12395.0,0.039506156134117024 -12396.0,0.03949251354731453 -12397.0,0.039478875671680964 -12398.0,0.039465242505589394 -12399.0,0.03945161404741351 -12400.0,0.03943799029552752 -12401.0,0.039424371248306236 -12402.0,0.03941075690412497 -12403.0,0.03939714726135964 -12404.0,0.03938354231838673 -12405.0,0.03936994207358327 -12406.0,0.039356346525326824 -12407.0,0.039342755671995557 -12408.0,0.03932916951196818 -12409.0,0.03931558804362397 -12410.0,0.039302011265342766 -12411.0,0.039288439175504924 -12412.0,0.039274871772491414 -12413.0,0.03926130905468374 -12414.0,0.039247751020463975 -12415.0,0.03923419766821473 -12416.0,0.0392206489963192 -12417.0,0.03920710500316112 -12418.0,0.039193565687124815 -12419.0,0.03918003104659511 -12420.0,0.03916650107995743 -12421.0,0.039152975785597746 -12422.0,0.03913945516190263 -12423.0,0.039125939207259104 -12424.0,0.03911242792005485 -12425.0,0.03909892129867806 -12426.0,0.039085419341517505 -12427.0,0.03907192204696251 -12428.0,0.039058429413402915 -12429.0,0.03904494143922915 -12430.0,0.03903145812283222 -12431.0,0.039017979462603665 -12432.0,0.03900450545693555 -12433.0,0.03899103610422054 -12434.0,0.038977571402851845 -12435.0,0.038964111351223234 -12436.0,0.03895065594772899 -12437.0,0.038937205190764 -12438.0,0.03892375907872368 -12439.0,0.03891031761000404 -12440.0,0.03889688078300156 -12441.0,0.03888344859611335 -12442.0,0.03887002104773704 -12443.0,0.03885659813627085 -12444.0,0.03884317986011348 -12445.0,0.03882976621766425 -12446.0,0.03881635720732301 -12447.0,0.03880295282749016 -12448.0,0.038789553076566674 -12449.0,0.03877615795295403 -12450.0,0.038762767455054296 -12451.0,0.03874938158127009 -12452.0,0.038736000330004586 -12453.0,0.03872262369966147 -12454.0,0.03870925168864502 -12455.0,0.038695884295360056 -12456.0,0.038682521518211964 -12457.0,0.03866916335560662 -12458.0,0.03865580980595052 -12459.0,0.03864246086765067 -12460.0,0.03862911653911467 -12461.0,0.0386157768187506 -12462.0,0.03860244170496714 -12463.0,0.03858911119617351 -12464.0,0.038575785290779485 -12465.0,0.03856246398719539 -12466.0,0.03854914728383206 -12467.0,0.03853583517910093 -12468.0,0.03852252767141396 -12469.0,0.038509224759183676 -12470.0,0.0384959264408231 -12471.0,0.03848263271474587 -12472.0,0.03846934357936613 -12473.0,0.0384560590330986 -12474.0,0.0384427790743585 -12475.0,0.03842950370156165 -12476.0,0.03841623291312439 -12477.0,0.038402966707463626 -12478.0,0.038389705082996765 -12479.0,0.03837644803814181 -12480.0,0.03836319557131729 -12481.0,0.03834994768094229 -12482.0,0.03833670436543642 -12483.0,0.03832346562321985 -12484.0,0.038310231452713304 -12485.0,0.03829700185233804 -12486.0,0.038283776820515876 -12487.0,0.03827055635566913 -12488.0,0.03825734045622071 -12489.0,0.038244129120594064 -12490.0,0.03823092234721318 -12491.0,0.03821772013450257 -12492.0,0.038204522480887314 -12493.0,0.03819132938479303 -12494.0,0.03817814084464589 -12495.0,0.03816495685887256 -12496.0,0.03815177742590032 -12497.0,0.03813860254415694 -12498.0,0.038125432212070785 -12499.0,0.038112266428070696 -12500.0,0.0380991051905861 -12501.0,0.03808594849804695 -12502.0,0.03807279634888377 -12503.0,0.038059648741527605 -12504.0,0.038046505674410015 -12505.0,0.03803336714596314 -12506.0,0.03802023315461965 -12507.0,0.03800710369881278 -12508.0,0.03799397877697624 -12509.0,0.03798085838754434 -12510.0,0.037967742528951916 -12511.0,0.03795463119963436 -12512.0,0.037941524398027546 -12513.0,0.037928422122567945 -12514.0,0.03791532437169256 -12515.0,0.037902231143838935 -12516.0,0.03788914243744511 -12517.0,0.037876058250949717 -12518.0,0.03786297858279191 -12519.0,0.03784990343141139 -12520.0,0.037836832795248354 -12521.0,0.03782376667274359 -12522.0,0.037810705062338405 -12523.0,0.037797647962474645 -12524.0,0.03778459537159471 -12525.0,0.037771547288141485 -12526.0,0.037758503710558444 -12527.0,0.03774546463728959 -12528.0,0.03773243006677947 -12529.0,0.03771939999747312 -12530.0,0.03770637442781616 -12531.0,0.03769335335625475 -12532.0,0.037680336781235564 -12533.0,0.03766732470120581 -12534.0,0.03765431711461324 -12535.0,0.03764131401990616 -12536.0,0.0376283154155334 -12537.0,0.03761532129994429 -12538.0,0.03760233167158875 -12539.0,0.037589346528917204 -12540.0,0.03757636587038062 -12541.0,0.03756338969443053 -12542.0,0.03755041799951892 -12543.0,0.03753745078409838 -12544.0,0.03752448804662203 -12545.0,0.037511529785543514 -12546.0,0.037498575999316976 -12547.0,0.037485626686397135 -12548.0,0.03747268184523925 -12549.0,0.037459741474299084 -12550.0,0.03744680557203294 -12551.0,0.03743387413689766 -12552.0,0.03742094716735062 -12553.0,0.03740802466184975 -12554.0,0.037395106618853445 -12555.0,0.0373821930368207 -12556.0,0.03736928391421102 -12557.0,0.03735637924948446 -12558.0,0.03734347904110155 -12559.0,0.0373305832875234 -12560.0,0.03731769198721165 -12561.0,0.03730480513862846 -12562.0,0.03729192274023654 -12563.0,0.03727904479049907 -12564.0,0.03726617128787984 -12565.0,0.03725330223084312 -12566.0,0.03724043761785375 -12567.0,0.03722757744737703 -12568.0,0.03721472171787887 -12569.0,0.03720187042782566 -12570.0,0.03718902357568436 -12571.0,0.0371761811599224 -12572.0,0.03716334317900779 -12573.0,0.03715050963140904 -12574.0,0.03713768051559524 -12575.0,0.03712485583003593 -12576.0,0.037112035573201224 -12577.0,0.037099219743561763 -12578.0,0.03708640833958872 -12579.0,0.037073601359753794 -12580.0,0.03706079880252918 -12581.0,0.037048000666387644 -12582.0,0.03703520694980246 -12583.0,0.03702241765124744 -12584.0,0.03700963276919689 -12585.0,0.036996852302125675 -12586.0,0.03698407624850919 -12587.0,0.03697130460682335 -12588.0,0.03695853737554457 -12589.0,0.03694577455314982 -12590.0,0.03693301613811659 -12591.0,0.0369202621289229 -12592.0,0.03690751252404728 -12593.0,0.036894767321968794 -12594.0,0.03688202652116704 -12595.0,0.03686929012012215 -12596.0,0.036856558117314725 -12597.0,0.03684383051122595 -12598.0,0.036831107300337514 -12599.0,0.03681838848313163 -12600.0,0.03680567405809106 -12601.0,0.036792964023699026 -12602.0,0.036780258378439325 -12603.0,0.036767557120796275 -12604.0,0.03675486024925472 -12605.0,0.036742167762299986 -12606.0,0.03672947965841796 -12607.0,0.03671679593609506 -12608.0,0.03670411659381821 -12609.0,0.03669144163007484 -12610.0,0.036678771043352924 -12611.0,0.03666610483214095 -12612.0,0.03665344299492796 -12613.0,0.03664078553020345 -12614.0,0.036628132436457496 -12615.0,0.03661548371218067 -12616.0,0.03660283935586408 -12617.0,0.03659019936599935 -12618.0,0.0365775637410786 -12619.0,0.03656493247959451 -12620.0,0.03655230558004026 -12621.0,0.03653968304090956 -12622.0,0.03652706486069661 -12623.0,0.03651445103789616 -12624.0,0.036501841571003495 -12625.0,0.03648923645851439 -12626.0,0.03647663569892512 -12627.0,0.03646403929073253 -12628.0,0.03645144723243396 -12629.0,0.036438859522527275 -12630.0,0.03642627615951083 -12631.0,0.036413697141883535 -12632.0,0.0364011224681448 -12633.0,0.03638855213679459 -12634.0,0.0363759861463333 -12635.0,0.036363424495261934 -12636.0,0.036350867182081976 -12637.0,0.03633831420529542 -12638.0,0.03632576556340481 -12639.0,0.03631322125491316 -12640.0,0.03630068127832403 -12641.0,0.0362881456321415 -12642.0,0.03627561431487016 -12643.0,0.036263087325015105 -12644.0,0.03625056466108196 -12645.0,0.036238046321576865 -12646.0,0.03622553230500648 -12647.0,0.036213022609877965 -12648.0,0.036200517234699 -12649.0,0.03618801617797779 -12650.0,0.036175519438223065 -12651.0,0.03616302701394403 -12652.0,0.036150538903650435 -12653.0,0.03613805510585255 -12654.0,0.03612557561906115 -12655.0,0.036113100441787525 -12656.0,0.03610062957254346 -12657.0,0.03608816300984127 -12658.0,0.03607570075219381 -12659.0,0.036063242798114424 -12660.0,0.03605078914611694 -12661.0,0.03603833979471573 -12662.0,0.03602589474242571 -12663.0,0.036013453987762255 -12664.0,0.036001017529241265 -12665.0,0.035988585365379175 -12666.0,0.03597615749469291 -12667.0,0.03596373391569994 -12668.0,0.03595131462691818 -12669.0,0.035938899626866125 -12670.0,0.035926488914062756 -12671.0,0.03591408248702758 -12672.0,0.03590168034428056 -12673.0,0.03588928248434224 -12674.0,0.03587688890573364 -12675.0,0.03586449960697629 -12676.0,0.035852114586592265 -12677.0,0.035839733843104085 -12678.0,0.035827357375034834 -12679.0,0.03581498518090808 -12680.0,0.035802617259247944 -12681.0,0.03579025360857898 -12682.0,0.03577789422742631 -12683.0,0.03576553911431556 -12684.0,0.03575318826777286 -12685.0,0.03574084168632482 -12686.0,0.03572849936849859 -12687.0,0.03571616131282183 -12688.0,0.0357038275178227 -12689.0,0.03569149798202986 -12690.0,0.03567917270397249 -12691.0,0.03566685168218028 -12692.0,0.03565453491518341 -12693.0,0.0356422224015126 -12694.0,0.035629914139699036 -12695.0,0.035617610128274434 -12696.0,0.03560531036577102 -12697.0,0.03559301485072154 -12698.0,0.035580723581659195 -12699.0,0.03556843655711774 -12700.0,0.035556153775631434 -12701.0,0.03554387523573503 -12702.0,0.03553160093596377 -12703.0,0.03551933087485342 -12704.0,0.03550706505094027 -12705.0,0.03549480346276109 -12706.0,0.03548254610885315 -12707.0,0.035470292987754254 -12708.0,0.035458044098002676 -12709.0,0.03544579943813724 -12710.0,0.035433559006697216 -12711.0,0.03542132280222242 -12712.0,0.03540909082325317 -12713.0,0.03539686306833027 -12714.0,0.03538463953599507 -12715.0,0.03537242022478934 -12716.0,0.03536020513325543 -12717.0,0.03534799425993618 -12718.0,0.03533578760337492 -12719.0,0.035323585162115465 -12720.0,0.035311386934702156 -12721.0,0.035299192919679846 -12722.0,0.03528700311559389 -12723.0,0.0352748175209901 -12724.0,0.03526263613441484 -12725.0,0.03525045895441496 -12726.0,0.03523828597953783 -12727.0,0.03522611720833126 -12728.0,0.03521395263934363 -12729.0,0.0352017922711238 -12730.0,0.03518963610222111 -12731.0,0.035177484131185446 -12732.0,0.035165336356567135 -12733.0,0.03515319277691705 -12734.0,0.035141053390786554 -12735.0,0.03512891819672751 -12736.0,0.03511678719329226 -12737.0,0.03510466037903367 -12738.0,0.03509253775250511 -12739.0,0.03508041931226044 -12740.0,0.035068305056854 -12741.0,0.03505619498484066 -12742.0,0.03504408909477577 -12743.0,0.035031987385215214 -12744.0,0.035019889854715304 -12745.0,0.03500779650183291 -12746.0,0.03499570732512539 -12747.0,0.0349836223231506 -12748.0,0.034971541494466865 -12749.0,0.034959464837633035 -12750.0,0.034947392351208466 -12751.0,0.03493532403375299 -12752.0,0.03492325988382696 -12753.0,0.03491119989999118 -12754.0,0.034899144080807 -12755.0,0.03488709242483625 -12756.0,0.034875044930641266 -12757.0,0.03486300159678484 -12758.0,0.03485096242183031 -12759.0,0.03483892740434149 -12760.0,0.0348268965428827 -12761.0,0.03481486983601872 -12762.0,0.03480284728231486 -12763.0,0.034790828880336924 -12764.0,0.03477881462865121 -12765.0,0.03476680452582449 -12766.0,0.03475479857042406 -12767.0,0.03474279676101768 -12768.0,0.03473079909617364 -12769.0,0.03471880557446071 -12770.0,0.03470681619444812 -12771.0,0.03469483095470565 -12772.0,0.034682849853803537 -12773.0,0.034670872890312544 -12774.0,0.03465890006280387 -12775.0,0.034646931369849275 -12776.0,0.03463496681002096 -12777.0,0.03462300638189167 -12778.0,0.03461105008403458 -12779.0,0.0345990979150234 -12780.0,0.03458714987343233 -12781.0,0.03457520595783607 -12782.0,0.03456326616680977 -12783.0,0.034551330498929105 -12784.0,0.03453939895277025 -12785.0,0.03452747152690986 -12786.0,0.034515548219925064 -12787.0,0.0345036290303935 -12788.0,0.0344917139568933 -12789.0,0.034479802998003094 -12790.0,0.03446789615230199 -12791.0,0.03445599341836957 -12792.0,0.03444409479478593 -12793.0,0.03443220028013166 -12794.0,0.03442030987298784 -12795.0,0.034408423571936006 -12796.0,0.03439654137555821 -12797.0,0.034384663282437014 -12798.0,0.034372789291155455 -12799.0,0.034360919400297014 -12800.0,0.03434905360844572 -12801.0,0.03433719191418608 -12802.0,0.03432533431610308 -12803.0,0.03431348081278217 -12804.0,0.034301631402809334 -12805.0,0.03428978608477101 -12806.0,0.03427794485725416 -12807.0,0.03426610771884621 -12808.0,0.03425427466813505 -12809.0,0.0342424457037091 -12810.0,0.03423062082415725 -12811.0,0.034218800028068895 -12812.0,0.034206983314033865 -12813.0,0.034195170680642525 -12814.0,0.034183362126485727 -12815.0,0.034171557650154796 -12816.0,0.03415975725024153 -12817.0,0.03414796092533823 -12818.0,0.03413616867403768 -12819.0,0.034124380494933174 -12820.0,0.034112596386618434 -12821.0,0.03410081634768772 -12822.0,0.034089040376735755 -12823.0,0.03407726847235776 -12824.0,0.03406550063314941 -12825.0,0.034053736857706914 -12826.0,0.03404197714462692 -12827.0,0.03403022149250659 -12828.0,0.03401846989994358 -12829.0,0.034006722365535966 -12830.0,0.03399497888788238 -12831.0,0.033983239465581905 -12832.0,0.03397150409723413 -12833.0,0.03395977278143908 -12834.0,0.033948045516797316 -12835.0,0.03393632230190985 -12836.0,0.03392460313537821 -12837.0,0.03391288801580435 -12838.0,0.03390117694179077 -12839.0,0.03388946991194041 -12840.0,0.03387776692485673 -12841.0,0.033866067979143606 -12842.0,0.03385437307340547 -12843.0,0.0338426822062472 -12844.0,0.03383099537627415 -12845.0,0.0338193125820922 -12846.0,0.033807633822307635 -12847.0,0.03379595909552728 -12848.0,0.03378428840035843 -12849.0,0.03377262173540887 -12850.0,0.03376095909928682 -12851.0,0.03374930049060103 -12852.0,0.0337376459079607 -12853.0,0.033725995349975564 -12854.0,0.03371434881525574 -12855.0,0.03370270630241192 -12856.0,0.033691067810055216 -12857.0,0.033679433336797265 -12858.0,0.03366780288125013 -12859.0,0.03365617644202639 -12860.0,0.03364455401773911 -12861.0,0.03363293560700182 -12862.0,0.033621321208428506 -12863.0,0.033609710820633666 -12864.0,0.033598104442232275 -12865.0,0.03358650207183976 -12866.0,0.03357490370807207 -12867.0,0.03356330934954557 -12868.0,0.03355171899487716 -12869.0,0.033540132642684184 -12870.0,0.0335285502915845 -12871.0,0.03351697194019638 -12872.0,0.03350539758713863 -12873.0,0.03349382723103051 -12874.0,0.03348226087049178 -12875.0,0.03347069850414263 -12876.0,0.03345914013060376 -12877.0,0.03344758574849636 -12878.0,0.03343603535644206 -12879.0,0.03342448895306298 -12880.0,0.03341294653698172 -12881.0,0.03340140810682136 -12882.0,0.033389873661205445 -12883.0,0.033378343198758015 -12884.0,0.03336681671810354 -12885.0,0.03335529421786701 -12886.0,0.03334377569667388 -12887.0,0.033332261153150085 -12888.0,0.033320750585921995 -12889.0,0.03330924399361649 -12890.0,0.03329774137486093 -12891.0,0.03328624272828315 -12892.0,0.033274748052511405 -12893.0,0.03326325734617449 -12894.0,0.03325177060790164 -12895.0,0.033240287836322595 -12896.0,0.0332288090300675 -12897.0,0.033217334187767046 -12898.0,0.03320586330805236 -12899.0,0.03319439638955506 -12900.0,0.03318293343090721 -12901.0,0.03317147443074137 -12902.0,0.033160019387690566 -12903.0,0.033148568300388294 -12904.0,0.03313712116746854 -12905.0,0.03312567798756571 -12906.0,0.03311423875931473 -12907.0,0.033102803481351 -12908.0,0.03309137215231037 -12909.0,0.03307994477082914 -12910.0,0.033068521335544124 -12911.0,0.03305710184509259 -12912.0,0.03304568629811229 -12913.0,0.03303427469324141 -12914.0,0.033022867029118635 -12915.0,0.033011463304383114 -12916.0,0.03300006351767448 -12917.0,0.032988667667632796 -12918.0,0.03297727575289863 -12919.0,0.032965887772113026 -12920.0,0.03295450372391746 -12921.0,0.03294312360695392 -12922.0,0.032931747419864814 -12923.0,0.03292037516129306 -12924.0,0.03290900682988203 -12925.0,0.03289764242427557 -12926.0,0.032886281943117976 -12927.0,0.03287492538505404 -12928.0,0.03286357274872899 -12929.0,0.03285222403278857 -12930.0,0.032840879235878924 -12931.0,0.03282953835664672 -12932.0,0.03281820139373907 -12933.0,0.03280686834580357 -12934.0,0.03279553921148824 -12935.0,0.03278421398944162 -12936.0,0.03277289267831269 -12937.0,0.03276157527675091 -12938.0,0.03275026178340617 -12939.0,0.03273895219692887 -12940.0,0.032727646515969856 -12941.0,0.03271634473918045 -12942.0,0.03270504686521243 -12943.0,0.032693752892718024 -12944.0,0.032682462820349964 -12945.0,0.03267117664676141 -12946.0,0.03265989437060604 -12947.0,0.032648615990537914 -12948.0,0.03263734150521162 -12949.0,0.03262607091328221 -12950.0,0.03261480421340518 -12951.0,0.03260354140423647 -12952.0,0.03259228248443253 -12953.0,0.03258102745265025 -12954.0,0.032569776307546996 -12955.0,0.03255852904778057 -12956.0,0.032547285672009256 -12957.0,0.03253604617889182 -12958.0,0.032524810567087455 -12959.0,0.03251357883525586 -12960.0,0.03250235098205713 -12961.0,0.03249112700615189 -12962.0,0.03247990690620121 -12963.0,0.03246869068086661 -12964.0,0.03245747832881005 -12965.0,0.032446269848694 -12966.0,0.03243506523918136 -12967.0,0.03242386449893553 -12968.0,0.0324126676266203 -12969.0,0.0324014746209 -12970.0,0.03239028548043936 -12971.0,0.03237910020390363 -12972.0,0.03236791878995845 -12973.0,0.032356741237269976 -12974.0,0.032345567544504815 -12975.0,0.032334397710330025 -12976.0,0.03232323173341311 -12977.0,0.03231206961242206 -12978.0,0.03230091134602532 -12979.0,0.03228975693289179 -12980.0,0.03227860637169084 -12981.0,0.032267459661092256 -12982.0,0.032256316799766344 -12983.0,0.03224517778638383 -12984.0,0.03223404261961593 -12985.0,0.032222911298134274 -12986.0,0.03221178382061098 -12987.0,0.03220066018571864 -12988.0,0.03218954039213029 -12989.0,0.03217842443851938 -12990.0,0.03216731232355989 -12991.0,0.032156204045926215 -12992.0,0.03214509960429323 -12993.0,0.03213399899733624 -12994.0,0.03212290222373103 -12995.0,0.03211180928215383 -12996.0,0.03210072017128135 -12997.0,0.03208963488979074 -12998.0,0.032078553436359576 -12999.0,0.03206747580966595 -13000.0,0.03205640200838837 -13001.0,0.03204533203120583 -13002.0,0.03203426587679774 -13003.0,0.032023203543843984 -13004.0,0.032012145031024924 -13005.0,0.03200109033702137 -13006.0,0.031990039460514555 -13007.0,0.031978992400186194 -13008.0,0.031967949154718456 -13009.0,0.031956909722793976 -13010.0,0.0319458741030958 -13011.0,0.031934842294307486 -13012.0,0.031923814295113005 -13013.0,0.03191279010419682 -13014.0,0.03190176972024379 -13015.0,0.03189075314193928 -13016.0,0.031879740367969096 -13017.0,0.03186873139701949 -13018.0,0.031857726227777196 -13019.0,0.03184672485892934 -13020.0,0.03183572728916355 -13021.0,0.0318247335171679 -13022.0,0.031813743541630926 -13023.0,0.031802757361241586 -13024.0,0.03179177497468931 -13025.0,0.031780796380663986 -13026.0,0.03176982157785596 -13027.0,0.03175885056495599 -13028.0,0.03174788334065533 -13029.0,0.03173691990364566 -13030.0,0.03172596025261915 -13031.0,0.03171500438626836 -13032.0,0.03170405230328635 -13033.0,0.031693104002366614 -13034.0,0.0316821594822031 -13035.0,0.03167121874149022 -13036.0,0.0316602817789228 -13037.0,0.031649348593196146 -13038.0,0.031638419183006014 -13039.0,0.03162749354704862 -13040.0,0.03161657168402059 -13041.0,0.031605653592619035 -13042.0,0.0315947392715415 -13043.0,0.03158382871948601 -13044.0,0.03157292193515098 -13045.0,0.031562018917235334 -13046.0,0.031551119664438416 -13047.0,0.031540224175460034 -13048.0,0.03152933244900041 -13049.0,0.03151844448376027 -13050.0,0.03150756027844073 -13051.0,0.03149667983174342 -13052.0,0.031485803142370344 -13053.0,0.03147493020902401 -13054.0,0.031464061030407366 -13055.0,0.03145319560522378 -13056.0,0.0314423339321771 -13057.0,0.0314314760099716 -13058.0,0.03142062183731201 -13059.0,0.0314097714129035 -13060.0,0.03139892473545172 -13061.0,0.031388081803662704 -13062.0,0.03137724261624299 -13063.0,0.031366407171899535 -13064.0,0.03135557546933977 -13065.0,0.031344747507271516 -13066.0,0.0313339232844031 -13067.0,0.03132310279944326 -13068.0,0.031312286051101215 -13069.0,0.03130147303808658 -13070.0,0.03129066375910944 -13071.0,0.03127985821288034 -13072.0,0.03126905639811025 -13073.0,0.03125825831351061 -13074.0,0.031247463957793258 -13075.0,0.031236673329670523 -13076.0,0.03122588642785516 -13077.0,0.031215103251060382 -13078.0,0.031204323797999808 -13079.0,0.03119354806738754 -13080.0,0.03118277605793812 -13081.0,0.031172007768366528 -13082.0,0.031161243197388167 -13083.0,0.03115048234371891 -13084.0,0.03113972520607507 -13085.0,0.03112897178317341 -13086.0,0.0311182220737311 -13087.0,0.031107476076465787 -13088.0,0.03109673379009556 -13089.0,0.031085995213338945 -13090.0,0.031075260344914892 -13091.0,0.031064529183542817 -13092.0,0.031053801727942573 -13093.0,0.03104307797683445 -13094.0,0.031032357928939196 -13095.0,0.031021641582977967 -13096.0,0.031010928937672388 -13097.0,0.03100021999174452 -13098.0,0.030989514743916875 -13099.0,0.030978813192912374 -13100.0,0.03096811533745441 -13101.0,0.030957421176266806 -13102.0,0.03094673070807384 -13103.0,0.030936043931600193 -13104.0,0.030925360845571022 -13105.0,0.030914681448711914 -13106.0,0.030904005739748906 -13107.0,0.03089333371740844 -13108.0,0.03088266538041743 -13109.0,0.030872000727503224 -13110.0,0.03086133975739361 -13111.0,0.03085068246881682 -13112.0,0.030840028860501495 -13113.0,0.030829378931176748 -13114.0,0.03081873267957212 -13115.0,0.030808090104417603 -13116.0,0.03079745120444359 -13117.0,0.03078681597838095 -13118.0,0.03077618442496098 -13119.0,0.03076555654291543 -13120.0,0.03075493233097644 -13121.0,0.03074431178787663 -13122.0,0.03073369491234905 -13123.0,0.030723081703127198 -13124.0,0.030712472158944966 -13125.0,0.03070186627853673 -13126.0,0.030691264060637283 -13127.0,0.03068066550398187 -13128.0,0.030670070607306137 -13129.0,0.0306594793693462 -13130.0,0.030648891788838607 -13131.0,0.03063830786452033 -13132.0,0.0306277275951288 -13133.0,0.030617150979401847 -13134.0,0.030606578016077763 -13135.0,0.030596008703895273 -13136.0,0.03058544304159355 -13137.0,0.030574881027912157 -13138.0,0.030564322661591144 -13139.0,0.030553767941370966 -13140.0,0.030543216865992543 -13141.0,0.030532669434197177 -13142.0,0.030522125644726648 -13143.0,0.030511585496323164 -13144.0,0.030501048987729373 -13145.0,0.03049051611768832 -13146.0,0.030479986884943522 -13147.0,0.030469461288238922 -13148.0,0.03045893932631889 -13149.0,0.030448420997928244 -13150.0,0.030437906301812204 -13151.0,0.03042739523671645 -13152.0,0.030416887801387092 -13153.0,0.030406383994570685 -13154.0,0.030395883815014173 -13155.0,0.03038538726146497 -13156.0,0.03037489433267092 -13157.0,0.030364405027380303 -13158.0,0.030353919344341795 -13159.0,0.030343437282304545 -13160.0,0.03033295884001812 -13161.0,0.03032248401623253 -13162.0,0.03031201280969818 -13163.0,0.030301545219165938 -13164.0,0.030291081243387107 -13165.0,0.030280620881113406 -13166.0,0.030270164131097 -13167.0,0.030259710992090454 -13168.0,0.030249261462846795 -13169.0,0.030238815542119473 -13170.0,0.030228373228662377 -13171.0,0.030217934521229787 -13172.0,0.030207499418576457 -13173.0,0.030197067919457556 -13174.0,0.030186640022628695 -13175.0,0.030176215726845874 -13176.0,0.030165795030865562 -13177.0,0.030155377933444652 -13178.0,0.030144964433340467 -13179.0,0.03013455452931073 -13180.0,0.03012414822011363 -13181.0,0.030113745504507766 -13182.0,0.030103346381252182 -13183.0,0.030092950849106317 -13184.0,0.03008255890683007 -13185.0,0.03007217055318376 -13186.0,0.03006178578692813 -13187.0,0.03005140460682437 -13188.0,0.03004102701163405 -13189.0,0.03003065300011921 -13190.0,0.030020282571042313 -13191.0,0.03000991572316625 -13192.0,0.02999955245525431 -13193.0,0.02998919276607024 -13194.0,0.029978836654378206 -13195.0,0.029968484118942814 -13196.0,0.02995813515852905 -13197.0,0.02994778977190238 -13198.0,0.02993744795782867 -13199.0,0.02992710971507423 -13200.0,0.029916775042405756 -13201.0,0.02990644393859041 -13202.0,0.029896116402395773 -13203.0,0.02988579243258984 -13204.0,0.02987547202794105 -13205.0,0.029865155187218224 -13206.0,0.02985484190919066 -13207.0,0.029844532192628052 -13208.0,0.02983422603630054 -13209.0,0.029823923438978654 -13210.0,0.029813624399433376 -13211.0,0.029803328916436105 -13212.0,0.029793036988758684 -13213.0,0.02978274861517333 -13214.0,0.029772463794452732 -13215.0,0.029762182525369985 -13216.0,0.02975190480669862 -13217.0,0.02974163063721255 -13218.0,0.029731360015686163 -13219.0,0.029721092940894245 -13220.0,0.02971082941161202 -13221.0,0.0297005694266151 -13222.0,0.029690312984679557 -13223.0,0.02968006008458187 -13224.0,0.029669810725098944 -13225.0,0.02965956490500812 -13226.0,0.029649322623087115 -13227.0,0.02963908387811412 -13228.0,0.02962884866886772 -13229.0,0.029618616994126948 -13230.0,0.02960838885267121 -13231.0,0.029598164243280378 -13232.0,0.02958794316473473 -13233.0,0.029577725615814978 -13234.0,0.029567511595302222 -13235.0,0.02955730110197801 -13236.0,0.029547094134624308 -13237.0,0.02953689069202351 -13238.0,0.029526690772958396 -13239.0,0.029516494376212205 -13240.0,0.02950630150056858 -13241.0,0.029496112144811577 -13242.0,0.029485926307725705 -13243.0,0.029475743988095836 -13244.0,0.029465565184707308 -13245.0,0.02945538989634586 -13246.0,0.029445218121797675 -13247.0,0.029435049859849304 -13248.0,0.029424885109287757 -13249.0,0.02941472386890046 -13250.0,0.02940456613747526 -13251.0,0.029394411913800392 -13252.0,0.029384261196664537 -13253.0,0.029374113984856794 -13254.0,0.029363970277166685 -13255.0,0.029353830072384117 -13256.0,0.029343693369299446 -13257.0,0.02933356016670344 -13258.0,0.029323430463387295 -13259.0,0.029313304258142582 -13260.0,0.029303181549761338 -13261.0,0.02929306233703599 -13262.0,0.0292829466187594 -13263.0,0.029272834393724835 -13264.0,0.029262725660725967 -13265.0,0.029252620418556904 -13266.0,0.029242518666012168 -13267.0,0.029232420401886703 -13268.0,0.02922232562497584 -13269.0,0.02921223433407535 -13270.0,0.02920214652798142 -13271.0,0.029192062205490664 -13272.0,0.029181981365400067 -13273.0,0.02917190400650707 -13274.0,0.02916183012760952 -13275.0,0.029151759727505687 -13276.0,0.029141692804994224 -13277.0,0.02913162935887423 -13278.0,0.02912156938794521 -13279.0,0.029111512891007083 -13280.0,0.029101459866860198 -13281.0,0.02909141031430527 -13282.0,0.02908136423214348 -13283.0,0.0290713216191764 -13284.0,0.029061282474206033 -13285.0,0.029051246796034758 -13286.0,0.0290412145834654 -13287.0,0.029031185835301197 -13288.0,0.0290211605503458 -13289.0,0.02901113872740324 -13290.0,0.029001120365278004 -13291.0,0.028991105462774967 -13292.0,0.028981094018699444 -13293.0,0.02897108603185711 -13294.0,0.028961081501054104 -13295.0,0.028951080425096958 -13296.0,0.028941082802792624 -13297.0,0.02893108863294844 -13298.0,0.028921097914372182 -13299.0,0.028911110645872033 -13300.0,0.028901126826256583 -13301.0,0.028891146454334847 -13302.0,0.028881169528916218 -13303.0,0.02887119604881053 -13304.0,0.028861226012828024 -13305.0,0.028851259419779354 -13306.0,0.028841296268475557 -13307.0,0.028831336557728113 -13308.0,0.028821380286348904 -13309.0,0.02881142745315023 -13310.0,0.02880147805694476 -13311.0,0.028791532096545624 -13312.0,0.02878158957076634 -13313.0,0.028771650478420847 -13314.0,0.028761714818323462 -13315.0,0.02875178258928894 -13316.0,0.028741853790132443 -13317.0,0.02873192841966954 -13318.0,0.028722006476716213 -13319.0,0.028712087960088825 -13320.0,0.028702172868604183 -13321.0,0.028692261201079487 -13322.0,0.02868235295633236 -13323.0,0.028672448133180792 -13324.0,0.02866254673044323 -13325.0,0.028652648746938507 -13326.0,0.02864275418148587 -13327.0,0.028632863032904955 -13328.0,0.028622975300015827 -13329.0,0.028613090981638955 -13330.0,0.02860321007659522 -13331.0,0.028593332583705878 -13332.0,0.02858345850179263 -13333.0,0.028573587829677574 -13334.0,0.028563720566183216 -13335.0,0.02855385671013244 -13336.0,0.028543996260348575 -13337.0,0.02853413921565534 -13338.0,0.028524285574876865 -13339.0,0.028514435336837687 -13340.0,0.028504588500362728 -13341.0,0.02849474506427734 -13342.0,0.028484905027407272 -13343.0,0.028475068388578693 -13344.0,0.02846523514661814 -13345.0,0.028455405300352593 -13346.0,0.028445578848609418 -13347.0,0.028435755790216406 -13348.0,0.028425936124001714 -13349.0,0.028416119848793938 -13350.0,0.028406306963422067 -13351.0,0.028396497466715513 -13352.0,0.028386691357504046 -13353.0,0.02837688863461788 -13354.0,0.02836708929688762 -13355.0,0.028357293343144283 -13356.0,0.02834750077221929 -13357.0,0.028337711582944437 -13358.0,0.028327925774151958 -13359.0,0.028318143344674473 -13360.0,0.028308364293345024 -13361.0,0.02829858861899702 -13362.0,0.028288816320464302 -13363.0,0.02827904739658111 -13364.0,0.02826928184618209 -13365.0,0.02825951966810226 -13366.0,0.028249760861177083 -13367.0,0.028240005424242393 -13368.0,0.02823025335613446 -13369.0,0.028220504655689902 -13370.0,0.02821075932174578 -13371.0,0.028201017353139558 -13372.0,0.02819127874870909 -13373.0,0.028181543507292618 -13374.0,0.0281718116277288 -13375.0,0.028162083108856706 -13376.0,0.02815235794951578 -13377.0,0.028142636148545907 -13378.0,0.028132917704787316 -13379.0,0.02812320261708068 -13380.0,0.028113490884267064 -13381.0,0.028103782505187934 -13382.0,0.028094077478685132 -13383.0,0.02808437580360093 -13384.0,0.02807467747877799 -13385.0,0.02806498250305938 -13386.0,0.028055290875288543 -13387.0,0.028045602594309348 -13388.0,0.02803591765896605 -13389.0,0.02802623606810332 -13390.0,0.028016557820566196 -13391.0,0.02800688291520014 -13392.0,0.027997211350851012 -13393.0,0.027987543126365057 -13394.0,0.027977878240588946 -13395.0,0.0279682166923697 -13396.0,0.027958558480554778 -13397.0,0.02794890360399203 -13398.0,0.02793925206152971 -13399.0,0.027929603852016434 -13400.0,0.027919958974301252 -13401.0,0.027910317427233603 -13402.0,0.02790067920966333 -13403.0,0.027891044320440643 -13404.0,0.027881412758416182 -13405.0,0.02787178452244097 -13406.0,0.02786215961136644 -13407.0,0.027852538024044388 -13408.0,0.027842919759327043 -13409.0,0.02783330481606701 -13410.0,0.027823693193117314 -13411.0,0.02781408488933133 -13412.0,0.027804479903562874 -13413.0,0.027794878234666136 -13414.0,0.027785279881495713 -13415.0,0.027775684842906597 -13416.0,0.027766093117754152 -13417.0,0.02775650470489416 -13418.0,0.027746919603182804 -13419.0,0.02773733781147665 -13420.0,0.02772775932863265 -13421.0,0.02771818415350816 -13422.0,0.02770861228496094 -13423.0,0.027699043721849143 -13424.0,0.02768947846303129 -13425.0,0.02767991650736632 -13426.0,0.02767035785371357 -13427.0,0.02766080250093277 -13428.0,0.02765125044788401 -13429.0,0.027641701693427816 -13430.0,0.02763215623642509 -13431.0,0.027622614075737125 -13432.0,0.02761307521022563 -13433.0,0.027603539638752655 -13434.0,0.027594007360180695 -13435.0,0.027584478373372617 -13436.0,0.02757495267719169 -13437.0,0.02756543027050155 -13438.0,0.02755591115216625 -13439.0,0.027546395321050236 -13440.0,0.027536882776018342 -13441.0,0.027527373515935774 -13442.0,0.027517867539668152 -13443.0,0.027508364846081487 -13444.0,0.02749886543404219 -13445.0,0.027489369302417018 -13446.0,0.027479876450073173 -13447.0,0.027470386875878227 -13448.0,0.027460900578700147 -13449.0,0.02745141755740727 -13450.0,0.027441937810868348 -13451.0,0.027432461337952522 -13452.0,0.027422988137529313 -13453.0,0.02741351820846865 -13454.0,0.027404051549640818 -13455.0,0.027394588159916522 -13456.0,0.027385128038166853 -13457.0,0.027375671183263294 -13458.0,0.02736621759407769 -13459.0,0.027356767269482312 -13460.0,0.0273473202083498 -13461.0,0.027337876409553204 -13462.0,0.02732843587196592 -13463.0,0.02731899859446178 -13464.0,0.027309564575914973 -13465.0,0.027300133815200113 -13466.0,0.027290706311192153 -13467.0,0.027281282062766466 -13468.0,0.027271861068798815 -13469.0,0.02726244332816534 -13470.0,0.027253028839742587 -13471.0,0.02724361760240745 -13472.0,0.027234209615037256 -13473.0,0.027224804876509693 -13474.0,0.027215403385702858 -13475.0,0.0272060051414952 -13476.0,0.027196610142765584 -13477.0,0.02718721838839326 -13478.0,0.027177829877257875 -13479.0,0.027168444608239414 -13480.0,0.027159062580218305 -13481.0,0.027149683792075333 -13482.0,0.027140308242691695 -13483.0,0.027130935930948927 -13484.0,0.027121566855728994 -13485.0,0.027112201015914238 -13486.0,0.02710283841038739 -13487.0,0.027093479038031536 -13488.0,0.027084122897730184 -13489.0,0.027074769988367216 -13490.0,0.027065420308826894 -13491.0,0.027056073857993888 -13492.0,0.027046730634753203 -13493.0,0.027037390637990277 -13494.0,0.027028053866590917 -13495.0,0.02701872031944132 -13496.0,0.027009389995428047 -13497.0,0.027000062893438065 -13498.0,0.02699073901235872 -13499.0,0.026981418351077754 -13500.0,0.026972100908483256 -13501.0,0.026962786683463733 -13502.0,0.026953475674908065 -13503.0,0.02694416788170553 -13504.0,0.026934863302745752 -13505.0,0.02692556193691878 -13506.0,0.02691626378311502 -13507.0,0.026906968840225275 -13508.0,0.026897677107140736 -13509.0,0.026888388582752946 -13510.0,0.026879103265953858 -13511.0,0.02686982115563581 -13512.0,0.026860542250691517 -13513.0,0.026851266550014057 -13514.0,0.026841994052496914 -13515.0,0.026832724757033945 -13516.0,0.02682345866251941 -13517.0,0.0268141957678479 -13518.0,0.026804936071914434 -13519.0,0.0267956795736144 -13520.0,0.02678642627184357 -13521.0,0.026777176165498077 -13522.0,0.02676792925347446 -13523.0,0.02675868553466963 -13524.0,0.026749445007980887 -13525.0,0.026740207672305883 -13526.0,0.026730973526542683 -13527.0,0.026721742569589722 -13528.0,0.02671251480034581 -13529.0,0.02670329021771016 -13530.0,0.026694068820582315 -13531.0,0.026684850607862246 -13532.0,0.026675635578450287 -13533.0,0.02666642373124716 -13534.0,0.026657215065153943 -13535.0,0.026648009579072117 -13536.0,0.02663880727190353 -13537.0,0.026629608142550436 -13538.0,0.026620412189915413 -13539.0,0.026611219412901465 -13540.0,0.026602029810411962 -13541.0,0.026592843381350664 -13542.0,0.026583660124621673 -13543.0,0.026574480039129506 -13544.0,0.02656530312377904 -13545.0,0.026556129377475545 -13546.0,0.026546958799124665 -13547.0,0.026537791387632396 -13548.0,0.026528627141905143 -13549.0,0.02651946606084968 -13550.0,0.026510308143373167 -13551.0,0.02650115338838311 -13552.0,0.02649200179478742 -13553.0,0.026482853361494384 -13554.0,0.026473708087412673 -13555.0,0.026464565971451293 -13556.0,0.026455427012519673 -13557.0,0.0264462912095276 -13558.0,0.026437158561385253 -13559.0,0.02642802906700315 -13560.0,0.026418902725292213 -13561.0,0.026409779535163748 -13562.0,0.026400659495529426 -13563.0,0.02639154260530128 -13564.0,0.026382428863391733 -13565.0,0.02637331826871359 -13566.0,0.026364210820180017 -13567.0,0.026355106516704578 -13568.0,0.02634600535720117 -13569.0,0.026336907340584102 -13570.0,0.02632781246576805 -13571.0,0.026318720731668074 -13572.0,0.02630963213719957 -13573.0,0.02630054668127835 -13574.0,0.02629146436282058 -13575.0,0.026282385180742822 -13576.0,0.02627330913396197 -13577.0,0.026264236221395332 -13578.0,0.026255166441960572 -13579.0,0.026246099794575747 -13580.0,0.026237036278159247 -13581.0,0.02622797589162987 -13582.0,0.026218918633906782 -13583.0,0.026209864503909514 -13584.0,0.02620081350055799 -13585.0,0.026191765622772468 -13586.0,0.026182720869473607 -13587.0,0.026173679239582442 -13588.0,0.02616464073202038 -13589.0,0.026155605345709175 -13590.0,0.026146573079570974 -13591.0,0.0261375439325283 -13592.0,0.02612851790350405 -13593.0,0.026119494991421462 -13594.0,0.026110475195204184 -13595.0,0.026101458513776214 -13596.0,0.026092444946061943 -13597.0,0.02608343449098609 -13598.0,0.026074427147473794 -13599.0,0.026065422914450537 -13600.0,0.026056421790842197 -13601.0,0.026047423775574976 -13602.0,0.026038428867575493 -13603.0,0.026029437065770718 -13604.0,0.026020448369087994 -13605.0,0.026011462776455052 -13606.0,0.026002480286799946 -13607.0,0.02599350089905115 -13608.0,0.02598452461213748 -13609.0,0.02597555142498815 -13610.0,0.025966581336532693 -13611.0,0.02595761434570106 -13612.0,0.025948650451423555 -13613.0,0.025939689652630857 -13614.0,0.02593073194825399 -13615.0,0.025921777337224373 -13616.0,0.025912825818473793 -13617.0,0.0259038773909344 -13618.0,0.025894932053538697 -13619.0,0.02588598980521958 -13620.0,0.025877050644910304 -13621.0,0.02586811457154449 -13622.0,0.025859181584056146 -13623.0,0.025850251681379603 -13624.0,0.025841324862449604 -13625.0,0.025832401126201242 -13626.0,0.025823480471569998 -13627.0,0.02581456289749167 -13628.0,0.025805648402902476 -13629.0,0.025796736986738976 -13630.0,0.025787828647938122 -13631.0,0.025778923385437184 -13632.0,0.025770021198173843 -13633.0,0.025761122085086133 -13634.0,0.02575222604511247 -13635.0,0.02574333307719159 -13636.0,0.025734443180262644 -13637.0,0.025725556353265133 -13638.0,0.02571667259513893 -13639.0,0.02570779190482425 -13640.0,0.0256989142812617 -13641.0,0.025690039723392247 -13642.0,0.025681168230157213 -13643.0,0.025672299800498313 -13644.0,0.025663434433357585 -13645.0,0.025654572127677463 -13646.0,0.025645712882400737 -13647.0,0.025636856696470582 -13648.0,0.02562800356883049 -13649.0,0.025619153498424363 -13650.0,0.02561030648419645 -13651.0,0.02560146252509138 -13652.0,0.025592621620054105 -13653.0,0.02558378376802999 -13654.0,0.025574948967964736 -13655.0,0.025566117218804432 -13656.0,0.02555728851949549 -13657.0,0.02554846286898472 -13658.0,0.025539640266219285 -13659.0,0.025530820710146722 -13660.0,0.025522004199714923 -13661.0,0.025513190733872128 -13662.0,0.02550438031156696 -13663.0,0.0254955729317484 -13664.0,0.02548676859336581 -13665.0,0.02547796729536887 -13666.0,0.025469169036707658 -13667.0,0.025460373816332607 -13668.0,0.025451581633194525 -13669.0,0.025442792486244547 -13670.0,0.025434006374434198 -13671.0,0.02542522329671536 -13672.0,0.025416443252040292 -13673.0,0.02540766623936157 -13674.0,0.02539889225763218 -13675.0,0.02539012130580544 -13676.0,0.025381353382835058 -13677.0,0.025372588487675058 -13678.0,0.025363826619279866 -13679.0,0.02535506777660425 -13680.0,0.025346311958603353 -13681.0,0.02533755916423267 -13682.0,0.025328809392448047 -13683.0,0.0253200626422057 -13684.0,0.025311318912462206 -13685.0,0.02530257820217452 -13686.0,0.02529384051029991 -13687.0,0.025285105835796053 -13688.0,0.025276374177620957 -13689.0,0.02526764553473301 -13690.0,0.025258919906090933 -13691.0,0.02525019729065383 -13692.0,0.025241477687381154 -13693.0,0.025232761095232734 -13694.0,0.025224047513168722 -13695.0,0.02521533694014966 -13696.0,0.025206629375136444 -13697.0,0.025197924817090323 -13698.0,0.025189223264972915 -13699.0,0.02518052471774617 -13700.0,0.025171829174372422 -13701.0,0.02516313663381436 -13702.0,0.02515444709503504 -13703.0,0.025145760556997833 -13704.0,0.025137077018666517 -13705.0,0.025128396479005208 -13706.0,0.025119718936978386 -13707.0,0.02511104439155087 -13708.0,0.025102372841687856 -13709.0,0.025093704286354893 -13710.0,0.025085038724517894 -13711.0,0.0250763761551431 -13712.0,0.025067716577197145 -13713.0,0.025059059989646998 -13714.0,0.025050406391460008 -13715.0,0.025041755781603833 -13716.0,0.025033108159046538 -13717.0,0.025024463522756522 -13718.0,0.025015821871702544 -13719.0,0.025007183204853727 -13720.0,0.02499854752117952 -13721.0,0.02498991481964976 -13722.0,0.024981285099234626 -13723.0,0.024972658358904668 -13724.0,0.02496403459763076 -13725.0,0.02495541381438416 -13726.0,0.024946796008136467 -13727.0,0.024938181177859654 -13728.0,0.02492956932252601 -13729.0,0.024920960441108222 -13730.0,0.0249123545325793 -13731.0,0.024903751595912647 -13732.0,0.024895151630081967 -13733.0,0.024886554634061354 -13734.0,0.024877960606825254 -13735.0,0.024869369547348464 -13736.0,0.02486078145460614 -13737.0,0.02485219632757376 -13738.0,0.0248436141652272 -13739.0,0.024835034966542668 -13740.0,0.024826458730496735 -13741.0,0.024817885456066304 -13742.0,0.024809315142228647 -13743.0,0.0248007477879614 -13744.0,0.02479218339224254 -13745.0,0.02478362195405038 -13746.0,0.024775063472363613 -13747.0,0.024766507946161278 -13748.0,0.024757955374422772 -13749.0,0.02474940575612781 -13750.0,0.0247408590902565 -13751.0,0.024732315375789283 -13752.0,0.024723774611706974 -13753.0,0.024715236796990694 -13754.0,0.024706701930621956 -13755.0,0.024698170011582615 -13756.0,0.024689641038854872 -13757.0,0.024681115011421298 -13758.0,0.024672591928264775 -13759.0,0.024664071788368575 -13760.0,0.024655554590716302 -13761.0,0.024647040334291933 -13762.0,0.024638529018079756 -13763.0,0.02463002064106444 -13764.0,0.024621515202231003 -13765.0,0.024613012700564818 -13766.0,0.024604513135051576 -13767.0,0.02459601650467735 -13768.0,0.024587522808428554 -13769.0,0.024579032045291965 -13770.0,0.024570544214254676 -13771.0,0.02456205931430416 -13772.0,0.02455357734442823 -13773.0,0.024545098303615044 -13774.0,0.024536622190853136 -13775.0,0.02452814900513134 -13776.0,0.024519678745438873 -13777.0,0.024511211410765302 -13778.0,0.024502747000100543 -13779.0,0.024494285512434835 -13780.0,0.02448582694675879 -13781.0,0.02447737130206337 -13782.0,0.02446891857733988 -13783.0,0.024460468771579955 -13784.0,0.024452021883775606 -13785.0,0.02444357791291918 -13786.0,0.024435136858003383 -13787.0,0.02442669871802124 -13788.0,0.024418263491966147 -13789.0,0.024409831178831852 -13790.0,0.024401401777612443 -13791.0,0.02439297528730234 -13792.0,0.024384551706896327 -13793.0,0.02437613103538954 -13794.0,0.024367713271777454 -13795.0,0.024359298415055894 -13796.0,0.024350886464221014 -13797.0,0.02434247741826934 -13798.0,0.024334071276197734 -13799.0,0.024325668037003412 -13800.0,0.02431726769968391 -13801.0,0.02430887026323714 -13802.0,0.024300475726661348 -13803.0,0.02429208408895514 -13804.0,0.02428369534911743 -13805.0,0.024275309506147515 -13806.0,0.024266926559045023 -13807.0,0.024258546506809944 -13808.0,0.024250169348442575 -13809.0,0.024241795082943593 -13810.0,0.02423342370931401 -13811.0,0.024225055226555183 -13812.0,0.024216689633668822 -13813.0,0.02420832692965695 -13814.0,0.02419996711352197 -13815.0,0.024191610184266618 -13816.0,0.02418325614089398 -13817.0,0.024174904982407465 -13818.0,0.024166556707810843 -13819.0,0.024158211316108232 -13820.0,0.024149868806304098 -13821.0,0.024141529177403215 -13822.0,0.024133192428410742 -13823.0,0.024124858558332157 -13824.0,0.024116527566173312 -13825.0,0.02410819945094035 -13826.0,0.024099874211639803 -13827.0,0.02409155184727853 -13828.0,0.024083232356863746 -13829.0,0.024074915739402968 -13830.0,0.0240666019939041 -13831.0,0.024058291119375377 -13832.0,0.024049983114825365 -13833.0,0.02404167797926299 -13834.0,0.024033375711697495 -13835.0,0.024025076311138486 -13836.0,0.024016779776595908 -13837.0,0.02400848610708005 -13838.0,0.024000195301601523 -13839.0,0.0239919073591713 -13840.0,0.023983622278800694 -13841.0,0.023975340059501363 -13842.0,0.02396706070028528 -13843.0,0.023958784200164784 -13844.0,0.023950510558152553 -13845.0,0.02394223977326161 -13846.0,0.023933971844505294 -13847.0,0.023925706770897306 -13848.0,0.023917444551451686 -13849.0,0.023909185185182813 -13850.0,0.02390092867110541 -13851.0,0.02389267500823452 -13852.0,0.02388442419558555 -13853.0,0.023876176232174234 -13854.0,0.023867931117016666 -13855.0,0.02385968884912924 -13856.0,0.023851449427528724 -13857.0,0.02384321285123222 -13858.0,0.023834979119257166 -13859.0,0.023826748230621326 -13860.0,0.023818520184342818 -13861.0,0.0238102949794401 -13862.0,0.023802072614931974 -13863.0,0.023793853089837554 -13864.0,0.023785636403176318 -13865.0,0.023777422553968076 -13866.0,0.023769211541232987 -13867.0,0.023761003363991513 -13868.0,0.023752798021264496 -13869.0,0.02374459551207309 -13870.0,0.0237363958354388 -13871.0,0.02372819899038347 -13872.0,0.02372000497592926 -13873.0,0.0237118137910987 -13874.0,0.023703625434914628 -13875.0,0.023695439906400252 -13876.0,0.023687257204579072 -13877.0,0.02367907732847497 -13878.0,0.023670900277112137 -13879.0,0.02366272604951513 -13880.0,0.023654554644708795 -13881.0,0.023646386061718355 -13882.0,0.023638220299569357 -13883.0,0.023630057357287702 -13884.0,0.023621897233899583 -13885.0,0.023613739928431566 -13886.0,0.02360558543991055 -13887.0,0.02359743376736376 -13888.0,0.02358928490981877 -13889.0,0.023581138866303468 -13890.0,0.02357299563584609 -13891.0,0.023564855217475214 -13892.0,0.023556717610219758 -13893.0,0.023548582813108943 -13894.0,0.023540450825172355 -13895.0,0.023532321645439908 -13896.0,0.023524195272941865 -13897.0,0.023516071706708785 -13898.0,0.023507950945771596 -13899.0,0.02349983298916155 -13900.0,0.023491717835910243 -13901.0,0.02348360548504958 -13902.0,0.023475495935611827 -13903.0,0.023467389186629568 -13904.0,0.02345928523713574 -13905.0,0.023451184086163583 -13906.0,0.023443085732746696 -13907.0,0.023434990175919008 -13908.0,0.023426897414714775 -13909.0,0.0234188074481686 -13910.0,0.023410720275315388 -13911.0,0.023402635895190413 -13912.0,0.02339455430682926 -13913.0,0.02338647550926787 -13914.0,0.023378399501542482 -13915.0,0.02337032628268969 -13916.0,0.02336225585174643 -13917.0,0.023354188207749954 -13918.0,0.023346123349737843 -13919.0,0.02333806127674802 -13920.0,0.023330001987818743 -13921.0,0.02332194548198861 -13922.0,0.02331389175829651 -13923.0,0.023305840815781707 -13924.0,0.023297792653483786 -13925.0,0.023289747270442657 -13926.0,0.023281704665698573 -13927.0,0.02327366483829209 -13928.0,0.02326562778726413 -13929.0,0.023257593511655923 -13930.0,0.023249562010509057 -13931.0,0.023241533282865406 -13932.0,0.023233507327767217 -13933.0,0.023225484144257045 -13934.0,0.0232174637313778 -13935.0,0.02320944608817268 -13936.0,0.02320143121368525 -13937.0,0.023193419106959396 -13938.0,0.023185409767039342 -13939.0,0.023177403192969608 -13940.0,0.023169399383795083 -13941.0,0.023161398338560967 -13942.0,0.02315340005631281 -13943.0,0.023145404536096446 -13944.0,0.02313741177695808 -13945.0,0.02312942177794424 -13946.0,0.023121434538101778 -13947.0,0.023113450056477875 -13948.0,0.023105468332120026 -13949.0,0.02309748936407608 -13950.0,0.023089513151394205 -13951.0,0.023081539693122908 -13952.0,0.023073568988310988 -13953.0,0.02306560103600761 -13954.0,0.023057635835262262 -13955.0,0.023049673385124755 -13956.0,0.02304171368464521 -13957.0,0.023033756732874104 -13958.0,0.02302580252886223 -13959.0,0.023017851071660718 -13960.0,0.023009902360320997 -13961.0,0.023001956393894855 -13962.0,0.022994013171434395 -13963.0,0.02298607269199205 -13964.0,0.02297813495462059 -13965.0,0.02297019995837308 -13966.0,0.02296226770230294 -13967.0,0.02295433818546391 -13968.0,0.022946411406910068 -13969.0,0.02293848736569579 -13970.0,0.0229305660608758 -13971.0,0.022922647491505146 -13972.0,0.022914731656639216 -13973.0,0.02290681855533368 -13974.0,0.022898908186644577 -13975.0,0.022891000549628258 -13976.0,0.022883095643341407 -13977.0,0.02287519346684101 -13978.0,0.0228672940191844 -13979.0,0.02285939729942924 -13980.0,0.022851503306633505 -13981.0,0.02284361203985549 -13982.0,0.022835723498153833 -13983.0,0.022827837680587482 -13984.0,0.022819954586215725 -13985.0,0.02281207421409817 -13986.0,0.022804196563294733 -13987.0,0.022796321632865667 -13988.0,0.02278844942187156 -13989.0,0.02278057992937332 -13990.0,0.022772713154432155 -13991.0,0.022764849096109624 -13992.0,0.022756987753467607 -13993.0,0.02274912912556831 -13994.0,0.022741273211474233 -13995.0,0.02273342001024824 -13996.0,0.022725569520953497 -13997.0,0.022717721742653508 -13998.0,0.022709876674412068 -13999.0,0.022702034315293333 -14000.0,0.02269419466436176 -14001.0,0.022686357720682143 -14002.0,0.0226785234833196 -14003.0,0.022670691951339538 -14004.0,0.02266286312380773 -14005.0,0.022655036999790247 -14006.0,0.022647213578353503 -14007.0,0.022639392858564204 -14008.0,0.0226315748394894 -14009.0,0.02262375952019646 -14010.0,0.022615946899753082 -14011.0,0.02260813697722726 -14012.0,0.022600329751687336 -14013.0,0.022592525222201964 -14014.0,0.022584723387840133 -14015.0,0.022576924247671118 -14016.0,0.022569127800764553 -14017.0,0.022561334046190373 -14018.0,0.022553542983018853 -14019.0,0.022545754610320556 -14020.0,0.022537968927166394 -14021.0,0.022530185932627594 -14022.0,0.022522405625775704 -14023.0,0.022514628005682595 -14024.0,0.022506853071420432 -14025.0,0.02249908082206174 -14026.0,0.02249131125667934 -14027.0,0.022483544374346392 -14028.0,0.02247578017413634 -14029.0,0.02246801865512299 -14030.0,0.022460259816380442 -14031.0,0.022452503656983133 -14032.0,0.022444750176005793 -14033.0,0.022436999372523497 -14034.0,0.02242925124561163 -14035.0,0.022421505794345906 -14036.0,0.022413763017802332 -14037.0,0.022406022915057264 -14038.0,0.022398285485187356 -14039.0,0.022390550727269594 -14040.0,0.022382818640381285 -14041.0,0.02237508922360003 -14042.0,0.022367362476003776 -14043.0,0.022359638396670777 -14044.0,0.02235191698467962 -14045.0,0.022344198239109173 -14046.0,0.022336482159038655 -14047.0,0.022328768743547597 -14048.0,0.022321057991715854 -14049.0,0.02231334990262357 -14050.0,0.022305644475351234 -14051.0,0.022297941708979648 -14052.0,0.02229024160258993 -14053.0,0.022282544155263508 -14054.0,0.02227484936608213 -14055.0,0.02226715723412787 -14056.0,0.022259467758483118 -14057.0,0.02225178093823056 -14058.0,0.022244096772453224 -14059.0,0.022236415260234444 -14060.0,0.02222873640065787 -14061.0,0.022221060192807483 -14062.0,0.022213386635767548 -14063.0,0.02220571572862267 -14064.0,0.02219804747045777 -14065.0,0.02219038186035809 -14066.0,0.022182718897409158 -14067.0,0.02217505858069685 -14068.0,0.022167400909307345 -14069.0,0.02215974588232715 -14070.0,0.02215209349884305 -14071.0,0.02214444375794219 -14072.0,0.02213679665871201 -14073.0,0.02212915220024027 -14074.0,0.022121510381615028 -14075.0,0.022113871201924682 -14076.0,0.022106234660257927 -14077.0,0.022098600755703787 -14078.0,0.022090969487351595 -14079.0,0.02208334085429098 -14080.0,0.022075714855611918 -14081.0,0.022068091490404673 -14082.0,0.022060470757759847 -14083.0,0.02205285265676832 -14084.0,0.022045237186521325 -14085.0,0.022037624346110386 -14086.0,0.02203001413462736 -14087.0,0.022022406551164376 -14088.0,0.022014801594813924 -14089.0,0.02200719926466879 -14090.0,0.02199959955982207 -14091.0,0.021992002479367164 -14092.0,0.021984408022397803 -14093.0,0.021976816188008022 -14094.0,0.021969226975292182 -14095.0,0.021961640383344926 -14096.0,0.021954056411261236 -14097.0,0.021946475058136405 -14098.0,0.021938896323066028 -14099.0,0.02193132020514603 -14100.0,0.021923746703472614 -14101.0,0.021916175817142326 -14102.0,0.021908607545252014 -14103.0,0.02190104188689885 -14104.0,0.021893478841180283 -14105.0,0.021885918407194112 -14106.0,0.02187836058403843 -14107.0,0.021870805370811652 -14108.0,0.021863252766612478 -14109.0,0.02185570277053995 -14110.0,0.0218481553816934 -14111.0,0.021840610599172496 -14112.0,0.021833068422077183 -14113.0,0.021825528849507735 -14114.0,0.021817991880564748 -14115.0,0.021810457514349107 -14116.0,0.02180292574996203 -14117.0,0.021795396586505013 -14118.0,0.02178787002307989 -14119.0,0.0217803460587888 -14120.0,0.021772824692734196 -14121.0,0.02176530592401882 -14122.0,0.021757789751745735 -14123.0,0.02175027617501833 -14124.0,0.02174276519294029 -14125.0,0.021735256804615598 -14126.0,0.02172775100914856 -14127.0,0.021720247805643796 -14128.0,0.021712747193206237 -14129.0,0.02170524917094109 -14130.0,0.02169775373795391 -14131.0,0.021690260893350546 -14132.0,0.021682770636237164 -14133.0,0.021675282965720216 -14134.0,0.021667797880906482 -14135.0,0.021660315380903048 -14136.0,0.02165283546481731 -14137.0,0.02164535813175697 -14138.0,0.021637883380830024 -14139.0,0.021630411211144795 -14140.0,0.021622941621809912 -14141.0,0.02161547461193431 -14142.0,0.02160801018062722 -14143.0,0.02160054832699819 -14144.0,0.021593089050157076 -14145.0,0.021585632349214057 -14146.0,0.02157817822327958 -14147.0,0.021570726671464428 -14148.0,0.02156327769287969 -14149.0,0.021555831286636767 -14150.0,0.021548387451847336 -14151.0,0.021540946187623408 -14152.0,0.0215335074930773 -14153.0,0.021526071367321632 -14154.0,0.02151863780946933 -14155.0,0.02151120681863361 -14156.0,0.02150377839392802 -14157.0,0.021496352534466398 -14158.0,0.02148892923936291 -14159.0,0.021481508507731985 -14160.0,0.021474090338688398 -14161.0,0.021466674731347214 -14162.0,0.021459261684823813 -14163.0,0.021451851198233854 -14164.0,0.021444443270693333 -14165.0,0.021437037901318533 -14166.0,0.021429635089226063 -14167.0,0.021422234833532797 -14168.0,0.02141483713335595 -14169.0,0.021407441987813032 -14170.0,0.021400049396021862 -14171.0,0.02139265935710054 -14172.0,0.0213852718701675 -14173.0,0.021377886934341468 -14174.0,0.02137050454874147 -14175.0,0.02136312471248686 -14176.0,0.02135574742469725 -14177.0,0.0213483726844926 -14178.0,0.021341000490993148 -14179.0,0.021333630843319462 -14180.0,0.021326263740592377 -14181.0,0.021318899181933058 -14182.0,0.021311537166462967 -14183.0,0.02130417769330388 -14184.0,0.02129682076157785 -14185.0,0.021289466370407253 -14186.0,0.021282114518914763 -14187.0,0.021274765206223373 -14188.0,0.02126741843145634 -14189.0,0.02126007419373726 -14190.0,0.021252732492190014 -14191.0,0.021245393325938795 -14192.0,0.021238056694108103 -14193.0,0.02123072259582271 -14194.0,0.021223391030207723 -14195.0,0.02121606199638854 -14196.0,0.02120873549349087 -14197.0,0.021201411520640694 -14198.0,0.021194090076964326 -14199.0,0.02118677116158837 -14200.0,0.021179454773639743 -14201.0,0.021172140912245636 -14202.0,0.021164829576533567 -14203.0,0.02115752076563135 -14204.0,0.0211502144786671 -14205.0,0.021142910714769213 -14206.0,0.021135609473066416 -14207.0,0.021128310752687722 -14208.0,0.02112101455276245 -14209.0,0.021113720872420222 -14210.0,0.021106429710790936 -14211.0,0.02109914106700482 -14212.0,0.021091854940192393 -14213.0,0.021084571329484485 -14214.0,0.02107729023401219 -14215.0,0.02107001165290694 -14216.0,0.02106273558530045 -14217.0,0.02105546203032475 -14218.0,0.02104819098711214 -14219.0,0.021040922454795243 -14220.0,0.02103365643250698 -14221.0,0.021026392919380577 -14222.0,0.021019131914549526 -14223.0,0.021011873417147657 -14224.0,0.02100461742630908 -14225.0,0.020997363941168225 -14226.0,0.020990112960859775 -14227.0,0.02098286448451876 -14228.0,0.02097561851128048 -14229.0,0.02096837504028055 -14230.0,0.020961134070654888 -14231.0,0.020953895601539672 -14232.0,0.020946659632071422 -14233.0,0.020939426161386936 -14234.0,0.020932195188623326 -14235.0,0.020924966712917967 -14236.0,0.020917740733408567 -14237.0,0.02091051724923312 -14238.0,0.020903296259529924 -14239.0,0.02089607776343755 -14240.0,0.020888861760094888 -14241.0,0.02088164824864113 -14242.0,0.020874437228215765 -14243.0,0.020867228697958547 -14244.0,0.02086002265700956 -14245.0,0.020852819104509184 -14246.0,0.02084561803959808 -14247.0,0.020838419461417224 -14248.0,0.020831223369107865 -14249.0,0.020824029761811563 -14250.0,0.020816838638670176 -14251.0,0.02080964999882587 -14252.0,0.020802463841421065 -14253.0,0.02079528016559852 -14254.0,0.020788098970501274 -14255.0,0.02078092025527267 -14256.0,0.020773744019056326 -14257.0,0.02076657026099617 -14258.0,0.020759398980236436 -14259.0,0.020752230175921642 -14260.0,0.020745063847196592 -14261.0,0.020737899993206396 -14262.0,0.02073073861309646 -14263.0,0.0207235797060125 -14264.0,0.020716423271100487 -14265.0,0.020709269307506717 -14266.0,0.02070211781437778 -14267.0,0.020694968790860552 -14268.0,0.020687822236102216 -14269.0,0.02068067814925022 -14270.0,0.02067353652945234 -14271.0,0.020666397375856627 -14272.0,0.02065926068761145 -14273.0,0.020652126463865425 -14274.0,0.02064499470376751 -14275.0,0.02063786540646693 -14276.0,0.020630738571113225 -14277.0,0.0206236141968562 -14278.0,0.020616492282845972 -14279.0,0.020609372828232955 -14280.0,0.020602255832167855 -14281.0,0.020595141293801647 -14282.0,0.02058802921228563 -14283.0,0.020580919586771385 -14284.0,0.02057381241641078 -14285.0,0.020566707700356002 -14286.0,0.02055960543775948 -14287.0,0.02055250562777398 -14288.0,0.02054540826955255 -14289.0,0.02053831336224853 -14290.0,0.020531220905015534 -14291.0,0.02052413089700749 -14292.0,0.020517043337378617 -14293.0,0.020509958225283426 -14294.0,0.020502875559876697 -14295.0,0.020495795340313528 -14296.0,0.0204887175657493 -14297.0,0.0204816422353397 -14298.0,0.02047456934824067 -14299.0,0.020467498903608477 -14300.0,0.02046043090059967 -14301.0,0.02045336533837109 -14302.0,0.020446302216079855 -14303.0,0.020439241532883397 -14304.0,0.020432183287939422 -14305.0,0.020425127480405935 -14306.0,0.02041807410944124 -14307.0,0.0204110231742039 -14308.0,0.020403974673852805 -14309.0,0.020396928607547115 -14310.0,0.0203898849744463 -14311.0,0.020382843773710076 -14312.0,0.020375805004498503 -14313.0,0.020368768665971898 -14314.0,0.020361734757290886 -14315.0,0.020354703277616362 -14316.0,0.020347674226109523 -14317.0,0.02034064760193186 -14318.0,0.02033362340424515 -14319.0,0.02032660163221145 -14320.0,0.02031958228499311 -14321.0,0.020312565361752785 -14322.0,0.020305550861653403 -14323.0,0.02029853878385819 -14324.0,0.02029152912753064 -14325.0,0.020284521891834568 -14326.0,0.020277517075934056 -14327.0,0.020270514678993486 -14328.0,0.020263514700177513 -14329.0,0.020256517138651092 -14330.0,0.02024952199357947 -14331.0,0.020242529264128187 -14332.0,0.02023553894946304 -14333.0,0.020228551048750147 -14334.0,0.0202215655611559 -14335.0,0.020214582485846993 -14336.0,0.020207601821990374 -14337.0,0.020200623568753313 -14338.0,0.020193647725303354 -14339.0,0.020186674290808337 -14340.0,0.02017970326443637 -14341.0,0.020172734645355864 -14342.0,0.020165768432735515 -14343.0,0.020158804625744306 -14344.0,0.020151843223551513 -14345.0,0.020144884225326672 -14346.0,0.020137927630239638 -14347.0,0.020130973437460536 -14348.0,0.020124021646159795 -14349.0,0.020117072255508097 -14350.0,0.020110125264676437 -14351.0,0.02010318067283609 -14352.0,0.020096238479158632 -14353.0,0.020089298682815882 -14354.0,0.02008236128297999 -14355.0,0.020075426278823374 -14356.0,0.020068493669518742 -14357.0,0.02006156345423907 -14358.0,0.020054635632157647 -14359.0,0.020047710202448027 -14360.0,0.02004078716428406 -14361.0,0.020033866516839884 -14362.0,0.020026948259289905 -14363.0,0.020020032390808826 -14364.0,0.020013118910571642 -14365.0,0.02000620781775363 -14366.0,0.019999299111530332 -14367.0,0.019992392791077594 -14368.0,0.019985488855571543 -14369.0,0.019978587304188604 -14370.0,0.01997168813610545 -14371.0,0.01996479135049907 -14372.0,0.01995789694654673 -14373.0,0.019951004923425983 -14374.0,0.019944115280314645 -14375.0,0.01993722801639084 -14376.0,0.019930343130832973 -14377.0,0.019923460622819727 -14378.0,0.01991658049153006 -14379.0,0.019909702736143224 -14380.0,0.01990282735583876 -14381.0,0.019895954349796477 -14382.0,0.01988908371719649 -14383.0,0.019882215457219164 -14384.0,0.019875349569045176 -14385.0,0.019868486051855472 -14386.0,0.019861624904831295 -14387.0,0.019854766127154144 -14388.0,0.019847909718005825 -14389.0,0.019841055676568416 -14390.0,0.01983420400202429 -14391.0,0.019827354693556076 -14392.0,0.01982050775034671 -14393.0,0.0198136631715794 -14394.0,0.019806820956437647 -14395.0,0.01979998110410521 -14396.0,0.019793143613766145 -14397.0,0.0197863084846048 -14398.0,0.019779475715805784 -14399.0,0.019772645306554013 -14400.0,0.01976581725603465 -14401.0,0.019758991563433168 -14402.0,0.01975216822793531 -14403.0,0.019745347248727108 -14404.0,0.019738528624994856 -14405.0,0.01973171235592515 -14406.0,0.019724898440704856 -14407.0,0.019718086878521134 -14408.0,0.019711277668561396 -14409.0,0.019704470810013364 -14410.0,0.01969766630206503 -14411.0,0.01969086414390467 -14412.0,0.019684064334720818 -14413.0,0.01967726687370232 -14414.0,0.019670471760038288 -14415.0,0.019663678992918123 -14416.0,0.019656888571531476 -14417.0,0.019650100495068313 -14418.0,0.019643314762718862 -14419.0,0.01963653137367364 -14420.0,0.019629750327123437 -14421.0,0.019622971622259316 -14422.0,0.019616195258272632 -14423.0,0.019609421234355016 -14424.0,0.01960264954969838 -14425.0,0.019595880203494898 -14426.0,0.019589113194937047 -14427.0,0.019582348523217566 -14428.0,0.01957558618752949 -14429.0,0.01956882618706611 -14430.0,0.01956206852102101 -14431.0,0.01955531318858805 -14432.0,0.019548560188961377 -14433.0,0.019541809521335392 -14434.0,0.0195350611849048 -14435.0,0.019528315178864566 -14436.0,0.01952157150240995 -14437.0,0.01951483015473648 -14438.0,0.019508091135039953 -14439.0,0.019501354442516456 -14440.0,0.019494620076362355 -14441.0,0.019487888035774295 -14442.0,0.01948115831994918 -14443.0,0.019474430928084204 -14444.0,0.019467705859376846 -14445.0,0.01946098311302486 -14446.0,0.019454262688226254 -14447.0,0.01944754458417934 -14448.0,0.019440828800082695 -14449.0,0.019434115335135185 -14450.0,0.01942740418853593 -14451.0,0.019420695359484336 -14452.0,0.0194139888471801 -14453.0,0.019407284650823187 -14454.0,0.01940058276961382 -14455.0,0.01939388320275252 -14456.0,0.019387185949440083 -14457.0,0.01938049100887757 -14458.0,0.01937379838026633 -14459.0,0.019367108062807968 -14460.0,0.01936042005570439 -14461.0,0.019353734358157758 -14462.0,0.01934705096937053 -14463.0,0.019340369888545407 -14464.0,0.019333691114885396 -14465.0,0.019327014647593767 -14466.0,0.019320340485874072 -14467.0,0.01931366862893012 -14468.0,0.019306999075966013 -14469.0,0.01930033182618612 -14470.0,0.0192936668787951 -14471.0,0.019287004232997854 -14472.0,0.019280343887999582 -14473.0,0.019273685843005758 -14474.0,0.019267030097222127 -14475.0,0.01926037664985471 -14476.0,0.019253725500109786 -14477.0,0.01924707664719393 -14478.0,0.019240430090313978 -14479.0,0.019233785828677057 -14480.0,0.019227143861490537 -14481.0,0.01922050418796209 -14482.0,0.019213866807299647 -14483.0,0.019207231718711432 -14484.0,0.019200598921405902 -14485.0,0.01919396841459183 -14486.0,0.019187340197478236 -14487.0,0.019180714269274438 -14488.0,0.01917409062918999 -14489.0,0.019167469276434746 -14490.0,0.019160850210218835 -14491.0,0.019154233429752653 -14492.0,0.01914761893424685 -14493.0,0.019141006722912374 -14494.0,0.01913439679496044 -14495.0,0.019127789149602524 -14496.0,0.0191211837860504 -14497.0,0.01911458070351607 -14498.0,0.01910797990121185 -14499.0,0.019101381378350307 -14500.0,0.0190947851341443 -14501.0,0.019088191167806922 -14502.0,0.01908159947855157 -14503.0,0.01907501006559191 -14504.0,0.019068422928141877 -14505.0,0.019061838065415653 -14506.0,0.019055255476627727 -14507.0,0.01904867516099284 -14508.0,0.01904209711772602 -14509.0,0.019035521346042535 -14510.0,0.01902894784515795 -14511.0,0.019022376614288097 -14512.0,0.019015807652649076 -14513.0,0.019009240959457267 -14514.0,0.019002676533929293 -14515.0,0.018996114375282074 -14516.0,0.018989554482732797 -14517.0,0.018982996855498913 -14518.0,0.01897644149279814 -14519.0,0.01896988839384847 -14520.0,0.01896333755786817 -14521.0,0.01895678898407578 -14522.0,0.01895024267169009 -14523.0,0.01894369861993018 -14524.0,0.018937156828015386 -14525.0,0.018930617295165333 -14526.0,0.01892408002059989 -14527.0,0.018917545003539208 -14528.0,0.018911012243203712 -14529.0,0.018904481738814097 -14530.0,0.018897953489591307 -14531.0,0.01889142749475658 -14532.0,0.018884903753531405 -14533.0,0.018878382265137557 -14534.0,0.018871863028797068 -14535.0,0.01886534604373223 -14536.0,0.018858831309165623 -14537.0,0.018852318824320088 -14538.0,0.018845808588418736 -14539.0,0.01883930060068493 -14540.0,0.018832794860342318 -14541.0,0.01882629136661482 -14542.0,0.01881979011872662 -14543.0,0.018813291115902155 -14544.0,0.018806794357366145 -14545.0,0.018800299842343576 -14546.0,0.018793807570059707 -14547.0,0.01878731753974004 -14548.0,0.018780829750610368 -14549.0,0.01877434420189675 -14550.0,0.01876786089282551 -14551.0,0.018761379822623235 -14552.0,0.01875490099051677 -14553.0,0.018748424395733248 -14554.0,0.018741950037500052 -14555.0,0.018735477915044853 -14556.0,0.018729008027595553 -14557.0,0.018722540374380352 -14558.0,0.018716074954627702 -14559.0,0.01870961176756634 -14560.0,0.018703150812425236 -14561.0,0.018696692088433654 -14562.0,0.018690235594821112 -14563.0,0.01868378133081741 -14564.0,0.018677329295652582 -14565.0,0.018670879488556957 -14566.0,0.01866443190876112 -14567.0,0.01865798655549593 -14568.0,0.018651543427992485 -14569.0,0.018645102525482175 -14570.0,0.01863866384719665 -14571.0,0.01863222739236782 -14572.0,0.018625793160227874 -14573.0,0.01861936115000924 -14574.0,0.018612931360944628 -14575.0,0.018606503792267012 -14576.0,0.018600078443209645 -14577.0,0.018593655313006007 -14578.0,0.018587234400889874 -14579.0,0.01858081570609528 -14580.0,0.01857439922785653 -14581.0,0.01856798496540817 -14582.0,0.018561572917985027 -14583.0,0.018555163084822197 -14584.0,0.018548755465155036 -14585.0,0.018542350058219154 -14586.0,0.01853594686325043 -14587.0,0.01852954587948502 -14588.0,0.018523147106159325 -14589.0,0.018516750542510032 -14590.0,0.01851035618777406 -14591.0,0.018503964041188613 -14592.0,0.018497574101991158 -14593.0,0.01849118636941943 -14594.0,0.018484800842711403 -14595.0,0.018478417521105336 -14596.0,0.01847203640383975 -14597.0,0.018465657490153428 -14598.0,0.018459280779285395 -14599.0,0.01845290627047497 -14600.0,0.018446533962961715 -14601.0,0.01844016385598547 -14602.0,0.018433795948786313 -14603.0,0.018427430240604604 -14604.0,0.018421066730680963 -14605.0,0.018414705418256277 -14606.0,0.01840834630257167 -14607.0,0.01840198938286856 -14608.0,0.018395634658388605 -14609.0,0.01838928212837374 -14610.0,0.018382931792066154 -14611.0,0.018376583648708287 -14612.0,0.01837023769754286 -14613.0,0.01836389393781285 -14614.0,0.018357552368761496 -14615.0,0.01835121298963228 -14616.0,0.01834487579966897 -14617.0,0.018338540798115584 -14618.0,0.01833220798421641 -14619.0,0.018325877357215973 -14620.0,0.018319548916359087 -14621.0,0.018313222660890822 -14622.0,0.01830689859005648 -14623.0,0.018300576703101663 -14624.0,0.018294256999272212 -14625.0,0.01828793947781423 -14626.0,0.01828162413797408 -14627.0,0.018275310978998396 -14628.0,0.01826900000013406 -14629.0,0.018262691200628237 -14630.0,0.018256384579728297 -14631.0,0.018250080136681925 -14632.0,0.018243777870737044 -14633.0,0.01823747778114184 -14634.0,0.018231179867144762 -14635.0,0.018224884127994515 -14636.0,0.01821859056294006 -14637.0,0.018212299171230635 -14638.0,0.018206009952115694 -14639.0,0.018199722904844996 -14640.0,0.01819343802866854 -14641.0,0.018187155322836584 -14642.0,0.018180874786599653 -14643.0,0.01817459641920852 -14644.0,0.01816832021991422 -14645.0,0.018162046187968055 -14646.0,0.01815577432262159 -14647.0,0.018149504623126603 -14648.0,0.01814323708873519 -14649.0,0.018136971718699667 -14650.0,0.01813070851227263 -14651.0,0.01812444746870692 -14652.0,0.018118188587255644 -14653.0,0.018111931867172158 -14654.0,0.0181056773077101 -14655.0,0.01809942490812332 -14656.0,0.018093174667665957 -14657.0,0.01808692658559241 -14658.0,0.018080680661157325 -14659.0,0.018074436893615615 -14660.0,0.018068195282222435 -14661.0,0.018061955826233215 -14662.0,0.018055718524903643 -14663.0,0.018049483377489628 -14664.0,0.01804325038324737 -14665.0,0.018037019541433327 -14666.0,0.018030790851304202 -14667.0,0.018024564312116957 -14668.0,0.01801833992312881 -14669.0,0.01801211768359724 -14670.0,0.018005897592779974 -14671.0,0.017999679649935024 -14672.0,0.017993463854320595 -14673.0,0.017987250205195208 -14674.0,0.017981038701817623 -14675.0,0.017974829343446845 -14676.0,0.01796862212934215 -14677.0,0.01796241705876306 -14678.0,0.017956214130969355 -14679.0,0.017950013345221085 -14680.0,0.017943814700778514 -14681.0,0.017937618196902202 -14682.0,0.01793142383285295 -14683.0,0.01792523160789182 -14684.0,0.017919041521280123 -14685.0,0.017912853572279425 -14686.0,0.017906667760151547 -14687.0,0.01790048408415857 -14688.0,0.017894302543562845 -14689.0,0.017888123137626923 -14690.0,0.01788194586561366 -14691.0,0.017875770726786158 -14692.0,0.01786959772040777 -14693.0,0.01786342684574209 -14694.0,0.01785725810205299 -14695.0,0.017851091488604573 -14696.0,0.01784492700466123 -14697.0,0.01783876464948755 -14698.0,0.017832604422348425 -14699.0,0.017826446322508984 -14700.0,0.017820290349234612 -14701.0,0.017814136501790943 -14702.0,0.017807984779443873 -14703.0,0.01780183518145954 -14704.0,0.01779568770710435 -14705.0,0.01778954235564496 -14706.0,0.01778339912634825 -14707.0,0.01777725801848139 -14708.0,0.017771119031311792 -14709.0,0.017764982164107122 -14710.0,0.01775884741613529 -14711.0,0.017752714786664472 -14712.0,0.017746584274963086 -14713.0,0.01774045588029982 -14714.0,0.01773432960194358 -14715.0,0.01772820543916355 -14716.0,0.01772208339122917 -14717.0,0.017715963457410118 -14718.0,0.017709845636976335 -14719.0,0.017703729929198008 -14720.0,0.017697616333345576 -14721.0,0.017691504848689737 -14722.0,0.017685395474501445 -14723.0,0.017679288210051866 -14724.0,0.01767318305461247 -14725.0,0.017667080007454948 -14726.0,0.017660979067851253 -14727.0,0.01765488023507359 -14728.0,0.017648783508394415 -14729.0,0.017642688887086425 -14730.0,0.0176365963704226 -14731.0,0.01763050595767611 -14732.0,0.01762441764812043 -14733.0,0.01761833144102927 -14734.0,0.01761224733567659 -14735.0,0.017606165331336604 -14736.0,0.017600085427283765 -14737.0,0.017594007622792795 -14738.0,0.01758793191713866 -14739.0,0.017581858309596552 -14740.0,0.017575786799441943 -14741.0,0.01756971738595055 -14742.0,0.017563650068398332 -14743.0,0.017557584846061507 -14744.0,0.017551521718216535 -14745.0,0.017545460684140132 -14746.0,0.017539401743109258 -14747.0,0.017533344894401143 -14748.0,0.017527290137293216 -14749.0,0.017521237471063204 -14750.0,0.017515186894989068 -14751.0,0.017509138408349022 -14752.0,0.017503092010421523 -14753.0,0.01749704770048528 -14754.0,0.01749100547781925 -14755.0,0.017484965341702657 -14756.0,0.017478927291414925 -14757.0,0.017472891326235775 -14758.0,0.01746685744544516 -14759.0,0.01746082564832328 -14760.0,0.01745479593415059 -14761.0,0.017448768302207783 -14762.0,0.017442742751775812 -14763.0,0.01743671928213587 -14764.0,0.017430697892569416 -14765.0,0.017424678582358112 -14766.0,0.017418661350783914 -14767.0,0.01741264619712901 -14768.0,0.01740663312067584 -14769.0,0.017400622120707077 -14770.0,0.017394613196505662 -14771.0,0.017388606347354774 -14772.0,0.01738260157253785 -14773.0,0.017376598871338536 -14774.0,0.01737059824304077 -14775.0,0.01736459968692872 -14776.0,0.017358603202286802 -14777.0,0.017352608788399677 -14778.0,0.01734661644455226 -14779.0,0.0173406261700297 -14780.0,0.017334637964117407 -14781.0,0.01732865182610105 -14782.0,0.017322667755266488 -14783.0,0.017316685750899886 -14784.0,0.01731070581228763 -14785.0,0.01730472793871636 -14786.0,0.01729875212947296 -14787.0,0.01729277838384456 -14788.0,0.01728680670111853 -14789.0,0.01728083708058251 -14790.0,0.017274869521524343 -14791.0,0.01726890402323215 -14792.0,0.017262940584994294 -14793.0,0.01725697920609938 -14794.0,0.017251019885836258 -14795.0,0.01724506262349403 -14796.0,0.01723910741836203 -14797.0,0.017233154269729847 -14798.0,0.017227203176887335 -14799.0,0.017221254139124537 -14800.0,0.01721530715573179 -14801.0,0.017209362225999666 -14802.0,0.017203419349218974 -14803.0,0.017197478524680777 -14804.0,0.017191539751676376 -14805.0,0.017185603029497315 -14806.0,0.01717966835743541 -14807.0,0.017173735734782657 -14808.0,0.01716780516083136 -14809.0,0.017161876634874042 -14810.0,0.017155950156203473 -14811.0,0.017150025724112672 -14812.0,0.01714410333789489 -14813.0,0.017138182996843634 -14814.0,0.017132264700252663 -14815.0,0.01712634844741594 -14816.0,0.017120434237627713 -14817.0,0.01711452207018246 -14818.0,0.0171086119443749 -14819.0,0.017102703859500003 -14820.0,0.017096797814852974 -14821.0,0.017090893809729266 -14822.0,0.017084991843424574 -14823.0,0.017079091915234854 -14824.0,0.017073194024456253 -14825.0,0.01706729817038521 -14826.0,0.017061404352318402 -14827.0,0.01705551256955273 -14828.0,0.01704962282138535 -14829.0,0.017043735107113656 -14830.0,0.017037849426035288 -14831.0,0.017031965777448147 -14832.0,0.017026084160650323 -14833.0,0.017020204574940193 -14834.0,0.01701432701961637 -14835.0,0.017008451493977707 -14836.0,0.017002577997323288 -14837.0,0.016996706528952455 -14838.0,0.016990837088164783 -14839.0,0.016984969674260088 -14840.0,0.01697910428653845 -14841.0,0.016973240924300137 -14842.0,0.01696737958684571 -14843.0,0.016961520273475948 -14844.0,0.016955662983491885 -14845.0,0.016949807716194788 -14846.0,0.016943954470886164 -14847.0,0.016938103246867765 -14848.0,0.0169322540434416 -14849.0,0.016926406859909864 -14850.0,0.01692056169557505 -14851.0,0.016914718549739874 -14852.0,0.016908877421707293 -14853.0,0.016903038310780497 -14854.0,0.01689720121626293 -14855.0,0.01689136613745826 -14856.0,0.01688553307367041 -14857.0,0.016879702024203556 -14858.0,0.016873872988362064 -14859.0,0.016868045965450582 -14860.0,0.016862220954773997 -14861.0,0.016856397955637422 -14862.0,0.01685057696734622 -14863.0,0.016844757989205983 -14864.0,0.016838941020522556 -14865.0,0.01683312606060203 -14866.0,0.01682731310875069 -14867.0,0.016821502164275113 -14868.0,0.01681569322648209 -14869.0,0.016809886294678663 -14870.0,0.016804081368172102 -14871.0,0.016798278446269927 -14872.0,0.01679247752827989 -14873.0,0.016786678613509978 -14874.0,0.016780881701268444 -14875.0,0.01677508679086373 -14876.0,0.016769293881604554 -14877.0,0.016763502972799868 -14878.0,0.01675771406375886 -14879.0,0.016751927153790952 -14880.0,0.016746142242205813 -14881.0,0.016740359328313338 -14882.0,0.016734578411423687 -14883.0,0.01672879949084721 -14884.0,0.016723022565894537 -14885.0,0.016717247635876523 -14886.0,0.01671147470010426 -14887.0,0.01670570375788908 -14888.0,0.016699934808542552 -14889.0,0.016694167851376483 -14890.0,0.01668840288570293 -14891.0,0.016682639910834143 -14892.0,0.01667687892608266 -14893.0,0.016671119930761237 -14894.0,0.01666536292418287 -14895.0,0.016659607905660782 -14896.0,0.01665385487450845 -14897.0,0.016648103830039576 -14898.0,0.016642354771568103 -14899.0,0.01663660769840822 -14900.0,0.01663086260987432 -14901.0,0.016625119505281068 -14902.0,0.016619378383943353 -14903.0,0.016613639245176306 -14904.0,0.01660790208829528 -14905.0,0.016602166912615884 -14906.0,0.016596433717453944 -14907.0,0.016590702502125555 -14908.0,0.01658497326594699 -14909.0,0.01657924600823481 -14910.0,0.016573520728305795 -14911.0,0.016567797425476958 -14912.0,0.016562076099065553 -14913.0,0.016556356748389067 -14914.0,0.016550639372765224 -14915.0,0.01654492397151198 -14916.0,0.01653921054394755 -14917.0,0.016533499089390325 -14918.0,0.016527789607158994 -14919.0,0.016522082096572452 -14920.0,0.016516376556949836 -14921.0,0.016510672987610518 -14922.0,0.016504971387874105 -14923.0,0.01649927175706043 -14924.0,0.016493574094489594 -14925.0,0.01648787839948187 -14926.0,0.01648218467135782 -14927.0,0.016476492909438225 -14928.0,0.016470803113044098 -14929.0,0.01646511528149669 -14930.0,0.01645942941411748 -14931.0,0.016453745510228192 -14932.0,0.01644806356915077 -14933.0,0.01644238359020742 -14934.0,0.01643670557272053 -14935.0,0.01643102951601277 -14936.0,0.016425355419407026 -14937.0,0.01641968328222642 -14938.0,0.01641401310379431 -14939.0,0.016408344883434286 -14940.0,0.016402678620470165 -14941.0,0.01639701431422602 -14942.0,0.016391351964026114 -14943.0,0.01638569156919498 -14944.0,0.01638003312905738 -14945.0,0.0163743766429383 -14946.0,0.01636872211016296 -14947.0,0.01636306953005682 -14948.0,0.016357418901945565 -14949.0,0.01635177022515512 -14950.0,0.01634612349901165 -14951.0,0.01634047872284151 -14952.0,0.01633483589597134 -14953.0,0.016329195017727994 -14954.0,0.01632355608743855 -14955.0,0.016317919104430322 -14956.0,0.016312284068030872 -14957.0,0.016306650977567966 -14958.0,0.016301019832369645 -14959.0,0.016295390631764117 -14960.0,0.016289763375079876 -14961.0,0.01628413806164563 -14962.0,0.01627851469079032 -14963.0,0.016272893261843127 -14964.0,0.016267273774133444 -14965.0,0.016261656226990915 -14966.0,0.016256040619745418 -14967.0,0.016250426951727025 -14968.0,0.01624481522226608 -14969.0,0.016239205430693144 -14970.0,0.01623359757633901 -14971.0,0.016227991658534703 -14972.0,0.01622238767661148 -14973.0,0.01621678562990082 -14974.0,0.016211185517734445 -14975.0,0.016205587339444317 -14976.0,0.01619999109436258 -14977.0,0.016194396781821666 -14978.0,0.016188804401154208 -14979.0,0.016183213951693077 -14980.0,0.016177625432771372 -14981.0,0.016172038843722425 -14982.0,0.016166454183879797 -14983.0,0.016160871452577292 -14984.0,0.016155290649148904 -14985.0,0.0161497117729289 -14986.0,0.016144134823251752 -14987.0,0.01613855979945218 -14988.0,0.016132986700865114 -14989.0,0.01612741552682574 -14990.0,0.01612184627666944 -14991.0,0.016116278949731853 -14992.0,0.01611071354534885 -14993.0,0.016105150062856493 -14994.0,0.01609958850159111 -14995.0,0.01609402886088925 -14996.0,0.01608847114008768 -14997.0,0.016082915338523414 -14998.0,0.016077361455533682 -14999.0,0.016071809490455946 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516202000_theo_VPR_VPR.png b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516202000_theo_VPR_VPR.png deleted file mode 100644 index e9e0189..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516202000_theo_VPR_VPR.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516202500_theo_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516202500_theo_VPR_VPR.csv deleted file mode 100644 index 35a1c4f..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516202500_theo_VPR_VPR.csv +++ /dev/null @@ -1,15008 +0,0 @@ -# Height Profile -# ============== -# -# Datatype (Unit) : normalized reflectivity (-) -# Fill value : -9999.0 -# Time : 2020-05-16 20:25:00 -# Sector specification: None -Altitude [m MSL],Znorm -0.0,1.0 -1.0,1.0 -2.0,1.0 -3.0,1.0 -4.0,1.0 -5.0,1.0 -6.0,1.0 -7.0,1.0 -8.0,1.0 -9.0,1.0 -10.0,1.0 -11.0,1.0 -12.0,1.0 -13.0,1.0 -14.0,1.0 -15.0,1.0 -16.0,1.0 -17.0,1.0 -18.0,1.0 -19.0,1.0 -20.0,1.0 -21.0,1.0 -22.0,1.0 -23.0,1.0 -24.0,1.0 -25.0,1.0 -26.0,1.0 -27.0,1.0 -28.0,1.0 -29.0,1.0 -30.0,1.0 -31.0,1.0 -32.0,1.0 -33.0,1.0 -34.0,1.0 -35.0,1.0 -36.0,1.0 -37.0,1.0 -38.0,1.0 -39.0,1.0 -40.0,1.0 -41.0,1.0 -42.0,1.0 -43.0,1.0 -44.0,1.0 -45.0,1.0 -46.0,1.0 -47.0,1.0 -48.0,1.0 -49.0,1.0 -50.0,1.0 -51.0,1.0 -52.0,1.0 -53.0,1.0 -54.0,1.0 -55.0,1.0 -56.0,1.0 -57.0,1.0 -58.0,1.0 -59.0,1.0 -60.0,1.0 -61.0,1.0 -62.0,1.0 -63.0,1.0 -64.0,1.0 -65.0,1.0 -66.0,1.0 -67.0,1.0 -68.0,1.0 -69.0,1.0 -70.0,1.0 -71.0,1.0 -72.0,1.0 -73.0,1.0 -74.0,1.0 -75.0,1.0 -76.0,1.0 -77.0,1.0 -78.0,1.0 -79.0,1.0 -80.0,1.0 -81.0,1.0 -82.0,1.0 -83.0,1.0 -84.0,1.0 -85.0,1.0 -86.0,1.0 -87.0,1.0 -88.0,1.0 -89.0,1.0 -90.0,1.0 -91.0,1.0 -92.0,1.0 -93.0,1.0 -94.0,1.0 -95.0,1.0 -96.0,1.0 -97.0,1.0 -98.0,1.0 -99.0,1.0 -100.0,1.0 -101.0,1.0 -102.0,1.0 -103.0,1.0 -104.0,1.0 -105.0,1.0 -106.0,1.0 -107.0,1.0 -108.0,1.0 -109.0,1.0 -110.0,1.0 -111.0,1.0 -112.0,1.0 -113.0,1.0 -114.0,1.0 -115.0,1.0 -116.0,1.0 -117.0,1.0 -118.0,1.0 -119.0,1.0 -120.0,1.0 -121.0,1.0 -122.0,1.0 -123.0,1.0 -124.0,1.0 -125.0,1.0 -126.0,1.0 -127.0,1.0 -128.0,1.0 -129.0,1.0 -130.0,1.0 -131.0,1.0 -132.0,1.0 -133.0,1.0 -134.0,1.0 -135.0,1.0 -136.0,1.0 -137.0,1.0 -138.0,1.0 -139.0,1.0 -140.0,1.0 -141.0,1.0 -142.0,1.0 -143.0,1.0 -144.0,1.0 -145.0,1.0 -146.0,1.0 -147.0,1.0 -148.0,1.0 -149.0,1.0 -150.0,1.0 -151.0,1.0 -152.0,1.0 -153.0,1.0 -154.0,1.0 -155.0,1.0 -156.0,1.0 -157.0,1.0 -158.0,1.0 -159.0,1.0 -160.0,1.0 -161.0,1.0 -162.0,1.0 -163.0,1.0 -164.0,1.0 -165.0,1.0 -166.0,1.0 -167.0,1.0 -168.0,1.0 -169.0,1.0 -170.0,1.0 -171.0,1.0 -172.0,1.0 -173.0,1.0 -174.0,1.0 -175.0,1.0 -176.0,1.0 -177.0,1.0 -178.0,1.0 -179.0,1.0 -180.0,1.0 -181.0,1.0 -182.0,1.0 -183.0,1.0 -184.0,1.0 -185.0,1.0 -186.0,1.0 -187.0,1.0 -188.0,1.0 -189.0,1.0 -190.0,1.0 -191.0,1.0 -192.0,1.0 -193.0,1.0 -194.0,1.0 -195.0,1.0 -196.0,1.0 -197.0,1.0 -198.0,1.0 -199.0,1.0 -200.0,1.0 -201.0,1.0 -202.0,1.0 -203.0,1.0 -204.0,1.0 -205.0,1.0 -206.0,1.0 -207.0,1.0 -208.0,1.0 -209.0,1.0 -210.0,1.0 -211.0,1.0 -212.0,1.0 -213.0,1.0 -214.0,1.0 -215.0,1.0 -216.0,1.0 -217.0,1.0 -218.0,1.0 -219.0,1.0 -220.0,1.0 -221.0,1.0 -222.0,1.0 -223.0,1.0 -224.0,1.0 -225.0,1.0 -226.0,1.0 -227.0,1.0 -228.0,1.0 -229.0,1.0 -230.0,1.0 -231.0,1.0 -232.0,1.0 -233.0,1.0 -234.0,1.0 -235.0,1.0 -236.0,1.0 -237.0,1.0 -238.0,1.0 -239.0,1.0 -240.0,1.0 -241.0,1.0 -242.0,1.0 -243.0,1.0 -244.0,1.0 -245.0,1.0 -246.0,1.0 -247.0,1.0 -248.0,1.0 -249.0,1.0 -250.0,1.0 -251.0,1.0 -252.0,1.0 -253.0,1.0 -254.0,1.0 -255.0,1.0 -256.0,1.0 -257.0,1.0 -258.0,1.0 -259.0,1.0 -260.0,1.0 -261.0,1.0 -262.0,1.0 -263.0,1.0 -264.0,1.0 -265.0,1.0 -266.0,1.0 -267.0,1.0 -268.0,1.0 -269.0,1.0 -270.0,1.0 -271.0,1.0 -272.0,1.0 -273.0,1.0 -274.0,1.0 -275.0,1.0 -276.0,1.0 -277.0,1.0 -278.0,1.0 -279.0,1.0 -280.0,1.0 -281.0,1.0 -282.0,1.0 -283.0,1.0 -284.0,1.0 -285.0,1.0 -286.0,1.0 -287.0,1.0 -288.0,1.0 -289.0,1.0 -290.0,1.0 -291.0,1.0 -292.0,1.0 -293.0,1.0 -294.0,1.0 -295.0,1.0 -296.0,1.0 -297.0,1.0 -298.0,1.0 -299.0,1.0 -300.0,1.0 -301.0,1.0 -302.0,1.0 -303.0,1.0 -304.0,1.0 -305.0,1.0 -306.0,1.0 -307.0,1.0 -308.0,1.0 -309.0,1.0 -310.0,1.0 -311.0,1.0 -312.0,1.0 -313.0,1.0 -314.0,1.0 -315.0,1.0 -316.0,1.0 -317.0,1.0 -318.0,1.0 -319.0,1.0 -320.0,1.0 -321.0,1.0 -322.0,1.0 -323.0,1.0 -324.0,1.0 -325.0,1.0 -326.0,1.0 -327.0,1.0 -328.0,1.0 -329.0,1.0 -330.0,1.0 -331.0,1.0 -332.0,1.0 -333.0,1.0 -334.0,1.0 -335.0,1.0 -336.0,1.0 -337.0,1.0 -338.0,1.0 -339.0,1.0 -340.0,1.0 -341.0,1.0 -342.0,1.0 -343.0,1.0 -344.0,1.0 -345.0,1.0 -346.0,1.0 -347.0,1.0 -348.0,1.0 -349.0,1.0 -350.0,1.0 -351.0,1.0 -352.0,1.0 -353.0,1.0 -354.0,1.0 -355.0,1.0 -356.0,1.0 -357.0,1.0 -358.0,1.0 -359.0,1.0 -360.0,1.0 -361.0,1.0 -362.0,1.0 -363.0,1.0 -364.0,1.0 -365.0,1.0 -366.0,1.0 -367.0,1.0 -368.0,1.0 -369.0,1.0 -370.0,1.0 -371.0,1.0 -372.0,1.0 -373.0,1.0 -374.0,1.0 -375.0,1.0 -376.0,1.0 -377.0,1.0 -378.0,1.0 -379.0,1.0 -380.0,1.0 -381.0,1.0 -382.0,1.0 -383.0,1.0 -384.0,1.0 -385.0,1.0 -386.0,1.0 -387.0,1.0 -388.0,1.0 -389.0,1.0 -390.0,1.0 -391.0,1.0 -392.0,1.0 -393.0,1.0 -394.0,1.0 -395.0,1.0 -396.0,1.0 -397.0,1.0 -398.0,1.0 -399.0,1.0 -400.0,1.0 -401.0,1.0 -402.0,1.0 -403.0,1.0 -404.0,1.0 -405.0,1.0 -406.0,1.0 -407.0,1.0 -408.0,1.0 -409.0,1.0 -410.0,1.0 -411.0,1.0 -412.0,1.0 -413.0,1.0 -414.0,1.0 -415.0,1.0 -416.0,1.0 -417.0,1.0 -418.0,1.0 -419.0,1.0 -420.0,1.0 -421.0,1.0 -422.0,1.0 -423.0,1.0 -424.0,1.0 -425.0,1.0 -426.0,1.0 -427.0,1.0 -428.0,1.0 -429.0,1.0 -430.0,1.0 -431.0,1.0 -432.0,1.0 -433.0,1.0 -434.0,1.0 -435.0,1.0 -436.0,1.0 -437.0,1.0 -438.0,1.0 -439.0,1.0 -440.0,1.0 -441.0,1.0 -442.0,1.0 -443.0,1.0 -444.0,1.0 -445.0,1.0 -446.0,1.0 -447.0,1.0 -448.0,1.0 -449.0,1.0 -450.0,1.0 -451.0,1.0 -452.0,1.0 -453.0,1.0 -454.0,1.0 -455.0,1.0 -456.0,1.0 -457.0,1.0 -458.0,1.0 -459.0,1.0 -460.0,1.0 -461.0,1.0 -462.0,1.0 -463.0,1.0 -464.0,1.0 -465.0,1.0 -466.0,1.0 -467.0,1.0 -468.0,1.0 -469.0,1.0 -470.0,1.0 -471.0,1.0 -472.0,1.0 -473.0,1.0 -474.0,1.0 -475.0,1.0 -476.0,1.0 -477.0,1.0 -478.0,1.0 -479.0,1.0 -480.0,1.0 -481.0,1.0 -482.0,1.0 -483.0,1.0 -484.0,1.0 -485.0,1.0 -486.0,1.0 -487.0,1.0 -488.0,1.0 -489.0,1.0 -490.0,1.0 -491.0,1.0 -492.0,1.0 -493.0,1.0 -494.0,1.0 -495.0,1.0 -496.0,1.0 -497.0,1.0 -498.0,1.0 -499.0,1.0 -500.0,1.0 -501.0,1.0 -502.0,1.0 -503.0,1.0 -504.0,1.0 -505.0,1.0 -506.0,1.0 -507.0,1.0 -508.0,1.0 -509.0,1.0 -510.0,1.0 -511.0,1.0 -512.0,1.0 -513.0,1.0 -514.0,1.0 -515.0,1.0 -516.0,1.0 -517.0,1.0 -518.0,1.0 -519.0,1.0 -520.0,1.0 -521.0,1.0 -522.0,1.0 -523.0,1.0 -524.0,1.0 -525.0,1.0 -526.0,1.0 -527.0,1.0 -528.0,1.0 -529.0,1.0 -530.0,1.0 -531.0,1.0 -532.0,1.0 -533.0,1.0 -534.0,1.0 -535.0,1.0 -536.0,1.0 -537.0,1.0 -538.0,1.0 -539.0,1.0 -540.0,1.0 -541.0,1.0 -542.0,1.0 -543.0,1.0 -544.0,1.0 -545.0,1.0 -546.0,1.0 -547.0,1.0 -548.0,1.0 -549.0,1.0 -550.0,1.0 -551.0,1.0 -552.0,1.0 -553.0,1.0 -554.0,1.0 -555.0,1.0 -556.0,1.0 -557.0,1.0 -558.0,1.0 -559.0,1.0 -560.0,1.0 -561.0,1.0 -562.0,1.0 -563.0,1.0 -564.0,1.0 -565.0,1.0 -566.0,1.0 -567.0,1.0 -568.0,1.0 -569.0,1.0 -570.0,1.0 -571.0,1.0 -572.0,1.0 -573.0,1.0 -574.0,1.0 -575.0,1.0 -576.0,1.0 -577.0,1.0 -578.0,1.0 -579.0,1.0 -580.0,1.0 -581.0,1.0 -582.0,1.0 -583.0,1.0 -584.0,1.0 -585.0,1.0 -586.0,1.0 -587.0,1.0 -588.0,1.0 -589.0,1.0 -590.0,1.0 -591.0,1.0 -592.0,1.0 -593.0,1.0 -594.0,1.0 -595.0,1.0 -596.0,1.0 -597.0,1.0 -598.0,1.0 -599.0,1.0 -600.0,1.0 -601.0,1.0 -602.0,1.0 -603.0,1.0 -604.0,1.0 -605.0,1.0 -606.0,1.0 -607.0,1.0 -608.0,1.0 -609.0,1.0 -610.0,1.0 -611.0,1.0 -612.0,1.0 -613.0,1.0 -614.0,1.0 -615.0,1.0 -616.0,1.0 -617.0,1.0 -618.0,1.0 -619.0,1.0 -620.0,1.0 -621.0,1.0 -622.0,1.0 -623.0,1.0 -624.0,1.0 -625.0,1.0 -626.0,1.0 -627.0,1.0 -628.0,1.0 -629.0,1.0 -630.0,1.0 -631.0,1.0 -632.0,1.0 -633.0,1.0 -634.0,1.0 -635.0,1.0 -636.0,1.0 -637.0,1.0 -638.0,1.0 -639.0,1.0 -640.0,1.0 -641.0,1.0 -642.0,1.0 -643.0,1.0 -644.0,1.0 -645.0,1.0 -646.0,1.0 -647.0,1.0 -648.0,1.0 -649.0,1.0 -650.0,1.0 -651.0,1.0 -652.0,1.0 -653.0,1.0 -654.0,1.0 -655.0,1.0 -656.0,1.0 -657.0,1.0 -658.0,1.0 -659.0,1.0 -660.0,1.0 -661.0,1.0 -662.0,1.0 -663.0,1.0 -664.0,1.0 -665.0,1.0 -666.0,1.0 -667.0,1.0 -668.0,1.0 -669.0,1.0 -670.0,1.0 -671.0,1.0 -672.0,1.0 -673.0,1.0 -674.0,1.0 -675.0,1.0 -676.0,1.0 -677.0,1.0 -678.0,1.0 -679.0,1.0 -680.0,1.0 -681.0,1.0 -682.0,1.0 -683.0,1.0 -684.0,1.0 -685.0,1.0 -686.0,1.0 -687.0,1.0 -688.0,1.0 -689.0,1.0 -690.0,1.0 -691.0,1.0 -692.0,1.0 -693.0,1.0 -694.0,1.0 -695.0,1.0 -696.0,1.0 -697.0,1.0 -698.0,1.0 -699.0,1.0 -700.0,1.0 -701.0,1.0 -702.0,1.0 -703.0,1.0 -704.0,1.0 -705.0,1.0 -706.0,1.0 -707.0,1.0 -708.0,1.0 -709.0,1.0 -710.0,1.0 -711.0,1.0 -712.0,1.0 -713.0,1.0 -714.0,1.0 -715.0,1.0 -716.0,1.0 -717.0,1.0 -718.0,1.0 -719.0,1.0 -720.0,1.0 -721.0,1.0 -722.0,1.0 -723.0,1.0 -724.0,1.0 -725.0,1.0 -726.0,1.0 -727.0,1.0 -728.0,1.0 -729.0,1.0 -730.0,1.0 -731.0,1.0 -732.0,1.0 -733.0,1.0 -734.0,1.0 -735.0,1.0 -736.0,1.0 -737.0,1.0 -738.0,1.0 -739.0,1.0 -740.0,1.0 -741.0,1.0 -742.0,1.0 -743.0,1.0 -744.0,1.0 -745.0,1.0 -746.0,1.0 -747.0,1.0 -748.0,1.0 -749.0,1.0 -750.0,1.0 -751.0,1.0 -752.0,1.0 -753.0,1.0 -754.0,1.0 -755.0,1.0 -756.0,1.0 -757.0,1.0 -758.0,1.0 -759.0,1.0 -760.0,1.0 -761.0,1.0 -762.0,1.0 -763.0,1.0 -764.0,1.0 -765.0,1.0 -766.0,1.0 -767.0,1.0 -768.0,1.0 -769.0,1.0 -770.0,1.0 -771.0,1.0 -772.0,1.0 -773.0,1.0 -774.0,1.0 -775.0,1.0 -776.0,1.0 -777.0,1.0 -778.0,1.0 -779.0,1.0 -780.0,1.0 -781.0,1.0 -782.0,1.0 -783.0,1.0 -784.0,1.0 -785.0,1.0 -786.0,1.0 -787.0,1.0 -788.0,1.0 -789.0,1.0 -790.0,1.0 -791.0,1.0 -792.0,1.0 -793.0,1.0 -794.0,1.0 -795.0,1.0 -796.0,1.0 -797.0,1.0 -798.0,1.0 -799.0,1.0 -800.0,1.0 -801.0,1.0 -802.0,1.0 -803.0,1.0 -804.0,1.0 -805.0,1.0 -806.0,1.0 -807.0,1.0 -808.0,1.0 -809.0,1.0 -810.0,1.0 -811.0,1.0 -812.0,1.0 -813.0,1.0 -814.0,1.0 -815.0,1.0 -816.0,1.0 -817.0,1.0 -818.0,1.0 -819.0,1.0 -820.0,1.0 -821.0,1.0 -822.0,1.0 -823.0,1.0 -824.0,1.0 -825.0,1.0 -826.0,1.0 -827.0,1.0 -828.0,1.0 -829.0,1.0 -830.0,1.0 -831.0,1.0 -832.0,1.0 -833.0,1.0 -834.0,1.0 -835.0,1.0 -836.0,1.0 -837.0,1.0 -838.0,1.0 -839.0,1.0 -840.0,1.0 -841.0,1.0 -842.0,1.0 -843.0,1.0 -844.0,1.0 -845.0,1.0 -846.0,1.0 -847.0,1.0 -848.0,1.0 -849.0,1.0 -850.0,1.0 -851.0,1.0 -852.0,1.0 -853.0,1.0 -854.0,1.0 -855.0,1.0 -856.0,1.0 -857.0,1.0 -858.0,1.0 -859.0,1.0 -860.0,1.0 -861.0,1.0 -862.0,1.0 -863.0,1.0 -864.0,1.0 -865.0,1.0 -866.0,1.0 -867.0,1.0 -868.0,1.0 -869.0,1.0 -870.0,1.0 -871.0,1.0 -872.0,1.0 -873.0,1.0 -874.0,1.0 -875.0,1.0 -876.0,1.0 -877.0,1.0 -878.0,1.0 -879.0,1.0 -880.0,1.0 -881.0,1.0 -882.0,1.0 -883.0,1.0 -884.0,1.0 -885.0,1.0 -886.0,1.0 -887.0,1.0 -888.0,1.0 -889.0,1.0 -890.0,1.0 -891.0,1.0 -892.0,1.0 -893.0,1.0 -894.0,1.0 -895.0,1.0 -896.0,1.0 -897.0,1.0 -898.0,1.0 -899.0,1.0 -900.0,1.0 -901.0,1.0 -902.0,1.0 -903.0,1.0 -904.0,1.0 -905.0,1.0 -906.0,1.0 -907.0,1.0 -908.0,1.0 -909.0,1.0 -910.0,1.0 -911.0,1.0 -912.0,1.0 -913.0,1.0 -914.0,1.0 -915.0,1.0 -916.0,1.0 -917.0,1.0 -918.0,1.0 -919.0,1.0 -920.0,1.0 -921.0,1.0 -922.0,1.0 -923.0,1.0 -924.0,1.0 -925.0,1.0 -926.0,1.0 -927.0,1.0 -928.0,1.0 -929.0,1.0 -930.0,1.0 -931.0,1.0 -932.0,1.0 -933.0,1.0 -934.0,1.0 -935.0,1.0 -936.0,1.0 -937.0,1.0 -938.0,1.0 -939.0,1.0 -940.0,1.0 -941.0,1.0 -942.0,1.0 -943.0,1.0 -944.0,1.0 -945.0,1.0 -946.0,1.0 -947.0,1.0 -948.0,1.0 -949.0,1.0 -950.0,1.0 -951.0,1.0 -952.0,1.0 -953.0,1.0 -954.0,1.0 -955.0,1.0 -956.0,1.0 -957.0,1.0 -958.0,1.0 -959.0,1.0 -960.0,1.0 -961.0,1.0 -962.0,1.0 -963.0,1.0 -964.0,1.0 -965.0,1.0 -966.0,1.0 -967.0,1.0 -968.0,1.0 -969.0,1.0 -970.0,1.0 -971.0,1.0 -972.0,1.0 -973.0,1.0 -974.0,1.0 -975.0,1.0 -976.0,1.0 -977.0,1.0 -978.0,1.0 -979.0,1.0 -980.0,1.0 -981.0,1.0 -982.0,1.0 -983.0,1.0 -984.0,1.0 -985.0,1.0 -986.0,1.0 -987.0,1.0 -988.0,1.0 -989.0,1.0 -990.0,1.0 -991.0,1.0 -992.0,1.0 -993.0,1.0 -994.0,1.0 -995.0,1.0 -996.0,1.0 -997.0,1.0 -998.0,1.0 -999.0,1.0 -1000.0,1.0 -1001.0,1.0 -1002.0,1.0 -1003.0,1.0 -1004.0,1.0 -1005.0,1.0 -1006.0,1.0 -1007.0,1.0 -1008.0,1.0 -1009.0,1.0 -1010.0,1.0 -1011.0,1.0 -1012.0,1.0 -1013.0,1.0 -1014.0,1.0 -1015.0,1.0 -1016.0,1.0 -1017.0,1.0 -1018.0,1.0 -1019.0,1.0 -1020.0,1.0 -1021.0,1.0 -1022.0,1.0 -1023.0,1.0 -1024.0,1.0 -1025.0,1.0 -1026.0,1.0 -1027.0,1.0 -1028.0,1.0 -1029.0,1.0 -1030.0,1.0 -1031.0,1.0 -1032.0,1.0 -1033.0,1.0 -1034.0,1.0 -1035.0,1.0 -1036.0,1.0 -1037.0,1.0 -1038.0,1.0 -1039.0,1.0 -1040.0,1.0 -1041.0,1.0 -1042.0,1.0 -1043.0,1.0 -1044.0,1.0 -1045.0,1.0 -1046.0,1.0 -1047.0,1.0 -1048.0,1.0 -1049.0,1.0 -1050.0,1.0 -1051.0,1.0 -1052.0,1.0 -1053.0,1.0 -1054.0,1.0 -1055.0,1.0 -1056.0,1.0 -1057.0,1.0 -1058.0,1.0 -1059.0,1.0 -1060.0,1.0 -1061.0,1.0 -1062.0,1.0 -1063.0,1.0 -1064.0,1.0 -1065.0,1.0 -1066.0,1.0 -1067.0,1.0 -1068.0,1.0 -1069.0,1.0 -1070.0,1.0 -1071.0,1.0 -1072.0,1.0 -1073.0,1.0 -1074.0,1.0 -1075.0,1.0 -1076.0,1.0 -1077.0,1.0 -1078.0,1.0 -1079.0,1.0 -1080.0,1.0 -1081.0,1.0 -1082.0,1.0 -1083.0,1.0 -1084.0,1.0 -1085.0,1.0 -1086.0,1.0 -1087.0,1.0 -1088.0,1.0 -1089.0,1.0 -1090.0,1.0 -1091.0,1.0 -1092.0,1.0 -1093.0,1.0 -1094.0,1.0 -1095.0,1.0 -1096.0,1.0 -1097.0,1.0 -1098.0,1.0 -1099.0,1.0 -1100.0,1.0 -1101.0,1.0 -1102.0,1.0 -1103.0,1.0 -1104.0,1.0 -1105.0,1.0 -1106.0,1.0 -1107.0,1.0 -1108.0,1.0 -1109.0,1.0 -1110.0,1.0 -1111.0,1.0 -1112.0,1.0 -1113.0,1.0 -1114.0,1.0 -1115.0,1.0 -1116.0,1.0 -1117.0,1.0 -1118.0,1.0 -1119.0,1.0 -1120.0,1.0 -1121.0,1.0 -1122.0,1.0 -1123.0,1.0 -1124.0,1.0 -1125.0,1.0 -1126.0,1.0 -1127.0,1.0 -1128.0,1.0 -1129.0,1.0 -1130.0,1.0 -1131.0,1.0 -1132.0,1.0 -1133.0,1.0 -1134.0,1.0 -1135.0,1.0 -1136.0,1.0 -1137.0,1.0 -1138.0,1.0 -1139.0,1.0 -1140.0,1.0 -1141.0,1.0 -1142.0,1.0 -1143.0,1.0 -1144.0,1.0 -1145.0,1.0 -1146.0,1.0 -1147.0,1.0 -1148.0,1.0 -1149.0,1.0 -1150.0,1.0 -1151.0,1.0 -1152.0,1.0 -1153.0,1.0 -1154.0,1.0 -1155.0,1.0 -1156.0,1.0 -1157.0,1.0 -1158.0,1.0 -1159.0,1.0 -1160.0,1.0 -1161.0,1.0 -1162.0,1.0 -1163.0,1.0 -1164.0,1.0 -1165.0,1.0 -1166.0,1.0 -1167.0,1.0 -1168.0,1.0 -1169.0,1.0 -1170.0,1.0 -1171.0,1.0 -1172.0,1.0 -1173.0,1.0 -1174.0,1.0 -1175.0,1.0 -1176.0,1.0 -1177.0,1.0 -1178.0,1.0 -1179.0,1.0 -1180.0,1.0 -1181.0,1.0 -1182.0,1.0 -1183.0,1.0 -1184.0,1.0 -1185.0,1.0 -1186.0,1.0 -1187.0,1.0 -1188.0,1.0 -1189.0,1.0 -1190.0,1.0 -1191.0,1.0 -1192.0,1.0 -1193.0,1.0 -1194.0,1.0 -1195.0,1.0 -1196.0,1.0 -1197.0,1.0 -1198.0,1.0 -1199.0,1.0 -1200.0,1.0 -1201.0,1.0 -1202.0,1.0 -1203.0,1.0 -1204.0,1.0 -1205.0,1.0 -1206.0,1.0 -1207.0,1.0 -1208.0,1.0 -1209.0,1.0 -1210.0,1.0 -1211.0,1.0 -1212.0,1.0 -1213.0,1.0 -1214.0,1.0 -1215.0,1.0 -1216.0,1.0 -1217.0,1.0 -1218.0,1.0 -1219.0,1.0 -1220.0,1.0 -1221.0,1.0 -1222.0,1.0 -1223.0,1.0 -1224.0,1.0 -1225.0,1.0 -1226.0,1.0 -1227.0,1.0 -1228.0,1.0 -1229.0,1.0 -1230.0,1.0 -1231.0,1.0 -1232.0,1.0 -1233.0,1.0 -1234.0,1.0 -1235.0,1.0 -1236.0,1.0 -1237.0,1.0 -1238.0,1.0 -1239.0,1.0 -1240.0,1.0 -1241.0,1.0 -1242.0,1.0 -1243.0,1.0 -1244.0,1.0 -1245.0,1.0 -1246.0,1.0 -1247.0,1.0 -1248.0,1.0 -1249.0,1.0 -1250.0,1.0 -1251.0,1.0 -1252.0,1.0 -1253.0,1.0 -1254.0,1.0 -1255.0,1.0 -1256.0,1.0 -1257.0,1.0 -1258.0,1.0 -1259.0,1.0 -1260.0,1.0 -1261.0,1.0 -1262.0,1.0 -1263.0,1.0 -1264.0,1.0 -1265.0,1.0 -1266.0,1.0 -1267.0,1.0 -1268.0,1.0 -1269.0,1.0 -1270.0,1.0 -1271.0,1.0 -1272.0,1.0 -1273.0,1.0 -1274.0,1.0 -1275.0,1.0 -1276.0,1.0 -1277.0,1.0 -1278.0,1.0 -1279.0,1.0 -1280.0,1.0 -1281.0,1.0 -1282.0,1.0 -1283.0,1.0 -1284.0,1.0 -1285.0,1.0 -1286.0,1.0 -1287.0,1.0 -1288.0,1.0 -1289.0,1.0 -1290.0,1.0 -1291.0,1.0 -1292.0,1.0 -1293.0,1.0 -1294.0,1.0 -1295.0,1.0 -1296.0,1.0 -1297.0,1.0 -1298.0,1.0 -1299.0,1.0 -1300.0,1.0 -1301.0,1.0 -1302.0,1.0 -1303.0,1.0 -1304.0,1.0 -1305.0,1.0 -1306.0,1.0 -1307.0,1.0 -1308.0,1.0 -1309.0,1.0 -1310.0,1.0 -1311.0,1.0 -1312.0,1.0 -1313.0,1.0 -1314.0,1.0 -1315.0,1.0 -1316.0,1.0 -1317.0,1.0 -1318.0,1.0 -1319.0,1.0 -1320.0,1.0 -1321.0,1.0 -1322.0,1.0 -1323.0,1.0 -1324.0,1.0 -1325.0,1.0 -1326.0,1.0 -1327.0,1.0 -1328.0,1.0 -1329.0,1.0 -1330.0,1.0 -1331.0,1.0 -1332.0,1.0 -1333.0,1.0 -1334.0,1.0 -1335.0,1.0 -1336.0,1.0 -1337.0,1.0 -1338.0,1.0 -1339.0,1.0 -1340.0,1.0 -1341.0,1.0 -1342.0,1.0 -1343.0,1.0 -1344.0,1.0 -1345.0,1.0 -1346.0,1.0 -1347.0,1.0 -1348.0,1.0 -1349.0,1.0 -1350.0,1.0 -1351.0,1.0 -1352.0,1.0 -1353.0,1.0 -1354.0,1.0 -1355.0,1.0 -1356.0,1.0 -1357.0,1.0 -1358.0,1.0 -1359.0,1.0 -1360.0,1.0 -1361.0,1.0 -1362.0,1.0 -1363.0,1.0 -1364.0,1.0 -1365.0,1.0 -1366.0,1.0 -1367.0,1.0 -1368.0,1.0 -1369.0,1.0 -1370.0,1.0 -1371.0,1.0 -1372.0,1.0 -1373.0,1.0 -1374.0,1.0 -1375.0,1.0 -1376.0,1.0 -1377.0,1.0 -1378.0,1.0 -1379.0,1.0 -1380.0,1.0 -1381.0,1.0 -1382.0,1.0 -1383.0,1.0 -1384.0,1.0 -1385.0,1.0 -1386.0,1.0 -1387.0,1.0 -1388.0,1.0 -1389.0,1.0 -1390.0,1.0 -1391.0,1.0 -1392.0,1.0 -1393.0,1.0 -1394.0,1.0 -1395.0,1.0 -1396.0,1.0 -1397.0,1.0 -1398.0,1.0 -1399.0,1.0 -1400.0,1.0 -1401.0,1.0 -1402.0,1.0 -1403.0,1.0 -1404.0,1.0 -1405.0,1.0 -1406.0,1.0 -1407.0,1.0 -1408.0,1.0 -1409.0,1.0 -1410.0,1.0 -1411.0,1.0 -1412.0,1.0 -1413.0,1.0 -1414.0,1.0 -1415.0,1.0 -1416.0,1.0 -1417.0,1.0 -1418.0,1.0 -1419.0,1.0 -1420.0,1.0 -1421.0,1.0 -1422.0,1.0 -1423.0,1.0 -1424.0,1.0 -1425.0,1.0 -1426.0,1.0 -1427.0,1.0 -1428.0,1.0 -1429.0,1.0 -1430.0,1.0 -1431.0,1.0 -1432.0,1.0 -1433.0,1.0 -1434.0,1.0 -1435.0,1.0 -1436.0,1.0 -1437.0,1.0 -1438.0,1.0 -1439.0,1.0 -1440.0,1.0 -1441.0,1.0 -1442.0,1.0 -1443.0,1.0 -1444.0,1.0 -1445.0,1.0 -1446.0,1.0 -1447.0,1.0 -1448.0,1.0 -1449.0,1.0 -1450.0,1.0 -1451.0,1.0 -1452.0,1.0 -1453.0,1.0 -1454.0,1.0 -1455.0,1.0 -1456.0,1.0 -1457.0,1.0 -1458.0,1.0 -1459.0,1.0 -1460.0,1.0 -1461.0,1.0 -1462.0,1.0 -1463.0,1.0 -1464.0,1.0 -1465.0,1.0 -1466.0,1.0 -1467.0,1.0 -1468.0,1.0 -1469.0,1.0 -1470.0,1.0 -1471.0,1.0 -1472.0,1.0 -1473.0,1.0 -1474.0,1.0 -1475.0,1.0 -1476.0,1.0 -1477.0,1.0 -1478.0,1.0 -1479.0,1.0 -1480.0,1.0 -1481.0,1.0 -1482.0,1.0 -1483.0,1.0 -1484.0,1.0 -1485.0,1.0 -1486.0,1.0 -1487.0,1.0 -1488.0,1.0 -1489.0,1.0 -1490.0,1.0 -1491.0,1.0 -1492.0,1.0 -1493.0,1.0 -1494.0,1.0 -1495.0,1.0 -1496.0,1.0 -1497.0,1.0 -1498.0,1.0 -1499.0,1.0 -1500.0,1.0 -1501.0,1.0 -1502.0,1.0 -1503.0,1.0 -1504.0,1.0 -1505.0,1.0 -1506.0,1.0 -1507.0,1.0 -1508.0,1.0 -1509.0,1.0 -1510.0,1.0 -1511.0,1.0 -1512.0,1.0 -1513.0,1.0 -1514.0,1.0 -1515.0,1.0 -1516.0,1.0 -1517.0,1.0 -1518.0,1.0 -1519.0,1.0 -1520.0,1.0 -1521.0,1.0 -1522.0,1.0 -1523.0,1.0 -1524.0,1.0 -1525.0,1.0 -1526.0,1.0 -1527.0,1.0 -1528.0,1.0 -1529.0,1.0 -1530.0,1.0 -1531.0,1.0 -1532.0,1.0 -1533.0,1.0 -1534.0,1.0 -1535.0,1.0 -1536.0,1.0 -1537.0,1.0 -1538.0,1.0 -1539.0,1.0 -1540.0,1.0 -1541.0,1.0 -1542.0,1.0 -1543.0,1.0 -1544.0,1.0 -1545.0,1.0 -1546.0,1.0 -1547.0,1.0 -1548.0,1.0 -1549.0,1.0 -1550.0,1.0 -1551.0,1.0 -1552.0,1.0 -1553.0,1.0 -1554.0,1.0 -1555.0,1.0 -1556.0,1.0 -1557.0,1.0 -1558.0,1.0 -1559.0,1.0 -1560.0,1.0 -1561.0,1.0 -1562.0,1.0 -1563.0,1.0 -1564.0,1.0 -1565.0,1.0 -1566.0,1.0 -1567.0,1.0 -1568.0,1.0 -1569.0,1.0 -1570.0,1.0 -1571.0,1.0 -1572.0,1.0 -1573.0,1.0 -1574.0,1.0 -1575.0,1.0 -1576.0,1.0 -1577.0,1.0 -1578.0,1.0 -1579.0,1.0 -1580.0,1.0 -1581.0,1.0 -1582.0,1.0 -1583.0,1.0 -1584.0,1.0 -1585.0,1.0 -1586.0,1.0 -1587.0,1.0 -1588.0,1.0 -1589.0,1.0 -1590.0,1.0 -1591.0,1.0 -1592.0,1.0 -1593.0,1.0 -1594.0,1.0 -1595.0,1.0 -1596.0,1.0 -1597.0,1.0 -1598.0,1.0 -1599.0,1.0 -1600.0,1.0 -1601.0,1.0 -1602.0,1.0 -1603.0,1.0 -1604.0,1.0 -1605.0,1.0 -1606.0,1.0 -1607.0,1.0 -1608.0,1.0 -1609.0,1.0 -1610.0,1.0 -1611.0,1.0 -1612.0,1.0 -1613.0,1.0 -1614.0,1.0 -1615.0,1.0 -1616.0,1.0 -1617.0,1.0 -1618.0,1.0 -1619.0,1.0 -1620.0,1.0 -1621.0,1.0 -1622.0,1.0 -1623.0,1.0 -1624.0,1.0 -1625.0,1.0 -1626.0,1.0 -1627.0,1.0 -1628.0,1.0 -1629.0,1.0 -1630.0,1.0 -1631.0,1.0 -1632.0,1.0 -1633.0,1.0 -1634.0,1.0 -1635.0,1.0 -1636.0,1.0 -1637.0,1.0 -1638.0,1.0 -1639.0,1.0 -1640.0,1.0 -1641.0,1.0 -1642.0,1.0 -1643.0,1.0 -1644.0,1.0 -1645.0,1.0 -1646.0,1.0 -1647.0,1.0 -1648.0,1.0 -1649.0,1.0 -1650.0,1.0 -1651.0,1.0 -1652.0,1.0 -1653.0,1.0 -1654.0,1.0 -1655.0,1.0 -1656.0,1.0 -1657.0,1.0 -1658.0,1.0 -1659.0,1.0 -1660.0,1.0 -1661.0,1.0 -1662.0,1.0 -1663.0,1.0 -1664.0,1.0 -1665.0,1.0 -1666.0,1.0 -1667.0,1.0 -1668.0,1.0 -1669.0,1.0 -1670.0,1.0 -1671.0,1.0 -1672.0,1.0 -1673.0,1.0 -1674.0,1.0 -1675.0,1.0 -1676.0,1.0 -1677.0,1.0 -1678.0,1.0 -1679.0,1.0 -1680.0,1.0 -1681.0,1.0 -1682.0,1.0 -1683.0,1.0 -1684.0,1.0 -1685.0,1.0 -1686.0,1.0 -1687.0,1.0 -1688.0,1.0 -1689.0,1.0 -1690.0,1.0 -1691.0,1.0 -1692.0,1.0 -1693.0,1.0 -1694.0,1.0 -1695.0,1.0 -1696.0,1.0 -1697.0,1.0 -1698.0,1.0 -1699.0,1.0 -1700.0,1.0 -1701.0,1.0 -1702.0,1.0 -1703.0,1.0 -1704.0,1.0 -1705.0,1.0 -1706.0,1.0 -1707.0,1.0 -1708.0,1.0 -1709.0,1.0 -1710.0,1.0 -1711.0,1.0 -1712.0,1.0 -1713.0,1.0 -1714.0,1.0 -1715.0,1.0 -1716.0,1.0 -1717.0,1.0 -1718.0,1.0 -1719.0,1.0 -1720.0,1.0 -1721.0,1.0 -1722.0,1.0 -1723.0,1.0 -1724.0,1.0 -1725.0,1.0 -1726.0,1.0 -1727.0,1.0 -1728.0,1.0 -1729.0,1.0 -1730.0,1.0 -1731.0,1.0 -1732.0,1.0 -1733.0,1.0 -1734.0,1.0 -1735.0,1.0 -1736.0,1.0 -1737.0,1.0 -1738.0,1.0 -1739.0,1.0 -1740.0,1.0 -1741.0,1.0 -1742.0,1.0 -1743.0,1.0 -1744.0,1.0 -1745.0,1.0 -1746.0,1.0 -1747.0,1.0 -1748.0,1.0 -1749.0,1.0 -1750.0,1.0 -1751.0,1.0 -1752.0,1.0 -1753.0,1.0 -1754.0,1.0 -1755.0,1.0 -1756.0,1.0 -1757.0,1.0 -1758.0,1.0 -1759.0,1.0 -1760.0,1.0 -1761.0,1.0 -1762.0,1.0 -1763.0,1.0 -1764.0,1.0 -1765.0,1.0 -1766.0,1.0 -1767.0,1.0 -1768.0,1.0 -1769.0,1.0 -1770.0,1.0 -1771.0,1.0 -1772.0,1.0 -1773.0,1.0 -1774.0,1.0 -1775.0,1.0 -1776.0,1.0 -1777.0,1.0 -1778.0,1.0 -1779.0,1.0 -1780.0,1.0 -1781.0,1.0 -1782.0,1.0 -1783.0,1.0 -1784.0,1.0 -1785.0,1.0 -1786.0,1.0 -1787.0,1.0 -1788.0,1.0 -1789.0,1.0 -1790.0,1.0 -1791.0,1.0 -1792.0,1.0 -1793.0,1.0 -1794.0,1.0 -1795.0,1.0 -1796.0,1.0 -1797.0,1.0 -1798.0,1.0 -1799.0,1.0 -1800.0,1.0 -1801.0,1.0 -1802.0,1.0 -1803.0,1.0 -1804.0,1.0 -1805.0,1.0 -1806.0,1.0 -1807.0,1.0 -1808.0,1.0 -1809.0,1.0 -1810.0,1.0 -1811.0,1.0 -1812.0,1.0 -1813.0,1.0 -1814.0,1.0 -1815.0,1.0 -1816.0,1.0 -1817.0,1.0 -1818.0,1.0 -1819.0,1.0 -1820.0,1.0 -1821.0,1.0 -1822.0,1.0 -1823.0,1.0 -1824.0,1.0 -1825.0,1.0 -1826.0,1.0 -1827.0,1.0 -1828.0,1.0 -1829.0,1.0 -1830.0,1.0 -1831.0,1.0 -1832.0,1.0 -1833.0,1.0 -1834.0,1.0 -1835.0,1.0 -1836.0,1.0 -1837.0,1.0 -1838.0,1.0 -1839.0,1.0 -1840.0,1.0 -1841.0,1.0 -1842.0,1.0 -1843.0,1.0 -1844.0,1.0 -1845.0,1.0 -1846.0,1.0 -1847.0,1.0 -1848.0,1.0 -1849.0,1.0 -1850.0,1.0 -1851.0,1.0 -1852.0,1.0 -1853.0,1.0 -1854.0,1.0 -1855.0,1.0 -1856.0,1.0 -1857.0,1.0 -1858.0,1.0 -1859.0,1.0 -1860.0,1.0 -1861.0,1.0 -1862.0,1.0 -1863.0,1.0 -1864.0,1.0 -1865.0,1.0 -1866.0,1.0 -1867.0,1.0 -1868.0,1.0 -1869.0,1.0 -1870.0,1.0 -1871.0,1.0 -1872.0,1.0 -1873.0,1.0 -1874.0,1.0 -1875.0,1.0 -1876.0,1.0 -1877.0,1.0 -1878.0,1.0 -1879.0,1.0 -1880.0,1.0 -1881.0,1.0 -1882.0,1.0 -1883.0,1.0 -1884.0,1.0 -1885.0,1.0 -1886.0,1.0 -1887.0,1.0 -1888.0,1.0 -1889.0,1.0 -1890.0,1.0 -1891.0,1.0 -1892.0,1.0 -1893.0,1.0 -1894.0,1.0 -1895.0,1.0 -1896.0,1.0 -1897.0,1.0 -1898.0,1.0 -1899.0,1.0 -1900.0,1.0 -1901.0,1.0 -1902.0,1.0 -1903.0,1.0 -1904.0,1.0 -1905.0,1.0 -1906.0,1.0 -1907.0,1.0 -1908.0,1.0 -1909.0,1.0 -1910.0,1.0 -1911.0,1.0 -1912.0,1.0 -1913.0,1.0 -1914.0,1.0 -1915.0,1.0 -1916.0,1.0 -1917.0,1.0 -1918.0,1.0 -1919.0,1.0 -1920.0,1.0 -1921.0,1.0 -1922.0,1.0 -1923.0,1.0 -1924.0,1.0 -1925.0,1.0 -1926.0,1.0 -1927.0,1.0 -1928.0,1.0 -1929.0,1.0 -1930.0,1.0 -1931.0,1.0 -1932.0,1.0 -1933.0,1.0 -1934.0,1.0 -1935.0,1.0 -1936.0,1.0 -1937.0,1.0 -1938.0,1.0 -1939.0,1.0 -1940.0,1.0 -1941.0,1.0 -1942.0,1.0 -1943.0,1.0 -1944.0,1.0 -1945.0,1.0 -1946.0,1.0 -1947.0,1.0 -1948.0,1.0 -1949.0,1.0 -1950.0,1.0 -1951.0,1.0 -1952.0,1.0 -1953.0,1.0 -1954.0,1.0 -1955.0,1.0 -1956.0,1.0 -1957.0,1.0 -1958.0,1.0 -1959.0,1.0 -1960.0,1.0 -1961.0,1.0 -1962.0,1.0 -1963.0,1.0 -1964.0,1.0 -1965.0,1.0 -1966.0,1.0 -1967.0,1.0 -1968.0,1.0 -1969.0,1.0 -1970.0,1.0 -1971.0,1.0 -1972.0,1.0 -1973.0,1.0 -1974.0,1.0 -1975.0,1.0 -1976.0,1.0 -1977.0,1.0 -1978.0,1.0 -1979.0,1.0 -1980.0,1.0 -1981.0,1.0 -1982.0,1.0 -1983.0,1.0 -1984.0,1.0 -1985.0,1.0 -1986.0,1.0 -1987.0,1.0 -1988.0,1.0 -1989.0,1.0 -1990.0,1.0 -1991.0,1.0 -1992.0,1.0 -1993.0,1.0 -1994.0,1.0 -1995.0,1.0 -1996.0,1.0 -1997.0,1.0 -1998.0,1.0 -1999.0,1.0 -2000.0,1.0 -2001.0,1.0 -2002.0,1.0 -2003.0,1.0 -2004.0,1.0 -2005.0,1.0 -2006.0,1.0 -2007.0,1.0 -2008.0,1.0 -2009.0,1.0 -2010.0,1.0 -2011.0,1.0 -2012.0,1.0 -2013.0,1.0 -2014.0,1.0 -2015.0,1.0 -2016.0,1.0 -2017.0,1.0 -2018.0,1.0 -2019.0,1.0 -2020.0,1.0 -2021.0,1.0 -2022.0,1.0 -2023.0,1.0 -2024.0,1.0 -2025.0,1.0 -2026.0,1.0 -2027.0,1.0 -2028.0,1.0 -2029.0,1.0 -2030.0,1.0 -2031.0,1.0 -2032.0,1.0 -2033.0,1.0 -2034.0,1.0 -2035.0,1.0 -2036.0,1.0 -2037.0,1.0 -2038.0,1.0 -2039.0,1.0 -2040.0,1.0 -2041.0,1.0 -2042.0,1.0 -2043.0,1.0 -2044.0,1.0 -2045.0,1.0 -2046.0,1.0 -2047.0,1.0 -2048.0,1.0 -2049.0,1.0 -2050.0,1.0 -2051.0,1.0 -2052.0,1.0 -2053.0,1.0 -2054.0,1.0 -2055.0,1.0 -2056.0,1.0 -2057.0,1.0 -2058.0,1.0 -2059.0,1.0 -2060.0,1.0 -2061.0,1.0 -2062.0,1.0 -2063.0,1.0 -2064.0,1.0 -2065.0,1.0 -2066.0,1.0 -2067.0,1.0 -2068.0,1.0 -2069.0,1.0 -2070.0,1.0 -2071.0,1.0 -2072.0,1.0 -2073.0,1.0 -2074.0,1.0 -2075.0,1.0 -2076.0,1.0 -2077.0,1.0 -2078.0,1.0 -2079.0,1.0 -2080.0,1.0 -2081.0,1.0 -2082.0,1.0 -2083.0,1.0 -2084.0,1.0 -2085.0,1.0 -2086.0,1.0 -2087.0,1.0 -2088.0,1.0 -2089.0,1.0 -2090.0,1.0 -2091.0,1.0 -2092.0,1.0 -2093.0,1.0 -2094.0,1.0 -2095.0,1.0 -2096.0,1.0 -2097.0,1.0 -2098.0,1.0 -2099.0,1.0 -2100.0,1.0 -2101.0,1.0 -2102.0,1.0 -2103.0,1.0 -2104.0,1.0 -2105.0,1.0 -2106.0,1.0 -2107.0,1.0 -2108.0,1.0 -2109.0,1.0 -2110.0,1.0 -2111.0,1.0 -2112.0,1.0 -2113.0,1.0 -2114.0,1.0 -2115.0,1.0 -2116.0,1.0 -2117.0,1.0 -2118.0,1.0 -2119.0,1.0 -2120.0,1.0 -2121.0,1.0 -2122.0,1.0 -2123.0,1.0 -2124.0,1.0 -2125.0,1.0 -2126.0,1.0 -2127.0,1.0 -2128.0,1.0 -2129.0,1.0 -2130.0,1.0 -2131.0,1.0 -2132.0,1.0 -2133.0,1.0 -2134.0,1.0 -2135.0,1.0 -2136.0,1.0 -2137.0,1.0 -2138.0,1.0 -2139.0,1.0 -2140.0,1.0 -2141.0,1.0 -2142.0,1.0 -2143.0,1.0 -2144.0,1.0 -2145.0,1.0 -2146.0,1.0 -2147.0,1.0 -2148.0,1.0 -2149.0,1.0 -2150.0,1.0 -2151.0,1.0 -2152.0,1.0 -2153.0,1.0 -2154.0,1.0 -2155.0,1.0 -2156.0,1.0 -2157.0,1.0 -2158.0,1.0 -2159.0,1.0 -2160.0,1.0 -2161.0,1.0 -2162.0,1.0 -2163.0,1.0 -2164.0,1.0 -2165.0,1.0 -2166.0,1.0 -2167.0,1.0 -2168.0,1.0 -2169.0,1.0 -2170.0,1.0 -2171.0,1.0 -2172.0,1.0 -2173.0,1.0 -2174.0,1.0 -2175.0,1.0 -2176.0,1.0 -2177.0,1.0 -2178.0,1.0 -2179.0,1.0 -2180.0,1.0 -2181.0,1.0 -2182.0,1.0 -2183.0,1.0 -2184.0,1.0 -2185.0,1.0 -2186.0,1.0 -2187.0,1.0 -2188.0,1.0 -2189.0,1.0 -2190.0,1.0 -2191.0,1.0 -2192.0,1.0 -2193.0,1.0 -2194.0,1.0 -2195.0,1.0 -2196.0,1.0 -2197.0,1.0 -2198.0,1.0 -2199.0,1.0 -2200.0,1.0 -2201.0,1.0 -2202.0,1.0 -2203.0,1.0 -2204.0,1.0 -2205.0,1.0 -2206.0,1.0 -2207.0,1.0 -2208.0,1.0 -2209.0,1.0 -2210.0,1.0 -2211.0,1.0 -2212.0,1.0 -2213.0,1.0 -2214.0,1.0 -2215.0,1.0 -2216.0,1.0 -2217.0,1.0 -2218.0,1.0 -2219.0,1.0 -2220.0,1.0 -2221.0,1.0 -2222.0,1.0 -2223.0,1.0 -2224.0,1.0 -2225.0,1.0 -2226.0,1.0 -2227.0,1.0 -2228.0,1.0 -2229.0,1.0 -2230.0,1.0 -2231.0,1.0 -2232.0,1.0 -2233.0,1.0 -2234.0,1.0 -2235.0,1.0 -2236.0,1.0 -2237.0,1.0 -2238.0,1.0 -2239.0,1.0 -2240.0,1.0 -2241.0,1.0 -2242.0,1.0 -2243.0,1.0 -2244.0,1.0 -2245.0,1.0 -2246.0,1.0 -2247.0,1.0 -2248.0,1.0 -2249.0,1.0 -2250.0,1.0 -2251.0,1.0 -2252.0,1.0 -2253.0,1.0 -2254.0,1.0 -2255.0,1.0 -2256.0,1.0 -2257.0,1.0 -2258.0,1.0 -2259.0,1.0 -2260.0,1.0 -2261.0,1.0 -2262.0,1.0 -2263.0,1.0 -2264.0,1.0 -2265.0,1.0 -2266.0,1.0 -2267.0,1.0 -2268.0,1.0 -2269.0,1.0 -2270.0,1.0 -2271.0,1.0 -2272.0,1.0 -2273.0,1.0 -2274.0,1.0 -2275.0,1.0 -2276.0,1.0 -2277.0,1.0 -2278.0,1.0 -2279.0,1.0 -2280.0,1.0 -2281.0,1.0 -2282.0,1.0 -2283.0,1.0 -2284.0,1.0 -2285.0,1.0 -2286.0,1.0 -2287.0,1.0 -2288.0,1.0 -2289.0,1.0 -2290.0,1.0 -2291.0,1.0 -2292.0,1.0 -2293.0,1.0 -2294.0,1.0 -2295.0,1.0 -2296.0,1.0 -2297.0,1.0 -2298.0,1.0 -2299.0,1.0 -2300.0,1.0 -2301.0,1.0 -2302.0,1.0 -2303.0,1.0 -2304.0,1.0 -2305.0,1.0 -2306.0,1.0 -2307.0,1.0 -2308.0,1.0 -2309.0,1.0 -2310.0,1.0 -2311.0,1.0 -2312.0,1.0 -2313.0,1.0 -2314.0,1.0 -2315.0,1.0 -2316.0,1.0 -2317.0,1.0 -2318.0,1.0 -2319.0,1.0 -2320.0,1.0 -2321.0,1.0 -2322.0,1.0 -2323.0,1.0 -2324.0,1.0 -2325.0,1.0 -2326.0,1.0 -2327.0,1.0 -2328.0,1.0 -2329.0,1.0 -2330.0,1.0 -2331.0,1.0 -2332.0,1.0 -2333.0,1.0 -2334.0,1.0 -2335.0,1.0 -2336.0,1.0 -2337.0,1.0 -2338.0,1.0 -2339.0,1.0 -2340.0,1.0 -2341.0,1.0 -2342.0,1.0 -2343.0,1.0 -2344.0,1.0 -2345.0,1.0 -2346.0,1.0 -2347.0,1.0 -2348.0,1.0 -2349.0,1.0 -2350.0,1.0 -2351.0,1.0 -2352.0,1.0 -2353.0,1.0 -2354.0,1.0 -2355.0,1.0 -2356.0,1.0 -2357.0,1.0 -2358.0,1.0 -2359.0,1.0 -2360.0,1.0 -2361.0,1.0 -2362.0,1.0 -2363.0,1.0 -2364.0,1.0 -2365.0,1.0 -2366.0,1.0 -2367.0,1.0 -2368.0,1.0 -2369.0,1.0 -2370.0,1.0 -2371.0,1.0 -2372.0,1.0 -2373.0,1.0 -2374.0,1.0 -2375.0,1.0 -2376.0,1.0 -2377.0,1.0 -2378.0,1.0 -2379.0,1.0 -2380.0,1.0 -2381.0,1.0 -2382.0,1.0 -2383.0,1.0 -2384.0,1.0 -2385.0,1.0 -2386.0,1.0 -2387.0,1.0 -2388.0,1.0 -2389.0,1.0 -2390.0,1.0 -2391.0,1.0 -2392.0,1.0 -2393.0,1.0 -2394.0,1.0 -2395.0,1.0 -2396.0,1.0 -2397.0,1.0 -2398.0,1.0 -2399.0,1.0 -2400.0,1.0 -2401.0,1.0 -2402.0,1.0 -2403.0,1.0 -2404.0,1.0 -2405.0,1.0 -2406.0,1.0 -2407.0,1.0 -2408.0,1.0 -2409.0,1.0 -2410.0,1.0 -2411.0,1.0 -2412.0,1.0 -2413.0,1.0 -2414.0,1.0 -2415.0,1.0 -2416.0,1.0 -2417.0,1.0 -2418.0,1.0 -2419.0,1.0 -2420.0,1.0 -2421.0,1.0 -2422.0,1.0 -2423.0,1.0 -2424.0,1.0 -2425.0,1.0 -2426.0,1.0 -2427.0,1.0 -2428.0,1.0 -2429.0,1.0 -2430.0,1.0 -2431.0,1.0 -2432.0,1.0 -2433.0,1.0 -2434.0,1.0 -2435.0,1.0 -2436.0,1.0 -2437.0,1.0 -2438.0,1.0 -2439.0,1.0 -2440.0,1.0 -2441.0,1.0 -2442.0,1.0 -2443.0,1.0 -2444.0,1.0 -2445.0,1.0 -2446.0,1.0 -2447.0,1.0 -2448.0,1.0 -2449.0,1.0 -2450.0,1.0 -2451.0,1.0 -2452.0,1.0 -2453.0,1.0 -2454.0,1.0 -2455.0,1.0 -2456.0,1.0 -2457.0,1.0 -2458.0,1.0 -2459.0,1.0 -2460.0,1.0 -2461.0,1.0 -2462.0,1.0 -2463.0,1.0 -2464.0,1.0 -2465.0,1.0 -2466.0,1.0 -2467.0,1.0 -2468.0,1.0 -2469.0,1.0 -2470.0,1.0 -2471.0,1.0 -2472.0,1.0 -2473.0,1.0 -2474.0,1.0 -2475.0,1.0 -2476.0,1.0 -2477.0,1.0 -2478.0,1.0 -2479.0,1.0 -2480.0,1.0 -2481.0,1.0 -2482.0,1.0 -2483.0,1.0 -2484.0,1.0 -2485.0,1.0 -2486.0,1.0 -2487.0,1.0 -2488.0,1.0 -2489.0,1.0 -2490.0,1.0 -2491.0,1.0 -2492.0,1.0 -2493.0,1.0 -2494.0,1.0 -2495.0,1.0 -2496.0,1.0 -2497.0,1.0 -2498.0,1.0 -2499.0,1.0 -2500.0,1.0 -2501.0,1.0 -2502.0,1.0 -2503.0,1.0 -2504.0,1.0 -2505.0,1.0 -2506.0,1.0 -2507.0,1.0 -2508.0,1.0 -2509.0,1.0 -2510.0,1.0 -2511.0,1.0 -2512.0,1.0 -2513.0,1.0 -2514.0,1.0 -2515.0,1.0 -2516.0,1.0 -2517.0,1.0 -2518.0,1.0 -2519.0,1.0 -2520.0,1.0 -2521.0,1.0 -2522.0,1.0 -2523.0,1.0 -2524.0,1.0 -2525.0,1.0 -2526.0,1.0 -2527.0,1.0 -2528.0,1.0 -2529.0,1.0 -2530.0,1.0 -2531.0,1.0 -2532.0,1.0 -2533.0,1.0 -2534.0,1.0 -2535.0,1.0 -2536.0,1.0 -2537.0,1.0 -2538.0,1.0 -2539.0,1.0 -2540.0,1.0 -2541.0,1.0 -2542.0,1.0 -2543.0,1.0 -2544.0,1.0 -2545.0,1.0 -2546.0,1.0 -2547.0,1.0 -2548.0,1.0 -2549.0,1.0 -2550.0,1.0 -2551.0,1.0 -2552.0,1.0 -2553.0,1.0 -2554.0,1.0 -2555.0,1.0 -2556.0,1.0 -2557.0,1.0 -2558.0,1.0 -2559.0,1.0 -2560.0,1.0 -2561.0,1.0 -2562.0,1.0 -2563.0,1.0 -2564.0,1.0 -2565.0,1.0 -2566.0,1.0 -2567.0,1.0 -2568.0,1.0 -2569.0,1.0 -2570.0,1.0 -2571.0,1.0 -2572.0,1.0 -2573.0,1.0 -2574.0,1.0 -2575.0,1.0 -2576.0,1.0 -2577.0,1.0 -2578.0,1.0 -2579.0,1.0 -2580.0,1.0 -2581.0,1.0 -2582.0,1.0 -2583.0,1.0 -2584.0,1.0 -2585.0,1.0 -2586.0,1.0 -2587.0,1.0 -2588.0,1.0 -2589.0,1.0 -2590.0,1.0 -2591.0,1.0 -2592.0,1.0 -2593.0,1.0 -2594.0,1.0 -2595.0,1.0 -2596.0,1.0 -2597.0,1.0 -2598.0,1.0 -2599.0,1.0 -2600.0,1.0 -2601.0,1.0 -2602.0,1.0 -2603.0,1.0 -2604.0,1.0 -2605.0,1.0 -2606.0,1.0 -2607.0,1.0 -2608.0,1.0 -2609.0,1.0 -2610.0,1.0 -2611.0,1.0 -2612.0,1.0 -2613.0,1.0 -2614.0,1.0 -2615.0,1.0 -2616.0,1.0 -2617.0,1.0 -2618.0,1.0 -2619.0,1.0 -2620.0,1.0 -2621.0,1.0 -2622.0,1.0 -2623.0,1.0 -2624.0,1.0 -2625.0,1.0 -2626.0,1.0 -2627.0,1.0 -2628.0,1.0 -2629.0,1.0 -2630.0,1.0 -2631.0,1.0 -2632.0,1.0 -2633.0,1.0 -2634.0,1.0 -2635.0,1.0 -2636.0,1.0 -2637.0,1.0 -2638.0,1.0 -2639.0,1.0 -2640.0,1.0 -2641.0,1.0 -2642.0,1.0 -2643.0,1.0 -2644.0,1.0 -2645.0,1.0 -2646.0,1.0 -2647.0,1.0 -2648.0,1.0 -2649.0,1.0 -2650.0,1.0 -2651.0,1.0 -2652.0,1.0 -2653.0,1.0 -2654.0,1.0 -2655.0,1.0 -2656.0,1.0 -2657.0,1.0 -2658.0,1.0 -2659.0,1.0 -2660.0,1.0 -2661.0,1.0 -2662.0,1.0 -2663.0,1.0 -2664.0,1.0 -2665.0,1.0 -2666.0,1.0 -2667.0,1.0 -2668.0,1.0 -2669.0,1.0 -2670.0,1.0 -2671.0,1.0 -2672.0,1.0 -2673.0,1.0 -2674.0,1.0 -2675.0,1.0 -2676.0,1.0 -2677.0,1.0 -2678.0,1.0 -2679.0,1.0 -2680.0,1.0 -2681.0,1.0 -2682.0,1.0 -2683.0,1.0 -2684.0,1.0 -2685.0,1.0 -2686.0,1.0 -2687.0,1.0 -2688.0,1.0 -2689.0,1.0 -2690.0,1.0 -2691.0,1.0 -2692.0,1.0 -2693.0,1.0 -2694.0,1.0 -2695.0,1.0 -2696.0,1.0 -2697.0,1.0 -2698.0,1.0 -2699.0,1.0 -2700.0,1.0 -2701.0,1.0 -2702.0,1.0 -2703.0,1.0 -2704.0,1.0 -2705.0,1.0 -2706.0,1.0 -2707.0,1.0 -2708.0,1.0 -2709.0,1.0 -2710.0,1.0 -2711.0,1.0 -2712.0,1.0 -2713.0,1.0 -2714.0,1.0 -2715.0,1.0 -2716.0,1.0 -2717.0,1.0 -2718.0,1.0 -2719.0,1.0 -2720.0,1.0 -2721.0,1.0 -2722.0,1.0 -2723.0,1.0 -2724.0,1.0 -2725.0,1.0 -2726.0,1.0 -2727.0,1.0 -2728.0,1.0 -2729.0,1.0 -2730.0,1.0 -2731.0,1.0 -2732.0,1.0 -2733.0,1.0 -2734.0,1.0 -2735.0,1.0 -2736.0,1.0 -2737.0,1.0 -2738.0,1.0 -2739.0,1.0 -2740.0,1.0 -2741.0,1.0 -2742.0,1.0 -2743.0,1.0 -2744.0,1.0 -2745.0,1.0 -2746.0,1.0 -2747.0,1.0 -2748.0,1.0 -2749.0,1.0 -2750.0,1.0 -2751.0,1.0 -2752.0,1.0 -2753.0,1.0 -2754.0,1.0 -2755.0,1.0 -2756.0,1.0 -2757.0,1.0 -2758.0,1.0 -2759.0,1.0 -2760.0,1.0 -2761.0,1.0 -2762.0,1.0 -2763.0,1.0 -2764.0,1.0 -2765.0,1.0 -2766.0,1.0 -2767.0,1.0 -2768.0,1.0 -2769.0,1.0 -2770.0,1.0 -2771.0,1.0 -2772.0,1.0 -2773.0,1.0 -2774.0,1.0 -2775.0,1.0 -2776.0,1.0 -2777.0,1.0 -2778.0,1.0 -2779.0,1.0 -2780.0,1.0 -2781.0,1.0 -2782.0,1.0 -2783.0,1.0 -2784.0,1.0 -2785.0,1.0 -2786.0,1.0 -2787.0,1.0 -2788.0,1.0 -2789.0,1.0 -2790.0,1.0 -2791.0,1.0039496065164257 -2792.0,1.0539496065164258 -2793.0,1.1039496065164258 -2794.0,1.1539496065164259 -2795.0,1.2039496065164257 -2796.0,1.2539496065164257 -2797.0,1.3039496065164258 -2798.0,1.3539496065164258 -2799.0,1.4039496065164259 -2800.0,1.4539496065164257 -2801.0,1.503949606516426 -2802.0,1.5539496065164258 -2803.0,1.6039496065164258 -2804.0,1.6539496065164259 -2805.0,1.7039496065164257 -2806.0,1.753949606516426 -2807.0,1.8039496065164258 -2808.0,1.8539496065164258 -2809.0,1.9039496065164259 -2810.0,1.9539496065164257 -2811.0,2.003949606516426 -2812.0,2.0539496065164258 -2813.0,2.1039496065164256 -2814.0,2.153949606516426 -2815.0,2.203949606516426 -2816.0,2.253949606516426 -2817.0,2.3039496065164258 -2818.0,2.3539496065164256 -2819.0,2.403949606516426 -2820.0,2.453949606516426 -2821.0,2.503949606516426 -2822.0,2.5539496065164258 -2823.0,2.6039496065164256 -2824.0,2.653949606516426 -2825.0,2.703949606516426 -2826.0,2.753949606516426 -2827.0,2.8039496065164258 -2828.0,2.8539496065164256 -2829.0,2.903949606516426 -2830.0,2.953949606516426 -2831.0,3.003949606516426 -2832.0,3.0539496065164258 -2833.0,3.103949606516426 -2834.0,3.153949606516426 -2835.0,3.2039496065164257 -2836.0,3.253949606516426 -2837.0,3.3039496065164258 -2838.0,3.353949606516426 -2839.0,3.403949606516426 -2840.0,3.453949606516426 -2841.0,3.503949606516426 -2842.0,3.5539496065164258 -2843.0,3.603949606516426 -2844.0,3.653949606516426 -2845.0,3.703949606516426 -2846.0,3.753949606516426 -2847.0,3.8039496065164258 -2848.0,3.853949606516426 -2849.0,3.903949606516426 -2850.0,3.953949606516426 -2851.0,4.003949606516426 -2852.0,4.053949606516426 -2853.0,4.1039496065164265 -2854.0,4.153949606516425 -2855.0,4.203949606516426 -2856.0,4.253949606516426 -2857.0,4.303949606516426 -2858.0,4.3539496065164265 -2859.0,4.403949606516425 -2860.0,4.453949606516426 -2861.0,4.503949606516426 -2862.0,4.553949606516426 -2863.0,4.6039496065164265 -2864.0,4.653949606516425 -2865.0,4.703949606516426 -2866.0,4.753949606516426 -2867.0,4.803949606516426 -2868.0,4.8539496065164265 -2869.0,4.903949606516425 -2870.0,4.953949606516426 -2871.0,5.003949606516426 -2872.0,5.053949606516426 -2873.0,5.103949606516426 -2874.0,5.153949606516426 -2875.0,5.203949606516426 -2876.0,5.253949606516426 -2877.0,5.303949606516426 -2878.0,5.353949606516426 -2879.0,5.403949606516426 -2880.0,5.453949606516426 -2881.0,5.503949606516426 -2882.0,5.553949606516426 -2883.0,5.603949606516426 -2884.0,5.653949606516426 -2885.0,5.703949606516426 -2886.0,5.753949606516426 -2887.0,5.803949606516426 -2888.0,5.8539496065164265 -2889.0,5.903949606516426 -2890.0,5.953949606516426 -2891.0,5.996050393483574 -2892.0,5.946050393483574 -2893.0,5.896050393483574 -2894.0,5.846050393483575 -2895.0,5.796050393483574 -2896.0,5.746050393483574 -2897.0,5.696050393483574 -2898.0,5.646050393483574 -2899.0,5.596050393483575 -2900.0,5.546050393483574 -2901.0,5.496050393483574 -2902.0,5.446050393483574 -2903.0,5.396050393483574 -2904.0,5.346050393483575 -2905.0,5.296050393483574 -2906.0,5.246050393483574 -2907.0,5.196050393483574 -2908.0,5.146050393483574 -2909.0,5.096050393483575 -2910.0,5.046050393483574 -2911.0,4.996050393483574 -2912.0,4.946050393483574 -2913.0,4.896050393483574 -2914.0,4.846050393483575 -2915.0,4.796050393483574 -2916.0,4.746050393483574 -2917.0,4.696050393483574 -2918.0,4.646050393483574 -2919.0,4.596050393483575 -2920.0,4.546050393483574 -2921.0,4.496050393483574 -2922.0,4.446050393483574 -2923.0,4.396050393483574 -2924.0,4.346050393483575 -2925.0,4.296050393483574 -2926.0,4.246050393483574 -2927.0,4.196050393483574 -2928.0,4.146050393483574 -2929.0,4.096050393483575 -2930.0,4.046050393483574 -2931.0,3.996050393483574 -2932.0,3.9460503934835742 -2933.0,3.896050393483574 -2934.0,3.846050393483574 -2935.0,3.7960503934835743 -2936.0,3.746050393483574 -2937.0,3.6960503934835742 -2938.0,3.646050393483574 -2939.0,3.596050393483574 -2940.0,3.546050393483574 -2941.0,3.496050393483574 -2942.0,3.4460503934835742 -2943.0,3.396050393483574 -2944.0,3.346050393483574 -2945.0,3.296050393483574 -2946.0,3.246050393483574 -2947.0,3.1960503934835742 -2948.0,3.146050393483574 -2949.0,3.096050393483574 -2950.0,3.046050393483574 -2951.0,2.996050393483574 -2952.0,2.9460503934835742 -2953.0,2.896050393483574 -2954.0,2.846050393483574 -2955.0,2.796050393483574 -2956.0,2.746050393483574 -2957.0,2.6960503934835742 -2958.0,2.646050393483574 -2959.0,2.596050393483574 -2960.0,2.546050393483574 -2961.0,2.496050393483574 -2962.0,2.4460503934835742 -2963.0,2.396050393483574 -2964.0,2.346050393483574 -2965.0,2.296050393483574 -2966.0,2.246050393483574 -2967.0,2.1960503934835742 -2968.0,2.146050393483574 -2969.0,2.096050393483574 -2970.0,2.046050393483574 -2971.0,1.996050393483574 -2972.0,1.9460503934835742 -2973.0,1.8960503934835744 -2974.0,1.8460503934835737 -2975.0,1.7960503934835739 -2976.0,1.746050393483574 -2977.0,1.6960503934835742 -2978.0,1.6460503934835744 -2979.0,1.5960503934835737 -2980.0,1.5460503934835739 -2981.0,1.496050393483574 -2982.0,1.4460503934835742 -2983.0,1.3960503934835744 -2984.0,1.3460503934835737 -2985.0,1.2960503934835739 -2986.0,1.246050393483574 -2987.0,1.1960503934835742 -2988.0,1.1460503934835735 -2989.0,1.0960503934835737 -2990.0,1.0460503934835739 -2991.0,0.9999727174569116 -2992.0,0.9996273987538793 -2993.0,0.999282199299107 -2994.0,0.9989371190514149 -2995.0,0.9985921579696376 -2996.0,0.9982473160126237 -2997.0,0.997902593139236 -2998.0,0.9975579893083517 -2999.0,0.9972135044788619 -3000.0,0.9968691386096723 -3001.0,0.9965248916597024 -3002.0,0.996180763587886 -3003.0,0.9958367543531712 -3004.0,0.9954928639145203 -3005.0,0.9951490922309096 -3006.0,0.9948054392613296 -3007.0,0.9944619049647851 -3008.0,0.9941184893002949 -3009.0,0.993775192226892 -3010.0,0.9934320137036237 -3011.0,0.993088953689551 -3012.0,0.9927460121437497 -3013.0,0.9924031890253091 -3014.0,0.992060484293333 -3015.0,0.9917178979069394 -3016.0,0.99137542982526 -3017.0,0.991033080007441 -3018.0,0.9906908484126423 -3019.0,0.9903487350000385 -3020.0,0.9900067397288178 -3021.0,0.9896648625581828 -3022.0,0.9893231034473497 -3023.0,0.9889814623555495 -3024.0,0.9886399392420268 -3025.0,0.9882985340660403 -3026.0,0.9879572467868629 -3027.0,0.9876160773637815 -3028.0,0.9872750257560972 -3029.0,0.9869340919231249 -3030.0,0.9865932758241936 -3031.0,0.9862525774186466 -3032.0,0.985911996665841 -3033.0,0.985571533525148 -3034.0,0.9852311879559528 -3035.0,0.9848909599176546 -3036.0,0.984550849369667 -3037.0,0.9842108562714168 -3038.0,0.9838709805823457 -3039.0,0.9835312222619087 -3040.0,0.9831915812695754 -3041.0,0.982852057564829 -3042.0,0.9825126511071667 -3043.0,0.9821733618560998 -3044.0,0.9818341897711537 -3045.0,0.9814951348118676 -3046.0,0.9811561969377945 -3047.0,0.980817376108502 -3048.0,0.9804786722835709 -3049.0,0.9801400854225963 -3050.0,0.9798016154851875 -3051.0,0.9794632624309674 -3052.0,0.9791250262195729 -3053.0,0.9787869068106548 -3054.0,0.9784489041638781 -3055.0,0.9781110182389215 -3056.0,0.9777732489954776 -3057.0,0.9774355963932531 -3058.0,0.9770980603919683 -3059.0,0.976760640951358 -3060.0,0.9764233380311701 -3061.0,0.9760861515911671 -3062.0,0.975749081591125 -3063.0,0.9754121279908338 -3064.0,0.9750752907500974 -3065.0,0.9747385698287335 -3066.0,0.9744019651865741 -3067.0,0.9740654767834642 -3068.0,0.9737291045792636 -3069.0,0.9733928485338453 -3070.0,0.9730567086070966 -3071.0,0.9727206847589184 -3072.0,0.9723847769492253 -3073.0,0.9720489851379462 -3074.0,0.9717133092850235 -3075.0,0.9713777493504135 -3076.0,0.9710423052940864 -3077.0,0.9707069770760262 -3078.0,0.9703717646562305 -3079.0,0.9700366679947111 -3080.0,0.9697016870514933 -3081.0,0.9693668217866164 -3082.0,0.9690320721601333 -3083.0,0.9686974381321108 -3084.0,0.9683629196626298 -3085.0,0.9680285167117842 -3086.0,0.9676942292396826 -3087.0,0.9673600572064468 -3088.0,0.9670260005722124 -3089.0,0.966692059297129 -3090.0,0.9663582333413598 -3091.0,0.9660245226650818 -3092.0,0.9656909272284857 -3093.0,0.9653574469917762 -3094.0,0.9650240819151712 -3095.0,0.964690831958903 -3096.0,0.9643576970832172 -3097.0,0.964024677248373 -3098.0,0.963691772414644 -3099.0,0.9633589825423168 -3100.0,0.9630263075916919 -3101.0,0.962693747523084 -3102.0,0.9623613022968207 -3103.0,0.9620289718732439 -3104.0,0.961696756212709 -3105.0,0.961364655275585 -3106.0,0.9610326690222548 -3107.0,0.9607007974131149 -3108.0,0.9603690404085753 -3109.0,0.9600373979690597 -3110.0,0.959705870055006 -3111.0,0.9593744566268648 -3112.0,0.9590431576451013 -3113.0,0.9587119730701937 -3114.0,0.9583809028626343 -3115.0,0.9580499469829288 -3116.0,0.9577191053915964 -3117.0,0.9573883780491702 -3118.0,0.957057764916197 -3119.0,0.9567272659532369 -3120.0,0.9563968811208639 -3121.0,0.9560666103796652 -3122.0,0.9557364536902423 -3123.0,0.9554064110132097 -3124.0,0.9550764823091956 -3125.0,0.9547466675388422 -3126.0,0.9544169666628048 -3127.0,0.9540873796417526 -3128.0,0.9537579064363683 -3129.0,0.953428547007348 -3130.0,0.9530993013154015 -3131.0,0.9527701693212525 -3132.0,0.9524411509856376 -3133.0,0.9521122462693075 -3134.0,0.9517834551330262 -3135.0,0.9514547775375712 -3136.0,0.951126213443734 -3137.0,0.950797762812319 -3138.0,0.9504694256041446 -3139.0,0.9501412017800424 -3140.0,0.9498130913008578 -3141.0,0.9494850941274496 -3142.0,0.9491572102206901 -3143.0,0.9488294395414651 -3144.0,0.9485017820506741 -3145.0,0.9481742377092299 -3146.0,0.9478468064780587 -3147.0,0.9475194883181006 -3148.0,0.9471922831903087 -3149.0,0.9468651910556499 -3150.0,0.9465382118751045 -3151.0,0.9462113456096662 -3152.0,0.9458845922203424 -3153.0,0.9455579516681536 -3154.0,0.9452314239141341 -3155.0,0.9449050089193314 -3156.0,0.9445787066448067 -3157.0,0.9442525170516345 -3158.0,0.9439264401009028 -3159.0,0.9436004757537128 -3160.0,0.9432746239711794 -3161.0,0.9429488847144311 -3162.0,0.9426232579446093 -3163.0,0.9422977436228692 -3164.0,0.9419723417103794 -3165.0,0.9416470521683216 -3166.0,0.9413218749578913 -3167.0,0.9409968100402972 -3168.0,0.9406718573767615 -3169.0,0.9403470169285195 -3170.0,0.9400222886568204 -3171.0,0.9396976725229262 -3172.0,0.9393731684881127 -3173.0,0.9390487765136689 -3174.0,0.9387244965608974 -3175.0,0.9384003285911136 -3176.0,0.9380762725656469 -3177.0,0.9377523284458397 -3178.0,0.9374284961930478 -3179.0,0.9371047757686404 -3180.0,0.936781167134 -3181.0,0.9364576702505224 -3182.0,0.9361342850796169 -3183.0,0.935811011582706 -3184.0,0.9354878497212255 -3185.0,0.9351647994566245 -3186.0,0.9348418607503653 -3187.0,0.9345190335639241 -3188.0,0.9341963178587895 -3189.0,0.9338737135964642 -3190.0,0.9335512207384637 -3191.0,0.9332288392463172 -3192.0,0.9329065690815666 -3193.0,0.9325844102057674 -3194.0,0.9322623625804888 -3195.0,0.9319404261673125 -3196.0,0.931618600927834 -3197.0,0.9312968868236619 -3198.0,0.9309752838164179 -3199.0,0.9306537918677373 -3200.0,0.9303324109392683 -3201.0,0.9300111409926727 -3202.0,0.929689981989625 -3203.0,0.9293689338918136 -3204.0,0.9290479966609397 -3205.0,0.9287271702587178 -3206.0,0.9284064546468757 -3207.0,0.9280858497871541 -3208.0,0.9277653556413077 -3209.0,0.9274449721711033 -3210.0,0.927124699338322 -3211.0,0.9268045371047573 -3212.0,0.9264844854322162 -3213.0,0.9261645442825189 -3214.0,0.9258447136174988 -3215.0,0.9255249933990024 -3216.0,0.9252053835888894 -3217.0,0.9248858841490327 -3218.0,0.9245664950413183 -3219.0,0.9242472162276454 -3220.0,0.9239280476699265 -3221.0,0.923608989330087 -3222.0,0.9232900411700655 -3223.0,0.922971203151814 -3224.0,0.9226524752372973 -3225.0,0.9223338573884936 -3226.0,0.922015349567394 -3227.0,0.9216969517360029 -3228.0,0.9213786638563377 -3229.0,0.9210604858904291 -3230.0,0.9207424178003206 -3231.0,0.9204244595480693 -3232.0,0.9201066110957448 -3233.0,0.9197888724054302 -3234.0,0.9194712434392215 -3235.0,0.919153724159228 -3236.0,0.9188363145275721 -3237.0,0.9185190145063888 -3238.0,0.9182018240578269 -3239.0,0.9178847431440476 -3240.0,0.9175677717272255 -3241.0,0.9172509097695484 -3242.0,0.9169341572332167 -3243.0,0.9166175140804445 -3244.0,0.9163009802734582 -3245.0,0.9159845557744979 -3246.0,0.9156682405458163 -3247.0,0.9153520345496794 -3248.0,0.915035937748366 -3249.0,0.9147199501041682 -3250.0,0.914404071579391 -3251.0,0.9140883021363522 -3252.0,0.9137726417373829 -3253.0,0.9134570903448272 -3254.0,0.9131416479210421 -3255.0,0.9128263144283976 -3256.0,0.9125110898292766 -3257.0,0.9121959740860753 -3258.0,0.9118809671612025 -3259.0,0.9115660690170804 -3260.0,0.9112512796161436 -3261.0,0.9109365989208403 -3262.0,0.9106220268936314 -3263.0,0.9103075634969906 -3264.0,0.9099932086934048 -3265.0,0.9096789624453737 -3266.0,0.90936482471541 -3267.0,0.9090507954660396 -3268.0,0.9087368746598008 -3269.0,0.9084230622592452 -3270.0,0.9081093582269374 -3271.0,0.9077957625254546 -3272.0,0.9074822751173873 -3273.0,0.9071688959653387 -3274.0,0.9068556250319249 -3275.0,0.906542462279775 -3276.0,0.9062294076715309 -3277.0,0.9059164611698476 -3278.0,0.9056036227373927 -3279.0,0.905290892336847 -3280.0,0.9049782699309039 -3281.0,0.90466575548227 -3282.0,0.9043533489536645 -3283.0,0.9040410503078196 -3284.0,0.9037288595074803 -3285.0,0.9034167765154045 -3286.0,0.9031048012943631 -3287.0,0.9027929338071398 -3288.0,0.9024811740165307 -3289.0,0.9021695218853455 -3290.0,0.9018579773764063 -3291.0,0.9015465404525479 -3292.0,0.9012352110766184 -3293.0,0.9009239892114783 -3294.0,0.9006128748200013 -3295.0,0.9003018678650736 -3296.0,0.8999909683095942 -3297.0,0.8996801761164753 -3298.0,0.8993694912486415 -3299.0,0.8990589136690305 -3300.0,0.8987484433405925 -3301.0,0.8984380802262907 -3302.0,0.8981278242891011 -3303.0,0.8978176754920124 -3304.0,0.897507633798026 -3305.0,0.8971976991701565 -3306.0,0.8968878715714306 -3307.0,0.8965781509648882 -3308.0,0.8962685373135821 -3309.0,0.8959590305805775 -3310.0,0.8956496307289524 -3311.0,0.8953403377217979 -3312.0,0.8950311515222175 -3313.0,0.8947220720933273 -3314.0,0.8944130993982568 -3315.0,0.8941042334001476 -3316.0,0.8937954740621541 -3317.0,0.8934868213474437 -3318.0,0.8931782752191965 -3319.0,0.892869835640605 -3320.0,0.8925615025748747 -3321.0,0.8922532759852236 -3322.0,0.8919451558348828 -3323.0,0.8916371420870955 -3324.0,0.8913292347051182 -3325.0,0.8910214336522194 -3326.0,0.890713738891681 -3327.0,0.8904061503867972 -3328.0,0.8900986681008749 -3329.0,0.8897912919972336 -3330.0,0.8894840220392057 -3331.0,0.8891768581901363 -3332.0,0.8888698004133826 -3333.0,0.888562848672315 -3334.0,0.8882560029303166 -3335.0,0.8879492631507827 -3336.0,0.8876426292971217 -3337.0,0.8873361013327541 -3338.0,0.8870296792211136 -3339.0,0.8867233629256462 -3340.0,0.8864171524098107 -3341.0,0.8861110476370782 -3342.0,0.8858050485709328 -3343.0,0.885499155174871 -3344.0,0.885193367412402 -3345.0,0.8848876852470474 -3346.0,0.8845821086423417 -3347.0,0.8842766375618317 -3348.0,0.8839712719690771 -3349.0,0.8836660118276499 -3350.0,0.8833608571011348 -3351.0,0.8830558077531291 -3352.0,0.8827508637472425 -3353.0,0.8824460250470977 -3354.0,0.8821412916163294 -3355.0,0.8818366634185852 -3356.0,0.8815321404175253 -3357.0,0.881227722576822 -3358.0,0.8809234098601608 -3359.0,0.8806192022312394 -3360.0,0.8803150996537678 -3361.0,0.8800111020914689 -3362.0,0.8797072095080781 -3363.0,0.8794034218673431 -3364.0,0.8790997391330243 -3365.0,0.8787961612688947 -3366.0,0.8784926882387395 -3367.0,0.8781893200063565 -3368.0,0.8778860565355564 -3369.0,0.8775828977901617 -3370.0,0.8772798437340081 -3371.0,0.8769768943309433 -3372.0,0.8766740495448277 -3373.0,0.876371309339534 -3374.0,0.8760686736789477 -3375.0,0.8757661425269664 -3376.0,0.8754637158475004 -3377.0,0.8751613936044724 -3378.0,0.8748591757618176 -3379.0,0.8745570622834835 -3380.0,0.8742550531334303 -3381.0,0.8739531482756305 -3382.0,0.873651347674069 -3383.0,0.8733496512927431 -3384.0,0.8730480590956629 -3385.0,0.8727465710468504 -3386.0,0.8724451871103402 -3387.0,0.8721439072501798 -3388.0,0.8718427314304282 -3389.0,0.8715416596151576 -3390.0,0.8712406917684524 -3391.0,0.8709398278544093 -3392.0,0.8706390678371372 -3393.0,0.8703384116807578 -3394.0,0.870037859349405 -3395.0,0.8697374108072251 -3396.0,0.8694370660183768 -3397.0,0.869136824947031 -3398.0,0.8688366875573714 -3399.0,0.8685366538135936 -3400.0,0.8682367236799058 -3401.0,0.8679368971205286 -3402.0,0.8676371740996948 -3403.0,0.8673375545816495 -3404.0,0.8670380385306505 -3405.0,0.8667386259109677 -3406.0,0.8664393166868832 -3407.0,0.8661401108226918 -3408.0,0.8658410082827003 -3409.0,0.8655420090312279 -3410.0,0.8652431130326063 -3411.0,0.8649443202511792 -3412.0,0.864645630651303 -3413.0,0.8643470441973461 -3414.0,0.8640485608536893 -3415.0,0.8637501805847257 -3416.0,0.8634519033548609 -3417.0,0.8631537291285123 -3418.0,0.8628556578701102 -3419.0,0.8625576895440966 -3420.0,0.8622598241149263 -3421.0,0.8619620615470659 -3422.0,0.8616644018049946 -3423.0,0.8613668448532038 -3424.0,0.861069390656197 -3425.0,0.8607720391784902 -3426.0,0.8604747903846116 -3427.0,0.8601776442391014 -3428.0,0.8598806007065123 -3429.0,0.8595836597514093 -3430.0,0.8592868213383692 -3431.0,0.8589900854319817 -3432.0,0.8586934519968482 -3433.0,0.8583969209975825 -3434.0,0.8581004923988106 -3435.0,0.8578041661651707 -3436.0,0.8575079422613134 -3437.0,0.8572118206519013 -3438.0,0.856915801301609 -3439.0,0.8566198841751238 -3440.0,0.8563240692371449 -3441.0,0.8560283564523837 -3442.0,0.8557327457855639 -3443.0,0.8554372372014213 -3444.0,0.8551418306647037 -3445.0,0.8548465261401714 -3446.0,0.8545513235925967 -3447.0,0.8542562229867642 -3448.0,0.8539612242874702 -3449.0,0.853666327459524 -3450.0,0.8533715324677462 -3451.0,0.85307683927697 -3452.0,0.8527822478520407 -3453.0,0.8524877581578156 -3454.0,0.8521933701591643 -3455.0,0.8518990838209685 -3456.0,0.8516048991081218 -3457.0,0.8513108159855303 -3458.0,0.8510168344181119 -3459.0,0.8507229543707969 -3460.0,0.8504291758085275 -3461.0,0.8501354986962579 -3462.0,0.8498419229989547 -3463.0,0.8495484486815964 -3464.0,0.8492550757091738 -3465.0,0.8489618040466895 -3466.0,0.8486686336591583 -3467.0,0.8483755645116072 -3468.0,0.8480825965690753 -3469.0,0.8477897297966133 -3470.0,0.8474969641592847 -3471.0,0.8472042996221645 -3472.0,0.84691173615034 -3473.0,0.8466192737089104 -3474.0,0.8463269122629873 -3475.0,0.846034651777694 -3476.0,0.8457424922181659 -3477.0,0.8454504335495505 -3478.0,0.8451584757370074 -3479.0,0.8448666187457082 -3480.0,0.8445748625408364 -3481.0,0.8442832070875875 -3482.0,0.8439916523511694 -3483.0,0.8437001982968015 -3484.0,0.8434088448897157 -3485.0,0.8431175920951554 -3486.0,0.8428264398783764 -3487.0,0.8425353882046464 -3488.0,0.8422444370392449 -3489.0,0.8419535863474638 -3490.0,0.8416628360946066 -3491.0,0.8413721862459888 -3492.0,0.841081636766938 -3493.0,0.8407911876227941 -3494.0,0.8405008387789084 -3495.0,0.8402105902006443 -3496.0,0.8399204418533773 -3497.0,0.8396303937024949 -3498.0,0.8393404457133965 -3499.0,0.8390505978514934 -3500.0,0.8387608500822088 -3501.0,0.8384712023709779 -3502.0,0.8381816546832479 -3503.0,0.8378922069844779 -3504.0,0.8376028592401387 -3505.0,0.8373136114157135 -3506.0,0.8370244634766969 -3507.0,0.8367354153885959 -3508.0,0.8364464671169289 -3509.0,0.8361576186272267 -3510.0,0.8358688698850317 -3511.0,0.8355802208558983 -3512.0,0.8352916715053927 -3513.0,0.8350032217990933 -3514.0,0.8347148717025898 -3515.0,0.8344266211814844 -3516.0,0.8341384702013908 -3517.0,0.8338504187279346 -3518.0,0.8335624667267536 -3519.0,0.8332746141634971 -3520.0,0.8329868610038264 -3521.0,0.8326992072134146 -3522.0,0.8324116527579468 -3523.0,0.8321241976031197 -3524.0,0.8318368417146421 -3525.0,0.8315495850582346 -3526.0,0.8312624275996294 -3527.0,0.8309753693045708 -3528.0,0.830688410138815 -3529.0,0.8304015500681295 -3530.0,0.8301147890582944 -3531.0,0.8298281270751008 -3532.0,0.8295415640843523 -3533.0,0.829255100051864 -3534.0,0.8289687349434627 -3535.0,0.8286824687249872 -3536.0,0.828396301362288 -3537.0,0.8281102328212274 -3538.0,0.8278242630676796 -3539.0,0.8275383920675305 -3540.0,0.8272526197866777 -3541.0,0.8269669461910306 -3542.0,0.8266813712465106 -3543.0,0.8263958949190505 -3544.0,0.8261105171745952 -3545.0,0.8258252379791011 -3546.0,0.8255400572985365 -3547.0,0.8252549750988816 -3548.0,0.8249699913461279 -3549.0,0.824685106006279 -3550.0,0.8244003190453503 -3551.0,0.8241156304293686 -3552.0,0.8238310401243728 -3553.0,0.8235465480964133 -3554.0,0.8232621543115521 -3555.0,0.8229778587358633 -3556.0,0.8226936613354324 -3557.0,0.8224095620763568 -3558.0,0.8221255609247455 -3559.0,0.8218416578467194 -3560.0,0.8215578528084105 -3561.0,0.8212741457759634 -3562.0,0.8209905367155336 -3563.0,0.8207070255932887 -3564.0,0.820423612375408 -3565.0,0.8201402970280821 -3566.0,0.8198570795175139 -3567.0,0.8195739598099173 -3568.0,0.8192909378715184 -3569.0,0.8190080136685547 -3570.0,0.8187251871672754 -3571.0,0.8184424583339412 -3572.0,0.8181598271348248 -3573.0,0.8178772935362104 -3574.0,0.8175948575043936 -3575.0,0.817312519005682 -3576.0,0.8170302780063946 -3577.0,0.8167481344728621 -3578.0,0.816466088371427 -3579.0,0.8161841396684429 -3580.0,0.8159022883302758 -3581.0,0.8156205343233026 -3582.0,0.8153388776139122 -3583.0,0.815057318168505 -3584.0,0.814775855953493 -3585.0,0.8144944909352998 -3586.0,0.8142132230803606 -3587.0,0.8139320523551222 -3588.0,0.8136509787260431 -3589.0,0.8133700021595931 -3590.0,0.8130891226222539 -3591.0,0.8128083400805184 -3592.0,0.8125276545008915 -3593.0,0.8122470658498894 -3594.0,0.8119665740940398 -3595.0,0.8116861791998823 -3596.0,0.8114058811339676 -3597.0,0.8111256798628583 -3598.0,0.8108455753531284 -3599.0,0.8105655675713636 -3600.0,0.8102856564841608 -3601.0,0.8100058420581289 -3602.0,0.8097261242598878 -3603.0,0.8094465030560695 -3604.0,0.8091669784133169 -3605.0,0.808887550298285 -3606.0,0.80860821867764 -3607.0,0.8083289835180596 -3608.0,0.8080498447862332 -3609.0,0.8077708024488616 -3610.0,0.8074918564726569 -3611.0,0.8072130068243429 -3612.0,0.8069342534706552 -3613.0,0.8066555963783402 -3614.0,0.8063770355141562 -3615.0,0.806098570844873 -3616.0,0.8058202023372718 -3617.0,0.8055419299581452 -3618.0,0.8052637536742974 -3619.0,0.804985673452544 -3620.0,0.8047076892597119 -3621.0,0.80442980106264 -3622.0,0.8041520088281778 -3623.0,0.803874312523187 -3624.0,0.8035967121145403 -3625.0,0.8033192075691221 -3626.0,0.8030417988538281 -3627.0,0.8027644859355655 -3628.0,0.8024872687812528 -3629.0,0.80221014735782 -3630.0,0.8019331216322088 -3631.0,0.8016561915713717 -3632.0,0.8013793571422732 -3633.0,0.8011026183118888 -3634.0,0.8008259750472058 -3635.0,0.8005494273152224 -3636.0,0.8002729750829486 -3637.0,0.7999966183174058 -3638.0,0.7997203569856264 -3639.0,0.7994441910546546 -3640.0,0.7991681204915458 -3641.0,0.7988921452633668 -3642.0,0.7986162653371958 -3643.0,0.7983404806801222 -3644.0,0.7980647912592469 -3645.0,0.7977891970416824 -3646.0,0.7975136979945521 -3647.0,0.797238294084991 -3648.0,0.7969629852801455 -3649.0,0.7966877715471732 -3650.0,0.7964126528532431 -3651.0,0.7961376291655358 -3652.0,0.7958627004512425 -3653.0,0.7955878666775665 -3654.0,0.7953131278117223 -3655.0,0.7950384838209351 -3656.0,0.7947639346724423 -3657.0,0.794489480333492 -3658.0,0.7942151207713438 -3659.0,0.7939408559532686 -3660.0,0.7936666858465486 -3661.0,0.7933926104184774 -3662.0,0.7931186296363598 -3663.0,0.7928447434675118 -3664.0,0.7925709518792607 -3665.0,0.7922972548389453 -3666.0,0.7920236523139156 -3667.0,0.7917501442715326 -3668.0,0.7914767306791689 -3669.0,0.7912034115042084 -3670.0,0.7909301867140458 -3671.0,0.7906570562760876 -3672.0,0.7903840201577513 -3673.0,0.7901110783264657 -3674.0,0.7898382307496706 -3675.0,0.7895654773948176 -3676.0,0.7892928182293691 -3677.0,0.7890202532207987 -3678.0,0.7887477823365916 -3679.0,0.7884754055442439 -3680.0,0.788203122811263 -3681.0,0.7879309341051677 -3682.0,0.7876588393934877 -3683.0,0.7873868386437642 -3684.0,0.7871149318235494 -3685.0,0.7868431189004069 -3686.0,0.7865713998419114 -3687.0,0.7862997746156487 -3688.0,0.7860282431892159 -3689.0,0.7857568055302213 -3690.0,0.7854854616062845 -3691.0,0.785214211385036 -3692.0,0.7849430548341176 -3693.0,0.7846719919211824 -3694.0,0.7844010226138945 -3695.0,0.7841301468799294 -3696.0,0.7838593646869734 -3697.0,0.7835886760027242 -3698.0,0.7833180807948906 -3699.0,0.7830475790311927 -3700.0,0.7827771706793615 -3701.0,0.7825068557071393 -3702.0,0.7822366340822794 -3703.0,0.7819665057725464 -3704.0,0.7816964707457161 -3705.0,0.7814265289695751 -3706.0,0.7811566804119213 -3707.0,0.7808869250405638 -3708.0,0.7806172628233228 -3709.0,0.7803476937280296 -3710.0,0.7800782177225263 -3711.0,0.7798088347746667 -3712.0,0.7795395448523152 -3713.0,0.7792703479233476 -3714.0,0.7790012439556505 -3715.0,0.7787322329171219 -3716.0,0.7784633147756707 -3717.0,0.7781944894992169 -3718.0,0.7779257570556916 -3719.0,0.777657117413037 -3720.0,0.7773885705392064 -3721.0,0.777120116402164 -3722.0,0.7768517549698852 -3723.0,0.7765834862103567 -3724.0,0.7763153100915756 -3725.0,0.7760472265815507 -3726.0,0.7757792356483015 -3727.0,0.7755113372598587 -3728.0,0.7752435313842638 -3729.0,0.7749758179895698 -3730.0,0.7747081970438402 -3731.0,0.7744406685151498 -3732.0,0.7741732323715845 -3733.0,0.7739058885812411 -3734.0,0.7736386371122275 -3735.0,0.7733714779326623 -3736.0,0.7731044110106755 -3737.0,0.772837436314408 -3738.0,0.7725705538120118 -3739.0,0.7723037634716494 -3740.0,0.772037065261495 -3741.0,0.7717704591497332 -3742.0,0.77150394510456 -3743.0,0.7712375230941821 -3744.0,0.7709711930868175 -3745.0,0.7707049550506948 -3746.0,0.7704388089540537 -3747.0,0.770172754765145 -3748.0,0.7699067924522304 -3749.0,0.7696409219835825 -3750.0,0.7693751433274848 -3751.0,0.7691094564522319 -3752.0,0.7688438613261295 -3753.0,0.7685783579174937 -3754.0,0.7683129461946522 -3755.0,0.768047626125943 -3756.0,0.7677823976797156 -3757.0,0.7675172608243301 -3758.0,0.7672522155281576 -3759.0,0.7669872617595801 -3760.0,0.7667223994869905 -3761.0,0.7664576286787927 -3762.0,0.7661929493034016 -3763.0,0.7659283613292429 -3764.0,0.7656638647247529 -3765.0,0.7653994594583794 -3766.0,0.7651351454985805 -3767.0,0.7648709228138256 -3768.0,0.764606791372595 -3769.0,0.7643427511433795 -3770.0,0.7640788020946812 -3771.0,0.7638149441950128 -3772.0,0.763551177412898 -3773.0,0.7632875017168714 -3774.0,0.7630239170754785 -3775.0,0.7627604234572752 -3776.0,0.762497020830829 -3777.0,0.7622337091647178 -3778.0,0.7619704884275305 -3779.0,0.7617073585878664 -3780.0,0.7614443196143366 -3781.0,0.761181371475562 -3782.0,0.7609185141401751 -3783.0,0.7606557475768189 -3784.0,0.760393071754147 -3785.0,0.7601304866408244 -3786.0,0.7598679922055265 -3787.0,0.7596055884169396 -3788.0,0.7593432752437609 -3789.0,0.7590810526546983 -3790.0,0.7588189206184704 -3791.0,0.7585568791038072 -3792.0,0.7582949280794486 -3793.0,0.7580330675141461 -3794.0,0.7577712973766614 -3795.0,0.7575096176357673 -3796.0,0.7572480282602474 -3797.0,0.7569865292188959 -3798.0,0.7567251204805179 -3799.0,0.7564638020139292 -3800.0,0.7562025737879564 -3801.0,0.755941435771437 -3802.0,0.7556803879332191 -3803.0,0.7554194302421616 -3804.0,0.7551585626671341 -3805.0,0.754897785177017 -3806.0,0.7546370977407014 -3807.0,0.7543765003270892 -3808.0,0.7541159929050932 -3809.0,0.7538555754436367 -3810.0,0.7535952479116537 -3811.0,0.753335010278089 -3812.0,0.7530748625118983 -3813.0,0.7528148045820476 -3814.0,0.7525548364575143 -3815.0,0.7522949581072857 -3816.0,0.7520351695003604 -3817.0,0.7517754706057476 -3818.0,0.7515158613924668 -3819.0,0.7512563418295489 -3820.0,0.7509969118860349 -3821.0,0.7507375715309766 -3822.0,0.7504783207334369 -3823.0,0.7502191594624887 -3824.0,0.7499600876872162 -3825.0,0.749701105376714 -3826.0,0.7494422125000872 -3827.0,0.7491834090264521 -3828.0,0.7489246949249351 -3829.0,0.7486660701646736 -3830.0,0.7484075347148154 -3831.0,0.7481490885445192 -3832.0,0.7478907316229544 -3833.0,0.7476324639193006 -3834.0,0.7473742854027486 -3835.0,0.7471161960424996 -3836.0,0.7468581958077651 -3837.0,0.7466002846677678 -3838.0,0.7463424625917409 -3839.0,0.7460847295489279 -3840.0,0.7458270855085831 -3841.0,0.7455695304399717 -3842.0,0.745312064312369 -3843.0,0.7450546870950612 -3844.0,0.7447973987573452 -3845.0,0.7445401992685282 -3846.0,0.7442830885979285 -3847.0,0.7440260667148743 -3848.0,0.7437691335887049 -3849.0,0.7435122891887701 -3850.0,0.7432555334844303 -3851.0,0.7429988664450563 -3852.0,0.7427422880400295 -3853.0,0.7424857982387422 -3854.0,0.7422293970105969 -3855.0,0.7419730843250067 -3856.0,0.7417168601513957 -3857.0,0.7414607244591979 -3858.0,0.7412046772178583 -3859.0,0.7409487183968323 -3860.0,0.740692847965586 -3861.0,0.7404370658935957 -3862.0,0.7401813721503487 -3863.0,0.7399257667053425 -3864.0,0.7396702495280851 -3865.0,0.7394148205880954 -3866.0,0.7391594798549024 -3867.0,0.738904227298046 -3868.0,0.7386490628870762 -3869.0,0.738393986591554 -3870.0,0.7381389983810505 -3871.0,0.7378840982251474 -3872.0,0.7376292860934371 -3873.0,0.7373745619555224 -3874.0,0.7371199257810165 -3875.0,0.7368653775395431 -3876.0,0.7366109172007365 -3877.0,0.7363565447342415 -3878.0,0.7361022601097132 -3879.0,0.7358480632968174 -3880.0,0.7355939542652303 -3881.0,0.7353399329846384 -3882.0,0.735085999424739 -3883.0,0.7348321535552395 -3884.0,0.734578395345858 -3885.0,0.734324724766323 -3886.0,0.7340711417863736 -3887.0,0.733817646375759 -3888.0,0.733564238504239 -3889.0,0.7333109181415841 -3890.0,0.7330576852575749 -3891.0,0.7328045398220026 -3892.0,0.7325514818046687 -3893.0,0.7322985111753854 -3894.0,0.732045627903975 -3895.0,0.7317928319602705 -3896.0,0.731540123314115 -3897.0,0.7312875019353624 -3898.0,0.7310349677938767 -3899.0,0.7307825208595324 -3900.0,0.7305301611022146 -3901.0,0.7302778884918184 -3902.0,0.7300257029982495 -3903.0,0.7297736045914243 -3904.0,0.729521593241269 -3905.0,0.7292696689177205 -3906.0,0.7290178315907263 -3907.0,0.7287660812302439 -3908.0,0.7285144178062413 -3909.0,0.7282628412886968 -3910.0,0.7280113516475993 -3911.0,0.7277599488529479 -3912.0,0.7275086328747522 -3913.0,0.7272574036830317 -3914.0,0.727006261247817 -3915.0,0.7267552055391482 -3916.0,0.7265042365270765 -3917.0,0.7262533541816631 -3918.0,0.7260025584729795 -3919.0,0.7257518493711075 -3920.0,0.7255012268461395 -3921.0,0.725250690868178 -3922.0,0.7250002414073358 -3923.0,0.7247498784337363 -3924.0,0.7244996019175128 -3925.0,0.7242494118288093 -3926.0,0.7239993081377799 -3927.0,0.723749290814589 -3928.0,0.7234993598294115 -3929.0,0.7232495151524323 -3930.0,0.7229997567538468 -3931.0,0.7227500846038606 -3932.0,0.7225004986726897 -3933.0,0.7222509989305603 -3934.0,0.722001585347709 -3935.0,0.7217522578943825 -3936.0,0.7215030165408377 -3937.0,0.7212538612573421 -3938.0,0.7210047920141732 -3939.0,0.720755808781619 -3940.0,0.7205069115299775 -3941.0,0.720258100229557 -3942.0,0.7200093748506764 -3943.0,0.7197607353636643 -3944.0,0.7195121817388599 -3945.0,0.7192637139466126 -3946.0,0.719015331957282 -3947.0,0.7187670357412379 -3948.0,0.7185188252688604 -3949.0,0.7182707005105398 -3950.0,0.7180226614366766 -3951.0,0.7177747080176816 -3952.0,0.7175268402239757 -3953.0,0.7172790580259901 -3954.0,0.7170313613941663 -3955.0,0.7167837502989558 -3956.0,0.7165362247108203 -3957.0,0.716288784600232 -3958.0,0.716041429937673 -3959.0,0.7157941606936356 -3960.0,0.7155469768386226 -3961.0,0.7152998783431466 -3962.0,0.7150528651777306 -3963.0,0.7148059373129076 -3964.0,0.7145590947192213 -3965.0,0.7143123373672248 -3966.0,0.7140656652274818 -3967.0,0.7138190782705662 -3968.0,0.713572576467062 -3969.0,0.7133261597875632 -3970.0,0.7130798282026742 -3971.0,0.7128335816830095 -3972.0,0.7125874201991934 -3973.0,0.712341343721861 -3974.0,0.7120953522216569 -3975.0,0.7118494456692362 -3976.0,0.7116036240352641 -3977.0,0.7113578872904158 -3978.0,0.7111122354053766 -3979.0,0.7108666683508422 -3980.0,0.7106211860975182 -3981.0,0.7103757886161204 -3982.0,0.7101304758773745 -3983.0,0.7098852478520166 -3984.0,0.7096401045107927 -3985.0,0.7093950458244591 -3986.0,0.7091500717637821 -3987.0,0.7089051822995379 -3988.0,0.7086603774025132 -3989.0,0.7084156570435044 -3990.0,0.7081710211933182 -3991.0,0.7079264698227713 -3992.0,0.7076820029026905 -3993.0,0.7074376204039128 -3994.0,0.7071933222972849 -3995.0,0.706949108553664 -3996.0,0.7067049791439173 -3997.0,0.7064609340389216 -3998.0,0.7062169732095644 -3999.0,0.7059730966267429 -4000.0,0.7057293042613643 -4001.0,0.705485596084346 -4002.0,0.7052419720666153 -4003.0,0.7049984321791098 -4004.0,0.704754976392777 -4005.0,0.7045116046785741 -4006.0,0.7042683170074688 -4007.0,0.7040251133504387 -4008.0,0.7037819936784714 -4009.0,0.7035389579625645 -4010.0,0.7032960061737255 -4011.0,0.703053138282972 -4012.0,0.7028103542613318 -4013.0,0.7025676540798423 -4014.0,0.7023250377095513 -4015.0,0.7020825051215166 -4016.0,0.7018400562868055 -4017.0,0.7015976911764957 -4018.0,0.7013554097616751 -4019.0,0.7011132120134409 -4020.0,0.7008710979029009 -4021.0,0.7006290674011726 -4022.0,0.7003871204793836 -4023.0,0.7001452571086713 -4024.0,0.6999034772601831 -4025.0,0.6996617809050765 -4026.0,0.6994201680145189 -4027.0,0.6991786385596876 -4028.0,0.6989371925117701 -4029.0,0.6986958298419634 -4030.0,0.6984545505214748 -4031.0,0.6982133545215214 -4032.0,0.6979722418133303 -4033.0,0.6977312123681385 -4034.0,0.697490266157193 -4035.0,0.6972494031517505 -4036.0,0.697008623323078 -4037.0,0.6967679266424521 -4038.0,0.6965273130811596 -4039.0,0.6962867826104968 -4040.0,0.6960463352017704 -4041.0,0.6958059708262967 -4042.0,0.6955656894554019 -4043.0,0.6953254910604223 -4044.0,0.6950853756127039 -4045.0,0.6948453430836027 -4046.0,0.6946053934444846 -4047.0,0.6943655266667254 -4048.0,0.6941257427217106 -4049.0,0.6938860415808359 -4050.0,0.6936464232155065 -4051.0,0.6934068875971379 -4052.0,0.693167434697155 -4053.0,0.6929280644869931 -4054.0,0.6926887769380968 -4055.0,0.692449572021921 -4056.0,0.6922104497099303 -4057.0,0.6919714099735992 -4058.0,0.6917324527844118 -4059.0,0.6914935781138624 -4060.0,0.6912547859334549 -4061.0,0.6910160762147033 -4062.0,0.6907774489291311 -4063.0,0.6905389040482718 -4064.0,0.690300441543669 -4065.0,0.6900620613868755 -4066.0,0.6898237635494545 -4067.0,0.6895855480029788 -4068.0,0.6893474147190309 -4069.0,0.6891093636692035 -4070.0,0.6888713948250985 -4071.0,0.6886335081583281 -4072.0,0.6883957036405143 -4073.0,0.6881579812432885 -4074.0,0.6879203409382924 -4075.0,0.687682782697177 -4076.0,0.6874453064916035 -4077.0,0.6872079122932426 -4078.0,0.6869706000737751 -4079.0,0.6867333698048913 -4080.0,0.6864962214582911 -4081.0,0.6862591550056849 -4082.0,0.686022170418792 -4083.0,0.685785267669342 -4084.0,0.6855484467290742 -4085.0,0.6853117075697376 -4086.0,0.6850750501630908 -4087.0,0.6848384744809024 -4088.0,0.6846019804949507 -4089.0,0.6843655681770235 -4090.0,0.6841292374989187 -4091.0,0.6838929884324437 -4092.0,0.6836568209494157 -4093.0,0.6834207350216618 -4094.0,0.6831847306210184 -4095.0,0.6829488077193321 -4096.0,0.6827129662884589 -4097.0,0.6824772063002648 -4098.0,0.6822415277266252 -4099.0,0.6820059305394254 -4100.0,0.6817704147105604 -4101.0,0.6815349802119348 -4102.0,0.6812996270154631 -4103.0,0.6810643550930693 -4104.0,0.6808291644166873 -4105.0,0.6805940549582603 -4106.0,0.6803590266897418 -4107.0,0.6801240795830943 -4108.0,0.6798892136102905 -4109.0,0.6796544287433127 -4110.0,0.6794197249541526 -4111.0,0.6791851022148119 -4112.0,0.6789505604973016 -4113.0,0.6787160997736428 -4114.0,0.6784817200158659 -4115.0,0.6782474211960112 -4116.0,0.6780132032861286 -4117.0,0.6777790662582774 -4118.0,0.6775450100845269 -4119.0,0.677311034736956 -4120.0,0.677077140187653 -4121.0,0.676843326408716 -4122.0,0.6766095933722528 -4123.0,0.6763759410503807 -4124.0,0.6761423694152268 -4125.0,0.6759088784389274 -4126.0,0.675675468093629 -4127.0,0.6754421383514874 -4128.0,0.675208889184668 -4129.0,0.6749757205653458 -4130.0,0.6747426324657058 -4131.0,0.674509624857942 -4132.0,0.6742766977142584 -4133.0,0.6740438510068684 -4134.0,0.6738110847079951 -4135.0,0.6735783987898714 -4136.0,0.6733457932247393 -4137.0,0.6731132679848507 -4138.0,0.6728808230424672 -4139.0,0.6726484583698595 -4140.0,0.6724161739393085 -4141.0,0.6721839697231043 -4142.0,0.6719518456935466 -4143.0,0.6717198018229446 -4144.0,0.6714878380836171 -4145.0,0.6712559544478929 -4146.0,0.6710241508881095 -4147.0,0.6707924273766148 -4148.0,0.6705607838857656 -4149.0,0.6703292203879286 -4150.0,0.6700977368554801 -4151.0,0.6698663332608058 -4152.0,0.6696350095763007 -4153.0,0.6694037657743698 -4154.0,0.6691726018274272 -4155.0,0.6689415177078969 -4156.0,0.6687105133882122 -4157.0,0.6684795888408159 -4158.0,0.6682487440381606 -4159.0,0.6680179789527079 -4160.0,0.6677872935569293 -4161.0,0.6675566878233059 -4162.0,0.667326161724328 -4163.0,0.6670957152324954 -4164.0,0.6668653483203177 -4165.0,0.6666350609603137 -4166.0,0.6664048531250117 -4167.0,0.6661747247869498 -4168.0,0.6659446759186753 -4169.0,0.665714706492745 -4170.0,0.6654848164817252 -4171.0,0.6652550058581918 -4172.0,0.6650252745947299 -4173.0,0.6647956226639344 -4174.0,0.6645660500384094 -4175.0,0.6643365566907687 -4176.0,0.6641071425936352 -4177.0,0.6638778077196417 -4178.0,0.66364855204143 -4179.0,0.6634193755316518 -4180.0,0.6631902781629678 -4181.0,0.6629612599080486 -4182.0,0.6627323207395737 -4183.0,0.6625034606302324 -4184.0,0.6622746795527235 -4185.0,0.662045977479755 -4186.0,0.6618173543840444 -4187.0,0.6615888102383187 -4188.0,0.6613603450153142 -4189.0,0.6611319586877766 -4190.0,0.6609036512284612 -4191.0,0.6606754226101326 -4192.0,0.6604472728055646 -4193.0,0.6602192017875407 -4194.0,0.6599912095288537 -4195.0,0.6597632960023059 -4196.0,0.6595354611807086 -4197.0,0.6593077050368831 -4198.0,0.6590800275436595 -4199.0,0.6588524286738775 -4200.0,0.6586249084003865 -4201.0,0.6583974666960447 -4202.0,0.6581701035337202 -4203.0,0.65794281888629 -4204.0,0.6577156127266409 -4205.0,0.6574884850276688 -4206.0,0.6572614357622789 -4207.0,0.657034464903386 -4208.0,0.6568075724239142 -4209.0,0.6565807582967967 -4210.0,0.6563540224949764 -4211.0,0.6561273649914052 -4212.0,0.6559007857590448 -4213.0,0.6556742847708655 -4214.0,0.6554478619998477 -4215.0,0.6552215174189808 -4216.0,0.6549952510012635 -4217.0,0.6547690627197038 -4218.0,0.6545429525473192 -4219.0,0.6543169204571364 -4220.0,0.6540909664221913 -4221.0,0.6538650904155293 -4222.0,0.653639292410205 -4223.0,0.6534135723792825 -4224.0,0.6531879302958349 -4225.0,0.6529623661329447 -4226.0,0.6527368798637039 -4227.0,0.6525114714612135 -4228.0,0.6522861408985839 -4229.0,0.652060888148935 -4230.0,0.6518357131853957 -4231.0,0.6516106159811041 -4232.0,0.6513855965092079 -4233.0,0.651160654742864 -4234.0,0.6509357906552383 -4235.0,0.6507110042195062 -4236.0,0.6504862954088525 -4237.0,0.6502616641964708 -4238.0,0.6500371105555645 -4239.0,0.6498126344593457 -4240.0,0.6495882358810363 -4241.0,0.649363914793867 -4242.0,0.6491396711710781 -4243.0,0.6489155049859188 -4244.0,0.6486914162116478 -4245.0,0.648467404821533 -4246.0,0.6482434707888514 -4247.0,0.6480196140868892 -4248.0,0.6477958346889422 -4249.0,0.6475721325683148 -4250.0,0.6473485076983213 -4251.0,0.6471249600522847 -4252.0,0.6469014896035374 -4253.0,0.6466780963254211 -4254.0,0.6464547801912864 -4255.0,0.6462315411744937 -4256.0,0.6460083792484118 -4257.0,0.6457852943864193 -4258.0,0.6455622865619038 -4259.0,0.6453393557482622 -4260.0,0.6451165019189002 -4261.0,0.6448937250472332 -4262.0,0.6446710251066854 -4263.0,0.6444484020706904 -4264.0,0.644225855912691 -4265.0,0.6440033866061389 -4266.0,0.6437809941244951 -4267.0,0.6435586784412299 -4268.0,0.6433364395298227 -4269.0,0.6431142773637619 -4270.0,0.6428921919165452 -4271.0,0.6426701831616796 -4272.0,0.6424482510726808 -4273.0,0.6422263956230742 -4274.0,0.6420046167863938 -4275.0,0.6417829145361831 -4276.0,0.6415612888459946 -4277.0,0.6413397396893902 -4278.0,0.6411182670399403 -4279.0,0.6408968708712253 -4280.0,0.6406755511568338 -4281.0,0.6404543078703643 -4282.0,0.6402331409854239 -4283.0,0.6400120504756291 -4284.0,0.6397910363146054 -4285.0,0.6395700984759874 -4286.0,0.6393492369334189 -4287.0,0.6391284516605527 -4288.0,0.6389077426310505 -4289.0,0.6386871098185836 -4290.0,0.638466553196832 -4291.0,0.638246072739485 -4292.0,0.6380256684202407 -4293.0,0.6378053402128067 -4294.0,0.6375850880908992 -4295.0,0.637364912028244 -4296.0,0.6371448119985755 -4297.0,0.6369247879756375 -4298.0,0.6367048399331826 -4299.0,0.6364849678449728 -4300.0,0.6362651716847787 -4301.0,0.6360454514263804 -4302.0,0.6358258070435668 -4303.0,0.6356062385101361 -4304.0,0.6353867457998952 -4305.0,0.6351673288866602 -4306.0,0.6349479877442563 -4307.0,0.6347287223465178 -4308.0,0.6345095326672878 -4309.0,0.6342904186804187 -4310.0,0.6340713803597717 -4311.0,0.6338524176792172 -4312.0,0.6336335306126344 -4313.0,0.6334147191339118 -4314.0,0.6331959832169468 -4315.0,0.6329773228356458 -4316.0,0.632758737963924 -4317.0,0.6325402285757061 -4318.0,0.6323217946449254 -4319.0,0.6321034361455243 -4320.0,0.6318851530514544 -4321.0,0.6316669453366759 -4322.0,0.6314488129751582 -4323.0,0.6312307559408799 -4324.0,0.6310127742078282 -4325.0,0.6307948677499996 -4326.0,0.6305770365413993 -4327.0,0.6303592805560418 -4328.0,0.6301415997679503 -4329.0,0.6299239941511571 -4330.0,0.6297064636797033 -4331.0,0.6294890083276393 -4332.0,0.6292716280690243 -4333.0,0.6290543228779262 -4334.0,0.6288370927284221 -4335.0,0.6286199375945982 -4336.0,0.6284028574505494 -4337.0,0.6281858522703795 -4338.0,0.6279689220282015 -4339.0,0.6277520666981372 -4340.0,0.6275352862543173 -4341.0,0.6273185806708815 -4342.0,0.6271019499219784 -4343.0,0.6268853939817655 -4344.0,0.6266689128244093 -4345.0,0.6264525064240851 -4346.0,0.6262361747549773 -4347.0,0.626019917791279 -4348.0,0.6258037355071924 -4349.0,0.6255876278769285 -4350.0,0.6253715948747073 -4351.0,0.6251556364747575 -4352.0,0.6249397526513168 -4353.0,0.6247239433786322 -4354.0,0.6245082086309589 -4355.0,0.6242925483825613 -4356.0,0.624076962607713 -4357.0,0.6238614512806957 -4358.0,0.6236460143758009 -4359.0,0.6234306518673285 -4360.0,0.6232153637295871 -4361.0,0.6230001499368946 -4362.0,0.6227850104635775 -4363.0,0.6225699452839711 -4364.0,0.6223549543724199 -4365.0,0.622140037703277 -4366.0,0.6219251952509043 -4367.0,0.6217104269896728 -4368.0,0.6214957328939621 -4369.0,0.6212811129381608 -4370.0,0.6210665670966663 -4371.0,0.6208520953438849 -4372.0,0.6206376976542316 -4373.0,0.6204233740021304 -4374.0,0.620209124362014 -4375.0,0.619994948708324 -4376.0,0.6197808470155107 -4377.0,0.6195668192580335 -4378.0,0.6193528654103604 -4379.0,0.6191389854469681 -4380.0,0.6189251793423426 -4381.0,0.618711447070978 -4382.0,0.618497788607378 -4383.0,0.6182842039260544 -4384.0,0.6180706930015283 -4385.0,0.6178572558083292 -4386.0,0.6176438923209958 -4387.0,0.6174306025140753 -4388.0,0.6172173863621238 -4389.0,0.6170042438397062 -4390.0,0.616791174921396 -4391.0,0.6165781795817759 -4392.0,0.6163652577954367 -4393.0,0.6161524095369788 -4394.0,0.6159396347810108 -4395.0,0.6157269335021501 -4396.0,0.6155143056750232 -4397.0,0.6153017512742651 -4398.0,0.6150892702745194 -4399.0,0.614876862650439 -4400.0,0.614664528376685 -4401.0,0.6144522674279275 -4402.0,0.6142400797788452 -4403.0,0.614027965404126 -4404.0,0.6138159242784658 -4405.0,0.61360395637657 -4406.0,0.6133920616731521 -4407.0,0.6131802401429347 -4408.0,0.6129684917606492 -4409.0,0.6127568165010352 -4410.0,0.6125452143388418 -4411.0,0.612333685248826 -4412.0,0.6121222292057543 -4413.0,0.6119108461844013 -4414.0,0.6116995361595505 -4415.0,0.6114882991059944 -4416.0,0.6112771349985339 -4417.0,0.6110660438119784 -4418.0,0.6108550255211465 -4419.0,0.6106440801008652 -4420.0,0.6104332075259703 -4421.0,0.6102224077713061 -4422.0,0.6100116808117259 -4423.0,0.6098010266220913 -4424.0,0.6095904451772731 -4425.0,0.6093799364521502 -4426.0,0.6091695004216104 -4427.0,0.6089591370605506 -4428.0,0.6087488463438756 -4429.0,0.6085386282464994 -4430.0,0.6083284827433444 -4431.0,0.608118409809342 -4432.0,0.6079084094194318 -4433.0,0.6076984815485624 -4434.0,0.607488626171691 -4435.0,0.6072788432637832 -4436.0,0.6070691327998136 -4437.0,0.6068594947547652 -4438.0,0.6066499291036297 -4439.0,0.6064404358214074 -4440.0,0.6062310148831074 -4441.0,0.6060216662637473 -4442.0,0.6058123899383532 -4443.0,0.60560318588196 -4444.0,0.6053940540696113 -4445.0,0.6051849944763591 -4446.0,0.6049760070772642 -4447.0,0.6047670918473957 -4448.0,0.6045582487618318 -4449.0,0.6043494777956591 -4450.0,0.6041407789239723 -4451.0,0.6039321521218757 -4452.0,0.6037235973644812 -4453.0,0.60351511462691 -4454.0,0.6033067038842915 -4455.0,0.603098365111764 -4456.0,0.6028900982844739 -4457.0,0.6026819033775768 -4458.0,0.6024737803662363 -4459.0,0.602265729225625 -4460.0,0.602057749930924 -4461.0,0.6018498424573225 -4462.0,0.6016420067800191 -4463.0,0.6014342428742204 -4464.0,0.6012265507151415 -4465.0,0.6010189302780065 -4466.0,0.6008113815380474 -4467.0,0.6006039044705056 -4468.0,0.6003964990506303 -4469.0,0.6001891652536797 -4470.0,0.5999819030549204 -4471.0,0.5997747124296274 -4472.0,0.5995675933530845 -4473.0,0.5993605458005837 -4474.0,0.5991535697474261 -4475.0,0.5989466651689206 -4476.0,0.5987398320403852 -4477.0,0.5985330703371461 -4478.0,0.5983263800345382 -4479.0,0.5981197611079048 -4480.0,0.5979132135325979 -4481.0,0.5977067372839777 -4482.0,0.5975003323374133 -4483.0,0.5972939986682819 -4484.0,0.5970877362519695 -4485.0,0.5968815450638704 -4486.0,0.5966754250793876 -4487.0,0.5964693762739325 -4488.0,0.5962633986229249 -4489.0,0.5960574921017933 -4490.0,0.5958516566859743 -4491.0,0.5956458923509135 -4492.0,0.5954401990720646 -4493.0,0.5952345768248899 -4494.0,0.5950290255848601 -4495.0,0.5948235453274545 -4496.0,0.5946181360281609 -4497.0,0.5944127976624753 -4498.0,0.5942075302059024 -4499.0,0.5940023336339554 -4500.0,0.5937972079221556 -4501.0,0.5935921530460332 -4502.0,0.5933871689811265 -4503.0,0.5931822557029826 -4504.0,0.5929774131871566 -4505.0,0.5927726414092125 -4506.0,0.5925679403447224 -4507.0,0.5923633099692669 -4508.0,0.5921587502584352 -4509.0,0.5919542611878248 -4510.0,0.5917498427330417 -4511.0,0.5915454948697001 -4512.0,0.591341217573423 -4513.0,0.5911370108198414 -4514.0,0.590932874584595 -4515.0,0.5907288088433318 -4516.0,0.5905248135717084 -4517.0,0.5903208887453896 -4518.0,0.5901170343400485 -4519.0,0.5899132503313669 -4520.0,0.5897095366950348 -4521.0,0.5895058934067506 -4522.0,0.5893023204422213 -4523.0,0.5890988177771619 -4524.0,0.5888953853872962 -4525.0,0.5886920232483562 -4526.0,0.5884887313360823 -4527.0,0.5882855096262231 -4528.0,0.5880823580945358 -4529.0,0.587879276716786 -4530.0,0.5876762654687473 -4531.0,0.5874733243262024 -4532.0,0.5872704532649414 -4533.0,0.5870676522607636 -4534.0,0.5868649212894762 -4535.0,0.5866622603268948 -4536.0,0.5864596693488436 -4537.0,0.5862571483311549 -4538.0,0.5860546972496694 -4539.0,0.5858523160802361 -4540.0,0.5856500047987125 -4541.0,0.5854477633809644 -4542.0,0.5852455918028656 -4543.0,0.5850434900402988 -4544.0,0.5848414580691546 -4545.0,0.584639495865332 -4546.0,0.5844376034047386 -4547.0,0.5842357806632898 -4548.0,0.5840340276169099 -4549.0,0.5838323442415311 -4550.0,0.583630730513094 -4551.0,0.5834291864075477 -4552.0,0.5832277119008493 -4553.0,0.5830263069689644 -4554.0,0.582824971587867 -4555.0,0.5826237057335389 -4556.0,0.582422509381971 -4557.0,0.5822213825091618 -4558.0,0.5820203250911183 -4559.0,0.581819337103856 -4560.0,0.5816184185233984 -4561.0,0.5814175693257772 -4562.0,0.5812167894870327 -4563.0,0.5810160789832134 -4564.0,0.580815437790376 -4565.0,0.5806148658845854 -4566.0,0.5804143632419149 -4567.0,0.5802139298384458 -4568.0,0.5800135656502681 -4569.0,0.5798132706534797 -4570.0,0.5796130448241869 -4571.0,0.5794128881385041 -4572.0,0.5792128005725542 -4573.0,0.5790127821024682 -4574.0,0.5788128327043854 -4575.0,0.5786129523544532 -4576.0,0.5784131410288272 -4577.0,0.5782133987036717 -4578.0,0.5780137253551587 -4579.0,0.5778141209594686 -4580.0,0.5776145854927901 -4581.0,0.5774151189313201 -4582.0,0.5772157212512636 -4583.0,0.5770163924288341 -4584.0,0.5768171324402529 -4585.0,0.5766179412617499 -4586.0,0.5764188188695629 -4587.0,0.5762197652399382 -4588.0,0.5760207803491301 -4589.0,0.5758218641734011 -4590.0,0.5756230166890219 -4591.0,0.5754242378722717 -4592.0,0.5752255276994375 -4593.0,0.5750268861468144 -4594.0,0.5748283131907063 -4595.0,0.5746298088074245 -4596.0,0.5744313729732893 -4597.0,0.5742330056646283 -4598.0,0.5740347068577781 -4599.0,0.5738364765290829 -4600.0,0.5736383146548953 -4601.0,0.5734402212115761 -4602.0,0.5732421961754942 -4603.0,0.5730442395230265 -4604.0,0.5728463512305584 -4605.0,0.5726485312744831 -4606.0,0.5724507796312023 -4607.0,0.5722530962771256 -4608.0,0.5720554811886708 -4609.0,0.5718579343422637 -4610.0,0.5716604557143388 -4611.0,0.571463045281338 -4612.0,0.5712657030197117 -4613.0,0.5710684289059186 -4614.0,0.5708712229164251 -4615.0,0.5706740850277061 -4616.0,0.5704770152162446 -4617.0,0.5702800134585314 -4618.0,0.5700830797310656 -4619.0,0.5698862140103547 -4620.0,0.5696894162729139 -4621.0,0.5694926864952666 -4622.0,0.5692960246539446 -4623.0,0.5690994307254872 -4624.0,0.5689029046864426 -4625.0,0.5687064465133663 -4626.0,0.5685100561828225 -4627.0,0.5683137336713832 -4628.0,0.5681174789556286 -4629.0,0.5679212920121469 -4630.0,0.5677251728175344 -4631.0,0.5675291213483955 -4632.0,0.5673331375813429 -4633.0,0.5671372214929968 -4634.0,0.5669413730599862 -4635.0,0.5667455922589476 -4636.0,0.5665498790665258 -4637.0,0.5663542334593736 -4638.0,0.5661586554141521 -4639.0,0.5659631449075301 -4640.0,0.5657677019161848 -4641.0,0.5655723264168009 -4642.0,0.5653770183860719 -4643.0,0.5651817778006988 -4644.0,0.5649866046373909 -4645.0,0.5647914988728654 -4646.0,0.5645964604838477 -4647.0,0.564401489447071 -4648.0,0.5642065857392768 -4649.0,0.5640117493372145 -4650.0,0.5638169802176415 -4651.0,0.5636222783573231 -4652.0,0.5634276437330331 -4653.0,0.5632330763215528 -4654.0,0.5630385760996719 -4655.0,0.5628441430441877 -4656.0,0.5626497771319059 -4657.0,0.5624554783396402 -4658.0,0.5622612466442118 -4659.0,0.5620670820224506 -4660.0,0.561872984451194 -4661.0,0.5616789539072878 -4662.0,0.5614849903675854 -4663.0,0.5612910938089483 -4664.0,0.5610972642082461 -4665.0,0.5609035015423565 -4666.0,0.5607098057881648 -4667.0,0.5605161769225646 -4668.0,0.5603226149224574 -4669.0,0.5601291197647527 -4670.0,0.5599356914263679 -4671.0,0.5597423298842283 -4672.0,0.5595490351152675 -4673.0,0.5593558070964268 -4674.0,0.5591626458046554 -4675.0,0.5589695512169105 -4676.0,0.5587765233101575 -4677.0,0.5585835620613695 -4678.0,0.5583906674475276 -4679.0,0.5581978394456211 -4680.0,0.5580050780326467 -4681.0,0.5578123831856094 -4682.0,0.5576197548815224 -4683.0,0.5574271930974063 -4684.0,0.55723469781029 -4685.0,0.5570422689972101 -4686.0,0.5568499066352114 -4687.0,0.5566576107013463 -4688.0,0.5564653811726754 -4689.0,0.5562732180262672 -4690.0,0.5560811212391978 -4691.0,0.5558890907885516 -4692.0,0.5556971266514209 -4693.0,0.5555052288049055 -4694.0,0.5553133972261135 -4695.0,0.5551216318921609 -4696.0,0.5549299327801714 -4697.0,0.5547382998672767 -4698.0,0.5545467331306164 -4699.0,0.554355232547338 -4700.0,0.5541637980945968 -4701.0,0.5539724297495562 -4702.0,0.5537811274893872 -4703.0,0.553589891291269 -4704.0,0.5533987211323884 -4705.0,0.5532076169899401 -4706.0,0.553016578841127 -4707.0,0.5528256066631595 -4708.0,0.5526347004332561 -4709.0,0.552443860128643 -4710.0,0.5522530857265543 -4711.0,0.5520623772042321 -4712.0,0.5518717345389262 -4713.0,0.5516811577078944 -4714.0,0.5514906466884022 -4715.0,0.5513002014577231 -4716.0,0.5511098219931382 -4717.0,0.5509195082719369 -4718.0,0.5507292602714159 -4719.0,0.5505390779688801 -4720.0,0.5503489613416422 -4721.0,0.5501589103670226 -4722.0,0.5499689250223496 -4723.0,0.5497790052849594 -4724.0,0.5495891511321959 -4725.0,0.5493993625414108 -4726.0,0.5492096394899638 -4727.0,0.5490199819552224 -4728.0,0.5488303899145618 -4729.0,0.548640863345365 -4730.0,0.5484514022250228 -4731.0,0.5482620065309339 -4732.0,0.5480726762405049 -4733.0,0.54788341133115 -4734.0,0.5476942117802913 -4735.0,0.5475050775653586 -4736.0,0.5473160086637897 -4737.0,0.5471270050530299 -4738.0,0.5469380667105325 -4739.0,0.5467491936137586 -4740.0,0.546560385740177 -4741.0,0.5463716430672642 -4742.0,0.5461829655725047 -4743.0,0.5459943532333905 -4744.0,0.5458058060274217 -4745.0,0.5456173239321058 -4746.0,0.5454289069249585 -4747.0,0.5452405549835028 -4748.0,0.5450522680852699 -4749.0,0.5448640462077983 -4750.0,0.5446758893286346 -4751.0,0.5444877974253333 -4752.0,0.544299770475456 -4753.0,0.5441118084565727 -4754.0,0.543923911346261 -4755.0,0.5437360791221058 -4756.0,0.5435483117617003 -4757.0,0.5433606092426453 -4758.0,0.5431729715425491 -4759.0,0.542985398639028 -4760.0,0.5427978905097057 -4761.0,0.5426104471322143 -4762.0,0.5424230684841926 -4763.0,0.5422357545432882 -4764.0,0.5420485052871556 -4765.0,0.5418613206934575 -4766.0,0.541674200739864 -4767.0,0.5414871454040532 -4768.0,0.5413001546637106 -4769.0,0.5411132284965297 -4770.0,0.5409263668802115 -4771.0,0.5407395697924648 -4772.0,0.5405528372110061 -4773.0,0.5403661691135595 -4774.0,0.540179565477857 -4775.0,0.5399930262816378 -4776.0,0.5398065515026496 -4777.0,0.539620141118647 -4778.0,0.5394337951073926 -4779.0,0.5392475134466569 -4780.0,0.5390612961142176 -4781.0,0.5388751430878606 -4782.0,0.538689054345379 -4783.0,0.5385030298645738 -4784.0,0.5383170696232537 -4785.0,0.5381311735992349 -4786.0,0.5379453417703414 -4787.0,0.5377595741144049 -4788.0,0.5375738706092645 -4789.0,0.5373882312327674 -4790.0,0.537202655962768 -4791.0,0.5370171447771284 -4792.0,0.5368316976537186 -4793.0,0.5366463145704162 -4794.0,0.5364609955051063 -4795.0,0.5362757404356816 -4796.0,0.5360905493400426 -4797.0,0.5359054221960973 -4798.0,0.5357203589817614 -4799.0,0.5355353596749582 -4800.0,0.5353504242536187 -4801.0,0.5351655526956813 -4802.0,0.5349807449790924 -4803.0,0.5347960010818056 -4804.0,0.5346113209817823 -4805.0,0.5344267046569917 -4806.0,0.5342421520854101 -4807.0,0.534057663245022 -4808.0,0.5338732381138191 -4809.0,0.5336888766698009 -4810.0,0.5335045788909745 -4811.0,0.5333203447553543 -4812.0,0.5331361742409626 -4813.0,0.5329520673258292 -4814.0,0.5327680239879915 -4815.0,0.5325840442054945 -4816.0,0.5324001279563908 -4817.0,0.5322162752187404 -4818.0,0.532032485970611 -4819.0,0.531848760190078 -4820.0,0.5316650978552242 -4821.0,0.5314814989441401 -4822.0,0.5312979634349235 -4823.0,0.5311144913056802 -4824.0,0.5309310825345231 -4825.0,0.530747737099573 -4826.0,0.530564454978958 -4827.0,0.530381236150814 -4828.0,0.5301980805932843 -4829.0,0.5300149882845198 -4830.0,0.5298319592026789 -4831.0,0.5296489933259275 -4832.0,0.5294660906324391 -4833.0,0.5292832511003949 -4834.0,0.5291004747079834 -4835.0,0.5289177614334006 -4836.0,0.5287351112548503 -4837.0,0.5285525241505435 -4838.0,0.528370000098699 -4839.0,0.5281875390775431 -4840.0,0.5280051410653094 -4841.0,0.5278228060402391 -4842.0,0.5276405339805811 -4843.0,0.5274583248645915 -4844.0,0.5272761786705342 -4845.0,0.5270940953766805 -4846.0,0.5269120749613092 -4847.0,0.5267301174027065 -4848.0,0.5265482226791663 -4849.0,0.5263663907689898 -4850.0,0.5261846216504859 -4851.0,0.5260029153019706 -4852.0,0.525821271701768 -4853.0,0.525639690828209 -4854.0,0.5254581726596327 -4855.0,0.525276717174385 -4856.0,0.5250953243508197 -4857.0,0.524913994167298 -4858.0,0.5247327266021884 -4859.0,0.5245515216338672 -4860.0,0.5243703792407177 -4861.0,0.5241892994011312 -4862.0,0.5240082820935061 -4863.0,0.5238273272962483 -4864.0,0.5236464349877712 -4865.0,0.5234656051464958 -4866.0,0.5232848377508502 -4867.0,0.5231041327792704 -4868.0,0.5229234902101996 -4869.0,0.5227429100220883 -4870.0,0.5225623921933946 -4871.0,0.5223819367025841 -4872.0,0.52220154352813 -4873.0,0.5220212126485123 -4874.0,0.5218409440422191 -4875.0,0.5216607376877457 -4876.0,0.5214805935635947 -4877.0,0.5213005116482761 -4878.0,0.5211204919203076 -4879.0,0.5209405343582142 -4880.0,0.5207606389405282 -4881.0,0.5205808056457892 -4882.0,0.5204010344525448 -4883.0,0.5202213253393493 -4884.0,0.5200416782847648 -4885.0,0.5198620932673608 -4886.0,0.519682570265714 -4887.0,0.5195031092584086 -4888.0,0.5193237102240362 -4889.0,0.5191443731411961 -4890.0,0.5189650979884943 -4891.0,0.5187858847445448 -4892.0,0.5186067333879687 -4893.0,0.5184276438973946 -4894.0,0.5182486162514583 -4895.0,0.5180696504288033 -4896.0,0.5178907464080801 -4897.0,0.5177119041679469 -4898.0,0.517533123687069 -4899.0,0.5173544049441193 -4900.0,0.5171757479177779 -4901.0,0.5169971525867323 -4902.0,0.5168186189296774 -4903.0,0.5166401469253155 -4904.0,0.516461736552356 -4905.0,0.5162833877895162 -4906.0,0.5161051006155201 -4907.0,0.5159268750090993 -4908.0,0.515748710948993 -4909.0,0.5155706084139474 -4910.0,0.5153925673827161 -4911.0,0.5152145878340603 -4912.0,0.5150366697467482 -4913.0,0.5148588130995555 -4914.0,0.5146810178712652 -4915.0,0.5145032840406677 -4916.0,0.5143256115865604 -4917.0,0.5141480004877486 -4918.0,0.5139704507230444 -4919.0,0.5137929622712674 -4920.0,0.5136155351112446 -4921.0,0.5134381692218101 -4922.0,0.5132608645818056 -4923.0,0.51308362117008 -4924.0,0.5129064389654893 -4925.0,0.5127293179468969 -4926.0,0.5125522580931737 -4927.0,0.5123752593831977 -4928.0,0.5121983217958543 -4929.0,0.512021445310036 -4930.0,0.511844629904643 -4931.0,0.5116678755585821 -4932.0,0.5114911822507681 -4933.0,0.5113145499601227 -4934.0,0.511137978665575 -4935.0,0.5109614683460612 -4936.0,0.510785018980525 -4937.0,0.5106086305479172 -4938.0,0.5104323030271961 -4939.0,0.510256036397327 -4940.0,0.5100798306372826 -4941.0,0.5099036857260427 -4942.0,0.5097276016425948 -4943.0,0.5095515783659331 -4944.0,0.5093756158750595 -4945.0,0.5091997141489828 -4946.0,0.5090238731667193 -4947.0,0.5088480929072923 -4948.0,0.5086723733497327 -4949.0,0.5084967144730782 -4950.0,0.5083211162563743 -4951.0,0.5081455786786732 -4952.0,0.5079701017190345 -4953.0,0.5077946853565252 -4954.0,0.5076193295702193 -4955.0,0.5074440343391983 -4956.0,0.5072687996425506 -4957.0,0.507093625459372 -4958.0,0.5069185117687656 -4959.0,0.5067434585498415 -4960.0,0.5065684657817172 -4961.0,0.5063935334435172 -4962.0,0.5062186615143737 -4963.0,0.5060438499734253 -4964.0,0.5058690987998186 -4965.0,0.5056944079727068 -4966.0,0.5055197774712508 -4967.0,0.5053452072746183 -4968.0,0.5051706973619844 -4969.0,0.5049962477125313 -4970.0,0.5048218583054485 -4971.0,0.5046475291199326 -4972.0,0.5044732601351872 -4973.0,0.5042990513304236 -4974.0,0.5041249026848599 -4975.0,0.5039508141777213 -4976.0,0.5037767857882403 -4977.0,0.5036028174956566 -4978.0,0.503428909279217 -4979.0,0.5032550611181759 -4980.0,0.503081272991794 -4981.0,0.5029075448793399 -4982.0,0.502733876760089 -4983.0,0.502560268613324 -4984.0,0.5023867204183348 -4985.0,0.5022132321544182 -4986.0,0.5020398038008784 -4987.0,0.5018664353370267 -4988.0,0.5016931267421814 -4989.0,0.5015198779956681 -4990.0,0.5013466890768196 -4991.0,0.5011735599649755 -4992.0,0.5010004906394829 -4993.0,0.500827481079696 -4994.0,0.5006545312649758 -4995.0,0.5004816411746907 -4996.0,0.5003088107882163 -4997.0,0.5001360400849351 -4998.0,0.49996332904423685 -4999.0,0.4997906776455183 -5000.0,0.4996180858681835 -5001.0,0.49944555369164345 -5002.0,0.4992730810953163 -5003.0,0.4991006680586274 -5004.0,0.4989283145610091 -5005.0,0.4987560205819008 -5006.0,0.49858378610074927 -5007.0,0.49841161109700804 -5008.0,0.4982394955501379 -5009.0,0.4980674394396068 -5010.0,0.4978954427448896 -5011.0,0.49772350544546845 -5012.0,0.49755162752083243 -5013.0,0.49737980895047773 -5014.0,0.4972080497139077 -5015.0,0.49703634979063266 -5016.0,0.49686470916017006 -5017.0,0.4966931278020445 -5018.0,0.49652160569578757 -5019.0,0.49635014282093787 -5020.0,0.49617873915704114 -5021.0,0.49600739468365024 -5022.0,0.49583610938032496 -5023.0,0.4956648832266322 -5024.0,0.49549371620214594 -5025.0,0.49532260828644725 -5026.0,0.4951515594591242 -5027.0,0.49498056969977183 -5028.0,0.49480963898799235 -5029.0,0.494638767303395 -5030.0,0.49446795462559606 -5031.0,0.4942972009342187 -5032.0,0.49412650620889337 -5033.0,0.49395587042925737 -5034.0,0.49378529357495515 -5035.0,0.49361477562563805 -5036.0,0.4934443165609646 -5037.0,0.49327391636060025 -5038.0,0.49310357500421753 -5039.0,0.4929332924714959 -5040.0,0.49276306874212195 -5041.0,0.4925929037957892 -5042.0,0.4924227976121982 -5043.0,0.4922527501710566 -5044.0,0.4920827614520788 -5045.0,0.4919128314349866 -5046.0,0.49174296009950846 -5047.0,0.49157314742538 -5048.0,0.4914033933923438 -5049.0,0.49123369798014943 -5050.0,0.49106406116855356 -5051.0,0.4908944829373196 -5052.0,0.49072496326621823 -5053.0,0.4905555021350269 -5054.0,0.49038609952353013 -5055.0,0.49021675541151954 -5056.0,0.49004746977879354 -5057.0,0.48987824260515755 -5058.0,0.48970907387042406 -5059.0,0.4895399635544125 -5060.0,0.4893709116369491 -5061.0,0.4892019180978674 -5062.0,0.48903298291700753 -5063.0,0.4888641060742168 -5064.0,0.48869528754934954 -5065.0,0.48852652732226676 -5066.0,0.48835782537283673 -5067.0,0.4881891816809345 -5068.0,0.48802059622644206 -5069.0,0.4878520689892485 -5070.0,0.4876835999492496 -5071.0,0.48751518908634833 -5072.0,0.4873468363804545 -5073.0,0.4871785418114848 -5074.0,0.487010305359363 -5075.0,0.4868421270040197 -5076.0,0.4866740067253924 -5077.0,0.4865059445034256 -5078.0,0.4863379403180707 -5079.0,0.486169994149286 -5080.0,0.48600210597703686 -5081.0,0.48583427578129534 -5082.0,0.4856665035420405 -5083.0,0.48549878923925843 -5084.0,0.48533113285294194 -5085.0,0.4851635343630909 -5086.0,0.48499599374971203 -5087.0,0.484828510992819 -5088.0,0.4846610860724322 -5089.0,0.4844937189685792 -5090.0,0.48432640966129425 -5091.0,0.4841591581306186 -5092.0,0.4839919643566003 -5093.0,0.4838248283192944 -5094.0,0.4836577499987629 -5095.0,0.48349072937507437 -5096.0,0.4833237664283046 -5097.0,0.4831568611385361 -5098.0,0.4829900134858583 -5099.0,0.48282322345036743 -5100.0,0.48265649101216673 -5101.0,0.48248981615136616 -5102.0,0.4823231988480827 -5103.0,0.48215663908244005 -5104.0,0.4819901368345689 -5105.0,0.48182369208460674 -5106.0,0.4816573048126979 -5107.0,0.4814909749989936 -5108.0,0.48132470262365196 -5109.0,0.4811584876668378 -5110.0,0.4809923301087229 -5111.0,0.48082622992948587 -5112.0,0.4806601871093123 -5113.0,0.4804942016283944 -5114.0,0.4803282734669313 -5115.0,0.480162402605129 -5116.0,0.47999658902320025 -5117.0,0.47983083270136484 -5118.0,0.4796651336198491 -5119.0,0.47949949175888645 -5120.0,0.479333907098717 -5121.0,0.47916837961958764 -5122.0,0.47900290930175216 -5123.0,0.4788374961254713 -5124.0,0.4786721400710122 -5125.0,0.4785068411186494 -5126.0,0.47834159924866376 -5127.0,0.4781764144413432 -5128.0,0.4780112866769822 -5129.0,0.4778462159358825 -5130.0,0.47768120219835214 -5131.0,0.47751624544470633 -5132.0,0.4773513456552669 -5133.0,0.4771865028103624 -5134.0,0.47702171689032846 -5135.0,0.4768569878755071 -5136.0,0.4766923157462476 -5137.0,0.4765277004829056 -5138.0,0.47636314206584374 -5139.0,0.47619864047543137 -5140.0,0.47603419569204475 -5141.0,0.47586980769606674 -5142.0,0.475705476467887 -5143.0,0.4755412019879022 -5144.0,0.47537698423651537 -5145.0,0.47521282319413666 -5146.0,0.4750487188411828 -5147.0,0.4748846711580774 -5148.0,0.47472068012525076 -5149.0,0.47455674572313983 -5150.0,0.47439286793218854 -5151.0,0.47422904673284744 -5152.0,0.4740652821055739 -5153.0,0.47390157403083194 -5154.0,0.47373792248909236 -5155.0,0.4735743274608328 -5156.0,0.47341078892653743 -5157.0,0.47324730686669747 -5158.0,0.4730838812618106 -5159.0,0.47292051209238134 -5160.0,0.47275719933892096 -5161.0,0.47259394298194746 -5162.0,0.47243074300198545 -5163.0,0.4722675993795665 -5164.0,0.4721045120952287 -5165.0,0.4719414811295169 -5166.0,0.4717785064629827 -5167.0,0.4716155880761844 -5168.0,0.47145272594968707 -5169.0,0.47128992006406245 -5170.0,0.471127170399889 -5171.0,0.4709644769377518 -5172.0,0.47080183965824274 -5173.0,0.4706392585419604 -5174.0,0.47047673356951003 -5175.0,0.47031426472150356 -5176.0,0.47015185197855963 -5177.0,0.46998949532130363 -5178.0,0.4698271947303676 -5179.0,0.4696649501863902 -5180.0,0.46950276167001687 -5181.0,0.4693406291618997 -5182.0,0.46917855264269753 -5183.0,0.46901653209307576 -5184.0,0.46885456749370646 -5185.0,0.4686926588252685 -5186.0,0.4685308060684473 -5187.0,0.4683690092039351 -5188.0,0.4682072682124307 -5189.0,0.4680455830746395 -5190.0,0.4678839537712737 -5191.0,0.4677223802830521 -5192.0,0.4675608625907001 -5193.0,0.46739940067494995 -5194.0,0.4672379945165403 -5195.0,0.4670766440962166 -5196.0,0.46691534939473095 -5197.0,0.46675411039284204 -5198.0,0.4665929270713152 -5199.0,0.46643179941092255 -5200.0,0.46627072739244263 -5201.0,0.46610971099666076 -5202.0,0.4659487502043688 -5203.0,0.46578784499636544 -5204.0,0.46562699535345575 -5205.0,0.46546620125645155 -5206.0,0.46530546268617123 -5207.0,0.46514477962344 -5208.0,0.46498415204908944 -5209.0,0.46482357994395784 -5210.0,0.4646630632888902 -5211.0,0.4645026020647379 -5212.0,0.4643421962523593 -5213.0,0.464181845832619 -5214.0,0.4640215507863884 -5215.0,0.4638613110945455 -5216.0,0.4637011267379748 -5217.0,0.46354099769756757 -5218.0,0.4633809239542215 -5219.0,0.463220905488841 -5220.0,0.463060942282337 -5221.0,0.4629010343156272 -5222.0,0.4627411815696355 -5223.0,0.46258138402529286 -5224.0,0.46242164166353644 -5225.0,0.46226195446531015 -5226.0,0.4621023224115646 -5227.0,0.4619427454832568 -5228.0,0.46178322366135033 -5229.0,0.4616237569268154 -5230.0,0.46146434526062885 -5231.0,0.461304988643774 -5232.0,0.4611456870572408 -5233.0,0.46098644048202564 -5234.0,0.4608272488991317 -5235.0,0.46066811228956844 -5236.0,0.4605090306343521 -5237.0,0.4603500039145054 -5238.0,0.46019103211105766 -5239.0,0.4600321152050446 -5240.0,0.45987325317750866 -5241.0,0.45971444600949873 -5242.0,0.4595556936820703 -5243.0,0.45939699617628527 -5244.0,0.4592383534732123 -5245.0,0.4590797655539265 -5246.0,0.4589212323995094 -5247.0,0.45876275399104915 -5248.0,0.4586043303096405 -5249.0,0.4584459613363846 -5250.0,0.4582876470523892 -5251.0,0.4581293874387686 -5252.0,0.45797118247664353 -5253.0,0.4578130321471413 -5254.0,0.45765493643139576 -5255.0,0.45749689531054727 -5256.0,0.45733890876574257 -5257.0,0.4571809767781351 -5258.0,0.4570230993288847 -5259.0,0.4568652763991577 -5260.0,0.45670750797012705 -5261.0,0.4565497940229721 -5262.0,0.45639213453887867 -5263.0,0.45623452949903925 -5264.0,0.4560769788846526 -5265.0,0.45591948267692417 -5266.0,0.45576204085706573 -5267.0,0.4556046534062957 -5268.0,0.45544732030583884 -5269.0,0.4552900415369264 -5270.0,0.4551328170807964 -5271.0,0.45497564691869286 -5272.0,0.4548185310318666 -5273.0,0.4546614694015749 -5274.0,0.4545044620090814 -5275.0,0.4543475088356563 -5276.0,0.4541906098625762 -5277.0,0.4540337650711242 -5278.0,0.45387697444258984 -5279.0,0.45372023795826916 -5280.0,0.45356355559946465 -5281.0,0.4534069273474852 -5282.0,0.4532503531836463 -5283.0,0.45309383308926976 -5284.0,0.4529373670456838 -5285.0,0.4527809550342233 -5286.0,0.4526245970362293 -5287.0,0.4524682930330495 -5288.0,0.45231204300603794 -5289.0,0.4521558469365552 -5290.0,0.4519997048059682 -5291.0,0.4518436165956502 -5292.0,0.4516875822869812 -5293.0,0.4515316018613474 -5294.0,0.45137567530014133 -5295.0,0.4512198025847623 -5296.0,0.45106398369661566 -5297.0,0.45090821861711344 -5298.0,0.45075250732767397 -5299.0,0.45059684980972203 -5300.0,0.4504412460446888 -5301.0,0.45028569601401197 -5302.0,0.4501301996991355 -5303.0,0.44997475708150975 -5304.0,0.4498193681425916 -5305.0,0.4496640328638444 -5306.0,0.44950875122673756 -5307.0,0.44935352321274724 -5308.0,0.4491983488033559 -5309.0,0.4490432279800523 -5310.0,0.4488881607243317 -5311.0,0.4487331470176956 -5312.0,0.4485781868416521 -5313.0,0.44842328017771566 -5314.0,0.4482684270074069 -5315.0,0.44811362731225296 -5316.0,0.44795888107378745 -5317.0,0.44780418827355023 -5318.0,0.44764954889308756 -5319.0,0.4474949629139521 -5320.0,0.44734043031770293 -5321.0,0.44718595108590536 -5322.0,0.4470315252001312 -5323.0,0.44687715264195854 -5324.0,0.44672283339297186 -5325.0,0.446568567434762 -5326.0,0.44641435474892616 -5327.0,0.4462601953170679 -5328.0,0.4461060891207971 -5329.0,0.44595203614173 -5330.0,0.44579803636148924 -5331.0,0.4456440897617038 -5332.0,0.4454901963240089 -5333.0,0.4453363560300462 -5334.0,0.4451825688614637 -5335.0,0.4450288347999157 -5336.0,0.4448751538270628 -5337.0,0.44472152592457204 -5338.0,0.4445679510741167 -5339.0,0.4444144292573764 -5340.0,0.4442609604560372 -5341.0,0.4441075446517913 -5342.0,0.4439541818263374 -5343.0,0.4438008719613803 -5344.0,0.44364761503863137 -5345.0,0.44349441103980813 -5346.0,0.4433412599466344 -5347.0,0.4431881617408405 -5348.0,0.44303511640416293 -5349.0,0.44288212391834436 -5350.0,0.44272918426513397 -5351.0,0.4425762974262872 -5352.0,0.4424234633835657 -5353.0,0.44227068211873755 -5354.0,0.44211795361357703 -5355.0,0.4419652778498648 -5356.0,0.44181265480938764 -5357.0,0.4416600844739388 -5358.0,0.4415075668253178 -5359.0,0.4413551018453303 -5360.0,0.4412026895157884 -5361.0,0.4410503298185104 -5362.0,0.4408980227353209 -5363.0,0.4407457682480508 -5364.0,0.4405935663385372 -5365.0,0.4404414169886236 -5366.0,0.4402893201801596 -5367.0,0.44013727589500123 -5368.0,0.4399852841150107 -5369.0,0.43983334482205644 -5370.0,0.4396814579980133 -5371.0,0.4395296236247622 -5372.0,0.4393778416841905 -5373.0,0.4392261121581916 -5374.0,0.43907443502866533 -5375.0,0.4389228102775178 -5376.0,0.43877123788666106 -5377.0,0.4386197178380139 -5378.0,0.43846825011350093 -5379.0,0.43831683469505317 -5380.0,0.4381654715646079 -5381.0,0.4380141607041086 -5382.0,0.43786290209550494 -5383.0,0.43771169572075286 -5384.0,0.4375605415618146 -5385.0,0.4374094396006586 -5386.0,0.4372583898192594 -5387.0,0.43710739219959793 -5388.0,0.43695644672366124 -5389.0,0.4368055533734427 -5390.0,0.4366547121309417 -5391.0,0.43650392297816415 -5392.0,0.43635318589712185 -5393.0,0.4362025008698331 -5394.0,0.4360518678783221 -5395.0,0.4359012869046196 -5396.0,0.43575075793076234 -5397.0,0.4356002809387933 -5398.0,0.4354498559107617 -5399.0,0.43529948282872283 -5400.0,0.4351491616747384 -5401.0,0.43499889243087614 -5402.0,0.43484867507921005 -5403.0,0.4346985096018202 -5404.0,0.4345483959807931 -5405.0,0.43439833419822116 -5406.0,0.43424832423620313 -5407.0,0.434098366076844 -5408.0,0.4339484597022547 -5409.0,0.43379860509455265 -5410.0,0.4336488022358612 -5411.0,0.43349905110831 -5412.0,0.43334935169403477 -5413.0,0.43319970397517754 -5414.0,0.4330501079338863 -5415.0,0.43290056355231554 -5416.0,0.4327510708126256 -5417.0,0.432601629696983 -5418.0,0.4324522401875606 -5419.0,0.43230290226653734 -5420.0,0.43215361591609824 -5421.0,0.4320043811184346 -5422.0,0.43185519785574367 -5423.0,0.43170606611022905 -5424.0,0.4315569858641004 -5425.0,0.4314079570995736 -5426.0,0.43125897979887046 -5427.0,0.43111005394421925 -5428.0,0.43096117951785406 -5429.0,0.43081235650201527 -5430.0,0.4306635848789495 -5431.0,0.43051486463090927 -5432.0,0.43036619574015333 -5433.0,0.43021757818894657 -5434.0,0.4300690119595601 -5435.0,0.42992049703427093 -5436.0,0.4297720333953624 -5437.0,0.42962362102512386 -5438.0,0.4294752599058507 -5439.0,0.4293269500198447 -5440.0,0.42917869134941344 -5441.0,0.4290304838768708 -5442.0,0.42888232758453665 -5443.0,0.4287342224547371 -5444.0,0.4285861684698042 -5445.0,0.42843816561207626 -5446.0,0.42829021386389754 -5447.0,0.4281423132076186 -5448.0,0.42799446362559584 -5449.0,0.427846665100192 -5450.0,0.4276989176137757 -5451.0,0.4275512211487218 -5452.0,0.4274035756874111 -5453.0,0.4272559812122307 -5454.0,0.4271084377055736 -5455.0,0.4269609451498389 -5456.0,0.4268135035274319 -5457.0,0.4266661128207638 -5458.0,0.426518773012252 -5459.0,0.4263714840843199 -5460.0,0.42622424601939707 -5461.0,0.42607705879991903 -5462.0,0.4259299224083275 -5463.0,0.42578283682707 -5464.0,0.4256358020386005 -5465.0,0.42548881802537875 -5466.0,0.42534188476987056 -5467.0,0.4251950022545479 -5468.0,0.42504817046188886 -5469.0,0.4249013893743773 -5470.0,0.42475465897450343 -5471.0,0.42460797924476334 -5472.0,0.42446135016765923 -5473.0,0.42431477172569926 -5474.0,0.4241682439013978 -5475.0,0.4240217666772751 -5476.0,0.4238753400358574 -5477.0,0.42372896395967724 -5478.0,0.4235826384312729 -5479.0,0.42343636343318886 -5480.0,0.4232901389479755 -5481.0,0.42314396495818946 -5482.0,0.42299784144639313 -5483.0,0.42285176839515504 -5484.0,0.4227057457870498 -5485.0,0.4225597736046579 -5486.0,0.422413851830566 -5487.0,0.4222679804473667 -5488.0,0.4221221594376585 -5489.0,0.42197638878404614 -5490.0,0.42183066846914014 -5491.0,0.42168499847555724 -5492.0,0.42153937878591996 -5493.0,0.42139380938285703 -5494.0,0.421248290249003 -5495.0,0.4211028213669986 -5496.0,0.4209574027194904 -5497.0,0.42081203428913094 -5498.0,0.4206667160585789 -5499.0,0.4205214480104989 -5500.0,0.4203762301275615 -5501.0,0.42023106239244323 -5502.0,0.4200859447878266 -5503.0,0.4199408772964003 -5504.0,0.4197958599008587 -5505.0,0.4196508925839023 -5506.0,0.4195059753282376 -5507.0,0.41936110811657695 -5508.0,0.4192162909316388 -5509.0,0.41907152375614753 -5510.0,0.4189268065728335 -5511.0,0.41878213936443287 -5512.0,0.4186375221136881 -5513.0,0.4184929548033472 -5514.0,0.4183484374161645 -5515.0,0.41820396993490005 -5516.0,0.41805955234231995 -5517.0,0.4179151846211962 -5518.0,0.41777086675430686 -5519.0,0.4176265987244358 -5520.0,0.417482380514373 -5521.0,0.4173382121069141 -5522.0,0.417194093484861 -5523.0,0.41705002463102125 -5524.0,0.41690600552820867 -5525.0,0.4167620361592428 -5526.0,0.416618116506949 -5527.0,0.4164742465541589 -5528.0,0.41633042628370964 -5529.0,0.4161866556784447 -5530.0,0.41604293472121323 -5531.0,0.4158992633948704 -5532.0,0.41575564168227713 -5533.0,0.4156120695663006 -5534.0,0.41546854702981356 -5535.0,0.4153250740556949 -5536.0,0.4151816506268293 -5537.0,0.4150382767261074 -5538.0,0.4148949523364257 -5539.0,0.4147516774406867 -5540.0,0.4146084520217987 -5541.0,0.414465276062676 -5542.0,0.41432214954623875 -5543.0,0.41417907245541297 -5544.0,0.4140360447731306 -5545.0,0.4138930664823295 -5546.0,0.4137501375659534 -5547.0,0.4136072580069519 -5548.0,0.4134644277882806 -5549.0,0.4133216468929008 -5550.0,0.4131789153037798 -5551.0,0.41303623300389075 -5552.0,0.4128935999762128 -5553.0,0.4127510162037307 -5554.0,0.41260848166943537 -5555.0,0.4124659963563234 -5556.0,0.4123235602473974 -5557.0,0.4121811733256658 -5558.0,0.4120388355741428 -5559.0,0.41189654697584854 -5560.0,0.41175430751380904 -5561.0,0.4116121171710562 -5562.0,0.4114699759306278 -5563.0,0.41132788377556734 -5564.0,0.4111858406889243 -5565.0,0.41104384665375393 -5566.0,0.41090190165311735 -5567.0,0.4107600056700817 -5568.0,0.4106181586877197 -5569.0,0.41047636068911014 -5570.0,0.4103346116573375 -5571.0,0.4101929115754921 -5572.0,0.41005126042667017 -5573.0,0.40990965819397385 -5574.0,0.4097681048605109 -5575.0,0.4096266004093952 -5576.0,0.40948514482374615 -5577.0,0.40934373808668917 -5578.0,0.4092023801813555 -5579.0,0.4090610710908822 -5580.0,0.40891981079841205 -5581.0,0.40877859928709376 -5582.0,0.40863743654008183 -5583.0,0.4084963225405365 -5584.0,0.4083552572716241 -5585.0,0.4082142407165163 -5586.0,0.40807327285839107 -5587.0,0.4079323536804319 -5588.0,0.40779148316582814 -5589.0,0.407650661297775 -5590.0,0.4075098880594734 -5591.0,0.4073691634341302 -5592.0,0.40722848740495793 -5593.0,0.40708785995517494 -5594.0,0.40694728106800543 -5595.0,0.4068067507266794 -5596.0,0.4066662689144325 -5597.0,0.40652583561450645 -5598.0,0.40638545081014843 -5599.0,0.4062451144846116 -5600.0,0.4061048266211548 -5601.0,0.4059645872030429 -5602.0,0.40582439621354616 -5603.0,0.40568425363594085 -5604.0,0.405544159453509 -5605.0,0.40540411364953854 -5606.0,0.40526411620732283 -5607.0,0.4051241671101613 -5608.0,0.404984266341359 -5609.0,0.40484441388422676 -5610.0,0.4047046097220813 -5611.0,0.4045648538382449 -5612.0,0.4044251462160458 -5613.0,0.4042854868388178 -5614.0,0.4041458756899006 -5615.0,0.40400631275263965 -5616.0,0.40386679801038605 -5617.0,0.40372733144649675 -5618.0,0.4035879130443344 -5619.0,0.40344854278726733 -5620.0,0.40330922065866975 -5621.0,0.4031699466419215 -5622.0,0.4030307207204083 -5623.0,0.4028915428775214 -5624.0,0.402752413096658 -5625.0,0.4026133313612208 -5626.0,0.40247429765461856 -5627.0,0.4023353119602654 -5628.0,0.4021963742615814 -5629.0,0.4020574845419923 -5630.0,0.4019186427849296 -5631.0,0.40177984897383046 -5632.0,0.40164110309213774 -5633.0,0.4015024051233002 -5634.0,0.40136375505077204 -5635.0,0.4012251528580134 -5636.0,0.40108659852849005 -5637.0,0.40094809204567344 -5638.0,0.40080963339304077 -5639.0,0.40067122255407495 -5640.0,0.4005328595122645 -5641.0,0.4003945442511038 -5642.0,0.4002562767540928 -5643.0,0.40011805700473724 -5644.0,0.3999798849865485 -5645.0,0.39984176068304367 -5646.0,0.3997036840777455 -5647.0,0.3995656551541824 -5648.0,0.3994276738958887 -5649.0,0.39928974028640407 -5650.0,0.39915185430927413 -5651.0,0.39901401594805 -5652.0,0.39887622518628874 -5653.0,0.39873848200755274 -5654.0,0.3986007863954103 -5655.0,0.3984631383334354 -5656.0,0.3983255378052075 -5657.0,0.39818798479431206 -5658.0,0.3980504792843398 -5659.0,0.3979130212588874 -5660.0,0.39777561070155715 -5661.0,0.3976382475959569 -5662.0,0.3975009319257003 -5663.0,0.39736366367440656 -5664.0,0.39722644282570063 -5665.0,0.397089269363213 -5666.0,0.39695214327057987 -5667.0,0.39681506453144316 -5668.0,0.3966780331294503 -5669.0,0.39654104904825455 -5670.0,0.39640411227151456 -5671.0,0.3962672227828949 -5672.0,0.3961303805660656 -5673.0,0.3959935856047024 -5674.0,0.3958568378824866 -5675.0,0.39572013738310524 -5676.0,0.395583484090251 -5677.0,0.395446877987622 -5678.0,0.3953103190589223 -5679.0,0.3951738072878613 -5680.0,0.3950373426581541 -5681.0,0.3949009251535216 -5682.0,0.39476455475769007 -5683.0,0.39462823145439163 -5684.0,0.3944919552273638 -5685.0,0.39435572606034985 -5686.0,0.3942195439370986 -5687.0,0.39408340884136467 -5688.0,0.39394732075690797 -5689.0,0.39381127966749424 -5690.0,0.39367528555689474 -5691.0,0.39353933840888644 -5692.0,0.3934034382072517 -5693.0,0.3932675849357788 -5694.0,0.3931317785782613 -5695.0,0.3929960191184985 -5696.0,0.3928603065402954 -5697.0,0.39272464082746233 -5698.0,0.39258902196381545 -5699.0,0.3924534499331763 -5700.0,0.3923179247193724 -5701.0,0.3921824463062363 -5702.0,0.3920470146776065 -5703.0,0.391911629817327 -5704.0,0.39177629170924744 -5705.0,0.3916410003372229 -5706.0,0.3915057556851141 -5707.0,0.39137055773678736 -5708.0,0.39123540647611454 -5709.0,0.3911003018869731 -5710.0,0.390965243953246 -5711.0,0.3908302326588219 -5712.0,0.39069526798759485 -5713.0,0.39056034992346456 -5714.0,0.39042547845033637 -5715.0,0.390290653552121 -5716.0,0.39015587521273487 -5717.0,0.3900211434160999 -5718.0,0.38988645814614353 -5719.0,0.38975181938679887 -5720.0,0.3896172271220045 -5721.0,0.3894826813357044 -5722.0,0.3893481820118484 -5723.0,0.3892137291343916 -5724.0,0.38907932268729484 -5725.0,0.3889449626545244 -5726.0,0.388810649020052 -5727.0,0.38867638176785513 -5728.0,0.3885421608819167 -5729.0,0.388407986346225 -5730.0,0.38827385814477405 -5731.0,0.3881397762615634 -5732.0,0.38800574068059795 -5733.0,0.3878717513858883 -5734.0,0.3877378083614505 -5735.0,0.3876039115913061 -5736.0,0.38747006105948223 -5737.0,0.3873362567500114 -5738.0,0.38720249864693185 -5739.0,0.3870687867342872 -5740.0,0.38693512099612654 -5741.0,0.38680150141650455 -5742.0,0.38666792797948135 -5743.0,0.38653440066912265 -5744.0,0.3864009194694996 -5745.0,0.38626748436468894 -5746.0,0.3861340953387727 -5747.0,0.3860007523758386 -5748.0,0.3858674554599798 -5749.0,0.38573420457529495 -5750.0,0.3856009997058882 -5751.0,0.3854678408358692 -5752.0,0.38533472794935303 -5753.0,0.3852016610304603 -5754.0,0.38506864006331704 -5755.0,0.3849356650320549 -5756.0,0.3848027359208109 -5757.0,0.3846698527137276 -5758.0,0.38453701539495294 -5759.0,0.3844042239486405 -5760.0,0.3842714783589491 -5761.0,0.38413877861004325 -5762.0,0.3840061246860928 -5763.0,0.3838735165712731 -5764.0,0.38374095424976495 -5765.0,0.3836084377057547 -5766.0,0.38347596692343405 -5767.0,0.3833435418870002 -5768.0,0.38321116258065585 -5769.0,0.383078828988609 -5770.0,0.38294654109507337 -5771.0,0.3828142988842679 -5772.0,0.382682102340417 -5773.0,0.38254995144775067 -5774.0,0.38241784619050423 -5775.0,0.38228578655291856 -5776.0,0.3821537725192398 -5777.0,0.3820218040737197 -5778.0,0.38188988120061546 -5779.0,0.3817580038841895 -5780.0,0.3816261721087099 -5781.0,0.38149438585845 -5782.0,0.38136264511768886 -5783.0,0.38123094987071054 -5784.0,0.3810993001018049 -5785.0,0.38096769579526707 -5786.0,0.38083613693539753 -5787.0,0.38070462350650236 -5788.0,0.38057315549289294 -5789.0,0.38044173287888605 -5790.0,0.380310355648804 -5791.0,0.3801790237869744 -5792.0,0.3800477372777303 -5793.0,0.3799164961054102 -5794.0,0.379785300254358 -5795.0,0.379654149708923 -5796.0,0.3795230444534599 -5797.0,0.37939198447232875 -5798.0,0.3792609697498951 -5799.0,0.3791300002705298 -5800.0,0.37899907601860916 -5801.0,0.37886819697851487 -5802.0,0.3787373631346341 -5803.0,0.37860657447135915 -5804.0,0.37847583097308807 -5805.0,0.37834513262422403 -5806.0,0.37821447940917563 -5807.0,0.378083871312357 -5808.0,0.3779533083181874 -5809.0,0.37782279041109174 -5810.0,0.37769231757550015 -5811.0,0.3775618897958482 -5812.0,0.3774315070565767 -5813.0,0.37730116934213204 -5814.0,0.3771708766369659 -5815.0,0.37704062892553525 -5816.0,0.3769104261923025 -5817.0,0.3767802684217354 -5818.0,0.3766501555983071 -5819.0,0.3765200877064961 -5820.0,0.3763900647307862 -5821.0,0.3762600866556667 -5822.0,0.376130153465632 -5823.0,0.3760002651451822 -5824.0,0.37587042167882245 -5825.0,0.3757406230510635 -5826.0,0.3756108692464211 -5827.0,0.3754811602494168 -5828.0,0.3753514960445771 -5829.0,0.37522187661643414 -5830.0,0.37509230194952514 -5831.0,0.3749627720283928 -5832.0,0.3748332868375852 -5833.0,0.37470384636165577 -5834.0,0.37457445058516303 -5835.0,0.3744450994926712 -5836.0,0.37431579306874946 -5837.0,0.3741865312979726 -5838.0,0.3740573141649206 -5839.0,0.3739281416541788 -5840.0,0.37379901375033786 -5841.0,0.3736699304379938 -5842.0,0.37354089170174787 -5843.0,0.3734118975262067 -5844.0,0.37328294789598226 -5845.0,0.37315404279569175 -5846.0,0.3730251822099578 -5847.0,0.3728963661234082 -5848.0,0.37276759452067615 -5849.0,0.37263886738640023 -5850.0,0.37251018470522407 -5851.0,0.3723815464617969 -5852.0,0.372252952640773 -5853.0,0.37212440322681223 -5854.0,0.37199589820457946 -5855.0,0.37186743755874496 -5856.0,0.3717390212739844 -5857.0,0.37161064933497856 -5858.0,0.3714823217264137 -5859.0,0.3713540384329812 -5860.0,0.37122579943937783 -5861.0,0.3710976047303056 -5862.0,0.3709694542904718 -5863.0,0.3708413481045891 -5864.0,0.3707132861573752 -5865.0,0.37058526843355344 -5866.0,0.37045729491785206 -5867.0,0.3703293655950049 -5868.0,0.3702014804497509 -5869.0,0.37007363946683414 -5870.0,0.3699458426310043 -5871.0,0.3698180899270161 -5872.0,0.3696903813396295 -5873.0,0.3695627168536099 -5874.0,0.36943509645372785 -5875.0,0.36930752012475915 -5876.0,0.3691799878514848 -5877.0,0.36905249961869124 -5878.0,0.36892505541117 -5879.0,0.3687976552137179 -5880.0,0.368670299011137 -5881.0,0.36854298678823477 -5882.0,0.36841571852982363 -5883.0,0.36828849422072146 -5884.0,0.36816131384575135 -5885.0,0.3680341773897416 -5886.0,0.36790708483752577 -5887.0,0.36778003617394256 -5888.0,0.36765303138383615 -5889.0,0.36752607045205565 -5890.0,0.3673991533634557 -5891.0,0.36727228010289575 -5892.0,0.36714545065524107 -5893.0,0.36701866500536157 -5894.0,0.36689192313813285 -5895.0,0.3667652250384353 -5896.0,0.366638570691155 -5897.0,0.3665119600811828 -5898.0,0.3663853931934151 -5899.0,0.3662588700127535 -5900.0,0.36613239052410446 -5901.0,0.36600595471238007 -5902.0,0.3658795625624974 -5903.0,0.3657532140593788 -5904.0,0.36562690918795177 -5905.0,0.3655006479331491 -5906.0,0.3653744302799088 -5907.0,0.36524825621317397 -5908.0,0.3651221257178929 -5909.0,0.36499603877901926 -5910.0,0.36486999538151166 -5911.0,0.3647439955103342 -5912.0,0.3646180391504559 -5913.0,0.3644921262868512 -5914.0,0.36436625690449936 -5915.0,0.36424043098838543 -5916.0,0.364114648523499 -5917.0,0.36398890949483526 -5918.0,0.36386321388739457 -5919.0,0.36373756168618215 -5920.0,0.3636119528762088 -5921.0,0.3634863874424901 -5922.0,0.36336086537004725 -5923.0,0.36323538664390614 -5924.0,0.3631099512490983 -5925.0,0.36298455917065997 -5926.0,0.362859210393633 -5927.0,0.36273390490306406 -5928.0,0.3626086426840052 -5929.0,0.3624834237215135 -5930.0,0.36235824800065125 -5931.0,0.3622331155064859 -5932.0,0.3621080262240901 -5933.0,0.3619829801385415 -5934.0,0.36185797723492324 -5935.0,0.36173301749832315 -5936.0,0.3616081009138345 -5937.0,0.36148322746655576 -5938.0,0.3613583971415903 -5939.0,0.3612336099240469 -5940.0,0.3611088657990392 -5941.0,0.3609841647516864 -5942.0,0.3608595067671122 -5943.0,0.36073489183044616 -5944.0,0.36061031992682235 -5945.0,0.3604857910413805 -5946.0,0.360361305159265 -5947.0,0.3602368622656258 -5948.0,0.36011246234561756 -5949.0,0.35998810538440046 -5950.0,0.3598637913671395 -5951.0,0.35973952027900497 -5952.0,0.3596152921051722 -5953.0,0.35949110683082175 -5954.0,0.35936696444113914 -5955.0,0.35924286492131513 -5956.0,0.3591188082565456 -5957.0,0.35899479443203136 -5958.0,0.35887082343297866 -5959.0,0.3587468952445984 -5960.0,0.35862300985210716 -5961.0,0.35849916724072606 -5962.0,0.3583753673956817 -5963.0,0.3582516103022056 -5964.0,0.35812789594553457 -5965.0,0.3580042243109102 -5966.0,0.3578805953835796 -5967.0,0.35775700914879444 -5968.0,0.357633465591812 -5969.0,0.3575099646978944 -5970.0,0.3573865064523089 -5971.0,0.35726309084032776 -5972.0,0.3571397178472285 -5973.0,0.35701638745829345 -5974.0,0.3568930996588103 -5975.0,0.3567698544340718 -5976.0,0.35664665176937554 -5977.0,0.35652349165002445 -5978.0,0.35640037406132635 -5979.0,0.3562772989885943 -5980.0,0.3561542664171462 -5981.0,0.35603127633230536 -5982.0,0.35590832871939976 -5983.0,0.35578542356376275 -5984.0,0.3556625608507326 -5985.0,0.3555397405656528 -5986.0,0.3554169626938716 -5987.0,0.3552942272207426 -5988.0,0.35517153413162433 -5989.0,0.35504888341188046 -5990.0,0.35492627504687957 -5991.0,0.35480370902199543 -5992.0,0.35468118532260673 -5993.0,0.35455870393409733 -5994.0,0.3544362648418562 -5995.0,0.3543138680312771 -5996.0,0.35419151348775907 -5997.0,0.35406920119670604 -5998.0,0.3539469311435271 -5999.0,0.3538247033136363 -6000.0,0.35370251769245276 -6001.0,0.35358037426540057 -6002.0,0.353458273017909 -6003.0,0.3533362139354122 -6004.0,0.3532141970033495 -6005.0,0.35309222220716496 -6006.0,0.3529702895323082 -6007.0,0.3528483989642332 -6008.0,0.35272655048839957 -6009.0,0.3526047440902715 -6010.0,0.3524829797553185 -6011.0,0.35236125746901487 -6012.0,0.35223957721684 -6013.0,0.35211793898427857 -6014.0,0.35199634275681974 -6015.0,0.3518747885199581 -6016.0,0.3517532762591931 -6017.0,0.35163180596002924 -6018.0,0.35151037760797593 -6019.0,0.3513889911885477 -6020.0,0.351267646687264 -6021.0,0.35114634408964945 -6022.0,0.3510250833812333 -6023.0,0.35090386454755024 -6024.0,0.3507826875741396 -6025.0,0.350661552446546 -6026.0,0.35054045915031873 -6027.0,0.35041940767101243 -6028.0,0.35029839799418633 -6029.0,0.35017743010540503 -6030.0,0.35005650399023786 -6031.0,0.34993561963425923 -6032.0,0.3498147770230486 -6033.0,0.34969397614219017 -6034.0,0.3495732169772734 -6035.0,0.3494524995138925 -6036.0,0.34933182373764693 -6037.0,0.3492111896341408 -6038.0,0.3490905971889834 -6039.0,0.3489700463877888 -6040.0,0.3488495372161764 -6041.0,0.34872906965977013 -6042.0,0.34860864370419925 -6043.0,0.34848825933509764 -6044.0,0.34836791653810456 -6045.0,0.3482476152988637 -6046.0,0.3481273556030243 -6047.0,0.34800713743624007 -6048.0,0.3478869607841699 -6049.0,0.34776682563247757 -6050.0,0.3476467319668318 -6051.0,0.34752667977290647 -6052.0,0.34740666903638 -6053.0,0.3472866997429362 -6054.0,0.3471667718782634 -6055.0,0.3470468854280553 -6056.0,0.34692704037801003 -6057.0,0.3468072367138313 -6058.0,0.34668747442122705 -6059.0,0.3465677534859108 -6060.0,0.34644807389360055 -6061.0,0.3463284356300195 -6062.0,0.3462088386808956 -6063.0,0.34608928303196185 -6064.0,0.345969768668956 -6065.0,0.34585029557762115 -6066.0,0.3457308637437047 -6067.0,0.3456114731529596 -6068.0,0.34549212379114314 -6069.0,0.345372815644018 -6070.0,0.3452535486973516 -6071.0,0.3451343229369161 -6072.0,0.34501513834848896 -6073.0,0.3448959949178521 -6074.0,0.34477689263079275 -6075.0,0.34465783147310275 -6076.0,0.34453881143057913 -6077.0,0.34441983248902347 -6078.0,0.3443008946342426 -6079.0,0.344181997852048 -6080.0,0.3440631421282563 -6081.0,0.34394432744868864 -6082.0,0.34382555379917157 -6083.0,0.343706821165536 -6084.0,0.3435881295336182 -6085.0,0.343469478889259 -6086.0,0.3433508692183043 -6087.0,0.3432323005066048 -6088.0,0.34311377274001614 -6089.0,0.3429952859043988 -6090.0,0.3428768399856182 -6091.0,0.3427584349695446 -6092.0,0.34264007084205306 -6093.0,0.34252174758902376 -6094.0,0.3424034651963414 -6095.0,0.342285223649896 -6096.0,0.34216702293558193 -6097.0,0.34204886303929893 -6098.0,0.3419307439469513 -6099.0,0.3418126656444483 -6100.0,0.34169462811770396 -6101.0,0.34157663135263744 -6102.0,0.3414586753351724 -6103.0,0.3413407600512377 -6104.0,0.3412228854867668 -6105.0,0.3411050516276983 -6106.0,0.3409872584599752 -6107.0,0.3408695059695458 -6108.0,0.3407517941423632 -6109.0,0.34063412296438494 -6110.0,0.340516492421574 -6111.0,0.3403989024998977 -6112.0,0.3402813531853286 -6113.0,0.34016384446384373 -6114.0,0.34004637632142537 -6115.0,0.3399289487440602 -6116.0,0.3398115617177402 -6117.0,0.3396942152284617 -6118.0,0.3395769092622264 -6119.0,0.3394596438050403 -6120.0,0.33934241884291466 -6121.0,0.33922523436186525 -6122.0,0.339108090347913 -6123.0,0.3389909867870833 -6124.0,0.3388739236654067 -6125.0,0.33875690096891825 -6126.0,0.33863991868365817 -6127.0,0.3385229767956713 -6128.0,0.33840607529100714 -6129.0,0.3382892141557205 -6130.0,0.3381723933758704 -6131.0,0.3380556129375212 -6132.0,0.3379388728267416 -6133.0,0.3378221730296057 -6134.0,0.33770551353219175 -6135.0,0.33758889432058325 -6136.0,0.33747231538086836 -6137.0,0.3373557766991402 -6138.0,0.33723927826149624 -6139.0,0.3371228200540394 -6140.0,0.3370064020628768 -6141.0,0.33689002427412085 -6142.0,0.33677368667388835 -6143.0,0.3366573892483012 -6144.0,0.33654113198348584 -6145.0,0.3364249148655737 -6146.0,0.336308737880701 -6147.0,0.3361926010150085 -6148.0,0.3360765042546421 -6149.0,0.3359604475857521 -6150.0,0.335844430994494 -6151.0,0.3357284544670277 -6152.0,0.33561251798951813 -6153.0,0.3354966215481349 -6154.0,0.33538076512905246 -6155.0,0.3352649487184498 -6156.0,0.3351491723025111 -6157.0,0.33503343586742496 -6158.0,0.3349177393993849 -6159.0,0.33480208288458907 -6160.0,0.33468646630924065 -6161.0,0.33457088965954734 -6162.0,0.3344553529217217 -6163.0,0.334339856081981 -6164.0,0.33422439912654733 -6165.0,0.33410898204164763 -6166.0,0.3339936048135133 -6167.0,0.3338782674283809 -6168.0,0.3337629698724912 -6169.0,0.3336477121320904 -6170.0,0.33353249419342884 -6171.0,0.333417316042762 -6172.0,0.3333021776663498 -6173.0,0.3331870790504573 -6174.0,0.33307202018135385 -6175.0,0.33295700104531395 -6176.0,0.3328420216286165 -6177.0,0.33272708191754546 -6178.0,0.3326121818983892 -6179.0,0.3324973215574411 -6180.0,0.3323825008809991 -6181.0,0.33226771985536596 -6182.0,0.33215297846684905 -6183.0,0.33203827670176067 -6184.0,0.3319236145464177 -6185.0,0.3318089919871418 -6186.0,0.3316944090102594 -6187.0,0.33157986560210134 -6188.0,0.3314653617490037 -6189.0,0.33135089743730683 -6190.0,0.3312364726533561 -6191.0,0.33112208738350135 -6192.0,0.33100774161409735 -6193.0,0.3308934353315034 -6194.0,0.33077916852208367 -6195.0,0.33066494117220685 -6196.0,0.3305507532682466 -6197.0,0.33043660479658105 -6198.0,0.3303224957435931 -6199.0,0.3302084260956704 -6200.0,0.33009439583920536 -6201.0,0.32998040496059483 -6202.0,0.3298664534462406 -6203.0,0.32975254128254916 -6204.0,0.32963866845593154 -6205.0,0.3295248349528036 -6206.0,0.3294110407595857 -6207.0,0.32929728586270324 -6208.0,0.32918357024858586 -6209.0,0.3290698939036683 -6210.0,0.32895625681438967 -6211.0,0.328842658967194 -6212.0,0.3287291003485298 -6213.0,0.32861558094485044 -6214.0,0.3285021007426138 -6215.0,0.32838865972828263 -6216.0,0.3282752578883241 -6217.0,0.32816189520921035 -6218.0,0.3280485716774179 -6219.0,0.32793528727942817 -6220.0,0.3278220420017271 -6221.0,0.3277088358308054 -6222.0,0.3275956687531584 -6223.0,0.32748254075528604 -6224.0,0.32736945182369304 -6225.0,0.32725640194488864 -6226.0,0.3271433911053869 -6227.0,0.3270304192917064 -6228.0,0.3269174864903705 -6229.0,0.32680459268790696 -6230.0,0.32669173787084854 -6231.0,0.3265789220257324 -6232.0,0.32646614513910055 -6233.0,0.32635340719749933 -6234.0,0.3262407081874802 -6235.0,0.32612804809559864 -6236.0,0.32601542690841545 -6237.0,0.3259028446124955 -6238.0,0.32579030119440877 -6239.0,0.3256777966407294 -6240.0,0.3255653309380366 -6241.0,0.325452904072914 -6242.0,0.3253405160319498 -6243.0,0.3252281668017371 -6244.0,0.32511585636887325 -6245.0,0.32500358471996066 -6246.0,0.3248913518416059 -6247.0,0.3247791577204206 -6248.0,0.3246670023430207 -6249.0,0.324554885696027 -6250.0,0.3244428077660646 -6251.0,0.32433076853976367 -6252.0,0.32421876800375854 -6253.0,0.3241068061446885 -6254.0,0.32399488294919726 -6255.0,0.3238829984039332 -6256.0,0.3237711524955493 -6257.0,0.3236593452107032 -6258.0,0.32354757653605704 -6259.0,0.3234358464582776 -6260.0,0.3233241549640365 -6261.0,0.32321250204000956 -6262.0,0.3231008876728775 -6263.0,0.32298931184932544 -6264.0,0.32287777455604333 -6265.0,0.32276627577972544 -6266.0,0.322654815507071 -6267.0,0.3225433937247833 -6268.0,0.3224320104195708 -6269.0,0.32232066557814615 -6270.0,0.32220935918722676 -6271.0,0.32209809123353456 -6272.0,0.3219868617037962 -6273.0,0.32187567058474265 -6274.0,0.3217645178631098 -6275.0,0.3216534035256377 -6276.0,0.3215423275590715 -6277.0,0.3214312899501604 -6278.0,0.32132029068565854 -6279.0,0.3212093297523246 -6280.0,0.3210984071369215 -6281.0,0.3209875228262173 -6282.0,0.320876676806984 -6283.0,0.3207658690659988 -6284.0,0.3206550995900428 -6285.0,0.32054436836590233 -6286.0,0.3204336753803677 -6287.0,0.3203230206202342 -6288.0,0.32021240407230145 -6289.0,0.3201018257233738 -6290.0,0.3199912855602599 -6291.0,0.3198807835697733 -6292.0,0.3197703197387317 -6293.0,0.31965989405395784 -6294.0,0.3195495065022785 -6295.0,0.3194391570705254 -6296.0,0.31932884574553455 -6297.0,0.31921857251414665 -6298.0,0.319108337363207 -6299.0,0.3189981402795652 -6300.0,0.3188879812500757 -6301.0,0.31877786026159716 -6302.0,0.3186677773009931 -6303.0,0.3185577323551313 -6304.0,0.31844772541088434 -6305.0,0.318337756455129 -6306.0,0.31822782547474704 -6307.0,0.3181179324566243 -6308.0,0.3180080773876514 -6309.0,0.31789826025472334 -6310.0,0.31778848104473995 -6311.0,0.3176787397446052 -6312.0,0.31756903634122785 -6313.0,0.3174593708215209 -6314.0,0.31734974317240233 -6315.0,0.31724015338079414 -6316.0,0.31713060143362315 -6317.0,0.3170210873178207 -6318.0,0.31691161102032234 -6319.0,0.3168021725280685 -6320.0,0.316692771828004 -6321.0,0.31658340890707803 -6322.0,0.3164740837522444 -6323.0,0.3163647963504615 -6324.0,0.316255546688692 -6325.0,0.3161463347539034 -6326.0,0.3160371605330673 -6327.0,0.3159280240131602 -6328.0,0.31581892518116284 -6329.0,0.3157098640240605 -6330.0,0.3156008405288429 -6331.0,0.31549185468250457 -6332.0,0.31538290647204403 -6333.0,0.3152739958844648 -6334.0,0.3151651229067744 -6335.0,0.3150562875259852 -6336.0,0.31494748972911396 -6337.0,0.3148387295031818 -6338.0,0.31473000683521457 -6339.0,0.3146213217122423 -6340.0,0.31451267412129974 -6341.0,0.31440406404942595 -6342.0,0.3142954914836646 -6343.0,0.3141869564110637 -6344.0,0.31407845881867597 -6345.0,0.31396999869355824 -6346.0,0.31386157602277215 -6347.0,0.31375319079338354 -6348.0,0.313644842992463 -6349.0,0.31353653260708525 -6350.0,0.3134282596243298 -6351.0,0.3133200240312804 -6352.0,0.3132118258150254 -6353.0,0.31310366496265735 -6354.0,0.3129955414612737 -6355.0,0.31288745529797596 -6356.0,0.31277940645987024 -6357.0,0.3126713949340672 -6358.0,0.3125634207076818 -6359.0,0.31245548376783344 -6360.0,0.31234758410164604 -6361.0,0.3122397216962481 -6362.0,0.3121318965387722 -6363.0,0.3120241086163558 -6364.0,0.3119163579161404 -6365.0,0.31180864442527234 -6366.0,0.3117009681309019 -6367.0,0.3115933290201844 -6368.0,0.311485727080279 -6369.0,0.3113781622983498 -6370.0,0.3112706346615649 -6371.0,0.3111631441570972 -6372.0,0.31105569077212375 -6373.0,0.3109482744938262 -6374.0,0.3108408953093907 -6375.0,0.31073355320600743 -6376.0,0.3106262481708715 -6377.0,0.31051898019118196 -6378.0,0.31041174925414283 -6379.0,0.31030455534696194 -6380.0,0.31019739845685207 -6381.0,0.31009027857103 -6382.0,0.3099831956767172 -6383.0,0.3098761497611395 -6384.0,0.30976914081152707 -6385.0,0.30966216881511444 -6386.0,0.3095552337591408 -6387.0,0.3094483356308494 -6388.0,0.30934147441748816 -6389.0,0.3092346501063093 -6390.0,0.30912786268456954 -6391.0,0.3090211121395297 -6392.0,0.3089143984584555 -6393.0,0.3088077216286166 -6394.0,0.3087010816372872 -6395.0,0.3085944784717461 -6396.0,0.3084879121192762 -6397.0,0.3083813825671649 -6398.0,0.308274889802704 -6399.0,0.3081684338131898 -6400.0,0.30806201458592275 -6401.0,0.30795563210820787 -6402.0,0.3078492863673545 -6403.0,0.30774297735067635 -6404.0,0.3076367050454915 -6405.0,0.3075304694391226 -6406.0,0.30742427051889626 -6407.0,0.307318108272144 -6408.0,0.3072119826862012 -6409.0,0.307105893748408 -6410.0,0.30699984144610865 -6411.0,0.306893825766652 -6412.0,0.3067878466973911 -6413.0,0.30668190422568337 -6414.0,0.30657599833889077 -6415.0,0.30647012902437937 -6416.0,0.30636429626951983 -6417.0,0.30625850006168703 -6418.0,0.30615274038826024 -6419.0,0.3060470172366231 -6420.0,0.3059413305941637 -6421.0,0.3058356804482742 -6422.0,0.30573006678635156 -6423.0,0.3056244895957966 -6424.0,0.3055189488640149 -6425.0,0.3054134445784161 -6426.0,0.30530797672641447 -6427.0,0.3052025452954283 -6428.0,0.3050971502728805 -6429.0,0.30499179164619805 -6430.0,0.3048864694028126 -6431.0,0.30478118353016 -6432.0,0.3046759340156802 -6433.0,0.30457072084681797 -6434.0,0.30446554401102194 -6435.0,0.3043604034957454 -6436.0,0.30425529928844575 -6437.0,0.3041502313765849 -6438.0,0.304045199747629 -6439.0,0.30394020438904856 -6440.0,0.30383524528831835 -6441.0,0.3037303224329176 -6442.0,0.3036254358103296 -6443.0,0.30352058540804233 -6444.0,0.3034157712135478 -6445.0,0.3033109932143425 -6446.0,0.3032062513979271 -6447.0,0.3031015457518068 -6448.0,0.30299687626349087 -6449.0,0.30289224292049294 -6450.0,0.30278764571033123 -6451.0,0.30268308462052784 -6452.0,0.3025785596386096 -6453.0,0.30247407075210714 -6454.0,0.30236961794855605 -6455.0,0.3022652012154956 -6456.0,0.30216082054046983 -6457.0,0.3020564759110267 -6458.0,0.30195216731471886 -6459.0,0.30184789473910284 -6460.0,0.30174365817173987 -6461.0,0.30163945760019517 -6462.0,0.3015352930120384 -6463.0,0.3014311643948435 -6464.0,0.3013270717361887 -6465.0,0.30122301502365645 -6466.0,0.3011189942448337 -6467.0,0.30101500938731124 -6468.0,0.3009110604386846 -6469.0,0.30080714738655356 -6470.0,0.30070327021852183 -6471.0,0.30059942892219776 -6472.0,0.3004956234851937 -6473.0,0.3003918538951266 -6474.0,0.3002881201396174 -6475.0,0.30018442220629143 -6476.0,0.3000807600827783 -6477.0,0.29997713375671187 -6478.0,0.2998735432157302 -6479.0,0.2997699884474758 -6480.0,0.2996664694395953 -6481.0,0.29956298617973964 -6482.0,0.29945953865556396 -6483.0,0.2993561268547279 -6484.0,0.29925275076489494 -6485.0,0.2991494103737333 -6486.0,0.29904610566891504 -6487.0,0.29894283663811677 -6488.0,0.29883960326901926 -6489.0,0.29873640554930747 -6490.0,0.2986332434666707 -6491.0,0.29853011700880233 -6492.0,0.2984270261634004 -6493.0,0.2983239709181666 -6494.0,0.2982209512608075 -6495.0,0.2981179671790333 -6496.0,0.2980150186605591 -6497.0,0.29791210569310356 -6498.0,0.2978092282643901 -6499.0,0.29770638636214614 -6500.0,0.2976035799741034 -6501.0,0.2975008090879978 -6502.0,0.2973980736915696 -6503.0,0.2972953737725631 -6504.0,0.2971927093187271 -6505.0,0.2970900803178143 -6506.0,0.2969874867575819 -6507.0,0.2968849286257913 -6508.0,0.29678240591020794 -6509.0,0.29667991859860177 -6510.0,0.29657746667874657 -6511.0,0.2964750501384208 -6512.0,0.29637266896540676 -6513.0,0.29627032314749124 -6514.0,0.296168012672465 -6515.0,0.29606573752812326 -6516.0,0.2959634977022652 -6517.0,0.2958612931826946 -6518.0,0.29575912395721893 -6519.0,0.29565699001365037 -6520.0,0.2955548913398049 -6521.0,0.295452827923503 -6522.0,0.2953507997525692 -6523.0,0.2952488068148324 -6524.0,0.29514684909812544 -6525.0,0.29504492659028553 -6526.0,0.29494303927915416 -6527.0,0.2948411871525768 -6528.0,0.29473937019840335 -6529.0,0.2946375884044876 -6530.0,0.29453584175868797 -6531.0,0.29443413024886667 -6532.0,0.2943324538628903 -6533.0,0.29423081258862954 -6534.0,0.29412920641395945 -6535.0,0.2940276353267591 -6536.0,0.29392609931491176 -6537.0,0.293824598366305 -6538.0,0.2937231324688304 -6539.0,0.29362170161038387 -6540.0,0.2935203057788655 -6541.0,0.2934189449621794 -6542.0,0.293317619148234 -6543.0,0.293216328324942 -6544.0,0.29311507248021995 -6545.0,0.2930138516019889 -6546.0,0.2929126656781738 -6547.0,0.2928115146967041 -6548.0,0.292710398645513 -6549.0,0.2926093175125383 -6550.0,0.29250827128572165 -6551.0,0.29240725995300904 -6552.0,0.2923062835023504 -6553.0,0.29220534192170017 -6554.0,0.2921044351990166 -6555.0,0.29200356332226235 -6556.0,0.2919027262794041 -6557.0,0.29180192405841276 -6558.0,0.2917011566472633 -6559.0,0.291600424033935 -6560.0,0.29149972620641107 -6561.0,0.29139906315267905 -6562.0,0.29129843486073065 -6563.0,0.29119784131856147 -6564.0,0.29109728251417166 -6565.0,0.29099675843556505 -6566.0,0.29089626907075006 -6567.0,0.2907958144077389 -6568.0,0.29069539443454817 -6569.0,0.2905950091391984 -6570.0,0.2904946585097144 -6571.0,0.29039434253412505 -6572.0,0.2902940612004634 -6573.0,0.2901938144967667 -6574.0,0.2900936024110761 -6575.0,0.2899934249314371 -6576.0,0.28989328204589926 -6577.0,0.2897931737425163 -6578.0,0.28969310000934595 -6579.0,0.2895930608344502 -6580.0,0.28949305620589505 -6581.0,0.28939308611175074 -6582.0,0.2892931505400915 -6583.0,0.28919324947899594 -6584.0,0.2890933829165463 -6585.0,0.28899355084082945 -6586.0,0.288893753239936 -6587.0,0.28879399010196094 -6588.0,0.28869426141500315 -6589.0,0.28859456716716586 -6590.0,0.28849490734655614 -6591.0,0.2883952819412854 -6592.0,0.28829569093946894 -6593.0,0.2881961343292264 -6594.0,0.2880966120986813 -6595.0,0.2879971242359615 -6596.0,0.2878976707291987 -6597.0,0.2877982515665289 -6598.0,0.287698866736092 -6599.0,0.2875995162260322 -6600.0,0.2875002000244978 -6601.0,0.2874009181196409 -6602.0,0.2873016704996181 -6603.0,0.2872024571525897 -6604.0,0.28710327806672037 -6605.0,0.2870041332301787 -6606.0,0.2869050226311376 -6607.0,0.28680594625777367 -6608.0,0.286706904098268 -6609.0,0.28660789614080545 -6610.0,0.2865089223735753 -6611.0,0.28640998278477037 -6612.0,0.2863110773625882 -6613.0,0.2862122060952299 -6614.0,0.286113368970901 -6615.0,0.28601456597781083 -6616.0,0.285915797104173 -6617.0,0.285817062338205 -6618.0,0.2857183616681285 -6619.0,0.28561969508216933 -6620.0,0.28552106256855725 -6621.0,0.28542246411552613 -6622.0,0.28532389971131383 -6623.0,0.2852253693441624 -6624.0,0.28512687300231787 -6625.0,0.28502841067403034 -6626.0,0.2849299823475539 -6627.0,0.28483158801114694 -6628.0,0.2847332276530715 -6629.0,0.2846349012615942 -6630.0,0.2845366088249851 -6631.0,0.28443835033151893 -6632.0,0.2843401257694739 -6633.0,0.2842419351271327 -6634.0,0.2841437783927818 -6635.0,0.284045655554712 -6636.0,0.2839475666012177 -6637.0,0.2838495115205978 -6638.0,0.28375149030115504 -6639.0,0.28365350293119607 -6640.0,0.2835555493990318 -6641.0,0.2834576296929771 -6642.0,0.28335974380135087 -6643.0,0.28326189171247595 -6644.0,0.2831640734146794 -6645.0,0.2830662888962921 -6646.0,0.2829685381456492 -6647.0,0.28287082115108964 -6648.0,0.2827731379009566 -6649.0,0.2826754883835971 -6650.0,0.2825778725873623 -6651.0,0.28248029050060725 -6652.0,0.28238274211169123 -6653.0,0.2822852274089774 -6654.0,0.282187746380833 -6655.0,0.2820902990156292 -6656.0,0.2819928853017412 -6657.0,0.2818955052275484 -6658.0,0.28179815878143394 -6659.0,0.2817008459517852 -6660.0,0.2816035667269933 -6661.0,0.28150632109545376 -6662.0,0.2814091090455657 -6663.0,0.28131193056573256 -6664.0,0.28121478564436153 -6665.0,0.28111767426986406 -6666.0,0.28102059643065536 -6667.0,0.28092355211515485 -6668.0,0.28082654131178575 -6669.0,0.28072956400897553 -6670.0,0.2806326201951553 -6671.0,0.28053570985876053 -6672.0,0.2804388329882304 -6673.0,0.28034198957200834 -6674.0,0.2802451795985415 -6675.0,0.28014840305628125 -6676.0,0.2800516599336829 -6677.0,0.2799549502192056 -6678.0,0.27985827390131257 -6679.0,0.2797616309684711 -6680.0,0.2796650214091524 -6681.0,0.2795684452118316 -6682.0,0.2794719023649879 -6683.0,0.2793753928571044 -6684.0,0.2792789166766683 -6685.0,0.2791824738121706 -6686.0,0.27908606425210647 -6687.0,0.2789896879849748 -6688.0,0.2788933449992788 -6689.0,0.27879703528352534 -6690.0,0.27870075882622536 -6691.0,0.27860451561589383 -6692.0,0.2785083056410496 -6693.0,0.2784121288902155 -6694.0,0.2783159853519184 -6695.0,0.27821987501468914 -6696.0,0.27812379786706226 -6697.0,0.27802775389757667 -6698.0,0.27793174309477486 -6699.0,0.27783576544720356 -6700.0,0.27773982094341326 -6701.0,0.27764390957195856 -6702.0,0.27754803132139777 -6703.0,0.27745218618029355 -6704.0,0.27735637413721204 -6705.0,0.2772605951807237 -6706.0,0.27716484929940277 -6707.0,0.2770691364818275 -6708.0,0.27697345671657997 -6709.0,0.2768778099922463 -6710.0,0.27678219629741657 -6711.0,0.2766866156206848 -6712.0,0.2765910679506488 -6713.0,0.2764955532759105 -6714.0,0.27640007158507574 -6715.0,0.2763046228667541 -6716.0,0.27620920710955943 -6717.0,0.2761138243021092 -6718.0,0.27601847443302496 -6719.0,0.2759231574909322 -6720.0,0.2758278734644603 -6721.0,0.2757326223422425 -6722.0,0.27563740411291615 -6723.0,0.2755422187651223 -6724.0,0.2754470662875061 -6725.0,0.2753519466687165 -6726.0,0.2752568598974065 -6727.0,0.2751618059622329 -6728.0,0.2750667848518564 -6729.0,0.2749717965549418 -6730.0,0.2748768410601576 -6731.0,0.27478191835617627 -6732.0,0.2746870284316743 -6733.0,0.27459217127533203 -6734.0,0.2744973468758336 -6735.0,0.27440255522186724 -6736.0,0.27430779630212493 -6737.0,0.2742130701053027 -6738.0,0.2741183766201003 -6739.0,0.27402371583522156 -6740.0,0.27392908773937413 -6741.0,0.2738344923212696 -6742.0,0.2737399295696233 -6743.0,0.27364539947315475 -6744.0,0.2735509020205871 -6745.0,0.2734564372006475 -6746.0,0.2733620050020669 -6747.0,0.27326760541358047 -6748.0,0.2731732384239268 -6749.0,0.27307890402184876 -6750.0,0.2729846021960928 -6751.0,0.27289033293540943 -6752.0,0.2727960962285531 -6753.0,0.27270189206428197 -6754.0,0.2726077204313582 -6755.0,0.2725135813185478 -6756.0,0.27241947471462075 -6757.0,0.27232540060835064 -6758.0,0.2722313589885153 -6759.0,0.2721373498438961 -6760.0,0.2720433731632785 -6761.0,0.2719494289354517 -6762.0,0.271855517149209 -6763.0,0.2717616377933473 -6764.0,0.2716677908566674 -6765.0,0.2715739763279742 -6766.0,0.2714801941960763 -6767.0,0.271386444449786 -6768.0,0.2712927270779198 -6769.0,0.2711990420692978 -6770.0,0.27110538941274415 -6771.0,0.2710117690970868 -6772.0,0.2709181811111574 -6773.0,0.2708246254437917 -6774.0,0.2707311020838291 -6775.0,0.270637611020113 -6776.0,0.2705441522414906 -6777.0,0.27045072573681295 -6778.0,0.2703573314949349 -6779.0,0.2702639695047153 -6780.0,0.2701706397550166 -6781.0,0.27007734223470536 -6782.0,0.2699840769326518 -6783.0,0.26989084383773015 -6784.0,0.2697976429388182 -6785.0,0.269704474224798 -6786.0,0.2696113376845549 -6787.0,0.2695182333069787 -6788.0,0.26942516108096254 -6789.0,0.2693321209954036 -6790.0,0.26923911303920295 -6791.0,0.26914613720126535 -6792.0,0.2690531934704995 -6793.0,0.2689602818358179 -6794.0,0.2688674022861368 -6795.0,0.2687745548103764 -6796.0,0.2686817393974607 -6797.0,0.2685889560363174 -6798.0,0.26849620471587826 -6799.0,0.2684034854250786 -6800.0,0.26831079815285774 -6801.0,0.26821814288815876 -6802.0,0.2681255196199286 -6803.0,0.26803292833711784 -6804.0,0.26794036902868124 -6805.0,0.26784784168357695 -6806.0,0.2677553462907672 -6807.0,0.26766288283921796 -6808.0,0.267570451317899 -6809.0,0.26747805171578404 -6810.0,0.2673856840218503 -6811.0,0.26729334822507916 -6812.0,0.26720104431445546 -6813.0,0.2671087722789681 -6814.0,0.2670165321076097 -6815.0,0.2669243237893767 -6816.0,0.26683214731326926 -6817.0,0.2667400026682915 -6818.0,0.26664788984345106 -6819.0,0.26655580882775975 -6820.0,0.26646375961023283 -6821.0,0.2663717421798896 -6822.0,0.266279756525753 -6823.0,0.2661878026368498 -6824.0,0.2660958805022106 -6825.0,0.26600399011086984 -6826.0,0.26591213145186543 -6827.0,0.2658203045142395 -6828.0,0.26572850928703773 -6829.0,0.2656367457593096 -6830.0,0.26554501392010843 -6831.0,0.2654533137584912 -6832.0,0.2653616452635188 -6833.0,0.26527000842425585 -6834.0,0.26517840322977076 -6835.0,0.2650868296691356 -6836.0,0.2649952877314265 -6837.0,0.26490377740572296 -6838.0,0.2648122986811086 -6839.0,0.2647208515466706 -6840.0,0.2646294359915001 -6841.0,0.2645380520046917 -6842.0,0.2644466995753442 -6843.0,0.2643553786925597 -6844.0,0.26426408934544443 -6845.0,0.26417283152310816 -6846.0,0.26408160521466445 -6847.0,0.2639904104092309 -6848.0,0.2638992470959283 -6849.0,0.2638081152638818 -6850.0,0.2637170149022199 -6851.0,0.2636259460000751 -6852.0,0.2635349085465834 -6853.0,0.2634439025308848 -6854.0,0.2633529279421229 -6855.0,0.2632619847694451 -6856.0,0.2631710730020026 -6857.0,0.2630801926289502 -6858.0,0.2629893436394466 -6859.0,0.2628985260226542 -6860.0,0.26280773976773897 -6861.0,0.26271698486387096 -6862.0,0.26262626130022365 -6863.0,0.2625355690659744 -6864.0,0.26244490815030436 -6865.0,0.26235427854239823 -6866.0,0.2622636802314447 -6867.0,0.2621731132066359 -6868.0,0.26208257745716795 -6869.0,0.26199207297224053 -6870.0,0.26190159974105715 -6871.0,0.26181115775282504 -6872.0,0.26172074699675507 -6873.0,0.2616303674620619 -6874.0,0.26154001913796404 -6875.0,0.2614497020136834 -6876.0,0.2613594160784459 -6877.0,0.2612691613214811 -6878.0,0.2611789377320223 -6879.0,0.2610887452993063 -6880.0,0.2609985840125741 -6881.0,0.2609084538610698 -6882.0,0.26081835483404175 -6883.0,0.2607282869207417 -6884.0,0.2606382501104252 -6885.0,0.2605482443923516 -6886.0,0.2604582697557837 -6887.0,0.2603683261899884 -6888.0,0.26027841368423593 -6889.0,0.2601885322278005 -6890.0,0.26009868180995976 -6891.0,0.2600088624199954 -6892.0,0.2599190740471924 -6893.0,0.25982931668083986 -6894.0,0.25973959031023025 -6895.0,0.25964989492465995 -6896.0,0.25956023051342886 -6897.0,0.25947059706584086 -6898.0,0.25938099457120306 -6899.0,0.2592914230188268 -6900.0,0.25920188239802666 -6901.0,0.2591123726981212 -6902.0,0.25902289390843247 -6903.0,0.2589334460182864 -6904.0,0.2588440290170125 -6905.0,0.25875464289394384 -6906.0,0.25866528763841756 -6907.0,0.25857596323977394 -6908.0,0.2584866696873575 -6909.0,0.25839740697051594 -6910.0,0.25830817507860104 -6911.0,0.258218974000968 -6912.0,0.2581298037269758 -6913.0,0.25804066424598704 -6914.0,0.25795155554736815 -6915.0,0.2578624776204889 -6916.0,0.2577734304547232 -6917.0,0.25768441403944814 -6918.0,0.2575954283640449 -6919.0,0.25750647341789795 -6920.0,0.25741754919039583 -6921.0,0.25732865567093033 -6922.0,0.2572397928488972 -6923.0,0.25715096071369575 -6924.0,0.2570621592547289 -6925.0,0.2569733884614034 -6926.0,0.2568846483231294 -6927.0,0.256795938829321 -6928.0,0.2567072599693956 -6929.0,0.25661861173277467 -6930.0,0.256529994108883 -6931.0,0.2564414070871492 -6932.0,0.2563528506570054 -6933.0,0.25626432480788763 -6934.0,0.25617582952923523 -6935.0,0.25608736481049144 -6936.0,0.2559989306411031 -6937.0,0.2559105270105206 -6938.0,0.25582215390819796 -6939.0,0.2557338113235931 -6940.0,0.2556454992461672 -6941.0,0.2555572176653854 -6942.0,0.2554689665707164 -6943.0,0.2553807459516323 -6944.0,0.2552925557976092 -6945.0,0.2552043960981265 -6946.0,0.2551162668426676 -6947.0,0.25502816802071904 -6948.0,0.25494009962177155 -6949.0,0.25485206163531904 -6950.0,0.25476405405085933 -6951.0,0.2546760768578936 -6952.0,0.254588130045927 -6953.0,0.254500213604468 -6954.0,0.25441232752302884 -6955.0,0.25432447179112533 -6956.0,0.254236646398277 -6957.0,0.2541488513340068 -6958.0,0.25406108658784154 -6959.0,0.2539733521493114 -6960.0,0.2538856480079504 -6961.0,0.253797974153296 -6962.0,0.25371033057488945 -6963.0,0.2536227172622755 -6964.0,0.25353513420500234 -6965.0,0.2534475813926222 -6966.0,0.2533600588146905 -6967.0,0.25327256646076646 -6968.0,0.2531851043204129 -6969.0,0.2530976723831963 -6970.0,0.25301027063868653 -6971.0,0.2529228990764574 -6972.0,0.2528355576860858 -6973.0,0.2527482464571528 -6974.0,0.25266096537924276 -6975.0,0.25257371444194365 -6976.0,0.25248649363484704 -6977.0,0.2523993029475482 -6978.0,0.25231214236964583 -6979.0,0.25222501189074237 -6980.0,0.2521379115004438 -6981.0,0.25205084118835963 -6982.0,0.25196380094410303 -6983.0,0.25187679075729075 -6984.0,0.2517898106175431 -6985.0,0.25170286051448393 -6986.0,0.25161594043774077 -6987.0,0.25152905037694473 -6988.0,0.25144219032173043 -6989.0,0.251355360261736 -6990.0,0.25126856018660343 -6991.0,0.25118179008597796 -6992.0,0.2510950499495086 -6993.0,0.2510083397668479 -6994.0,0.25092165952765194 -6995.0,0.2508350092215804 -6996.0,0.2507483888382966 -6997.0,0.2506617983674672 -6998.0,0.25057523779876273 -6999.0,0.2504887071218571 -7000.0,0.25040220632642785 -7001.0,0.25031573540215607 -7002.0,0.2502292943387263 -7003.0,0.25014288312582694 -7004.0,0.25005650175314964 -7005.0,0.2499701502103898 -7006.0,0.24988382848724616 -7007.0,0.24979753657342135 -7008.0,0.24971127445862126 -7009.0,0.2496250421325555 -7010.0,0.24953883958493717 -7011.0,0.24945266680548295 -7012.0,0.249366523783913 -7013.0,0.24928041050995114 -7014.0,0.24919432697332466 -7015.0,0.24910827316376447 -7016.0,0.24902224907100487 -7017.0,0.2489362546847839 -7018.0,0.24885028999484307 -7019.0,0.24876435499092736 -7020.0,0.2486784496627854 -7021.0,0.24859257400016926 -7022.0,0.2485067279928347 -7023.0,0.24842091163054075 -7024.0,0.24833512490305032 -7025.0,0.24824936780012952 -7026.0,0.2481636403115483 -7027.0,0.24807794242707987 -7028.0,0.2479922741365012 -7029.0,0.2479066354295926 -7030.0,0.24782102629613809 -7031.0,0.247735446725925 -7032.0,0.2476498967087445 -7033.0,0.24756437623439087 -7034.0,0.24747888529266232 -7035.0,0.24739342387336027 -7036.0,0.24730799196628986 -7037.0,0.24722258956125975 -7038.0,0.24713721664808194 -7039.0,0.24705187321657218 -7040.0,0.2469665592565495 -7041.0,0.2468812747578367 -7042.0,0.2467960197102598 -7043.0,0.24671079410364863 -7044.0,0.2466255979278363 -7045.0,0.24654043117265964 -7046.0,0.24645529382795878 -7047.0,0.2463701858835775 -7048.0,0.24628510732936298 -7049.0,0.2462000581551661 -7050.0,0.24611503835084095 -7051.0,0.24603004790624544 -7052.0,0.24594508681124072 -7053.0,0.24586015505569161 -7054.0,0.2457752526294663 -7055.0,0.24569037952243664 -7056.0,0.24560553572447785 -7057.0,0.24552072122546867 -7058.0,0.2454359360152914 -7059.0,0.24535118008383167 -7060.0,0.24526645342097886 -7061.0,0.24518175601662556 -7062.0,0.24509708786066814 -7063.0,0.2450124489430061 -7064.0,0.24492783925354286 -7065.0,0.24484325878218494 -7066.0,0.2447587075188426 -7067.0,0.2446741854534294 -7068.0,0.24458969257586255 -7069.0,0.24450522887606263 -7070.0,0.24442079434395378 -7071.0,0.2443363889694635 -7072.0,0.24425201274252292 -7073.0,0.2441676656530665 -7074.0,0.24408334769103227 -7075.0,0.2439990588463618 -7076.0,0.2439147991089999 -7077.0,0.24383056846889514 -7078.0,0.2437463669159993 -7079.0,0.24366219444026785 -7080.0,0.24357805103165953 -7081.0,0.24349393668013672 -7082.0,0.24340985137566512 -7083.0,0.24332579510821406 -7084.0,0.24324176786775614 -7085.0,0.2431577696442676 -7086.0,0.24307380042772803 -7087.0,0.24298986020812052 -7088.0,0.2429059489754316 -7089.0,0.2428220667196513 -7090.0,0.24273821343077306 -7091.0,0.24265438909879383 -7092.0,0.2425705937137139 -7093.0,0.2424868272655371 -7094.0,0.24240308974427086 -7095.0,0.24231938113992568 -7096.0,0.2422357014425159 -7097.0,0.24215205064205905 -7098.0,0.24206842872857628 -7099.0,0.241984835692092 -7100.0,0.24190127152263427 -7101.0,0.24181773621023442 -7102.0,0.24173422974492736 -7103.0,0.2416507521167513 -7104.0,0.24156730331574805 -7105.0,0.24148388333196272 -7106.0,0.24140049215544396 -7107.0,0.24131712977624373 -7108.0,0.24123379618441762 -7109.0,0.24115049137002442 -7110.0,0.2410672153231266 -7111.0,0.2409839680337898 -7112.0,0.24090074949208332 -7113.0,0.2408175596880798 -7114.0,0.24073439861185522 -7115.0,0.24065126625348918 -7116.0,0.24056816260306446 -7117.0,0.24048508765066756 -7118.0,0.2404020413863881 -7119.0,0.24031902380031936 -7120.0,0.24023603488255788 -7121.0,0.24015307462320376 -7122.0,0.24007014301236038 -7123.0,0.23998724004013466 -7124.0,0.2399043656966368 -7125.0,0.23982151997198062 -7126.0,0.2397387028562831 -7127.0,0.23965591433966485 -7128.0,0.23957315441224974 -7129.0,0.23949042306416518 -7130.0,0.23940772028554183 -7131.0,0.23932504606651392 -7132.0,0.23924240039721906 -7133.0,0.23915978326779813 -7134.0,0.23907719466839558 -7135.0,0.23899463458915915 -7136.0,0.23891210302024007 -7137.0,0.23882959995179284 -7138.0,0.23874712537397555 -7139.0,0.23866467927694948 -7140.0,0.2385822616508795 -7141.0,0.23849987248593374 -7142.0,0.23841751177228382 -7143.0,0.2383351795001046 -7144.0,0.2382528756595746 -7145.0,0.2381706002408754 -7146.0,0.2380883532341923 -7147.0,0.23800613462971373 -7148.0,0.23792394441763168 -7149.0,0.23784178258814134 -7150.0,0.23775964913144151 -7151.0,0.23767754403773428 -7152.0,0.237595467297225 -7153.0,0.23751341890012265 -7154.0,0.23743139883663933 -7155.0,0.23734940709699076 -7156.0,0.23726744367139582 -7157.0,0.23718550855007695 -7158.0,0.2371036017232598 -7159.0,0.2370217231811736 -7160.0,0.23693987291405072 -7161.0,0.2368580509121271 -7162.0,0.2367762571656419 -7163.0,0.23669449166483786 -7164.0,0.23661275439996077 -7165.0,0.2365310453612601 -7166.0,0.2364493645389885 -7167.0,0.23636771192340209 -7168.0,0.2362860875047602 -7169.0,0.23620449127332577 -7170.0,0.2361229232193649 -7171.0,0.2360413833331471 -7172.0,0.23595987160494533 -7173.0,0.23587838802503572 -7174.0,0.23579693258369797 -7175.0,0.235715505271215 -7176.0,0.23563410607787313 -7177.0,0.23555273499396198 -7178.0,0.2354713920097747 -7179.0,0.23539007711560753 -7180.0,0.2353087903017603 -7181.0,0.235227531558536 -7182.0,0.23514630087624114 -7183.0,0.2350650982451854 -7184.0,0.23498392365568196 -7185.0,0.23490277709804724 -7186.0,0.23482165856260115 -7187.0,0.2347405680396667 -7188.0,0.23465950551957043 -7189.0,0.23457847099264223 -7190.0,0.2344974644492152 -7191.0,0.23441648587962594 -7192.0,0.23433553527421416 -7193.0,0.2342546126233232 -7194.0,0.23417371791729943 -7195.0,0.23409285114649284 -7196.0,0.23401201230125648 -7197.0,0.23393120137194698 -7198.0,0.23385041834892406 -7199.0,0.23376966322255105 -7200.0,0.23368893598319432 -7201.0,0.2336082366212238 -7202.0,0.23352756512701253 -7203.0,0.23344692149093713 -7204.0,0.23336630570337724 -7205.0,0.23328571775471613 -7206.0,0.23320515763534014 -7207.0,0.2331246253356391 -7208.0,0.2330441208460061 -7209.0,0.23296364415683746 -7210.0,0.23288319525853302 -7211.0,0.2328027741414957 -7212.0,0.23272238079613194 -7213.0,0.2326420152128513 -7214.0,0.23256167738206684 -7215.0,0.23248136729419477 -7216.0,0.2324010849396548 -7217.0,0.23232083030886966 -7218.0,0.2322406033922657 -7219.0,0.23216040418027237 -7220.0,0.23208023266332253 -7221.0,0.23200008883185222 -7222.0,0.23191997267630096 -7223.0,0.2318398841871114 -7224.0,0.23175982335472964 -7225.0,0.23167979016960494 -7226.0,0.23159978462218994 -7227.0,0.23151980670294062 -7228.0,0.2314398564023161 -7229.0,0.231359933710779 -7230.0,0.23128003861879504 -7231.0,0.2312001711168334 -7232.0,0.23112033119536632 -7233.0,0.23104051884486967 -7234.0,0.23096073405582226 -7235.0,0.23088097681870648 -7236.0,0.23080124712400774 -7237.0,0.23072154496221497 -7238.0,0.23064187032382022 -7239.0,0.23056222319931896 -7240.0,0.23048260357920977 -7241.0,0.2304030114539947 -7242.0,0.23032344681417893 -7243.0,0.23024390965027103 -7244.0,0.23016439995278273 -7245.0,0.23008491771222914 -7246.0,0.23000546291912863 -7247.0,0.2299260355640028 -7248.0,0.22984663563737656 -7249.0,0.22976726312977802 -7250.0,0.2296879180317387 -7251.0,0.22960860033379324 -7252.0,0.2295293100264797 -7253.0,0.22945004710033923 -7254.0,0.2293708115459164 -7255.0,0.22929160335375895 -7256.0,0.22921242251441798 -7257.0,0.22913326901844772 -7258.0,0.2290541428564058 -7259.0,0.22897504401885296 -7260.0,0.2288959724963534 -7261.0,0.22881692827947436 -7262.0,0.22873791135878652 -7263.0,0.22865892172486366 -7264.0,0.22857995936828293 -7265.0,0.22850102427962474 -7266.0,0.22842211644947263 -7267.0,0.22834323586841357 -7268.0,0.22826438252703757 -7269.0,0.2281855564159381 -7270.0,0.22810675752571166 -7271.0,0.22802798584695827 -7272.0,0.22794924137028091 -7273.0,0.22787052408628605 -7274.0,0.22779183398558317 -7275.0,0.22771317105878525 -7276.0,0.22763453529650823 -7277.0,0.22755592668937158 -7278.0,0.22747734522799776 -7279.0,0.22739879090301265 -7280.0,0.2273202637050452 -7281.0,0.2272417636247278 -7282.0,0.22716329065269586 -7283.0,0.22708484477958815 -7284.0,0.22700642599604676 -7285.0,0.22692803429271674 -7286.0,0.22684966966024664 -7287.0,0.22677133208928807 -7288.0,0.226693021570496 -7289.0,0.22661473809452845 -7290.0,0.2265364816520469 -7291.0,0.2264582522337158 -7292.0,0.22638004983020305 -7293.0,0.22630187443217958 -7294.0,0.22622372603031976 -7295.0,0.22614560461530092 -7296.0,0.22606751017780385 -7297.0,0.2259894427085124 -7298.0,0.2259114021981137 -7299.0,0.22583338863729807 -7300.0,0.22575540201675914 -7301.0,0.22567744232719353 -7302.0,0.22559950955930133 -7303.0,0.22552160370378574 -7304.0,0.22544372475135308 -7305.0,0.22536587269271302 -7306.0,0.2252880475185783 -7307.0,0.2252102492196651 -7308.0,0.22513247778669246 -7309.0,0.22505473321038297 -7310.0,0.22497701548146215 -7311.0,0.22489932459065895 -7312.0,0.2248216605287053 -7313.0,0.22474402328633658 -7314.0,0.22466641285429106 -7315.0,0.22458882922331055 -7316.0,0.2245112723841398 -7317.0,0.22443374232752686 -7318.0,0.22435623904422292 -7319.0,0.2242787625249825 -7320.0,0.2242013127605631 -7321.0,0.22412388974172562 -7322.0,0.22404649345923403 -7323.0,0.22396912390385548 -7324.0,0.22389178106636043 -7325.0,0.22381446493752236 -7326.0,0.22373717550811809 -7327.0,0.22365991276892747 -7328.0,0.2235826767107337 -7329.0,0.223505467324323 -7330.0,0.22342828460048497 -7331.0,0.22335112853001213 -7332.0,0.22327399910370047 -7333.0,0.22319689631234887 -7334.0,0.22311982014675966 -7335.0,0.22304277059773808 -7336.0,0.22296574765609284 -7337.0,0.2228887513126355 -7338.0,0.2228117815581811 -7339.0,0.2227348383835476 -7340.0,0.2226579217795563 -7341.0,0.22258103173703161 -7342.0,0.22250416824680105 -7343.0,0.2224273312996955 -7344.0,0.2223505208865487 -7345.0,0.22227373699819786 -7346.0,0.22219697962548313 -7347.0,0.22212024875924802 -7348.0,0.22204354439033896 -7349.0,0.22196686650960581 -7350.0,0.22189021510790136 -7351.0,0.22181359017608177 -7352.0,0.22173699170500608 -7353.0,0.22166041968553682 -7354.0,0.22158387410853936 -7355.0,0.2215073549648825 -7356.0,0.22143086224543795 -7357.0,0.2213543959410808 -7358.0,0.22127795604268907 -7359.0,0.2212015425411441 -7360.0,0.22112515542733033 -7361.0,0.22104879469213526 -7362.0,0.2209724603264497 -7363.0,0.22089615232116744 -7364.0,0.22081987066718556 -7365.0,0.22074361535540413 -7366.0,0.22066738637672656 -7367.0,0.2205911837220592 -7368.0,0.22051500738231164 -7369.0,0.2204388573483966 -7370.0,0.22036273361123002 -7371.0,0.22028663616173075 -7372.0,0.22021056499082103 -7373.0,0.22013452008942605 -7374.0,0.2200585014484743 -7375.0,0.2199825090588972 -7376.0,0.2199065429116295 -7377.0,0.21983060299760893 -7378.0,0.21975468930777645 -7379.0,0.21967880183307611 -7380.0,0.21960294056445506 -7381.0,0.21952710549286367 -7382.0,0.21945129660925528 -7383.0,0.2193755139045865 -7384.0,0.21929975736981697 -7385.0,0.21922402699590954 -7386.0,0.21914832277383006 -7387.0,0.21907264469454765 -7388.0,0.21899699274903436 -7389.0,0.21892136692826558 -7390.0,0.2188457672232196 -7391.0,0.21877019362487804 -7392.0,0.2186946461242254 -7393.0,0.2186191247122495 -7394.0,0.21854362937994112 -7395.0,0.21846816011829429 -7396.0,0.21839271691830597 -7397.0,0.21831729977097644 -7398.0,0.218241908667309 -7399.0,0.21816654359830992 -7400.0,0.21809120455498882 -7401.0,0.2180158915283582 -7402.0,0.21794060450943387 -7403.0,0.21786534348923453 -7404.0,0.2177901084587822 -7405.0,0.21771489940910177 -7406.0,0.21763971633122145 -7407.0,0.21756455921617238 -7408.0,0.21748942805498891 -7409.0,0.2174143228387084 -7410.0,0.2173392435583714 -7411.0,0.2172641902050214 -7412.0,0.2171891627697052 -7413.0,0.2171141612434725 -7414.0,0.2170391856173762 -7415.0,0.21696423588247224 -7416.0,0.21688931202981962 -7417.0,0.21681441405048058 -7418.0,0.21673954193552022 -7419.0,0.21666469567600694 -7420.0,0.21658987526301202 -7421.0,0.21651508068761005 -7422.0,0.21644031194087848 -7423.0,0.21636556901389803 -7424.0,0.21629085189775232 -7425.0,0.21621616058352827 -7426.0,0.2161414950623156 -7427.0,0.2160668553252074 -7428.0,0.21599224136329953 -7429.0,0.21591765316769126 -7430.0,0.21584309072948465 -7431.0,0.21576855403978504 -7432.0,0.2156940430897006 -7433.0,0.2156195578703429 -7434.0,0.2155450983728262 -7435.0,0.21547066458826816 -7436.0,0.21539625650778937 -7437.0,0.21532187412251344 -7438.0,0.21524751742356713 -7439.0,0.21517318640208016 -7440.0,0.21509888104918548 -7441.0,0.21502460135601892 -7442.0,0.2149503473137195 -7443.0,0.21487611891342923 -7444.0,0.21480191614629324 -7445.0,0.21472773900345962 -7446.0,0.21465358747607965 -7447.0,0.21457946155530752 -7448.0,0.21450536123230063 -7449.0,0.21443128649821924 -7450.0,0.2143572373442269 -7451.0,0.21428321376148998 -7452.0,0.2142092157411781 -7453.0,0.21413524327446376 -7454.0,0.21406129635252258 -7455.0,0.21398737496653333 -7456.0,0.2139134791076776 -7457.0,0.21383960876714028 -7458.0,0.21376576393610905 -7459.0,0.21369194460577487 -7460.0,0.21361815076733154 -7461.0,0.21354438241197607 -7462.0,0.21347063953090836 -7463.0,0.21339692211533154 -7464.0,0.2133232301564515 -7465.0,0.21324956364547745 -7466.0,0.21317592257362145 -7467.0,0.2131023069320987 -7468.0,0.21302871671212734 -7469.0,0.21295515190492864 -7470.0,0.21288161250172682 -7471.0,0.2128080984937492 -7472.0,0.21273460987222606 -7473.0,0.21266114662839075 -7474.0,0.2125877087534797 -7475.0,0.2125142962387322 -7476.0,0.2124409090753908 -7477.0,0.2123675472547008 -7478.0,0.2122942107679108 -7479.0,0.2122208996062722 -7480.0,0.21214761376103958 -7481.0,0.2120743532234704 -7482.0,0.21200111798482532 -7483.0,0.2119279080363678 -7484.0,0.2118547233693645 -7485.0,0.21178156397508496 -7486.0,0.2117084298448019 -7487.0,0.2116353209697908 -7488.0,0.21156223734133045 -7489.0,0.2114891789507024 -7490.0,0.2114161457891914 -7491.0,0.21134313784808506 -7492.0,0.21127015511867409 -7493.0,0.21119719759225222 -7494.0,0.21112426526011607 -7495.0,0.21105135811356546 -7496.0,0.21097847614390297 -7497.0,0.2109056193424344 -7498.0,0.2108327877004684 -7499.0,0.21075998120931677 -7500.0,0.21068719986029413 -7501.0,0.2106144436447183 -7502.0,0.21054171255390985 -7503.0,0.21046900657919265 -7504.0,0.21039632571189332 -7505.0,0.2103236699433416 -7506.0,0.2102510392648701 -7507.0,0.21017843366781466 -7508.0,0.21010585314351382 -7509.0,0.21003329768330933 -7510.0,0.20996076727854582 -7511.0,0.20988826192057092 -7512.0,0.20981578160073538 -7513.0,0.2097433263103927 -7514.0,0.20967089604089956 -7515.0,0.2095984907836155 -7516.0,0.2095261105299032 -7517.0,0.2094537552711281 -7518.0,0.20938142499865886 -7519.0,0.20930911970386692 -7520.0,0.20923683937812684 -7521.0,0.20916458401281607 -7522.0,0.2090923535993151 -7523.0,0.20902014812900732 -7524.0,0.20894796759327922 -7525.0,0.20887581198352012 -7526.0,0.20880368129112242 -7527.0,0.20873157550748142 -7528.0,0.2086594946239955 -7529.0,0.2085874386320658 -7530.0,0.2085154075230967 -7531.0,0.20844340128849537 -7532.0,0.20837141991967195 -7533.0,0.20829946340803968 -7534.0,0.20822753174501454 -7535.0,0.20815562492201575 -7536.0,0.20808374293046522 -7537.0,0.20801188576178808 -7538.0,0.20794005340741217 -7539.0,0.20786824585876854 -7540.0,0.20779646310729094 -7541.0,0.20772470514441632 -7542.0,0.2076529719615844 -7543.0,0.207581263550238 -7544.0,0.20750957990182275 -7545.0,0.20743792100778743 -7546.0,0.20736628685958353 -7547.0,0.20729467744866573 -7548.0,0.20722309276649145 -7549.0,0.2071515328045212 -7550.0,0.20707999755421844 -7551.0,0.20700848700704946 -7552.0,0.20693700115448369 -7553.0,0.20686553998799323 -7554.0,0.20679410349905342 -7555.0,0.2067226916791423 -7556.0,0.20665130451974106 -7557.0,0.20657994201233365 -7558.0,0.20650860414840713 -7559.0,0.20643729091945132 -7560.0,0.20636600231695915 -7561.0,0.20629473833242634 -7562.0,0.20622349895735168 -7563.0,0.20615228418323675 -7564.0,0.20608109400158628 -7565.0,0.20600992840390764 -7566.0,0.2059387873817114 -7567.0,0.20586767092651095 -7568.0,0.20579657902982254 -7569.0,0.20572551168316555 -7570.0,0.20565446887806205 -7571.0,0.2055834506060372 -7572.0,0.20551245685861902 -7573.0,0.20544148762733852 -7574.0,0.2053705429037295 -7575.0,0.20529962267932889 -7576.0,0.2052287269456763 -7577.0,0.20515785569431447 -7578.0,0.2050870089167889 -7579.0,0.20501618660464824 -7580.0,0.2049453887494437 -7581.0,0.2048746153427298 -7582.0,0.20480386637606363 -7583.0,0.2047331418410055 -7584.0,0.20466244172911832 -7585.0,0.20459176603196821 -7586.0,0.20452111474112408 -7587.0,0.20445048784815767 -7588.0,0.2043798853446438 -7589.0,0.20430930722215998 -7590.0,0.2042387534722869 -7591.0,0.20416822408660787 -7592.0,0.20409771905670937 -7593.0,0.20402723837418055 -7594.0,0.2039567820306137 -7595.0,0.20388635001760377 -7596.0,0.20381594232674885 -7597.0,0.2037455589496497 -7598.0,0.20367519987791025 -7599.0,0.203604865103137 -7600.0,0.20353455461693964 -7601.0,0.2034642684109306 -7602.0,0.2033940064767253 -7603.0,0.20332376880594188 -7604.0,0.2032535553902016 -7605.0,0.20318336622112854 -7606.0,0.20311320129034952 -7607.0,0.2030430605894945 -7608.0,0.20297294411019615 -7609.0,0.2029028518440901 -7610.0,0.2028327837828148 -7611.0,0.20276273991801175 -7612.0,0.2026927202413251 -7613.0,0.20262272474440213 -7614.0,0.20255275341889278 -7615.0,0.20248280625645007 -7616.0,0.20241288324872975 -7617.0,0.20234298438739057 -7618.0,0.20227310966409406 -7619.0,0.2022032590705047 -7620.0,0.2021334325982898 -7621.0,0.20206363023911963 -7622.0,0.2019938519846672 -7623.0,0.2019240978266085 -7624.0,0.2018543677566224 -7625.0,0.20178466176639057 -7626.0,0.20171497984759765 -7627.0,0.201645321991931 -7628.0,0.20157568819108107 -7629.0,0.2015060784367409 -7630.0,0.2014364927206067 -7631.0,0.20136693103437733 -7632.0,0.2012973933697546 -7633.0,0.20122787971844316 -7634.0,0.20115839007215058 -7635.0,0.2010889244225872 -7636.0,0.20101948276146633 -7637.0,0.200950065080504 -7638.0,0.2008806713714193 -7639.0,0.20081130162593397 -7640.0,0.20074195583577276 -7641.0,0.2006726339926632 -7642.0,0.20060333608833567 -7643.0,0.20053406211452351 -7644.0,0.20046481206296277 -7645.0,0.2003955859253925 -7646.0,0.20032638369355443 -7647.0,0.20025720535919336 -7648.0,0.20018805091405667 -7649.0,0.2001189203498949 -7650.0,0.2000498136584611 -7651.0,0.19998073083151152 -7652.0,0.19991167186080497 -7653.0,0.19984263673810326 -7654.0,0.19977362545517097 -7655.0,0.1997046380037756 -7656.0,0.19963567437568744 -7657.0,0.19956673456267962 -7658.0,0.1994978185565281 -7659.0,0.19942892634901177 -7660.0,0.19936005793191222 -7661.0,0.19929121329701396 -7662.0,0.19922239243610443 -7663.0,0.19915359534097365 -7664.0,0.19908482200341474 -7665.0,0.19901607241522348 -7666.0,0.1989473465681986 -7667.0,0.19887864445414152 -7668.0,0.19880996606485668 -7669.0,0.19874131139215118 -7670.0,0.19867268042783506 -7671.0,0.1986040731637211 -7672.0,0.198535489591625 -7673.0,0.1984669297033652 -7674.0,0.19839839349076308 -7675.0,0.19832988094564266 -7676.0,0.19826139205983098 -7677.0,0.19819292682515777 -7678.0,0.19812448523345566 -7679.0,0.19805606727656 -7680.0,0.1979876729463091 -7681.0,0.197919302234544 -7682.0,0.19785095513310855 -7683.0,0.19778263163384946 -7684.0,0.19771433172861622 -7685.0,0.19764605540926117 -7686.0,0.19757780266763939 -7687.0,0.1975095734956089 -7688.0,0.1974413678850304 -7689.0,0.1973731858277675 -7690.0,0.19730502731568653 -7691.0,0.19723689234065675 -7692.0,0.19716878089455006 -7693.0,0.19710069296924135 -7694.0,0.1970326285566081 -7695.0,0.19696458764853092 -7696.0,0.19689657023689283 -7697.0,0.19682857631357997 -7698.0,0.1967606058704811 -7699.0,0.19669265889948787 -7700.0,0.19662473539249473 -7701.0,0.1965568353413988 -7702.0,0.19648895873810024 -7703.0,0.19642110557450174 -7704.0,0.196353275842509 -7705.0,0.19628546953403034 -7706.0,0.19621768664097708 -7707.0,0.19614992715526308 -7708.0,0.19608219106880526 -7709.0,0.1960144783735231 -7710.0,0.19594678906133903 -7711.0,0.19587912312417813 -7712.0,0.19581148055396846 -7713.0,0.19574386134264066 -7714.0,0.1956762654821283 -7715.0,0.19560869296436764 -7716.0,0.19554114378129786 -7717.0,0.19547361792486073 -7718.0,0.19540611538700095 -7719.0,0.195338636159666 -7720.0,0.19527118023480605 -7721.0,0.19520374760437414 -7722.0,0.19513633826032598 -7723.0,0.19506895219462023 -7724.0,0.1950015893992181 -7725.0,0.19493424986608382 -7726.0,0.19486693358718418 -7727.0,0.19479964055448892 -7728.0,0.19473237075997038 -7729.0,0.19466512419560386 -7730.0,0.19459790085336726 -7731.0,0.19453070072524137 -7732.0,0.19446352380320966 -7733.0,0.19439637007925847 -7734.0,0.19432923954537681 -7735.0,0.19426213219355654 -7736.0,0.19419504801579215 -7737.0,0.19412798700408107 -7738.0,0.19406094915042343 -7739.0,0.19399393444682203 -7740.0,0.19392694288528256 -7741.0,0.19385997445781333 -7742.0,0.19379302915642563 -7743.0,0.19372610697313325 -7744.0,0.19365920789995295 -7745.0,0.19359233192890407 -7746.0,0.1935254790520089 -7747.0,0.19345864926129228 -7748.0,0.193391842548782 -7749.0,0.1933250589065084 -7750.0,0.19325829832650476 -7751.0,0.19319156080080696 -7752.0,0.1931248463214538 -7753.0,0.1930581548804866 -7754.0,0.19299148646994968 -7755.0,0.1929248410818899 -7756.0,0.19285821870835698 -7757.0,0.1927916193414034 -7758.0,0.1927250429730843 -7759.0,0.1926584895954576 -7760.0,0.19259195920058392 -7761.0,0.1925254517805268 -7762.0,0.19245896732735224 -7763.0,0.19239250583312925 -7764.0,0.19232606728992938 -7765.0,0.19225965168982703 -7766.0,0.19219325902489928 -7767.0,0.19212688928722604 -7768.0,0.1920605424688898 -7769.0,0.1919942185619759 -7770.0,0.19192791755857236 -7771.0,0.19186163945077003 -7772.0,0.1917953842306623 -7773.0,0.1917291518903455 -7774.0,0.19166294242191853 -7775.0,0.19159675581748312 -7776.0,0.19153059206914375 -7777.0,0.19146445116900743 -7778.0,0.19139833310918414 -7779.0,0.1913322378817864 -7780.0,0.19126616547892963 -7781.0,0.19120011589273175 -7782.0,0.19113408911531365 -7783.0,0.19106808513879875 -7784.0,0.19100210395531328 -7785.0,0.1909361455569861 -7786.0,0.19087020993594897 -7787.0,0.19080429708433613 -7788.0,0.19073840699428476 -7789.0,0.19067253965793457 -7790.0,0.19060669506742814 -7791.0,0.19054087321491062 -7792.0,0.19047507409253003 -7793.0,0.19040929769243692 -7794.0,0.1903435440067847 -7795.0,0.19027781302772942 -7796.0,0.19021210474742983 -7797.0,0.1901464191580475 -7798.0,0.1900807562517465 -7799.0,0.19001511602069382 -7800.0,0.189949498457059 -7801.0,0.18988390355301438 -7802.0,0.1898183313007349 -7803.0,0.18975278169239837 -7804.0,0.1896872547201851 -7805.0,0.1896217503762783 -7806.0,0.18955626865286368 -7807.0,0.18949080954212982 -7808.0,0.18942537303626786 -7809.0,0.1893599591274718 -7810.0,0.18929456780793813 -7811.0,0.1892291990698662 -7812.0,0.18916385290545798 -7813.0,0.18909852930691814 -7814.0,0.18903322826645413 -7815.0,0.1889679497762759 -7816.0,0.18890269382859629 -7817.0,0.18883746041563065 -7818.0,0.1887722495295972 -7819.0,0.1887070611627167 -7820.0,0.1886418953072127 -7821.0,0.18857675195531132 -7822.0,0.18851163109924152 -7823.0,0.18844653273123477 -7824.0,0.18838145684352536 -7825.0,0.18831640342835018 -7826.0,0.1882513724779489 -7827.0,0.1881863639845637 -7828.0,0.18812137794043965 -7829.0,0.1880564143378243 -7830.0,0.18799147316896803 -7831.0,0.18792655442612374 -7832.0,0.18786165810154717 -7833.0,0.1877967841874967 -7834.0,0.18773193267623325 -7835.0,0.18766710356002061 -7836.0,0.18760229683112503 -7837.0,0.18753751248181563 -7838.0,0.18747275050436404 -7839.0,0.1874080108910447 -7840.0,0.18734329363413454 -7841.0,0.1872785987259134 -7842.0,0.18721392615866353 -7843.0,0.18714927592467004 -7844.0,0.18708464801622057 -7845.0,0.18702004242560555 -7846.0,0.1869554591451179 -7847.0,0.18689089816705345 -7848.0,0.18682635948371043 -7849.0,0.1867618430873899 -7850.0,0.1866973489703955 -7851.0,0.18663287712503354 -7852.0,0.18656842754361305 -7853.0,0.18650400021844563 -7854.0,0.18643959514184558 -7855.0,0.1863752123061298 -7856.0,0.18631085170361797 -7857.0,0.18624651332663225 -7858.0,0.18618219716749765 -7859.0,0.1861179032185416 -7860.0,0.1860536314720944 -7861.0,0.1859893819204888 -7862.0,0.18592515455606043 -7863.0,0.18586094937114728 -7864.0,0.18579676635809028 -7865.0,0.18573260550923273 -7866.0,0.18566846681692087 -7867.0,0.18560435027350325 -7868.0,0.18554025587133138 -7869.0,0.18547618360275914 -7870.0,0.18541213346014324 -7871.0,0.185348105435843 -7872.0,0.18528409952222027 -7873.0,0.1852201157116397 -7874.0,0.18515615399646837 -7875.0,0.18509221436907625 -7876.0,0.18502829682183566 -7877.0,0.18496440134712183 -7878.0,0.1849005279373124 -7879.0,0.18483667658478783 -7880.0,0.18477284728193105 -7881.0,0.18470904002112773 -7882.0,0.18464525479476607 -7883.0,0.18458149159523704 -7884.0,0.1845177504149341 -7885.0,0.18445403124625342 -7886.0,0.1843903340815937 -7887.0,0.18432665891335645 -7888.0,0.18426300573394555 -7889.0,0.18419937453576773 -7890.0,0.1841357653112323 -7891.0,0.184072178052751 -7892.0,0.18400861275273847 -7893.0,0.18394506940361172 -7894.0,0.1838815479977906 -7895.0,0.18381804852769737 -7896.0,0.1837545709857571 -7897.0,0.18369111536439728 -7898.0,0.1836276816560482 -7899.0,0.18356426985314264 -7900.0,0.18350087994811606 -7901.0,0.18343751193340646 -7902.0,0.1833741658014546 -7903.0,0.18331084154470362 -7904.0,0.18324753915559946 -7905.0,0.1831842586265906 -7906.0,0.18312099995012818 -7907.0,0.1830577631186658 -7908.0,0.18299454812465984 -7909.0,0.18293135496056925 -7910.0,0.18286818361885543 -7911.0,0.18280503409198262 -7912.0,0.18274190637241744 -7913.0,0.1826788004526293 -7914.0,0.18261571632509005 -7915.0,0.18255265398227427 -7916.0,0.18248961341665904 -7917.0,0.1824265946207241 -7918.0,0.18236359758695175 -7919.0,0.18230062230782698 -7920.0,0.18223766877583716 -7921.0,0.18217473698347253 -7922.0,0.1821118269232257 -7923.0,0.182048938587592 -7924.0,0.18198607196906927 -7925.0,0.18192322706015804 -7926.0,0.1818604038533613 -7927.0,0.18179760234118472 -7928.0,0.18173482251613662 -7929.0,0.1816720643707277 -7930.0,0.18160932789747147 -7931.0,0.18154661308888384 -7932.0,0.1814839199374835 -7933.0,0.1814212484357915 -7934.0,0.18135859857633166 -7935.0,0.18129597035163025 -7936.0,0.18123336375421625 -7937.0,0.18117077877662108 -7938.0,0.1811082154113789 -7939.0,0.18104567365102622 -7940.0,0.18098315348810243 -7941.0,0.18092065491514916 -7942.0,0.18085817792471096 -7943.0,0.1807957225093346 -7944.0,0.18073328866156976 -7945.0,0.18067087637396842 -7946.0,0.1806084856390853 -7947.0,0.1805461164494777 -7948.0,0.1804837687977053 -7949.0,0.18042144267633062 -7950.0,0.1803591380779185 -7951.0,0.18029685499503653 -7952.0,0.1802345934202547 -7953.0,0.18017235334614576 -7954.0,0.18011013476528487 -7955.0,0.18004793767024982 -7956.0,0.1799857620536209 -7957.0,0.17992360790798112 -7958.0,0.17986147522591583 -7959.0,0.17979936400001317 -7960.0,0.1797372742228636 -7961.0,0.17967520588706035 -7962.0,0.17961315898519906 -7963.0,0.17955113350987806 -7964.0,0.17948912945369808 -7965.0,0.17942714680926253 -7966.0,0.17936518556917738 -7967.0,0.17930324572605102 -7968.0,0.17924132727249453 -7969.0,0.17917943020112148 -7970.0,0.179117554504548 -7971.0,0.17905570017539274 -7972.0,0.178993867206277 -7973.0,0.17893205558982447 -7974.0,0.17887026531866157 -7975.0,0.17880849638541707 -7976.0,0.17874674878272248 -7977.0,0.17868502250321167 -7978.0,0.17862331753952124 -7979.0,0.17856163388429014 -7980.0,0.17849997153016006 -7981.0,0.17843833046977506 -7982.0,0.17837671069578184 -7983.0,0.1783151122008296 -7984.0,0.17825353497757007 -7985.0,0.1781919790186576 -7986.0,0.17813044431674893 -7987.0,0.17806893086450348 -7988.0,0.1780074386545831 -7989.0,0.1779459676796523 -7990.0,0.17788451793237792 -7991.0,0.17782308940542957 -7992.0,0.17776168209147916 -7993.0,0.17770029598320136 -7994.0,0.17763893107327314 -7995.0,0.17757758735437423 -7996.0,0.17751626481918667 -7997.0,0.17745496346039522 -7998.0,0.17739368327068697 -7999.0,0.17733242424275175 -8000.0,0.17727118636928174 -8001.0,0.17720996964297173 -8002.0,0.17714877405651897 -8003.0,0.1770875996026233 -8004.0,0.17702644627398711 -8005.0,0.17696531406331514 -8006.0,0.17690420296331488 -8007.0,0.17684311296669614 -8008.0,0.17678204406617137 -8009.0,0.17672099625445545 -8010.0,0.1766599695242659 -8011.0,0.17659896386832258 -8012.0,0.17653797927934806 -8013.0,0.17647701575006722 -8014.0,0.17641607327320766 -8015.0,0.17635515184149927 -8016.0,0.17629425144767472 -8017.0,0.17623337208446885 -8018.0,0.17617251374461937 -8019.0,0.1761116764208662 -8020.0,0.17605086010595197 -8021.0,0.1759900647926217 -8022.0,0.1759292904736229 -8023.0,0.17586853714170578 -8024.0,0.17580780478962277 -8025.0,0.17574709341012903 -8026.0,0.1756864029959821 -8027.0,0.17562573353994207 -8028.0,0.17556508503477147 -8029.0,0.17550445747323545 -8030.0,0.17544385084810152 -8031.0,0.1753832651521398 -8032.0,0.1753227003781228 -8033.0,0.17526215651882568 -8034.0,0.17520163356702587 -8035.0,0.17514113151550353 -8036.0,0.17508065035704115 -8037.0,0.17502019008442382 -8038.0,0.174959750690439 -8039.0,0.1748993321678768 -8040.0,0.17483893450952961 -8041.0,0.1747785577081925 -8042.0,0.17471820175666303 -8043.0,0.17465786664774105 -8044.0,0.1745975523742291 -8045.0,0.17453725892893207 -8046.0,0.17447698630465744 -8047.0,0.1744167344942151 -8048.0,0.17435650349041748 -8049.0,0.1742962932860794 -8050.0,0.17423610387401828 -8051.0,0.1741759352470539 -8052.0,0.1741157873980087 -8053.0,0.17405566031970732 -8054.0,0.17399555400497718 -8055.0,0.17393546844664792 -8056.0,0.17387540363755188 -8057.0,0.17381535957052366 -8058.0,0.17375533623840056 -8059.0,0.1736953336340221 -8060.0,0.17363535175023045 -8061.0,0.17357539057987031 -8062.0,0.17351545011578862 -8063.0,0.173455530350835 -8064.0,0.1733956312778614 -8065.0,0.17333575288972236 -8066.0,0.17327589517927477 -8067.0,0.1732160581393781 -8068.0,0.17315624176289413 -8069.0,0.1730964460426873 -8070.0,0.17303667097162437 -8071.0,0.17297691654257466 -8072.0,0.17291718274840978 -8073.0,0.1728574695820041 -8074.0,0.1727977770362341 -8075.0,0.17273810510397902 -8076.0,0.17267845377812036 -8077.0,0.17261882305154222 -8078.0,0.172559212917131 -8079.0,0.17249962336777572 -8080.0,0.17244005439636775 -8081.0,0.17238050599580096 -8082.0,0.17232097815897168 -8083.0,0.17226147087877858 -8084.0,0.17220198414812302 -8085.0,0.1721425179599085 -8086.0,0.1720830723070413 -8087.0,0.17202364718242988 -8088.0,0.1719642425789853 -8089.0,0.17190485848962098 -8090.0,0.1718454949072529 -8091.0,0.17178615182479937 -8092.0,0.1717268292351812 -8093.0,0.17166752713132163 -8094.0,0.1716082455061464 -8095.0,0.17154898435258356 -8096.0,0.17148974366356376 -8097.0,0.17143052343201998 -8098.0,0.17137132365088767 -8099.0,0.1713121443131048 -8100.0,0.1712529854116116 -8101.0,0.17119384693935094 -8102.0,0.17113472888926795 -8103.0,0.17107563125431036 -8104.0,0.17101655402742819 -8105.0,0.170957497201574 -8106.0,0.17089846076970266 -8107.0,0.17083944472477167 -8108.0,0.17078044905974074 -8109.0,0.1707214737675722 -8110.0,0.17066251884123068 -8111.0,0.17060358427368333 -8112.0,0.17054467005789964 -8113.0,0.1704857761868516 -8114.0,0.17042690265351357 -8115.0,0.1703680494508624 -8116.0,0.1703092165718773 -8117.0,0.17025040400953995 -8118.0,0.1701916117568345 -8119.0,0.17013283980674737 -8120.0,0.17007408815226754 -8121.0,0.17001535678638635 -8122.0,0.16995664570209762 -8123.0,0.16989795489239748 -8124.0,0.16983928435028461 -8125.0,0.16978063406875998 -8126.0,0.1697220040408271 -8127.0,0.16966339425949176 -8128.0,0.16960480471776232 -8129.0,0.1695462354086494 -8130.0,0.1694876863251662 -8131.0,0.16942915746032813 -8132.0,0.16937064880715325 -8133.0,0.16931216035866178 -8134.0,0.16925369210787655 -8135.0,0.1691952440478227 -8136.0,0.1691368161715278 -8137.0,0.16907840847202185 -8138.0,0.1690200209423372 -8139.0,0.1689616535755087 -8140.0,0.1689033063645735 -8141.0,0.16884497930257125 -8142.0,0.16878667238254388 -8143.0,0.1687283855975359 -8144.0,0.168670118940594 -8145.0,0.16861187240476752 -8146.0,0.16855364598310796 -8147.0,0.16849543966866942 -8148.0,0.16843725345450827 -8149.0,0.16837908733368334 -8150.0,0.1683209412992558 -8151.0,0.16826281534428927 -8152.0,0.16820470946184976 -8153.0,0.16814662364500568 -8154.0,0.16808855788682775 -8155.0,0.16803051218038917 -8156.0,0.1679724865187656 -8157.0,0.16791448089503486 -8158.0,0.16785649530227742 -8159.0,0.16779852973357592 -8160.0,0.1677405841820156 -8161.0,0.16768265864068388 -8162.0,0.16762475310267075 -8163.0,0.1675668675610684 -8164.0,0.16750900200897162 -8165.0,0.16745115643947736 -8166.0,0.1673933308456852 -8167.0,0.1673355252206968 -8168.0,0.16727773955761654 -8169.0,0.16721997384955087 -8170.0,0.16716222808960887 -8171.0,0.16710450227090182 -8172.0,0.1670467963865435 -8173.0,0.16698911042964995 -8174.0,0.16693144439333973 -8175.0,0.1668737982707337 -8176.0,0.16681617205495503 -8177.0,0.16675856573912942 -8178.0,0.16670097931638475 -8179.0,0.1666434127798515 -8180.0,0.1665858661226623 -8181.0,0.16652833933795233 -8182.0,0.16647083241885902 -8183.0,0.16641334535852223 -8184.0,0.16635587815008412 -8185.0,0.16629843078668938 -8186.0,0.16624100326148486 -8187.0,0.16618359556761994 -8188.0,0.16612620769824624 -8189.0,0.16606883964651786 -8190.0,0.16601149140559118 -8191.0,0.165954162968625 -8192.0,0.16589685432878037 -8193.0,0.1658395654792209 -8194.0,0.16578229641311243 -8195.0,0.1657250471236231 -8196.0,0.16566781760392357 -8197.0,0.1656106078471867 -8198.0,0.16555341784658786 -8199.0,0.16549624759530465 -8200.0,0.1654390970865171 -8201.0,0.16538196631340754 -8202.0,0.16532485526916074 -8203.0,0.1652677639469637 -8204.0,0.16521069234000593 -8205.0,0.1651536404414791 -8206.0,0.16509660824457742 -8207.0,0.1650395957424973 -8208.0,0.16498260292843764 -8209.0,0.1649256297955995 -8210.0,0.16486867633718652 -8211.0,0.1648117425464045 -8212.0,0.16475482841646164 -8213.0,0.16469793394056859 -8214.0,0.16464105911193813 -8215.0,0.16458420392378562 -8216.0,0.16452736836932855 -8217.0,0.16447055244178696 -8218.0,0.16441375613438303 -8219.0,0.16435697944034142 -8220.0,0.16430022235288907 -8221.0,0.1642434848652553 -8222.0,0.1641867669706717 -8223.0,0.16413006866237229 -8224.0,0.1640733899335933 -8225.0,0.16401673077757348 -8226.0,0.16396009118755367 -8227.0,0.1639034711567773 -8228.0,0.16384687067848994 -8229.0,0.16379028974593962 -8230.0,0.16373372835237657 -8231.0,0.1636771864910535 -8232.0,0.16362066415522536 -8233.0,0.16356416133814944 -8234.0,0.16350767803308539 -8235.0,0.1634512142332951 -8236.0,0.1633947699320429 -8237.0,0.1633383451225954 -8238.0,0.16328193979822153 -8239.0,0.16322555395219251 -8240.0,0.16316918757778198 -8241.0,0.16311284066826578 -8242.0,0.1630565132169222 -8243.0,0.16300020521703168 -8244.0,0.16294391666187721 -8245.0,0.16288764754474389 -8246.0,0.16283139785891929 -8247.0,0.16277516759769314 -8248.0,0.1627189567543577 -8249.0,0.16266276532220733 -8250.0,0.1626065932945388 -8251.0,0.1625504406646513 -8252.0,0.1624943074258461 -8253.0,0.16243819357142705 -8254.0,0.16238209909470006 -8255.0,0.16232602398897353 -8256.0,0.16226996824755804 -8257.0,0.16221393186376667 -8258.0,0.16215791483091455 -8259.0,0.16210191714231936 -8260.0,0.16204593879130094 -8261.0,0.1619899797711815 -8262.0,0.1619340400752855 -8263.0,0.1618781196969398 -8264.0,0.16182221862947344 -8265.0,0.16176633686621789 -8266.0,0.16171047440050682 -8267.0,0.16165463122567628 -8268.0,0.16159880733506451 -8269.0,0.16154300272201222 -8270.0,0.16148721737986232 -8271.0,0.16143145130195996 -8272.0,0.16137570448165273 -8273.0,0.16131997691229036 -8274.0,0.16126426858722503 -8275.0,0.16120857949981107 -8276.0,0.16115290964340526 -8277.0,0.16109725901136654 -8278.0,0.1610416275970562 -8279.0,0.16098601539383783 -8280.0,0.16093042239507732 -8281.0,0.16087484859414275 -8282.0,0.16081929398440467 -8283.0,0.16076375855923575 -8284.0,0.16070824231201108 -8285.0,0.1606527452361079 -8286.0,0.1605972673249059 -8287.0,0.16054180857178688 -8288.0,0.16048636897013507 -8289.0,0.16043094851333695 -8290.0,0.16037554719478117 -8291.0,0.1603201650078589 -8292.0,0.1602648019459633 -8293.0,0.16020945800249006 -8294.0,0.16015413317083702 -8295.0,0.16009882744440435 -8296.0,0.16004354081659442 -8297.0,0.159988273280812 -8298.0,0.15993302483046404 -8299.0,0.15987779545895986 -8300.0,0.1598225851597109 -8301.0,0.1597673939261311 -8302.0,0.1597122217516364 -8303.0,0.1596570686296453 -8304.0,0.15960193455357835 -8305.0,0.1595468195168585 -8306.0,0.15949172351291088 -8307.0,0.15943664653516296 -8308.0,0.15938158857704451 -8309.0,0.15932654963198745 -8310.0,0.1592715296934261 -8311.0,0.15921652875479686 -8312.0,0.15916154680953867 -8313.0,0.15910658385109247 -8314.0,0.15905163987290166 -8315.0,0.15899671486841177 -8316.0,0.1589418088310707 -8317.0,0.15888692175432848 -8318.0,0.15883205363163755 -8319.0,0.15877720445645252 -8320.0,0.1587223742222303 -8321.0,0.15866756292242998 -8322.0,0.15861277055051307 -8323.0,0.15855799709994317 -8324.0,0.15850324256418624 -8325.0,0.15844850693671042 -8326.0,0.15839379021098615 -8327.0,0.1583390923804862 -8328.0,0.15828441343868546 -8329.0,0.15822975337906117 -8330.0,0.1581751121950927 -8331.0,0.15812048988026187 -8332.0,0.1580658864280525 -8333.0,0.15801130183195092 -8334.0,0.15795673608544553 -8335.0,0.15790218918202703 -8336.0,0.1578476611151884 -8337.0,0.1577931518784248 -8338.0,0.1577386614652337 -8339.0,0.1576841898691148 -8340.0,0.15762973708357 -8341.0,0.15757530310210355 -8342.0,0.15752088791822177 -8343.0,0.15746649152543343 -8344.0,0.15741211391724935 -8345.0,0.15735775508718275 -8346.0,0.15730341502874898 -8347.0,0.15724909373546564 -8348.0,0.15719479120085267 -8349.0,0.1571405074184321 -8350.0,0.15708624238172833 -8351.0,0.15703199608426788 -8352.0,0.15697776851957962 -8353.0,0.15692355968119454 -8354.0,0.156869369562646 -8355.0,0.1568151981574694 -8356.0,0.15676104545920258 -8357.0,0.15670691146138546 -8358.0,0.15665279615756034 -8359.0,0.1565986995412715 -8360.0,0.1565446216060658 -8361.0,0.15649056234549197 -8362.0,0.15643652175310124 -8363.0,0.1563824998224469 -8364.0,0.15632849654708456 -8365.0,0.156274511920572 -8366.0,0.1562205459364693 -8367.0,0.15616659858833867 -8368.0,0.15611266986974456 -8369.0,0.15605875977425374 -8370.0,0.15600486829543503 -8371.0,0.1559509954268597 -8372.0,0.15589714116210096 -8373.0,0.15584330549473452 -8374.0,0.15578948841833806 -8375.0,0.15573568992649173 -8376.0,0.15568191001277762 -8377.0,0.1556281486707803 -8378.0,0.15557440589408633 -8379.0,0.1555206816762847 -8380.0,0.15546697601096637 -8381.0,0.15541328889172476 -8382.0,0.15535962031215533 -8383.0,0.15530597026585582 -8384.0,0.15525233874642622 -8385.0,0.1551987257474686 -8386.0,0.15514513126258736 -8387.0,0.15509155528538907 -8388.0,0.15503799780948252 -8389.0,0.15498445882847864 -8390.0,0.1549309383359907 -8391.0,0.154877436325634 -8392.0,0.15482395279102623 -8393.0,0.1547704877257871 -8394.0,0.15471704112353876 -8395.0,0.15466361297790526 -8396.0,0.15461020328251313 -8397.0,0.15455681203099092 -8398.0,0.15450343921696946 -8399.0,0.15445008483408176 -8400.0,0.15439674887596305 -8401.0,0.1543434313362507 -8402.0,0.15429013220858434 -8403.0,0.1542368514866058 -8404.0,0.15418358916395902 -8405.0,0.15413034523429026 -8406.0,0.15407711969124782 -8407.0,0.15402391252848238 -8408.0,0.15397072373964663 -8409.0,0.15391755331839563 -8410.0,0.1538644012583864 -8411.0,0.15381126755327842 -8412.0,0.15375815219673314 -8413.0,0.15370505518241434 -8414.0,0.1536519765039879 -8415.0,0.15359891615512195 -8416.0,0.1535458741294867 -8417.0,0.15349285042075475 -8418.0,0.15343984502260063 -8419.0,0.15338685792870127 -8420.0,0.15333388913273566 -8421.0,0.153280938628385 -8422.0,0.15322800640933273 -8423.0,0.15317509246926436 -8424.0,0.1531221968018677 -8425.0,0.15306931940083263 -8426.0,0.1530164602598513 -8427.0,0.15296361937261796 -8428.0,0.15291079673282915 -8429.0,0.15285799233418343 -8430.0,0.15280520617038168 -8431.0,0.15275243823512685 -8432.0,0.15269968852212415 -8433.0,0.15264695702508088 -8434.0,0.15259424373770664 -8435.0,0.152541548653713 -8436.0,0.15248887176681394 -8437.0,0.15243621307072538 -8438.0,0.15238357255916563 -8439.0,0.15233095022585497 -8440.0,0.15227834606451598 -8441.0,0.1522257600688734 -8442.0,0.15217319223265402 -8443.0,0.15212064254958696 -8444.0,0.15206811101340337 -8445.0,0.15201559761783667 -8446.0,0.15196310235662236 -8447.0,0.15191062522349816 -8448.0,0.1518581662122039 -8449.0,0.15180572531648165 -8450.0,0.15175330253007552 -8451.0,0.15170089784673194 -8452.0,0.15164851126019935 -8453.0,0.15159614276422845 -8454.0,0.151543792352572 -8455.0,0.15149146001898509 -8456.0,0.15143914575722475 -8457.0,0.1513868495610503 -8458.0,0.1513345714242232 -8459.0,0.15128231134050701 -8460.0,0.15123006930366759 -8461.0,0.1511778453074727 -8462.0,0.1511256393456925 -8463.0,0.15107345141209916 -8464.0,0.15102128150046706 -8465.0,0.15096912960457265 -8466.0,0.1509169957181947 -8467.0,0.1508648798351139 -8468.0,0.15081278194911332 -8469.0,0.15076070205397793 -8470.0,0.1507086401434951 -8471.0,0.15065659621145416 -8472.0,0.15060457025164667 -8473.0,0.15055256225786628 -8474.0,0.15050057222390886 -8475.0,0.15044860014357234 -8476.0,0.15039664601065686 -8477.0,0.15034470981896464 -8478.0,0.15029279156230008 -8479.0,0.15024089123446976 -8480.0,0.1501890088292823 -8481.0,0.1501371443405485 -8482.0,0.15008529776208132 -8483.0,0.15003346908769585 -8484.0,0.1499816583112093 -8485.0,0.14992986542644102 -8486.0,0.14987809042721248 -8487.0,0.14982633330734735 -8488.0,0.1497745940606713 -8489.0,0.14972287268101234 -8490.0,0.14967116916220036 -8491.0,0.14961948349806758 -8492.0,0.14956781568244823 -8493.0,0.14951616570917878 -8494.0,0.14946453357209769 -8495.0,0.1494129192650457 -8496.0,0.14936132278186554 -8497.0,0.1493097441164021 -8498.0,0.14925818326250254 -8499.0,0.14920664021401592 -8500.0,0.14915511496479358 -8501.0,0.14910360750868887 -8502.0,0.14905211783955744 -8503.0,0.1490006459512568 -8504.0,0.14894919183764688 -8505.0,0.1488977554925895 -8506.0,0.14884633690994867 -8507.0,0.1487949360835905 -8508.0,0.14874355300738337 -8509.0,0.14869218767519754 -8510.0,0.14864084008090556 -8511.0,0.14858951021838196 -8512.0,0.14853819808150356 -8513.0,0.14848690366414913 -8514.0,0.14843562696019968 -8515.0,0.14838436796353818 -8516.0,0.14833312666804988 -8517.0,0.14828190306762204 -8518.0,0.14823069715614406 -8519.0,0.14817950892750748 -8520.0,0.14812833837560585 -8521.0,0.148077185494335 -8522.0,0.14802605027759264 -8523.0,0.14797493271927878 -8524.0,0.14792383281329546 -8525.0,0.14787275055354687 -8526.0,0.14782168593393918 -8527.0,0.14777063894838086 -8528.0,0.14771960959078226 -8529.0,0.14766859785505607 -8530.0,0.14761760373511687 -8531.0,0.14756662722488148 -8532.0,0.14751566831826873 -8533.0,0.1474647270091997 -8534.0,0.1474138032915973 -8535.0,0.14736289715938683 -8536.0,0.14731200860649551 -8537.0,0.14726113762685272 -8538.0,0.14721028421438995 -8539.0,0.14715944836304068 -8540.0,0.14710863006674066 -8541.0,0.14705782931942754 -8542.0,0.14700704611504126 -8543.0,0.14695628044752368 -8544.0,0.14690553231081885 -8545.0,0.14685480169887288 -8546.0,0.14680408860563401 -8547.0,0.1467533930250525 -8548.0,0.14670271495108075 -8549.0,0.14665205437767323 -8550.0,0.14660141129878654 -8551.0,0.14655078570837926 -8552.0,0.1465001776004122 -8553.0,0.1464495869688481 -8554.0,0.14639901380765194 -8555.0,0.1463484581107907 -8556.0,0.1462979198722334 -8557.0,0.14624739908595127 -8558.0,0.1461968957459175 -8559.0,0.14614640984610744 -8560.0,0.14609594138049845 -8561.0,0.14604549034307004 -8562.0,0.14599505672780375 -8563.0,0.14594464052868325 -8564.0,0.14589424173969423 -8565.0,0.1458438603548245 -8566.0,0.14579349636806388 -8567.0,0.14574314977340438 -8568.0,0.14569282056483995 -8569.0,0.14564250873636678 -8570.0,0.1455922142819829 -8571.0,0.1455419371956887 -8572.0,0.14549167747148634 -8573.0,0.1454414351033803 -8574.0,0.14539121008537703 -8575.0,0.145341002411485 -8576.0,0.14529081207571487 -8577.0,0.1452406390720792 -8578.0,0.14519048339459284 -8579.0,0.14514034503727244 -8580.0,0.145090223994137 -8581.0,0.14504012025920734 -8582.0,0.14499003382650655 -8583.0,0.14493996469005957 -8584.0,0.1448899128438936 -8585.0,0.14483987828203776 -8586.0,0.14478986099852337 -8587.0,0.14473986098738365 -8588.0,0.14468987824265403 -8589.0,0.14463991275837187 -8590.0,0.1445899645285767 -8591.0,0.14454003354731004 -8592.0,0.1444901198086155 -8593.0,0.14444022330653875 -8594.0,0.14439034403512743 -8595.0,0.1443404819884314 -8596.0,0.14429063716050242 -8597.0,0.1442408095453944 -8598.0,0.1441909991371632 -8599.0,0.14414120592986693 -8600.0,0.1440914299175655 -8601.0,0.14404167109432103 -8602.0,0.14399192945419767 -8603.0,0.14394220499126165 -8604.0,0.1438924976995811 -8605.0,0.1438428075732264 -8606.0,0.1437931346062698 -8607.0,0.14374347879278573 -8608.0,0.1436938401268506 -8609.0,0.14364421860254287 -8610.0,0.14359461421394307 -8611.0,0.14354502695513374 -8612.0,0.1434954568201995 -8613.0,0.143445903803227 -8614.0,0.14339636789830493 -8615.0,0.14334684909952394 -8616.0,0.1432973474009769 -8617.0,0.14324786279675858 -8618.0,0.1431983952809658 -8619.0,0.1431489448476975 -8620.0,0.14309951149105457 -8621.0,0.14305009520513995 -8622.0,0.14300069598405868 -8623.0,0.14295131382191775 -8624.0,0.1429019487128263 -8625.0,0.14285260065089533 -8626.0,0.1428032696302381 -8627.0,0.14275395564496965 -8628.0,0.14270465868920726 -8629.0,0.14265537875707016 -8630.0,0.1426061158426796 -8631.0,0.14255686994015887 -8632.0,0.14250764104363328 -8633.0,0.1424584291472302 -8634.0,0.142409234245079 -8635.0,0.14236005633131113 -8636.0,0.14231089540005995 -8637.0,0.142261751445461 -8638.0,0.14221262446165167 -8639.0,0.14216351444277156 -8640.0,0.14211442138296213 -8641.0,0.14206534527636697 -8642.0,0.14201628611713166 -8643.0,0.14196724389940382 -8644.0,0.141918218617333 -8645.0,0.14186921026507093 -8646.0,0.1418202188367712 -8647.0,0.14177124432658952 -8648.0,0.14172228672868362 -8649.0,0.14167334603721315 -8650.0,0.1416244222463399 -8651.0,0.14157551535022758 -8652.0,0.14152662534304197 -8653.0,0.14147775221895084 -8654.0,0.14142889597212402 -8655.0,0.14138005659673325 -8656.0,0.14133123408695242 -8657.0,0.14128242843695726 -8658.0,0.14123363964092575 -8659.0,0.14118486769303762 -8660.0,0.1411361125874748 -8661.0,0.1410873743184211 -8662.0,0.1410386528800625 -8663.0,0.1409899482665868 -8664.0,0.14094126047218394 -8665.0,0.1408925894910458 -8666.0,0.14084393531736628 -8667.0,0.14079529794534132 -8668.0,0.1407466773691688 -8669.0,0.1406980735830487 -8670.0,0.14064948658118284 -8671.0,0.14060091635777527 -8672.0,0.14055236290703182 -8673.0,0.14050382622316046 -8674.0,0.1404553063003711 -8675.0,0.1404068031328757 -8676.0,0.14035831671488813 -8677.0,0.14030984704062438 -8678.0,0.1402613941043023 -8679.0,0.14021295790014188 -8680.0,0.14016453842236498 -8681.0,0.14011613566519554 -8682.0,0.14006774962285942 -8683.0,0.14001938028958458 -8684.0,0.13997102765960087 -8685.0,0.13992269172714017 -8686.0,0.13987437248643642 -8687.0,0.1398260699317254 -8688.0,0.139777784057245 -8689.0,0.1397295148572351 -8690.0,0.13968126232593747 -8691.0,0.13963302645759598 -8692.0,0.13958480724645647 -8693.0,0.13953660468676668 -8694.0,0.13948841877277646 -8695.0,0.13944024949873748 -8696.0,0.1393920968589036 -8697.0,0.13934396084753053 -8698.0,0.13929584145887597 -8699.0,0.13924773868719964 -8700.0,0.13919965252676325 -8701.0,0.13915158297183045 -8702.0,0.1391035300166669 -8703.0,0.1390554936555402 -8704.0,0.13900747388272003 -8705.0,0.13895947069247794 -8706.0,0.1389114840790875 -8707.0,0.13886351403682426 -8708.0,0.13881556055996574 -8709.0,0.13876762364279147 -8710.0,0.13871970327958286 -8711.0,0.13867179946462344 -8712.0,0.13862391219219858 -8713.0,0.1385760414565957 -8714.0,0.13852818725210414 -8715.0,0.13848034957301528 -8716.0,0.1384325284136224 -8717.0,0.13838472376822084 -8718.0,0.13833693563110777 -8719.0,0.1382891639965825 -8720.0,0.13824140885894615 -8721.0,0.13819367021250195 -8722.0,0.13814594805155497 -8723.0,0.13809824237041232 -8724.0,0.13805055316338308 -8725.0,0.13800288042477823 -8726.0,0.13795522414891084 -8727.0,0.13790758433009576 -8728.0,0.13785996096265002 -8729.0,0.1378123540408924 -8730.0,0.1377647635591438 -8731.0,0.13771718951172698 -8732.0,0.13766963189296677 -8733.0,0.1376220906971898 -8734.0,0.13757456591872483 -8735.0,0.13752705755190248 -8736.0,0.13747956559105534 -8737.0,0.13743209003051793 -8738.0,0.13738463086462685 -8739.0,0.13733718808772047 -8740.0,0.13728976169413928 -8741.0,0.13724235167822563 -8742.0,0.13719495803432386 -8743.0,0.13714758075678027 -8744.0,0.13710021983994303 -8745.0,0.1370528752781624 -8746.0,0.1370055470657905 -8747.0,0.13695823519718142 -8748.0,0.13691093966669116 -8749.0,0.13686366046867776 -8750.0,0.13681639759750114 -8751.0,0.13676915104752319 -8752.0,0.1367219208131077 -8753.0,0.1366747068886205 -8754.0,0.13662750926842926 -8755.0,0.13658032794690372 -8756.0,0.13653316291841544 -8757.0,0.136486014177338 -8758.0,0.13643888171804686 -8759.0,0.1363917655349195 -8760.0,0.13634466562233527 -8761.0,0.1362975819746755 -8762.0,0.13625051458632353 -8763.0,0.13620346345166448 -8764.0,0.13615642856508553 -8765.0,0.13610940992097573 -8766.0,0.1360624075137261 -8767.0,0.13601542133772962 -8768.0,0.1359684513873812 -8769.0,0.13592149765707762 -8770.0,0.13587456014121765 -8771.0,0.135827638834202 -8772.0,0.13578073373043334 -8773.0,0.13573384482431614 -8774.0,0.135686972110257 -8775.0,0.13564011558266423 -8776.0,0.1355932752359483 -8777.0,0.13554645106452143 -8778.0,0.13549964306279788 -8779.0,0.13545285122519374 -8780.0,0.13540607554612713 -8781.0,0.13535931602001805 -8782.0,0.13531257264128846 -8783.0,0.13526584540436212 -8784.0,0.13521913430366486 -8785.0,0.1351724393336244 -8786.0,0.13512576048867045 -8787.0,0.13507909776323443 -8788.0,0.13503245115174983 -8789.0,0.1349858206486521 -8790.0,0.1349392062483786 -8791.0,0.13489260794536848 -8792.0,0.13484602573406293 -8793.0,0.13479945960890505 -8794.0,0.13475290956433988 -8795.0,0.13470637559481424 -8796.0,0.134659857694777 -8797.0,0.13461335585867898 -8798.0,0.13456687008097284 -8799.0,0.13452040035611307 -8800.0,0.13447394667855622 -8801.0,0.1344275090427607 -8802.0,0.1343810874431869 -8803.0,0.13433468187429703 -8804.0,0.1342882923305552 -8805.0,0.1342419188064275 -8806.0,0.1341955612963819 -8807.0,0.13414921979488836 -8808.0,0.13410289429641858 -8809.0,0.13405658479544627 -8810.0,0.1340102912864471 -8811.0,0.1339640137638986 -8812.0,0.13391775222228014 -8813.0,0.13387150665607306 -8814.0,0.13382527705976063 -8815.0,0.13377906342782805 -8816.0,0.13373286575476223 -8817.0,0.13368668403505224 -8818.0,0.13364051826318887 -8819.0,0.13359436843366493 -8820.0,0.1335482345409751 -8821.0,0.1335021165796159 -8822.0,0.13345601454408576 -8823.0,0.13340992842888508 -8824.0,0.13336385822851618 -8825.0,0.13331780393748313 -8826.0,0.13327176555029202 -8827.0,0.1332257430614508 -8828.0,0.1331797364654694 -8829.0,0.13313374575685946 -8830.0,0.13308777093013466 -8831.0,0.13304181197981052 -8832.0,0.1329958689004046 -8833.0,0.13294994168643604 -8834.0,0.13290403033242612 -8835.0,0.13285813483289802 -8836.0,0.13281225518237672 -8837.0,0.132766391375389 -8838.0,0.13272054340646378 -8839.0,0.13267471127013167 -8840.0,0.13262889496092523 -8841.0,0.13258309447337896 -8842.0,0.13253730980202913 -8843.0,0.13249154094141397 -8844.0,0.13244578788607358 -8845.0,0.13240005063055008 -8846.0,0.13235432916938716 -8847.0,0.13230862349713068 -8848.0,0.13226293360832828 -8849.0,0.13221725949752955 -8850.0,0.13217160115928575 -8851.0,0.1321259585881503 -8852.0,0.1320803317786783 -8853.0,0.13203472072542694 -8854.0,0.13198912542295496 -8855.0,0.1319435458658233 -8856.0,0.1318979820485946 -8857.0,0.13185243396583343 -8858.0,0.13180690161210634 -8859.0,0.1317613849819815 -8860.0,0.13171588407002915 -8861.0,0.1316703988708214 -8862.0,0.13162492937893228 -8863.0,0.1315794755889374 -8864.0,0.1315340374954146 -8865.0,0.1314886150929434 -8866.0,0.13144320837610532 -8867.0,0.13139781733948355 -8868.0,0.1313524419776633 -8869.0,0.13130708228523166 -8870.0,0.1312617382567776 -8871.0,0.1312164098868918 -8872.0,0.13117109717016692 -8873.0,0.13112580010119754 -8874.0,0.13108051867458007 -8875.0,0.1310352528849127 -8876.0,0.13099000272679553 -8877.0,0.13094476819483064 -8878.0,0.13089954928362182 -8879.0,0.13085434598777484 -8880.0,0.1308091583018972 -8881.0,0.13076398622059837 -8882.0,0.13071882973848964 -8883.0,0.13067368885018424 -8884.0,0.1306285635502971 -8885.0,0.1305834538334451 -8886.0,0.13053835969424704 -8887.0,0.13049328112732358 -8888.0,0.13044821812729698 -8889.0,0.1304031706887917 -8890.0,0.13035813880643385 -8891.0,0.13031312247485155 -8892.0,0.13026812168867452 -8893.0,0.13022313644253458 -8894.0,0.13017816673106536 -8895.0,0.13013321254890223 -8896.0,0.13008827389068256 -8897.0,0.1300433507510454 -8898.0,0.1299984431246318 -8899.0,0.1299535510060846 -8900.0,0.12990867439004855 -8901.0,0.1298638132711701 -8902.0,0.1298189676440977 -8903.0,0.12977413750348157 -8904.0,0.1297293228439739 -8905.0,0.12968452366022848 -8906.0,0.12963973994690114 -8907.0,0.12959497169864956 -8908.0,0.1295502189101332 -8909.0,0.12950548157601335 -8910.0,0.12946075969095316 -8911.0,0.1294160532496177 -8912.0,0.12937136224667378 -8913.0,0.12932668667679006 -8914.0,0.12928202653463708 -8915.0,0.12923738181488725 -8916.0,0.12919275251221474 -8917.0,0.12914813862129568 -8918.0,0.12910354013680786 -8919.0,0.129058957053431 -8920.0,0.12901438936584675 -8921.0,0.1289698370687385 -8922.0,0.12892530015679138 -8923.0,0.12888077862469255 -8924.0,0.1288362724671309 -8925.0,0.1287917816787972 -8926.0,0.12874730625438396 -8927.0,0.1287028461885856 -8928.0,0.1286584014760984 -8929.0,0.12861397211162046 -8930.0,0.12856955808985154 -8931.0,0.12852515940549347 -8932.0,0.1284807760532498 -8933.0,0.12843640802782594 -8934.0,0.1283920553239291 -8935.0,0.12834771793626829 -8936.0,0.1283033958595544 -8937.0,0.12825908908850012 -8938.0,0.12821479761782004 -8939.0,0.12817052144223043 -8940.0,0.12812626055644946 -8941.0,0.1280820149551972 -8942.0,0.12803778463319546 -8943.0,0.12799356958516783 -8944.0,0.1279493698058398 -8945.0,0.12790518528993866 -8946.0,0.1278610160321936 -8947.0,0.1278168620273354 -8948.0,0.1277727232700969 -8949.0,0.12772859975521264 -8950.0,0.1276844914774191 -8951.0,0.1276403984314543 -8952.0,0.1275963206120584 -8953.0,0.12755225801397319 -8954.0,0.12750821063194234 -8955.0,0.12746417846071137 -8956.0,0.12742016149502747 -8957.0,0.12737615972963975 -8958.0,0.12733217315929915 -8959.0,0.12728820177875846 -8960.0,0.12724424558277206 -8961.0,0.12720030456609638 -8962.0,0.1271563787234896 -8963.0,0.1271124680497117 -8964.0,0.12706857253952436 -8965.0,0.12702469218769125 -8966.0,0.12698082698897772 -8967.0,0.12693697693815104 -8968.0,0.12689314202998012 -8969.0,0.12684932225923584 -8970.0,0.12680551762069078 -8971.0,0.1267617281091194 -8972.0,0.126717953719298 -8973.0,0.12667419444600445 -8974.0,0.1266304502840187 -8975.0,0.12658672122812234 -8976.0,0.12654300727309892 -8977.0,0.12649930841373352 -8978.0,0.12645562464481327 -8979.0,0.12641195596112703 -8980.0,0.12636830235746546 -8981.0,0.12632466382862093 -8982.0,0.1262810403693877 -8983.0,0.12623743197456183 -8984.0,0.12619383863894124 -8985.0,0.1261502603573254 -8986.0,0.12610669712451583 -8987.0,0.12606314893531573 -8988.0,0.1260196157845302 -8989.0,0.1259760976669659 -8990.0,0.12593259457743153 -8991.0,0.12588910651073748 -8992.0,0.12584563346169594 -8993.0,0.12580217542512095 -8994.0,0.12575873239582816 -8995.0,0.1257153043686352 -8996.0,0.12567189133836143 -8997.0,0.12562849329982803 -8998.0,0.12558511024785782 -8999.0,0.1255417421772756 -9000.0,0.12549838908290784 -9001.0,0.1254550509595829 -9002.0,0.12541172780213075 -9003.0,0.1253684196053833 -9004.0,0.12532512636417423 -9005.0,0.12528184807333897 -9006.0,0.1252385847277147 -9007.0,0.12519533632214042 -9008.0,0.12515210285145692 -9009.0,0.12510888431050673 -9010.0,0.12506568069413435 -9011.0,0.12502249199718568 -9012.0,0.12497931821450874 -9013.0,0.1249361593409532 -9014.0,0.12489301537137057 -9015.0,0.12484988630061399 -9016.0,0.12480677212353851 -9017.0,0.12476367283500094 -9018.0,0.1247205884298599 -9019.0,0.12467751890297563 -9020.0,0.1246344642492103 -9021.0,0.1245914244634278 -9022.0,0.12454839954049386 -9023.0,0.12450538947527581 -9024.0,0.12446239426264291 -9025.0,0.12441941389746616 -9026.0,0.12437644837461835 -9027.0,0.1243334976889739 -9028.0,0.12429056183540918 -9029.0,0.12424764080880224 -9030.0,0.12420473460403292 -9031.0,0.12416184321598288 -9032.0,0.12411896663953537 -9033.0,0.12407610486957558 -9034.0,0.12403325790099043 -9035.0,0.12399042572866864 -9036.0,0.12394760834750053 -9037.0,0.12390480575237835 -9038.0,0.12386201793819605 -9039.0,0.12381924489984944 -9040.0,0.12377648663223588 -9041.0,0.12373374313025469 -9042.0,0.12369101438880686 -9043.0,0.12364830040279524 -9044.0,0.12360560116712424 -9045.0,0.12356291667670022 -9046.0,0.12352024692643121 -9047.0,0.12347759191122702 -9048.0,0.12343495162599931 -9049.0,0.12339232606566125 -9050.0,0.123349715225128 -9051.0,0.1233071190993164 -9052.0,0.12326453768314509 -9053.0,0.1232219709715343 -9054.0,0.12317941895940619 -9055.0,0.12313688164168464 -9056.0,0.12309435901329528 -9057.0,0.12305185106916537 -9058.0,0.12300935780422409 -9059.0,0.1229668792134023 -9060.0,0.12292441529163266 -9061.0,0.12288196603384942 -9062.0,0.12283953143498876 -9063.0,0.12279711148998852 -9064.0,0.12275470619378841 -9065.0,0.12271231554132964 -9066.0,0.12266993952755537 -9067.0,0.12262757814741046 -9068.0,0.1225852313958415 -9069.0,0.1225428992677969 -9070.0,0.12250058175822663 -9071.0,0.12245827886208256 -9072.0,0.12241599057431829 -9073.0,0.12237371688988917 -9074.0,0.12233145780375215 -9075.0,0.12228921331086609 -9076.0,0.12224698340619153 -9077.0,0.12220476808469079 -9078.0,0.1221625673413278 -9079.0,0.12212038117106837 -9080.0,0.12207820956887999 -9081.0,0.12203605252973194 -9082.0,0.12199391004859512 -9083.0,0.12195178212044226 -9084.0,0.12190966874024782 -9085.0,0.12186756990298798 -9086.0,0.1218254856036407 -9087.0,0.12178341583718554 -9088.0,0.12174136059860391 -9089.0,0.12169931988287895 -9090.0,0.12165729368499556 -9091.0,0.12161528199994022 -9092.0,0.12157328482270127 -9093.0,0.12153130214826877 -9094.0,0.12148933397163454 -9095.0,0.12144738028779199 -9096.0,0.1214054410917364 -9097.0,0.12136351637846472 -9098.0,0.1213216061429757 -9099.0,0.12127971038026963 -9100.0,0.12123782908534873 -9101.0,0.12119596225321685 -9102.0,0.12115410987887959 -9103.0,0.12111227195734432 -9104.0,0.12107044848361996 -9105.0,0.12102863945271736 -9106.0,0.12098684485964897 -9107.0,0.12094506469942908 -9108.0,0.1209032989670735 -9109.0,0.12086154765759995 -9110.0,0.12081981076602778 -9111.0,0.12077808828737815 -9112.0,0.12073638021667378 -9113.0,0.12069468654893924 -9114.0,0.12065300727920077 -9115.0,0.1206113424024864 -9116.0,0.12056969191382572 -9117.0,0.12052805580825017 -9118.0,0.12048643408079286 -9119.0,0.1204448267264887 -9120.0,0.1204032337403741 -9121.0,0.12036165511748738 -9122.0,0.12032009085286853 -9123.0,0.12027854094155922 -9124.0,0.1202370053786029 -9125.0,0.1201954841590446 -9126.0,0.12015397727793116 -9127.0,0.12011248473031114 -9128.0,0.12007100651123481 -9129.0,0.12002954261575403 -9130.0,0.11998809303892251 -9131.0,0.11994665777579562 -9132.0,0.11990523682143048 -9133.0,0.11986383017088577 -9134.0,0.11982243781922204 -9135.0,0.11978105976150147 -9136.0,0.11973969599278803 -9137.0,0.11969834650814719 -9138.0,0.11965701130264633 -9139.0,0.11961569037135449 -9140.0,0.11957438370934233 -9141.0,0.11953309131168234 -9142.0,0.11949181317344854 -9143.0,0.1194505492897168 -9144.0,0.11940929965556464 -9145.0,0.11936806426607133 -9146.0,0.11932684311631767 -9147.0,0.11928563620138635 -9148.0,0.11924444351636168 -9149.0,0.11920326505632972 -9150.0,0.11916210081637808 -9151.0,0.11912095079159622 -9152.0,0.11907981497707525 -9153.0,0.11903869336790798 -9154.0,0.11899758595918884 -9155.0,0.11895649274601407 -9156.0,0.11891541372348152 -9157.0,0.11887434888669082 -9158.0,0.11883329823074315 -9159.0,0.1187922617507415 -9160.0,0.11875123944179053 -9161.0,0.11871023129899658 -9162.0,0.1186692373174677 -9163.0,0.11862825749231354 -9164.0,0.11858729181864552 -9165.0,0.11854634029157678 -9166.0,0.11850540290622212 -9167.0,0.11846447965769791 -9168.0,0.11842357054112236 -9169.0,0.11838267555161532 -9170.0,0.11834179468429834 -9171.0,0.11830092793429456 -9172.0,0.1182600752967289 -9173.0,0.11821923676672795 -9174.0,0.11817841233942003 -9175.0,0.11813760200993498 -9176.0,0.11809680577340445 -9177.0,0.11805602362496179 -9178.0,0.11801525555974195 -9179.0,0.11797450157288165 -9180.0,0.11793376165951916 -9181.0,0.11789303581479454 -9182.0,0.1178523240338495 -9183.0,0.11781162631182747 -9184.0,0.11777094264387339 -9185.0,0.11773027302513407 -9186.0,0.11768961745075791 -9187.0,0.11764897591589506 -9188.0,0.11760834841569716 -9189.0,0.11756773494531769 -9190.0,0.1175271354999118 -9191.0,0.11748655007463628 -9192.0,0.11744597866464951 -9193.0,0.11740542126511165 -9194.0,0.1173648778711845 -9195.0,0.1173243484780316 -9196.0,0.11728383308081797 -9197.0,0.11724333167471046 -9198.0,0.11720284425487756 -9199.0,0.11716237081648943 -9200.0,0.11712191135471792 -9201.0,0.11708146586473639 -9202.0,0.11704103434172007 -9203.0,0.11700061678084576 -9204.0,0.116960213177292 -9205.0,0.11691982352623882 -9206.0,0.11687944782286808 -9207.0,0.11683908606236326 -9208.0,0.11679873823990956 -9209.0,0.11675840435069365 -9210.0,0.11671808438990407 -9211.0,0.11667777835273091 -9212.0,0.11663748623436603 -9213.0,0.11659720803000276 -9214.0,0.11655694373483626 -9215.0,0.1165166933440633 -9216.0,0.11647645685288228 -9217.0,0.11643623425649337 -9218.0,0.11639602555009816 -9219.0,0.11635583072890013 -9220.0,0.11631564978810431 -9221.0,0.11627548272291746 -9222.0,0.11623532952854786 -9223.0,0.11619519020020555 -9224.0,0.11615506473310222 -9225.0,0.11611495312245124 -9226.0,0.11607485536346747 -9227.0,0.11603477145136762 -9228.0,0.11599470138136996 -9229.0,0.11595464514869445 -9230.0,0.1159146027485626 -9231.0,0.1158745741761977 -9232.0,0.11583455942682461 -9233.0,0.11579455849566993 -9234.0,0.11575457137796172 -9235.0,0.11571459806892988 -9236.0,0.11567463856380586 -9237.0,0.11563469285782281 -9238.0,0.11559476094621554 -9239.0,0.11555484282422036 -9240.0,0.11551493848707539 -9241.0,0.11547504793002031 -9242.0,0.11543517114829653 -9243.0,0.11539530813714695 -9244.0,0.11535545889181625 -9245.0,0.1153156234075507 -9246.0,0.11527580167959826 -9247.0,0.1152359937032084 -9248.0,0.11519619947363237 -9249.0,0.115156418986123 -9250.0,0.11511665223593481 -9251.0,0.11507689921832386 -9252.0,0.11503715992854789 -9253.0,0.11499743436186634 -9254.0,0.11495772251354022 -9255.0,0.11491802437883226 -9256.0,0.11487833995300666 -9257.0,0.11483866923132938 -9258.0,0.11479901220906802 -9259.0,0.11475936888149184 -9260.0,0.11471973924387156 -9261.0,0.11468012329147971 -9262.0,0.11464052101959041 -9263.0,0.11460093242347942 -9264.0,0.11456135749842404 -9265.0,0.1145217962397033 -9266.0,0.11448224864259783 -9267.0,0.11444271470238995 -9268.0,0.11440319441436345 -9269.0,0.11436368777380389 -9270.0,0.11432419477599841 -9271.0,0.11428471541623585 -9272.0,0.11424524968980648 -9273.0,0.11420579759200243 -9274.0,0.1141663591181173 -9275.0,0.1141269342634464 -9276.0,0.11408752302328666 -9277.0,0.11404812539293653 -9278.0,0.11400874136769619 -9279.0,0.11396937094286741 -9280.0,0.11393001411375366 -9281.0,0.11389067087565984 -9282.0,0.11385134122389264 -9283.0,0.11381202515376031 -9284.0,0.1137727226605728 -9285.0,0.1137334337396415 -9286.0,0.11369415838627958 -9287.0,0.11365489659580177 -9288.0,0.11361564836352447 -9289.0,0.11357641368476558 -9290.0,0.11353719255484471 -9291.0,0.11349798496908307 -9292.0,0.11345879092280349 -9293.0,0.11341961041133045 -9294.0,0.1133804434299899 -9295.0,0.11334128997410957 -9296.0,0.11330215003901871 -9297.0,0.11326302362004828 -9298.0,0.11322391071253068 -9299.0,0.11318481131180008 -9300.0,0.1131457254131922 -9301.0,0.11310665301204444 -9302.0,0.11306759410369563 -9303.0,0.11302854868348637 -9304.0,0.11298951674675885 -9305.0,0.11295049828885688 -9306.0,0.11291149330512576 -9307.0,0.1128725017909125 -9308.0,0.11283352374156572 -9309.0,0.11279455915243566 -9310.0,0.11275560801887405 -9311.0,0.11271667033623432 -9312.0,0.11267774609987152 -9313.0,0.11263883530514227 -9314.0,0.1125999379474048 -9315.0,0.11256105402201891 -9316.0,0.11252218352434602 -9317.0,0.1124833264497492 -9318.0,0.11244448279359312 -9319.0,0.11240565255124392 -9320.0,0.11236683571806948 -9321.0,0.11232803228943924 -9322.0,0.11228924226072429 -9323.0,0.11225046562729714 -9324.0,0.11221170238453208 -9325.0,0.11217295252780496 -9326.0,0.11213421605249323 -9327.0,0.1120954929539758 -9328.0,0.11205678322763338 -9329.0,0.11201808686884815 -9330.0,0.11197940387300391 -9331.0,0.11194073423548613 -9332.0,0.11190207795168171 -9333.0,0.11186343501697926 -9334.0,0.11182480542676898 -9335.0,0.11178618917644269 -9336.0,0.11174758626139364 -9337.0,0.11170899667701684 -9338.0,0.11167042041870885 -9339.0,0.11163185748186782 -9340.0,0.11159330786189342 -9341.0,0.11155477155418697 -9342.0,0.11151624855415138 -9343.0,0.1114777388571912 -9344.0,0.11143924245871238 -9345.0,0.11140075935412266 -9346.0,0.11136228953883127 -9347.0,0.11132383300824909 -9348.0,0.11128538975778844 -9349.0,0.11124695978286336 -9350.0,0.11120854307888946 -9351.0,0.11117013964128389 -9352.0,0.11113174946546545 -9353.0,0.11109337254685436 -9354.0,0.11105500888087261 -9355.0,0.11101665846294367 -9356.0,0.11097832128849269 -9357.0,0.1109399973529462 -9358.0,0.1109016866517325 -9359.0,0.1108633891802814 -9360.0,0.11082510493402432 -9361.0,0.11078683390839417 -9362.0,0.1107485760988255 -9363.0,0.11071033150075446 -9364.0,0.1106721001096188 -9365.0,0.11063388192085769 -9366.0,0.11059567692991201 -9367.0,0.11055748513222421 -9368.0,0.11051930652323827 -9369.0,0.11048114109839982 -9370.0,0.1104429888531559 -9371.0,0.11040484978295527 -9372.0,0.11036672388324822 -9373.0,0.11032861114948667 -9374.0,0.11029051157712393 -9375.0,0.11025242516161506 -9376.0,0.11021435189841661 -9377.0,0.1101762917829868 -9378.0,0.11013824481078521 -9379.0,0.11010021097727317 -9380.0,0.11006219027791353 -9381.0,0.11002418270817074 -9382.0,0.10998618826351067 -9383.0,0.10994820693940091 -9384.0,0.10991023873131057 -9385.0,0.10987228363471038 -9386.0,0.10983434164507246 -9387.0,0.10979641275787067 -9388.0,0.10975849696858034 -9389.0,0.10972059427267841 -9390.0,0.10968270466564344 -9391.0,0.10964482814295534 -9392.0,0.10960696470009579 -9393.0,0.10956911433254794 -9394.0,0.10953127703579657 -9395.0,0.10949345280532788 -9396.0,0.10945564163662976 -9397.0,0.10941784352519161 -9398.0,0.10938005846650443 -9399.0,0.10934228645606066 -9400.0,0.10930452748935442 -9401.0,0.10926678156188131 -9402.0,0.10922904866913861 -9403.0,0.10919132880662494 -9404.0,0.10915362196984064 -9405.0,0.10911592815428757 -9406.0,0.10907824735546913 -9407.0,0.10904057956889032 -9408.0,0.10900292479005755 -9409.0,0.10896528301447894 -9410.0,0.10892765423766408 -9411.0,0.10889003845512421 -9412.0,0.10885243566237192 -9413.0,0.10881484585492152 -9414.0,0.10877726902828883 -9415.0,0.10873970517799124 -9416.0,0.10870215429954759 -9417.0,0.10866461638847835 -9418.0,0.10862709144030555 -9419.0,0.10858957945055275 -9420.0,0.108552080414745 -9421.0,0.10851459432840893 -9422.0,0.10847712118707276 -9423.0,0.10843966098626624 -9424.0,0.10840221372152056 -9425.0,0.1083647793883686 -9426.0,0.10832735798234468 -9427.0,0.10828994949898472 -9428.0,0.10825255393382621 -9429.0,0.10821517128240803 -9430.0,0.10817780154027075 -9431.0,0.10814044470295643 -9432.0,0.10810310076600874 -9433.0,0.1080657697249727 -9434.0,0.10802845157539503 -9435.0,0.10799114631282399 -9436.0,0.10795385393280933 -9437.0,0.10791657443090227 -9438.0,0.1078793078026557 -9439.0,0.10784205404362396 -9440.0,0.107804813149363 -9441.0,0.10776758511543016 -9442.0,0.10773036993738445 -9443.0,0.1076931676107864 -9444.0,0.107655978131198 -9445.0,0.10761880149418289 -9446.0,0.10758163769530606 -9447.0,0.1075444867301342 -9448.0,0.10750734859423547 -9449.0,0.1074702232831796 -9450.0,0.1074331107925377 -9451.0,0.1073960111178826 -9452.0,0.10735892425478859 -9453.0,0.10732185019883148 -9454.0,0.10728478894558853 -9455.0,0.10724774049063865 -9456.0,0.10721070482956224 -9457.0,0.10717368195794126 -9458.0,0.10713667187135904 -9459.0,0.10709967456540062 -9460.0,0.10706269003565247 -9461.0,0.10702571827770266 -9462.0,0.10698875928714062 -9463.0,0.10695181305955749 -9464.0,0.10691487959054582 -9465.0,0.10687795887569976 -9466.0,0.10684105091061494 -9467.0,0.10680415569088844 -9468.0,0.10676727321211896 -9469.0,0.10673040346990671 -9470.0,0.10669354645985343 -9471.0,0.10665670217756226 -9472.0,0.106619870618638 -9473.0,0.10658305177868688 -9474.0,0.10654624565331677 -9475.0,0.10650945223813685 -9476.0,0.10647267152875799 -9477.0,0.1064359035207925 -9478.0,0.10639914820985431 -9479.0,0.10636240559155866 -9480.0,0.10632567566152247 -9481.0,0.10628895841536413 -9482.0,0.10625225384870354 -9483.0,0.10621556195716217 -9484.0,0.10617888273636283 -9485.0,0.10614221618193002 -9486.0,0.10610556228948968 -9487.0,0.10606892105466932 -9488.0,0.10603229247309781 -9489.0,0.10599567654040568 -9490.0,0.10595907325222491 -9491.0,0.10592248260418904 -9492.0,0.10588590459193299 -9493.0,0.10584933921109331 -9494.0,0.105812786457308 -9495.0,0.10577624632621666 -9496.0,0.10573971881346021 -9497.0,0.10570320391468123 -9498.0,0.10566670162552375 -9499.0,0.10563021194163338 -9500.0,0.10559373485865706 -9501.0,0.1055572703722434 -9502.0,0.10552081847804243 -9503.0,0.10548437917170572 -9504.0,0.10544795244888637 -9505.0,0.10541153830523885 -9506.0,0.10537513673641925 -9507.0,0.10533874773808515 -9508.0,0.10530237130589563 -9509.0,0.10526600743551118 -9510.0,0.10522965612259387 -9511.0,0.10519331736280729 -9512.0,0.10515699115181651 -9513.0,0.105120677485288 -9514.0,0.10508437635888984 -9515.0,0.10504808776829157 -9516.0,0.1050118117091643 -9517.0,0.10497554817718041 -9518.0,0.10493929716801402 -9519.0,0.10490305867734065 -9520.0,0.10486683270083728 -9521.0,0.10483061923418248 -9522.0,0.10479441827305616 -9523.0,0.10475822981313986 -9524.0,0.10472205385011653 -9525.0,0.10468589037967072 -9526.0,0.10464973939748828 -9527.0,0.10461360089925671 -9528.0,0.10457747488066496 -9529.0,0.10454136133740351 -9530.0,0.10450526026516417 -9531.0,0.1044691716596404 -9532.0,0.10443309551652707 -9533.0,0.10439703183152065 -9534.0,0.10436098060031888 -9535.0,0.10432494181862116 -9536.0,0.10428891548212835 -9537.0,0.10425290158654278 -9538.0,0.10421690012756818 -9539.0,0.10418091110090989 -9540.0,0.10414493450227469 -9541.0,0.1041089703273708 -9542.0,0.10407301857190804 -9543.0,0.10403707923159751 -9544.0,0.10400115230215197 -9545.0,0.10396523777928558 -9546.0,0.10392933565871408 -9547.0,0.10389344593615447 -9548.0,0.10385756860732547 -9549.0,0.10382170366794712 -9550.0,0.10378585111374107 -9551.0,0.10375001094043028 -9552.0,0.10371418314373931 -9553.0,0.10367836771939419 -9554.0,0.10364256466312242 -9555.0,0.10360677397065289 -9556.0,0.10357099563771606 -9557.0,0.10353522966004383 -9558.0,0.10349947603336959 -9559.0,0.10346373475342824 -9560.0,0.10342800581595601 -9561.0,0.10339228921669076 -9562.0,0.10335658495137173 -9563.0,0.10332089301573973 -9564.0,0.10328521340553688 -9565.0,0.1032495461165069 -9566.0,0.10321389114439494 -9567.0,0.10317824848494768 -9568.0,0.1031426181339131 -9569.0,0.10310700008704082 -9570.0,0.10307139434008188 -9571.0,0.10303580088878879 -9572.0,0.10300021972891543 -9573.0,0.10296465085621727 -9574.0,0.10292909426645122 -9575.0,0.10289354995537567 -9576.0,0.10285801791875035 -9577.0,0.1028224981523366 -9578.0,0.10278699065189717 -9579.0,0.10275149541319625 -9580.0,0.10271601243199961 -9581.0,0.10268054170407426 -9582.0,0.10264508322518885 -9583.0,0.10260963699111346 -9584.0,0.10257420299761966 -9585.0,0.10253878124048031 -9586.0,0.10250337171546992 -9587.0,0.1024679744183644 -9588.0,0.10243258934494114 -9589.0,0.10239721649097887 -9590.0,0.10236185585225792 -9591.0,0.10232650742456002 -9592.0,0.1022911712036684 -9593.0,0.10225584718536762 -9594.0,0.10222053536544384 -9595.0,0.10218523573968459 -9596.0,0.10214994830387891 -9597.0,0.1021146730538173 -9598.0,0.10207940998529158 -9599.0,0.10204415909409519 -9600.0,0.10200892037602292 -9601.0,0.10197369382687113 -9602.0,0.10193847944243745 -9603.0,0.10190327721852109 -9604.0,0.10186808715092269 -9605.0,0.10183290923544439 -9606.0,0.10179774346788961 -9607.0,0.10176258984406339 -9608.0,0.10172744835977215 -9609.0,0.10169231901082382 -9610.0,0.10165720179302763 -9611.0,0.1016220967021944 -9612.0,0.10158700373413634 -9613.0,0.10155192288466718 -9614.0,0.1015168541496019 -9615.0,0.10148179752475715 -9616.0,0.10144675300595091 -9617.0,0.10141172058900261 -9618.0,0.1013767002697332 -9619.0,0.10134169204396491 -9620.0,0.10130669590752157 -9621.0,0.1012717118562284 -9622.0,0.10123673988591207 -9623.0,0.10120177999240064 -9624.0,0.10116683217152365 -9625.0,0.1011318964191121 -9626.0,0.10109697273099846 -9627.0,0.10106206110301649 -9628.0,0.10102716153100152 -9629.0,0.10099227401079032 -9630.0,0.10095739853822107 -9631.0,0.10092253510913332 -9632.0,0.10088768371936814 -9633.0,0.10085284436476802 -9634.0,0.10081801704117689 -9635.0,0.10078320174444014 -9636.0,0.10074839847040445 -9637.0,0.10071360721491814 -9638.0,0.1006788279738308 -9639.0,0.10064406074299362 -9640.0,0.10060930551825902 -9641.0,0.10057456229548098 -9642.0,0.10053983107051491 -9643.0,0.10050511183921765 -9644.0,0.10047040459744738 -9645.0,0.10043570934106381 -9646.0,0.10040102606592806 -9647.0,0.1003663547679027 -9648.0,0.10033169544285163 -9649.0,0.10029704808664026 -9650.0,0.10026241269513543 -9651.0,0.10022778926420545 -9652.0,0.10019317778971987 -9653.0,0.10015857826754987 -9654.0,0.10012399069356796 -9655.0,0.1000894150636481 -9656.0,0.10005485137366574 -9657.0,0.10002029961949754 -9658.0,0.09998575979702183 -9659.0,0.09995123190211823 -9660.0,0.09991671593066785 -9661.0,0.09988221187855312 -9662.0,0.09984771974165799 -9663.0,0.0998132395158678 -9664.0,0.09977877119706936 -9665.0,0.09974431478115077 -9666.0,0.09970987026400165 -9667.0,0.09967543764151304 -9668.0,0.09964101690957743 -9669.0,0.09960660806408857 -9670.0,0.09957221110094178 -9671.0,0.09953782601603377 -9672.0,0.09950345280526263 -9673.0,0.09946909146452794 -9674.0,0.09943474198973057 -9675.0,0.0994004043767729 -9676.0,0.09936607862155872 -9677.0,0.09933176471999323 -9678.0,0.09929746266798299 -9679.0,0.09926317246143603 -9680.0,0.09922889409626179 -9681.0,0.09919462756837114 -9682.0,0.09916037287367625 -9683.0,0.09912613000809084 -9684.0,0.09909189896752998 -9685.0,0.0990576797479102 -9686.0,0.0990234723451493 -9687.0,0.09898927675516665 -9688.0,0.09895509297388294 -9689.0,0.09892092099722036 -9690.0,0.09888676082110234 -9691.0,0.09885261244145388 -9692.0,0.09881847585420131 -9693.0,0.09878435105527239 -9694.0,0.09875023804059634 -9695.0,0.09871613680610361 -9696.0,0.09868204734772623 -9697.0,0.09864796966139758 -9698.0,0.09861390374305247 -9699.0,0.09857984958862702 -9700.0,0.09854580719405884 -9701.0,0.09851177655528694 -9702.0,0.09847775766825173 -9703.0,0.09844375052889494 -9704.0,0.09840975513315979 -9705.0,0.0983757714769909 -9706.0,0.0983417995563343 -9707.0,0.0983078393671373 -9708.0,0.09827389090534874 -9709.0,0.09823995416691883 -9710.0,0.09820602914779915 -9711.0,0.09817211584394273 -9712.0,0.09813821425130388 -9713.0,0.09810432436583844 -9714.0,0.09807044618350358 -9715.0,0.09803657970025792 -9716.0,0.09800272491206137 -9717.0,0.09796888181487533 -9718.0,0.09793505040466258 -9719.0,0.09790123067738729 -9720.0,0.09786742262901495 -9721.0,0.09783362625551255 -9722.0,0.09779984155284843 -9723.0,0.09776606851699235 -9724.0,0.09773230714391537 -9725.0,0.09769855742959002 -9726.0,0.09766481936999023 -9727.0,0.09763109296109132 -9728.0,0.0975973781988699 -9729.0,0.09756367507930408 -9730.0,0.09752998359837334 -9731.0,0.0974963037520585 -9732.0,0.09746263553634188 -9733.0,0.097428978947207 -9734.0,0.09739533398063892 -9735.0,0.09736170063262405 -9736.0,0.09732807889915021 -9737.0,0.09729446877620648 -9738.0,0.09726087025978347 -9739.0,0.09722728334587313 -9740.0,0.09719370803046881 -9741.0,0.09716014430956516 -9742.0,0.09712659217915828 -9743.0,0.09709305163524568 -9744.0,0.09705952267382624 -9745.0,0.09702600529090011 -9746.0,0.09699249948246898 -9747.0,0.09695900524453582 -9748.0,0.09692552257310504 -9749.0,0.09689205146418242 -9750.0,0.09685859191377502 -9751.0,0.09682514391789142 -9752.0,0.0967917074725415 -9753.0,0.09675828257373657 -9754.0,0.09672486921748924 -9755.0,0.09669146739981353 -9756.0,0.09665807711672489 -9757.0,0.09662469836424012 -9758.0,0.0965913311383773 -9759.0,0.096557975435156 -9760.0,0.09652463125059714 -9761.0,0.09649129858072303 -9762.0,0.09645797742155726 -9763.0,0.09642466776912488 -9764.0,0.0963913696194523 -9765.0,0.09635808296856735 -9766.0,0.09632480781249908 -9767.0,0.09629154414727803 -9768.0,0.09625829196893611 -9769.0,0.09622505127350657 -9770.0,0.09619182205702408 -9771.0,0.09615860431552456 -9772.0,0.0961253980450454 -9773.0,0.09609220324162535 -9774.0,0.09605901990130454 -9775.0,0.09602584802012439 -9776.0,0.09599268759412773 -9777.0,0.09595953861935878 -9778.0,0.09592640109186318 -9779.0,0.09589327500768774 -9780.0,0.09586016036288082 -9781.0,0.09582705715349209 -9782.0,0.09579396537557261 -9783.0,0.0957608850251747 -9784.0,0.09572781609835214 -9785.0,0.09569475859116006 -9786.0,0.09566171249965494 -9787.0,0.09562867781989466 -9788.0,0.09559565454793834 -9789.0,0.0955626426798466 -9790.0,0.09552964221168134 -9791.0,0.09549665313950591 -9792.0,0.09546367545938485 -9793.0,0.09543070916738422 -9794.0,0.09539775425957137 -9795.0,0.09536481073201508 -9796.0,0.09533187858078533 -9797.0,0.09529895780195359 -9798.0,0.09526604839159267 -9799.0,0.09523315034577674 -9800.0,0.09520026366058124 -9801.0,0.09516738833208305 -9802.0,0.09513452435636038 -9803.0,0.09510167172949288 -9804.0,0.09506883044756134 -9805.0,0.0950360005066481 -9806.0,0.09500318190283677 -9807.0,0.09497037463221235 -9808.0,0.09493757869086121 -9809.0,0.09490479407487093 -9810.0,0.09487202078033061 -9811.0,0.09483925880333063 -9812.0,0.09480650813996276 -9813.0,0.09477376878632 -9814.0,0.09474104073849683 -9815.0,0.09470832399258904 -9816.0,0.0946756185446938 -9817.0,0.09464292439090947 -9818.0,0.09461024152733598 -9819.0,0.09457756995007445 -9820.0,0.09454490965522747 -9821.0,0.09451226063889881 -9822.0,0.09447962289719372 -9823.0,0.09444699642621876 -9824.0,0.09441438122208184 -9825.0,0.09438177728089223 -9826.0,0.09434918459876043 -9827.0,0.09431660317179844 -9828.0,0.0942840329961195 -9829.0,0.09425147406783828 -9830.0,0.09421892638307067 -9831.0,0.09418638993793399 -9832.0,0.09415386472854688 -9833.0,0.09412135075102937 -9834.0,0.09408884800150269 -9835.0,0.09405635647608955 -9836.0,0.09402387617091394 -9837.0,0.09399140708210124 -9838.0,0.09395894920577805 -9839.0,0.0939265025380724 -9840.0,0.09389406707511366 -9841.0,0.09386164281303255 -9842.0,0.09382922974796101 -9843.0,0.09379682787603244 -9844.0,0.09376443719338154 -9845.0,0.09373205769614432 -9846.0,0.0936996893804582 -9847.0,0.09366733224246178 -9848.0,0.09363498627829514 -9849.0,0.09360265148409963 -9850.0,0.09357032785601802 -9851.0,0.0935380153901942 -9852.0,0.09350571408277362 -9853.0,0.09347342392990295 -9854.0,0.09344114492773023 -9855.0,0.09340887707240476 -9856.0,0.09337662036007727 -9857.0,0.09334437478689972 -9858.0,0.09331214034902553 -9859.0,0.09327991704260928 -9860.0,0.09324770486380698 -9861.0,0.093215503808776 -9862.0,0.09318331387367494 -9863.0,0.09315113505466384 -9864.0,0.09311896734790391 -9865.0,0.09308681074955782 -9866.0,0.09305466525578954 -9867.0,0.09302253086276437 -9868.0,0.09299040756664884 -9869.0,0.09295829536361089 -9870.0,0.0929261942498198 -9871.0,0.09289410422144617 -9872.0,0.09286202527466181 -9873.0,0.09282995740563997 -9874.0,0.0927979006105552 -9875.0,0.0927658548855834 -9876.0,0.09273382022690164 -9877.0,0.0927017966306885 -9878.0,0.09266978409312378 -9879.0,0.09263778261038866 -9880.0,0.09260579217866549 -9881.0,0.09257381279413812 -9882.0,0.09254184445299164 -9883.0,0.09250988715141244 -9884.0,0.0924779408855883 -9885.0,0.09244600565170819 -9886.0,0.09241408144596248 -9887.0,0.09238216826454287 -9888.0,0.0923502661036424 -9889.0,0.09231837495945527 -9890.0,0.09228649482817715 -9891.0,0.09225462570600497 -9892.0,0.09222276758913703 -9893.0,0.09219092047377278 -9894.0,0.09215908435611316 -9895.0,0.09212725923236033 -9896.0,0.09209544509871785 -9897.0,0.09206364195139043 -9898.0,0.09203184978658421 -9899.0,0.09200006860050665 -9900.0,0.09196829838936647 -9901.0,0.09193653914937376 -9902.0,0.09190479087673979 -9903.0,0.09187305356767726 -9904.0,0.09184132721840015 -9905.0,0.09180961182512376 -9906.0,0.0917779073840646 -9907.0,0.09174621389144064 -9908.0,0.09171453134347102 -9909.0,0.09168285973637631 -9910.0,0.09165119906637825 -9911.0,0.09161954932969997 -9912.0,0.0915879105225659 -9913.0,0.09155628264120179 -9914.0,0.09152466568183461 -9915.0,0.0914930596406927 -9916.0,0.09146146451400569 -9917.0,0.09142988029800457 -9918.0,0.09139830698892148 -9919.0,0.09136674458299 -9920.0,0.09133519307644497 -9921.0,0.09130365246552251 -9922.0,0.09127212274646011 -9923.0,0.09124060391549642 -9924.0,0.0912090959688715 -9925.0,0.0911775989028267 -9926.0,0.09114611271360469 -9927.0,0.09111463739744931 -9928.0,0.09108317295060582 -9929.0,0.09105171936932074 -9930.0,0.09102027664984196 -9931.0,0.09098884478841845 -9932.0,0.09095742378130071 -9933.0,0.09092601362474043 -9934.0,0.09089461431499064 -9935.0,0.09086322584830556 -9936.0,0.0908318482209408 -9937.0,0.09080048142915326 -9938.0,0.09076912546920109 -9939.0,0.0907377803373438 -9940.0,0.09070644602984207 -9941.0,0.09067512254295797 -9942.0,0.09064380987295487 -9943.0,0.0906125080160974 -9944.0,0.0905812169686514 -9945.0,0.09054993672688413 -9946.0,0.0905186672870641 -9947.0,0.0904874086454611 -9948.0,0.09045616079834615 -9949.0,0.09042492374199163 -9950.0,0.0903936974726712 -9951.0,0.09036248198665982 -9952.0,0.09033127728023364 -9953.0,0.09030008334967021 -9954.0,0.09026890019124832 -9955.0,0.09023772780124807 -9956.0,0.09020656617595076 -9957.0,0.09017541531163907 -9958.0,0.09014427520459693 -9959.0,0.09011314585110955 -9960.0,0.09008202724746346 -9961.0,0.09005091938994636 -9962.0,0.09001982227484737 -9963.0,0.0899887358984568 -9964.0,0.08995766025706632 -9965.0,0.08992659534696877 -9966.0,0.08989554116445836 -9967.0,0.08986449770583053 -9968.0,0.08983346496738212 -9969.0,0.08980244294541101 -9970.0,0.08977143163621658 -9971.0,0.08974043103609938 -9972.0,0.08970944114136131 -9973.0,0.08967846194830545 -9974.0,0.08964749345323621 -9975.0,0.08961653565245929 -9976.0,0.08958558854228166 -9977.0,0.08955465211901156 -9978.0,0.08952372637895847 -9979.0,0.08949281131843319 -9980.0,0.08946190693374777 -9981.0,0.08943101322121559 -9982.0,0.08940013017715118 -9983.0,0.08936925779787044 -9984.0,0.08933839607969056 -9985.0,0.08930754501892996 -9986.0,0.08927670461190827 -9987.0,0.0892458748549465 -9988.0,0.08921505574436689 -9989.0,0.08918424727649296 -9990.0,0.08915344944764941 -9991.0,0.08912266225416235 -9992.0,0.08909188569235907 -9993.0,0.08906111975856819 -9994.0,0.08903036444911948 -9995.0,0.08899961976034411 -9996.0,0.08896888568857445 -9997.0,0.08893816223014414 -9998.0,0.08890744938138816 -9999.0,0.08887674713864259 -10000.0,0.08884605549824492 -10001.0,0.08881537445653388 -10002.0,0.08878470400984946 -10003.0,0.08875404415453284 -10004.0,0.08872339488692654 -10005.0,0.08869275620337434 -10006.0,0.08866212810022131 -10007.0,0.08863151057381366 -10008.0,0.08860090362049898 -10009.0,0.08857030723662608 -10010.0,0.08853972141854508 -10011.0,0.08850914616260723 -10012.0,0.08847858146516517 -10013.0,0.08844802732257276 -10014.0,0.0884174837311851 -10015.0,0.08838695068735859 -10016.0,0.08835642818745082 -10017.0,0.0883259162278207 -10018.0,0.08829541480482836 -10019.0,0.08826492391483526 -10020.0,0.08823444355420398 -10021.0,0.08820397371929847 -10022.0,0.0881735144064839 -10023.0,0.08814306561212673 -10024.0,0.08811262733259456 -10025.0,0.08808219956425639 -10026.0,0.08805178230348239 -10027.0,0.08802137554664403 -10028.0,0.08799097929011396 -10029.0,0.08796059353026613 -10030.0,0.08793021826347576 -10031.0,0.08789985348611935 -10032.0,0.08786949919457451 -10033.0,0.08783915538522025 -10034.0,0.08780882205443674 -10035.0,0.08777849919860548 -10036.0,0.08774818681410917 -10037.0,0.08771788489733173 -10038.0,0.08768759344465836 -10039.0,0.08765731245247554 -10040.0,0.087627041917171 -10041.0,0.08759678183513359 -10042.0,0.08756653220275357 -10043.0,0.08753629301642235 -10044.0,0.08750606427253269 -10045.0,0.0874758459674784 -10046.0,0.08744563809765474 -10047.0,0.0874154406594581 -10048.0,0.08738525364928619 -10049.0,0.08735507706353786 -10050.0,0.08732491089861329 -10051.0,0.08729475515091385 -10052.0,0.08726460981684223 -10053.0,0.08723447489280232 -10054.0,0.08720435037519916 -10055.0,0.08717423626043919 -10056.0,0.08714413254492996 -10057.0,0.0871140392250804 -10058.0,0.08708395629730051 -10059.0,0.08705388375800163 -10060.0,0.08702382160359635 -10061.0,0.08699376983049852 -10062.0,0.08696372843512308 -10063.0,0.08693369741388636 -10064.0,0.08690367676320589 -10065.0,0.08687366647950044 -10066.0,0.08684366655918994 -10067.0,0.08681367699869566 -10068.0,0.08678369779444006 -10069.0,0.08675372894284687 -10070.0,0.08672377044034096 -10071.0,0.08669382228334854 -10072.0,0.086663884468297 -10073.0,0.08663395699161497 -10074.0,0.08660403984973239 -10075.0,0.08657413303908025 -10076.0,0.08654423655609095 -10077.0,0.08651435039719804 -10078.0,0.08648447455883637 -10079.0,0.0864546090374419 -10080.0,0.08642475382945192 -10081.0,0.0863949089313049 -10082.0,0.08636507433944064 -10083.0,0.08633525005029999 -10084.0,0.08630543606032516 -10085.0,0.08627563236595959 -10086.0,0.08624583896364792 -10087.0,0.08621605584983595 -10088.0,0.08618628302097082 -10089.0,0.08615652047350085 -10090.0,0.08612676820387558 -10091.0,0.0860970262085458 -10092.0,0.08606729448396346 -10093.0,0.0860375730265818 -10094.0,0.08600786183285528 -10095.0,0.0859781608992396 -10096.0,0.08594847022219157 -10097.0,0.08591878979816937 -10098.0,0.08588911962363233 -10099.0,0.08585945969504105 -10100.0,0.08582981000885725 -10101.0,0.08580017056154397 -10102.0,0.08577054134956544 -10103.0,0.08574092236938716 -10104.0,0.08571131361747569 -10105.0,0.08568171509029901 -10106.0,0.0856521267843262 -10107.0,0.08562254869602763 -10108.0,0.08559298082187478 -10109.0,0.08556342315834045 -10110.0,0.08553387570189865 -10111.0,0.08550433844902455 -10112.0,0.08547481139619463 -10113.0,0.08544529453988645 -10114.0,0.08541578787657889 -10115.0,0.08538629140275203 -10116.0,0.0853568051148872 -10117.0,0.08532732900946681 -10118.0,0.08529786308297463 -10119.0,0.08526840733189557 -10120.0,0.08523896175271584 -10121.0,0.08520952634192269 -10122.0,0.08518010109600474 -10123.0,0.08515068601145179 -10124.0,0.08512128108475485 -10125.0,0.08509188631240605 -10126.0,0.08506250169089886 -10127.0,0.0850331272167279 -10128.0,0.08500376288638901 -10129.0,0.08497440869637929 -10130.0,0.08494506464319691 -10131.0,0.08491573072334138 -10132.0,0.08488640693331338 -10133.0,0.08485709326961483 -10134.0,0.08482778972874874 -10135.0,0.08479849630721946 -10136.0,0.08476921300153249 -10137.0,0.0847399398081946 -10138.0,0.08471067672371362 -10139.0,0.08468142374459872 -10140.0,0.08465218086736023 -10141.0,0.08462294808850974 -10142.0,0.0845937254045599 -10143.0,0.08456451281202469 -10144.0,0.08453531030741929 -10145.0,0.08450611788726002 -10146.0,0.08447693554806449 -10147.0,0.08444776328635138 -10148.0,0.0844186010986407 -10149.0,0.08438944898145362 -10150.0,0.08436030693131251 -10151.0,0.08433117494474089 -10152.0,0.08430205301826356 -10153.0,0.08427294114840647 -10154.0,0.08424383933169684 -10155.0,0.08421474756466295 -10156.0,0.08418566584383441 -10157.0,0.08415659416574198 -10158.0,0.08412753252691765 -10159.0,0.08409848092389453 -10160.0,0.08406943935320699 -10161.0,0.08404040781139058 -10162.0,0.08401138629498209 -10163.0,0.0839823748005194 -10164.0,0.08395337332454168 -10165.0,0.08392438186358926 -10166.0,0.08389540041420368 -10167.0,0.0838664289729277 -10168.0,0.08383746753630517 -10169.0,0.08380851610088122 -10170.0,0.08377957466320216 -10171.0,0.08375064321981554 -10172.0,0.08372172176726995 -10173.0,0.08369281030211534 -10174.0,0.08366390882090277 -10175.0,0.08363501732018454 -10176.0,0.083606135796514 -10177.0,0.08357726424644589 -10178.0,0.08354840266653601 -10179.0,0.08351955105334143 -10180.0,0.08349070940342027 -10181.0,0.083461877713332 -10182.0,0.08343305597963718 -10183.0,0.08340424419889761 -10184.0,0.08337544236767627 -10185.0,0.08334665048253727 -10186.0,0.08331786854004594 -10187.0,0.08328909653676884 -10188.0,0.08326033446927371 -10189.0,0.08323158233412936 -10190.0,0.08320284012790592 -10191.0,0.08317410784717465 -10192.0,0.08314538548850803 -10193.0,0.08311667304847963 -10194.0,0.08308797052366428 -10195.0,0.083059277910638 -10196.0,0.08303059520597798 -10197.0,0.08300192240626254 -10198.0,0.08297325950807126 -10199.0,0.08294460650798485 -10200.0,0.08291596340258525 -10201.0,0.08288733018845548 -10202.0,0.08285870686217985 -10203.0,0.0828300934203438 -10204.0,0.08280148985953394 -10205.0,0.08277289617633812 -10206.0,0.08274431236734528 -10207.0,0.08271573842914556 -10208.0,0.08268717435833035 -10209.0,0.08265862015149217 -10210.0,0.08263007580522465 -10211.0,0.08260154131612268 -10212.0,0.08257301668078232 -10213.0,0.08254450189580081 -10214.0,0.08251599695777649 -10215.0,0.08248750186330896 -10216.0,0.08245901660899896 -10217.0,0.08243054119144844 -10218.0,0.08240207560726041 -10219.0,0.08237361985303919 -10220.0,0.0823451739253902 -10221.0,0.08231673782092006 -10222.0,0.08228831153623657 -10223.0,0.08225989506794862 -10224.0,0.08223148841266636 -10225.0,0.08220309156700112 -10226.0,0.08217470452756534 -10227.0,0.08214632729097263 -10228.0,0.0821179598538378 -10229.0,0.08208960221277684 -10230.0,0.08206125436440691 -10231.0,0.08203291630534626 -10232.0,0.08200458803221439 -10233.0,0.08197626954163195 -10234.0,0.0819479608302208 -10235.0,0.08191966189460381 -10236.0,0.0818913727314052 -10237.0,0.08186309333725025 -10238.0,0.08183482370876548 -10239.0,0.08180656384257846 -10240.0,0.08177831373531803 -10241.0,0.08175007338361416 -10242.0,0.08172184278409797 -10243.0,0.08169362193340181 -10244.0,0.08166541082815904 -10245.0,0.08163720946500434 -10246.0,0.08160901784057348 -10247.0,0.08158083595150345 -10248.0,0.0815526637944323 -10249.0,0.08152450136599929 -10250.0,0.08149634866284487 -10251.0,0.08146820568161067 -10252.0,0.08144007241893936 -10253.0,0.08141194887147489 -10254.0,0.08138383503586231 -10255.0,0.0813557309087479 -10256.0,0.08132763648677895 -10257.0,0.08129955176660406 -10258.0,0.0812714767448729 -10259.0,0.08124341141823634 -10260.0,0.08121535578334643 -10261.0,0.08118730983685625 -10262.0,0.08115927357542019 -10263.0,0.0811312469956937 -10264.0,0.08110323009433346 -10265.0,0.08107522286799718 -10266.0,0.08104722531334384 -10267.0,0.08101923742703353 -10268.0,0.08099125920572756 -10269.0,0.08096329064608823 -10270.0,0.08093533174477915 -10271.0,0.08090738249846503 -10272.0,0.08087944290381174 -10273.0,0.08085151295748626 -10274.0,0.08082359265615674 -10275.0,0.08079568199649251 -10276.0,0.08076778097516407 -10277.0,0.08073988958884297 -10278.0,0.08071200783420199 -10279.0,0.08068413570791505 -10280.0,0.0806562732066572 -10281.0,0.0806284203271047 -10282.0,0.08060057706593482 -10283.0,0.08057274341982609 -10284.0,0.08054491938545817 -10285.0,0.08051710495951188 -10286.0,0.08048930013866912 -10287.0,0.08046150491961297 -10288.0,0.0804337192990277 -10289.0,0.0804059432735987 -10290.0,0.08037817684001244 -10291.0,0.08035041999495661 -10292.0,0.08032267273512003 -10293.0,0.08029493505719268 -10294.0,0.08026720695786559 -10295.0,0.08023948843383102 -10296.0,0.08021177948178239 -10297.0,0.0801840800984142 -10298.0,0.08015639028042214 -10299.0,0.08012871002450296 -10300.0,0.08010103932735466 -10301.0,0.08007337818567628 -10302.0,0.08004572659616813 -10303.0,0.08001808455553149 -10304.0,0.07999045206046888 -10305.0,0.07996282910768399 -10306.0,0.0799352156938816 -10307.0,0.07990761181576757 -10308.0,0.079880017470049 -10309.0,0.07985243265343409 -10310.0,0.07982485736263219 -10311.0,0.07979729159435371 -10312.0,0.07976973534531029 -10313.0,0.07974218861221467 -10314.0,0.07971465139178076 -10315.0,0.0796871236807235 -10316.0,0.07965960547575908 -10317.0,0.07963209677360475 -10318.0,0.07960459757097896 -10319.0,0.07957710786460126 -10320.0,0.07954962765119228 -10321.0,0.07952215692747384 -10322.0,0.07949469569016891 -10323.0,0.07946724393600159 -10324.0,0.07943980166169701 -10325.0,0.07941236886398155 -10326.0,0.07938494553958267 -10327.0,0.07935753168522902 -10328.0,0.07933012729765022 -10329.0,0.07930273237357721 -10330.0,0.07927534690974193 -10331.0,0.07924797090287757 -10332.0,0.07922060434971825 -10333.0,0.07919324724699943 -10334.0,0.07916589959145758 -10335.0,0.07913856137983032 -10336.0,0.07911123260885644 -10337.0,0.07908391327527575 -10338.0,0.07905660337582929 -10339.0,0.07902930290725918 -10340.0,0.07900201186630873 -10341.0,0.07897473024972221 -10342.0,0.07894745805424519 -10343.0,0.07892019527662428 -10344.0,0.07889294191360727 -10345.0,0.07886569796194297 -10346.0,0.07883846341838138 -10347.0,0.07881123827967365 -10348.0,0.07878402254257205 -10349.0,0.07875681620382986 -10350.0,0.0787296192602016 -10351.0,0.07870243170844288 -10352.0,0.07867525354531044 -10353.0,0.07864808476756208 -10354.0,0.07862092537195677 -10355.0,0.07859377535525461 -10356.0,0.0785666347142168 -10357.0,0.07853950344560569 -10358.0,0.07851238154618465 -10359.0,0.07848526901271827 -10360.0,0.07845816584197221 -10361.0,0.07843107203071331 -10362.0,0.07840398757570942 -10363.0,0.07837691247372956 -10364.0,0.0783498467215439 -10365.0,0.0783227903159237 -10366.0,0.07829574325364128 -10367.0,0.07826870553147014 -10368.0,0.0782416771461849 -10369.0,0.07821465809456128 -10370.0,0.07818764837337606 -10371.0,0.0781606479794072 -10372.0,0.07813365690943373 -10373.0,0.07810667516023585 -10374.0,0.07807970272859485 -10375.0,0.07805273961129304 -10376.0,0.07802578580511395 -10377.0,0.0779988413068422 -10378.0,0.07797190611326354 -10379.0,0.07794498022116474 -10380.0,0.07791806362733374 -10381.0,0.0778911563285596 -10382.0,0.07786425832163253 -10383.0,0.0778373696033437 -10384.0,0.07781049017048552 -10385.0,0.0777836200198515 -10386.0,0.07775675914823621 -10387.0,0.07772990755243532 -10388.0,0.07770306522924564 -10389.0,0.07767623217546508 -10390.0,0.0776494083878927 -10391.0,0.07762259386332852 -10392.0,0.07759578859857383 -10393.0,0.07756899259043094 -10394.0,0.07754220583570329 -10395.0,0.07751542833119544 -10396.0,0.07748866007371297 -10397.0,0.07746190106006265 -10398.0,0.07743515128705232 -10399.0,0.07740841075149098 -10400.0,0.07738167945018859 -10401.0,0.07735495737995633 -10402.0,0.07732824453760649 -10403.0,0.07730154091995241 -10404.0,0.0772748465238085 -10405.0,0.07724816134599036 -10406.0,0.07722148538331462 -10407.0,0.07719481863259907 -10408.0,0.07716816109066249 -10409.0,0.07714151275432489 -10410.0,0.07711487362040728 -10411.0,0.07708824368573182 -10412.0,0.0770616229471218 -10413.0,0.07703501140140148 -10414.0,0.07700840904539633 -10415.0,0.07698181587593289 -10416.0,0.07695523188983881 -10417.0,0.07692865708394277 -10418.0,0.0769020914550746 -10419.0,0.0768755350000652 -10420.0,0.07684898771574666 -10421.0,0.07682244959895199 -10422.0,0.07679592064651541 -10423.0,0.07676940085527223 -10424.0,0.07674289022205885 -10425.0,0.07671638874371267 -10426.0,0.07668989641707231 -10427.0,0.07666341323897743 -10428.0,0.0766369392062688 -10429.0,0.0766104743157882 -10430.0,0.07658401856437859 -10431.0,0.07655757194888399 -10432.0,0.07653113446614952 -10433.0,0.07650470611302143 -10434.0,0.0764782868863469 -10435.0,0.07645187678297438 -10436.0,0.07642547579975333 -10437.0,0.07639908393353433 -10438.0,0.07637270118116894 -10439.0,0.07634632753950996 -10440.0,0.07631996300541119 -10441.0,0.07629360757572756 -10442.0,0.076267261247315 -10443.0,0.07624092401703061 -10444.0,0.07621459588173257 -10445.0,0.07618827683828015 -10446.0,0.07616196688353359 -10447.0,0.07613566601435438 -10448.0,0.07610937422760498 -10449.0,0.07608309152014898 -10450.0,0.0760568178888511 -10451.0,0.07603055333057701 -10452.0,0.07600429784219356 -10453.0,0.07597805142056867 -10454.0,0.07595181406257137 -10455.0,0.07592558576507166 -10456.0,0.07589936652494074 -10457.0,0.07587315633905083 -10458.0,0.0758469552042753 -10459.0,0.07582076311748845 -10460.0,0.07579458007556582 -10461.0,0.07576840607538395 -10462.0,0.0757422411138205 -10463.0,0.07571608518775412 -10464.0,0.07568993829406463 -10465.0,0.0756638004296329 -10466.0,0.07563767159134091 -10467.0,0.07561155177607161 -10468.0,0.07558544098070913 -10469.0,0.07555933920213863 -10470.0,0.07553324643724638 -10471.0,0.07550716268291971 -10472.0,0.07548108793604698 -10473.0,0.07545502219351768 -10474.0,0.07542896545222236 -10475.0,0.07540291770905268 -10476.0,0.07537687896090126 -10477.0,0.0753508492046619 -10478.0,0.07532482843722943 -10479.0,0.07529881665549983 -10480.0,0.07527281385636997 -10481.0,0.07524682003673798 -10482.0,0.07522083519350298 -10483.0,0.07519485932356518 -10484.0,0.0751688924238258 -10485.0,0.0751429344911872 -10486.0,0.07511698552255279 -10487.0,0.07509104551482705 -10488.0,0.07506511446491557 -10489.0,0.07503919236972488 -10490.0,0.0750132792261627 -10491.0,0.0749873750311378 -10492.0,0.07496147978156 -10493.0,0.07493559347434015 -10494.0,0.0749097161063902 -10495.0,0.07488384767462322 -10496.0,0.07485798817595328 -10497.0,0.07483213760729548 -10498.0,0.07480629596556608 -10499.0,0.07478046324768235 -10500.0,0.07475463945056267 -10501.0,0.07472882457112638 -10502.0,0.07470301860629398 -10503.0,0.07467722155298703 -10504.0,0.07465143340812815 -10505.0,0.07462565416864092 -10506.0,0.07459988383145012 -10507.0,0.07457412239348153 -10508.0,0.074548369851662 -10509.0,0.07452262620291947 -10510.0,0.07449689144418283 -10511.0,0.07447116557238216 -10512.0,0.07444544858444857 -10513.0,0.0744197404773142 -10514.0,0.07439404124791223 -10515.0,0.07436835089317695 -10516.0,0.07434266941004368 -10517.0,0.07431699679544884 -10518.0,0.07429133304632983 -10519.0,0.07426567815962518 -10520.0,0.07424003213227441 -10521.0,0.07421439496121822 -10522.0,0.07418876664339819 -10523.0,0.07416314717575707 -10524.0,0.07413753655523868 -10525.0,0.07411193477878783 -10526.0,0.07408634184335046 -10527.0,0.07406075774587345 -10528.0,0.07403518248330485 -10529.0,0.0740096160525937 -10530.0,0.07398405845069013 -10531.0,0.07395850967454527 -10532.0,0.07393296972111137 -10533.0,0.07390743858734167 -10534.0,0.07388191627019056 -10535.0,0.07385640276661332 -10536.0,0.07383089807356642 -10537.0,0.07380540218800734 -10538.0,0.07377991510689462 -10539.0,0.0737544368271878 -10540.0,0.07372896734584752 -10541.0,0.07370350665983547 -10542.0,0.07367805476611439 -10543.0,0.07365261166164801 -10544.0,0.07362717734340117 -10545.0,0.07360175180833975 -10546.0,0.07357633505343066 -10547.0,0.07355092707564191 -10548.0,0.07352552787194244 -10549.0,0.07350013743930235 -10550.0,0.07347475577469274 -10551.0,0.0734493828750858 -10552.0,0.07342401873745467 -10553.0,0.07339866335877361 -10554.0,0.07337331673601791 -10555.0,0.07334797886616394 -10556.0,0.07332264974618902 -10557.0,0.0732973293730716 -10558.0,0.07327201774379112 -10559.0,0.07324671485532815 -10560.0,0.07322142070466416 -10561.0,0.07319613528878179 -10562.0,0.07317085860466464 -10563.0,0.07314559064929743 -10564.0,0.07312033141966588 -10565.0,0.0730950809127567 -10566.0,0.0730698391255577 -10567.0,0.07304460605505773 -10568.0,0.07301938169824672 -10569.0,0.07299416605211549 -10570.0,0.07296895911365606 -10571.0,0.0729437608798614 -10572.0,0.07291857134772559 -10573.0,0.07289339051424364 -10574.0,0.07286821837641168 -10575.0,0.07284305493122688 -10576.0,0.07281790017568743 -10577.0,0.0727927541067925 -10578.0,0.07276761672154239 -10579.0,0.07274248801693838 -10580.0,0.07271736798998282 -10581.0,0.07269225663767905 -10582.0,0.07266715395703144 -10583.0,0.07264205994504548 -10584.0,0.07261697459872761 -10585.0,0.07259189791508536 -10586.0,0.07256682989112721 -10587.0,0.07254177052386276 -10588.0,0.07251671981030261 -10589.0,0.07249167774745842 -10590.0,0.07246664433234279 -10591.0,0.07244161956196946 -10592.0,0.07241660343335314 -10593.0,0.07239159594350962 -10594.0,0.07236659708945566 -10595.0,0.07234160686820906 -10596.0,0.0723166252767887 -10597.0,0.07229165231221447 -10598.0,0.07226668797150725 -10599.0,0.07224173225168898 -10600.0,0.07221678514978262 -10601.0,0.07219184666281217 -10602.0,0.0721669167878027 -10603.0,0.07214199552178016 -10604.0,0.0721170828617717 -10605.0,0.07209217880480537 -10606.0,0.07206728334791036 -10607.0,0.07204239648811676 -10608.0,0.07201751822245578 -10609.0,0.07199264854795961 -10610.0,0.07196778746166153 -10611.0,0.07194293496059573 -10612.0,0.0719180910417975 -10613.0,0.07189325570230315 -10614.0,0.07186842893915005 -10615.0,0.07184361074937647 -10616.0,0.07181880113002181 -10617.0,0.07179400007812647 -10618.0,0.07176920759073191 -10619.0,0.07174442366488049 -10620.0,0.07171964829761569 -10621.0,0.071694881485982 -10622.0,0.07167012322702494 -10623.0,0.07164537351779103 -10624.0,0.07162063235532776 -10625.0,0.07159589973668372 -10626.0,0.07157117565890848 -10627.0,0.07154646011905269 -10628.0,0.07152175311416789 -10629.0,0.07149705464130673 -10630.0,0.07147236469752291 -10631.0,0.07144768327987108 -10632.0,0.0714230103854069 -10633.0,0.07139834601118708 -10634.0,0.07137369015426935 -10635.0,0.07134904281171249 -10636.0,0.07132440398057617 -10637.0,0.07129977365792119 -10638.0,0.07127515184080933 -10639.0,0.07125053852630342 -10640.0,0.07122593371146725 -10641.0,0.07120133739336562 -10642.0,0.07117674956906439 -10643.0,0.07115217023563042 -10644.0,0.0711275993901316 -10645.0,0.07110303702963672 -10646.0,0.07107848315121573 -10647.0,0.07105393775193952 -10648.0,0.07102940082888004 -10649.0,0.07100487237911016 -10650.0,0.07098035239970382 -10651.0,0.07095584088773597 -10652.0,0.07093133784028263 -10653.0,0.07090684325442068 -10654.0,0.07088235712722811 -10655.0,0.07085787945578392 -10656.0,0.07083341023716815 -10657.0,0.0708089494684617 -10658.0,0.07078449714674663 -10659.0,0.07076005326910596 -10660.0,0.07073561783262372 -10661.0,0.07071119083438496 -10662.0,0.07068677227147566 -10663.0,0.07066236214098287 -10664.0,0.07063796043999468 -10665.0,0.07061356716560015 -10666.0,0.0705891823148893 -10667.0,0.07056480588495319 -10668.0,0.07054043787288392 -10669.0,0.07051607827577458 -10670.0,0.0704917270907192 -10671.0,0.07046738431481288 -10672.0,0.07044304994515171 -10673.0,0.07041872397883281 -10674.0,0.07039440641295419 -10675.0,0.070370097244615 -10676.0,0.07034579647091531 -10677.0,0.07032150408895624 -10678.0,0.07029722009583989 -10679.0,0.0702729444886693 -10680.0,0.07024867726454861 -10681.0,0.07022441842058291 -10682.0,0.07020016795387835 -10683.0,0.07017592586154191 -10684.0,0.07015169214068177 -10685.0,0.07012746678840699 -10686.0,0.07010324980182772 -10687.0,0.07007904117805497 -10688.0,0.07005484091420086 -10689.0,0.07003064900737849 -10690.0,0.07000646545470195 -10691.0,0.06998229025328627 -10692.0,0.06995812340024755 -10693.0,0.06993396489270287 -10694.0,0.06990981472777032 -10695.0,0.0698856729025689 -10696.0,0.0698615394142187 -10697.0,0.06983741425984076 -10698.0,0.06981329743655713 -10699.0,0.0697891889414909 -10700.0,0.06976508877176602 -10701.0,0.06974099692450755 -10702.0,0.0697169133968415 -10703.0,0.06969283818589493 -10704.0,0.06966877128879577 -10705.0,0.06964471270267304 -10706.0,0.06962066242465674 -10707.0,0.06959662045187787 -10708.0,0.06957258678146833 -10709.0,0.06954856141056112 -10710.0,0.06952454433629018 -10711.0,0.0695005355557905 -10712.0,0.06947653506619791 -10713.0,0.0694525428646494 -10714.0,0.06942855894828283 -10715.0,0.06940458331423713 -10716.0,0.0693806159596522 -10717.0,0.06935665688166884 -10718.0,0.06933270607742895 -10719.0,0.06930876354407535 -10720.0,0.06928482927875193 -10721.0,0.06926090327860343 -10722.0,0.0692369855407757 -10723.0,0.0692130760624155 -10724.0,0.06918917484067066 -10725.0,0.06916528187268986 -10726.0,0.06914139715562288 -10727.0,0.06911752068662046 -10728.0,0.06909365246283432 -10729.0,0.0690697924814171 -10730.0,0.06904594073952253 -10731.0,0.06902209723430525 -10732.0,0.06899826196292091 -10733.0,0.06897443492252613 -10734.0,0.06895061611027851 -10735.0,0.06892680552333666 -10736.0,0.06890300315886014 -10737.0,0.06887920901400953 -10738.0,0.06885542308594629 -10739.0,0.06883164537183299 -10740.0,0.06880787586883311 -10741.0,0.06878411457411115 -10742.0,0.0687603614848325 -10743.0,0.06873661659816362 -10744.0,0.06871287991127191 -10745.0,0.06868915142132581 -10746.0,0.0686654311254946 -10747.0,0.06864171902094866 -10748.0,0.06861801510485932 -10749.0,0.06859431937439889 -10750.0,0.06857063182674059 -10751.0,0.06854695245905869 -10752.0,0.06852328126852843 -10753.0,0.06849961825232599 -10754.0,0.06847596340762858 -10755.0,0.06845231673161431 -10756.0,0.0684286782214623 -10757.0,0.06840504787435268 -10758.0,0.06838142568746652 -10759.0,0.06835781165798585 -10760.0,0.06833420578309367 -10761.0,0.068310608059974 -10762.0,0.06828701848581183 -10763.0,0.06826343705779303 -10764.0,0.06823986377310454 -10765.0,0.06821629862893423 -10766.0,0.06819274162247099 -10767.0,0.06816919275090459 -10768.0,0.06814565201142583 -10769.0,0.06812211940122649 -10770.0,0.06809859491749932 -10771.0,0.06807507855743798 -10772.0,0.06805157031823714 -10773.0,0.06802807019709245 -10774.0,0.06800457819120054 -10775.0,0.06798109429775898 -10776.0,0.06795761851396626 -10777.0,0.06793415083702194 -10778.0,0.06791069126412647 -10779.0,0.06788723979248135 -10780.0,0.06786379641928891 -10781.0,0.06784036114175257 -10782.0,0.06781693395707668 -10783.0,0.06779351486246654 -10784.0,0.06777010385512841 -10785.0,0.06774670093226953 -10786.0,0.06772330609109811 -10787.0,0.06769991932882334 -10788.0,0.06767654064265528 -10789.0,0.06765317002980509 -10790.0,0.06762980748748479 -10791.0,0.06760645301290742 -10792.0,0.06758310660328698 -10793.0,0.06755976825583836 -10794.0,0.06753643796777749 -10795.0,0.06751311573632124 -10796.0,0.06748980155868746 -10797.0,0.06746649543209489 -10798.0,0.0674431973537633 -10799.0,0.06741990732091342 -10800.0,0.06739662533076693 -10801.0,0.06737335138054638 -10802.0,0.06735008546747542 -10803.0,0.0673268275887786 -10804.0,0.06730357774168143 -10805.0,0.06728033592341032 -10806.0,0.06725710213119271 -10807.0,0.067233876362257 -10808.0,0.06721065861383255 -10809.0,0.06718744888314959 -10810.0,0.06716424716743939 -10811.0,0.06714105346393416 -10812.0,0.06711786776986706 -10813.0,0.06709469008247224 -10814.0,0.0670715203989847 -10815.0,0.06704835871664051 -10816.0,0.06702520503267664 -10817.0,0.06700205934433107 -10818.0,0.0669789216488426 -10819.0,0.06695579194345112 -10820.0,0.06693267022539744 -10821.0,0.0669095564919233 -10822.0,0.06688645074027137 -10823.0,0.06686335296768531 -10824.0,0.06684026317140974 -10825.0,0.06681718134869025 -10826.0,0.06679410749677328 -10827.0,0.06677104161290631 -10828.0,0.06674798369433775 -10829.0,0.06672493373831698 -10830.0,0.0667018917420943 -10831.0,0.06667885770292095 -10832.0,0.06665583161804914 -10833.0,0.06663281348473203 -10834.0,0.06660980330022376 -10835.0,0.0665868010617793 -10836.0,0.06656380676665473 -10837.0,0.06654082041210695 -10838.0,0.06651784199539391 -10839.0,0.06649487151377438 -10840.0,0.06647190896450819 -10841.0,0.06644895434485608 -10842.0,0.06642600765207975 -10843.0,0.06640306888344176 -10844.0,0.06638013803620572 -10845.0,0.06635721510763616 -10846.0,0.06633430009499855 -10847.0,0.06631139299555926 -10848.0,0.06628849380658564 -10849.0,0.06626560252534601 -10850.0,0.06624271914910959 -10851.0,0.0662198436751466 -10852.0,0.0661969761007281 -10853.0,0.06617411642312618 -10854.0,0.06615126463961386 -10855.0,0.06612842074746511 -10856.0,0.06610558474395475 -10857.0,0.06608275662635867 -10858.0,0.06605993639195362 -10859.0,0.06603712403801734 -10860.0,0.06601431956182843 -10861.0,0.06599152296066652 -10862.0,0.06596873423181213 -10863.0,0.06594595337254676 -10864.0,0.06592318038015275 -10865.0,0.06590041525191352 -10866.0,0.06587765798511332 -10867.0,0.06585490857703737 -10868.0,0.06583216702497188 -10869.0,0.06580943332620388 -10870.0,0.06578670747802144 -10871.0,0.06576398947771353 -10872.0,0.0657412793225701 -10873.0,0.0657185770098819 -10874.0,0.06569588253694077 -10875.0,0.06567319590103941 -10876.0,0.06565051709947152 -10877.0,0.06562784612953161 -10878.0,0.06560518298851523 -10879.0,0.06558252767371882 -10880.0,0.06555988018243981 -10881.0,0.06553724051197646 -10882.0,0.06551460865962805 -10883.0,0.06549198462269476 -10884.0,0.06546936839847775 -10885.0,0.065446759984279 -10886.0,0.06542415937740151 -10887.0,0.06540156657514921 -10888.0,0.06537898157482695 -10889.0,0.06535640437374052 -10890.0,0.06533383496919656 -10891.0,0.06531127335850274 -10892.0,0.06528871953896763 -10893.0,0.06526617350790075 -10894.0,0.06524363526261247 -10895.0,0.06522110480041415 -10896.0,0.06519858211861809 -10897.0,0.06517606721453752 -10898.0,0.06515356008548652 -10899.0,0.06513106072878018 -10900.0,0.06510856914173449 -10901.0,0.06508608532166642 -10902.0,0.06506360926589372 -10903.0,0.0650411409717352 -10904.0,0.06501868043651056 -10905.0,0.06499622765754044 -10906.0,0.06497378263214638 -10907.0,0.06495134535765083 -10908.0,0.06492891583137719 -10909.0,0.0649064940506498 -10910.0,0.06488408001279392 -10911.0,0.06486167371513567 -10912.0,0.06483927515500215 -10913.0,0.06481688432972141 -10914.0,0.06479450123662239 -10915.0,0.0647721258730349 -10916.0,0.06474975823628976 -10917.0,0.06472739832371865 -10918.0,0.06470504613265425 -10919.0,0.06468270166043004 -10920.0,0.06466036490438051 -10921.0,0.06463803586184107 -10922.0,0.06461571453014801 -10923.0,0.06459340090663855 -10924.0,0.06457109498865085 -10925.0,0.06454879677352397 -10926.0,0.06452650625859789 -10927.0,0.06450422344121357 -10928.0,0.06448194831871273 -10929.0,0.06445968088843818 -10930.0,0.06443742114773357 -10931.0,0.06441516909394349 -10932.0,0.06439292472441338 -10933.0,0.06437068803648968 -10934.0,0.0643484590275197 -10935.0,0.06432623769485175 -10936.0,0.06430402403583489 -10937.0,0.06428181804781925 -10938.0,0.06425961972815579 -10939.0,0.06423742907419647 -10940.0,0.06421524608329401 -10941.0,0.06419307075280221 -10942.0,0.0641709030800757 -10943.0,0.06414874306247002 -10944.0,0.0641265906973417 -10945.0,0.06410444598204805 -10946.0,0.0640823089139474 -10947.0,0.06406017949039895 -10948.0,0.06403805770876288 -10949.0,0.06401594356640013 -10950.0,0.06399383706067267 -10951.0,0.06397173818894339 -10952.0,0.06394964694857606 -10953.0,0.0639275633369353 -10954.0,0.06390548735138675 -10955.0,0.06388341898929686 -10956.0,0.06386135824803311 -10957.0,0.06383930512496372 -10958.0,0.06381725961745797 -10959.0,0.06379522172288597 -10960.0,0.0637731914386188 -10961.0,0.06375116876202835 -10962.0,0.06372915369048751 -10963.0,0.06370714622137003 -10964.0,0.06368514635205058 -10965.0,0.06366315407990478 -10966.0,0.06364116940230903 -10967.0,0.06361919231664076 -10968.0,0.06359722282027828 -10969.0,0.0635752609106008 -10970.0,0.06355330658498835 -10971.0,0.06353135984082202 -10972.0,0.06350942067548367 -10973.0,0.06348748908635617 -10974.0,0.06346556507082318 -10975.0,0.06344364862626936 -10976.0,0.06342173975008022 -10977.0,0.06339983843964224 -10978.0,0.06337794469234269 -10979.0,0.06335605850556984 -10980.0,0.0633341798767128 -10981.0,0.06331230880316165 -10982.0,0.06329044528230733 -10983.0,0.06326858931154163 -10984.0,0.06324674088825732 -10985.0,0.06322490000984805 -10986.0,0.06320306667370838 -10987.0,0.06318124087723372 -10988.0,0.0631594226178204 -10989.0,0.0631376118928657 -10990.0,0.06311580869976775 -10991.0,0.06309401303592557 -10992.0,0.0630722248987391 -10993.0,0.06305044428560917 -10994.0,0.06302867119393755 -10995.0,0.06300690562112683 -10996.0,0.06298514756458054 -10997.0,0.0629633970217031 -10998.0,0.06294165398989988 -10999.0,0.06291991846657702 -11000.0,0.06289819044914166 -11001.0,0.0628764699350018 -11002.0,0.06285475692156636 -11003.0,0.06283305140624516 -11004.0,0.06281135338644882 -11005.0,0.06278966285958897 -11006.0,0.06276797982307807 -11007.0,0.06274630427432952 -11008.0,0.06272463621075755 -11009.0,0.06270297562977734 -11010.0,0.06268132252880493 -11011.0,0.06265967690525728 -11012.0,0.0626380387565522 -11013.0,0.06261640808010843 -11014.0,0.06259478487334559 -11015.0,0.0625731691336842 -11016.0,0.06255156085854563 -11017.0,0.06252996004535219 -11018.0,0.06250836669152704 -11019.0,0.06248678079449429 -11020.0,0.06246520235167889 -11021.0,0.06244363136050665 -11022.0,0.062422067818404335 -11023.0,0.062400511722799576 -11024.0,0.0623789630711209 -11025.0,0.06235742186079767 -11026.0,0.0623358880892602 -11027.0,0.06231436175393967 -11028.0,0.062292842852268174 -11029.0,0.0622713313816786 -11030.0,0.06224982733960482 -11031.0,0.06222833072348155 -11032.0,0.06220684153074444 -11033.0,0.06218535975882993 -11034.0,0.06216388540517542 -11035.0,0.062142418467219185 -11036.0,0.062120958942400405 -11037.0,0.06209950682815905 -11038.0,0.06207806212193607 -11039.0,0.06205662482117327 -11040.0,0.06203519492331334 -11041.0,0.06201377242579987 -11042.0,0.06199235732607726 -11043.0,0.06197094962159087 -11044.0,0.061949549309786925 -11045.0,0.06192815638811254 -11046.0,0.06190677085401565 -11047.0,0.06188539270494514 -11048.0,0.06186402193835075 -11049.0,0.06184265855168314 -11050.0,0.06182130254239374 -11051.0,0.06179995390793499 -11052.0,0.06177861264576013 -11053.0,0.06175727875332333 -11054.0,0.06173595222807958 -11055.0,0.061714633067484786 -11056.0,0.06169332126899574 -11057.0,0.061672016830070085 -11058.0,0.061650719748166403 -11059.0,0.061629430020744044 -11060.0,0.061608147645263324 -11061.0,0.06158687261918541 -11062.0,0.06156560493997238 -11063.0,0.06154434460508709 -11064.0,0.06152309161199338 -11065.0,0.061501845958155915 -11066.0,0.06148060764104027 -11067.0,0.0614593766581128 -11068.0,0.061438153006840864 -11069.0,0.061416936684692607 -11070.0,0.06139572768913711 -11071.0,0.061374526017644246 -11072.0,0.061353331667684835 -11073.0,0.06133214463673054 -11074.0,0.06131096492225394 -11075.0,0.06128979252172839 -11076.0,0.0612686274326282 -11077.0,0.061247469652428534 -11078.0,0.06122631917860542 -11079.0,0.0612051760086358 -11080.0,0.06118404013999738 -11081.0,0.06116291157016882 -11082.0,0.06114179029662967 -11083.0,0.061120676316860315 -11084.0,0.061099569628341975 -11085.0,0.06107847022855679 -11086.0,0.06105737811498776 -11087.0,0.061036293285118774 -11088.0,0.061015215736434515 -11089.0,0.06099414546642061 -11090.0,0.060973082472563535 -11091.0,0.06095202675235065 -11092.0,0.06093097830327011 -11093.0,0.06090993712281101 -11094.0,0.060888903208463296 -11095.0,0.060867876557717776 -11096.0,0.06084685716806615 -11097.0,0.0608258450370009 -11098.0,0.060804840162015455 -11099.0,0.0607838425406041 -11100.0,0.06076285217026199 -11101.0,0.06074186904848508 -11102.0,0.060720893172770254 -11103.0,0.06069992454061525 -11104.0,0.060678963149518685 -11105.0,0.06065800899697997 -11106.0,0.060637062080499446 -11107.0,0.060616122397578305 -11108.0,0.06059518994571862 -11109.0,0.060574264722423256 -11110.0,0.060553346725196 -11111.0,0.0605324359515415 -11112.0,0.06051153239896527 -11113.0,0.06049063606497362 -11114.0,0.06046974694707379 -11115.0,0.06044886504277387 -11116.0,0.0604279903495828 -11117.0,0.060407122865010404 -11118.0,0.06038626258656729 -11119.0,0.060365409511765 -11120.0,0.06034456363811593 -11121.0,0.06032372496313333 -11122.0,0.06030289348433126 -11123.0,0.060282069199224686 -11124.0,0.060261252105329434 -11125.0,0.060240442200162204 -11126.0,0.06021963948124046 -11127.0,0.06019884394608264 -11128.0,0.06017805559220796 -11129.0,0.060157274417136565 -11130.0,0.06013650041838935 -11131.0,0.060115733593488166 -11132.0,0.06009497393995567 -11133.0,0.0600742214553154 -11134.0,0.060053476137091756 -11135.0,0.06003273798280991 -11136.0,0.060012006989995995 -11137.0,0.059991283156176946 -11138.0,0.059970566478880584 -11139.0,0.05994985695563552 -11140.0,0.059929154583971266 -11141.0,0.0599084593614182 -11142.0,0.05988777128550754 -11143.0,0.05986709035377131 -11144.0,0.05984641656374245 -11145.0,0.05982574991295472 -11146.0,0.05980509039894279 -11147.0,0.05978443801924204 -11148.0,0.059763792771388845 -11149.0,0.05974315465292038 -11150.0,0.05972252366137464 -11151.0,0.05970189979429055 -11152.0,0.05968128304920778 -11153.0,0.05966067342366692 -11154.0,0.059640070915209384 -11155.0,0.05961947552137749 -11156.0,0.059598887239714286 -11157.0,0.05957830606776378 -11158.0,0.05955773200307078 -11159.0,0.05953716504318098 -11160.0,0.059516605185640836 -11161.0,0.05949605242799774 -11162.0,0.05947550676779989 -11163.0,0.059454968202596374 -11164.0,0.05943443672993703 -11165.0,0.05941391234737262 -11166.0,0.059393395052454764 -11167.0,0.059372884842735896 -11168.0,0.059352381715769266 -11169.0,0.05933188566910901 -11170.0,0.059311396700310104 -11171.0,0.05929091480692837 -11172.0,0.05927043998652049 -11173.0,0.05924997223664391 -11174.0,0.05922951155485701 -11175.0,0.05920905793871898 -11176.0,0.05918861138578987 -11177.0,0.05916817189363051 -11178.0,0.05914773945980264 -11179.0,0.059127314081868824 -11180.0,0.05910689575739249 -11181.0,0.05908648448393782 -11182.0,0.05906608025906994 -11183.0,0.05904568308035475 -11184.0,0.05902529294535904 -11185.0,0.05900490985165041 -11186.0,0.058984533796797294 -11187.0,0.05896416477836901 -11188.0,0.058943802793935636 -11189.0,0.05892344784106815 -11190.0,0.058903099917338365 -11191.0,0.05888275902031894 -11192.0,0.05886242514758332 -11193.0,0.05884209829670582 -11194.0,0.05882177846526161 -11195.0,0.05880146565082669 -11196.0,0.058781159850977906 -11197.0,0.05876086106329287 -11198.0,0.05874056928535012 -11199.0,0.05872028451472898 -11200.0,0.058700006749009666 -11201.0,0.05867973598577313 -11202.0,0.05865947222260124 -11203.0,0.058639215457076684 -11204.0,0.058618965686783 -11205.0,0.058598722909304485 -11206.0,0.05857848712222635 -11207.0,0.05855825832313462 -11208.0,0.058538036509616156 -11209.0,0.05851782167925861 -11210.0,0.05849761382965051 -11211.0,0.05847741295838123 -11212.0,0.058457219063040924 -11213.0,0.058437032141220646 -11214.0,0.0584168521905122 -11215.0,0.05839667920850828 -11216.0,0.058376513192802404 -11217.0,0.058356354140988935 -11218.0,0.05833620205066299 -11219.0,0.0583160569194206 -11220.0,0.0582959187448586 -11221.0,0.058275787524574685 -11222.0,0.05825566325616728 -11223.0,0.05823554593723574 -11224.0,0.058215435565380225 -11225.0,0.05819533213820172 -11226.0,0.058175235653301995 -11227.0,0.05815514610828371 -11228.0,0.05813506350075033 -11229.0,0.05811498782830617 -11230.0,0.05809491908855629 -11231.0,0.058074857279106676 -11232.0,0.05805480239756409 -11233.0,0.05803475444153613 -11234.0,0.05801471340863125 -11235.0,0.05799467929645865 -11236.0,0.057974652102628435 -11237.0,0.0579546318247515 -11238.0,0.0579346184604396 -11239.0,0.057914612007305244 -11240.0,0.05789461246296183 -11241.0,0.05787461982502354 -11242.0,0.057854634091105445 -11243.0,0.05783465525882333 -11244.0,0.0578146833257939 -11245.0,0.057794718289634645 -11246.0,0.057774760147963906 -11247.0,0.057754808898400775 -11248.0,0.05773486453856523 -11249.0,0.057714927066078066 -11250.0,0.057694996478560884 -11251.0,0.05767507277363613 -11252.0,0.057655155948927006 -11253.0,0.0576352460020576 -11254.0,0.05761534293065281 -11255.0,0.057595446732338365 -11256.0,0.05757555740474074 -11257.0,0.05755567494548731 -11258.0,0.05753579935220624 -11259.0,0.05751593062252656 -11260.0,0.057496068754078 -11261.0,0.05747621374449122 -11262.0,0.05745636559139766 -11263.0,0.05743652429242961 -11264.0,0.057416689845220095 -11265.0,0.057396862247403035 -11266.0,0.057377041496613136 -11267.0,0.05735722759048594 -11268.0,0.05733742052665781 -11269.0,0.057317620302765854 -11270.0,0.05729782691644808 -11271.0,0.05727804036534328 -11272.0,0.05725826064709109 -11273.0,0.05723848775933187 -11274.0,0.05721872169970691 -11275.0,0.05719896246585824 -11276.0,0.05717921005542877 -11277.0,0.05715946446606211 -11278.0,0.0571397256954028 -11279.0,0.05711999374109614 -11280.0,0.05710026860078827 -11281.0,0.057080550272126086 -11282.0,0.05706083875275736 -11283.0,0.05704113404033065 -11284.0,0.05702143613249534 -11285.0,0.057001745026901585 -11286.0,0.056982060721200385 -11287.0,0.05696238321304356 -11288.0,0.05694271250008372 -11289.0,0.056923048579974315 -11290.0,0.05690339145036954 -11291.0,0.05688374110892446 -11292.0,0.05686409755329494 -11293.0,0.05684446078113767 -11294.0,0.05682483079011007 -11295.0,0.05680520757787045 -11296.0,0.056785591142077915 -11297.0,0.056765981480392386 -11298.0,0.056746378590474524 -11299.0,0.056726782469985866 -11300.0,0.05670719311658875 -11301.0,0.05668761052794632 -11302.0,0.05666803470172248 -11303.0,0.05664846563558199 -11304.0,0.05662890332719041 -11305.0,0.05660934777421409 -11306.0,0.05658979897432024 -11307.0,0.05657025692517676 -11308.0,0.05655072162445246 -11309.0,0.05653119306981692 -11310.0,0.05651167125894055 -11311.0,0.05649215618949449 -11312.0,0.056472647859150765 -11313.0,0.05645314626558216 -11314.0,0.056433651406462323 -11315.0,0.05641416327946559 -11316.0,0.056394681882267206 -11317.0,0.056375207212543174 -11318.0,0.05635573926797034 -11319.0,0.05633627804622627 -11320.0,0.0563168235449894 -11321.0,0.05629737576193896 -11322.0,0.056277934694754984 -11323.0,0.056258500341118255 -11324.0,0.05623907269871042 -11325.0,0.056219651765213895 -11326.0,0.05620023753831191 -11327.0,0.056180830015688514 -11328.0,0.056161429195028485 -11329.0,0.056142035074017466 -11330.0,0.056122647650341875 -11331.0,0.056103266921688974 -11332.0,0.05608389288574672 -11333.0,0.05606452554020396 -11334.0,0.05604516488275032 -11335.0,0.056025810911076224 -11336.0,0.05600646362287284 -11337.0,0.05598712301583221 -11338.0,0.055967789087647137 -11339.0,0.055948461836011244 -11340.0,0.055929141258618885 -11341.0,0.05590982735316528 -11342.0,0.05589052011734642 -11343.0,0.0558712195488591 -11344.0,0.05585192564540091 -11345.0,0.055832638404670204 -11346.0,0.05581335782436615 -11347.0,0.05579408390218875 -11348.0,0.055774816635838755 -11349.0,0.0557555560230177 -11350.0,0.055736302061427934 -11351.0,0.055717054748772615 -11352.0,0.05569781408275571 -11353.0,0.05567858006108188 -11354.0,0.055659352681456685 -11355.0,0.055640131941586436 -11356.0,0.055620917839178254 -11357.0,0.055601710371940005 -11358.0,0.055582509537580385 -11359.0,0.055563315333808885 -11360.0,0.0555441277583358 -11361.0,0.05552494680887214 -11362.0,0.05550577248312979 -11363.0,0.05548660477882138 -11364.0,0.05546744369366035 -11365.0,0.05544828922536094 -11366.0,0.055429141371638124 -11367.0,0.05541000013020773 -11368.0,0.05539086549878633 -11369.0,0.05537173747509133 -11370.0,0.05535261605684086 -11371.0,0.055333501241753895 -11372.0,0.05531439302755017 -11373.0,0.055295291411950234 -11374.0,0.05527619639267537 -11375.0,0.055257107967447705 -11376.0,0.05523802613399011 -11377.0,0.05521895089002631 -11378.0,0.0551998822332807 -11379.0,0.055180820161478565 -11380.0,0.05516176467234593 -11381.0,0.05514271576360962 -11382.0,0.05512367343299726 -11383.0,0.055104637678237194 -11384.0,0.05508560849705861 -11385.0,0.05506658588719148 -11386.0,0.05504756984636656 -11387.0,0.05502856037231533 -11388.0,0.055009557462770114 -11389.0,0.05499056111546402 -11390.0,0.05497157132813093 -11391.0,0.054952588098505464 -11392.0,0.05493361142432308 -11393.0,0.054914641303319994 -11394.0,0.05489567773323325 -11395.0,0.05487672071180056 -11396.0,0.054857770236760535 -11397.0,0.05483882630585252 -11398.0,0.05481988891681665 -11399.0,0.05480095806739379 -11400.0,0.054782033755325664 -11401.0,0.054763115978354725 -11402.0,0.054744204734224235 -11403.0,0.05472530002067823 -11404.0,0.05470640183546147 -11405.0,0.05468751017631957 -11406.0,0.05466862504099889 -11407.0,0.05464974642724659 -11408.0,0.05463087433281055 -11409.0,0.05461200875543949 -11410.0,0.05459314969288288 -11411.0,0.054574297142890985 -11412.0,0.0545554511032148 -11413.0,0.05453661157160616 -11414.0,0.05451777854581763 -11415.0,0.054498952023602595 -11416.0,0.05448013200271514 -11417.0,0.05446131848091021 -11418.0,0.05444251145594347 -11419.0,0.0544237109255714 -11420.0,0.05440491688755123 -11421.0,0.054386129339640946 -11422.0,0.054367348279599347 -11423.0,0.05434857370518598 -11424.0,0.05432980561416122 -11425.0,0.054311044004286095 -11426.0,0.054292288873322526 -11427.0,0.05427354021903316 -11428.0,0.054254798039181436 -11429.0,0.054236062331531505 -11430.0,0.05421733309384836 -11431.0,0.054198610323897736 -11432.0,0.054179894019446166 -11433.0,0.054161184178260886 -11434.0,0.05414248079810997 -11435.0,0.05412378387676224 -11436.0,0.05410509341198732 -11437.0,0.05408640940155552 -11438.0,0.05406773184323801 -11439.0,0.05404906073480667 -11440.0,0.05403039607403419 -11441.0,0.05401173785869404 -11442.0,0.053993086086560366 -11443.0,0.05397444075540818 -11444.0,0.053955801863013235 -11445.0,0.05393716940715206 -11446.0,0.05391854338560191 -11447.0,0.05389992379614084 -11448.0,0.05388131063654768 -11449.0,0.05386270390460204 -11450.0,0.05384410359808421 -11451.0,0.05382550971477535 -11452.0,0.05380692225245734 -11453.0,0.053788341208912856 -11454.0,0.05376976658192526 -11455.0,0.053751198369278774 -11456.0,0.05373263656875833 -11457.0,0.053714081178149645 -11458.0,0.053695532195239225 -11459.0,0.05367698961781426 -11460.0,0.053658453443662775 -11461.0,0.05363992367057355 -11462.0,0.053621400296336136 -11463.0,0.05360288331874078 -11464.0,0.05358437273557857 -11465.0,0.05356586854464132 -11466.0,0.05354737074372165 -11467.0,0.05352887933061285 -11468.0,0.05351039430310906 -11469.0,0.05349191565900516 -11470.0,0.053473443396096776 -11471.0,0.053454977512180285 -11472.0,0.05343651800505285 -11473.0,0.05341806487251239 -11474.0,0.053399618112357605 -11475.0,0.05338117772238788 -11476.0,0.05336274370040344 -11477.0,0.05334431604420524 -11478.0,0.053325894751594986 -11479.0,0.05330747982037519 -11480.0,0.05328907124834903 -11481.0,0.05327066903332052 -11482.0,0.05325227317309441 -11483.0,0.05323388366547623 -11484.0,0.053215500508272215 -11485.0,0.05319712369928939 -11486.0,0.053178753236335544 -11487.0,0.053160389117219244 -11488.0,0.05314203133974973 -11489.0,0.053123679901737074 -11490.0,0.05310533480099209 -11491.0,0.053086996035326364 -11492.0,0.05306866360255217 -11493.0,0.0530503375004826 -11494.0,0.05303201772693149 -11495.0,0.053013704279713414 -11496.0,0.052995397156643746 -11497.0,0.05297709635553853 -11498.0,0.05295880187421463 -11499.0,0.05294051371048966 -11500.0,0.052922231862181986 -11501.0,0.05290395632711068 -11502.0,0.05288568710309562 -11503.0,0.05286742418795744 -11504.0,0.0528491675795175 -11505.0,0.05283091727559789 -11506.0,0.052812673274021504 -11507.0,0.052794435572611965 -11508.0,0.05277620416919367 -11509.0,0.05275797906159171 -11510.0,0.05273976024763197 -11511.0,0.05272154772514108 -11512.0,0.05270334149194645 -11513.0,0.05268514154587616 -11514.0,0.05266694788475911 -11515.0,0.05264876050642494 -11516.0,0.05263057940870401 -11517.0,0.05261240458942748 -11518.0,0.052594236046427184 -11519.0,0.05257607377753576 -11520.0,0.05255791778058659 -11521.0,0.05253976805341383 -11522.0,0.052521624593852276 -11523.0,0.05250348739973759 -11524.0,0.052485356468906126 -11525.0,0.05246723179919503 -11526.0,0.0524491133884421 -11527.0,0.052431001234485984 -11528.0,0.05241289533516602 -11529.0,0.05239479568832233 -11530.0,0.05237670229179572 -11531.0,0.05235861514342779 -11532.0,0.05234053424106089 -11533.0,0.05232245958253809 -11534.0,0.05230439116570324 -11535.0,0.05228632898840086 -11536.0,0.052268273048476296 -11537.0,0.052250223343775604 -11538.0,0.05223217987214561 -11539.0,0.0522141426314338 -11540.0,0.0521961116194885 -11541.0,0.05217808683415874 -11542.0,0.05216006827329431 -11543.0,0.05214205593474569 -11544.0,0.052124049816364156 -11545.0,0.05210604991600171 -11546.0,0.05208805623151112 -11547.0,0.052070068760745825 -11548.0,0.052052087501560075 -11549.0,0.052034112451808834 -11550.0,0.05201614360934783 -11551.0,0.05199818097203347 -11552.0,0.05198022453772297 -11553.0,0.05196227430427425 -11554.0,0.05194433026954598 -11555.0,0.051926392431397586 -11556.0,0.05190846078768918 -11557.0,0.051890535336281664 -11558.0,0.05187261607503666 -11559.0,0.051854703001816556 -11560.0,0.05183679611448441 -11561.0,0.051818895410904085 -11562.0,0.051801000888940144 -11563.0,0.05178311254645794 -11564.0,0.051765230381323475 -11565.0,0.05174735439140355 -11566.0,0.0517294845745657 -11567.0,0.05171162092867821 -11568.0,0.051693763451610024 -11569.0,0.0516759121412309 -11570.0,0.05165806699541131 -11571.0,0.051640228012022456 -11572.0,0.051622395188936306 -11573.0,0.05160456852402547 -11574.0,0.05158674801516341 -11575.0,0.05156893366022424 -11576.0,0.05155112545708288 -11577.0,0.051533323403614884 -11578.0,0.051515527497696625 -11579.0,0.05149773773720518 -11580.0,0.05147995412001838 -11581.0,0.05146217664401473 -11582.0,0.051444405307073525 -11583.0,0.051426640107074775 -11584.0,0.051408881041899245 -11585.0,0.051391128109428356 -11586.0,0.05137338130754435 -11587.0,0.051355640634130145 -11588.0,0.051337906087069445 -11589.0,0.05132017766424659 -11590.0,0.051302455363546745 -11591.0,0.05128473918285576 -11592.0,0.051267029120060224 -11593.0,0.051249325173047484 -11594.0,0.051231627339705536 -11595.0,0.05121393561792319 -11596.0,0.05119625000558994 -11597.0,0.05117857050059604 -11598.0,0.05116089710083243 -11599.0,0.05114322980419081 -11600.0,0.051125568608563605 -11601.0,0.05110791351184398 -11602.0,0.051090264511925776 -11603.0,0.05107262160670361 -11604.0,0.05105498479407281 -11605.0,0.05103735407192947 -11606.0,0.051019729438170305 -11607.0,0.05100211089069287 -11608.0,0.050984498427395386 -11609.0,0.050966892046176826 -11610.0,0.05094929174493689 -11611.0,0.05093169752157595 -11612.0,0.05091410937399516 -11613.0,0.05089652730009639 -11614.0,0.05087895129778224 -11615.0,0.05086138136495599 -11616.0,0.05084381749952169 -11617.0,0.0508262596993841 -11618.0,0.05080870796244871 -11619.0,0.050791162286621706 -11620.0,0.05077362266981003 -11621.0,0.050756089109921326 -11622.0,0.050738561604864 -11623.0,0.050721040152547095 -11624.0,0.05070352475088046 -11625.0,0.05068601539777463 -11626.0,0.05066851209114089 -11627.0,0.05065101482889118 -11628.0,0.050633523608938226 -11629.0,0.05061603842919545 -11630.0,0.050598559287577005 -11631.0,0.050581086181997775 -11632.0,0.0505636191103733 -11633.0,0.050546158070619907 -11634.0,0.05052870306065463 -11635.0,0.05051125407839522 -11636.0,0.05049381112176011 -11637.0,0.050476374188668495 -11638.0,0.050458943277040286 -11639.0,0.050441518384796116 -11640.0,0.05042409950985728 -11641.0,0.05040668665014587 -11642.0,0.05038927980358463 -11643.0,0.05037187896809709 -11644.0,0.05035448414160742 -11645.0,0.05033709532204055 -11646.0,0.050319712507322124 -11647.0,0.05030233569537851 -11648.0,0.05028496488413679 -11649.0,0.050267600071524726 -11650.0,0.05025024125547082 -11651.0,0.05023288843390431 -11652.0,0.05021554160475515 -11653.0,0.05019820076595394 -11654.0,0.05018086591543207 -11655.0,0.05016353705112162 -11656.0,0.050146214170955404 -11657.0,0.05012889727286688 -11658.0,0.050111586354790294 -11659.0,0.05009428141466059 -11660.0,0.050076982450413414 -11661.0,0.0500596894599851 -11662.0,0.050042402441312736 -11663.0,0.05002512139233411 -11664.0,0.05000784631098774 -11665.0,0.049990577195212785 -11666.0,0.0499733140429492 -11667.0,0.049956056852137595 -11668.0,0.04993880562071933 -11669.0,0.04992156034663649 -11670.0,0.049904321027831766 -11671.0,0.04988708766224868 -11672.0,0.04986986024783141 -11673.0,0.04985263878252487 -11674.0,0.04983542326427463 -11675.0,0.049818213691027007 -11676.0,0.04980101006072904 -11677.0,0.049783812371328486 -11678.0,0.04976662062077373 -11679.0,0.04974943480701395 -11680.0,0.049732254927999 -11681.0,0.049715080981679476 -11682.0,0.0496979129660066 -11683.0,0.04968075087893238 -11684.0,0.0496635947184095 -11685.0,0.049646444482391354 -11686.0,0.04962930016883207 -11687.0,0.049612161775686406 -11688.0,0.04959502930090991 -11689.0,0.04957790274245879 -11690.0,0.049560782098290006 -11691.0,0.049543667366361135 -11692.0,0.04952655854463055 -11693.0,0.04950945563105728 -11694.0,0.049492358623601095 -11695.0,0.04947526752022241 -11696.0,0.049458182318882396 -11697.0,0.049441103017542926 -11698.0,0.04942402961416657 -11699.0,0.04940696210671656 -11700.0,0.049389900493156884 -11701.0,0.04937284477145222 -11702.0,0.049355794939567973 -11703.0,0.049338750995470165 -11704.0,0.0493217129371256 -11705.0,0.049304680762501774 -11706.0,0.04928765446956687 -11707.0,0.049270634056289786 -11708.0,0.04925361952064008 -11709.0,0.04923661086058806 -11710.0,0.049219608074104707 -11711.0,0.04920261115916175 -11712.0,0.049185620113731524 -11713.0,0.04916863493578716 -11714.0,0.049151655623302426 -11715.0,0.049134682174251855 -11716.0,0.049117714586610586 -11717.0,0.04910075285835454 -11718.0,0.04908379698746029 -11719.0,0.049066846971905165 -11720.0,0.0490499028096671 -11721.0,0.049032964498724796 -11722.0,0.04901603203705764 -11723.0,0.048999105422645725 -11724.0,0.04898218465346983 -11725.0,0.048965269727511404 -11726.0,0.048948360642752625 -11727.0,0.04893145739717638 -11728.0,0.048914559988766246 -11729.0,0.04889766841550645 -11730.0,0.048880782675381956 -11731.0,0.04886390276637844 -11732.0,0.04884702868648226 -11733.0,0.048830160433680415 -11734.0,0.04881329800596068 -11735.0,0.04879644140131148 -11736.0,0.04877959061772197 -11737.0,0.048762745653181935 -11738.0,0.048745906505681905 -11739.0,0.0487290731732131 -11740.0,0.04871224565376745 -11741.0,0.04869542394533751 -11742.0,0.04867860804591659 -11743.0,0.048661797953498676 -11744.0,0.04864499366607845 -11745.0,0.0486281951816513 -11746.0,0.04861140249821325 -11747.0,0.048594615613761084 -11748.0,0.04857783452629223 -11749.0,0.04856105923380487 -11750.0,0.04854428973429777 -11751.0,0.0485275260257705 -11752.0,0.04851076810622324 -11753.0,0.048494015973656934 -11754.0,0.04847726962607312 -11755.0,0.04846052906147411 -11756.0,0.048443794277862884 -11757.0,0.048427065273243114 -11758.0,0.04841034204561911 -11759.0,0.04839362459299593 -11760.0,0.048376912913379325 -11761.0,0.04836020700477569 -11762.0,0.04834350686519216 -11763.0,0.04832681249263649 -11764.0,0.048310123885117184 -11765.0,0.04829344104064342 -11766.0,0.048276763957225056 -11767.0,0.04826009263287262 -11768.0,0.04824342706559735 -11769.0,0.04822676725341117 -11770.0,0.04821011319432671 -11771.0,0.04819346488635722 -11772.0,0.048176822327516695 -11773.0,0.048160185515819805 -11774.0,0.04814355444928191 -11775.0,0.04812692912591901 -11776.0,0.04811030954374784 -11777.0,0.04809369570078582 -11778.0,0.04807708759505105 -11779.0,0.04806048522456226 -11780.0,0.04804388858733893 -11781.0,0.0480272976814012 -11782.0,0.04801071250476991 -11783.0,0.04799413305546658 -11784.0,0.04797755933151336 -11785.0,0.04796099133093315 -11786.0,0.047944429051749504 -11787.0,0.047927872491986684 -11788.0,0.047911321649669575 -11789.0,0.047894776522823805 -11790.0,0.047878237109475655 -11791.0,0.04786170340765212 -11792.0,0.0478451754153808 -11793.0,0.047828653130690055 -11794.0,0.047812136551608896 -11795.0,0.04779562567616703 -11796.0,0.0477791205023948 -11797.0,0.047762621028323266 -11798.0,0.04774612725198417 -11799.0,0.047729639171409925 -11800.0,0.047713156784633635 -11801.0,0.04769668008968904 -11802.0,0.04768020908461061 -11803.0,0.047663743767433465 -11804.0,0.04764728413619345 -11805.0,0.04763083018892699 -11806.0,0.04761438192367129 -11807.0,0.04759793933846417 -11808.0,0.04758150243134419 -11809.0,0.047565071200350494 -11810.0,0.04754864564352298 -11811.0,0.047532225758902195 -11812.0,0.0475158115445294 -11813.0,0.04749940299844644 -11814.0,0.047483000118695926 -11815.0,0.04746660290332111 -11816.0,0.04745021135036595 -11817.0,0.04743382545787501 -11818.0,0.04741744522389358 -11819.0,0.04740107064646764 -11820.0,0.047384701723643806 -11821.0,0.04736833845346942 -11822.0,0.047351980833992405 -11823.0,0.047335628863261446 -11824.0,0.047319282539325866 -11825.0,0.0473029418602357 -11826.0,0.04728660682404157 -11827.0,0.04727027742879486 -11828.0,0.04725395367254758 -11829.0,0.04723763555335245 -11830.0,0.04722132306926279 -11831.0,0.047205016218332674 -11832.0,0.04718871499861681 -11833.0,0.04717241940817059 -11834.0,0.04715612944505003 -11835.0,0.04713984510731189 -11836.0,0.04712356639301356 -11837.0,0.0471072933002131 -11838.0,0.04709102582696928 -11839.0,0.047074763971341464 -11840.0,0.047058507731389754 -11841.0,0.047042257105174894 -11842.0,0.04702601209075833 -11843.0,0.04700977268620211 -11844.0,0.046993538889569 -11845.0,0.046977310698922435 -11846.0,0.046961088112326535 -11847.0,0.04694487112784601 -11848.0,0.046928659743546326 -11849.0,0.04691245395749358 -11850.0,0.04689625376775455 -11851.0,0.04688005917239664 -11852.0,0.046863870169487974 -11853.0,0.04684768675709732 -11854.0,0.04683150893329413 -11855.0,0.04681533669614848 -11856.0,0.046799170043731145 -11857.0,0.04678300897411357 -11858.0,0.04676685348536785 -11859.0,0.046750703575566786 -11860.0,0.04673455924278376 -11861.0,0.04671842048509289 -11862.0,0.046702287300568954 -11863.0,0.046686159687287385 -11864.0,0.046670037643324246 -11865.0,0.04665392116675631 -11866.0,0.046637810255661 -11867.0,0.04662170490811642 -11868.0,0.046605605122201285 -11869.0,0.04658951089599502 -11870.0,0.04657342222757771 -11871.0,0.04655733911503011 -11872.0,0.04654126155643358 -11873.0,0.046525189549870206 -11874.0,0.04650912309342271 -11875.0,0.04649306218517449 -11876.0,0.04647700682320961 -11877.0,0.04646095700561275 -11878.0,0.0464449127304693 -11879.0,0.04642887399586529 -11880.0,0.04641284079988744 -11881.0,0.046396813140623064 -11882.0,0.0463807910161602 -11883.0,0.04636477442458753 -11884.0,0.04634876336399441 -11885.0,0.04633275783247079 -11886.0,0.046316757828107354 -11887.0,0.04630076334899542 -11888.0,0.04628477439322698 -11889.0,0.04626879095889462 -11890.0,0.046252813044091665 -11891.0,0.04623684064691206 -11892.0,0.04622087376545044 -11893.0,0.04620491239780202 -11894.0,0.046188956542062766 -11895.0,0.04617300619632924 -11896.0,0.046157061358698695 -11897.0,0.04614112202726904 -11898.0,0.0461251882001388 -11899.0,0.04610925987540719 -11900.0,0.04609333705117409 -11901.0,0.04607741972554004 -11902.0,0.04606150789660617 -11903.0,0.04604560156247435 -11904.0,0.04602970072124706 -11905.0,0.04601380537102747 -11906.0,0.045997915509919336 -11907.0,0.04598203113602714 -11908.0,0.04596615224745599 -11909.0,0.04595027884231166 -11910.0,0.04593441091870054 -11911.0,0.045918548474729724 -11912.0,0.04590269150850693 -11913.0,0.04588684001814055 -11914.0,0.04587099400173962 -11915.0,0.0458551534574138 -11916.0,0.04583931838327343 -11917.0,0.045823488777429526 -11918.0,0.04580766463799373 -11919.0,0.045791845963078316 -11920.0,0.04577603275079623 -11921.0,0.04576022499926109 -11922.0,0.045744422706587164 -11923.0,0.04572862587088931 -11924.0,0.04571283449028309 -11925.0,0.04569704856288472 -11926.0,0.045681268086811076 -11927.0,0.04566549306017962 -11928.0,0.04564972348110852 -11929.0,0.04563395934771658 -11930.0,0.04561820065812328 -11931.0,0.045602447410448686 -11932.0,0.045586699602813564 -11933.0,0.045570957233339315 -11934.0,0.04555522030014799 -11935.0,0.04553948880136231 -11936.0,0.04552376273510558 -11937.0,0.045508042099501815 -11938.0,0.04549232689267566 -11939.0,0.04547661711275243 -11940.0,0.04546091275785801 -11941.0,0.04544521382611901 -11942.0,0.045429520315662664 -11943.0,0.045413832224616875 -11944.0,0.04539814955111012 -11945.0,0.045382472293271595 -11946.0,0.04536680044923111 -11947.0,0.04535113401711916 -11948.0,0.04533547299506681 -11949.0,0.04531981738120583 -11950.0,0.04530416717366862 -11951.0,0.04528852237058823 -11952.0,0.04527288297009836 -11953.0,0.045257248970333314 -11954.0,0.04524162036942808 -11955.0,0.04522599716551829 -11956.0,0.04521037935674022 -11957.0,0.04519476694123074 -11958.0,0.04517915991712744 -11959.0,0.04516355828256849 -11960.0,0.04514796203569277 -11961.0,0.0451323711746397 -11962.0,0.04511678569754944 -11963.0,0.04510120560256276 -11964.0,0.045085630887821075 -11965.0,0.0450700615514664 -11966.0,0.04505449759164145 -11967.0,0.04503893900648955 -11968.0,0.045023385794154706 -11969.0,0.04500783795278149 -11970.0,0.04499229548051517 -11971.0,0.04497675837550165 -11972.0,0.044961226635887454 -11973.0,0.044945700259819796 -11974.0,0.04493017924544645 -11975.0,0.04491466359091588 -11976.0,0.04489915329437719 -11977.0,0.044883648353980135 -11978.0,0.044868148767875045 -11979.0,0.04485265453421296 -11980.0,0.04483716565114552 -11981.0,0.044821682116825044 -11982.0,0.04480620392940441 -11983.0,0.04479073108703721 -11984.0,0.044775263587877645 -11985.0,0.04475980143008058 -11986.0,0.04474434461180144 -11987.0,0.044728893131196365 -11988.0,0.044713446986422115 -11989.0,0.04469800617563607 -11990.0,0.044682570696996264 -11991.0,0.04466714054866133 -11992.0,0.04465171572879059 -11993.0,0.04463629623554396 -11994.0,0.044620882067082035 -11995.0,0.044605473221565974 -11996.0,0.04459006969715763 -11997.0,0.044574671492019484 -11998.0,0.04455927860431466 -11999.0,0.04454389103220686 -12000.0,0.04452850877386047 -12001.0,0.0445131318274405 -12002.0,0.04449776019111263 -12003.0,0.044482393863043077 -12004.0,0.044467032841398774 -12005.0,0.04445167712434727 -12006.0,0.04443632671005675 -12007.0,0.04442098159669599 -12008.0,0.044405641782434446 -12009.0,0.04439030726544219 -12010.0,0.04437497804388993 -12011.0,0.04435965411594901 -12012.0,0.04434433547979137 -12013.0,0.04432902213358962 -12014.0,0.044313714075517 -12015.0,0.044298411303747384 -12016.0,0.044283113816455215 -12017.0,0.044267821611815646 -12018.0,0.04425253468800442 -12019.0,0.04423725304319795 -12020.0,0.04422197667557319 -12021.0,0.04420670558330782 -12022.0,0.044191439764580086 -12023.0,0.04417617921756894 -12024.0,0.04416092394045384 -12025.0,0.044145673931414976 -12026.0,0.044130429188633136 -12027.0,0.04411518971028972 -12028.0,0.04409995549456681 -12029.0,0.04408472653964701 -12030.0,0.044069502843713665 -12031.0,0.044054284404950676 -12032.0,0.04403907122154262 -12033.0,0.04402386329167464 -12034.0,0.044008660613532556 -12035.0,0.043993463185302804 -12036.0,0.04397827100517246 -12037.0,0.043963084071329164 -12038.0,0.04394790238196125 -12039.0,0.043932725935257655 -12040.0,0.04391755472940795 -12041.0,0.043902388762602294 -12042.0,0.0438872280330315 -12043.0,0.04387207253888702 -12044.0,0.04385692227836093 -12045.0,0.04384177724964587 -12046.0,0.04382663745093518 -12047.0,0.04381150288042277 -12048.0,0.04379637353630322 -12049.0,0.043781249416771716 -12050.0,0.04376613052002402 -12051.0,0.043751016844256585 -12052.0,0.04373590838766645 -12053.0,0.04372080514845132 -12054.0,0.043705707124809444 -12055.0,0.04369061431493975 -12056.0,0.043675526717041786 -12057.0,0.04366044432931572 -12058.0,0.043645367149962304 -12059.0,0.043630295177182955 -12060.0,0.0436152284091797 -12061.0,0.0436001668441552 -12062.0,0.04358511048031268 -12063.0,0.04357005931585605 -12064.0,0.04355501334898981 -12065.0,0.04353997257791909 -12066.0,0.04352493700084965 -12067.0,0.043509906615987824 -12068.0,0.043494881421540614 -12069.0,0.04347986141571562 -12070.0,0.043464846596721084 -12071.0,0.04344983696276582 -12072.0,0.04343483251205929 -12073.0,0.04341983324281158 -12074.0,0.04340483915323341 -12075.0,0.043389850241536056 -12076.0,0.04337486650593146 -12077.0,0.043359887944632185 -12078.0,0.043344914555851405 -12079.0,0.04332994633780287 -12080.0,0.043314983288701 -12081.0,0.04330002540676081 -12082.0,0.04328507269019796 -12083.0,0.04327012513722866 -12084.0,0.043255182746069785 -12085.0,0.04324024551493883 -12086.0,0.04322531344205388 -12087.0,0.04321038652563368 -12088.0,0.04319546476389751 -12089.0,0.04318054815506533 -12090.0,0.04316563669735771 -12091.0,0.04315073038899582 -12092.0,0.043135829228201424 -12093.0,0.04312093321319694 -12094.0,0.04310604234220538 -12095.0,0.04309115661345039 -12096.0,0.04307627602515617 -12097.0,0.0430614005755476 -12098.0,0.043046530262850144 -12099.0,0.0430316650852899 -12100.0,0.04301680504109352 -12101.0,0.04300195012848834 -12102.0,0.042987100345702266 -12103.0,0.04297225569096383 -12104.0,0.042957416162502184 -12105.0,0.04294258175854706 -12106.0,0.04292775247732883 -12107.0,0.042912928317078464 -12108.0,0.04289810927602758 -12109.0,0.04288329535240833 -12110.0,0.042868486544453535 -12111.0,0.04285368285039662 -12112.0,0.04283888426847162 -12113.0,0.04282409079691315 -12114.0,0.04280930243395646 -12115.0,0.04279451917783742 -12116.0,0.04277974102679251 -12117.0,0.04276496797905876 -12118.0,0.04275020003287388 -12119.0,0.042735437186476155 -12120.0,0.04272067943810451 -12121.0,0.04270592678599841 -12122.0,0.04269117922839799 -12123.0,0.04267643676354398 -12124.0,0.04266169938967771 -12125.0,0.042646967105041136 -12126.0,0.04263223990787676 -12127.0,0.042617517796427765 -12128.0,0.0426028007689379 -12129.0,0.04258808882365156 -12130.0,0.04257338195881367 -12131.0,0.04255868017266983 -12132.0,0.042543983463466224 -12133.0,0.042529291829449666 -12134.0,0.04251460526886751 -12135.0,0.04249992377996777 -12136.0,0.04248524736099906 -12137.0,0.042470576010210606 -12138.0,0.042455909725852184 -12139.0,0.042441248506174235 -12140.0,0.04242659234942777 -12141.0,0.04241194125386444 -12142.0,0.04239729521773647 -12143.0,0.04238265423929667 -12144.0,0.0423680183167985 -12145.0,0.04235338744849598 -12146.0,0.04233876163264381 -12147.0,0.04232414086749717 -12148.0,0.042309525151311936 -12149.0,0.042294914482344556 -12150.0,0.04228030885885211 -12151.0,0.042265708279092214 -12152.0,0.04225111274132314 -12153.0,0.04223652224380375 -12154.0,0.04222193678479352 -12155.0,0.04220735636255248 -12156.0,0.04219278097534131 -12157.0,0.042178210621421255 -12158.0,0.04216364529905422 -12159.0,0.04214908500650262 -12160.0,0.04213452974202954 -12161.0,0.04211997950389864 -12162.0,0.04210543429037418 -12163.0,0.042090894099721055 -12164.0,0.04207635893020467 -12165.0,0.04206182878009112 -12166.0,0.04204730364764705 -12167.0,0.04203278353113975 -12168.0,0.04201826842883702 -12169.0,0.04200375833900735 -12170.0,0.04198925325991979 -12171.0,0.041974753189844005 -12172.0,0.041960258127050204 -12173.0,0.04194576806980926 -12174.0,0.041931283016392595 -12175.0,0.041916802965072275 -12176.0,0.04190232791412091 -12177.0,0.04188785786181174 -12178.0,0.041873392806418594 -12179.0,0.041858932746215896 -12180.0,0.04184447767947869 -12181.0,0.04183002760448254 -12182.0,0.041815582519503694 -12183.0,0.04180114242281895 -12184.0,0.041786707312705736 -12185.0,0.041772277187441996 -12186.0,0.041757852045306354 -12187.0,0.04174343188457799 -12188.0,0.04172901670353671 -12189.0,0.04171460650046283 -12190.0,0.04170020127363736 -12191.0,0.04168580102134185 -12192.0,0.04167140574185848 -12193.0,0.04165701543346995 -12194.0,0.04164263009445963 -12195.0,0.04162824972311145 -12196.0,0.04161387431770995 -12197.0,0.041599503876540225 -12198.0,0.041585138397887994 -12199.0,0.04157077788003956 -12200.0,0.04155642232128182 -12201.0,0.041542071719902283 -12202.0,0.04152772607418899 -12203.0,0.04151338538243062 -12204.0,0.041499049642916445 -12205.0,0.04148471885393632 -12206.0,0.04147039301378066 -12207.0,0.04145607212074051 -12208.0,0.0414417561731075 -12209.0,0.04142744516917385 -12210.0,0.04141313910723233 -12211.0,0.04139883798557635 -12212.0,0.04138454180249989 -12213.0,0.04137025055629753 -12214.0,0.04135596424526441 -12215.0,0.041341682867696274 -12216.0,0.04132740642188948 -12217.0,0.04131313490614093 -12218.0,0.04129886831874817 -12219.0,0.04128460665800925 -12220.0,0.0412703499222229 -12221.0,0.04125609810968837 -12222.0,0.04124185121870555 -12223.0,0.041227609247574855 -12224.0,0.04121337219459734 -12225.0,0.04119914005807463 -12226.0,0.04118491283630895 -12227.0,0.04117069052760306 -12228.0,0.041156473130260364 -12229.0,0.041142260642584826 -12230.0,0.04112805306288102 -12231.0,0.04111385038945404 -12232.0,0.04109965262060964 -12233.0,0.04108545975465413 -12234.0,0.04107127178989442 -12235.0,0.041057088724637945 -12236.0,0.0410429105571928 -12237.0,0.04102873728586763 -12238.0,0.041014568908971656 -12239.0,0.04100040542481473 -12240.0,0.0409862468317072 -12241.0,0.040972093127960074 -12242.0,0.04095794431188492 -12243.0,0.04094380038179389 -12244.0,0.040929661335999706 -12245.0,0.040915527172815686 -12246.0,0.040901397890555725 -12247.0,0.04088727348753433 -12248.0,0.04087315396206651 -12249.0,0.040859039312467954 -12250.0,0.04084492953705486 -12251.0,0.04083082463414407 -12252.0,0.04081672460205293 -12253.0,0.040802629439099423 -12254.0,0.0407885391436021 -12255.0,0.0407744537138801 -12256.0,0.04076037314825315 -12257.0,0.04074629744504149 -12258.0,0.04073222660256603 -12259.0,0.04071816061914821 -12260.0,0.040704099493110074 -12261.0,0.04069004322277421 -12262.0,0.040675991806463814 -12263.0,0.04066194524250266 -12264.0,0.04064790352921511 -12265.0,0.040633866664926056 -12266.0,0.040619834647961026 -12267.0,0.04060580747664609 -12268.0,0.04059178514930793 -12269.0,0.04057776766427376 -12270.0,0.04056375501987141 -12271.0,0.04054974721442926 -12272.0,0.04053574424627632 -12273.0,0.04052174611374208 -12274.0,0.0405077528151567 -12275.0,0.04049376434885088 -12276.0,0.04047978071315589 -12277.0,0.0404658019064036 -12278.0,0.04045182792692641 -12279.0,0.040437858773057354 -12280.0,0.04042389444313 -12281.0,0.04040993493547852 -12282.0,0.04039598024843763 -12283.0,0.04038203038034263 -12284.0,0.04036808532952942 -12285.0,0.04035414509433448 -12286.0,0.04034020967309479 -12287.0,0.04032627906414798 -12288.0,0.040312353265832226 -12289.0,0.04029843227648631 -12290.0,0.04028451609444952 -12291.0,0.040270604718061764 -12292.0,0.04025669814566352 -12293.0,0.04024279637559586 -12294.0,0.040228899406200384 -12295.0,0.04021500723581928 -12296.0,0.04020111986279531 -12297.0,0.04018723728547182 -12298.0,0.04017335950219274 -12299.0,0.04015948651130251 -12300.0,0.04014561831114621 -12301.0,0.040131754900069455 -12302.0,0.04011789627641847 -12303.0,0.040104042438539975 -12304.0,0.040090193384781335 -12305.0,0.04007634911349045 -12306.0,0.04006250962301583 -12307.0,0.040048674911706474 -12308.0,0.04003484497791203 -12309.0,0.040021019819982684 -12310.0,0.040007199436269195 -12311.0,0.039993383825122915 -12312.0,0.0399795729848957 -12313.0,0.039965766913940035 -12314.0,0.039951965610608965 -12315.0,0.0399381690732561 -12316.0,0.03992437730023559 -12317.0,0.03991059028990219 -12318.0,0.03989680804061121 -12319.0,0.03988303055071855 -12320.0,0.03986925781858061 -12321.0,0.03985548984255443 -12322.0,0.039841726620997595 -12323.0,0.03982796815226826 -12324.0,0.039814214434725104 -12325.0,0.039800465466727435 -12326.0,0.0397867212466351 -12327.0,0.039772981772808524 -12328.0,0.03975924704360866 -12329.0,0.03974551705739708 -12330.0,0.03973179181253588 -12331.0,0.03971807130738774 -12332.0,0.039704355540315935 -12333.0,0.03969064450968423 -12334.0,0.03967693821385702 -12335.0,0.03966323665119923 -12336.0,0.0396495398200764 -12337.0,0.03963584771885456 -12338.0,0.03962216034590035 -12339.0,0.03960847769958097 -12340.0,0.039594799778264196 -12341.0,0.03958112658031832 -12342.0,0.03956745810411225 -12343.0,0.03955379434801544 -12344.0,0.0395401353103979 -12345.0,0.03952648098963019 -12346.0,0.039512831384083465 -12347.0,0.03949918649212942 -12348.0,0.03948554631214032 -12349.0,0.03947191084248901 -12350.0,0.03945828008154884 -12351.0,0.039444654027693794 -12352.0,0.03943103267929836 -12353.0,0.03941741603473764 -12354.0,0.039403804092387223 -12355.0,0.03939019685062334 -12356.0,0.039376594307822727 -12357.0,0.03936299646236272 -12358.0,0.03934940331262118 -12359.0,0.039335814856976535 -12360.0,0.039322231093807794 -12361.0,0.03930865202149453 -12362.0,0.03929507763841682 -12363.0,0.03928150794295536 -12364.0,0.03926794293349138 -12365.0,0.0392543826084067 -12366.0,0.03924082696608363 -12367.0,0.039227276004905096 -12368.0,0.03921372972325457 -12369.0,0.03920018811951608 -12370.0,0.039186651192074234 -12371.0,0.03917311893931413 -12372.0,0.03915959135962149 -12373.0,0.03914606845138258 -12374.0,0.03913255021298422 -12375.0,0.03911903664281376 -12376.0,0.03910552773925914 -12377.0,0.03909202350070885 -12378.0,0.03907852392555195 -12379.0,0.039065029012177996 -12380.0,0.03905153875897717 -12381.0,0.03903805316434018 -12382.0,0.03902457222665831 -12383.0,0.03901109594432335 -12384.0,0.038997624315727696 -12385.0,0.038984157339264275 -12386.0,0.038970695013326576 -12387.0,0.03895723733630867 -12388.0,0.038943784306605105 -12389.0,0.03893033592261105 -12390.0,0.03891689218272222 -12391.0,0.038903453085334896 -12392.0,0.03889001862884584 -12393.0,0.03887658881165246 -12394.0,0.03886316363215265 -12395.0,0.03884974308874492 -12396.0,0.03883632717982826 -12397.0,0.038822915903802255 -12398.0,0.03880950925906705 -12399.0,0.03879610724402335 -12400.0,0.03878270985707235 -12401.0,0.03876931709661586 -12402.0,0.038755928961056216 -12403.0,0.03874254544879633 -12404.0,0.03872916655823962 -12405.0,0.03871579228779009 -12406.0,0.03870242263585229 -12407.0,0.038689057600831314 -12408.0,0.03867569718113284 -12409.0,0.03866234137516302 -12410.0,0.03864899018132863 -12411.0,0.038635643598036964 -12412.0,0.03862230162369589 -12413.0,0.03860896425671378 -12414.0,0.03859563149549959 -12415.0,0.038582303338462826 -12416.0,0.03856897978401355 -12417.0,0.038555660830562326 -12418.0,0.03854234647652032 -12419.0,0.03852903672029922 -12420.0,0.038515731560311295 -12421.0,0.03850243099496929 -12422.0,0.038489135022686576 -12423.0,0.038475843641877026 -12424.0,0.03846255685095509 -12425.0,0.03844927464833576 -12426.0,0.03843599703243453 -12427.0,0.03842272400166749 -12428.0,0.03840945555445128 -12429.0,0.03839619168920307 -12430.0,0.03838293240434056 -12431.0,0.03836967769828202 -12432.0,0.038356427569446266 -12433.0,0.03834318201625266 -12434.0,0.03832994103712109 -12435.0,0.03831670463047201 -12436.0,0.0383034727947264 -12437.0,0.03829024552830584 -12438.0,0.038277022829632364 -12439.0,0.038263804697128624 -12440.0,0.03825059112921778 -12441.0,0.038237382124323586 -12442.0,0.03822417768087026 -12443.0,0.03821097779728263 -12444.0,0.03819778247198604 -12445.0,0.038184591703406386 -12446.0,0.03817140548997012 -12447.0,0.03815822383010419 -12448.0,0.03814504672223614 -12449.0,0.03813187416479404 -12450.0,0.038118706156206515 -12451.0,0.038105542694902676 -12452.0,0.03809238377931224 -12453.0,0.03807922940786545 -12454.0,0.03806607957899309 -12455.0,0.03805293429112646 -12456.0,0.03803979354269743 -12457.0,0.03802665733213841 -12458.0,0.038013525657882366 -12459.0,0.038000398518362746 -12460.0,0.0379872759120136 -12461.0,0.037974157837269484 -12462.0,0.03796104429256552 -12463.0,0.037947935276337365 -12464.0,0.03793483078702119 -12465.0,0.03792173082305372 -12466.0,0.03790863538287225 -12467.0,0.03789554446491459 -12468.0,0.03788245806761906 -12469.0,0.037869376189424556 -12470.0,0.03785629882877052 -12471.0,0.03784322598409693 -12472.0,0.03783015765384425 -12473.0,0.03781709383645355 -12474.0,0.03780403453036641 -12475.0,0.03779097973402496 -12476.0,0.037777929445871834 -12477.0,0.037764883664350234 -12478.0,0.037751842387903904 -12479.0,0.03773880561497712 -12480.0,0.03772577334401467 -12481.0,0.0377127455734619 -12482.0,0.03769972230176471 -12483.0,0.037686703527369504 -12484.0,0.03767368924872327 -12485.0,0.03766067946427344 -12486.0,0.03764767417246808 -12487.0,0.03763467337175575 -12488.0,0.037621677060585564 -12489.0,0.03760868523740712 -12490.0,0.037595697900670605 -12491.0,0.03758271504882673 -12492.0,0.03756973668032675 -12493.0,0.037556762793622404 -12494.0,0.03754379338716602 -12495.0,0.03753082845941045 -12496.0,0.037517868008809074 -12497.0,0.03750491203381578 -12498.0,0.03749196053288503 -12499.0,0.03747901350447181 -12500.0,0.03746607094703163 -12501.0,0.03745313285902055 -12502.0,0.037440199238895126 -12503.0,0.03742727008511248 -12504.0,0.037414345396130255 -12505.0,0.037401425170406656 -12506.0,0.03738850940640036 -12507.0,0.037375598102570615 -12508.0,0.03736269125737721 -12509.0,0.03734978886928047 -12510.0,0.037336890936741196 -12511.0,0.03732399745822077 -12512.0,0.0373111084321811 -12513.0,0.03729822385708464 -12514.0,0.03728534373139431 -12515.0,0.03727246805357363 -12516.0,0.03725959682208662 -12517.0,0.03724673003539786 -12518.0,0.03723386769197239 -12519.0,0.037221009790275865 -12520.0,0.03720815632877441 -12521.0,0.037195307305934705 -12522.0,0.037182462720223984 -12523.0,0.03716962257010993 -12524.0,0.03715678685406084 -12525.0,0.03714395557054549 -12526.0,0.037131128718033236 -12527.0,0.03711830629499389 -12528.0,0.037105488299897835 -12529.0,0.03709267473121598 -12530.0,0.0370798655874198 -12531.0,0.037067060866981194 -12532.0,0.03705426056837268 -12533.0,0.037041464690067284 -12534.0,0.03702867323053855 -12535.0,0.03701588618826054 -12536.0,0.03700310356170785 -12537.0,0.03699032534935562 -12538.0,0.03697755154967949 -12539.0,0.03696478216115566 -12540.0,0.0369520171822608 -12541.0,0.03693925661147217 -12542.0,0.03692650044726751 -12543.0,0.03691374868812513 -12544.0,0.0369010013325238 -12545.0,0.03688825837894288 -12546.0,0.03687551982586221 -12547.0,0.036862785671762203 -12548.0,0.036850055915123726 -12549.0,0.03683733055442824 -12550.0,0.0368246095881577 -12551.0,0.036811893014794594 -12552.0,0.0367991808328219 -12553.0,0.03678647304072317 -12554.0,0.03677376963698245 -12555.0,0.03676107062008433 -12556.0,0.03674837598851388 -12557.0,0.03673568574075675 -12558.0,0.03672299987529907 -12559.0,0.03671031839062752 -12560.0,0.0366976412852293 -12561.0,0.036684968557592096 -12562.0,0.036672300206204156 -12563.0,0.036659636229554246 -12564.0,0.03664697662613165 -12565.0,0.03663432139442615 -12566.0,0.03662167053292808 -12567.0,0.03660902404012828 -12568.0,0.03659638191451814 -12569.0,0.03658374415458951 -12570.0,0.036571110758834804 -12571.0,0.03655848172574697 -12572.0,0.03654585705381946 -12573.0,0.03653323674154621 -12574.0,0.03652062078742173 -12575.0,0.03650800918994102 -12576.0,0.03649540194759962 -12577.0,0.036482799058893595 -12578.0,0.03647020052231946 -12579.0,0.03645760633637434 -12580.0,0.03644501649955583 -12581.0,0.03643243101036207 -12582.0,0.03641984986729167 -12583.0,0.036407273068843816 -12584.0,0.03639470061351818 -12585.0,0.03638213249981498 -12586.0,0.03636956872623489 -12587.0,0.03635700929127917 -12588.0,0.03634445419344957 -12589.0,0.03633190343124837 -12590.0,0.03631935700317832 -12591.0,0.036306814907742756 -12592.0,0.03629427714344548 -12593.0,0.03628174370879085 -12594.0,0.03626921460228368 -12595.0,0.03625668982242937 -12596.0,0.036244169367733794 -12597.0,0.036231653236703354 -12598.0,0.036219141427844985 -12599.0,0.03620663393966608 -12600.0,0.03619413077067462 -12601.0,0.03618163191937905 -12602.0,0.03616913738428838 -12603.0,0.03615664716391206 -12604.0,0.036144161256760114 -12605.0,0.036131679661343064 -12606.0,0.03611920237617197 -12607.0,0.03610672939975835 -12608.0,0.036094260730614273 -12609.0,0.03608179636725233 -12610.0,0.03606933630818563 -12611.0,0.03605688055192774 -12612.0,0.03604442909699279 -12613.0,0.03603198194189543 -12614.0,0.036019539085150785 -12615.0,0.036007100525274546 -12616.0,0.03599466626078284 -12617.0,0.03598223629019237 -12618.0,0.035969810612020335 -12619.0,0.035957389224784454 -12620.0,0.03594497212700291 -12621.0,0.035932559317194454 -12622.0,0.03592015079387833 -12623.0,0.035907746555574306 -12624.0,0.03589534660080262 -12625.0,0.03588295092808405 -12626.0,0.0358705595359399 -12627.0,0.03585817242289197 -12628.0,0.03584578958746254 -12629.0,0.035833411028174444 -12630.0,0.03582103674355101 -12631.0,0.0358086667321161 -12632.0,0.03579630099239401 -12633.0,0.03578393952290963 -12634.0,0.03577158232218833 -12635.0,0.035759229388755975 -12636.0,0.03574688072113897 -12637.0,0.03573453631786417 -12638.0,0.03572219617745901 -12639.0,0.035709860298451385 -12640.0,0.03569752867936974 -12641.0,0.03568520131874297 -12642.0,0.03567287821510052 -12643.0,0.03566055936697234 -12644.0,0.0356482447728889 -12645.0,0.03563593443138112 -12646.0,0.03562362834098048 -12647.0,0.03561132650021896 -12648.0,0.03559902890762905 -12649.0,0.03558673556174372 -12650.0,0.03557444646109646 -12651.0,0.035562161604221286 -12652.0,0.035549880989652685 -12653.0,0.0355376046159257 -12654.0,0.035525332481575814 -12655.0,0.035513064585139066 -12656.0,0.03550080092515198 -12657.0,0.03548854150015162 -12658.0,0.035476286308675484 -12659.0,0.03546403534926164 -12660.0,0.03545178862044863 -12661.0,0.035439546120775524 -12662.0,0.03542730784878185 -12663.0,0.03541507380300769 -12664.0,0.03540284398199362 -12665.0,0.03539061838428072 -12666.0,0.03537839700841053 -12667.0,0.035366179852925145 -12668.0,0.03535396691636715 -12669.0,0.03534175819727965 -12670.0,0.03532955369420619 -12671.0,0.0353173534056909 -12672.0,0.03530515733027835 -12673.0,0.03529296546651366 -12674.0,0.03528077781294242 -12675.0,0.035268594368110716 -12676.0,0.03525641513056517 -12677.0,0.03524424009885288 -12678.0,0.03523206927152148 -12679.0,0.03521990264711903 -12680.0,0.035207740224194164 -12681.0,0.035195582001296 -12682.0,0.035183427976974165 -12683.0,0.03517127814977874 -12684.0,0.03515913251826035 -12685.0,0.03514699108097011 -12686.0,0.03513485383645965 -12687.0,0.03512272078328106 -12688.0,0.03511059191998697 -12689.0,0.0350984672451305 -12690.0,0.03508634675726525 -12691.0,0.03507423045494536 -12692.0,0.03506211833672541 -12693.0,0.03505001040116052 -12694.0,0.03503790664680632 -12695.0,0.035025807072218924 -12696.0,0.035013711675954906 -12697.0,0.0350016204565714 -12698.0,0.034989533412626006 -12699.0,0.03497745054267684 -12700.0,0.03496537184528248 -12701.0,0.034953297319002034 -12702.0,0.0349412269623951 -12703.0,0.0349291607740218 -12704.0,0.03491709875244267 -12705.0,0.03490504089621884 -12706.0,0.03489298720391188 -12707.0,0.0348809376740839 -12708.0,0.03486889230529743 -12709.0,0.03485685109611558 -12710.0,0.03484481404510191 -12711.0,0.034832781150820495 -12712.0,0.0348207524118359 -12713.0,0.03480872782671317 -12714.0,0.03479670739401786 -12715.0,0.03478469111231604 -12716.0,0.034772678980174256 -12717.0,0.03476067099615951 -12718.0,0.03474866715883937 -12719.0,0.034736667466781855 -12720.0,0.034724671918555515 -12721.0,0.03471268051272932 -12722.0,0.03470069324787282 -12723.0,0.034688710122556 -12724.0,0.03467673113534939 -12725.0,0.03466475628482395 -12726.0,0.03465278556955118 -12727.0,0.03464081898810307 -12728.0,0.03462885653905208 -12729.0,0.03461689822097121 -12730.0,0.03460494403243387 -12731.0,0.034592993972014034 -12732.0,0.034581048038286155 -12733.0,0.03456910622982518 -12734.0,0.03455716854520652 -12735.0,0.03454523498300609 -12736.0,0.034533305541800306 -12737.0,0.034521380220166105 -12738.0,0.03450945901668084 -12739.0,0.03449754192992241 -12740.0,0.034485628958469204 -12741.0,0.0344737201009001 -12742.0,0.03446181535579443 -12743.0,0.03444991472173206 -12744.0,0.034438018197293335 -12745.0,0.034426125781059094 -12746.0,0.034414237471610626 -12747.0,0.03440235326752977 -12748.0,0.034390473167398815 -12749.0,0.03437859716980056 -12750.0,0.0343667252733183 -12751.0,0.034354857476535765 -12752.0,0.034342993778037234 -12753.0,0.03433113417640746 -12754.0,0.034319278670231684 -12755.0,0.03430742725809561 -12756.0,0.03429557993858546 -12757.0,0.034283736710287935 -12758.0,0.034271897571790236 -12759.0,0.03426006252168002 -12760.0,0.034248231558545464 -12761.0,0.03423640468097521 -12762.0,0.034224581887558427 -12763.0,0.0342127631768847 -12764.0,0.03420094854754417 -12765.0,0.03418913799812743 -12766.0,0.03417733152722557 -12767.0,0.03416552913343017 -12768.0,0.03415373081533327 -12769.0,0.034141936571527434 -12770.0,0.034130146400605695 -12771.0,0.034118360301161575 -12772.0,0.03410657827178906 -12773.0,0.03409480031108265 -12774.0,0.03408302641763732 -12775.0,0.034071256590048546 -12776.0,0.03405949082691224 -12777.0,0.034047729126824855 -12778.0,0.034035971488383304 -12779.0,0.03402421791018499 -12780.0,0.03401246839082779 -12781.0,0.034000722928910064 -12782.0,0.033988981523030676 -12783.0,0.03397724417178897 -12784.0,0.03396551087378474 -12785.0,0.03395378162761831 -12786.0,0.03394205643189045 -12787.0,0.033930335285202444 -12788.0,0.03391861818615606 -12789.0,0.033906905133353496 -12790.0,0.033895196125397486 -12791.0,0.03388349116089123 -12792.0,0.033871790238438435 -12793.0,0.03386009335664322 -12794.0,0.03384840051411027 -12795.0,0.033836711709444696 -12796.0,0.03382502694125213 -12797.0,0.03381334620813863 -12798.0,0.033801669508710795 -12799.0,0.03378999684157567 -12800.0,0.03377832820534081 -12801.0,0.0337666635986142 -12802.0,0.03375500302000436 -12803.0,0.03374334646812025 -12804.0,0.03373169394157135 -12805.0,0.033720045438967595 -12806.0,0.03370840095891939 -12807.0,0.033696760500037636 -12808.0,0.03368512406093371 -12809.0,0.033673491640219495 -12810.0,0.03366186323650729 -12811.0,0.03365023884840994 -12812.0,0.03363861847454072 -12813.0,0.03362700211351344 -12814.0,0.0336153897639423 -12815.0,0.03360378142444206 -12816.0,0.03359217709362793 -12817.0,0.03358057677011561 -12818.0,0.033568980452521234 -12819.0,0.03355738813946147 -12820.0,0.03354579982955343 -12821.0,0.03353421552141473 -12822.0,0.033522635213663415 -12823.0,0.03351105890491806 -12824.0,0.033499486593797694 -12825.0,0.03348791827892182 -12826.0,0.03347635395891044 -12827.0,0.033464793632383985 -12828.0,0.03345323729796341 -12829.0,0.03344168495427013 -12830.0,0.03343013659992604 -12831.0,0.03341859223355348 -12832.0,0.03340705185377531 -12833.0,0.03339551545921484 -12834.0,0.03338398304849589 -12835.0,0.03337245462024268 -12836.0,0.033360930173079985 -12837.0,0.03334940970563301 -12838.0,0.03333789321652746 -12839.0,0.03332638070438949 -12840.0,0.03331487216784574 -12841.0,0.033303367605523326 -12842.0,0.033291867016049845 -12843.0,0.03328037039805337 -12844.0,0.033268877750162414 -12845.0,0.033257389071006 -12846.0,0.03324590435921361 -12847.0,0.033234423613415214 -12848.0,0.033222946832241224 -12849.0,0.03321147401432255 -12850.0,0.033200005158290566 -12851.0,0.03318854026277714 -12852.0,0.03317707932641457 -12853.0,0.03316562234783565 -12854.0,0.03315416932567366 -12855.0,0.033142720258562346 -12856.0,0.03313127514513589 -12857.0,0.03311983398402899 -12858.0,0.033108396773876794 -12859.0,0.033096963513314946 -12860.0,0.03308553420097951 -12861.0,0.033074108835507064 -12862.0,0.03306268741553465 -12863.0,0.03305126993969977 -12864.0,0.03303985640664043 -12865.0,0.03302844681499503 -12866.0,0.03301704116340252 -12867.0,0.03300563945050228 -12868.0,0.032994241674934185 -12869.0,0.03298284783533854 -12870.0,0.03297145793035615 -12871.0,0.03296007195862828 -12872.0,0.032948689918796695 -12873.0,0.03293731180950356 -12874.0,0.03292593762939156 -12875.0,0.032914567377103854 -12876.0,0.03290320105128406 -12877.0,0.032891838650576224 -12878.0,0.03288048017362492 -12879.0,0.03286912561907515 -12880.0,0.032857774985572415 -12881.0,0.03284642827176267 -12882.0,0.03283508547629231 -12883.0,0.032823746597808234 -12884.0,0.0328124116349578 -12885.0,0.032801080586388844 -12886.0,0.03278975345074962 -12887.0,0.03277843022668891 -12888.0,0.03276711091285592 -12889.0,0.03275579550790036 -12890.0,0.032744484010472356 -12891.0,0.03273317641922255 -12892.0,0.03272187273280202 -12893.0,0.032710572949862335 -12894.0,0.03269927706905548 -12895.0,0.032687985089033963 -12896.0,0.03267669700845073 -12897.0,0.0326654128259592 -12898.0,0.032654132540213245 -12899.0,0.0326428561498672 -12900.0,0.03263158365357589 -12901.0,0.032620315049994575 -12902.0,0.03260905033777902 -12903.0,0.03259778951558539 -12904.0,0.03258653258207037 -12905.0,0.03257527953589109 -12906.0,0.03256403037570515 -12907.0,0.03255278510017059 -12908.0,0.03254154370794593 -12909.0,0.03253030619769017 -12910.0,0.032519072568062767 -12911.0,0.0325078428177236 -12912.0,0.03249661694533305 -12913.0,0.03248539494955196 -12914.0,0.03247417682904164 -12915.0,0.032462962582463825 -12916.0,0.03245175220848075 -12917.0,0.03244054570575509 -12918.0,0.03242934307295 -12919.0,0.032418144308729094 -12920.0,0.032406949411756425 -12921.0,0.032395758380696534 -12922.0,0.032384571214214404 -12923.0,0.032373387910975514 -12924.0,0.032362208469645735 -12925.0,0.03235103288889147 -12926.0,0.03233986116737954 -12927.0,0.032328693303777266 -12928.0,0.03231752929675237 -12929.0,0.03230636914497308 -12930.0,0.03229521284710807 -12931.0,0.03228406040182649 -12932.0,0.03227291180779791 -12933.0,0.0322617670636924 -12934.0,0.032250626168180474 -12935.0,0.03223948911993311 -12936.0,0.03222835591762171 -12937.0,0.03221722655991818 -12938.0,0.032206101045494887 -12939.0,0.03219497937302461 -12940.0,0.03218386154118065 -12941.0,0.03217274754863669 -12942.0,0.03216163739406694 -12943.0,0.032150531076146016 -12944.0,0.032139428593549055 -12945.0,0.032128329944951566 -12946.0,0.03211723512902958 -12947.0,0.03210614414445957 -12948.0,0.03209505698991848 -12949.0,0.03208397366408365 -12950.0,0.03207289416563294 -12951.0,0.03206181849324466 -12952.0,0.032050746645597566 -12953.0,0.03203967862137084 -12954.0,0.03202861441924416 -12955.0,0.03201755403789765 -12956.0,0.03200649747601188 -12957.0,0.031995444732267904 -12958.0,0.03198439580534719 -12959.0,0.03197335069393168 -12960.0,0.03196230939670378 -12961.0,0.03195127191234636 -12962.0,0.031940238239542694 -12963.0,0.03192920837697657 -12964.0,0.0319181823233322 -12965.0,0.03190716007729426 -12966.0,0.03189614163754786 -12967.0,0.031885127002778596 -12968.0,0.0318741161716725 -12969.0,0.03186310914291606 -12970.0,0.031852105915196216 -12971.0,0.03184110648720036 -12972.0,0.03183011085761634 -12973.0,0.03181911902513248 -12974.0,0.0318081309884375 -12975.0,0.031797146746220625 -12976.0,0.031786166297171514 -12977.0,0.03177518963998027 -12978.0,0.03176421677333749 -12979.0,0.031753247695934156 -12980.0,0.03174228240646174 -12981.0,0.03173132090361218 -12982.0,0.03172036318607785 -12983.0,0.03170940925255155 -12984.0,0.03169845910172657 -12985.0,0.03168751273229664 -12986.0,0.03167657014295595 -12987.0,0.031665631332399094 -12988.0,0.031654696299321175 -12989.0,0.03164376504241772 -12990.0,0.03163283756038472 -12991.0,0.031621913851918586 -12992.0,0.0316109939157162 -12993.0,0.03160007775047491 -12994.0,0.03158916535489249 -12995.0,0.03157825672766718 -12996.0,0.03156735186749764 -12997.0,0.03155645077308301 -12998.0,0.03154555344312286 -12999.0,0.03153465987631725 -13000.0,0.03152377007136662 -13001.0,0.0315128840269719 -13002.0,0.031502001741834484 -13003.0,0.03149112321465619 -13004.0,0.031480248444139276 -13005.0,0.03146937742898647 -13006.0,0.03145851016790093 -13007.0,0.0314476466595863 -13008.0,0.0314367869027466 -13009.0,0.03142593089608637 -13010.0,0.03141507863831055 -13011.0,0.03140423012812458 -13012.0,0.03139338536423426 -13013.0,0.03138254434534592 -13014.0,0.031371707070166295 -13015.0,0.031360873537402585 -13016.0,0.031350043745762446 -13017.0,0.03133921769395392 -13018.0,0.03132839538068556 -13019.0,0.03131757680466635 -13020.0,0.03130676196460572 -13021.0,0.0312959508592135 -13022.0,0.03128514348720004 -13023.0,0.03127433984727608 -13024.0,0.031263539938152854 -13025.0,0.03125274375854197 -13026.0,0.031241951307155544 -13027.0,0.031231162582706116 -13028.0,0.031220377583906677 -13029.0,0.031209596309470636 -13030.0,0.03119881875811187 -13031.0,0.031188044928544705 -13032.0,0.0311772748194839 -13033.0,0.031166508429644666 -13034.0,0.031155745757742628 -13035.0,0.031144986802493897 -13036.0,0.031134231562614998 -13037.0,0.031123480036822932 -13038.0,0.03111273222383509 -13039.0,0.031101988122369344 -13040.0,0.031091247731144012 -13041.0,0.031080511048877848 -13042.0,0.03106977807429002 -13043.0,0.03105904880610018 -13044.0,0.031048323243028395 -13045.0,0.03103760138379521 -13046.0,0.031026883227121545 -13047.0,0.031016168771728823 -13048.0,0.031005458016338888 -13049.0,0.030994750959674036 -13050.0,0.03098404760045697 -13051.0,0.030973347937410863 -13052.0,0.030962651969259333 -13053.0,0.03095195969472642 -13054.0,0.030941271112536632 -13055.0,0.030930586221414872 -13056.0,0.030919905020086524 -13057.0,0.030909227507277398 -13058.0,0.030898553681713757 -13059.0,0.030887883542122265 -13060.0,0.030877217087230065 -13061.0,0.030866554315764728 -13062.0,0.030855895226454277 -13063.0,0.030845239818027132 -13064.0,0.030834588089212196 -13065.0,0.03082394003873879 -13066.0,0.0308132956653367 -13067.0,0.030802654967736102 -13068.0,0.030792017944667644 -13069.0,0.030781384594862415 -13070.0,0.030770754917051932 -13071.0,0.03076012890996816 -13072.0,0.030749506572343474 -13073.0,0.030738887902910718 -13074.0,0.030728272900403163 -13075.0,0.030717661563554526 -13076.0,0.030707053891098925 -13077.0,0.030696449881770962 -13078.0,0.03068584953430565 -13079.0,0.030675252847438463 -13080.0,0.030664659819905262 -13081.0,0.03065407045044239 -13082.0,0.030643484737786615 -13083.0,0.03063290268067515 -13084.0,0.03062232427784561 -13085.0,0.030611749528036077 -13086.0,0.03060117842998506 -13087.0,0.030590610982431526 -13088.0,0.03058004718411482 -13089.0,0.03056948703377477 -13090.0,0.030558930530151636 -13091.0,0.030548377671986097 -13092.0,0.03053782845801929 -13093.0,0.03052728288699274 -13094.0,0.030516740957648458 -13095.0,0.03050620266872886 -13096.0,0.030495668018976827 -13097.0,0.03048513700713562 -13098.0,0.030474609631948982 -13099.0,0.030464085892161073 -13100.0,0.0304535657865165 -13101.0,0.030443049313760264 -13102.0,0.03043253647263784 -13103.0,0.030422027261895128 -13104.0,0.03041152168027846 -13105.0,0.030401019726534577 -13106.0,0.030390521399410682 -13107.0,0.030380026697654404 -13108.0,0.0303695356200138 -13109.0,0.030359048165237375 -13110.0,0.030348564332074026 -13111.0,0.030338084119273117 -13112.0,0.03032760752558444 -13113.0,0.030317134549758228 -13114.0,0.0303066651905451 -13115.0,0.030296199446696155 -13116.0,0.0302857373169629 -13117.0,0.030275278800097304 -13118.0,0.030264823894851703 -13119.0,0.030254372599978922 -13120.0,0.030243924914232202 -13121.0,0.030233480836365217 -13122.0,0.03022304036513204 -13123.0,0.03021260349928721 -13124.0,0.03020217023758569 -13125.0,0.030191740578782877 -13126.0,0.030181314521634566 -13127.0,0.030170892064897016 -13128.0,0.030160473207326902 -13129.0,0.03015005794768133 -13130.0,0.030139646284717856 -13131.0,0.030129238217194407 -13132.0,0.030118833743869398 -13133.0,0.030108432863501646 -13134.0,0.03009803557485042 -13135.0,0.03008764187667537 -13136.0,0.030077251767736613 -13137.0,0.030066865246794694 -13138.0,0.030056482312610582 -13139.0,0.030046102963945644 -13140.0,0.030035727199561716 -13141.0,0.030025355018221043 -13142.0,0.03001498641868631 -13143.0,0.030004621399720596 -13144.0,0.02999425996008744 -13145.0,0.0299839020985508 -13146.0,0.029973547813875057 -13147.0,0.029963197104825035 -13148.0,0.029952849970165944 -13149.0,0.029942506408663454 -13150.0,0.029932166419083663 -13151.0,0.029921830000193092 -13152.0,0.029911497150758654 -13153.0,0.029901167869547735 -13154.0,0.029890842155328126 -13155.0,0.029880520006868052 -13156.0,0.029870201422936133 -13157.0,0.02985988640230145 -13158.0,0.029849574943733498 -13159.0,0.029839267046002208 -13160.0,0.029828962707877892 -13161.0,0.029818661928131335 -13162.0,0.029808364705533733 -13163.0,0.029798071038856705 -13164.0,0.029787780926872273 -13165.0,0.029777494368352916 -13166.0,0.029767211362071517 -13167.0,0.02975693190680139 -13168.0,0.029746656001316287 -13169.0,0.029736383644390338 -13170.0,0.02972611483479814 -13171.0,0.0297158495713147 -13172.0,0.02970558785271546 -13173.0,0.02969532967777624 -13174.0,0.02968507504527334 -13175.0,0.02967482395398344 -13176.0,0.02966457640268369 -13177.0,0.029654332390151594 -13178.0,0.029644091915165132 -13179.0,0.02963385497650269 -13180.0,0.02962362157294309 -13181.0,0.02961339170326554 -13182.0,0.02960316536624969 -13183.0,0.029592942560675628 -13184.0,0.029582723285323843 -13185.0,0.029572507538975258 -13186.0,0.02956229532041119 -13187.0,0.029552086628413403 -13188.0,0.029541881461764074 -13189.0,0.029531679819245822 -13190.0,0.02952148169964163 -13191.0,0.029511287101734958 -13192.0,0.02950109602430966 -13193.0,0.029490908466150025 -13194.0,0.029480724426040734 -13195.0,0.029470543902766908 -13196.0,0.029460366895114092 -13197.0,0.029450193401868257 -13198.0,0.029440023421815748 -13199.0,0.02942985695374338 -13200.0,0.02941969399643836 -13201.0,0.02940953454868834 -13202.0,0.029399378609281344 -13203.0,0.029389226177005855 -13204.0,0.02937907725065076 -13205.0,0.029368931829005372 -13206.0,0.029358789910859426 -13207.0,0.02934865149500304 -13208.0,0.029338516580226782 -13209.0,0.029328385165321637 -13210.0,0.02931825724907901 -13211.0,0.029308132830290698 -13212.0,0.02929801190774893 -13213.0,0.029287894480246365 -13214.0,0.029277780546576076 -13215.0,0.02926767010553152 -13216.0,0.029257563155906607 -13217.0,0.029247459696495653 -13218.0,0.029237359726093398 -13219.0,0.029227263243494967 -13220.0,0.029217170247495938 -13221.0,0.029207080736892283 -13222.0,0.029196994710480404 -13223.0,0.029186912167057124 -13224.0,0.029176833105419638 -13225.0,0.029166757524365608 -13226.0,0.02915668542269308 -13227.0,0.02914661679920055 -13228.0,0.02913655165268687 -13229.0,0.029126489981951362 -13230.0,0.029116431785793734 -13231.0,0.02910637706301414 -13232.0,0.029096325812413084 -13233.0,0.02908627803279155 -13234.0,0.02907623372295091 -13235.0,0.02906619288169296 -13236.0,0.029056155507819877 -13237.0,0.029046121600134287 -13238.0,0.02903609115743922 -13239.0,0.02902606417853813 -13240.0,0.029016040662234843 -13241.0,0.029006020607333642 -13242.0,0.028996004012639208 -13243.0,0.028985990876956632 -13244.0,0.028975981199091436 -13245.0,0.02896597497784951 -13246.0,0.0289559722120372 -13247.0,0.028945972900461244 -13248.0,0.028935977041928816 -13249.0,0.028925984635247454 -13250.0,0.028915995679225148 -13251.0,0.028906010172670294 -13252.0,0.0288960281143917 -13253.0,0.02888604950319856 -13254.0,0.028876074337900508 -13255.0,0.028866102617307578 -13256.0,0.028856134340230228 -13257.0,0.028846169505479295 -13258.0,0.02883620811186606 -13259.0,0.028826250158202196 -13260.0,0.02881629564329979 -13261.0,0.028806344565971365 -13262.0,0.028796396925029794 -13263.0,0.02878645271928841 -13264.0,0.028776511947560948 -13265.0,0.028766574608661555 -13266.0,0.02875664070140475 -13267.0,0.02874671022460551 -13268.0,0.028736783177079197 -13269.0,0.0287268595576416 -13270.0,0.028716939365108878 -13271.0,0.02870702259829764 -13272.0,0.028697109256024884 -13273.0,0.028687199337108032 -13274.0,0.028677292840364885 -13275.0,0.028667389764613676 -13276.0,0.028657490108673044 -13277.0,0.028647593871362044 -13278.0,0.0286377010515001 -13279.0,0.028627811647907085 -13280.0,0.028617925659403264 -13281.0,0.028608043084809312 -13282.0,0.028598163922946323 -13283.0,0.028588288172635756 -13284.0,0.028578415832699523 -13285.0,0.028568546901959924 -13286.0,0.02855868137923968 -13287.0,0.028548819263361884 -13288.0,0.028538960553150063 -13289.0,0.02852910524742815 -13290.0,0.028519253345020493 -13291.0,0.028509404844751802 -13292.0,0.02849955974544724 -13293.0,0.028489718045932352 -13294.0,0.028479879745033115 -13295.0,0.02847004484157586 -13296.0,0.028460213334387374 -13297.0,0.028450385222294823 -13298.0,0.02844056050412579 -13299.0,0.028430739178708267 -13300.0,0.02842092124487062 -13301.0,0.028411106701441646 -13302.0,0.02840129554725055 -13303.0,0.02839148778112694 -13304.0,0.028381683401900802 -13305.0,0.028371882408402552 -13306.0,0.028362084799463005 -13307.0,0.028352290573913388 -13308.0,0.0283424997305853 -13309.0,0.028332712268310772 -13310.0,0.02832292818592224 -13311.0,0.028313147482252537 -13312.0,0.028303370156134877 -13313.0,0.02829359620640291 -13314.0,0.028283825631890667 -13315.0,0.0282740584314326 -13316.0,0.02826429460386356 -13317.0,0.02825453414801877 -13318.0,0.028244777062733886 -13319.0,0.028235023346844967 -13320.0,0.028225272999188478 -13321.0,0.02821552601860124 -13322.0,0.02820578240392053 -13323.0,0.028196042153984004 -13324.0,0.028186305267629733 -13325.0,0.02817657174369615 -13326.0,0.028166841581022135 -13327.0,0.028157114778446943 -13328.0,0.028147391334810257 -13329.0,0.028137671248952112 -13330.0,0.028127954519712985 -13331.0,0.028118241145933743 -13332.0,0.02810853112645566 -13333.0,0.028098824460120384 -13334.0,0.028089121145769985 -13335.0,0.028079421182246933 -13336.0,0.02806972456839409 -13337.0,0.028060031303054737 -13338.0,0.02805034138507251 -13339.0,0.028040654813291488 -13340.0,0.02803097158655613 -13341.0,0.02802129170371131 -13342.0,0.028011615163602267 -13343.0,0.028001941965074672 -13344.0,0.02799227210697458 -13345.0,0.027982605588148465 -13346.0,0.027972942407443153 -13347.0,0.027963282563705907 -13348.0,0.027953626055784386 -13349.0,0.027943972882526643 -13350.0,0.027934323042781106 -13351.0,0.02792467653539663 -13352.0,0.027915033359222456 -13353.0,0.027905393513108223 -13354.0,0.02789575699590398 -13355.0,0.02788612380646014 -13356.0,0.027876493943627543 -13357.0,0.027866867406257417 -13358.0,0.027857244193201396 -13359.0,0.02784762430331148 -13360.0,0.0278380077354401 -13361.0,0.027828394488440062 -13362.0,0.027818784561164597 -13363.0,0.02780917795246728 -13364.0,0.027799574661202125 -13365.0,0.02778997468622353 -13366.0,0.027780378026386308 -13367.0,0.027770784680545613 -13368.0,0.027761194647557046 -13369.0,0.02775160792627658 -13370.0,0.02774202451556061 -13371.0,0.027732444414265874 -13372.0,0.02772286762124955 -13373.0,0.0277132941353692 -13374.0,0.027703723955482772 -13375.0,0.027694157080448627 -13376.0,0.027684593509125482 -13377.0,0.027675033240372484 -13378.0,0.027665476273049164 -13379.0,0.02765592260601546 -13380.0,0.02764637223813166 -13381.0,0.02763682516825849 -13382.0,0.027627281395257053 -13383.0,0.02761774091798886 -13384.0,0.027608203735315775 -13385.0,0.027598669846100096 -13386.0,0.0275891392492045 -13387.0,0.027579611943492066 -13388.0,0.027570087927826233 -13389.0,0.027560567201070866 -13390.0,0.027551049762090215 -13391.0,0.027541535609748913 -13392.0,0.027532024742912012 -13393.0,0.0275225171604449 -13394.0,0.027513012861213413 -13395.0,0.027503511844083756 -13396.0,0.027494014107922533 -13397.0,0.027484519651596716 -13398.0,0.027475028473973692 -13399.0,0.027465540573921237 -13400.0,0.027456055950307524 -13401.0,0.027446574602001082 -13402.0,0.02743709652787087 -13403.0,0.02742762172678622 -13404.0,0.02741815019761687 -13405.0,0.02740868193923291 -13406.0,0.027399216950504863 -13407.0,0.02738975523030362 -13408.0,0.027380296777500483 -13409.0,0.027370841590967098 -13410.0,0.027361389669575544 -13411.0,0.027351941012198278 -13412.0,0.027342495617708143 -13413.0,0.027333053484978383 -13414.0,0.0273236146128826 -13415.0,0.02731417900029481 -13416.0,0.027304746646089423 -13417.0,0.027295317549141232 -13418.0,0.027285891708325394 -13419.0,0.027276469122517487 -13420.0,0.027267049790593464 -13421.0,0.027257633711429682 -13422.0,0.027248220883902843 -13423.0,0.02723881130689008 -13424.0,0.0272294049792689 -13425.0,0.027220001899917207 -13426.0,0.02721060206771326 -13427.0,0.027201205481535738 -13428.0,0.027191812140263696 -13429.0,0.02718242204277658 -13430.0,0.027173035187954223 -13431.0,0.02716365157467683 -13432.0,0.027154271201825012 -13433.0,0.027144894068279753 -13434.0,0.02713552017292245 -13435.0,0.027126149514634837 -13436.0,0.027116782092299074 -13437.0,0.027107417904797697 -13438.0,0.02709805695101364 -13439.0,0.027088699229830183 -13440.0,0.027079344740131035 -13441.0,0.027069993480800268 -13442.0,0.02706064545072236 -13443.0,0.027051300648782133 -13444.0,0.027041959073864832 -13445.0,0.027032620724856078 -13446.0,0.027023285600641885 -13447.0,0.027013953700108617 -13448.0,0.02700462502214306 -13449.0,0.026995299565632364 -13450.0,0.026985977329464075 -13451.0,0.026976658312526134 -13452.0,0.02696734251370682 -13453.0,0.026958029931894837 -13454.0,0.02694872056597927 -13455.0,0.026939414414849584 -13456.0,0.026930111477395602 -13457.0,0.026920811752507563 -13458.0,0.026911515239076075 -13459.0,0.02690222193599215 -13460.0,0.026892931842147135 -13461.0,0.026883644956432803 -13462.0,0.026874361277741298 -13463.0,0.026865080804965157 -13464.0,0.02685580353699726 -13465.0,0.02684652947273091 -13466.0,0.026837258611059782 -13467.0,0.026827990950877924 -13468.0,0.02681872649107979 -13469.0,0.026809465230560166 -13470.0,0.02680020716821427 -13471.0,0.026790952302937678 -13472.0,0.02678170063362637 -13473.0,0.02677245215917666 -13474.0,0.026763206878485286 -13475.0,0.02675396479044935 -13476.0,0.026744725893966356 -13477.0,0.026735490187934145 -13478.0,0.026726257671250975 -13479.0,0.026717028342815478 -13480.0,0.02670780220152667 -13481.0,0.026698579246283913 -13482.0,0.026689359475987 -13483.0,0.026680142889536067 -13484.0,0.02667092948583166 -13485.0,0.02666171926377466 -13486.0,0.026652512222266368 -13487.0,0.026643308360208458 -13488.0,0.026634107676502965 -13489.0,0.026624910170052335 -13490.0,0.026615715839759344 -13491.0,0.026606524684527188 -13492.0,0.02659733670325943 -13493.0,0.026588151894860024 -13494.0,0.02657897025823326 -13495.0,0.026569791792283855 -13496.0,0.026560616495916883 -13497.0,0.02655144436803781 -13498.0,0.02654227540755244 -13499.0,0.026533109613367 -13500.0,0.02652394698438807 -13501.0,0.026514787519522638 -13502.0,0.026505631217678013 -13503.0,0.026496478077761933 -13504.0,0.026487328098682494 -13505.0,0.02647818127934817 -13506.0,0.02646903761866782 -13507.0,0.026459897115550655 -13508.0,0.026450759768906287 -13509.0,0.026441625577644696 -13510.0,0.026432494540676255 -13511.0,0.026423366656911675 -13512.0,0.026414241925262073 -13513.0,0.02640512034463894 -13514.0,0.026396001913954147 -13515.0,0.026386886632119907 -13516.0,0.02637777449804885 -13517.0,0.026368665510653956 -13518.0,0.02635955966884861 -13519.0,0.026350456971546525 -13520.0,0.026341357417661828 -13521.0,0.026332261006109005 -13522.0,0.026323167735802934 -13523.0,0.026314077605658834 -13524.0,0.026304990614592325 -13525.0,0.0262959067615194 -13526.0,0.02628682604535642 -13527.0,0.026277748465020134 -13528.0,0.026268674019427625 -13529.0,0.026259602707496395 -13530.0,0.0262505345281443 -13531.0,0.026241469480289586 -13532.0,0.026232407562850835 -13533.0,0.026223348774747034 -13534.0,0.02621429311489754 -13535.0,0.026205240582222088 -13536.0,0.026196191175640756 -13537.0,0.026187144894074026 -13538.0,0.026178101736442742 -13539.0,0.026169061701668137 -13540.0,0.02616002478867177 -13541.0,0.02615099099637562 -13542.0,0.026141960323702022 -13543.0,0.02613293276957368 -13544.0,0.026123908332913687 -13545.0,0.026114887012645464 -13546.0,0.026105868807692854 -13547.0,0.026096853716980044 -13548.0,0.026087841739431614 -13549.0,0.026078832873972477 -13550.0,0.026069827119527954 -13551.0,0.026060824475023718 -13552.0,0.026051824939385838 -13553.0,0.02604282851154071 -13554.0,0.026033835190415137 -13555.0,0.02602484497493628 -13556.0,0.026015857864031686 -13557.0,0.026006873856629233 -13558.0,0.025997892951657203 -13559.0,0.02598891514804425 -13560.0,0.025979940444719383 -13561.0,0.025970968840611976 -13562.0,0.02596200033465179 -13563.0,0.025953034925768944 -13564.0,0.025944072612893936 -13565.0,0.025935113394957632 -13566.0,0.025926157270891245 -13567.0,0.02591720423962638 -13568.0,0.025908254300095017 -13569.0,0.02589930745122949 -13570.0,0.025890363691962497 -13571.0,0.025881423021227114 -13572.0,0.02587248543795679 -13573.0,0.025863550941085344 -13574.0,0.025854619529546933 -13575.0,0.025845691202276116 -13576.0,0.025836765958207813 -13577.0,0.025827843796277315 -13578.0,0.02581892471542025 -13579.0,0.025810008714572653 -13580.0,0.025801095792670904 -13581.0,0.02579218594865176 -13582.0,0.02578327918145235 -13583.0,0.02577437549001014 -13584.0,0.025765474873262997 -13585.0,0.025756577330149143 -13586.0,0.025747682859607175 -13587.0,0.02573879146057603 -13588.0,0.02572990313199503 -13589.0,0.025721017872803873 -13590.0,0.025712135681942618 -13591.0,0.02570325655835166 -13592.0,0.0256943805009718 -13593.0,0.02568550750874419 -13594.0,0.025676637580610354 -13595.0,0.025667770715512152 -13596.0,0.025658906912391848 -13597.0,0.025650046170192047 -13598.0,0.025641188487855748 -13599.0,0.02563233386432626 -13600.0,0.02562348229854731 -13601.0,0.025614633789462972 -13602.0,0.025605788336017676 -13603.0,0.02559694593715624 -13604.0,0.02558810659182381 -13605.0,0.025579270298965923 -13606.0,0.025570437057528476 -13607.0,0.025561606866457743 -13608.0,0.025552779724700315 -13609.0,0.025543955631203194 -13610.0,0.025535134584913733 -13611.0,0.025526316584779656 -13612.0,0.02551750162974901 -13613.0,0.025508689718770256 -13614.0,0.025499880850792193 -13615.0,0.025491075024764 -13616.0,0.025482272239635177 -13617.0,0.025473472494355637 -13618.0,0.02546467578787563 -13619.0,0.02545588211914577 -13620.0,0.025447091487117053 -13621.0,0.025438303890740796 -13622.0,0.025429519328968715 -13623.0,0.025420737800752873 -13624.0,0.025411959305045712 -13625.0,0.0254031838408 -13626.0,0.025394411406968895 -13627.0,0.025385642002505912 -13628.0,0.025376875626364936 -13629.0,0.02536811227750018 -13630.0,0.02535935195486625 -13631.0,0.025350594657418107 -13632.0,0.025341840384111077 -13633.0,0.02533308913390082 -13634.0,0.025324340905743384 -13635.0,0.025315595698595168 -13636.0,0.025306853511412947 -13637.0,0.025298114343153818 -13638.0,0.025289378192775276 -13639.0,0.025280645059235156 -13640.0,0.025271914941491662 -13641.0,0.025263187838503367 -13642.0,0.02525446374922917 -13643.0,0.025245742672628354 -13644.0,0.025237024607660568 -13645.0,0.025228309553285817 -13646.0,0.025219597508464437 -13647.0,0.025210888472157154 -13648.0,0.025202182443325043 -13649.0,0.025193479420929556 -13650.0,0.025184779403932454 -13651.0,0.025176082391295908 -13652.0,0.025167388381982424 -13653.0,0.02515869737495488 -13654.0,0.025150009369176482 -13655.0,0.025141324363610825 -13656.0,0.02513264235722185 -13657.0,0.02512396334897386 -13658.0,0.02511528733783152 -13659.0,0.025106614322759825 -13660.0,0.025097944302724155 -13661.0,0.025089277276690247 -13662.0,0.025080613243624195 -13663.0,0.02507195220249242 -13664.0,0.025063294152261734 -13665.0,0.025054639091899294 -13666.0,0.02504598702037263 -13667.0,0.025037337936649588 -13668.0,0.025028691839698407 -13669.0,0.025020048728487666 -13670.0,0.025011408601986324 -13671.0,0.025002771459163648 -13672.0,0.024994137298989305 -13673.0,0.024985506120433303 -13674.0,0.02497687792246601 -13675.0,0.02496825270405813 -13676.0,0.02495963046418075 -13677.0,0.02495101120180529 -13678.0,0.024942394915903544 -13679.0,0.024933781605447656 -13680.0,0.024925171269410105 -13681.0,0.024916563906763747 -13682.0,0.024907959516481788 -13683.0,0.0248993580975378 -13684.0,0.02489075964890567 -13685.0,0.024882164169559684 -13686.0,0.024873571658474456 -13687.0,0.024864982114624977 -13688.0,0.024856395536986552 -13689.0,0.024847811924534884 -13690.0,0.024839231276246 -13691.0,0.02483065359109631 -13692.0,0.024822078868062532 -13693.0,0.02481350710612178 -13694.0,0.0248049383042515 -13695.0,0.0247963724614295 -13696.0,0.024787809576633946 -13697.0,0.024779249648843326 -13698.0,0.024770692677036518 -13699.0,0.024762138660192733 -13700.0,0.024753587597291557 -13701.0,0.02474503948731288 -13702.0,0.02473649432923699 -13703.0,0.02472795212204451 -13704.0,0.024719412864716434 -13705.0,0.024710876556234062 -13706.0,0.024702343195579086 -13707.0,0.02469381278173354 -13708.0,0.024685285313679823 -13709.0,0.024676760790400643 -13710.0,0.0246682392108791 -13711.0,0.02465972057409863 -13712.0,0.02465120487904303 -13713.0,0.024642692124696424 -13714.0,0.02463418231004331 -13715.0,0.02462567543406853 -13716.0,0.024617171495757276 -13717.0,0.024608670494095097 -13718.0,0.024600172428067873 -13719.0,0.024591677296661847 -13720.0,0.02458318509886362 -13721.0,0.024574695833660138 -13722.0,0.02456620950003868 -13723.0,0.024557726096986893 -13724.0,0.02454924562349277 -13725.0,0.024540768078544665 -13726.0,0.024532293461131248 -13727.0,0.024523821770241563 -13728.0,0.024515353004865008 -13729.0,0.02450688716399133 -13730.0,0.024498424246610587 -13731.0,0.024489964251713233 -13732.0,0.02448150717829005 -13733.0,0.02447305302533217 -13734.0,0.024464601791831086 -13735.0,0.024456153476778604 -13736.0,0.024447708079166915 -13737.0,0.024439265597988542 -13738.0,0.024430826032236376 -13739.0,0.024422389380903606 -13740.0,0.02441395564298382 -13741.0,0.024405524817470933 -13742.0,0.024397096903359217 -13743.0,0.024388671899643267 -13744.0,0.024380249805318045 -13745.0,0.02437183061937886 -13746.0,0.024363414340821378 -13747.0,0.024355000968641575 -13748.0,0.024346590501835803 -13749.0,0.024338182939400762 -13750.0,0.0243297782803335 -13751.0,0.024321376523631377 -13752.0,0.02431297766829214 -13753.0,0.024304581713313865 -13754.0,0.024296188657694975 -13755.0,0.02428779850043425 -13756.0,0.024279411240530787 -13757.0,0.024271026876984056 -13758.0,0.024262645408793863 -13759.0,0.024254266834960368 -13760.0,0.024245891154484053 -13761.0,0.024237518366365767 -13762.0,0.0242291484696067 -13763.0,0.024220781463208392 -13764.0,0.024212417346172698 -13765.0,0.024204056117501857 -13766.0,0.024195697776198427 -13767.0,0.024187342321265338 -13768.0,0.024178989751705817 -13769.0,0.024170640066523474 -13770.0,0.02416229326472226 -13771.0,0.024153949345306455 -13772.0,0.0241456083072807 -13773.0,0.024137270149649958 -13774.0,0.024128934871419545 -13775.0,0.024120602471595136 -13776.0,0.02411227294918274 -13777.0,0.024103946303188684 -13778.0,0.024095622532619675 -13779.0,0.024087301636482743 -13780.0,0.024078983613785278 -13781.0,0.02407066846353498 -13782.0,0.024062356184739925 -13783.0,0.024054046776408513 -13784.0,0.024045740237549507 -13785.0,0.02403743656717198 -13786.0,0.024029135764285364 -13787.0,0.024020837827899443 -13788.0,0.02401254275702434 -13789.0,0.024004250550670497 -13790.0,0.023995961207848717 -13791.0,0.02398767472757015 -13792.0,0.02397939110884628 -13793.0,0.02397111035068893 -13794.0,0.02396283245211026 -13795.0,0.023954557412122775 -13796.0,0.023946285229739333 -13797.0,0.023938015903973126 -13798.0,0.023929749433837667 -13799.0,0.023921485818346837 -13800.0,0.023913225056514845 -13801.0,0.02390496714735625 -13802.0,0.023896712089885933 -13803.0,0.023888459883119127 -13804.0,0.023880210526071404 -13805.0,0.023871964017758693 -13806.0,0.023863720357197218 -13807.0,0.02385547954340358 -13808.0,0.02384724157539472 -13809.0,0.023839006452187898 -13810.0,0.023830774172800738 -13811.0,0.02382254473625117 -13812.0,0.02381431814155749 -13813.0,0.023806094387738327 -13814.0,0.023797873473812656 -13815.0,0.02378965539879976 -13816.0,0.0237814401617193 -13817.0,0.02377322776159125 -13818.0,0.023765018197435945 -13819.0,0.02375681146827402 -13820.0,0.023748607573126485 -13821.0,0.023740406511014677 -13822.0,0.023732208280960274 -13823.0,0.023724012881985272 -13824.0,0.023715820313112024 -13825.0,0.023707630573363222 -13826.0,0.023699443661761896 -13827.0,0.02369125957733139 -13828.0,0.02368307831909541 -13829.0,0.02367489988607799 -13830.0,0.02366672427730351 -13831.0,0.02365855149179668 -13832.0,0.023650381528582533 -13833.0,0.02364221438668646 -13834.0,0.023634050065134176 -13835.0,0.023625888562951756 -13836.0,0.023617729879165567 -13837.0,0.023609574012802347 -13838.0,0.02360142096288916 -13839.0,0.02359327072845342 -13840.0,0.023585123308522842 -13841.0,0.023576978702125505 -13842.0,0.02356883690828982 -13843.0,0.023560697926044545 -13844.0,0.02355256175441873 -13845.0,0.0235444283924418 -13846.0,0.023536297839143513 -13847.0,0.023528170093553943 -13848.0,0.023520045154703528 -13849.0,0.023511923021622992 -13850.0,0.023503803693343442 -13851.0,0.0234956871688963 -13852.0,0.02348757344731333 -13853.0,0.02347946252762661 -13854.0,0.02347135440886857 -13855.0,0.023463249090071973 -13856.0,0.023455146570269928 -13857.0,0.023447046848495835 -13858.0,0.023438949923783474 -13859.0,0.023430855795166936 -13860.0,0.023422764461680665 -13861.0,0.0234146759223594 -13862.0,0.023406590176238248 -13863.0,0.02339850722235264 -13864.0,0.023390427059738345 -13865.0,0.023382349687431442 -13866.0,0.023374275104468368 -13867.0,0.023366203309885886 -13868.0,0.023358134302721087 -13869.0,0.02335006808201141 -13870.0,0.02334200464679459 -13871.0,0.023333943996108733 -13872.0,0.023325886128992255 -13873.0,0.02331783104448393 -13874.0,0.02330977874162282 -13875.0,0.023301729219448352 -13876.0,0.02329368247700028 -13877.0,0.023285638513318697 -13878.0,0.023277597327443993 -13879.0,0.02326955891841693 -13880.0,0.023261523285278574 -13881.0,0.023253490427070353 -13882.0,0.02324546034283398 -13883.0,0.023237433031611535 -13884.0,0.023229408492445418 -13885.0,0.023221386724378363 -13886.0,0.023213367726453438 -13887.0,0.02320535149771402 -13888.0,0.02319733803720383 -13889.0,0.023189327343966937 -13890.0,0.02318131941704772 -13891.0,0.02317331425549088 -13892.0,0.023165311858341465 -13893.0,0.023157312224644847 -13894.0,0.02314931535344674 -13895.0,0.02314132124379316 -13896.0,0.023133329894730468 -13897.0,0.02312534130530536 -13898.0,0.02311735547456487 -13899.0,0.02310937240155632 -13900.0,0.0231013920853274 -13901.0,0.023093414524926113 -13902.0,0.02308543971940081 -13903.0,0.02307746766780013 -13904.0,0.02306949836917308 -13905.0,0.023061531822568974 -13906.0,0.02305356802703747 -13907.0,0.023045606981628546 -13908.0,0.023037648685392494 -13909.0,0.023029693137379955 -13910.0,0.02302174033664189 -13911.0,0.0230137902822296 -13912.0,0.023005842973194676 -13913.0,0.02299789840858908 -13914.0,0.022989956587465075 -13915.0,0.022982017508875276 -13916.0,0.022974081171872583 -13917.0,0.022966147575510264 -13918.0,0.0229582167188419 -13919.0,0.022950288600921402 -13920.0,0.022942363220802984 -13921.0,0.02293444057754122 -13922.0,0.022926520670190995 -13923.0,0.02291860349780752 -13924.0,0.022910689059446345 -13925.0,0.022902777354163316 -13926.0,0.022894868381014635 -13927.0,0.02288696213905682 -13928.0,0.022879058627346717 -13929.0,0.02287115784494148 -13930.0,0.022863259790898614 -13931.0,0.022855364464275937 -13932.0,0.022847471864131604 -13933.0,0.022839581989524068 -13934.0,0.022831694839512133 -13935.0,0.022823810413154916 -13936.0,0.02281592870951188 -13937.0,0.022808049727642766 -13938.0,0.022800173466607683 -13939.0,0.022792299925467056 -13940.0,0.022784429103281628 -13941.0,0.022776560999112457 -13942.0,0.022768695612020943 -13943.0,0.022760832941068797 -13944.0,0.022752972985318067 -13945.0,0.022745115743831125 -13946.0,0.02273726121567064 -13947.0,0.02272940939989963 -13948.0,0.022721560295581436 -13949.0,0.022713713901779724 -13950.0,0.02270587021755846 -13951.0,0.022698029241981953 -13952.0,0.02269019097411484 -13953.0,0.022682355413022076 -13954.0,0.022674522557768917 -13955.0,0.022666692407420974 -13956.0,0.022658864961044165 -13957.0,0.02265104021770474 -13958.0,0.02264321817646925 -13959.0,0.02263539883640459 -13960.0,0.022627582196577966 -13961.0,0.022619768256056914 -13962.0,0.022611957013909296 -13963.0,0.022604148469203268 -13964.0,0.02259634262100734 -13965.0,0.022588539468390328 -13966.0,0.022580739010421385 -13967.0,0.02257294124616995 -13968.0,0.022565146174705824 -13969.0,0.022557353795099103 -13970.0,0.022549564106420228 -13971.0,0.022541777107739924 -13972.0,0.02253399279812927 -13973.0,0.022526211176659653 -13974.0,0.022518432242402794 -13975.0,0.022510655994430702 -13976.0,0.022502882431815738 -13977.0,0.022495111553630574 -13978.0,0.022487343358948204 -13979.0,0.022479577846841927 -13980.0,0.022471815016385382 -13981.0,0.022464054866652518 -13982.0,0.02245629739671761 -13983.0,0.02244854260565525 -13984.0,0.022440790492540337 -13985.0,0.022433041056448104 -13986.0,0.022425294296454106 -13987.0,0.022417550211634215 -13988.0,0.0224098088010646 -13989.0,0.022402070063821777 -13990.0,0.022394333998982573 -13991.0,0.02238660060562414 -13992.0,0.02237886988282392 -13993.0,0.02237114182965971 -13994.0,0.022363416445209602 -13995.0,0.022355693728552027 -13996.0,0.0223479736787657 -13997.0,0.022340256294929688 -13998.0,0.02233254157612336 -13999.0,0.02232482952142641 -14000.0,0.022317120129918856 -14001.0,0.022309413400681 -14002.0,0.022301709332793497 -14003.0,0.022294007925337308 -14004.0,0.022286309177393722 -14005.0,0.022278613088044314 -14006.0,0.022270919656371006 -14007.0,0.02226322888145603 -14008.0,0.02225554076238194 -14009.0,0.022247855298231582 -14010.0,0.022240172488088142 -14011.0,0.022232492331035122 -14012.0,0.02222481482615634 -14013.0,0.022217139972535913 -14014.0,0.02220946776925829 -14015.0,0.02220179821540823 -14016.0,0.022194131310070832 -14017.0,0.022186467052331467 -14018.0,0.02217880544127585 -14019.0,0.022171146475990007 -14020.0,0.02216349015556028 -14021.0,0.02215583647907334 -14022.0,0.02214818544561614 -14023.0,0.02214053705427597 -14024.0,0.022132891304140437 -14025.0,0.022125248194297467 -14026.0,0.022117607723835277 -14027.0,0.02210996989184242 -14028.0,0.02210233469740776 -14029.0,0.022094702139620483 -14030.0,0.022087072217570062 -14031.0,0.022079444930346314 -14032.0,0.02207182027703936 -14033.0,0.02206419825673964 -14034.0,0.022056578868537884 -14035.0,0.022048962111525166 -14036.0,0.022041347984792858 -14037.0,0.02203373648743266 -14038.0,0.022026127618536576 -14039.0,0.02201852137719691 -14040.0,0.022010917762506296 -14041.0,0.02200331677355768 -14042.0,0.021995718409444337 -14043.0,0.021988122669259813 -14044.0,0.021980529552097998 -14045.0,0.021972939057053092 -14046.0,0.021965351183219614 -14047.0,0.021957765929692365 -14048.0,0.02195018329556649 -14049.0,0.02194260327993744 -14050.0,0.021935025881900976 -14051.0,0.021927451100553153 -14052.0,0.02191987893499037 -14053.0,0.02191230938430932 -14054.0,0.021904742447607015 -14055.0,0.02189717812398076 -14056.0,0.021889616412528196 -14057.0,0.02188205731234727 -14058.0,0.021874500822536228 -14059.0,0.02186694694219365 -14060.0,0.021859395670418395 -14061.0,0.02185184700630966 -14062.0,0.02184430094896694 -14063.0,0.02183675749749006 -14064.0,0.021829216650979123 -14065.0,0.021821678408534568 -14066.0,0.02181414276925714 -14067.0,0.021806609732247895 -14068.0,0.021799079296608185 -14069.0,0.02179155146143969 -14070.0,0.021784026225844397 -14071.0,0.021776503588924606 -14072.0,0.021768983549782905 -14073.0,0.021761466107522217 -14074.0,0.021753951261245765 -14075.0,0.021746439010057083 -14076.0,0.021738929353060023 -14077.0,0.02173142228935872 -14078.0,0.021723917818057648 -14079.0,0.021716415938261572 -14080.0,0.021708916649075587 -14081.0,0.02170141994960506 -14082.0,0.021693925838955703 -14083.0,0.021686434316233523 -14084.0,0.02167894538054484 -14085.0,0.021671459030996265 -14086.0,0.021663975266694738 -14087.0,0.0216564940867475 -14088.0,0.021649015490262113 -14089.0,0.02164153947634641 -14090.0,0.02163406604410858 -14091.0,0.02162659519265708 -14092.0,0.021619126921100712 -14093.0,0.021611661228548545 -14094.0,0.021604198114109983 -14095.0,0.021596737576894735 -14096.0,0.02158927961601281 -14097.0,0.021581824230574538 -14098.0,0.021574371419690527 -14099.0,0.02156692118247172 -14100.0,0.021559473518029358 -14101.0,0.021552028425475 -14102.0,0.02154458590392048 -14103.0,0.021537145952477972 -14104.0,0.02152970857025994 -14105.0,0.02152227375637917 -14106.0,0.021514841509948725 -14107.0,0.021507411830081997 -14108.0,0.021499984715892685 -14109.0,0.021492560166494798 -14110.0,0.021485138181002617 -14111.0,0.021477718758530766 -14112.0,0.021470301898194162 -14113.0,0.021462887599108027 -14114.0,0.021455475860387898 -14115.0,0.021448066681149593 -14116.0,0.021440660060509258 -14117.0,0.021433255997583337 -14118.0,0.021425854491488587 -14119.0,0.02141845554134205 -14120.0,0.021411059146261086 -14121.0,0.021403665305363365 -14122.0,0.021396274017766864 -14123.0,0.021388885282589833 -14124.0,0.021381499098950867 -14125.0,0.021374115465968842 -14126.0,0.021366734382762955 -14127.0,0.02135935584845268 -14128.0,0.021351979862157817 -14129.0,0.02134460642299847 -14130.0,0.02133723553009505 -14131.0,0.02132986718256824 -14132.0,0.02132250137953906 -14133.0,0.021315138120128828 -14134.0,0.02130777740345916 -14135.0,0.021300419228651977 -14136.0,0.021293063594829496 -14137.0,0.021285710501114243 -14138.0,0.021278359946629057 -14139.0,0.02127101193049707 -14140.0,0.021263666451841703 -14141.0,0.021256323509786706 -14142.0,0.021248983103456114 -14143.0,0.021241645231974287 -14144.0,0.02123430989446584 -14145.0,0.021226977090055745 -14146.0,0.02121964681786924 -14147.0,0.021212319077031888 -14148.0,0.02120499386666953 -14149.0,0.021197671185908328 -14150.0,0.021190351033874736 -14151.0,0.021183033409695518 -14152.0,0.021175718312497743 -14153.0,0.021168405741408755 -14154.0,0.021161095695556225 -14155.0,0.02115378817406812 -14156.0,0.021146483176072716 -14157.0,0.021139180700698555 -14158.0,0.021131880747074522 -14159.0,0.021124583314329783 -14160.0,0.021117288401593815 -14161.0,0.021109996007996373 -14162.0,0.021102706132667532 -14163.0,0.021095418774737668 -14164.0,0.021088133933337458 -14165.0,0.021080851607597855 -14166.0,0.021073571796650144 -14167.0,0.021066294499625892 -14168.0,0.021059019715656983 -14169.0,0.02105174744387557 -14170.0,0.02104447768341413 -14171.0,0.021037210433405437 -14172.0,0.021029945692982558 -14173.0,0.021022683461278873 -14174.0,0.021015423737428034 -14175.0,0.021008166520564014 -14176.0,0.021000911809821086 -14177.0,0.020993659604333817 -14178.0,0.020986409903237063 -14179.0,0.020979162705665987 -14180.0,0.02097191801075606 -14181.0,0.020964675817643046 -14182.0,0.020957436125462987 -14183.0,0.02095019893335225 -14184.0,0.02094296424044749 -14185.0,0.020935732045885672 -14186.0,0.02092850234880403 -14187.0,0.02092127514834012 -14188.0,0.020914050443631794 -14189.0,0.020906828233817194 -14190.0,0.02089960851803477 -14191.0,0.020892391295423248 -14192.0,0.020885176565121677 -14193.0,0.020877964326269385 -14194.0,0.020870754578006023 -14195.0,0.020863547319471494 -14196.0,0.020856342549806037 -14197.0,0.020849140268150178 -14198.0,0.020841940473644745 -14199.0,0.020834743165430835 -14200.0,0.02082754834264987 -14201.0,0.020820356004443562 -14202.0,0.02081316614995393 -14203.0,0.02080597877832325 -14204.0,0.02079879388869414 -14205.0,0.020791611480209485 -14206.0,0.020784431552012494 -14207.0,0.02077725410324663 -14208.0,0.020770079133055685 -14209.0,0.020762906640583743 -14210.0,0.020755736624975173 -14211.0,0.020748569085374653 -14212.0,0.020741404020927133 -14213.0,0.02073424143077788 -14214.0,0.020727081314072446 -14215.0,0.0207199236699567 -14216.0,0.020712768497576757 -14217.0,0.020705615796079078 -14218.0,0.020698465564610385 -14219.0,0.02069131780231773 -14220.0,0.02068417250834841 -14221.0,0.020677029681850055 -14222.0,0.02066988932197058 -14223.0,0.020662751427858197 -14224.0,0.020655615998661392 -14225.0,0.020648483033528967 -14226.0,0.020641352531610015 -14227.0,0.020634224492053918 -14228.0,0.02062709891401036 -14229.0,0.020619975796629293 -14230.0,0.020612855139060995 -14231.0,0.020605736940456018 -14232.0,0.020598621199965222 -14233.0,0.020591507916739738 -14234.0,0.020584397089931008 -14235.0,0.020577288718690762 -14236.0,0.020570182802171034 -14237.0,0.020563079339524122 -14238.0,0.020555978329902642 -14239.0,0.020548879772459495 -14240.0,0.020541783666347888 -14241.0,0.020534690010721286 -14242.0,0.020527598804733475 -14243.0,0.02052051004753853 -14244.0,0.020513423738290824 -14245.0,0.020506339876144985 -14246.0,0.02049925846025598 -14247.0,0.020492179489779036 -14248.0,0.020485102963869694 -14249.0,0.02047802888168378 -14250.0,0.020470957242377394 -14251.0,0.020463888045106942 -14252.0,0.020456821289029127 -14253.0,0.020449756973300943 -14254.0,0.02044269509707965 -14255.0,0.02043563565952283 -14256.0,0.02042857865978834 -14257.0,0.020421524097034342 -14258.0,0.02041447197041926 -14259.0,0.020407422279101833 -14260.0,0.02040037502224109 -14261.0,0.02039333019899635 -14262.0,0.020386287808527196 -14263.0,0.020379247849993537 -14264.0,0.020372210322555553 -14265.0,0.020365175225373722 -14266.0,0.020358142557608816 -14267.0,0.020351112318421866 -14268.0,0.020344084506974232 -14269.0,0.020337059122427545 -14270.0,0.020330036163943736 -14271.0,0.020323015630684997 -14272.0,0.02031599752181384 -14273.0,0.020308981836493063 -14274.0,0.020301968573885745 -14275.0,0.020294957733155237 -14276.0,0.020287949313465215 -14277.0,0.020280943313979616 -14278.0,0.02027393973386269 -14279.0,0.02026693857227894 -14280.0,0.020259939828393192 -14281.0,0.02025294350137054 -14282.0,0.02024594959037639 -14283.0,0.020238958094576393 -14284.0,0.020231969013136532 -14285.0,0.020224982345223054 -14286.0,0.020217998090002503 -14287.0,0.020211016246641716 -14288.0,0.020204036814307793 -14289.0,0.02019705979216815 -14290.0,0.020190085179390475 -14291.0,0.020183112975142758 -14292.0,0.02017614317859325 -14293.0,0.02016917578891051 -14294.0,0.020162210805263384 -14295.0,0.020155248226821004 -14296.0,0.02014828805275277 -14297.0,0.020141330282228396 -14298.0,0.020134374914417868 -14299.0,0.020127421948491465 -14300.0,0.02012047138361974 -14301.0,0.020113523218973545 -14302.0,0.020106577453724017 -14303.0,0.020099634087042573 -14304.0,0.020092693118100934 -14305.0,0.02008575454607107 -14306.0,0.020078818370125272 -14307.0,0.020071884589436106 -14308.0,0.020064953203176427 -14309.0,0.02005802421051936 -14310.0,0.02005109761063833 -14311.0,0.020044173402707043 -14312.0,0.02003725158589951 -14313.0,0.02003033215938998 -14314.0,0.020023415122353026 -14315.0,0.0200165004739635 -14316.0,0.020009588213396545 -14317.0,0.020002678339827558 -14318.0,0.01999577085243225 -14319.0,0.01998886575038661 -14320.0,0.019981963032866916 -14321.0,0.01997506269904971 -14322.0,0.019968164748111836 -14323.0,0.019961269179230426 -14324.0,0.01995437599158288 -14325.0,0.01994748518434691 -14326.0,0.019940596756700468 -14327.0,0.019933710707821826 -14328.0,0.019926827036889527 -14329.0,0.01991994574308241 -14330.0,0.019913066825579567 -14331.0,0.019906190283560405 -14332.0,0.0198993161162046 -14333.0,0.019892444322692125 -14334.0,0.019885574902203208 -14335.0,0.019878707853918383 -14336.0,0.019871843177018463 -14337.0,0.01986498087068455 -14338.0,0.019858120934098007 -14339.0,0.019851263366440497 -14340.0,0.019844408166893965 -14341.0,0.019837555334640634 -14342.0,0.01983070486886302 -14343.0,0.0198238567687439 -14344.0,0.019817011033466347 -14345.0,0.019810167662213718 -14346.0,0.01980332665416966 -14347.0,0.01979648800851807 -14348.0,0.019789651724443153 -14349.0,0.019782817801129397 -14350.0,0.01977598623776157 -14351.0,0.0197691570335247 -14352.0,0.019762330187604118 -14353.0,0.019755505699185435 -14354.0,0.019748683567454548 -14355.0,0.01974186379159761 -14356.0,0.019735046370801073 -14357.0,0.019728231304251675 -14358.0,0.019721418591136426 -14359.0,0.01971460823064263 -14360.0,0.019707800221957842 -14361.0,0.019700994564269922 -14362.0,0.019694191256767007 -14363.0,0.019687390298637523 -14364.0,0.019680591689070145 -14365.0,0.019673795427253858 -14366.0,0.019667001512377918 -14367.0,0.019660209943631865 -14368.0,0.019653420720205504 -14369.0,0.019646633841288935 -14370.0,0.019639849306072533 -14371.0,0.01963306711374696 -14372.0,0.019626287263503135 -14373.0,0.019619509754532277 -14374.0,0.019612734586025884 -14375.0,0.01960596175717573 -14376.0,0.019599191267173854 -14377.0,0.01959242311521259 -14378.0,0.01958565730048455 -14379.0,0.01957889382218262 -14380.0,0.019572132679499973 -14381.0,0.019565373871630043 -14382.0,0.019558617397766556 -14383.0,0.019551863257103518 -14384.0,0.019545111448835216 -14385.0,0.01953836197215619 -14386.0,0.019531614826261288 -14387.0,0.01952487001034562 -14388.0,0.019518127523604593 -14389.0,0.01951138736523386 -14390.0,0.019504649534429375 -14391.0,0.01949791403038736 -14392.0,0.01949118085230434 -14393.0,0.019484449999377065 -14394.0,0.019477721470802605 -14395.0,0.019470995265778304 -14396.0,0.019464271383501763 -14397.0,0.01945754982317089 -14398.0,0.019450830583983832 -14399.0,0.019444113665139037 -14400.0,0.01943739906583523 -14401.0,0.019430686785271416 -14402.0,0.019423976822646852 -14403.0,0.019417269177161096 -14404.0,0.019410563848013974 -14405.0,0.0194038608344056 -14406.0,0.019397160135536336 -14407.0,0.019390461750606842 -14408.0,0.019383765678818055 -14409.0,0.01937707191937119 -14410.0,0.019370380471467708 -14411.0,0.01936369133430938 -14412.0,0.019357004507098246 -14413.0,0.019350319989036618 -14414.0,0.019343637779327065 -14415.0,0.01933695787717246 -14416.0,0.019330280281775938 -14417.0,0.01932360499234091 -14418.0,0.01931693200807107 -14419.0,0.019310261328170365 -14420.0,0.019303592951843036 -14421.0,0.0192969268782936 -14422.0,0.019290263106726848 -14423.0,0.019283601636347826 -14424.0,0.019276942466361875 -14425.0,0.019270285595974605 -14426.0,0.019263631024391912 -14427.0,0.01925697875081993 -14428.0,0.019250328774465107 -14429.0,0.019243681094534146 -14430.0,0.019237035710234038 -14431.0,0.019230392620772013 -14432.0,0.019223751825355618 -14433.0,0.019217113323192644 -14434.0,0.019210477113491175 -14435.0,0.019203843195459563 -14436.0,0.019197211568306415 -14437.0,0.019190582231240632 -14438.0,0.019183955183471386 -14439.0,0.019177330424208126 -14440.0,0.019170707952660546 -14441.0,0.019164087768038646 -14442.0,0.019157469869552687 -14443.0,0.01915085425641321 -14444.0,0.019144240927830996 -14445.0,0.019137629883017142 -14446.0,0.019131021121182992 -14447.0,0.01912441464154018 -14448.0,0.019117810443300586 -14449.0,0.019111208525676382 -14450.0,0.01910460888788001 -14451.0,0.01909801152912419 -14452.0,0.019091416448621886 -14453.0,0.01908482364558636 -14454.0,0.019078233119231146 -14455.0,0.019071644868770034 -14456.0,0.019065058893417107 -14457.0,0.019058475192386685 -14458.0,0.019051893764893395 -14459.0,0.019045314610152117 -14460.0,0.019038737727378015 -14461.0,0.019032163115786496 -14462.0,0.01902559077459327 -14463.0,0.019019020703014297 -14464.0,0.019012452900265833 -14465.0,0.019005887365564363 -14466.0,0.01899932409812668 -14467.0,0.018992763097169827 -14468.0,0.018986204361911143 -14469.0,0.018979647891568193 -14470.0,0.01897309368535885 -14471.0,0.018966541742501244 -14472.0,0.018959992062213778 -14473.0,0.01895344464371513 -14474.0,0.01894689948622422 -14475.0,0.018940356588960275 -14476.0,0.01893381595114277 -14477.0,0.018927277571991464 -14478.0,0.018920741450726357 -14479.0,0.018914207586567748 -14480.0,0.018907675978736195 -14481.0,0.018901146626452533 -14482.0,0.018894619528937843 -14483.0,0.01888809468541349 -14484.0,0.018881572095101117 -14485.0,0.018875051757222632 -14486.0,0.01886853367100019 -14487.0,0.018862017835656237 -14488.0,0.018855504250413484 -14489.0,0.018848992914494912 -14490.0,0.018842483827123755 -14491.0,0.01883597698752353 -14492.0,0.01882947239491802 -14493.0,0.018822970048531274 -14494.0,0.018816469947587622 -14495.0,0.018809972091311626 -14496.0,0.018803476478928154 -14497.0,0.01879698310966232 -14498.0,0.018790491982739528 -14499.0,0.018784003097385413 -14500.0,0.018777516452825903 -14501.0,0.018771032048287197 -14502.0,0.018764549882995755 -14503.0,0.018758069956178288 -14504.0,0.018751592267061797 -14505.0,0.018745116814873536 -14506.0,0.018738643598841045 -14507.0,0.018732172618192097 -14508.0,0.01872570387215476 -14509.0,0.01871923735995736 -14510.0,0.018712773080828488 -14511.0,0.018706311033997013 -14512.0,0.018699851218692044 -14513.0,0.018693393634142973 -14514.0,0.018686938279579467 -14515.0,0.018680485154231454 -14516.0,0.0186740342573291 -14517.0,0.018667585588102883 -14518.0,0.01866113914578351 -14519.0,0.01865469492960198 -14520.0,0.018648252938789533 -14521.0,0.01864181317257769 -14522.0,0.018635375630198233 -14523.0,0.018628940310883222 -14524.0,0.018622507213864953 -14525.0,0.01861607633837601 -14526.0,0.018609647683649238 -14527.0,0.018603221248917754 -14528.0,0.01859679703341492 -14529.0,0.018590375036374368 -14530.0,0.018583955257030015 -14531.0,0.01857753769461602 -14532.0,0.018571122348366824 -14533.0,0.01856470921751711 -14534.0,0.018558298301301845 -14535.0,0.01855188959895625 -14536.0,0.018545483109715828 -14537.0,0.01853907883281631 -14538.0,0.018532676767493723 -14539.0,0.018526276912984346 -14540.0,0.01851987926852473 -14541.0,0.01851348383335167 -14542.0,0.01850709060670224 -14543.0,0.018500699587813783 -14544.0,0.018494310775923898 -14545.0,0.018487924170270433 -14546.0,0.018481539770091517 -14547.0,0.018475157574625544 -14548.0,0.01846877758311116 -14549.0,0.01846239979478729 -14550.0,0.01845602420889309 -14551.0,0.018449650824668005 -14552.0,0.018443279641351746 -14553.0,0.01843691065818428 -14554.0,0.01843054387440582 -14555.0,0.018424179289256857 -14556.0,0.01841781690197815 -14557.0,0.01841145671181071 -14558.0,0.01840509871799581 -14559.0,0.018398742919774988 -14560.0,0.018392389316390045 -14561.0,0.018386037907083052 -14562.0,0.018379688691096314 -14563.0,0.018373341667672422 -14564.0,0.018366996836054226 -14565.0,0.018360654195484844 -14566.0,0.018354313745207622 -14567.0,0.018347975484466206 -14568.0,0.018341639412504482 -14569.0,0.018335305528566603 -14570.0,0.018328973831896994 -14571.0,0.018322644321740314 -14572.0,0.018316316997341507 -14573.0,0.018309991857945764 -14574.0,0.018303668902798546 -14575.0,0.01829734813114557 -14576.0,0.018291029542232832 -14577.0,0.018284713135306534 -14578.0,0.018278398909613195 -14579.0,0.018272086864399573 -14580.0,0.018265776998912683 -14581.0,0.01825946931239981 -14582.0,0.018253163804108487 -14583.0,0.01824686047328652 -14584.0,0.01824055931918198 -14585.0,0.018234260341043147 -14586.0,0.018227963538118626 -14587.0,0.01822166890965725 -14588.0,0.01821537645490811 -14589.0,0.01820908617312057 -14590.0,0.01820279806354424 -14591.0,0.018196512125428995 -14592.0,0.018190228358024974 -14593.0,0.01818394676058258 -14594.0,0.018177667332352432 -14595.0,0.018171390072585458 -14596.0,0.018165114980532825 -14597.0,0.018158842055445962 -14598.0,0.018152571296576554 -14599.0,0.018146302703176548 -14600.0,0.01814003627449814 -14601.0,0.018133772009793814 -14602.0,0.018127509908316252 -14603.0,0.018121249969318447 -14604.0,0.018114992192053637 -14605.0,0.018108736575775313 -14606.0,0.018102483119737226 -14607.0,0.018096231823193382 -14608.0,0.018089982685398052 -14609.0,0.018083735705605754 -14610.0,0.01807749088307129 -14611.0,0.01807124821704966 -14612.0,0.01806500770679618 -14613.0,0.018058769351566403 -14614.0,0.018052533150616137 -14615.0,0.01804629910320145 -14616.0,0.01804006720857866 -14617.0,0.018033837466004354 -14618.0,0.018027609874735385 -14619.0,0.01802138443402881 -14620.0,0.018015161143142 -14621.0,0.01800894000133256 -14622.0,0.018002721007858352 -14623.0,0.017996504161977497 -14624.0,0.01799028946294837 -14625.0,0.017984076910029605 -14626.0,0.017977866502480084 -14627.0,0.017971658239558975 -14628.0,0.017965452120525634 -14629.0,0.017959248144639745 -14630.0,0.017953046311161208 -14631.0,0.0179468466193502 -14632.0,0.017940649068467134 -14633.0,0.01793445365777269 -14634.0,0.0179282603865278 -14635.0,0.017922069253993672 -14636.0,0.017915880259431714 -14637.0,0.01790969340210364 -14638.0,0.017903508681271406 -14639.0,0.017897326096197215 -14640.0,0.01789114564614353 -14641.0,0.017884967330373074 -14642.0,0.01787879114814881 -14643.0,0.017872617098733976 -14644.0,0.01786644518139206 -14645.0,0.017860275395386767 -14646.0,0.017854107739982104 -14647.0,0.017847942214442317 -14648.0,0.0178417788180319 -14649.0,0.017835617550015604 -14650.0,0.017829458409658435 -14651.0,0.017823301396225656 -14652.0,0.017817146508982796 -14653.0,0.017810993747195584 -14654.0,0.017804843110130062 -14655.0,0.0177986945970525 -14656.0,0.017792548207229433 -14657.0,0.017786403939927635 -14658.0,0.017780261794414137 -14659.0,0.01777412176995623 -14660.0,0.017767983865821468 -14661.0,0.017761848081277617 -14662.0,0.01775571441559273 -14663.0,0.017749582868035112 -14664.0,0.017743453437873313 -14665.0,0.017737326124376136 -14666.0,0.017731200926812636 -14667.0,0.01772507784445212 -14668.0,0.017718956876564156 -14669.0,0.017712838022418565 -14670.0,0.017706721281285386 -14671.0,0.01770060665243495 -14672.0,0.017694494135137826 -14673.0,0.017688383728664835 -14674.0,0.017682275432287054 -14675.0,0.0176761692452758 -14676.0,0.01767006516690266 -14677.0,0.01766396319643947 -14678.0,0.017657863333158278 -14679.0,0.017651765576331434 -14680.0,0.01764566992523152 -14681.0,0.017639576379131362 -14682.0,0.017633484937304055 -14683.0,0.01762739559902293 -14684.0,0.01762130836356157 -14685.0,0.017615223230193815 -14686.0,0.017609140198193773 -14687.0,0.017603059266835742 -14688.0,0.017596980435394333 -14689.0,0.017590903703144384 -14690.0,0.01758482906936099 -14691.0,0.017578756533319483 -14692.0,0.017572686094295457 -14693.0,0.017566617751564758 -14694.0,0.017560551504403485 -14695.0,0.017554487352087953 -14696.0,0.017548425293894766 -14697.0,0.017542365329100765 -14698.0,0.017536307456983043 -14699.0,0.017530251676818934 -14700.0,0.01752419798788603 -14701.0,0.017518146389462176 -14702.0,0.017512096880825456 -14703.0,0.01750604946125422 -14704.0,0.017500004130027027 -14705.0,0.01749396088642273 -14706.0,0.01748791972972041 -14707.0,0.017481880659199405 -14708.0,0.017475843674139298 -14709.0,0.017469808773819918 -14710.0,0.017463775957521348 -14711.0,0.017457745224523927 -14712.0,0.017451716574108208 -14713.0,0.017445690005555032 -14714.0,0.017439665518145468 -14715.0,0.017433643111160843 -14716.0,0.01742762278388273 -14717.0,0.017421604535592942 -14718.0,0.017415588365573546 -14719.0,0.017409574273106864 -14720.0,0.017403562257475465 -14721.0,0.017397552317962136 -14722.0,0.017391544453849946 -14723.0,0.0173855386644222 -14724.0,0.017379534948962456 -14725.0,0.01737353330675451 -14726.0,0.017367533737082413 -14727.0,0.01736153623923046 -14728.0,0.0173555408124832 -14729.0,0.017349547456125405 -14730.0,0.017343556169442116 -14731.0,0.017337566951718623 -14732.0,0.017331579802240454 -14733.0,0.017325594720293384 -14734.0,0.01731961170516344 -14735.0,0.017313630756136886 -14736.0,0.01730765187250026 -14737.0,0.01730167505354029 -14738.0,0.017295700298544 -14739.0,0.017289727606798647 -14740.0,0.017283756977591734 -14741.0,0.017277788410211006 -14742.0,0.01727182190394446 -14743.0,0.01726585745808033 -14744.0,0.017259895071907103 -14745.0,0.01725393474471353 -14746.0,0.01724797647578855 -14747.0,0.0172420202644214 -14748.0,0.017236066109901554 -14749.0,0.01723011401151872 -14750.0,0.017224163968562856 -14751.0,0.017218215980324168 -14752.0,0.017212270046093103 -14753.0,0.01720632616516037 -14754.0,0.017200384336816876 -14755.0,0.01719444456035382 -14756.0,0.017188506835062626 -14757.0,0.017182571160234972 -14758.0,0.017176637535162777 -14759.0,0.017170705959138194 -14760.0,0.01716477643145364 -14761.0,0.017158848951401757 -14762.0,0.01715292351827546 -14763.0,0.017147000131367853 -14764.0,0.01714107878997234 -14765.0,0.017135159493382547 -14766.0,0.01712924224089234 -14767.0,0.01712332703179584 -14768.0,0.017117413865387402 -14769.0,0.01711150274096163 -14770.0,0.017105593657813382 -14771.0,0.01709968661523772 -14772.0,0.017093781612529994 -14773.0,0.01708787864898578 -14774.0,0.017081977723900892 -14775.0,0.017076078836571397 -14776.0,0.0170701819862936 -14777.0,0.01706428717236405 -14778.0,0.017058394394079537 -14779.0,0.017052503650737114 -14780.0,0.017046614941634026 -14781.0,0.017040728266067805 -14782.0,0.017034843623336217 -14783.0,0.01702896101273727 -14784.0,0.017023080433569204 -14785.0,0.017017201885130517 -14786.0,0.017011325366719936 -14787.0,0.017005450877636448 -14788.0,0.016999578417179247 -14789.0,0.016993707984647798 -14790.0,0.016987839579341805 -14791.0,0.01698197320056121 -14792.0,0.0169761088476062 -14793.0,0.016970246519777195 -14794.0,0.016964386216374864 -14795.0,0.016958527936700114 -14796.0,0.016952671680054116 -14797.0,0.016946817445738224 -14798.0,0.01694096523305409 -14799.0,0.016935115041303583 -14800.0,0.016929266869788823 -14801.0,0.016923420717812162 -14802.0,0.0169175765846762 -14803.0,0.016911734469683772 -14804.0,0.016905894372137974 -14805.0,0.016900056291342093 -14806.0,0.016894220226599702 -14807.0,0.016888386177214606 -14808.0,0.01688255414249084 -14809.0,0.016876724121732686 -14810.0,0.016870896114244666 -14811.0,0.016865070119331544 -14812.0,0.016859246136298328 -14813.0,0.01685342416445024 -14814.0,0.01684760420309277 -14815.0,0.01684178625153164 -14816.0,0.016835970309072808 -14817.0,0.01683015637502248 -14818.0,0.016824344448687092 -14819.0,0.016818534529373326 -14820.0,0.0168127266163881 -14821.0,0.016806920709038588 -14822.0,0.016801116806632155 -14823.0,0.016795314908476456 -14824.0,0.016789515013879364 -14825.0,0.016783717122148996 -14826.0,0.016777921232593702 -14827.0,0.016772127344522082 -14828.0,0.016766335457242963 -14829.0,0.016760545570065427 -14830.0,0.016754757682298758 -14831.0,0.016748971793252517 -14832.0,0.016743187902236487 -14833.0,0.016737406008560694 -14834.0,0.016731626111535402 -14835.0,0.016725848210471107 -14836.0,0.01672007230467855 -14837.0,0.016714298393468708 -14838.0,0.01670852647615281 -14839.0,0.016702756552042276 -14840.0,0.016696988620448817 -14841.0,0.016691222680684355 -14842.0,0.016685458732061058 -14843.0,0.016679696773891327 -14844.0,0.016673936805487805 -14845.0,0.016668178826163373 -14846.0,0.01666242283523115 -14847.0,0.01665666883200447 -14848.0,0.01665091681579693 -14849.0,0.016645166785922358 -14850.0,0.01663941874169482 -14851.0,0.016633672682428616 -14852.0,0.01662792860743828 -14853.0,0.016622186516038584 -14854.0,0.016616446407544547 -14855.0,0.01661070828127142 -14856.0,0.016604972136534665 -14857.0,0.016599237972650012 -14858.0,0.01659350578893342 -14859.0,0.016587775584701082 -14860.0,0.016582047359269422 -14861.0,0.016576321111955106 -14862.0,0.016570596842075035 -14863.0,0.01656487454894636 -14864.0,0.016559154231886426 -14865.0,0.016553435890212853 -14866.0,0.016547719523243486 -14867.0,0.016542005130296404 -14868.0,0.016536292710689918 -14869.0,0.016530582263742582 -14870.0,0.01652487378877318 -14871.0,0.016519167285100732 -14872.0,0.016513462752044513 -14873.0,0.016507760188923977 -14874.0,0.01650205959505887 -14875.0,0.01649636096976915 -14876.0,0.01649066431237501 -14877.0,0.016484969622196886 -14878.0,0.016479276898555443 -14879.0,0.016473586140771577 -14880.0,0.016467897348166435 -14881.0,0.016462210520061363 -14882.0,0.016456525655777973 -14883.0,0.016450842754638102 -14884.0,0.016445161815963828 -14885.0,0.016439482839077448 -14886.0,0.016433805823301506 -14887.0,0.016428130767958772 -14888.0,0.016422457672372274 -14889.0,0.016416786535865216 -14890.0,0.016411117357761094 -14891.0,0.016405450137383613 -14892.0,0.01639978487405672 -14893.0,0.016394121567104583 -14894.0,0.016388460215851615 -14895.0,0.016382800819622453 -14896.0,0.01637714337774198 -14897.0,0.016371487889535317 -14898.0,0.01636583435432777 -14899.0,0.016360182771444937 -14900.0,0.01635453314021262 -14901.0,0.01634888545995686 -14902.0,0.01634323973000393 -14903.0,0.016337595949680338 -14904.0,0.016331954118312817 -14905.0,0.016326314235228356 -14906.0,0.01632067629975413 -14907.0,0.016315040311217586 -14908.0,0.016309406268946395 -14909.0,0.01630377417226845 -14910.0,0.01629814402051189 -14911.0,0.016292515813005077 -14912.0,0.016286889549076606 -14913.0,0.016281265228055307 -14914.0,0.016275642849270248 -14915.0,0.016270022412050698 -14916.0,0.016264403915726193 -14917.0,0.01625878735962648 -14918.0,0.016253172743081558 -14919.0,0.016247560065421635 -14920.0,0.01624194932597716 -14921.0,0.016236340524078813 -14922.0,0.016230733659057524 -14923.0,0.016225128730244398 -14924.0,0.01621952573697083 -14925.0,0.01621392467856842 -14926.0,0.016208325554369005 -14927.0,0.016202728363704646 -14928.0,0.016197133105907643 -14929.0,0.01619153978031052 -14930.0,0.016185948386246034 -14931.0,0.01618035892304719 -14932.0,0.016174771390047173 -14933.0,0.016169185786579447 -14934.0,0.01616360211197769 -14935.0,0.01615802036557581 -14936.0,0.01615244054670795 -14937.0,0.016146862654708473 -14938.0,0.01614128668891198 -14939.0,0.016135712648653308 -14940.0,0.016130140533267494 -14941.0,0.016124570342089833 -14942.0,0.016119002074455845 -14943.0,0.016113435729701274 -14944.0,0.0161078713071621 -14945.0,0.016102308806174522 -14946.0,0.016096748226074983 -14947.0,0.016091189566200134 -14948.0,0.016085632825886893 -14949.0,0.016080078004472347 -14950.0,0.01607452510129386 -14951.0,0.016068974115689014 -14952.0,0.016063425046995615 -14953.0,0.0160578778945517 -14954.0,0.01605233265769554 -14955.0,0.01604678933576562 -14956.0,0.016041247928100678 -14957.0,0.016035708434039637 -14958.0,0.01603017085292169 -14959.0,0.01602463518408625 -14960.0,0.01601910142687294 -14961.0,0.016013569580621636 -14962.0,0.016008039644672418 -14963.0,0.016002511618365613 -14964.0,0.015996985501041776 -14965.0,0.015991461292041657 -14966.0,0.01598593899070627 -14967.0,0.015980418596376847 -14968.0,0.015974900108394842 -14969.0,0.015969383526101943 -14970.0,0.015963868848840063 -14971.0,0.01595835607595134 -14972.0,0.015952845206778133 -14973.0,0.01594733624066306 -14974.0,0.015941829176948908 -14975.0,0.01593632401497874 -14976.0,0.01593082075409583 -14977.0,0.01592531939364368 -14978.0,0.015919819932966015 -14979.0,0.015914322371406792 -14980.0,0.015908826708310193 -14981.0,0.015903332943020636 -14982.0,0.015897841074882728 -14983.0,0.015892351103241345 -14984.0,0.015886863027441574 -14985.0,0.015881376846828724 -14986.0,0.015875892560748336 -14987.0,0.015870410168546175 -14988.0,0.015864929669568227 -14989.0,0.015859451063160716 -14990.0,0.015853974348670093 -14991.0,0.015848499525443 -14992.0,0.015843026592826343 -14993.0,0.01583755555016724 -14994.0,0.01583208639681304 -14995.0,0.01582661913211131 -14996.0,0.015821153755409847 -14997.0,0.015815690266056667 -14998.0,0.015810228663400032 -14999.0,0.015804768946788388 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516202500_theo_VPR_VPR.png b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516202500_theo_VPR_VPR.png deleted file mode 100644 index e46de97..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516202500_theo_VPR_VPR.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516203000_theo_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516203000_theo_VPR_VPR.csv deleted file mode 100644 index 5a6f246..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516203000_theo_VPR_VPR.csv +++ /dev/null @@ -1,15008 +0,0 @@ -# Height Profile -# ============== -# -# Datatype (Unit) : normalized reflectivity (-) -# Fill value : -9999.0 -# Time : 2020-05-16 20:30:00 -# Sector specification: None -Altitude [m MSL],Znorm -0.0,1.0 -1.0,1.0 -2.0,1.0 -3.0,1.0 -4.0,1.0 -5.0,1.0 -6.0,1.0 -7.0,1.0 -8.0,1.0 -9.0,1.0 -10.0,1.0 -11.0,1.0 -12.0,1.0 -13.0,1.0 -14.0,1.0 -15.0,1.0 -16.0,1.0 -17.0,1.0 -18.0,1.0 -19.0,1.0 -20.0,1.0 -21.0,1.0 -22.0,1.0 -23.0,1.0 -24.0,1.0 -25.0,1.0 -26.0,1.0 -27.0,1.0 -28.0,1.0 -29.0,1.0 -30.0,1.0 -31.0,1.0 -32.0,1.0 -33.0,1.0 -34.0,1.0 -35.0,1.0 -36.0,1.0 -37.0,1.0 -38.0,1.0 -39.0,1.0 -40.0,1.0 -41.0,1.0 -42.0,1.0 -43.0,1.0 -44.0,1.0 -45.0,1.0 -46.0,1.0 -47.0,1.0 -48.0,1.0 -49.0,1.0 -50.0,1.0 -51.0,1.0 -52.0,1.0 -53.0,1.0 -54.0,1.0 -55.0,1.0 -56.0,1.0 -57.0,1.0 -58.0,1.0 -59.0,1.0 -60.0,1.0 -61.0,1.0 -62.0,1.0 -63.0,1.0 -64.0,1.0 -65.0,1.0 -66.0,1.0 -67.0,1.0 -68.0,1.0 -69.0,1.0 -70.0,1.0 -71.0,1.0 -72.0,1.0 -73.0,1.0 -74.0,1.0 -75.0,1.0 -76.0,1.0 -77.0,1.0 -78.0,1.0 -79.0,1.0 -80.0,1.0 -81.0,1.0 -82.0,1.0 -83.0,1.0 -84.0,1.0 -85.0,1.0 -86.0,1.0 -87.0,1.0 -88.0,1.0 -89.0,1.0 -90.0,1.0 -91.0,1.0 -92.0,1.0 -93.0,1.0 -94.0,1.0 -95.0,1.0 -96.0,1.0 -97.0,1.0 -98.0,1.0 -99.0,1.0 -100.0,1.0 -101.0,1.0 -102.0,1.0 -103.0,1.0 -104.0,1.0 -105.0,1.0 -106.0,1.0 -107.0,1.0 -108.0,1.0 -109.0,1.0 -110.0,1.0 -111.0,1.0 -112.0,1.0 -113.0,1.0 -114.0,1.0 -115.0,1.0 -116.0,1.0 -117.0,1.0 -118.0,1.0 -119.0,1.0 -120.0,1.0 -121.0,1.0 -122.0,1.0 -123.0,1.0 -124.0,1.0 -125.0,1.0 -126.0,1.0 -127.0,1.0 -128.0,1.0 -129.0,1.0 -130.0,1.0 -131.0,1.0 -132.0,1.0 -133.0,1.0 -134.0,1.0 -135.0,1.0 -136.0,1.0 -137.0,1.0 -138.0,1.0 -139.0,1.0 -140.0,1.0 -141.0,1.0 -142.0,1.0 -143.0,1.0 -144.0,1.0 -145.0,1.0 -146.0,1.0 -147.0,1.0 -148.0,1.0 -149.0,1.0 -150.0,1.0 -151.0,1.0 -152.0,1.0 -153.0,1.0 -154.0,1.0 -155.0,1.0 -156.0,1.0 -157.0,1.0 -158.0,1.0 -159.0,1.0 -160.0,1.0 -161.0,1.0 -162.0,1.0 -163.0,1.0 -164.0,1.0 -165.0,1.0 -166.0,1.0 -167.0,1.0 -168.0,1.0 -169.0,1.0 -170.0,1.0 -171.0,1.0 -172.0,1.0 -173.0,1.0 -174.0,1.0 -175.0,1.0 -176.0,1.0 -177.0,1.0 -178.0,1.0 -179.0,1.0 -180.0,1.0 -181.0,1.0 -182.0,1.0 -183.0,1.0 -184.0,1.0 -185.0,1.0 -186.0,1.0 -187.0,1.0 -188.0,1.0 -189.0,1.0 -190.0,1.0 -191.0,1.0 -192.0,1.0 -193.0,1.0 -194.0,1.0 -195.0,1.0 -196.0,1.0 -197.0,1.0 -198.0,1.0 -199.0,1.0 -200.0,1.0 -201.0,1.0 -202.0,1.0 -203.0,1.0 -204.0,1.0 -205.0,1.0 -206.0,1.0 -207.0,1.0 -208.0,1.0 -209.0,1.0 -210.0,1.0 -211.0,1.0 -212.0,1.0 -213.0,1.0 -214.0,1.0 -215.0,1.0 -216.0,1.0 -217.0,1.0 -218.0,1.0 -219.0,1.0 -220.0,1.0 -221.0,1.0 -222.0,1.0 -223.0,1.0 -224.0,1.0 -225.0,1.0 -226.0,1.0 -227.0,1.0 -228.0,1.0 -229.0,1.0 -230.0,1.0 -231.0,1.0 -232.0,1.0 -233.0,1.0 -234.0,1.0 -235.0,1.0 -236.0,1.0 -237.0,1.0 -238.0,1.0 -239.0,1.0 -240.0,1.0 -241.0,1.0 -242.0,1.0 -243.0,1.0 -244.0,1.0 -245.0,1.0 -246.0,1.0 -247.0,1.0 -248.0,1.0 -249.0,1.0 -250.0,1.0 -251.0,1.0 -252.0,1.0 -253.0,1.0 -254.0,1.0 -255.0,1.0 -256.0,1.0 -257.0,1.0 -258.0,1.0 -259.0,1.0 -260.0,1.0 -261.0,1.0 -262.0,1.0 -263.0,1.0 -264.0,1.0 -265.0,1.0 -266.0,1.0 -267.0,1.0 -268.0,1.0 -269.0,1.0 -270.0,1.0 -271.0,1.0 -272.0,1.0 -273.0,1.0 -274.0,1.0 -275.0,1.0 -276.0,1.0 -277.0,1.0 -278.0,1.0 -279.0,1.0 -280.0,1.0 -281.0,1.0 -282.0,1.0 -283.0,1.0 -284.0,1.0 -285.0,1.0 -286.0,1.0 -287.0,1.0 -288.0,1.0 -289.0,1.0 -290.0,1.0 -291.0,1.0 -292.0,1.0 -293.0,1.0 -294.0,1.0 -295.0,1.0 -296.0,1.0 -297.0,1.0 -298.0,1.0 -299.0,1.0 -300.0,1.0 -301.0,1.0 -302.0,1.0 -303.0,1.0 -304.0,1.0 -305.0,1.0 -306.0,1.0 -307.0,1.0 -308.0,1.0 -309.0,1.0 -310.0,1.0 -311.0,1.0 -312.0,1.0 -313.0,1.0 -314.0,1.0 -315.0,1.0 -316.0,1.0 -317.0,1.0 -318.0,1.0 -319.0,1.0 -320.0,1.0 -321.0,1.0 -322.0,1.0 -323.0,1.0 -324.0,1.0 -325.0,1.0 -326.0,1.0 -327.0,1.0 -328.0,1.0 -329.0,1.0 -330.0,1.0 -331.0,1.0 -332.0,1.0 -333.0,1.0 -334.0,1.0 -335.0,1.0 -336.0,1.0 -337.0,1.0 -338.0,1.0 -339.0,1.0 -340.0,1.0 -341.0,1.0 -342.0,1.0 -343.0,1.0 -344.0,1.0 -345.0,1.0 -346.0,1.0 -347.0,1.0 -348.0,1.0 -349.0,1.0 -350.0,1.0 -351.0,1.0 -352.0,1.0 -353.0,1.0 -354.0,1.0 -355.0,1.0 -356.0,1.0 -357.0,1.0 -358.0,1.0 -359.0,1.0 -360.0,1.0 -361.0,1.0 -362.0,1.0 -363.0,1.0 -364.0,1.0 -365.0,1.0 -366.0,1.0 -367.0,1.0 -368.0,1.0 -369.0,1.0 -370.0,1.0 -371.0,1.0 -372.0,1.0 -373.0,1.0 -374.0,1.0 -375.0,1.0 -376.0,1.0 -377.0,1.0 -378.0,1.0 -379.0,1.0 -380.0,1.0 -381.0,1.0 -382.0,1.0 -383.0,1.0 -384.0,1.0 -385.0,1.0 -386.0,1.0 -387.0,1.0 -388.0,1.0 -389.0,1.0 -390.0,1.0 -391.0,1.0 -392.0,1.0 -393.0,1.0 -394.0,1.0 -395.0,1.0 -396.0,1.0 -397.0,1.0 -398.0,1.0 -399.0,1.0 -400.0,1.0 -401.0,1.0 -402.0,1.0 -403.0,1.0 -404.0,1.0 -405.0,1.0 -406.0,1.0 -407.0,1.0 -408.0,1.0 -409.0,1.0 -410.0,1.0 -411.0,1.0 -412.0,1.0 -413.0,1.0 -414.0,1.0 -415.0,1.0 -416.0,1.0 -417.0,1.0 -418.0,1.0 -419.0,1.0 -420.0,1.0 -421.0,1.0 -422.0,1.0 -423.0,1.0 -424.0,1.0 -425.0,1.0 -426.0,1.0 -427.0,1.0 -428.0,1.0 -429.0,1.0 -430.0,1.0 -431.0,1.0 -432.0,1.0 -433.0,1.0 -434.0,1.0 -435.0,1.0 -436.0,1.0 -437.0,1.0 -438.0,1.0 -439.0,1.0 -440.0,1.0 -441.0,1.0 -442.0,1.0 -443.0,1.0 -444.0,1.0 -445.0,1.0 -446.0,1.0 -447.0,1.0 -448.0,1.0 -449.0,1.0 -450.0,1.0 -451.0,1.0 -452.0,1.0 -453.0,1.0 -454.0,1.0 -455.0,1.0 -456.0,1.0 -457.0,1.0 -458.0,1.0 -459.0,1.0 -460.0,1.0 -461.0,1.0 -462.0,1.0 -463.0,1.0 -464.0,1.0 -465.0,1.0 -466.0,1.0 -467.0,1.0 -468.0,1.0 -469.0,1.0 -470.0,1.0 -471.0,1.0 -472.0,1.0 -473.0,1.0 -474.0,1.0 -475.0,1.0 -476.0,1.0 -477.0,1.0 -478.0,1.0 -479.0,1.0 -480.0,1.0 -481.0,1.0 -482.0,1.0 -483.0,1.0 -484.0,1.0 -485.0,1.0 -486.0,1.0 -487.0,1.0 -488.0,1.0 -489.0,1.0 -490.0,1.0 -491.0,1.0 -492.0,1.0 -493.0,1.0 -494.0,1.0 -495.0,1.0 -496.0,1.0 -497.0,1.0 -498.0,1.0 -499.0,1.0 -500.0,1.0 -501.0,1.0 -502.0,1.0 -503.0,1.0 -504.0,1.0 -505.0,1.0 -506.0,1.0 -507.0,1.0 -508.0,1.0 -509.0,1.0 -510.0,1.0 -511.0,1.0 -512.0,1.0 -513.0,1.0 -514.0,1.0 -515.0,1.0 -516.0,1.0 -517.0,1.0 -518.0,1.0 -519.0,1.0 -520.0,1.0 -521.0,1.0 -522.0,1.0 -523.0,1.0 -524.0,1.0 -525.0,1.0 -526.0,1.0 -527.0,1.0 -528.0,1.0 -529.0,1.0 -530.0,1.0 -531.0,1.0 -532.0,1.0 -533.0,1.0 -534.0,1.0 -535.0,1.0 -536.0,1.0 -537.0,1.0 -538.0,1.0 -539.0,1.0 -540.0,1.0 -541.0,1.0 -542.0,1.0 -543.0,1.0 -544.0,1.0 -545.0,1.0 -546.0,1.0 -547.0,1.0 -548.0,1.0 -549.0,1.0 -550.0,1.0 -551.0,1.0 -552.0,1.0 -553.0,1.0 -554.0,1.0 -555.0,1.0 -556.0,1.0 -557.0,1.0 -558.0,1.0 -559.0,1.0 -560.0,1.0 -561.0,1.0 -562.0,1.0 -563.0,1.0 -564.0,1.0 -565.0,1.0 -566.0,1.0 -567.0,1.0 -568.0,1.0 -569.0,1.0 -570.0,1.0 -571.0,1.0 -572.0,1.0 -573.0,1.0 -574.0,1.0 -575.0,1.0 -576.0,1.0 -577.0,1.0 -578.0,1.0 -579.0,1.0 -580.0,1.0 -581.0,1.0 -582.0,1.0 -583.0,1.0 -584.0,1.0 -585.0,1.0 -586.0,1.0 -587.0,1.0 -588.0,1.0 -589.0,1.0 -590.0,1.0 -591.0,1.0 -592.0,1.0 -593.0,1.0 -594.0,1.0 -595.0,1.0 -596.0,1.0 -597.0,1.0 -598.0,1.0 -599.0,1.0 -600.0,1.0 -601.0,1.0 -602.0,1.0 -603.0,1.0 -604.0,1.0 -605.0,1.0 -606.0,1.0 -607.0,1.0 -608.0,1.0 -609.0,1.0 -610.0,1.0 -611.0,1.0 -612.0,1.0 -613.0,1.0 -614.0,1.0 -615.0,1.0 -616.0,1.0 -617.0,1.0 -618.0,1.0 -619.0,1.0 -620.0,1.0 -621.0,1.0 -622.0,1.0 -623.0,1.0 -624.0,1.0 -625.0,1.0 -626.0,1.0 -627.0,1.0 -628.0,1.0 -629.0,1.0 -630.0,1.0 -631.0,1.0 -632.0,1.0 -633.0,1.0 -634.0,1.0 -635.0,1.0 -636.0,1.0 -637.0,1.0 -638.0,1.0 -639.0,1.0 -640.0,1.0 -641.0,1.0 -642.0,1.0 -643.0,1.0 -644.0,1.0 -645.0,1.0 -646.0,1.0 -647.0,1.0 -648.0,1.0 -649.0,1.0 -650.0,1.0 -651.0,1.0 -652.0,1.0 -653.0,1.0 -654.0,1.0 -655.0,1.0 -656.0,1.0 -657.0,1.0 -658.0,1.0 -659.0,1.0 -660.0,1.0 -661.0,1.0 -662.0,1.0 -663.0,1.0 -664.0,1.0 -665.0,1.0 -666.0,1.0 -667.0,1.0 -668.0,1.0 -669.0,1.0 -670.0,1.0 -671.0,1.0 -672.0,1.0 -673.0,1.0 -674.0,1.0 -675.0,1.0 -676.0,1.0 -677.0,1.0 -678.0,1.0 -679.0,1.0 -680.0,1.0 -681.0,1.0 -682.0,1.0 -683.0,1.0 -684.0,1.0 -685.0,1.0 -686.0,1.0 -687.0,1.0 -688.0,1.0 -689.0,1.0 -690.0,1.0 -691.0,1.0 -692.0,1.0 -693.0,1.0 -694.0,1.0 -695.0,1.0 -696.0,1.0 -697.0,1.0 -698.0,1.0 -699.0,1.0 -700.0,1.0 -701.0,1.0 -702.0,1.0 -703.0,1.0 -704.0,1.0 -705.0,1.0 -706.0,1.0 -707.0,1.0 -708.0,1.0 -709.0,1.0 -710.0,1.0 -711.0,1.0 -712.0,1.0 -713.0,1.0 -714.0,1.0 -715.0,1.0 -716.0,1.0 -717.0,1.0 -718.0,1.0 -719.0,1.0 -720.0,1.0 -721.0,1.0 -722.0,1.0 -723.0,1.0 -724.0,1.0 -725.0,1.0 -726.0,1.0 -727.0,1.0 -728.0,1.0 -729.0,1.0 -730.0,1.0 -731.0,1.0 -732.0,1.0 -733.0,1.0 -734.0,1.0 -735.0,1.0 -736.0,1.0 -737.0,1.0 -738.0,1.0 -739.0,1.0 -740.0,1.0 -741.0,1.0 -742.0,1.0 -743.0,1.0 -744.0,1.0 -745.0,1.0 -746.0,1.0 -747.0,1.0 -748.0,1.0 -749.0,1.0 -750.0,1.0 -751.0,1.0 -752.0,1.0 -753.0,1.0 -754.0,1.0 -755.0,1.0 -756.0,1.0 -757.0,1.0 -758.0,1.0 -759.0,1.0 -760.0,1.0 -761.0,1.0 -762.0,1.0 -763.0,1.0 -764.0,1.0 -765.0,1.0 -766.0,1.0 -767.0,1.0 -768.0,1.0 -769.0,1.0 -770.0,1.0 -771.0,1.0 -772.0,1.0 -773.0,1.0 -774.0,1.0 -775.0,1.0 -776.0,1.0 -777.0,1.0 -778.0,1.0 -779.0,1.0 -780.0,1.0 -781.0,1.0 -782.0,1.0 -783.0,1.0 -784.0,1.0 -785.0,1.0 -786.0,1.0 -787.0,1.0 -788.0,1.0 -789.0,1.0 -790.0,1.0 -791.0,1.0 -792.0,1.0 -793.0,1.0 -794.0,1.0 -795.0,1.0 -796.0,1.0 -797.0,1.0 -798.0,1.0 -799.0,1.0 -800.0,1.0 -801.0,1.0 -802.0,1.0 -803.0,1.0 -804.0,1.0 -805.0,1.0 -806.0,1.0 -807.0,1.0 -808.0,1.0 -809.0,1.0 -810.0,1.0 -811.0,1.0 -812.0,1.0 -813.0,1.0 -814.0,1.0 -815.0,1.0 -816.0,1.0 -817.0,1.0 -818.0,1.0 -819.0,1.0 -820.0,1.0 -821.0,1.0 -822.0,1.0 -823.0,1.0 -824.0,1.0 -825.0,1.0 -826.0,1.0 -827.0,1.0 -828.0,1.0 -829.0,1.0 -830.0,1.0 -831.0,1.0 -832.0,1.0 -833.0,1.0 -834.0,1.0 -835.0,1.0 -836.0,1.0 -837.0,1.0 -838.0,1.0 -839.0,1.0 -840.0,1.0 -841.0,1.0 -842.0,1.0 -843.0,1.0 -844.0,1.0 -845.0,1.0 -846.0,1.0 -847.0,1.0 -848.0,1.0 -849.0,1.0 -850.0,1.0 -851.0,1.0 -852.0,1.0 -853.0,1.0 -854.0,1.0 -855.0,1.0 -856.0,1.0 -857.0,1.0 -858.0,1.0 -859.0,1.0 -860.0,1.0 -861.0,1.0 -862.0,1.0 -863.0,1.0 -864.0,1.0 -865.0,1.0 -866.0,1.0 -867.0,1.0 -868.0,1.0 -869.0,1.0 -870.0,1.0 -871.0,1.0 -872.0,1.0 -873.0,1.0 -874.0,1.0 -875.0,1.0 -876.0,1.0 -877.0,1.0 -878.0,1.0 -879.0,1.0 -880.0,1.0 -881.0,1.0 -882.0,1.0 -883.0,1.0 -884.0,1.0 -885.0,1.0 -886.0,1.0 -887.0,1.0 -888.0,1.0 -889.0,1.0 -890.0,1.0 -891.0,1.0 -892.0,1.0 -893.0,1.0 -894.0,1.0 -895.0,1.0 -896.0,1.0 -897.0,1.0 -898.0,1.0 -899.0,1.0 -900.0,1.0 -901.0,1.0 -902.0,1.0 -903.0,1.0 -904.0,1.0 -905.0,1.0 -906.0,1.0 -907.0,1.0 -908.0,1.0 -909.0,1.0 -910.0,1.0 -911.0,1.0 -912.0,1.0 -913.0,1.0 -914.0,1.0 -915.0,1.0 -916.0,1.0 -917.0,1.0 -918.0,1.0 -919.0,1.0 -920.0,1.0 -921.0,1.0 -922.0,1.0 -923.0,1.0 -924.0,1.0 -925.0,1.0 -926.0,1.0 -927.0,1.0 -928.0,1.0 -929.0,1.0 -930.0,1.0 -931.0,1.0 -932.0,1.0 -933.0,1.0 -934.0,1.0 -935.0,1.0 -936.0,1.0 -937.0,1.0 -938.0,1.0 -939.0,1.0 -940.0,1.0 -941.0,1.0 -942.0,1.0 -943.0,1.0 -944.0,1.0 -945.0,1.0 -946.0,1.0 -947.0,1.0 -948.0,1.0 -949.0,1.0 -950.0,1.0 -951.0,1.0 -952.0,1.0 -953.0,1.0 -954.0,1.0 -955.0,1.0 -956.0,1.0 -957.0,1.0 -958.0,1.0 -959.0,1.0 -960.0,1.0 -961.0,1.0 -962.0,1.0 -963.0,1.0 -964.0,1.0 -965.0,1.0 -966.0,1.0 -967.0,1.0 -968.0,1.0 -969.0,1.0 -970.0,1.0 -971.0,1.0 -972.0,1.0 -973.0,1.0 -974.0,1.0 -975.0,1.0 -976.0,1.0 -977.0,1.0 -978.0,1.0 -979.0,1.0 -980.0,1.0 -981.0,1.0 -982.0,1.0 -983.0,1.0 -984.0,1.0 -985.0,1.0 -986.0,1.0 -987.0,1.0 -988.0,1.0 -989.0,1.0 -990.0,1.0 -991.0,1.0 -992.0,1.0 -993.0,1.0 -994.0,1.0 -995.0,1.0 -996.0,1.0 -997.0,1.0 -998.0,1.0 -999.0,1.0 -1000.0,1.0 -1001.0,1.0 -1002.0,1.0 -1003.0,1.0 -1004.0,1.0 -1005.0,1.0 -1006.0,1.0 -1007.0,1.0 -1008.0,1.0 -1009.0,1.0 -1010.0,1.0 -1011.0,1.0 -1012.0,1.0 -1013.0,1.0 -1014.0,1.0 -1015.0,1.0 -1016.0,1.0 -1017.0,1.0 -1018.0,1.0 -1019.0,1.0 -1020.0,1.0 -1021.0,1.0 -1022.0,1.0 -1023.0,1.0 -1024.0,1.0 -1025.0,1.0 -1026.0,1.0 -1027.0,1.0 -1028.0,1.0 -1029.0,1.0 -1030.0,1.0 -1031.0,1.0 -1032.0,1.0 -1033.0,1.0 -1034.0,1.0 -1035.0,1.0 -1036.0,1.0 -1037.0,1.0 -1038.0,1.0 -1039.0,1.0 -1040.0,1.0 -1041.0,1.0 -1042.0,1.0 -1043.0,1.0 -1044.0,1.0 -1045.0,1.0 -1046.0,1.0 -1047.0,1.0 -1048.0,1.0 -1049.0,1.0 -1050.0,1.0 -1051.0,1.0 -1052.0,1.0 -1053.0,1.0 -1054.0,1.0 -1055.0,1.0 -1056.0,1.0 -1057.0,1.0 -1058.0,1.0 -1059.0,1.0 -1060.0,1.0 -1061.0,1.0 -1062.0,1.0 -1063.0,1.0 -1064.0,1.0 -1065.0,1.0 -1066.0,1.0 -1067.0,1.0 -1068.0,1.0 -1069.0,1.0 -1070.0,1.0 -1071.0,1.0 -1072.0,1.0 -1073.0,1.0 -1074.0,1.0 -1075.0,1.0 -1076.0,1.0 -1077.0,1.0 -1078.0,1.0 -1079.0,1.0 -1080.0,1.0 -1081.0,1.0 -1082.0,1.0 -1083.0,1.0 -1084.0,1.0 -1085.0,1.0 -1086.0,1.0 -1087.0,1.0 -1088.0,1.0 -1089.0,1.0 -1090.0,1.0 -1091.0,1.0 -1092.0,1.0 -1093.0,1.0 -1094.0,1.0 -1095.0,1.0 -1096.0,1.0 -1097.0,1.0 -1098.0,1.0 -1099.0,1.0 -1100.0,1.0 -1101.0,1.0 -1102.0,1.0 -1103.0,1.0 -1104.0,1.0 -1105.0,1.0 -1106.0,1.0 -1107.0,1.0 -1108.0,1.0 -1109.0,1.0 -1110.0,1.0 -1111.0,1.0 -1112.0,1.0 -1113.0,1.0 -1114.0,1.0 -1115.0,1.0 -1116.0,1.0 -1117.0,1.0 -1118.0,1.0 -1119.0,1.0 -1120.0,1.0 -1121.0,1.0 -1122.0,1.0 -1123.0,1.0 -1124.0,1.0 -1125.0,1.0 -1126.0,1.0 -1127.0,1.0 -1128.0,1.0 -1129.0,1.0 -1130.0,1.0 -1131.0,1.0 -1132.0,1.0 -1133.0,1.0 -1134.0,1.0 -1135.0,1.0 -1136.0,1.0 -1137.0,1.0 -1138.0,1.0 -1139.0,1.0 -1140.0,1.0 -1141.0,1.0 -1142.0,1.0 -1143.0,1.0 -1144.0,1.0 -1145.0,1.0 -1146.0,1.0 -1147.0,1.0 -1148.0,1.0 -1149.0,1.0 -1150.0,1.0 -1151.0,1.0 -1152.0,1.0 -1153.0,1.0 -1154.0,1.0 -1155.0,1.0 -1156.0,1.0 -1157.0,1.0 -1158.0,1.0 -1159.0,1.0 -1160.0,1.0 -1161.0,1.0 -1162.0,1.0 -1163.0,1.0 -1164.0,1.0 -1165.0,1.0 -1166.0,1.0 -1167.0,1.0 -1168.0,1.0 -1169.0,1.0 -1170.0,1.0 -1171.0,1.0 -1172.0,1.0 -1173.0,1.0 -1174.0,1.0 -1175.0,1.0 -1176.0,1.0 -1177.0,1.0 -1178.0,1.0 -1179.0,1.0 -1180.0,1.0 -1181.0,1.0 -1182.0,1.0 -1183.0,1.0 -1184.0,1.0 -1185.0,1.0 -1186.0,1.0 -1187.0,1.0 -1188.0,1.0 -1189.0,1.0 -1190.0,1.0 -1191.0,1.0 -1192.0,1.0 -1193.0,1.0 -1194.0,1.0 -1195.0,1.0 -1196.0,1.0 -1197.0,1.0 -1198.0,1.0 -1199.0,1.0 -1200.0,1.0 -1201.0,1.0 -1202.0,1.0 -1203.0,1.0 -1204.0,1.0 -1205.0,1.0 -1206.0,1.0 -1207.0,1.0 -1208.0,1.0 -1209.0,1.0 -1210.0,1.0 -1211.0,1.0 -1212.0,1.0 -1213.0,1.0 -1214.0,1.0 -1215.0,1.0 -1216.0,1.0 -1217.0,1.0 -1218.0,1.0 -1219.0,1.0 -1220.0,1.0 -1221.0,1.0 -1222.0,1.0 -1223.0,1.0 -1224.0,1.0 -1225.0,1.0 -1226.0,1.0 -1227.0,1.0 -1228.0,1.0 -1229.0,1.0 -1230.0,1.0 -1231.0,1.0 -1232.0,1.0 -1233.0,1.0 -1234.0,1.0 -1235.0,1.0 -1236.0,1.0 -1237.0,1.0 -1238.0,1.0 -1239.0,1.0 -1240.0,1.0 -1241.0,1.0 -1242.0,1.0 -1243.0,1.0 -1244.0,1.0 -1245.0,1.0 -1246.0,1.0 -1247.0,1.0 -1248.0,1.0 -1249.0,1.0 -1250.0,1.0 -1251.0,1.0 -1252.0,1.0 -1253.0,1.0 -1254.0,1.0 -1255.0,1.0 -1256.0,1.0 -1257.0,1.0 -1258.0,1.0 -1259.0,1.0 -1260.0,1.0 -1261.0,1.0 -1262.0,1.0 -1263.0,1.0 -1264.0,1.0 -1265.0,1.0 -1266.0,1.0 -1267.0,1.0 -1268.0,1.0 -1269.0,1.0 -1270.0,1.0 -1271.0,1.0 -1272.0,1.0 -1273.0,1.0 -1274.0,1.0 -1275.0,1.0 -1276.0,1.0 -1277.0,1.0 -1278.0,1.0 -1279.0,1.0 -1280.0,1.0 -1281.0,1.0 -1282.0,1.0 -1283.0,1.0 -1284.0,1.0 -1285.0,1.0 -1286.0,1.0 -1287.0,1.0 -1288.0,1.0 -1289.0,1.0 -1290.0,1.0 -1291.0,1.0 -1292.0,1.0 -1293.0,1.0 -1294.0,1.0 -1295.0,1.0 -1296.0,1.0 -1297.0,1.0 -1298.0,1.0 -1299.0,1.0 -1300.0,1.0 -1301.0,1.0 -1302.0,1.0 -1303.0,1.0 -1304.0,1.0 -1305.0,1.0 -1306.0,1.0 -1307.0,1.0 -1308.0,1.0 -1309.0,1.0 -1310.0,1.0 -1311.0,1.0 -1312.0,1.0 -1313.0,1.0 -1314.0,1.0 -1315.0,1.0 -1316.0,1.0 -1317.0,1.0 -1318.0,1.0 -1319.0,1.0 -1320.0,1.0 -1321.0,1.0 -1322.0,1.0 -1323.0,1.0 -1324.0,1.0 -1325.0,1.0 -1326.0,1.0 -1327.0,1.0 -1328.0,1.0 -1329.0,1.0 -1330.0,1.0 -1331.0,1.0 -1332.0,1.0 -1333.0,1.0 -1334.0,1.0 -1335.0,1.0 -1336.0,1.0 -1337.0,1.0 -1338.0,1.0 -1339.0,1.0 -1340.0,1.0 -1341.0,1.0 -1342.0,1.0 -1343.0,1.0 -1344.0,1.0 -1345.0,1.0 -1346.0,1.0 -1347.0,1.0 -1348.0,1.0 -1349.0,1.0 -1350.0,1.0 -1351.0,1.0 -1352.0,1.0 -1353.0,1.0 -1354.0,1.0 -1355.0,1.0 -1356.0,1.0 -1357.0,1.0 -1358.0,1.0 -1359.0,1.0 -1360.0,1.0 -1361.0,1.0 -1362.0,1.0 -1363.0,1.0 -1364.0,1.0 -1365.0,1.0 -1366.0,1.0 -1367.0,1.0 -1368.0,1.0 -1369.0,1.0 -1370.0,1.0 -1371.0,1.0 -1372.0,1.0 -1373.0,1.0 -1374.0,1.0 -1375.0,1.0 -1376.0,1.0 -1377.0,1.0 -1378.0,1.0 -1379.0,1.0 -1380.0,1.0 -1381.0,1.0 -1382.0,1.0 -1383.0,1.0 -1384.0,1.0 -1385.0,1.0 -1386.0,1.0 -1387.0,1.0 -1388.0,1.0 -1389.0,1.0 -1390.0,1.0 -1391.0,1.0 -1392.0,1.0 -1393.0,1.0 -1394.0,1.0 -1395.0,1.0 -1396.0,1.0 -1397.0,1.0 -1398.0,1.0 -1399.0,1.0 -1400.0,1.0 -1401.0,1.0 -1402.0,1.0 -1403.0,1.0 -1404.0,1.0 -1405.0,1.0 -1406.0,1.0 -1407.0,1.0 -1408.0,1.0 -1409.0,1.0 -1410.0,1.0 -1411.0,1.0 -1412.0,1.0 -1413.0,1.0 -1414.0,1.0 -1415.0,1.0 -1416.0,1.0 -1417.0,1.0 -1418.0,1.0 -1419.0,1.0 -1420.0,1.0 -1421.0,1.0 -1422.0,1.0 -1423.0,1.0 -1424.0,1.0 -1425.0,1.0 -1426.0,1.0 -1427.0,1.0 -1428.0,1.0 -1429.0,1.0 -1430.0,1.0 -1431.0,1.0 -1432.0,1.0 -1433.0,1.0 -1434.0,1.0 -1435.0,1.0 -1436.0,1.0 -1437.0,1.0 -1438.0,1.0 -1439.0,1.0 -1440.0,1.0 -1441.0,1.0 -1442.0,1.0 -1443.0,1.0 -1444.0,1.0 -1445.0,1.0 -1446.0,1.0 -1447.0,1.0 -1448.0,1.0 -1449.0,1.0 -1450.0,1.0 -1451.0,1.0 -1452.0,1.0 -1453.0,1.0 -1454.0,1.0 -1455.0,1.0 -1456.0,1.0 -1457.0,1.0 -1458.0,1.0 -1459.0,1.0 -1460.0,1.0 -1461.0,1.0 -1462.0,1.0 -1463.0,1.0 -1464.0,1.0 -1465.0,1.0 -1466.0,1.0 -1467.0,1.0 -1468.0,1.0 -1469.0,1.0 -1470.0,1.0 -1471.0,1.0 -1472.0,1.0 -1473.0,1.0 -1474.0,1.0 -1475.0,1.0 -1476.0,1.0 -1477.0,1.0 -1478.0,1.0 -1479.0,1.0 -1480.0,1.0 -1481.0,1.0 -1482.0,1.0 -1483.0,1.0 -1484.0,1.0 -1485.0,1.0 -1486.0,1.0 -1487.0,1.0 -1488.0,1.0 -1489.0,1.0 -1490.0,1.0 -1491.0,1.0 -1492.0,1.0 -1493.0,1.0 -1494.0,1.0 -1495.0,1.0 -1496.0,1.0 -1497.0,1.0 -1498.0,1.0 -1499.0,1.0 -1500.0,1.0 -1501.0,1.0 -1502.0,1.0 -1503.0,1.0 -1504.0,1.0 -1505.0,1.0 -1506.0,1.0 -1507.0,1.0 -1508.0,1.0 -1509.0,1.0 -1510.0,1.0 -1511.0,1.0 -1512.0,1.0 -1513.0,1.0 -1514.0,1.0 -1515.0,1.0 -1516.0,1.0 -1517.0,1.0 -1518.0,1.0 -1519.0,1.0 -1520.0,1.0 -1521.0,1.0 -1522.0,1.0 -1523.0,1.0 -1524.0,1.0 -1525.0,1.0 -1526.0,1.0 -1527.0,1.0 -1528.0,1.0 -1529.0,1.0 -1530.0,1.0 -1531.0,1.0 -1532.0,1.0 -1533.0,1.0 -1534.0,1.0 -1535.0,1.0 -1536.0,1.0 -1537.0,1.0 -1538.0,1.0 -1539.0,1.0 -1540.0,1.0 -1541.0,1.0 -1542.0,1.0 -1543.0,1.0 -1544.0,1.0 -1545.0,1.0 -1546.0,1.0 -1547.0,1.0 -1548.0,1.0 -1549.0,1.0 -1550.0,1.0 -1551.0,1.0 -1552.0,1.0 -1553.0,1.0 -1554.0,1.0 -1555.0,1.0 -1556.0,1.0 -1557.0,1.0 -1558.0,1.0 -1559.0,1.0 -1560.0,1.0 -1561.0,1.0 -1562.0,1.0 -1563.0,1.0 -1564.0,1.0 -1565.0,1.0 -1566.0,1.0 -1567.0,1.0 -1568.0,1.0 -1569.0,1.0 -1570.0,1.0 -1571.0,1.0 -1572.0,1.0 -1573.0,1.0 -1574.0,1.0 -1575.0,1.0 -1576.0,1.0 -1577.0,1.0 -1578.0,1.0 -1579.0,1.0 -1580.0,1.0 -1581.0,1.0 -1582.0,1.0 -1583.0,1.0 -1584.0,1.0 -1585.0,1.0 -1586.0,1.0 -1587.0,1.0 -1588.0,1.0 -1589.0,1.0 -1590.0,1.0 -1591.0,1.0 -1592.0,1.0 -1593.0,1.0 -1594.0,1.0 -1595.0,1.0 -1596.0,1.0 -1597.0,1.0 -1598.0,1.0 -1599.0,1.0 -1600.0,1.0 -1601.0,1.0 -1602.0,1.0 -1603.0,1.0 -1604.0,1.0 -1605.0,1.0 -1606.0,1.0 -1607.0,1.0 -1608.0,1.0 -1609.0,1.0 -1610.0,1.0 -1611.0,1.0 -1612.0,1.0 -1613.0,1.0 -1614.0,1.0 -1615.0,1.0 -1616.0,1.0 -1617.0,1.0 -1618.0,1.0 -1619.0,1.0 -1620.0,1.0 -1621.0,1.0 -1622.0,1.0 -1623.0,1.0 -1624.0,1.0 -1625.0,1.0 -1626.0,1.0 -1627.0,1.0 -1628.0,1.0 -1629.0,1.0 -1630.0,1.0 -1631.0,1.0 -1632.0,1.0 -1633.0,1.0 -1634.0,1.0 -1635.0,1.0 -1636.0,1.0 -1637.0,1.0 -1638.0,1.0 -1639.0,1.0 -1640.0,1.0 -1641.0,1.0 -1642.0,1.0 -1643.0,1.0 -1644.0,1.0 -1645.0,1.0 -1646.0,1.0 -1647.0,1.0 -1648.0,1.0 -1649.0,1.0 -1650.0,1.0 -1651.0,1.0 -1652.0,1.0 -1653.0,1.0 -1654.0,1.0 -1655.0,1.0 -1656.0,1.0 -1657.0,1.0 -1658.0,1.0 -1659.0,1.0 -1660.0,1.0 -1661.0,1.0 -1662.0,1.0 -1663.0,1.0 -1664.0,1.0 -1665.0,1.0 -1666.0,1.0 -1667.0,1.0 -1668.0,1.0 -1669.0,1.0 -1670.0,1.0 -1671.0,1.0 -1672.0,1.0 -1673.0,1.0 -1674.0,1.0 -1675.0,1.0 -1676.0,1.0 -1677.0,1.0 -1678.0,1.0 -1679.0,1.0 -1680.0,1.0 -1681.0,1.0 -1682.0,1.0 -1683.0,1.0 -1684.0,1.0 -1685.0,1.0 -1686.0,1.0 -1687.0,1.0 -1688.0,1.0 -1689.0,1.0 -1690.0,1.0 -1691.0,1.0 -1692.0,1.0 -1693.0,1.0 -1694.0,1.0 -1695.0,1.0 -1696.0,1.0 -1697.0,1.0 -1698.0,1.0 -1699.0,1.0 -1700.0,1.0 -1701.0,1.0 -1702.0,1.0 -1703.0,1.0 -1704.0,1.0 -1705.0,1.0 -1706.0,1.0 -1707.0,1.0 -1708.0,1.0 -1709.0,1.0 -1710.0,1.0 -1711.0,1.0 -1712.0,1.0 -1713.0,1.0 -1714.0,1.0 -1715.0,1.0 -1716.0,1.0 -1717.0,1.0 -1718.0,1.0 -1719.0,1.0 -1720.0,1.0 -1721.0,1.0 -1722.0,1.0 -1723.0,1.0 -1724.0,1.0 -1725.0,1.0 -1726.0,1.0 -1727.0,1.0 -1728.0,1.0 -1729.0,1.0 -1730.0,1.0 -1731.0,1.0 -1732.0,1.0 -1733.0,1.0 -1734.0,1.0 -1735.0,1.0 -1736.0,1.0 -1737.0,1.0 -1738.0,1.0 -1739.0,1.0 -1740.0,1.0 -1741.0,1.0 -1742.0,1.0 -1743.0,1.0 -1744.0,1.0 -1745.0,1.0 -1746.0,1.0 -1747.0,1.0 -1748.0,1.0 -1749.0,1.0 -1750.0,1.0 -1751.0,1.0 -1752.0,1.0 -1753.0,1.0 -1754.0,1.0 -1755.0,1.0 -1756.0,1.0 -1757.0,1.0 -1758.0,1.0 -1759.0,1.0 -1760.0,1.0 -1761.0,1.0 -1762.0,1.0 -1763.0,1.0 -1764.0,1.0 -1765.0,1.0 -1766.0,1.0 -1767.0,1.0 -1768.0,1.0 -1769.0,1.0 -1770.0,1.0 -1771.0,1.0 -1772.0,1.0 -1773.0,1.0 -1774.0,1.0 -1775.0,1.0 -1776.0,1.0 -1777.0,1.0 -1778.0,1.0 -1779.0,1.0 -1780.0,1.0 -1781.0,1.0 -1782.0,1.0 -1783.0,1.0 -1784.0,1.0 -1785.0,1.0 -1786.0,1.0 -1787.0,1.0 -1788.0,1.0 -1789.0,1.0 -1790.0,1.0 -1791.0,1.0 -1792.0,1.0 -1793.0,1.0 -1794.0,1.0 -1795.0,1.0 -1796.0,1.0 -1797.0,1.0 -1798.0,1.0 -1799.0,1.0 -1800.0,1.0 -1801.0,1.0 -1802.0,1.0 -1803.0,1.0 -1804.0,1.0 -1805.0,1.0 -1806.0,1.0 -1807.0,1.0 -1808.0,1.0 -1809.0,1.0 -1810.0,1.0 -1811.0,1.0 -1812.0,1.0 -1813.0,1.0 -1814.0,1.0 -1815.0,1.0 -1816.0,1.0 -1817.0,1.0 -1818.0,1.0 -1819.0,1.0 -1820.0,1.0 -1821.0,1.0 -1822.0,1.0 -1823.0,1.0 -1824.0,1.0 -1825.0,1.0 -1826.0,1.0 -1827.0,1.0 -1828.0,1.0 -1829.0,1.0 -1830.0,1.0 -1831.0,1.0 -1832.0,1.0 -1833.0,1.0 -1834.0,1.0 -1835.0,1.0 -1836.0,1.0 -1837.0,1.0 -1838.0,1.0 -1839.0,1.0 -1840.0,1.0 -1841.0,1.0 -1842.0,1.0 -1843.0,1.0 -1844.0,1.0 -1845.0,1.0 -1846.0,1.0 -1847.0,1.0 -1848.0,1.0 -1849.0,1.0 -1850.0,1.0 -1851.0,1.0 -1852.0,1.0 -1853.0,1.0 -1854.0,1.0 -1855.0,1.0 -1856.0,1.0 -1857.0,1.0 -1858.0,1.0 -1859.0,1.0 -1860.0,1.0 -1861.0,1.0 -1862.0,1.0 -1863.0,1.0 -1864.0,1.0 -1865.0,1.0 -1866.0,1.0 -1867.0,1.0 -1868.0,1.0 -1869.0,1.0 -1870.0,1.0 -1871.0,1.0 -1872.0,1.0 -1873.0,1.0 -1874.0,1.0 -1875.0,1.0 -1876.0,1.0 -1877.0,1.0 -1878.0,1.0 -1879.0,1.0 -1880.0,1.0 -1881.0,1.0 -1882.0,1.0 -1883.0,1.0 -1884.0,1.0 -1885.0,1.0 -1886.0,1.0 -1887.0,1.0 -1888.0,1.0 -1889.0,1.0 -1890.0,1.0 -1891.0,1.0 -1892.0,1.0 -1893.0,1.0 -1894.0,1.0 -1895.0,1.0 -1896.0,1.0 -1897.0,1.0 -1898.0,1.0 -1899.0,1.0 -1900.0,1.0 -1901.0,1.0 -1902.0,1.0 -1903.0,1.0 -1904.0,1.0 -1905.0,1.0 -1906.0,1.0 -1907.0,1.0 -1908.0,1.0 -1909.0,1.0 -1910.0,1.0 -1911.0,1.0 -1912.0,1.0 -1913.0,1.0 -1914.0,1.0 -1915.0,1.0 -1916.0,1.0 -1917.0,1.0 -1918.0,1.0 -1919.0,1.0 -1920.0,1.0 -1921.0,1.0 -1922.0,1.0 -1923.0,1.0 -1924.0,1.0 -1925.0,1.0 -1926.0,1.0 -1927.0,1.0 -1928.0,1.0 -1929.0,1.0 -1930.0,1.0 -1931.0,1.0 -1932.0,1.0 -1933.0,1.0 -1934.0,1.0 -1935.0,1.0 -1936.0,1.0 -1937.0,1.0 -1938.0,1.0 -1939.0,1.0 -1940.0,1.0 -1941.0,1.0 -1942.0,1.0 -1943.0,1.0 -1944.0,1.0 -1945.0,1.0 -1946.0,1.0 -1947.0,1.0 -1948.0,1.0 -1949.0,1.0 -1950.0,1.0 -1951.0,1.0 -1952.0,1.0 -1953.0,1.0 -1954.0,1.0 -1955.0,1.0 -1956.0,1.0 -1957.0,1.0 -1958.0,1.0 -1959.0,1.0 -1960.0,1.0 -1961.0,1.0 -1962.0,1.0 -1963.0,1.0 -1964.0,1.0 -1965.0,1.0 -1966.0,1.0 -1967.0,1.0 -1968.0,1.0 -1969.0,1.0 -1970.0,1.0 -1971.0,1.0 -1972.0,1.0 -1973.0,1.0 -1974.0,1.0 -1975.0,1.0 -1976.0,1.0 -1977.0,1.0 -1978.0,1.0 -1979.0,1.0 -1980.0,1.0 -1981.0,1.0 -1982.0,1.0 -1983.0,1.0 -1984.0,1.0 -1985.0,1.0 -1986.0,1.0 -1987.0,1.0 -1988.0,1.0 -1989.0,1.0 -1990.0,1.0 -1991.0,1.0 -1992.0,1.0 -1993.0,1.0 -1994.0,1.0 -1995.0,1.0 -1996.0,1.0 -1997.0,1.0 -1998.0,1.0 -1999.0,1.0 -2000.0,1.0 -2001.0,1.0 -2002.0,1.0 -2003.0,1.0 -2004.0,1.0 -2005.0,1.0 -2006.0,1.0 -2007.0,1.0 -2008.0,1.0 -2009.0,1.0 -2010.0,1.0 -2011.0,1.0 -2012.0,1.0 -2013.0,1.0 -2014.0,1.0 -2015.0,1.0 -2016.0,1.0 -2017.0,1.0 -2018.0,1.0 -2019.0,1.0 -2020.0,1.0 -2021.0,1.0 -2022.0,1.0 -2023.0,1.0 -2024.0,1.0 -2025.0,1.0 -2026.0,1.0 -2027.0,1.0 -2028.0,1.0 -2029.0,1.0 -2030.0,1.0 -2031.0,1.0 -2032.0,1.0 -2033.0,1.0 -2034.0,1.0 -2035.0,1.0 -2036.0,1.0 -2037.0,1.0 -2038.0,1.0 -2039.0,1.0 -2040.0,1.0 -2041.0,1.0 -2042.0,1.0 -2043.0,1.0 -2044.0,1.0 -2045.0,1.0 -2046.0,1.0 -2047.0,1.0 -2048.0,1.0 -2049.0,1.0 -2050.0,1.0 -2051.0,1.0 -2052.0,1.0 -2053.0,1.0 -2054.0,1.0 -2055.0,1.0 -2056.0,1.0 -2057.0,1.0 -2058.0,1.0 -2059.0,1.0 -2060.0,1.0 -2061.0,1.0 -2062.0,1.0 -2063.0,1.0 -2064.0,1.0 -2065.0,1.0 -2066.0,1.0 -2067.0,1.0 -2068.0,1.0 -2069.0,1.0 -2070.0,1.0 -2071.0,1.0 -2072.0,1.0 -2073.0,1.0 -2074.0,1.0 -2075.0,1.0 -2076.0,1.0 -2077.0,1.0 -2078.0,1.0 -2079.0,1.0 -2080.0,1.0 -2081.0,1.0 -2082.0,1.0 -2083.0,1.0 -2084.0,1.0 -2085.0,1.0 -2086.0,1.0 -2087.0,1.0 -2088.0,1.0 -2089.0,1.0 -2090.0,1.0 -2091.0,1.0 -2092.0,1.0 -2093.0,1.0 -2094.0,1.0 -2095.0,1.0 -2096.0,1.0 -2097.0,1.0 -2098.0,1.0 -2099.0,1.0 -2100.0,1.0 -2101.0,1.0 -2102.0,1.0 -2103.0,1.0 -2104.0,1.0 -2105.0,1.0 -2106.0,1.0 -2107.0,1.0 -2108.0,1.0 -2109.0,1.0 -2110.0,1.0 -2111.0,1.0 -2112.0,1.0 -2113.0,1.0 -2114.0,1.0 -2115.0,1.0 -2116.0,1.0 -2117.0,1.0 -2118.0,1.0 -2119.0,1.0 -2120.0,1.0 -2121.0,1.0 -2122.0,1.0 -2123.0,1.0 -2124.0,1.0 -2125.0,1.0 -2126.0,1.0 -2127.0,1.0 -2128.0,1.0 -2129.0,1.0 -2130.0,1.0 -2131.0,1.0 -2132.0,1.0 -2133.0,1.0 -2134.0,1.0 -2135.0,1.0 -2136.0,1.0 -2137.0,1.0 -2138.0,1.0 -2139.0,1.0 -2140.0,1.0 -2141.0,1.0 -2142.0,1.0 -2143.0,1.0 -2144.0,1.0 -2145.0,1.0 -2146.0,1.0 -2147.0,1.0 -2148.0,1.0 -2149.0,1.0 -2150.0,1.0 -2151.0,1.0 -2152.0,1.0 -2153.0,1.0 -2154.0,1.0 -2155.0,1.0 -2156.0,1.0 -2157.0,1.0 -2158.0,1.0 -2159.0,1.0 -2160.0,1.0 -2161.0,1.0 -2162.0,1.0 -2163.0,1.0 -2164.0,1.0 -2165.0,1.0 -2166.0,1.0 -2167.0,1.0 -2168.0,1.0 -2169.0,1.0 -2170.0,1.0 -2171.0,1.0 -2172.0,1.0 -2173.0,1.0 -2174.0,1.0 -2175.0,1.0 -2176.0,1.0 -2177.0,1.0 -2178.0,1.0 -2179.0,1.0 -2180.0,1.0 -2181.0,1.0 -2182.0,1.0 -2183.0,1.0 -2184.0,1.0 -2185.0,1.0 -2186.0,1.0 -2187.0,1.0 -2188.0,1.0 -2189.0,1.0 -2190.0,1.0 -2191.0,1.0 -2192.0,1.0 -2193.0,1.0 -2194.0,1.0 -2195.0,1.0 -2196.0,1.0 -2197.0,1.0 -2198.0,1.0 -2199.0,1.0 -2200.0,1.0 -2201.0,1.0 -2202.0,1.0 -2203.0,1.0 -2204.0,1.0 -2205.0,1.0 -2206.0,1.0 -2207.0,1.0 -2208.0,1.0 -2209.0,1.0 -2210.0,1.0 -2211.0,1.0 -2212.0,1.0 -2213.0,1.0 -2214.0,1.0 -2215.0,1.0 -2216.0,1.0 -2217.0,1.0 -2218.0,1.0 -2219.0,1.0 -2220.0,1.0 -2221.0,1.0 -2222.0,1.0 -2223.0,1.0 -2224.0,1.0 -2225.0,1.0 -2226.0,1.0 -2227.0,1.0 -2228.0,1.0 -2229.0,1.0 -2230.0,1.0 -2231.0,1.0 -2232.0,1.0 -2233.0,1.0 -2234.0,1.0 -2235.0,1.0 -2236.0,1.0 -2237.0,1.0 -2238.0,1.0 -2239.0,1.0 -2240.0,1.0 -2241.0,1.0 -2242.0,1.0 -2243.0,1.0 -2244.0,1.0 -2245.0,1.0 -2246.0,1.0 -2247.0,1.0 -2248.0,1.0 -2249.0,1.0 -2250.0,1.0 -2251.0,1.0 -2252.0,1.0 -2253.0,1.0 -2254.0,1.0 -2255.0,1.0 -2256.0,1.0 -2257.0,1.0 -2258.0,1.0 -2259.0,1.0 -2260.0,1.0 -2261.0,1.0 -2262.0,1.0 -2263.0,1.0 -2264.0,1.0 -2265.0,1.0 -2266.0,1.0 -2267.0,1.0 -2268.0,1.0 -2269.0,1.0 -2270.0,1.0 -2271.0,1.0 -2272.0,1.0 -2273.0,1.0 -2274.0,1.0 -2275.0,1.0 -2276.0,1.0 -2277.0,1.0 -2278.0,1.0 -2279.0,1.0 -2280.0,1.0 -2281.0,1.0 -2282.0,1.0 -2283.0,1.0 -2284.0,1.0 -2285.0,1.0 -2286.0,1.0 -2287.0,1.0 -2288.0,1.0 -2289.0,1.0 -2290.0,1.0 -2291.0,1.0 -2292.0,1.0 -2293.0,1.0 -2294.0,1.0 -2295.0,1.0 -2296.0,1.0 -2297.0,1.0 -2298.0,1.0 -2299.0,1.0 -2300.0,1.0 -2301.0,1.0 -2302.0,1.0 -2303.0,1.0 -2304.0,1.0 -2305.0,1.0 -2306.0,1.0 -2307.0,1.0 -2308.0,1.0 -2309.0,1.0 -2310.0,1.0 -2311.0,1.0 -2312.0,1.0 -2313.0,1.0 -2314.0,1.0 -2315.0,1.0 -2316.0,1.0 -2317.0,1.0 -2318.0,1.0 -2319.0,1.0 -2320.0,1.0 -2321.0,1.0 -2322.0,1.0 -2323.0,1.0 -2324.0,1.0 -2325.0,1.0 -2326.0,1.0 -2327.0,1.0 -2328.0,1.0 -2329.0,1.0 -2330.0,1.0 -2331.0,1.0 -2332.0,1.0 -2333.0,1.0 -2334.0,1.0 -2335.0,1.0 -2336.0,1.0 -2337.0,1.0 -2338.0,1.0 -2339.0,1.0 -2340.0,1.0 -2341.0,1.0 -2342.0,1.0 -2343.0,1.0 -2344.0,1.0 -2345.0,1.0 -2346.0,1.0 -2347.0,1.0 -2348.0,1.0 -2349.0,1.0 -2350.0,1.0 -2351.0,1.0 -2352.0,1.0 -2353.0,1.0 -2354.0,1.0 -2355.0,1.0 -2356.0,1.0 -2357.0,1.0 -2358.0,1.0 -2359.0,1.0 -2360.0,1.0 -2361.0,1.0 -2362.0,1.0 -2363.0,1.0 -2364.0,1.0 -2365.0,1.0 -2366.0,1.0 -2367.0,1.0 -2368.0,1.0 -2369.0,1.0 -2370.0,1.0 -2371.0,1.0 -2372.0,1.0 -2373.0,1.0 -2374.0,1.0 -2375.0,1.0 -2376.0,1.0 -2377.0,1.0 -2378.0,1.0 -2379.0,1.0 -2380.0,1.0 -2381.0,1.0 -2382.0,1.0 -2383.0,1.0 -2384.0,1.0 -2385.0,1.0 -2386.0,1.0 -2387.0,1.0 -2388.0,1.0 -2389.0,1.0 -2390.0,1.0 -2391.0,1.0 -2392.0,1.0 -2393.0,1.0 -2394.0,1.0 -2395.0,1.0 -2396.0,1.0 -2397.0,1.0 -2398.0,1.0 -2399.0,1.0 -2400.0,1.0 -2401.0,1.0 -2402.0,1.0 -2403.0,1.0 -2404.0,1.0 -2405.0,1.0 -2406.0,1.0 -2407.0,1.0 -2408.0,1.0 -2409.0,1.0 -2410.0,1.0 -2411.0,1.0 -2412.0,1.0 -2413.0,1.0 -2414.0,1.0 -2415.0,1.0 -2416.0,1.0 -2417.0,1.0 -2418.0,1.0 -2419.0,1.0 -2420.0,1.0 -2421.0,1.0 -2422.0,1.0 -2423.0,1.0 -2424.0,1.0 -2425.0,1.0 -2426.0,1.0 -2427.0,1.0 -2428.0,1.0 -2429.0,1.0 -2430.0,1.0 -2431.0,1.0 -2432.0,1.0 -2433.0,1.0 -2434.0,1.0 -2435.0,1.0 -2436.0,1.0 -2437.0,1.0 -2438.0,1.0 -2439.0,1.0 -2440.0,1.0 -2441.0,1.0 -2442.0,1.0 -2443.0,1.0 -2444.0,1.0 -2445.0,1.0 -2446.0,1.0 -2447.0,1.0 -2448.0,1.0 -2449.0,1.0 -2450.0,1.0 -2451.0,1.0 -2452.0,1.0 -2453.0,1.0 -2454.0,1.0 -2455.0,1.0 -2456.0,1.0 -2457.0,1.0 -2458.0,1.0 -2459.0,1.0 -2460.0,1.0 -2461.0,1.0 -2462.0,1.0 -2463.0,1.0 -2464.0,1.0 -2465.0,1.0 -2466.0,1.0 -2467.0,1.0 -2468.0,1.0 -2469.0,1.0 -2470.0,1.0 -2471.0,1.0 -2472.0,1.0 -2473.0,1.0 -2474.0,1.0 -2475.0,1.0 -2476.0,1.0 -2477.0,1.0 -2478.0,1.0 -2479.0,1.0 -2480.0,1.0 -2481.0,1.0 -2482.0,1.0 -2483.0,1.0 -2484.0,1.0 -2485.0,1.0 -2486.0,1.0 -2487.0,1.0 -2488.0,1.0 -2489.0,1.0 -2490.0,1.0 -2491.0,1.0 -2492.0,1.0 -2493.0,1.0 -2494.0,1.0 -2495.0,1.0 -2496.0,1.0 -2497.0,1.0 -2498.0,1.0 -2499.0,1.0 -2500.0,1.0 -2501.0,1.0 -2502.0,1.0 -2503.0,1.0 -2504.0,1.0 -2505.0,1.0 -2506.0,1.0 -2507.0,1.0 -2508.0,1.0 -2509.0,1.0 -2510.0,1.0 -2511.0,1.0 -2512.0,1.0 -2513.0,1.0 -2514.0,1.0 -2515.0,1.0 -2516.0,1.0 -2517.0,1.0 -2518.0,1.0 -2519.0,1.0 -2520.0,1.0 -2521.0,1.0 -2522.0,1.0 -2523.0,1.0 -2524.0,1.0 -2525.0,1.0 -2526.0,1.0 -2527.0,1.0 -2528.0,1.0 -2529.0,1.0 -2530.0,1.0 -2531.0,1.0 -2532.0,1.0 -2533.0,1.0 -2534.0,1.0 -2535.0,1.0 -2536.0,1.0 -2537.0,1.0 -2538.0,1.0 -2539.0,1.0 -2540.0,1.0 -2541.0,1.0 -2542.0,1.0 -2543.0,1.0 -2544.0,1.0 -2545.0,1.0 -2546.0,1.0 -2547.0,1.0 -2548.0,1.0 -2549.0,1.0 -2550.0,1.0 -2551.0,1.0 -2552.0,1.0 -2553.0,1.0 -2554.0,1.0 -2555.0,1.0 -2556.0,1.0 -2557.0,1.0 -2558.0,1.0 -2559.0,1.0 -2560.0,1.0 -2561.0,1.0 -2562.0,1.0 -2563.0,1.0 -2564.0,1.0 -2565.0,1.0 -2566.0,1.0 -2567.0,1.0 -2568.0,1.0 -2569.0,1.0 -2570.0,1.0 -2571.0,1.0 -2572.0,1.0 -2573.0,1.0 -2574.0,1.0 -2575.0,1.0 -2576.0,1.0 -2577.0,1.0 -2578.0,1.0 -2579.0,1.0 -2580.0,1.0 -2581.0,1.0 -2582.0,1.0 -2583.0,1.0 -2584.0,1.0 -2585.0,1.0 -2586.0,1.0 -2587.0,1.0 -2588.0,1.0 -2589.0,1.0 -2590.0,1.0 -2591.0,1.0 -2592.0,1.0 -2593.0,1.0 -2594.0,1.0 -2595.0,1.0 -2596.0,1.0 -2597.0,1.0 -2598.0,1.0 -2599.0,1.0 -2600.0,1.0 -2601.0,1.0 -2602.0,1.0 -2603.0,1.0 -2604.0,1.0 -2605.0,1.0 -2606.0,1.0 -2607.0,1.0 -2608.0,1.0 -2609.0,1.0 -2610.0,1.0 -2611.0,1.0 -2612.0,1.0 -2613.0,1.0 -2614.0,1.0 -2615.0,1.0 -2616.0,1.0 -2617.0,1.0 -2618.0,1.0 -2619.0,1.0 -2620.0,1.0 -2621.0,1.0 -2622.0,1.0 -2623.0,1.0 -2624.0,1.0 -2625.0,1.0 -2626.0,1.0 -2627.0,1.0 -2628.0,1.0 -2629.0,1.0 -2630.0,1.0 -2631.0,1.0 -2632.0,1.0 -2633.0,1.0 -2634.0,1.0 -2635.0,1.0 -2636.0,1.0 -2637.0,1.0 -2638.0,1.0 -2639.0,1.0 -2640.0,1.0 -2641.0,1.0 -2642.0,1.0 -2643.0,1.0 -2644.0,1.0 -2645.0,1.0 -2646.0,1.0 -2647.0,1.0 -2648.0,1.0 -2649.0,1.0 -2650.0,1.0 -2651.0,1.0 -2652.0,1.0 -2653.0,1.0 -2654.0,1.0 -2655.0,1.0 -2656.0,1.0 -2657.0,1.0 -2658.0,1.0 -2659.0,1.0 -2660.0,1.0 -2661.0,1.0 -2662.0,1.0 -2663.0,1.0 -2664.0,1.0 -2665.0,1.0 -2666.0,1.0 -2667.0,1.0 -2668.0,1.0 -2669.0,1.0 -2670.0,1.0 -2671.0,1.0 -2672.0,1.0 -2673.0,1.0 -2674.0,1.0 -2675.0,1.0 -2676.0,1.0 -2677.0,1.0 -2678.0,1.0 -2679.0,1.0 -2680.0,1.0 -2681.0,1.0 -2682.0,1.0 -2683.0,1.0 -2684.0,1.0 -2685.0,1.0 -2686.0,1.0 -2687.0,1.0 -2688.0,1.0 -2689.0,1.0 -2690.0,1.0 -2691.0,1.0 -2692.0,1.0 -2693.0,1.0 -2694.0,1.0 -2695.0,1.0 -2696.0,1.0 -2697.0,1.0 -2698.0,1.0 -2699.0,1.0 -2700.0,1.0 -2701.0,1.0 -2702.0,1.0 -2703.0,1.0 -2704.0,1.0 -2705.0,1.0 -2706.0,1.0 -2707.0,1.0 -2708.0,1.0 -2709.0,1.0 -2710.0,1.0 -2711.0,1.0 -2712.0,1.0 -2713.0,1.0 -2714.0,1.0 -2715.0,1.0 -2716.0,1.0 -2717.0,1.0 -2718.0,1.0 -2719.0,1.0 -2720.0,1.0 -2721.0,1.0 -2722.0,1.0 -2723.0,1.0 -2724.0,1.0 -2725.0,1.0 -2726.0,1.0 -2727.0,1.0 -2728.0,1.0 -2729.0,1.0 -2730.0,1.0 -2731.0,1.0 -2732.0,1.0 -2733.0,1.0 -2734.0,1.0 -2735.0,1.0 -2736.0,1.0 -2737.0,1.0 -2738.0,1.0 -2739.0,1.0 -2740.0,1.0 -2741.0,1.0 -2742.0,1.0 -2743.0,1.0 -2744.0,1.0 -2745.0,1.0 -2746.0,1.0 -2747.0,1.0 -2748.0,1.0 -2749.0,1.0 -2750.0,1.0 -2751.0,1.0 -2752.0,1.0 -2753.0,1.0 -2754.0,1.0 -2755.0,1.0 -2756.0,1.0 -2757.0,1.0 -2758.0,1.0 -2759.0,1.0 -2760.0,1.0 -2761.0,1.0 -2762.0,1.0 -2763.0,1.0 -2764.0,1.0 -2765.0,1.0 -2766.0,1.0 -2767.0,1.0 -2768.0,1.0 -2769.0,1.0 -2770.0,1.0 -2771.0,1.0 -2772.0,1.0 -2773.0,1.0 -2774.0,1.0 -2775.0,1.0 -2776.0,1.0 -2777.0,1.0 -2778.0,1.0 -2779.0,1.0 -2780.0,1.0 -2781.0,1.0 -2782.0,1.0 -2783.0,1.0 -2784.0,1.0 -2785.0,1.0 -2786.0,1.0 -2787.0,1.0 -2788.0,1.0 -2789.0,1.0 -2790.0,1.0 -2791.0,1.0393164932058425 -2792.0,1.0893164932058426 -2793.0,1.1393164932058426 -2794.0,1.1893164932058427 -2795.0,1.2393164932058425 -2796.0,1.2893164932058425 -2797.0,1.3393164932058426 -2798.0,1.3893164932058426 -2799.0,1.4393164932058427 -2800.0,1.4893164932058425 -2801.0,1.5393164932058427 -2802.0,1.5893164932058426 -2803.0,1.6393164932058426 -2804.0,1.6893164932058427 -2805.0,1.7393164932058425 -2806.0,1.7893164932058427 -2807.0,1.8393164932058426 -2808.0,1.8893164932058426 -2809.0,1.9393164932058427 -2810.0,1.9893164932058425 -2811.0,2.0393164932058427 -2812.0,2.0893164932058426 -2813.0,2.1393164932058424 -2814.0,2.1893164932058427 -2815.0,2.239316493205843 -2816.0,2.2893164932058427 -2817.0,2.3393164932058426 -2818.0,2.3893164932058424 -2819.0,2.4393164932058427 -2820.0,2.489316493205843 -2821.0,2.5393164932058427 -2822.0,2.5893164932058426 -2823.0,2.6393164932058424 -2824.0,2.6893164932058427 -2825.0,2.739316493205843 -2826.0,2.7893164932058427 -2827.0,2.8393164932058426 -2828.0,2.8893164932058424 -2829.0,2.9393164932058427 -2830.0,2.989316493205843 -2831.0,3.0393164932058427 -2832.0,3.0893164932058426 -2833.0,3.139316493205843 -2834.0,3.1893164932058427 -2835.0,3.2393164932058425 -2836.0,3.2893164932058427 -2837.0,3.3393164932058426 -2838.0,3.389316493205843 -2839.0,3.4393164932058427 -2840.0,3.489316493205843 -2841.0,3.5393164932058427 -2842.0,3.5893164932058426 -2843.0,3.639316493205843 -2844.0,3.6893164932058427 -2845.0,3.739316493205843 -2846.0,3.7893164932058427 -2847.0,3.8393164932058426 -2848.0,3.889316493205843 -2849.0,3.9393164932058427 -2850.0,3.989316493205843 -2851.0,4.039316493205843 -2852.0,4.089316493205843 -2853.0,4.139316493205843 -2854.0,4.189316493205842 -2855.0,4.239316493205843 -2856.0,4.289316493205843 -2857.0,4.339316493205843 -2858.0,4.389316493205843 -2859.0,4.439316493205842 -2860.0,4.489316493205843 -2861.0,4.539316493205843 -2862.0,4.589316493205843 -2863.0,4.639316493205843 -2864.0,4.689316493205842 -2865.0,4.739316493205843 -2866.0,4.789316493205843 -2867.0,4.839316493205843 -2868.0,4.889316493205843 -2869.0,4.939316493205842 -2870.0,4.989316493205843 -2871.0,5.039316493205843 -2872.0,5.089316493205843 -2873.0,5.139316493205842 -2874.0,5.189316493205843 -2875.0,5.239316493205843 -2876.0,5.289316493205843 -2877.0,5.339316493205843 -2878.0,5.389316493205842 -2879.0,5.439316493205843 -2880.0,5.489316493205843 -2881.0,5.539316493205843 -2882.0,5.589316493205843 -2883.0,5.639316493205842 -2884.0,5.689316493205843 -2885.0,5.739316493205843 -2886.0,5.789316493205843 -2887.0,5.839316493205843 -2888.0,5.889316493205843 -2889.0,5.939316493205843 -2890.0,5.989316493205843 -2891.0,5.960683506794157 -2892.0,5.910683506794157 -2893.0,5.860683506794158 -2894.0,5.810683506794158 -2895.0,5.760683506794157 -2896.0,5.710683506794157 -2897.0,5.660683506794157 -2898.0,5.610683506794158 -2899.0,5.560683506794158 -2900.0,5.510683506794157 -2901.0,5.460683506794157 -2902.0,5.410683506794157 -2903.0,5.360683506794158 -2904.0,5.310683506794158 -2905.0,5.260683506794157 -2906.0,5.210683506794157 -2907.0,5.160683506794157 -2908.0,5.110683506794158 -2909.0,5.060683506794158 -2910.0,5.010683506794157 -2911.0,4.960683506794157 -2912.0,4.910683506794157 -2913.0,4.860683506794158 -2914.0,4.810683506794158 -2915.0,4.760683506794157 -2916.0,4.710683506794157 -2917.0,4.660683506794157 -2918.0,4.610683506794158 -2919.0,4.560683506794158 -2920.0,4.510683506794157 -2921.0,4.460683506794157 -2922.0,4.410683506794157 -2923.0,4.360683506794158 -2924.0,4.310683506794158 -2925.0,4.260683506794157 -2926.0,4.210683506794157 -2927.0,4.160683506794157 -2928.0,4.110683506794158 -2929.0,4.060683506794158 -2930.0,4.010683506794157 -2931.0,3.9606835067941573 -2932.0,3.9106835067941574 -2933.0,3.860683506794157 -2934.0,3.8106835067941573 -2935.0,3.7606835067941575 -2936.0,3.7106835067941573 -2937.0,3.6606835067941574 -2938.0,3.610683506794157 -2939.0,3.5606835067941573 -2940.0,3.510683506794157 -2941.0,3.4606835067941573 -2942.0,3.4106835067941574 -2943.0,3.360683506794157 -2944.0,3.3106835067941573 -2945.0,3.260683506794157 -2946.0,3.2106835067941573 -2947.0,3.1606835067941574 -2948.0,3.110683506794157 -2949.0,3.0606835067941573 -2950.0,3.010683506794157 -2951.0,2.9606835067941573 -2952.0,2.9106835067941574 -2953.0,2.860683506794157 -2954.0,2.8106835067941573 -2955.0,2.760683506794157 -2956.0,2.7106835067941573 -2957.0,2.6606835067941574 -2958.0,2.610683506794157 -2959.0,2.5606835067941573 -2960.0,2.510683506794157 -2961.0,2.4606835067941573 -2962.0,2.4106835067941574 -2963.0,2.360683506794157 -2964.0,2.3106835067941573 -2965.0,2.260683506794157 -2966.0,2.2106835067941573 -2967.0,2.1606835067941574 -2968.0,2.110683506794157 -2969.0,2.0606835067941573 -2970.0,2.010683506794157 -2971.0,1.9606835067941573 -2972.0,1.9106835067941574 -2973.0,1.8606835067941576 -2974.0,1.810683506794157 -2975.0,1.760683506794157 -2976.0,1.7106835067941573 -2977.0,1.6606835067941574 -2978.0,1.6106835067941576 -2979.0,1.560683506794157 -2980.0,1.510683506794157 -2981.0,1.4606835067941573 -2982.0,1.4106835067941574 -2983.0,1.3606835067941576 -2984.0,1.310683506794157 -2985.0,1.260683506794157 -2986.0,1.2106835067941573 -2987.0,1.1606835067941574 -2988.0,1.1106835067941567 -2989.0,1.060683506794157 -2990.0,1.010683506794157 -2991.0,0.9997284481633825 -2992.0,0.9993832138134071 -2993.0,0.9990380986825623 -2994.0,0.9986931027296784 -2995.0,0.9983482259135998 -2996.0,0.9980034681931853 -2997.0,0.9976588295273078 -2998.0,0.9973143098748543 -2999.0,0.9969699091947263 -3000.0,0.9966256274458393 -3001.0,0.9962814645871227 -3002.0,0.9959374205775209 -3003.0,0.9955934953759915 -3004.0,0.9952496889415069 -3005.0,0.9949060012330535 -3006.0,0.9945624322096319 -3007.0,0.9942189818302568 -3008.0,0.993875650053957 -3009.0,0.9935324368397755 -3010.0,0.9931893421467697 -3011.0,0.9928463659340108 -3012.0,0.992503508160584 -3013.0,0.9921607687855891 -3014.0,0.9918181477681398 -3015.0,0.9914756450673639 -3016.0,0.9911332606424031 -3017.0,0.9907909944524138 -3018.0,0.990448846456566 -3019.0,0.9901068166140436 -3020.0,0.9897649048840456 -3021.0,0.9894231112257837 -3022.0,0.989081435598485 -3023.0,0.9887398779613898 -3024.0,0.9883984382737528 -3025.0,0.9880571164948427 -3026.0,0.9877159125839424 -3027.0,0.9873748265003487 -3028.0,0.9870338582033725 -3029.0,0.9866930076523389 -3030.0,0.9863522748065867 -3031.0,0.9860116596254691 -3032.0,0.9856711620683531 -3033.0,0.98533078209462 -3034.0,0.9849905196636648 -3035.0,0.9846503747348967 -3036.0,0.9843103472677388 -3037.0,0.9839704372216286 -3038.0,0.9836306445560169 -3039.0,0.9832909692303692 -3040.0,0.9829514112041646 -3041.0,0.9826119704368964 -3042.0,0.9822726468880718 -3043.0,0.9819334405172118 -3044.0,0.9815943512838516 -3045.0,0.9812553791475405 -3046.0,0.9809165240678414 -3047.0,0.9805777860043314 -3048.0,0.9802391649166017 -3049.0,0.979900660764257 -3050.0,0.9795622735069164 -3051.0,0.9792240031042126 -3052.0,0.9788858495157927 -3053.0,0.9785478127013172 -3054.0,0.9782098926204609 -3055.0,0.9778720892329122 -3056.0,0.9775344024983739 -3057.0,0.9771968323765622 -3058.0,0.9768593788272076 -3059.0,0.9765220418100543 -3060.0,0.9761848212848604 -3061.0,0.975847717211398 -3062.0,0.9755107295494531 -3063.0,0.9751738582588254 -3064.0,0.9748371032993286 -3065.0,0.9745004646307905 -3066.0,0.9741639422130524 -3067.0,0.9738275360059696 -3068.0,0.9734912459694114 -3069.0,0.9731550720632608 -3070.0,0.9728190142474147 -3071.0,0.9724830724817839 -3072.0,0.9721472467262928 -3073.0,0.9718115369408802 -3074.0,0.971475943085498 -3075.0,0.9711404651201125 -3076.0,0.9708051030047037 -3077.0,0.9704698566992651 -3078.0,0.9701347261638044 -3079.0,0.969799711358343 -3080.0,0.969464812242916 -3081.0,0.9691300287775724 -3082.0,0.9687953609223751 -3083.0,0.9684608086374004 -3084.0,0.9681263718827389 -3085.0,0.9677920506184946 -3086.0,0.9674578448047855 -3087.0,0.9671237544017431 -3088.0,0.9667897793695132 -3089.0,0.9664559196682546 -3090.0,0.9661221752581406 -3091.0,0.9657885460993577 -3092.0,0.9654550321521065 -3093.0,0.9651216333766012 -3094.0,0.9647883497330697 -3095.0,0.9644551811817538 -3096.0,0.9641221276829088 -3097.0,0.963789189196804 -3098.0,0.9634563656837221 -3099.0,0.9631236571039598 -3100.0,0.9627910634178272 -3101.0,0.9624585845856486 -3102.0,0.9621262205677614 -3103.0,0.9617939713245173 -3104.0,0.9614618368162811 -3105.0,0.9611298170034317 -3106.0,0.9607979118463615 -3107.0,0.9604661213054768 -3108.0,0.9601344453411973 -3109.0,0.9598028839139564 -3110.0,0.9594714369842013 -3111.0,0.959140104512393 -3112.0,0.9588088864590055 -3113.0,0.9584777827845273 -3114.0,0.9581467934494601 -3115.0,0.9578159184143191 -3116.0,0.9574851576396334 -3117.0,0.9571545110859456 -3118.0,0.9568239787138122 -3119.0,0.9564935604838029 -3120.0,0.9561632563565011 -3121.0,0.9558330662925043 -3122.0,0.9555029902524229 -3123.0,0.9551730281968814 -3124.0,0.9548431800865177 -3125.0,0.9545134458819833 -3126.0,0.9541838255439432 -3127.0,0.9538543190330764 -3128.0,0.9535249263100748 -3129.0,0.9531956473356445 -3130.0,0.9528664820705051 -3131.0,0.9525374304753891 -3132.0,0.9522084925110433 -3133.0,0.9518796681382279 -3134.0,0.9515509573177163 -3135.0,0.951222360010296 -3136.0,0.9508938761767675 -3137.0,0.9505655057779452 -3138.0,0.9502372487746568 -3139.0,0.9499091051277436 -3140.0,0.9495810747980606 -3141.0,0.9492531577464762 -3142.0,0.9489253539338722 -3143.0,0.9485976633211439 -3144.0,0.9482700858692004 -3145.0,0.9479426215389639 -3146.0,0.9476152702913705 -3147.0,0.9472880320873694 -3148.0,0.9469609068879236 -3149.0,0.9466338946540093 -3150.0,0.9463069953466164 -3151.0,0.9459802089267483 -3152.0,0.9456535353554216 -3153.0,0.9453269745936667 -3154.0,0.9450005266025271 -3155.0,0.94467419134306 -3156.0,0.9443479687763361 -3157.0,0.9440218588634391 -3158.0,0.9436958615654669 -3159.0,0.9433699768435302 -3160.0,0.9430442046587532 -3161.0,0.9427185449722738 -3162.0,0.9423929977452432 -3163.0,0.9420675629388259 -3164.0,0.9417422405141999 -3165.0,0.9414170304325566 -3166.0,0.9410919326551009 -3167.0,0.9407669471430511 -3168.0,0.9404420738576384 -3169.0,0.9401173127601082 -3170.0,0.9397926638117187 -3171.0,0.9394681269737416 -3172.0,0.9391437022074621 -3173.0,0.9388193894741788 -3174.0,0.9384951887352032 -3175.0,0.9381710999518609 -3176.0,0.9378471230854902 -3177.0,0.9375232580974432 -3178.0,0.9371995049490851 -3179.0,0.9368758636017944 -3180.0,0.9365523340169634 -3181.0,0.9362289161559969 -3182.0,0.9359056099803138 -3183.0,0.935582415451346 -3184.0,0.9352593325305388 -3185.0,0.9349363611793506 -3186.0,0.9346135013592534 -3187.0,0.9342907530317323 -3188.0,0.9339681161582859 -3189.0,0.9336455907004257 -3190.0,0.9333231766196771 -3191.0,0.9330008738775784 -3192.0,0.932678682435681 -3193.0,0.93235660225555 -3194.0,0.9320346332987635 -3195.0,0.9317127755269129 -3196.0,0.9313910289016031 -3197.0,0.9310693933844519 -3198.0,0.9307478689370907 -3199.0,0.9304264555211639 -3200.0,0.9301051530983291 -3201.0,0.9297839616302573 -3202.0,0.929462881078633 -3203.0,0.9291419114051531 -3204.0,0.9288210525715287 -3205.0,0.9285003045394836 -3206.0,0.9281796672707547 -3207.0,0.9278591407270925 -3208.0,0.9275387248702605 -3209.0,0.9272184196620353 -3210.0,0.926898225064207 -3211.0,0.9265781410385786 -3212.0,0.9262581675469664 -3213.0,0.9259383045512 -3214.0,0.925618552013122 -3215.0,0.9252989098945883 -3216.0,0.9249793781574678 -3217.0,0.9246599567636429 -3218.0,0.9243406456750087 -3219.0,0.9240214448534739 -3220.0,0.9237023542609601 -3221.0,0.9233833738594023 -3222.0,0.9230645036107482 -3223.0,0.922745743476959 -3224.0,0.9224270934200091 -3225.0,0.9221085534018855 -3226.0,0.9217901233845891 -3227.0,0.9214718033301332 -3228.0,0.9211535932005448 -3229.0,0.9208354929578636 -3230.0,0.9205175025641426 -3231.0,0.9201996219814479 -3232.0,0.9198818511718585 -3233.0,0.9195641900974669 -3234.0,0.9192466387203783 -3235.0,0.9189291970027111 -3236.0,0.918611864906597 -3237.0,0.9182946423941805 -3238.0,0.9179775294276191 -3239.0,0.9176605259690838 -3240.0,0.9173436319807583 -3241.0,0.9170268474248393 -3242.0,0.916710172263537 -3243.0,0.9163936064590742 -3244.0,0.9160771499736869 -3245.0,0.9157608027696241 -3246.0,0.9154445648091482 -3247.0,0.9151284360545338 -3248.0,0.9148124164680694 -3249.0,0.9144965060120561 -3250.0,0.9141807046488081 -3251.0,0.9138650123406525 -3252.0,0.9135494290499296 -3253.0,0.9132339547389927 -3254.0,0.9129185893702079 -3255.0,0.9126033329059543 -3256.0,0.9122881853086243 -3257.0,0.911973146540623 -3258.0,0.9116582165643685 -3259.0,0.9113433953422923 -3260.0,0.911028682836838 -3261.0,0.910714079010463 -3262.0,0.9103995838256373 -3263.0,0.910085197244844 -3264.0,0.9097709192305791 -3265.0,0.9094567497453513 -3266.0,0.9091426887516826 -3267.0,0.9088287362121077 -3268.0,0.9085148920891746 -3269.0,0.9082011563454438 -3270.0,0.907887528943489 -3271.0,0.9075740098458966 -3272.0,0.9072605990152663 -3273.0,0.9069472964142102 -3274.0,0.9066341020053539 -3275.0,0.9063210157513352 -3276.0,0.9060080376148055 -3277.0,0.9056951675584286 -3278.0,0.9053824055448816 -3279.0,0.905069751536854 -3280.0,0.9047572054970487 -3281.0,0.9044447673881811 -3282.0,0.9041324371729796 -3283.0,0.9038202148141856 -3284.0,0.9035081002745532 -3285.0,0.9031960935168493 -3286.0,0.9028841945038539 -3287.0,0.9025724031983596 -3288.0,0.9022607195631722 -3289.0,0.9019491435611099 -3290.0,0.9016376751550039 -3291.0,0.9013263143076986 -3292.0,0.9010150609820506 -3293.0,0.9007039151409298 -3294.0,0.9003928767472188 -3295.0,0.900081945763813 -3296.0,0.8997711221536204 -3297.0,0.8994604058795622 -3298.0,0.8991497969045721 -3299.0,0.8988392951915969 -3300.0,0.8985289007035958 -3301.0,0.898218613403541 -3302.0,0.8979084332544177 -3303.0,0.8975983602192236 -3304.0,0.8972883942609691 -3305.0,0.8969785353426776 -3306.0,0.8966687834273851 -3307.0,0.8963591384781407 -3308.0,0.8960496004580059 -3309.0,0.895740169330055 -3310.0,0.8954308450573751 -3311.0,0.8951216276030661 -3312.0,0.8948125169302408 -3313.0,0.8945035130020244 -3314.0,0.8941946157815548 -3315.0,0.8938858252319831 -3316.0,0.8935771413164728 -3317.0,0.8932685639982 -3318.0,0.8929600932403537 -3319.0,0.8926517290061359 -3320.0,0.8923434712587606 -3321.0,0.892035319961455 -3322.0,0.8917272750774591 -3323.0,0.8914193365700251 -3324.0,0.8911115044024184 -3325.0,0.8908037785379168 -3326.0,0.8904961589398108 -3327.0,0.8901886455714036 -3328.0,0.8898812383960113 -3329.0,0.8895739373769622 -3330.0,0.8892667424775977 -3331.0,0.8889596536612717 -3332.0,0.8886526708913506 -3333.0,0.8883457941312137 -3334.0,0.8880390233442529 -3335.0,0.8877323584938724 -3336.0,0.8874257995434898 -3337.0,0.8871193464565343 -3338.0,0.8868129991964487 -3339.0,0.8865067577266879 -3340.0,0.8862006220107194 -3341.0,0.8858945920120236 -3342.0,0.8855886676940932 -3343.0,0.8852828490204337 -3344.0,0.8849771359545633 -3345.0,0.8846715284600125 -3346.0,0.8843660265003247 -3347.0,0.8840606300390556 -3348.0,0.8837553390397737 -3349.0,0.8834501534660599 -3350.0,0.883145073281508 -3351.0,0.882840098449724 -3352.0,0.8825352289343267 -3353.0,0.8822304646989473 -3354.0,0.8819258057072298 -3355.0,0.8816212519228304 -3356.0,0.8813168033094182 -3357.0,0.8810124598306747 -3358.0,0.8807082214502939 -3359.0,0.8804040881319823 -3360.0,0.8801000598394593 -3361.0,0.8797961365364562 -3362.0,0.8794923181867172 -3363.0,0.8791886047539993 -3364.0,0.8788849962020714 -3365.0,0.8785814924947153 -3366.0,0.8782780935957252 -3367.0,0.8779747994689079 -3368.0,0.8776716100780826 -3369.0,0.8773685253870809 -3370.0,0.8770655453597472 -3371.0,0.876762669959938 -3372.0,0.8764598991515227 -3373.0,0.8761572328983827 -3374.0,0.8758546711644122 -3375.0,0.8755522139135179 -3376.0,0.8752498611096188 -3377.0,0.8749476127166463 -3378.0,0.8746454686985445 -3379.0,0.8743434290192699 -3380.0,0.8740414936427912 -3381.0,0.8737396625330897 -3382.0,0.8734379356541592 -3383.0,0.8731363129700059 -3384.0,0.8728347944446485 -3385.0,0.8725333800421179 -3386.0,0.8722320697264576 -3387.0,0.8719308634617235 -3388.0,0.871629761211984 -3389.0,0.8713287629413196 -3390.0,0.8710278686138233 -3391.0,0.870727078193601 -3392.0,0.8704263916447702 -3393.0,0.8701258089314615 -3394.0,0.8698253300178174 -3395.0,0.869524954867993 -3396.0,0.8692246834461557 -3397.0,0.8689245157164853 -3398.0,0.868624451643174 -3399.0,0.8683244911904264 -3400.0,0.8680246343224594 -3401.0,0.8677248810035022 -3402.0,0.8674252311977964 -3403.0,0.867125684869596 -3404.0,0.8668262419831673 -3405.0,0.866526902502789 -3406.0,0.866227666392752 -3407.0,0.8659285336173597 -3408.0,0.8656295041409275 -3409.0,0.8653305779277838 -3410.0,0.8650317549422686 -3411.0,0.8647330351487345 -3412.0,0.8644344185115463 -3413.0,0.8641359049950815 -3414.0,0.8638374945637295 -3415.0,0.8635391871818919 -3416.0,0.8632409828139832 -3417.0,0.8629428814244294 -3418.0,0.8626448829776695 -3419.0,0.8623469874381542 -3420.0,0.8620491947703469 -3421.0,0.8617515049387231 -3422.0,0.8614539179077704 -3423.0,0.861156433641989 -3424.0,0.8608590521058913 -3425.0,0.8605617732640015 -3426.0,0.8602645970808568 -3427.0,0.8599675235210059 -3428.0,0.8596705525490104 -3429.0,0.8593736841294436 -3430.0,0.8590769182268913 -3431.0,0.8587802548059515 -3432.0,0.8584836938312346 -3433.0,0.8581872352673628 -3434.0,0.8578908790789709 -3435.0,0.8575946252307056 -3436.0,0.8572984736872261 -3437.0,0.8570024244132038 -3438.0,0.856706477373322 -3439.0,0.8564106325322763 -3440.0,0.8561148898547748 -3441.0,0.8558192493055374 -3442.0,0.8555237108492965 -3443.0,0.8552282744507962 -3444.0,0.8549329400747934 -3445.0,0.8546377076860567 -3446.0,0.8543425772493672 -3447.0,0.8540475487295178 -3448.0,0.8537526220913139 -3449.0,0.8534577972995727 -3450.0,0.8531630743191239 -3451.0,0.8528684531148092 -3452.0,0.8525739336514825 -3453.0,0.8522795158940095 -3454.0,0.8519851998072686 -3455.0,0.85169098535615 -3456.0,0.851396872505556 -3457.0,0.8511028612204009 -3458.0,0.8508089514656116 -3459.0,0.8505151432061266 -3460.0,0.850221436406897 -3461.0,0.8499278310328853 -3462.0,0.8496343270490668 -3463.0,0.8493409244204285 -3464.0,0.8490476231119698 -3465.0,0.8487544230887017 -3466.0,0.8484613243156479 -3467.0,0.8481683267578436 -3468.0,0.8478754303803364 -3469.0,0.8475826351481859 -3470.0,0.8472899410264638 -3471.0,0.8469973479802537 -3472.0,0.8467048559746516 -3473.0,0.8464124649747652 -3474.0,0.8461201749457143 -3475.0,0.8458279858526311 -3476.0,0.8455358976606593 -3477.0,0.8452439103349549 -3478.0,0.8449520238406862 -3479.0,0.844660238143033 -3480.0,0.8443685532071877 -3481.0,0.8440769689983542 -3482.0,0.8437854854817485 -3483.0,0.8434941026225989 -3484.0,0.8432028203861457 -3485.0,0.8429116387376409 -3486.0,0.8426205576423486 -3487.0,0.842329577065545 -3488.0,0.8420386969725182 -3489.0,0.8417479173285685 -3490.0,0.8414572380990077 -3491.0,0.8411666592491602 -3492.0,0.8408761807443619 -3493.0,0.8405858025499608 -3494.0,0.8402955246313171 -3495.0,0.8400053469538025 -3496.0,0.8397152694828011 -3497.0,0.8394252921837085 -3498.0,0.839135415021933 -3499.0,0.838845637962894 -3500.0,0.8385559609720232 -3501.0,0.8382663840147645 -3502.0,0.8379769070565734 -3503.0,0.8376875300629172 -3504.0,0.8373982529992755 -3505.0,0.8371090758311397 -3506.0,0.8368199985240129 -3507.0,0.8365310210434105 -3508.0,0.8362421433548595 -3509.0,0.8359533654238988 -3510.0,0.8356646872160794 -3511.0,0.8353761086969641 -3512.0,0.8350876298321276 -3513.0,0.8347992505871564 -3514.0,0.834510970927649 -3515.0,0.8342227908192158 -3516.0,0.8339347102274788 -3517.0,0.8336467291180724 -3518.0,0.8333588474566423 -3519.0,0.8330710652088464 -3520.0,0.8327833823403544 -3521.0,0.8324957988168479 -3522.0,0.8322083146040201 -3523.0,0.8319209296675765 -3524.0,0.8316336439732338 -3525.0,0.8313464574867212 -3526.0,0.8310593701737793 -3527.0,0.8307723820001608 -3528.0,0.83048549293163 -3529.0,0.8301987029339631 -3530.0,0.8299120119729484 -3531.0,0.8296254200143854 -3532.0,0.8293389270240861 -3533.0,0.8290525329678736 -3534.0,0.8287662378115835 -3535.0,0.8284800415210628 -3536.0,0.8281939440621703 -3537.0,0.8279079454007766 -3538.0,0.8276220455027644 -3539.0,0.8273362443340276 -3540.0,0.8270505418604724 -3541.0,0.8267649380480167 -3542.0,0.8264794328625898 -3543.0,0.826194026270133 -3544.0,0.8259087182365996 -3545.0,0.8256235087279543 -3546.0,0.8253383977101738 -3547.0,0.8250533851492462 -3548.0,0.8247684710111718 -3549.0,0.8244836552619622 -3550.0,0.8241989378676412 -3551.0,0.8239143187942439 -3552.0,0.8236297980078175 -3553.0,0.8233453754744205 -3554.0,0.8230610511601237 -3555.0,0.822776825031009 -3556.0,0.8224926970531704 -3557.0,0.8222086671927135 -3558.0,0.8219247354157556 -3559.0,0.8216409016884257 -3560.0,0.8213571659768645 -3561.0,0.8210735282472245 -3562.0,0.8207899884656696 -3563.0,0.8205065465983757 -3564.0,0.8202232026115303 -3565.0,0.8199399564713323 -3566.0,0.8196568081439928 -3567.0,0.819373757595734 -3568.0,0.8190908047927903 -3569.0,0.8188079497014074 -3570.0,0.8185251922878425 -3571.0,0.818242532518365 -3572.0,0.8179599703592555 -3573.0,0.8176775057768065 -3574.0,0.8173951387373221 -3575.0,0.8171128692071177 -3576.0,0.8168306971525208 -3577.0,0.8165486225398703 -3578.0,0.8162666453355166 -3579.0,0.8159847655058222 -3580.0,0.8157029830171607 -3581.0,0.8154212978359174 -3582.0,0.8151397099284896 -3583.0,0.8148582192612857 -3584.0,0.8145768258007259 -3585.0,0.814295529513242 -3586.0,0.8140143303652776 -3587.0,0.8137332283232875 -3588.0,0.8134522233537383 -3589.0,0.8131713154231083 -3590.0,0.8128905044978871 -3591.0,0.812609790544576 -3592.0,0.812329173529688 -3593.0,0.8120486534197474 -3594.0,0.8117682301812902 -3595.0,0.811487903780864 -3596.0,0.8112076741850279 -3597.0,0.8109275413603526 -3598.0,0.8106475052734201 -3599.0,0.8103675658908245 -3600.0,0.8100877231791707 -3601.0,0.8098079771050757 -3602.0,0.8095283276351678 -3603.0,0.8092487747360868 -3604.0,0.8089693183744842 -3605.0,0.8086899585170227 -3606.0,0.808410695130377 -3607.0,0.8081315281812328 -3608.0,0.8078524576362874 -3609.0,0.8075734834622501 -3610.0,0.807294605625841 -3611.0,0.807015824093792 -3612.0,0.8067371388328467 -3613.0,0.80645854980976 -3614.0,0.8061800569912979 -3615.0,0.8059016603442386 -3616.0,0.8056233598353713 -3617.0,0.8053451554314967 -3618.0,0.8050670470994271 -3619.0,0.8047890348059863 -3620.0,0.8045111185180093 -3621.0,0.8042332982023428 -3622.0,0.8039555738258448 -3623.0,0.803677945355385 -3624.0,0.803400412757844 -3625.0,0.8031229760001145 -3626.0,0.8028456350491002 -3627.0,0.8025683898717163 -3628.0,0.8022912404348896 -3629.0,0.8020141867055581 -3630.0,0.8017372286506713 -3631.0,0.8014603662371902 -3632.0,0.801183599432087 -3633.0,0.8009069282023455 -3634.0,0.800630352514961 -3635.0,0.8003538723369398 -3636.0,0.8000774876352998 -3637.0,0.7998011983770706 -3638.0,0.7995250045292928 -3639.0,0.7992489060590183 -3640.0,0.7989729029333108 -3641.0,0.7986969951192451 -3642.0,0.7984211825839073 -3643.0,0.798145465294395 -3644.0,0.7978698432178172 -3645.0,0.7975943163212941 -3646.0,0.7973188845719575 -3647.0,0.7970435479369503 -3648.0,0.7967683063834268 -3649.0,0.7964931598785528 -3650.0,0.7962181083895052 -3651.0,0.7959431518834726 -3652.0,0.7956682903276545 -3653.0,0.7953935236892619 -3654.0,0.7951188519355172 -3655.0,0.7948442750336541 -3656.0,0.7945697929509176 -3657.0,0.7942954056545638 -3658.0,0.7940211131118604 -3659.0,0.7937469152900865 -3660.0,0.793472812156532 -3661.0,0.7931988036784985 -3662.0,0.7929248898232989 -3663.0,0.7926510705582571 -3664.0,0.7923773458507086 -3665.0,0.792103715668 -3666.0,0.7918301799774891 -3667.0,0.7915567387465452 -3668.0,0.7912833919425487 -3669.0,0.7910101395328915 -3670.0,0.7907369814849763 -3671.0,0.7904639177662175 -3672.0,0.7901909483440405 -3673.0,0.7899180731858821 -3674.0,0.7896452922591904 -3675.0,0.7893726055314244 -3676.0,0.7891000129700547 -3677.0,0.788827514542563 -3678.0,0.7885551102164421 -3679.0,0.7882827999591964 -3680.0,0.7880105837383409 -3681.0,0.7877384615214025 -3682.0,0.7874664332759188 -3683.0,0.787194498969439 -3684.0,0.7869226585695233 -3685.0,0.7866509120437429 -3686.0,0.7863792593596807 -3687.0,0.7861077004849304 -3688.0,0.7858362353870969 -3689.0,0.7855648640337966 -3690.0,0.7852935863926567 -3691.0,0.7850224024313158 -3692.0,0.7847513121174237 -3693.0,0.7844803154186413 -3694.0,0.7842094123026405 -3695.0,0.7839386027371048 -3696.0,0.7836678866897283 -3697.0,0.7833972641282169 -3698.0,0.7831267350202868 -3699.0,0.7828562993336664 -3700.0,0.7825859570360945 -3701.0,0.782315708095321 -3702.0,0.7820455524791075 -3703.0,0.7817754901552261 -3704.0,0.7815055210914607 -3705.0,0.7812356452556055 -3706.0,0.7809658626154667 -3707.0,0.780696173138861 -3708.0,0.7804265767936165 -3709.0,0.7801570735475721 -3710.0,0.7798876633685784 -3711.0,0.7796183462244963 -3712.0,0.7793491220831986 -3713.0,0.7790799909125687 -3714.0,0.7788109526805012 -3715.0,0.7785420073549016 -3716.0,0.7782731549036871 -3717.0,0.7780043952947852 -3718.0,0.777735728496135 -3719.0,0.7774671544756865 -3720.0,0.7771986732014008 -3721.0,0.7769302846412499 -3722.0,0.7766619887632171 -3723.0,0.7763937855352968 -3724.0,0.7761256749254941 -3725.0,0.7758576569018254 -3726.0,0.7755897314323181 -3727.0,0.7753218984850108 -3728.0,0.7750541580279527 -3729.0,0.7747865100292047 -3730.0,0.7745189544568379 -3731.0,0.7742514912789352 -3732.0,0.7739841204635901 -3733.0,0.7737168419789072 -3734.0,0.7734496557930022 -3735.0,0.7731825618740015 -3736.0,0.772915560190043 -3737.0,0.7726486507092752 -3738.0,0.7723818333998579 -3739.0,0.7721151082299614 -3740.0,0.7718484751677678 -3741.0,0.7715819341814694 -3742.0,0.7713154852392698 -3743.0,0.7710491283093839 -3744.0,0.770782863360037 -3745.0,0.7705166903594655 -3746.0,0.7702506092759172 -3747.0,0.7699846200776503 -3748.0,0.7697187227329345 -3749.0,0.76945291721005 -3750.0,0.7691872034772882 -3751.0,0.7689215815029513 -3752.0,0.7686560512553527 -3753.0,0.7683906127028165 -3754.0,0.7681252658136778 -3755.0,0.7678600105562826 -3756.0,0.7675948468989879 -3757.0,0.7673297748101617 -3758.0,0.7670647942581829 -3759.0,0.766799905211441 -3760.0,0.7665351076383369 -3761.0,0.766270401507282 -3762.0,0.7660057867866988 -3763.0,0.7657412634450209 -3764.0,0.7654768314506925 -3765.0,0.7652124907721686 -3766.0,0.7649482413779155 -3767.0,0.7646840832364101 -3768.0,0.7644200163161403 -3769.0,0.7641560405856047 -3770.0,0.7638921560133132 -3771.0,0.763628362567786 -3772.0,0.7633646602175546 -3773.0,0.7631010489311613 -3774.0,0.762837528677159 -3775.0,0.7625740994241118 -3776.0,0.7623107611405946 -3777.0,0.7620475137951929 -3778.0,0.7617843573565032 -3779.0,0.7615212917931329 -3780.0,0.7612583170737002 -3781.0,0.7609954331668342 -3782.0,0.7607326400411747 -3783.0,0.7604699376653724 -3784.0,0.7602073260080888 -3785.0,0.7599448050379963 -3786.0,0.7596823747237781 -3787.0,0.759420035034128 -3788.0,0.759157785937751 -3789.0,0.7588956274033625 -3790.0,0.758633559399689 -3791.0,0.7583715818954677 -3792.0,0.7581096948594466 -3793.0,0.7578478982603845 -3794.0,0.7575861920670509 -3795.0,0.7573245762482262 -3796.0,0.7570630507727016 -3797.0,0.7568016156092789 -3798.0,0.7565402707267709 -3799.0,0.7562790160940009 -3800.0,0.7560178516798034 -3801.0,0.7557567774530232 -3802.0,0.755495793382516 -3803.0,0.7552348994371485 -3804.0,0.7549740955857978 -3805.0,0.7547133817973518 -3806.0,0.7544527580407095 -3807.0,0.7541922242847803 -3808.0,0.7539317804984843 -3809.0,0.7536714266507526 -3810.0,0.7534111627105269 -3811.0,0.7531509886467594 -3812.0,0.7528909044284136 -3813.0,0.7526309100244629 -3814.0,0.7523710054038921 -3815.0,0.7521111905356966 -3816.0,0.7518514653888821 -3817.0,0.7515918299324655 -3818.0,0.7513322841354741 -3819.0,0.7510728279669461 -3820.0,0.75081346139593 -3821.0,0.7505541843914855 -3822.0,0.7502949969226825 -3823.0,0.7500358989586022 -3824.0,0.7497768904683357 -3825.0,0.7495179714209855 -3826.0,0.7492591417856642 -3827.0,0.7490004015314956 -3828.0,0.7487417506276136 -3829.0,0.748483189043163 -3830.0,0.7482247167472996 -3831.0,0.7479663337091893 -3832.0,0.7477080398980089 -3833.0,0.747449835282946 -3834.0,0.7471917198331984 -3835.0,0.746933693517975 -3836.0,0.7466757563064951 -3837.0,0.7464179081679887 -3838.0,0.7461601490716963 -3839.0,0.7459024789868692 -3840.0,0.7456448978827692 -3841.0,0.7453874057286689 -3842.0,0.7451300024938512 -3843.0,0.7448726881476098 -3844.0,0.7446154626592489 -3845.0,0.7443583259980835 -3846.0,0.7441012781334391 -3847.0,0.7438443190346516 -3848.0,0.7435874486710677 -3849.0,0.7433306670120449 -3850.0,0.7430739740269506 -3851.0,0.7428173696851635 -3852.0,0.7425608539560725 -3853.0,0.7423044268090772 -3854.0,0.7420480882135875 -3855.0,0.7417918381390242 -3856.0,0.7415356765548186 -3857.0,0.7412796034304123 -3858.0,0.7410236187352579 -3859.0,0.7407677224388182 -3860.0,0.7405119145105665 -3861.0,0.740256194919987 -3862.0,0.740000563636574 -3863.0,0.7397450206298327 -3864.0,0.7394895658692786 -3865.0,0.7392341993244379 -3866.0,0.7389789209648472 -3867.0,0.7387237307600536 -3868.0,0.7384686286796147 -3869.0,0.738213614693099 -3870.0,0.7379586887700849 -3871.0,0.7377038508801617 -3872.0,0.7374491009929289 -3873.0,0.737194439077997 -3874.0,0.7369398651049864 -3875.0,0.7366853790435286 -3876.0,0.7364309808632651 -3877.0,0.736176670533848 -3878.0,0.73592244802494 -3879.0,0.7356683133062142 -3880.0,0.7354142663473542 -3881.0,0.735160307118054 -3882.0,0.7349064355880182 -3883.0,0.7346526517269616 -3884.0,0.7343989555046099 -3885.0,0.7341453468906988 -3886.0,0.7338918258549746 -3887.0,0.7336383923671943 -3888.0,0.7333850463971249 -3889.0,0.7331317879145443 -3890.0,0.7328786168892404 -3891.0,0.7326255332910119 -3892.0,0.7323725370896677 -3893.0,0.7321196282550271 -3894.0,0.7318668067569201 -3895.0,0.7316140725651868 -3896.0,0.7313614256496781 -3897.0,0.7311088659802548 -3898.0,0.7308563935267884 -3899.0,0.7306040082591609 -3900.0,0.7303517101472645 -3901.0,0.7300994991610018 -3902.0,0.7298473752702861 -3903.0,0.7295953384450405 -3904.0,0.7293433886551993 -3905.0,0.7290915258707064 -3906.0,0.7288397500615165 -3907.0,0.7285880611975944 -3908.0,0.7283364592489159 -3909.0,0.7280849441854663 -3910.0,0.7278335159772419 -3911.0,0.7275821745942489 -3912.0,0.7273309200065045 -3913.0,0.7270797521840355 -3914.0,0.7268286710968797 -3915.0,0.7265776767150847 -3916.0,0.7263267690087089 -3917.0,0.7260759479478207 -3918.0,0.7258252135024991 -3919.0,0.7255745656428332 -3920.0,0.7253240043389225 -3921.0,0.725073529560877 -3922.0,0.7248231412788169 -3923.0,0.7245728394628725 -3924.0,0.7243226240831848 -3925.0,0.7240724951099049 -3926.0,0.7238224525131942 -3927.0,0.7235724962632245 -3928.0,0.7233226263301779 -3929.0,0.7230728426842464 -3930.0,0.722823145295633 -3931.0,0.7225735341345504 -3932.0,0.722324009171222 -3933.0,0.7220745703758812 -3934.0,0.7218252177187717 -3935.0,0.7215759511701476 -3936.0,0.7213267707002733 -3937.0,0.7210776762794233 -3938.0,0.7208286678778825 -3939.0,0.7205797454659458 -3940.0,0.7203309090139189 -3941.0,0.7200821584921173 -3942.0,0.7198334938708668 -3943.0,0.7195849151205036 -3944.0,0.719336422211374 -3945.0,0.7190880151138347 -3946.0,0.7188396937982524 -3947.0,0.7185914582350044 -3948.0,0.7183433083944778 -3949.0,0.7180952442470703 -3950.0,0.7178472657631895 -3951.0,0.7175993729132534 -3952.0,0.7173515656676903 -3953.0,0.7171038439969385 -3954.0,0.7168562078714468 -3955.0,0.7166086572616737 -3956.0,0.7163611921380885 -3957.0,0.7161138124711701 -3958.0,0.7158665182314082 -3959.0,0.7156193093893024 -3960.0,0.7153721859153623 -3961.0,0.715125147780108 -3962.0,0.7148781949540697 -3963.0,0.7146313274077876 -3964.0,0.7143845451118122 -3965.0,0.7141378480367042 -3966.0,0.7138912361530345 -3967.0,0.713644709431384 -3968.0,0.713398267842344 -3969.0,0.7131519113565157 -3970.0,0.7129056399445106 -3971.0,0.7126594535769503 -3972.0,0.7124133522244666 -3973.0,0.7121673358577013 -3974.0,0.7119214044473067 -3975.0,0.7116755579639447 -3976.0,0.7114297963782876 -3977.0,0.7111841196610181 -3978.0,0.7109385277828285 -3979.0,0.7106930207144216 -3980.0,0.7104475984265102 -3981.0,0.7102022608898172 -3982.0,0.7099570080750756 -3983.0,0.7097118399530286 -3984.0,0.7094667564944291 -3985.0,0.7092217576700409 -3986.0,0.7089768434506373 -3987.0,0.7087320138070016 -3988.0,0.7084872687099275 -3989.0,0.7082426081302189 -3990.0,0.7079980320386894 -3991.0,0.7077535404061628 -3992.0,0.7075091332034731 -3993.0,0.7072648104014644 -3994.0,0.7070205719709906 -3995.0,0.7067764178829159 -3996.0,0.7065323481081145 -3997.0,0.7062883626174707 -3998.0,0.7060444613818788 -3999.0,0.7058006443722432 -4000.0,0.7055569115594782 -4001.0,0.7053132629145082 -4002.0,0.7050696984082679 -4003.0,0.7048262180117018 -4004.0,0.7045828216957644 -4005.0,0.7043395094314201 -4006.0,0.7040962811896437 -4007.0,0.70385313694142 -4008.0,0.7036100766577434 -4009.0,0.7033671003096188 -4010.0,0.7031242078680607 -4011.0,0.702881399304094 -4012.0,0.7026386745887532 -4013.0,0.7023960336930831 -4014.0,0.7021534765881385 -4015.0,0.701911003244984 -4016.0,0.7016686136346942 -4017.0,0.701426307728354 -4018.0,0.701184085497058 -4019.0,0.7009419469119109 -4020.0,0.7006998919440272 -4021.0,0.7004579205645316 -4022.0,0.7002160327445586 -4023.0,0.6999742284552528 -4024.0,0.6997325076677687 -4025.0,0.6994908703532708 -4026.0,0.6992493164829336 -4027.0,0.6990078460279414 -4028.0,0.6987664589594885 -4029.0,0.6985251552487791 -4030.0,0.6982839348670277 -4031.0,0.6980427977854583 -4032.0,0.6978017439753049 -4033.0,0.6975607734078118 -4034.0,0.6973198860542328 -4035.0,0.6970790818858317 -4036.0,0.6968383608738825 -4037.0,0.6965977229896688 -4038.0,0.6963571682044845 -4039.0,0.6961166964896329 -4040.0,0.6958763078164276 -4041.0,0.6956360021561919 -4042.0,0.6953957794802592 -4043.0,0.6951556397599726 -4044.0,0.6949155829666852 -4045.0,0.6946756090717601 -4046.0,0.69443571804657 -4047.0,0.6941959098624977 -4048.0,0.6939561844909358 -4049.0,0.6937165419032869 -4050.0,0.6934769820709633 -4051.0,0.6932375049653873 -4052.0,0.692998110557991 -4053.0,0.6927587988202164 -4054.0,0.6925195697235154 -4055.0,0.6922804232393497 -4056.0,0.6920413593391909 -4057.0,0.6918023779945203 -4058.0,0.6915634791768291 -4059.0,0.6913246628576187 -4060.0,0.6910859290083999 -4061.0,0.6908472776006935 -4062.0,0.6906087086060301 -4063.0,0.6903702219959502 -4064.0,0.690131817742004 -4065.0,0.6898934958157518 -4066.0,0.6896552561887633 -4067.0,0.6894170988326184 -4068.0,0.6891790237189066 -4069.0,0.6889410308192274 -4070.0,0.6887031201051897 -4071.0,0.6884652915484128 -4072.0,0.6882275451205254 -4073.0,0.6879898807931659 -4074.0,0.6877522985379829 -4075.0,0.6875147983266345 -4076.0,0.6872773801307887 -4077.0,0.687040043922123 -4078.0,0.6868027896723252 -4079.0,0.6865656173530926 -4080.0,0.6863285269361321 -4081.0,0.6860915183931606 -4082.0,0.6858545916959047 -4083.0,0.6856177468161009 -4084.0,0.685380983725495 -4085.0,0.6851443023958433 -4086.0,0.6849077027989113 -4087.0,0.6846711849064744 -4088.0,0.6844347486903175 -4089.0,0.6841983941222358 -4090.0,0.6839621211740339 -4091.0,0.6837259298175259 -4092.0,0.6834898200245361 -4093.0,0.6832537917668983 -4094.0,0.683017845016456 -4095.0,0.6827819797450625 -4096.0,0.6825461959245808 -4097.0,0.6823104935268837 -4098.0,0.6820748725238533 -4099.0,0.6818393328873822 -4100.0,0.6816038745893719 -4101.0,0.681368497601734 -4102.0,0.6811332018963898 -4103.0,0.6808979874452703 -4104.0,0.680662854220316 -4105.0,0.6804278021934773 -4106.0,0.6801928313367142 -4107.0,0.6799579416219963 -4108.0,0.679723133021303 -4109.0,0.6794884055066235 -4110.0,0.6792537590499563 -4111.0,0.67901919362331 -4112.0,0.6787847091987025 -4113.0,0.6785503057481616 -4114.0,0.6783159832437246 -4115.0,0.6780817416574385 -4116.0,0.6778475809613601 -4117.0,0.6776135011275558 -4118.0,0.6773795021281014 -4119.0,0.6771455839350826 -4120.0,0.6769117465205947 -4121.0,0.6766779898567427 -4122.0,0.6764443139156409 -4123.0,0.6762107186694135 -4124.0,0.6759772040901945 -4125.0,0.675743770150127 -4126.0,0.6755104168213644 -4127.0,0.675277144076069 -4128.0,0.6750439518864133 -4129.0,0.674810840224579 -4130.0,0.6745778090627578 -4131.0,0.6743448583731506 -4132.0,0.6741119881279681 -4133.0,0.6738791982994307 -4134.0,0.6736464888597681 -4135.0,0.6734138597812198 -4136.0,0.673181311036035 -4137.0,0.6729488425964721 -4138.0,0.6727164544347997 -4139.0,0.672484146523295 -4140.0,0.6722519188342458 -4141.0,0.672019771339949 -4142.0,0.6717877040127108 -4143.0,0.6715557168248476 -4144.0,0.6713238097486849 -4145.0,0.6710919827565578 -4146.0,0.6708602358208112 -4147.0,0.6706285689137992 -4148.0,0.6703969820078857 -4149.0,0.670165475075444 -4150.0,0.6699340480888571 -4151.0,0.6697027010205175 -4152.0,0.669471433842827 -4153.0,0.6692402465281974 -4154.0,0.6690091390490495 -4155.0,0.6687781113778138 -4156.0,0.6685471634869307 -4157.0,0.6683162953488494 -4158.0,0.6680855069360293 -4159.0,0.667854798220939 -4160.0,0.6676241691760565 -4161.0,0.6673936197738696 -4162.0,0.6671631499868753 -4163.0,0.6669327597875803 -4164.0,0.6667024491485007 -4165.0,0.6664722180421622 -4166.0,0.6662420664410997 -4167.0,0.6660119943178581 -4168.0,0.6657820016449912 -4169.0,0.6655520883950627 -4170.0,0.6653222545406456 -4171.0,0.6650925000543224 -4172.0,0.664862824908685 -4173.0,0.6646332290763349 -4174.0,0.6644037125298831 -4175.0,0.6641742752419496 -4176.0,0.6639449171851646 -4177.0,0.663715638332167 -4178.0,0.6634864386556057 -4179.0,0.663257318128139 -4180.0,0.6630282767224343 -4181.0,0.6627993144111686 -4182.0,0.6625704311670284 -4183.0,0.6623416269627096 -4184.0,0.6621129017709175 -4185.0,0.661884255564367 -4186.0,0.6616556883157821 -4187.0,0.6614271999978966 -4188.0,0.6611987905834533 -4189.0,0.6609704600452048 -4190.0,0.6607422083559127 -4191.0,0.6605140354883483 -4192.0,0.6602859414152925 -4193.0,0.6600579261095351 -4194.0,0.6598299895438755 -4195.0,0.6596021316911226 -4196.0,0.6593743525240947 -4197.0,0.6591466520156193 -4198.0,0.6589190301385335 -4199.0,0.6586914868656836 -4200.0,0.6584640221699253 -4201.0,0.6582366360241237 -4202.0,0.6580093284011534 -4203.0,0.6577820992738983 -4204.0,0.6575549486152515 -4205.0,0.6573278763981156 -4206.0,0.6571008825954026 -4207.0,0.6568739671800338 -4208.0,0.6566471301249397 -4209.0,0.6564203714030604 -4210.0,0.6561936909873453 -4211.0,0.6559670888507529 -4212.0,0.6557405649662514 -4213.0,0.6555141193068181 -4214.0,0.6552877518454396 -4215.0,0.655061462555112 -4216.0,0.6548352514088407 -4217.0,0.6546091183796402 -4218.0,0.6543830634405345 -4219.0,0.6541570865645571 -4220.0,0.6539311877247503 -4221.0,0.6537053668941663 -4222.0,0.653479624045866 -4223.0,0.6532539591529203 -4224.0,0.6530283721884087 -4225.0,0.6528028631254206 -4226.0,0.6525774319370542 -4227.0,0.6523520785964172 -4228.0,0.6521268030766267 -4229.0,0.6519016053508091 -4230.0,0.6516764853920997 -4231.0,0.6514514431736433 -4232.0,0.6512264786685942 -4233.0,0.6510015918501157 -4234.0,0.6507767826913804 -4235.0,0.6505520511655704 -4236.0,0.6503273972458765 -4237.0,0.6501028209054995 -4238.0,0.6498783221176488 -4239.0,0.6496539008555436 -4240.0,0.6494295570924119 -4241.0,0.649205290801491 -4242.0,0.6489811019560279 -4243.0,0.6487569905292783 -4244.0,0.6485329564945073 -4245.0,0.6483089998249894 -4246.0,0.6480851204940081 -4247.0,0.6478613184748563 -4248.0,0.6476375937408361 -4249.0,0.6474139462652586 -4250.0,0.6471903760214444 -4251.0,0.6469668829827232 -4252.0,0.6467434671224338 -4253.0,0.6465201284139245 -4254.0,0.6462968668305525 -4255.0,0.6460736823456843 -4256.0,0.6458505749326958 -4257.0,0.6456275445649717 -4258.0,0.6454045912159062 -4259.0,0.6451817148589025 -4260.0,0.6449589154673733 -4261.0,0.64473619301474 -4262.0,0.6445135474744336 -4263.0,0.644290978819894 -4264.0,0.6440684870245704 -4265.0,0.6438460720619212 -4266.0,0.643623733905414 -4267.0,0.6434014725285254 -4268.0,0.6431792879047411 -4269.0,0.6429571800075563 -4270.0,0.642735148810475 -4271.0,0.6425131942870107 -4272.0,0.6422913164106855 -4273.0,0.6420695151550313 -4274.0,0.6418477904935888 -4275.0,0.6416261423999076 -4276.0,0.641404570847547 -4277.0,0.6411830758100749 -4278.0,0.6409616572610688 -4279.0,0.6407403151741149 -4280.0,0.6405190495228088 -4281.0,0.640297860280755 -4282.0,0.6400767474215673 -4283.0,0.6398557109188686 -4284.0,0.6396347507462908 -4285.0,0.639413866877475 -4286.0,0.6391930592860714 -4287.0,0.6389723279457391 -4288.0,0.6387516728301467 -4289.0,0.6385310939129714 -4290.0,0.6383105911678998 -4291.0,0.6380901645686277 -4292.0,0.6378698140888597 -4293.0,0.6376495397023095 -4294.0,0.6374293413827002 -4295.0,0.6372092191037636 -4296.0,0.6369891728392407 -4297.0,0.6367692025628817 -4298.0,0.6365493082484456 -4299.0,0.6363294898697007 -4300.0,0.6361097474004243 -4301.0,0.6358900808144026 -4302.0,0.6356704900854311 -4303.0,0.6354509751873142 -4304.0,0.6352315360938653 -4305.0,0.635012172778907 -4306.0,0.6347928852162709 -4307.0,0.6345736733797974 -4308.0,0.6343545372433363 -4309.0,0.6341354767807462 -4310.0,0.6339164919658948 -4311.0,0.6336975827726589 -4312.0,0.633478749174924 -4313.0,0.633259991146585 -4314.0,0.6330413086615456 -4315.0,0.6328227016937187 -4316.0,0.632604170217026 -4317.0,0.6323857142053982 -4318.0,0.6321673336327752 -4319.0,0.6319490284731057 -4320.0,0.6317307987003477 -4321.0,0.6315126442884678 -4322.0,0.6312945652114417 -4323.0,0.6310765614432543 -4324.0,0.6308586329578992 -4325.0,0.6306407797293794 -4326.0,0.6304230017317063 -4327.0,0.6302052989389008 -4328.0,0.6299876713249922 -4329.0,0.6297701188640195 -4330.0,0.6295526415300301 -4331.0,0.6293352392970806 -4332.0,0.6291179121392364 -4333.0,0.628900660030572 -4334.0,0.6286834829451708 -4335.0,0.6284663808571253 -4336.0,0.6282493537405366 -4337.0,0.628032401569515 -4338.0,0.6278155243181798 -4339.0,0.6275987219606589 -4340.0,0.6273819944710897 -4341.0,0.6271653418236178 -4342.0,0.6269487639923984 -4343.0,0.6267322609515953 -4344.0,0.6265158326753811 -4345.0,0.6262994791379377 -4346.0,0.6260832003134557 -4347.0,0.6258669961761344 -4348.0,0.6256508667001823 -4349.0,0.6254348118598168 -4350.0,0.6252188316292642 -4351.0,0.6250029259827594 -4352.0,0.6247870948945466 -4353.0,0.6245713383388788 -4354.0,0.6243556562900175 -4355.0,0.6241400487222338 -4356.0,0.6239245156098071 -4357.0,0.6237090569270258 -4358.0,0.6234936726481873 -4359.0,0.623278362747598 -4360.0,0.6230631271995727 -4361.0,0.6228479659784355 -4362.0,0.6226328790585194 -4363.0,0.6224178664141659 -4364.0,0.6222029280197255 -4365.0,0.6219880638495578 -4366.0,0.621773273878031 -4367.0,0.6215585580795222 -4368.0,0.6213439164284174 -4369.0,0.6211293488991114 -4370.0,0.6209148554660079 -4371.0,0.6207004361035193 -4372.0,0.6204860907860671 -4373.0,0.6202718194880813 -4374.0,0.6200576221840011 -4375.0,0.6198434988482739 -4376.0,0.6196294494553568 -4377.0,0.6194154739797151 -4378.0,0.6192015723958231 -4379.0,0.6189877446781639 -4380.0,0.6187739908012293 -4381.0,0.6185603107395201 -4382.0,0.6183467044675459 -4383.0,0.618133171959825 -4384.0,0.6179197131908845 -4385.0,0.6177063281352603 -4386.0,0.6174930167674971 -4387.0,0.6172797790621486 -4388.0,0.6170666149937768 -4389.0,0.6168535245369531 -4390.0,0.616640507666257 -4391.0,0.6164275643562774 -4392.0,0.6162146945816117 -4393.0,0.616001898316866 -4394.0,0.6157891755366554 -4395.0,0.6155765262156034 -4396.0,0.6153639503283427 -4397.0,0.6151514478495144 -4398.0,0.6149390187537686 -4399.0,0.614726663015764 -4400.0,0.614514380610168 -4401.0,0.6143021715116571 -4402.0,0.6140900356949162 -4403.0,0.613877973134639 -4404.0,0.613665983805528 -4405.0,0.6134540676822944 -4406.0,0.6132422247396582 -4407.0,0.613030454952348 -4408.0,0.6128187582951014 -4409.0,0.6126071347426643 -4410.0,0.6123955842697917 -4411.0,0.6121841068512471 -4412.0,0.6119727024618028 -4413.0,0.6117613710762398 -4414.0,0.6115501126693479 -4415.0,0.6113389272159254 -4416.0,0.6111278146907795 -4417.0,0.6109167750687259 -4418.0,0.6107058083245891 -4419.0,0.6104949144332025 -4420.0,0.6102840933694077 -4421.0,0.6100733451080557 -4422.0,0.6098626696240053 -4423.0,0.6096520668921247 -4424.0,0.6094415368872906 -4425.0,0.6092310795843883 -4426.0,0.6090206949583115 -4427.0,0.6088103829839632 -4428.0,0.6086001436362544 -4429.0,0.6083899768901053 -4430.0,0.6081798827204445 -4431.0,0.6079698611022092 -4432.0,0.6077599120103455 -4433.0,0.6075500354198079 -4434.0,0.6073402313055597 -4435.0,0.6071304996425727 -4436.0,0.6069208404058276 -4437.0,0.6067112535703134 -4438.0,0.6065017391110281 -4439.0,0.606292297002978 -4440.0,0.6060829272211784 -4441.0,0.6058736297406528 -4442.0,0.6056644045364336 -4443.0,0.6054552515835617 -4444.0,0.6052461708570869 -4445.0,0.6050371623320671 -4446.0,0.6048282259835692 -4447.0,0.6046193617866688 -4448.0,0.6044105697164497 -4449.0,0.6042018497480046 -4450.0,0.6039932018564347 -4451.0,0.60378462601685 -4452.0,0.6035761222043687 -4453.0,0.603367690394118 -4454.0,0.6031593305612333 -4455.0,0.602951042680859 -4456.0,0.6027428267281476 -4457.0,0.6025346826782608 -4458.0,0.6023266105063684 -4459.0,0.6021186101876488 -4460.0,0.6019106816972891 -4461.0,0.601702825010485 -4462.0,0.6014950401024408 -4463.0,0.6012873269483692 -4464.0,0.6010796855234914 -4465.0,0.6008721158030375 -4466.0,0.6006646177622458 -4467.0,0.6004571913763633 -4468.0,0.6002498366206458 -4469.0,0.6000425534703571 -4470.0,0.5998353419007698 -4471.0,0.5996282018871654 -4472.0,0.5994211334048333 -4473.0,0.5992141364290718 -4474.0,0.5990072109351877 -4475.0,0.5988003568984964 -4476.0,0.5985935742943216 -4477.0,0.5983868630979956 -4478.0,0.5981802232848594 -4479.0,0.5979736548302623 -4480.0,0.5977671577095622 -4481.0,0.5975607318981255 -4482.0,0.5973543773713271 -4483.0,0.5971480941045504 -4484.0,0.5969418820731873 -4485.0,0.5967357412526383 -4486.0,0.5965296716183122 -4487.0,0.5963236731456264 -4488.0,0.5961177458100069 -4489.0,0.5959118895868879 -4490.0,0.5957061044517123 -4491.0,0.5955003903799315 -4492.0,0.5952947473470054 -4493.0,0.5950891753284021 -4494.0,0.5948836742995984 -4495.0,0.5946782442360796 -4496.0,0.5944728851133393 -4497.0,0.5942675969068797 -4498.0,0.5940623795922114 -4499.0,0.5938572331448535 -4500.0,0.5936521575403335 -4501.0,0.5934471527541875 -4502.0,0.5932422187619596 -4503.0,0.593037355539203 -4504.0,0.5928325630614788 -4505.0,0.5926278413043569 -4506.0,0.5924231902434154 -4507.0,0.592218609854241 -4508.0,0.5920141001124286 -4509.0,0.5918096609935819 -4510.0,0.5916052924733126 -4511.0,0.591400994527241 -4512.0,0.5911967671309961 -4513.0,0.5909926102602149 -4514.0,0.5907885238905429 -4515.0,0.5905845079976343 -4516.0,0.5903805625571512 -4517.0,0.5901766875447647 -4518.0,0.5899728829361538 -4519.0,0.5897691487070061 -4520.0,0.5895654848330176 -4521.0,0.5893618912898929 -4522.0,0.5891583680533444 -4523.0,0.5889549150990936 -4524.0,0.5887515324028698 -4525.0,0.5885482199404112 -4526.0,0.5883449776874637 -4527.0,0.5881418056197825 -4528.0,0.5879387037131302 -4529.0,0.5877356719432785 -4530.0,0.587532710286007 -4531.0,0.5873298187171039 -4532.0,0.5871269972123658 -4533.0,0.5869242457475976 -4534.0,0.5867215642986124 -4535.0,0.5865189528412319 -4536.0,0.586316411351286 -4537.0,0.5861139398046128 -4538.0,0.5859115381770592 -4539.0,0.58570920644448 -4540.0,0.5855069445827384 -4541.0,0.5853047525677063 -4542.0,0.5851026303752636 -4543.0,0.5849005779812984 -4544.0,0.5846985953617074 -4545.0,0.5844966824923957 -4546.0,0.5842948393492765 -4547.0,0.5840930659082713 -4548.0,0.58389136214531 -4549.0,0.583689728036331 -4550.0,0.5834881635572805 -4551.0,0.5832866686841136 -4552.0,0.5830852433927934 -4553.0,0.5828838876592912 -4554.0,0.5826826014595868 -4555.0,0.5824813847696683 -4556.0,0.5822802375655318 -4557.0,0.5820791598231821 -4558.0,0.5818781515186321 -4559.0,0.5816772126279028 -4560.0,0.5814763431270239 -4561.0,0.5812755429920329 -4562.0,0.5810748121989759 -4563.0,0.5808741507239072 -4564.0,0.5806735585428894 -4565.0,0.5804730356319933 -4566.0,0.5802725819672978 -4567.0,0.5800721975248904 -4568.0,0.5798718822808667 -4569.0,0.5796716362113306 -4570.0,0.579471459292394 -4571.0,0.5792713515001774 -4572.0,0.5790713128108094 -4573.0,0.5788713432004268 -4574.0,0.5786714426451747 -4575.0,0.5784716111212064 -4576.0,0.5782718486046835 -4577.0,0.5780721550717758 -4578.0,0.5778725304986613 -4579.0,0.5776729748615261 -4580.0,0.5774734881365648 -4581.0,0.5772740702999802 -4582.0,0.5770747213279832 -4583.0,0.5768754411967927 -4584.0,0.5766762298826361 -4585.0,0.576477087361749 -4586.0,0.5762780136103751 -4587.0,0.5760790086047666 -4588.0,0.5758800723211832 -4589.0,0.5756812047358936 -4590.0,0.5754824058251743 -4591.0,0.5752836755653099 -4592.0,0.5750850139325935 -4593.0,0.574886420903326 -4594.0,0.5746878964538169 -4595.0,0.5744894405603836 -4596.0,0.5742910531993518 -4597.0,0.5740927343470552 -4598.0,0.573894483979836 -4599.0,0.5736963020740442 -4600.0,0.5734981886060383 -4601.0,0.5733001435521847 -4602.0,0.5731021668888582 -4603.0,0.5729042585924414 -4604.0,0.5727064186393256 -4605.0,0.5725086470059096 -4606.0,0.5723109436686009 -4607.0,0.5721133086038148 -4608.0,0.571915741787975 -4609.0,0.5717182431975132 -4610.0,0.5715208128088692 -4611.0,0.5713234505984911 -4612.0,0.5711261565428348 -4613.0,0.5709289306183648 -4614.0,0.5707317728015534 -4615.0,0.5705346830688811 -4616.0,0.5703376613968365 -4617.0,0.5701407077619164 -4618.0,0.5699438221406256 -4619.0,0.5697470045094771 -4620.0,0.5695502548449921 -4621.0,0.5693535731236998 -4622.0,0.5691569593221374 -4623.0,0.5689604134168503 -4624.0,0.5687639353843921 -4625.0,0.5685675252013243 -4626.0,0.5683711828442166 -4627.0,0.5681749082896469 -4628.0,0.5679787015142009 -4629.0,0.5677825624944728 -4630.0,0.5675864912070645 -4631.0,0.5673904876285861 -4632.0,0.5671945517356558 -4633.0,0.5669986835049 -4634.0,0.566802882912953 -4635.0,0.5666071499364571 -4636.0,0.5664114845520629 -4637.0,0.5662158867364289 -4638.0,0.5660203564662216 -4639.0,0.565824893718116 -4640.0,0.5656294984687945 -4641.0,0.565434170694948 -4642.0,0.5652389103732752 -4643.0,0.5650437174804832 -4644.0,0.5648485919932867 -4645.0,0.5646535338884089 -4646.0,0.5644585431425804 -4647.0,0.5642636197325406 -4648.0,0.5640687636350363 -4649.0,0.5638739748268227 -4650.0,0.563679253284663 -4651.0,0.5634845989853281 -4652.0,0.5632900119055974 -4653.0,0.563095492022258 -4654.0,0.562901039312105 -4655.0,0.5627066537519417 -4656.0,0.5625123353185794 -4657.0,0.5623180839888372 -4658.0,0.5621238997395424 -4659.0,0.5619297825475301 -4660.0,0.5617357323896438 -4661.0,0.5615417492427345 -4662.0,0.5613478330836615 -4663.0,0.561153983889292 -4664.0,0.5609602016365013 -4665.0,0.5607664863021724 -4666.0,0.5605728378631967 -4667.0,0.5603792562964731 -4668.0,0.560185741578909 -4669.0,0.5599922936874192 -4670.0,0.5597989125989271 -4671.0,0.5596055982903636 -4672.0,0.5594123507386677 -4673.0,0.5592191699207862 -4674.0,0.5590260558136745 -4675.0,0.558833008394295 -4676.0,0.5586400276396188 -4677.0,0.5584471135266248 -4678.0,0.5582542660322994 -4679.0,0.5580614851336377 -4680.0,0.5578687708076422 -4681.0,0.5576761230313234 -4682.0,0.5574835417816998 -4683.0,0.557291027035798 -4684.0,0.5570985787706524 -4685.0,0.5569061969633051 -4686.0,0.5567138815908067 -4687.0,0.556521632630215 -4688.0,0.5563294500585965 -4689.0,0.5561373338530249 -4690.0,0.5559452839905822 -4691.0,0.5557533004483584 -4692.0,0.555561383203451 -4693.0,0.555369532232966 -4694.0,0.5551777475140167 -4695.0,0.5549860290237247 -4696.0,0.5547943767392195 -4697.0,0.5546027906376382 -4698.0,0.554411270696126 -4699.0,0.554219816891836 -4700.0,0.5540284292019292 -4701.0,0.5538371076035743 -4702.0,0.5536458520739482 -4703.0,0.5534546625902355 -4704.0,0.5532635391296286 -4705.0,0.5530724816693279 -4706.0,0.5528814901865415 -4707.0,0.5526905646584858 -4708.0,0.5524997050623845 -4709.0,0.5523089113754697 -4710.0,0.5521181835749808 -4711.0,0.5519275216381656 -4712.0,0.5517369255422794 -4713.0,0.5515463952645855 -4714.0,0.5513559307823551 -4715.0,0.5511655320728671 -4716.0,0.5509751991134084 -4717.0,0.5507849318812736 -4718.0,0.5505947303537653 -4719.0,0.5504045945081937 -4720.0,0.550214524321877 -4721.0,0.5500245197721413 -4722.0,0.5498345808363203 -4723.0,0.5496447074917559 -4724.0,0.5494548997157974 -4725.0,0.5492651574858022 -4726.0,0.5490754807791354 -4727.0,0.54888586957317 -4728.0,0.5486963238452867 -4729.0,0.5485068435728742 -4730.0,0.5483174287333287 -4731.0,0.5481280793040544 -4732.0,0.5479387952624635 -4733.0,0.5477495765859756 -4734.0,0.5475604232520184 -4735.0,0.5473713352380273 -4736.0,0.5471823125214453 -4737.0,0.5469933550797237 -4738.0,0.5468044628903209 -4739.0,0.5466156359307036 -4740.0,0.5464268741783462 -4741.0,0.5462381776107307 -4742.0,0.546049546205347 -4743.0,0.5458609799396926 -4744.0,0.5456724787912731 -4745.0,0.5454840427376018 -4746.0,0.5452956717561993 -4747.0,0.5451073658245945 -4748.0,0.544919124920324 -4749.0,0.544730949020932 -4750.0,0.5445428381039703 -4751.0,0.5443547921469987 -4752.0,0.5441668111275847 -4753.0,0.5439788950233037 -4754.0,0.5437910438117385 -4755.0,0.5436032574704799 -4756.0,0.5434155359771262 -4757.0,0.5432278793092838 -4758.0,0.5430402874445666 -4759.0,0.5428527603605962 -4760.0,0.542665298035002 -4761.0,0.542477900445421 -4762.0,0.5422905675694982 -4763.0,0.5421032993848861 -4764.0,0.5419160958692449 -4765.0,0.5417289570002427 -4766.0,0.5415418827555553 -4767.0,0.5413548731128657 -4768.0,0.5411679280498654 -4769.0,0.540981047544253 -4770.0,0.5407942315737352 -4771.0,0.540607480116026 -4772.0,0.5404207931488475 -4773.0,0.5402341706499293 -4774.0,0.5400476125970085 -4775.0,0.5398611189678304 -4776.0,0.5396746897401473 -4777.0,0.5394883248917198 -4778.0,0.5393020244003159 -4779.0,0.5391157882437113 -4780.0,0.5389296163996894 -4781.0,0.5387435088460412 -4782.0,0.5385574655605654 -4783.0,0.5383714865210685 -4784.0,0.5381855717053644 -4785.0,0.537999721091275 -4786.0,0.5378139346566296 -4787.0,0.5376282123792652 -4788.0,0.5374425542370265 -4789.0,0.5372569602077658 -4790.0,0.5370714302693432 -4791.0,0.5368859643996263 -4792.0,0.5367005625764903 -4793.0,0.5365152247778182 -4794.0,0.5363299509815005 -4795.0,0.5361447411654353 -4796.0,0.5359595953075286 -4797.0,0.5357745133856937 -4798.0,0.5355894953778518 -4799.0,0.5354045412619316 -4800.0,0.5352196510158692 -4801.0,0.5350348246176089 -4802.0,0.5348500620451019 -4803.0,0.5346653632763075 -4804.0,0.5344807282891927 -4805.0,0.5342961570617316 -4806.0,0.5341116495719063 -4807.0,0.5339272057977064 -4808.0,0.5337428257171292 -4809.0,0.5335585093081793 -4810.0,0.5333742565488693 -4811.0,0.533190067417219 -4812.0,0.5330059418912562 -4813.0,0.5328218799490159 -4814.0,0.5326378815685409 -4815.0,0.5324539467278815 -4816.0,0.5322700754050956 -4817.0,0.5320862675782488 -4818.0,0.5319025232254142 -4819.0,0.5317188423246723 -4820.0,0.5315352248541113 -4821.0,0.531351670791827 -4822.0,0.5311681801159228 -4823.0,0.5309847528045096 -4824.0,0.5308013888357058 -4825.0,0.5306180881876374 -4826.0,0.530434850838438 -4827.0,0.5302516767662488 -4828.0,0.5300685659492184 -4829.0,0.529885518365503 -4830.0,0.5297025339932664 -4831.0,0.5295196128106798 -4832.0,0.5293367547959221 -4833.0,0.5291539599271797 -4834.0,0.5289712281826466 -4835.0,0.5287885595405241 -4836.0,0.528605953979021 -4837.0,0.5284234114763541 -4838.0,0.5282409320107473 -4839.0,0.528058515560432 -4840.0,0.5278761621036475 -4841.0,0.5276938716186401 -4842.0,0.527511644083664 -4843.0,0.527329479476981 -4844.0,0.5271473777768597 -4845.0,0.526965338961577 -4846.0,0.526783363009417 -4847.0,0.5266014498986713 -4848.0,0.526419599607639 -4849.0,0.5262378121146265 -4850.0,0.5260560873979481 -4851.0,0.5258744254359252 -4852.0,0.525692826206887 -4853.0,0.5255112896891699 -4854.0,0.525329815861118 -4855.0,0.5251484047010829 -4856.0,0.5249670561874233 -4857.0,0.5247857702985059 -4858.0,0.5246045470127044 -4859.0,0.5244233863084005 -4860.0,0.5242422881639827 -4861.0,0.5240612525578474 -4862.0,0.5238802794683985 -4863.0,0.5236993688740472 -4864.0,0.523518520753212 -4865.0,0.5233377350843192 -4866.0,0.5231570118458025 -4867.0,0.5229763510161027 -4868.0,0.5227957525736685 -4869.0,0.5226152164969556 -4870.0,0.5224347427644276 -4871.0,0.522254331354555 -4872.0,0.5220739822458164 -4873.0,0.5218936954166971 -4874.0,0.5217134708456904 -4875.0,0.5215333085112968 -4876.0,0.5213532083920243 -4877.0,0.5211731704663881 -4878.0,0.5209931947129112 -4879.0,0.5208132811101236 -4880.0,0.520633429636563 -4881.0,0.5204536402707745 -4882.0,0.5202739129913104 -4883.0,0.5200942477767307 -4884.0,0.5199146446056025 -4885.0,0.5197351034565006 -4886.0,0.5195556243080071 -4887.0,0.5193762071387112 -4888.0,0.5191968519272099 -4889.0,0.5190175586521074 -4890.0,0.5188383272920154 -4891.0,0.5186591578255527 -4892.0,0.5184800502313459 -4893.0,0.5183010044880286 -4894.0,0.5181220205742421 -4895.0,0.5179430984686348 -4896.0,0.5177642381498627 -4897.0,0.517585439596589 -4898.0,0.5174067027874844 -4899.0,0.5172280277012268 -4900.0,0.5170494143165016 -4901.0,0.5168708626120017 -4902.0,0.5166923725664269 -4903.0,0.5165139441584847 -4904.0,0.5163355773668902 -4905.0,0.5161572721703651 -4906.0,0.5159790285476392 -4907.0,0.5158008464774493 -4908.0,0.5156227259385394 -4909.0,0.5154446669096612 -4910.0,0.5152666693695734 -4911.0,0.5150887332970423 -4912.0,0.5149108586708414 -4913.0,0.5147330454697516 -4914.0,0.514555293672561 -4915.0,0.5143776032580653 -4916.0,0.5141999742050669 -4917.0,0.5140224064923764 -4918.0,0.513844900098811 -4919.0,0.5136674550031957 -4920.0,0.5134900711843623 -4921.0,0.5133127486211504 -4922.0,0.5131354872924068 -4923.0,0.5129582871769853 -4924.0,0.5127811482537473 -4925.0,0.5126040705015614 -4926.0,0.5124270538993037 -4927.0,0.5122500984258571 -4928.0,0.5120732040601124 -4929.0,0.5118963707809672 -4930.0,0.5117195985673265 -4931.0,0.5115428873981029 -4932.0,0.511366237252216 -4933.0,0.5111896481085926 -4934.0,0.5110131199461669 -4935.0,0.5108366527438806 -4936.0,0.5106602464806822 -4937.0,0.5104839011355278 -4938.0,0.5103076166873807 -4939.0,0.5101313931152115 -4940.0,0.5099552303979978 -4941.0,0.5097791285147251 -4942.0,0.5096030874443853 -4943.0,0.5094271071659782 -4944.0,0.5092511876585105 -4945.0,0.5090753289009965 -4946.0,0.5088995308724573 -4947.0,0.5087237935519217 -4948.0,0.5085481169184253 -4949.0,0.5083725009510113 -4950.0,0.5081969456287299 -4951.0,0.5080214509306387 -4952.0,0.5078460168358024 -4953.0,0.5076706433232931 -4954.0,0.50749533037219 -4955.0,0.5073200779615794 -4956.0,0.5071448860705551 -4957.0,0.506969754678218 -4958.0,0.5067946837636761 -4959.0,0.5066196733060447 -4960.0,0.5064447232844465 -4961.0,0.506269833678011 -4962.0,0.5060950044658755 -4963.0,0.5059202356271838 -4964.0,0.5057455271410873 -4965.0,0.5055708789867448 -4966.0,0.5053962911433217 -4967.0,0.5052217635899913 -4968.0,0.5050472963059335 -4969.0,0.5048728892703357 -4970.0,0.5046985424623923 -4971.0,0.5045242558613052 -4972.0,0.5043500294462832 -4973.0,0.5041758631965422 -4974.0,0.5040017570913056 -4975.0,0.5038277111098038 -4976.0,0.5036537252312744 -4977.0,0.503479799434962 -4978.0,0.5033059337001187 -4979.0,0.5031321280060036 -4980.0,0.5029583823318827 -4981.0,0.5027846966570297 -4982.0,0.5026110709607251 -4983.0,0.5024375052222565 -4984.0,0.5022639994209188 -4985.0,0.5020905535360141 -4986.0,0.5019171675468516 -4987.0,0.5017438414327474 -4988.0,0.5015705751730252 -4989.0,0.5013973687470155 -4990.0,0.5012242221340559 -4991.0,0.5010511353134915 -4992.0,0.5008781082646743 -4993.0,0.5007051409669633 -4994.0,0.5005322333997247 -4995.0,0.5003593855423322 -4996.0,0.5001865973741659 -4997.0,0.5000138688746137 -4998.0,0.4998412000230704 -4999.0,0.4996685907989377 -5000.0,0.49949604118162466 -5001.0,0.49932355115054733 -5002.0,0.4991511206851289 -5003.0,0.49897874976479967 -5004.0,0.49880643836899713 -5005.0,0.4986341864771657 -5006.0,0.49846199406875696 -5007.0,0.4982898611232297 -5008.0,0.4981177876200497 -5009.0,0.4979457735386898 -5010.0,0.49777381885863 -5011.0,0.49760192355935734 -5012.0,0.497430087620366 -5013.0,0.4972583110211572 -5014.0,0.4970865937412392 -5015.0,0.49691493576012746 -5016.0,0.4967433370573443 -5017.0,0.4965717976124194 -5018.0,0.49640031740488927 -5019.0,0.49622889641429757 -5020.0,0.4960575346201951 -5021.0,0.49588623200213955 -5022.0,0.4957149885396958 -5023.0,0.49554380421243577 -5024.0,0.4953726789999384 -5025.0,0.49520161288178977 -5026.0,0.49503060583758285 -5027.0,0.49485965784691777 -5028.0,0.49468876888940166 -5029.0,0.49451793894464874 -5030.0,0.4943471679922803 -5031.0,0.4941764560119245 -5032.0,0.4940058029832167 -5033.0,0.4938352088857993 -5034.0,0.49366467369932154 -5035.0,0.49349419740343986 -5036.0,0.49332377997781773 -5037.0,0.4931534214021256 -5038.0,0.49298312165604086 -5039.0,0.49281288071924806 -5040.0,0.49264269857143866 -5041.0,0.4924725751923112 -5042.0,0.49230251056157115 -5043.0,0.4921325046589311 -5044.0,0.49196255746411055 -5045.0,0.49179266895683604 -5046.0,0.49162283911684107 -5047.0,0.4914530679238663 -5048.0,0.49128335535765916 -5049.0,0.49111370139797417 -5050.0,0.49094410602457295 -5051.0,0.4907745692172239 -5052.0,0.49060509095570254 -5053.0,0.4904356712197914 -5054.0,0.49026630998927984 -5055.0,0.49009700724396443 -5056.0,0.48992776296364854 -5057.0,0.4897585771281425 -5058.0,0.4895894497172638 -5059.0,0.48942038071083666 -5060.0,0.4892513700886924 -5061.0,0.4890824178306693 -5062.0,0.4889135239166126 -5063.0,0.48874468832637447 -5064.0,0.488575911039814 -5065.0,0.48840719203679744 -5066.0,0.4882385312971977 -5067.0,0.48806992880089484 -5068.0,0.4879013845277758 -5069.0,0.48773289845773454 -5070.0,0.4875644705706718 -5071.0,0.48739610084649543 -5072.0,0.4872277892651201 -5073.0,0.48705953580646744 -5074.0,0.48689134045046617 -5075.0,0.4867232031770517 -5076.0,0.4865551239661665 -5077.0,0.48638710279776004 -5078.0,0.4862191396517885 -5079.0,0.4860512345082151 -5080.0,0.48588338734701003 -5081.0,0.4857155981481503 -5082.0,0.48554786689162 -5083.0,0.48538019355740986 -5084.0,0.48521257812551777 -5085.0,0.4850450205759484 -5086.0,0.4848775208887134 -5087.0,0.4847100790438312 -5088.0,0.48454269502132724 -5089.0,0.4843753688012339 -5090.0,0.48420810036359024 -5091.0,0.48404088968844244 -5092.0,0.4838737367558435 -5093.0,0.48370664154585324 -5094.0,0.4835396040385385 -5095.0,0.48337262421397287 -5096.0,0.4832057020522369 -5097.0,0.4830388375334179 -5098.0,0.4828720306376103 -5099.0,0.48270528134491514 -5100.0,0.4825385896354405 -5101.0,0.4823719554893013 -5102.0,0.4822053788866192 -5103.0,0.48203885980752287 -5104.0,0.48187239823214784 -5105.0,0.4817059941406364 -5106.0,0.4815396475131378 -5107.0,0.4813733583298081 -5108.0,0.48120712657081016 -5109.0,0.4810409522163138 -5110.0,0.48087483524649566 -5111.0,0.480708775641539 -5112.0,0.4805427733816344 -5113.0,0.4803768284469789 -5114.0,0.4802109408177764 -5115.0,0.4800451104742377 -5116.0,0.47987933739658056 -5117.0,0.47971362156502945 -5118.0,0.4795479629598156 -5119.0,0.4793823615611772 -5120.0,0.4792168173493592 -5121.0,0.47905133030461344 -5122.0,0.4788859004071984 -5123.0,0.47872052763737954 -5124.0,0.47855521197542916 -5125.0,0.47838995340162627 -5126.0,0.47822475189625674 -5127.0,0.4780596074396132 -5128.0,0.4778945200119951 -5129.0,0.4777294895937088 -5130.0,0.47756451616506723 -5131.0,0.47739959970639045 -5132.0,0.47723474019800505 -5133.0,0.47706993762024447 -5134.0,0.47690519195344894 -5135.0,0.47674050317796557 -5136.0,0.47657587127414813 -5137.0,0.4764112962223573 -5138.0,0.4762467780029604 -5139.0,0.47608231659633166 -5140.0,0.475917911982852 -5141.0,0.4757535641429092 -5142.0,0.4755892730568977 -5143.0,0.4754250387052188 -5144.0,0.4752608610682805 -5145.0,0.4750967401264977 -5146.0,0.4749326758602919 -5147.0,0.47476866825009145 -5148.0,0.4746047172763314 -5149.0,0.4744408229194536 -5150.0,0.47427698515990674 -5151.0,0.47411320397814605 -5152.0,0.4739494793546337 -5153.0,0.4737858112698385 -5154.0,0.4736221997042361 -5155.0,0.4734586446383087 -5156.0,0.4732951460525456 -5157.0,0.47313170392744236 -5158.0,0.4729683182435017 -5159.0,0.4728049889812328 -5160.0,0.47264171612115174 -5161.0,0.4724784996437812 -5162.0,0.4723153395296507 -5163.0,0.4721522357592964 -5164.0,0.4719891883132612 -5165.0,0.47182619717209473 -5166.0,0.4716632623163533 -5167.0,0.4715003837266001 -5168.0,0.4713375613834047 -5169.0,0.4711747952673438 -5170.0,0.4710120853590004 -5171.0,0.47084943163896453 -5172.0,0.47068683408783274 -5173.0,0.4705242926862083 -5174.0,0.4703618074147013 -5175.0,0.4701993782539283 -5176.0,0.4700370051845128 -5177.0,0.4698746881870848 -5178.0,0.46971242724228107 -5179.0,0.46955022233074506 -5180.0,0.469388073433127 -5181.0,0.4692259805300836 -5182.0,0.4690639436022784 -5183.0,0.46890196263038153 -5184.0,0.46874003759506994 -5185.0,0.46857816847702705 -5186.0,0.46841635525694314 -5187.0,0.468254597915515 -5188.0,0.4680928964334462 -5189.0,0.46793125079144693 -5190.0,0.46776966097023404 -5191.0,0.46760812695053106 -5192.0,0.4674466487130681 -5193.0,0.4672852262385821 -5194.0,0.46712385950781643 -5195.0,0.46696254850152125 -5196.0,0.46680129320045327 -5197.0,0.46664009358537606 -5198.0,0.4664789496370595 -5199.0,0.46631786133628045 -5200.0,0.46615682866382213 -5201.0,0.4659958516004746 -5202.0,0.4658349301270344 -5203.0,0.46567406422430485 -5204.0,0.4655132538730958 -5205.0,0.46535249905422366 -5206.0,0.4651917997485116 -5207.0,0.46503115593678945 -5208.0,0.4648705675998935 -5209.0,0.46471003471866673 -5210.0,0.46454955727395875 -5211.0,0.46438913524662573 -5212.0,0.4642287686175306 -5213.0,0.4640684573675427 -5214.0,0.4639082014775381 -5215.0,0.4637480009283994 -5216.0,0.46358785570101585 -5217.0,0.46342776577628336 -5218.0,0.46326773113510433 -5219.0,0.46310775175838775 -5220.0,0.46294782762704934 -5221.0,0.4627879587220112 -5222.0,0.46262814502420224 -5223.0,0.46246838651455774 -5224.0,0.4623086831740198 -5225.0,0.4621490349835369 -5226.0,0.46198944192406416 -5227.0,0.46182990397656337 -5228.0,0.4616704211220028 -5229.0,0.4615109933413572 -5230.0,0.46135162061560814 -5231.0,0.46119230292574354 -5232.0,0.461033040252758 -5233.0,0.4608738325776526 -5234.0,0.460714679881435 -5235.0,0.46055558214511955 -5236.0,0.46039653934972696 -5237.0,0.4602375514762846 -5238.0,0.4600786185058264 -5239.0,0.4599197404193928 -5240.0,0.4597609171980308 -5241.0,0.459602148822794 -5242.0,0.4594434352747424 -5243.0,0.45928477653494265 -5244.0,0.459126172584468 -5245.0,0.458967623404398 -5246.0,0.4588091289758191 -5247.0,0.45865068927982394 -5248.0,0.4584923042975118 -5249.0,0.4583339740099886 -5250.0,0.4581756983983666 -5251.0,0.4580174774437647 -5252.0,0.4578593111273083 -5253.0,0.4577011994301294 -5254.0,0.45754314233336624 -5255.0,0.4573851398181639 -5256.0,0.4572271918656738 -5257.0,0.45706929845705385 -5258.0,0.4569114595734686 -5259.0,0.456753675196089 -5260.0,0.4565959453060925 -5261.0,0.4564382698846631 -5262.0,0.45628064891299125 -5263.0,0.45612308237227384 -5264.0,0.4559655702437145 -5265.0,0.45580811250852304 -5266.0,0.455650709147916 -5267.0,0.45549336014311625 -5268.0,0.45533606547535327 -5269.0,0.45517882512586283 -5270.0,0.4550216390758874 -5271.0,0.45486450730667577 -5272.0,0.4547074297994833 -5273.0,0.45455040653557177 -5274.0,0.45439343749620953 -5275.0,0.4542365226626712 -5276.0,0.45407966201623806 -5277.0,0.4539228555381977 -5278.0,0.4537661032098444 -5279.0,0.4536094050124786 -5280.0,0.4534527609274074 -5281.0,0.45329617093594426 -5282.0,0.45313963501940924 -5283.0,0.4529831531591287 -5284.0,0.4528267253364354 -5285.0,0.4526703515326688 -5286.0,0.45251403172917454 -5287.0,0.45235776590730487 -5288.0,0.4522015540484184 -5289.0,0.4520453961338801 -5290.0,0.4518892921450616 -5291.0,0.4517332420633408 -5292.0,0.451577245870102 -5293.0,0.45142130354673604 -5294.0,0.4512654150746402 -5295.0,0.451109580435218 -5296.0,0.4509537996098795 -5297.0,0.4507980725800413 -5298.0,0.45064239932712624 -5299.0,0.45048677983256363 -5300.0,0.4503312140777892 -5301.0,0.45017570204424506 -5302.0,0.4500202437133799 -5303.0,0.4498648390666485 -5304.0,0.4497094880855123 -5305.0,0.44955419075143904 -5306.0,0.4493989470459029 -5307.0,0.44924375695038443 -5308.0,0.4490886204463706 -5309.0,0.4489335375153547 -5310.0,0.4487785081388365 -5311.0,0.44862353229832214 -5312.0,0.4484686099753242 -5313.0,0.44831374115136136 -5314.0,0.44815892580795913 -5315.0,0.44800416392664905 -5316.0,0.44784945548896915 -5317.0,0.4476948004764639 -5318.0,0.4475401988706841 -5319.0,0.44738565065318675 -5320.0,0.4472311558055356 -5321.0,0.44707671430930035 -5322.0,0.44692232614605737 -5323.0,0.44676799129738926 -5324.0,0.44661370974488496 -5325.0,0.4464594814701398 -5326.0,0.4463053064547556 -5327.0,0.4461511846803402 -5328.0,0.4459971161285081 -5329.0,0.4458431007808801 -5330.0,0.44568913861908316 -5331.0,0.44553522962475084 -5332.0,0.44538137377952286 -5333.0,0.44522757106504535 -5334.0,0.4450738214629708 -5335.0,0.4449201249549579 -5336.0,0.44476648152267195 -5337.0,0.44461289114778424 -5338.0,0.44445935381197255 -5339.0,0.4443058694969212 -5340.0,0.44415243818432043 -5341.0,0.44399905985586713 -5342.0,0.44384573449326425 -5343.0,0.44369246207822133 -5344.0,0.44353924259245403 -5345.0,0.44338607601768437 -5346.0,0.4432329623356407 -5347.0,0.4430799015280577 -5348.0,0.44292689357667625 -5349.0,0.44277393846324375 -5350.0,0.44262103616951365 -5351.0,0.4424681866772459 -5352.0,0.44231538996820663 -5353.0,0.4421626460241683 -5354.0,0.44200995482690975 -5355.0,0.4418573163582159 -5356.0,0.4417047305998782 -5357.0,0.4415521975336942 -5358.0,0.4413997171414679 -5359.0,0.44124728940500946 -5360.0,0.44109491430613534 -5361.0,0.4409425918266684 -5362.0,0.44079032194843754 -5363.0,0.4406381046532782 -5364.0,0.44048593992303187 -5365.0,0.44033382773954644 -5366.0,0.4401817680846761 -5367.0,0.4400297609402811 -5368.0,0.4398778062882282 -5369.0,0.4397259041103903 -5370.0,0.4395740543886466 -5371.0,0.43942225710488253 -5372.0,0.43927051224098973 -5373.0,0.43911881977886613 -5374.0,0.43896717970041604 -5375.0,0.4388155919875498 -5376.0,0.4386640566221841 -5377.0,0.43851257358624196 -5378.0,0.4383611428616525 -5379.0,0.43820976443035115 -5380.0,0.4380584382742796 -5381.0,0.4379071643753856 -5382.0,0.4377559427156235 -5383.0,0.4376047732769535 -5384.0,0.43745365604134223 -5385.0,0.4373025909907625 -5386.0,0.4371515781071934 -5387.0,0.43700061737262014 -5388.0,0.4368497087690342 -5389.0,0.4366988522784333 -5390.0,0.43654804788282137 -5391.0,0.43639729556420853 -5392.0,0.43624659530461113 -5393.0,0.4360959470860517 -5394.0,0.43594535089055914 -5395.0,0.4357948067001682 -5396.0,0.4356443144969202 -5397.0,0.43549387426286257 -5398.0,0.43534348598004874 -5399.0,0.43519314963053857 -5400.0,0.43504286519639807 -5401.0,0.4348926326596993 -5402.0,0.43474245200252065 -5403.0,0.4345923232069467 -5404.0,0.43444224625506817 -5405.0,0.4342922211289819 -5406.0,0.4341422478107911 -5407.0,0.4339923262826049 -5408.0,0.43384245652653897 -5409.0,0.43369263852471474 -5410.0,0.43354287225926014 -5411.0,0.433393157712309 -5412.0,0.43324349486600167 -5413.0,0.4330938837024843 -5414.0,0.43294432420390944 -5415.0,0.4327948163524357 -5416.0,0.4326453601302279 -5417.0,0.432495955519457 -5418.0,0.43234660250230017 -5419.0,0.4321973010609406 -5420.0,0.43204805117756784 -5421.0,0.4318988528343773 -5422.0,0.43174970601357077 -5423.0,0.43160061069735617 -5424.0,0.4314515668679475 -5425.0,0.4313025745075649 -5426.0,0.4311536335984346 -5427.0,0.4310047441227892 -5428.0,0.4308559060628671 -5429.0,0.43070711940091316 -5430.0,0.4305583841191781 -5431.0,0.4304097001999189 -5432.0,0.4302610676253987 -5433.0,0.4301124863778866 -5434.0,0.4299639564396582 -5435.0,0.42981547779299467 -5436.0,0.42966705042018377 -5437.0,0.42951867430351914 -5438.0,0.42937034942530056 -5439.0,0.429222075767834 -5440.0,0.4290738533134315 -5441.0,0.42892568204441117 -5442.0,0.4287775619430973 -5443.0,0.4286294929918202 -5444.0,0.4284814751729163 -5445.0,0.4283335084687282 -5446.0,0.42818559286160457 -5447.0,0.4280377283339001 -5448.0,0.4278899148679757 -5449.0,0.4277421524461982 -5450.0,0.4275944410509407 -5451.0,0.42744678066458225 -5452.0,0.42729917126950806 -5453.0,0.4271516128481095 -5454.0,0.4270041053827838 -5455.0,0.4268566488559345 -5456.0,0.426709243249971 -5457.0,0.426561888547309 -5458.0,0.42641458473037 -5459.0,0.42626733178158194 -5460.0,0.4261201296833785 -5461.0,0.4259729784181995 -5462.0,0.4258258779684909 -5463.0,0.4256788283167048 -5464.0,0.42553182944529905 -5465.0,0.4253848813367379 -5466.0,0.4252379839734915 -5467.0,0.425091137338036 -5468.0,0.42494434141285375 -5469.0,0.42479759618043295 -5470.0,0.4246509016232681 -5471.0,0.42450425772385947 -5472.0,0.4243576644647136 -5473.0,0.42421112182834303 -5474.0,0.4240646297972662 -5475.0,0.42391818835400774 -5476.0,0.4237717974810982 -5477.0,0.42362545716107425 -5478.0,0.42347916737647856 -5479.0,0.4233329281098598 -5480.0,0.4231867393437727 -5481.0,0.423040601060778 -5482.0,0.42289451324344246 -5483.0,0.42274847587433895 -5484.0,0.4226024889360462 -5485.0,0.422456552411149 -5486.0,0.42231066628223823 -5487.0,0.4221648305319108 -5488.0,0.42201904514276944 -5489.0,0.4218733100974231 -5490.0,0.4217276253784867 -5491.0,0.42158199096858096 -5492.0,0.4214364068503329 -5493.0,0.42129087300637535 -5494.0,0.4211453894193472 -5495.0,0.4209999560718933 -5496.0,0.42085457294666445 -5497.0,0.42070924002631765 -5498.0,0.4205639572935156 -5499.0,0.42041872473092723 -5500.0,0.42027354232122727 -5501.0,0.42012841004709656 -5502.0,0.4199833278912219 -5503.0,0.41983829583629595 -5504.0,0.41969331386501757 -5505.0,0.4195483819600914 -5506.0,0.41940350010422817 -5507.0,0.41925866828014446 -5508.0,0.4191138864705629 -5509.0,0.4189691546582121 -5510.0,0.41882447282582663 -5511.0,0.41867984095614696 -5512.0,0.4185352590319196 -5513.0,0.41839072703589697 -5514.0,0.41824624495083745 -5515.0,0.4181018127595054 -5516.0,0.4179574304446711 -5517.0,0.41781309798911076 -5518.0,0.4176688153756066 -5519.0,0.41752458258694675 -5520.0,0.41738039960592527 -5521.0,0.4172362664153422 -5522.0,0.4170921829980036 -5523.0,0.4169481493367212 -5524.0,0.4168041654143129 -5525.0,0.41666023121360257 -5526.0,0.4165163467174197 -5527.0,0.41637251190860014 -5528.0,0.41622872676998524 -5529.0,0.4160849912844226 -5530.0,0.41594130543476565 -5531.0,0.4157976692038737 -5532.0,0.4156540825746119 -5533.0,0.41551054552985156 -5534.0,0.4153670580524696 -5535.0,0.41522362012534914 -5536.0,0.41508023173137903 -5537.0,0.41493689285345403 -5538.0,0.41479360347447497 -5539.0,0.41465036357734836 -5540.0,0.4145071731449868 -5541.0,0.41436403216030865 -5542.0,0.4142209406062383 -5543.0,0.414077898465706 -5544.0,0.4139349057216477 -5545.0,0.41379196235700555 -5546.0,0.4136490683547275 -5547.0,0.41350622369776713 -5548.0,0.4133634283690843 -5549.0,0.4132206823516445 -5550.0,0.41307798562841913 -5551.0,0.41293533818238565 -5552.0,0.4127927399965271 -5553.0,0.41265019105383266 -5554.0,0.41250769133729726 -5555.0,0.41236524082992165 -5556.0,0.4122228395147126 -5557.0,0.41208048737468267 -5558.0,0.4119381843928503 -5559.0,0.4117959305522397 -5560.0,0.41165372583588106 -5561.0,0.41151157022681045 -5562.0,0.4113694637080697 -5563.0,0.41122740626270654 -5564.0,0.41108539787377457 -5565.0,0.4109434385243332 -5566.0,0.41080152819744764 -5567.0,0.41065966687618916 -5568.0,0.4105178545436347 -5569.0,0.41037609118286705 -5570.0,0.4102343767769749 -5571.0,0.4100927113090527 -5572.0,0.40995109476220093 -5573.0,0.4098095271195256 -5574.0,0.40966800836413886 -5575.0,0.4095265384791585 -5576.0,0.40938511744770817 -5577.0,0.40924374525291735 -5578.0,0.40910242187792145 -5579.0,0.4089611473058615 -5580.0,0.40881992151988467 -5581.0,0.40867874450314357 -5582.0,0.4085376162387969 -5583.0,0.4083965367100091 -5584.0,0.4082555058999503 -5585.0,0.40811452379179664 -5586.0,0.40797359036873 -5587.0,0.407832705613938 -5588.0,0.40769186951061415 -5589.0,0.4075510820419577 -5590.0,0.4074103431911738 -5591.0,0.40726965294147327 -5592.0,0.40712901127607276 -5593.0,0.4069884181781948 -5594.0,0.40684787363106767 -5595.0,0.40670737761792536 -5596.0,0.4065669301220078 -5597.0,0.4064265311265606 -5598.0,0.4062861806148351 -5599.0,0.4061458785700886 -5600.0,0.4060056249755841 -5601.0,0.40586541981459034 -5602.0,0.40572526307038187 -5603.0,0.405585154726239 -5604.0,0.4054450947654478 -5605.0,0.4053050831713002 -5606.0,0.40516511992709386 -5607.0,0.4050252050161321 -5608.0,0.4048853384217241 -5609.0,0.40474552012718484 -5610.0,0.404605750115835 -5611.0,0.40446602837100104 -5612.0,0.40432635487601515 -5613.0,0.40418672961421537 -5614.0,0.4040471525689453 -5615.0,0.40390762372355454 -5616.0,0.4037681430613983 -5617.0,0.40362871056583743 -5618.0,0.4034893262202388 -5619.0,0.40334999000797483 -5620.0,0.4032107019124237 -5621.0,0.40307146191696935 -5622.0,0.4029322700050015 -5623.0,0.40279312615991547 -5624.0,0.40265403036511255 -5625.0,0.4025149826039996 -5626.0,0.40237598285998916 -5627.0,0.40223703111649967 -5628.0,0.4020981273569551 -5629.0,0.40195927156478534 -5630.0,0.40182046372342584 -5631.0,0.40168170381631785 -5632.0,0.40154299182690834 -5633.0,0.40140432773865 -5634.0,0.4012657115350011 -5635.0,0.40112714319942594 -5636.0,0.40098862271539415 -5637.0,0.4008501500663813 -5638.0,0.4007117252358686 -5639.0,0.4005733482073431 -5640.0,0.4004350189642973 -5641.0,0.4002967374902295 -5642.0,0.40015850376864376 -5643.0,0.4000203177830499 -5644.0,0.39988217951696325 -5645.0,0.39974408895390495 -5646.0,0.3996060460774018 -5647.0,0.3994680508709863 -5648.0,0.3993301033181966 -5649.0,0.3991922034025766 -5650.0,0.3990543511076758 -5651.0,0.3989165464170495 -5652.0,0.3987787893142585 -5653.0,0.39864107978286945 -5654.0,0.3985034178064546 -5655.0,0.3983658033685919 -5656.0,0.39822823645286487 -5657.0,0.39809071704286286 -5658.0,0.39795324512218083 -5659.0,0.3978158206744193 -5660.0,0.39767844368318456 -5661.0,0.3975411141320885 -5662.0,0.3974038320047488 -5663.0,0.3972665972847887 -5664.0,0.397129409955837 -5665.0,0.3969922700015283 -5666.0,0.39685517740550286 -5667.0,0.3967181321514065 -5668.0,0.39658113422289065 -5669.0,0.3964441836036125 -5670.0,0.3963072802772349 -5671.0,0.3961704242274262 -5672.0,0.3960336154378605 -5673.0,0.3958968538922175 -5674.0,0.3957601395741826 -5675.0,0.39562347246744667 -5676.0,0.3954868525557064 -5677.0,0.3953502798226641 -5678.0,0.3952137542520275 -5679.0,0.3950772758275101 -5680.0,0.39494084453283107 -5681.0,0.3948044603517152 -5682.0,0.39466812326789275 -5683.0,0.39453183326509983 -5684.0,0.3943955903270779 -5685.0,0.39425939443757424 -5686.0,0.3941232455803417 -5687.0,0.3939871437391386 -5688.0,0.39385108889772913 -5689.0,0.3937150810398828 -5690.0,0.39357912014937496 -5691.0,0.39344320620998646 -5692.0,0.39330733920550376 -5693.0,0.3931715191197188 -5694.0,0.3930357459364294 -5695.0,0.39290001963943877 -5696.0,0.39276434021255563 -5697.0,0.39262870763959457 -5698.0,0.3924931219043755 -5699.0,0.3923575829907241 -5700.0,0.3922220908824715 -5701.0,0.39208664556345457 -5702.0,0.39195124701751566 -5703.0,0.39181589522850263 -5704.0,0.391680590180269 -5705.0,0.391545331856674 -5706.0,0.39141012024158217 -5707.0,0.39127495531886375 -5708.0,0.39113983707239464 -5709.0,0.3910047654860561 -5710.0,0.3908697405437352 -5711.0,0.39073476222932435 -5712.0,0.39059983052672165 -5713.0,0.3904649454198308 -5714.0,0.39033010689256087 -5715.0,0.3901953149288267 -5716.0,0.3900605695125485 -5717.0,0.38992587062765227 -5718.0,0.3897912182580692 -5719.0,0.38965661238773647 -5720.0,0.3895220530005965 -5721.0,0.3893875400805973 -5722.0,0.3892530736116924 -5723.0,0.38911865357784114 -5724.0,0.388984279963008 -5725.0,0.38884995275116324 -5726.0,0.3887156719262826 -5727.0,0.3885814374723474 -5728.0,0.3884472493733444 -5729.0,0.388313107613266 -5730.0,0.38817901217610995 -5731.0,0.3880449630458797 -5732.0,0.3879109602065842 -5733.0,0.38777700364223794 -5734.0,0.38764309333686076 -5735.0,0.3875092292744781 -5736.0,0.38737541143912113 -5737.0,0.38724163981482623 -5738.0,0.38710791438563547 -5739.0,0.3869742351355963 -5740.0,0.3868406020487619 -5741.0,0.38670701510919075 -5742.0,0.38657347430094685 -5743.0,0.38643997960809984 -5744.0,0.3863065310147247 -5745.0,0.38617312850490204 -5746.0,0.3860397720627179 -5747.0,0.38590646167226383 -5748.0,0.3857731973176368 -5749.0,0.3856399789829395 -5750.0,0.3855068066522799 -5751.0,0.38537368030977137 -5752.0,0.3852405999395331 -5753.0,0.3851075655256894 -5754.0,0.38497457705237037 -5755.0,0.3848416345037114 -5756.0,0.3847087378638534 -5757.0,0.3845758871169428 -5758.0,0.3844430822471315 -5759.0,0.3843103232385767 -5760.0,0.38417761007544143 -5761.0,0.3840449427418939 -5762.0,0.3839123212221078 -5763.0,0.3837797455002624 -5764.0,0.3836472155605423 -5765.0,0.3835147313871378 -5766.0,0.3833822929642444 -5767.0,0.3832499002760632 -5768.0,0.3831175533068007 -5769.0,0.38298525204066886 -5770.0,0.38285299646188514 -5771.0,0.38272078655467234 -5772.0,0.3825886223032589 -5773.0,0.3824565036918785 -5774.0,0.38232443070477035 -5775.0,0.3821924033261791 -5776.0,0.3820604215403549 -5777.0,0.3819284853315533 -5778.0,0.3817965946840352 -5779.0,0.3816647495820671 -5780.0,0.3815329500099207 -5781.0,0.3814011959518734 -5782.0,0.38126948739220784 -5783.0,0.3811378243152122 -5784.0,0.38100620670518 -5785.0,0.3808746345464102 -5786.0,0.3807431078232072 -5787.0,0.38061162651988084 -5788.0,0.38048019062074634 -5789.0,0.38034880011012445 -5790.0,0.3802174549723411 -5791.0,0.38008615519172784 -5792.0,0.3799549007526216 -5793.0,0.37982369163936464 -5794.0,0.3796925278363046 -5795.0,0.37956140932779475 -5796.0,0.3794303360981935 -5797.0,0.3792993081318648 -5798.0,0.37916832541317796 -5799.0,0.3790373879265077 -5800.0,0.37890649565623413 -5801.0,0.3787756485867428 -5802.0,0.3786448467024245 -5803.0,0.3785140899876756 -5804.0,0.37838337842689784 -5805.0,0.3782527120044981 -5806.0,0.37812209070488906 -5807.0,0.37799151451248836 -5808.0,0.37786098341171925 -5809.0,0.3777304973870104 -5810.0,0.3776000564227957 -5811.0,0.37746966050351455 -5812.0,0.3773393096136116 -5813.0,0.377209003737537 -5814.0,0.37707874285974624 -5815.0,0.37694852696470005 -5816.0,0.3768183560368647 -5817.0,0.3766882300607117 -5818.0,0.376558149020718 -5819.0,0.37642811290136585 -5820.0,0.37629812168714294 -5821.0,0.3761681753625422 -5822.0,0.37603827391206207 -5823.0,0.37590841732020613 -5824.0,0.37577860557148357 -5825.0,0.3756488386504087 -5826.0,0.3755191165415013 -5827.0,0.37538943922928647 -5828.0,0.3752598066982946 -5829.0,0.3751302189330616 -5830.0,0.3750006759181285 -5831.0,0.37487117763804173 -5832.0,0.37474172407735323 -5833.0,0.37461231522062 -5834.0,0.3744829510524046 -5835.0,0.37435363155727475 -5836.0,0.3742243567198036 -5837.0,0.3740951265245696 -5838.0,0.3739659409561566 -5839.0,0.3738367999991536 -5840.0,0.3737077036381551 -5841.0,0.3735786518577608 -5842.0,0.3734496446425758 -5843.0,0.3733206819772104 -5844.0,0.37319176384628044 -5845.0,0.3730628902344068 -5846.0,0.37293406112621585 -5847.0,0.3728052765063392 -5848.0,0.37267653635941383 -5849.0,0.3725478406700819 -5850.0,0.37241918942299096 -5851.0,0.37229058260279396 -5852.0,0.3721620201941489 -5853.0,0.3720335021817194 -5854.0,0.371905028550174 -5855.0,0.3717765992841868 -5856.0,0.37164821436843726 -5857.0,0.3715198737876098 -5858.0,0.37139157752639446 -5859.0,0.3712633255694864 -5860.0,0.371135117901586 -5861.0,0.3710069545073991 -5862.0,0.3708788353716368 -5863.0,0.37075076047901534 -5864.0,0.3706227298142563 -5865.0,0.37049474336208665 -5866.0,0.37036680110723846 -5867.0,0.3702389030344492 -5868.0,0.3701110491284615 -5869.0,0.36998323937402333 -5870.0,0.369855473755888 -5871.0,0.36972775225881394 -5872.0,0.36960007486756496 -5873.0,0.36947244156691 -5874.0,0.36934485234162334 -5875.0,0.3692173071764846 -5876.0,0.3690898060562785 -5877.0,0.36896234896579516 -5878.0,0.36883493588982974 -5879.0,0.36870756681318295 -5880.0,0.36858024172066045 -5881.0,0.3684529605970734 -5882.0,0.368325723427238 -5883.0,0.36819853019597587 -5884.0,0.3680713808881137 -5885.0,0.3679442754884835 -5886.0,0.36781721398192263 -5887.0,0.36769019635327344 -5888.0,0.36756322258738383 -5889.0,0.36743629266910655 -5890.0,0.36730940658329997 -5891.0,0.3671825643148273 -5892.0,0.3670557658485574 -5893.0,0.36692901116936405 -5894.0,0.36680230026212635 -5895.0,0.36667563311172846 -5896.0,0.3665490097030602 -5897.0,0.3664224300210161 -5898.0,0.3662958940504961 -5899.0,0.36616940177640567 -5900.0,0.3660429531836549 -5901.0,0.3659165482571595 -5902.0,0.3657901869818403 -5903.0,0.3656638693426234 -5904.0,0.3655375953244398 -5905.0,0.3654113649122262 -5906.0,0.365285178090924 -5907.0,0.3651590348454802 -5908.0,0.36503293516084667 -5909.0,0.3649068790219808 -5910.0,0.3647808664138449 -5911.0,0.3646548973214067 -5912.0,0.36452897172963883 -5913.0,0.3644030896235195 -5914.0,0.3642772509880317 -5915.0,0.36415145580816394 -5916.0,0.3640257040689096 -5917.0,0.36389999575526755 -5918.0,0.3637743308522418 -5919.0,0.36364870934484117 -5920.0,0.3635231312180802 -5921.0,0.36339759645697817 -5922.0,0.36327210504655977 -5923.0,0.3631466569718547 -5924.0,0.3630212522178981 -5925.0,0.3628958907697299 -5926.0,0.36277057261239554 -5927.0,0.3626452977309453 -5928.0,0.362520066110435 -5929.0,0.3623948777359253 -5930.0,0.36226973259248224 -5931.0,0.36214463066517677 -5932.0,0.36201957193908524 -5933.0,0.361894556399289 -5934.0,0.3617695840308748 -5935.0,0.36164465481893404 -5936.0,0.36151976874856373 -5937.0,0.36139492580486593 -5938.0,0.3612701259729477 -5939.0,0.36114536923792145 -5940.0,0.36102065558490437 -5941.0,0.3608959849990193 -5942.0,0.3607713574653938 -5943.0,0.36064677296916076 -5944.0,0.3605222314954581 -5945.0,0.360397733029429 -5946.0,0.3602732775562216 -5947.0,0.3601488650609895 -5948.0,0.3600244955288909 -5949.0,0.3599001689450896 -5950.0,0.35977588529475424 -5951.0,0.35965164456305887 -5952.0,0.3595274467351823 -5953.0,0.3594032917963087 -5954.0,0.35927917973162726 -5955.0,0.3591551105263323 -5956.0,0.3590310841656234 -5957.0,0.358907100634705 -5958.0,0.3587831599187868 -5959.0,0.3586592620030835 -5960.0,0.3585354068728152 -5961.0,0.35841159451320664 -5962.0,0.3582878249094881 -5963.0,0.35816409804689453 -5964.0,0.3580404139106665 -5965.0,0.35791677248604914 -5966.0,0.3577931737582931 -5967.0,0.35766961771265393 -5968.0,0.35754610433439227 -5969.0,0.3574226336087738 -5970.0,0.35729920552106953 -5971.0,0.3571758200565552 -5972.0,0.35705247720051203 -5973.0,0.3569291769382259 -5974.0,0.35680591925498806 -5975.0,0.35668270413609493 -5976.0,0.35655953156684755 -5977.0,0.3564364015325527 -5978.0,0.35631331401852145 -5979.0,0.3561902690100707 -5980.0,0.3560672664925219 -5981.0,0.35594430645120184 -5982.0,0.35582138887144216 -5983.0,0.3556985137385798 -5984.0,0.35557568103795656 -5985.0,0.35545289075491954 -5986.0,0.35533014287482056 -5987.0,0.3552074373830169 -5988.0,0.3550847742648705 -5989.0,0.3549621535057487 -5990.0,0.3548395750910236 -5991.0,0.35471703900607265 -5992.0,0.354594545236278 -5993.0,0.35447209376702715 -5994.0,0.3543496845837126 -5995.0,0.3542273176717316 -5996.0,0.3541049930164869 -5997.0,0.35398271060338593 -5998.0,0.3538604704178414 -5999.0,0.3537382724452708 -6000.0,0.35361611667109694 -6001.0,0.35349400308074735 -6002.0,0.353371931659655 -6003.0,0.35324990239325754 -6004.0,0.35312791526699777 -6005.0,0.35300597026632347 -6006.0,0.35288406737668765 -6007.0,0.35276220658354795 -6008.0,0.3526403878723675 -6009.0,0.352518611228614 -6010.0,0.3523968766377606 -6011.0,0.352275184085285 -6012.0,0.3521535335566704 -6013.0,0.3520319250374047 -6014.0,0.3519103585129808 -6015.0,0.3517888339688969 -6016.0,0.35166735139065575 -6017.0,0.3515459107637656 -6018.0,0.3514245120737393 -6019.0,0.351303155306095 -6020.0,0.3511818404463556 -6021.0,0.35106056748004927 -6022.0,0.35093933639270886 -6023.0,0.35081814716987253 -6024.0,0.35069699979708313 -6025.0,0.35057589425988883 -6026.0,0.3504548305438425 -6027.0,0.3503338086345023 -6028.0,0.3502128285174309 -6029.0,0.3500918901781966 -6030.0,0.349970993602372 -6031.0,0.3498501387755352 -6032.0,0.3497293256832692 -6033.0,0.34960855431116167 -6034.0,0.34948782464480566 -6035.0,0.3493671366697988 -6036.0,0.34924649037174404 -6037.0,0.3491258857362491 -6038.0,0.34900532274892676 -6039.0,0.34888480139539463 -6040.0,0.3487643216612756 -6041.0,0.34864388353219705 -6042.0,0.3485234869937918 -6043.0,0.3484031320316973 -6044.0,0.34828281863155625 -6045.0,0.3481625467790159 -6046.0,0.3480423164597289 -6047.0,0.3479221276593525 -6048.0,0.34780198036354915 -6049.0,0.34768187455798605 -6050.0,0.34756181022833554 -6051.0,0.3474417873602749 -6052.0,0.3473218059394861 -6053.0,0.34720186595165636 -6054.0,0.3470819673824776 -6055.0,0.34696211021764695 -6056.0,0.34684229444286613 -6057.0,0.3467225200438422 -6058.0,0.3466027870062867 -6059.0,0.34648309531591664 -6060.0,0.34636344495845345 -6061.0,0.3462438359196238 -6062.0,0.34612426818515923 -6063.0,0.34600474174079615 -6064.0,0.34588525657227587 -6065.0,0.34576581266534484 -6066.0,0.345646410005754 -6067.0,0.34552704857925987 -6068.0,0.3454077283716231 -6069.0,0.34528844936860986 -6070.0,0.3451692115559911 -6071.0,0.3450500149195425 -6072.0,0.34493085944504487 -6073.0,0.34481174511828366 -6074.0,0.3446926719250496 -6075.0,0.344573639851138 -6076.0,0.3444546488823492 -6077.0,0.3443356990044885 -6078.0,0.34421679020336604 -6079.0,0.3440979224647968 -6080.0,0.3439790957746009 -6081.0,0.34386031011860296 -6082.0,0.3437415654826329 -6083.0,0.34362286185252516 -6084.0,0.34350419921411945 -6085.0,0.34338557755326005 -6086.0,0.3432669968557964 -6087.0,0.3431484571075825 -6088.0,0.3430299582944776 -6089.0,0.3429115004023455 -6090.0,0.34279308341705517 -6091.0,0.34267470732448035 -6092.0,0.34255637211049944 -6093.0,0.3424380777609961 -6094.0,0.3423198242618586 -6095.0,0.34220161159898016 -6096.0,0.34208343975825883 -6097.0,0.3419653087255977 -6098.0,0.34184721848690447 -6099.0,0.3417291690280919 -6100.0,0.34161116033507755 -6101.0,0.34149319239378384 -6102.0,0.341375265190138 -6103.0,0.3412573787100723 -6104.0,0.34113953293952354 -6105.0,0.34102172786443374 -6106.0,0.3409039634707496 -6107.0,0.34078623974442257 -6108.0,0.3406685566714093 -6109.0,0.3405509142376708 -6110.0,0.3404333124291734 -6111.0,0.3403157512318879 -6112.0,0.3401982306317902 -6113.0,0.34008075061486087 -6114.0,0.3399633111670855 -6115.0,0.3398459122744543 -6116.0,0.3397285539229626 -6117.0,0.3396112360986102 -6118.0,0.3394939587874022 -6119.0,0.33937672197534796 -6120.0,0.3392595256484623 -6121.0,0.33914236979276424 -6122.0,0.3390252543942782 -6123.0,0.338908179439033 -6124.0,0.3387911449130626 -6125.0,0.3386741508024055 -6126.0,0.33855719709310517 -6127.0,0.33844028377121 -6128.0,0.3383234108227729 -6129.0,0.33820657823385203 -6130.0,0.3380897859905098 -6131.0,0.33797303407881407 -6132.0,0.33785632248483694 -6133.0,0.3377396511946557 -6134.0,0.33762302019435225 -6135.0,0.33750642947001347 -6136.0,0.3373898790077307 -6137.0,0.33727336879360065 -6138.0,0.3371568988137242 -6139.0,0.33704046905420754 -6140.0,0.33692407950116127 -6141.0,0.33680773014070114 -6142.0,0.3366914209589474 -6143.0,0.3365751519420253 -6144.0,0.3364589230760647 -6145.0,0.3363427343472003 -6146.0,0.3362265857415719 -6147.0,0.3361104772453235 -6148.0,0.33599440884460446 -6149.0,0.33587838052556845 -6150.0,0.3357623922743743 -6151.0,0.33564644407718536 -6152.0,0.33553053592016996 -6153.0,0.33541466778950096 -6154.0,0.33529883967135626 -6155.0,0.3351830515519183 -6156.0,0.3350673034173745 -6157.0,0.3349515952539169 -6158.0,0.3348359270477424 -6159.0,0.33472029878505255 -6160.0,0.3346047104520538 -6161.0,0.3344891620349573 -6162.0,0.334373653519979 -6163.0,0.33425818489333947 -6164.0,0.3341427561412642 -6165.0,0.3340273672499835 -6166.0,0.33391201820573213 -6167.0,0.3337967089947499 -6168.0,0.33368143960328117 -6169.0,0.3335662100175753 -6170.0,0.33345102022388606 -6171.0,0.33333587020847233 -6172.0,0.33322075995759737 -6173.0,0.3331056894575295 -6174.0,0.33299065869454153 -6175.0,0.3328756676549113 -6176.0,0.332760716324921 -6177.0,0.33264580469085797 -6178.0,0.33253093273901396 -6179.0,0.3324161004556857 -6180.0,0.3323013078271744 -6181.0,0.33218655483978626 -6182.0,0.332071841479832 -6183.0,0.33195716773362716 -6184.0,0.33184253358749205 -6185.0,0.3317279390277516 -6186.0,0.3316133840407356 -6187.0,0.33149886861277833 -6188.0,0.33138439273021914 -6189.0,0.33126995637940165 -6190.0,0.33115555954667464 -6191.0,0.33104120221839123 -6192.0,0.3309268843809096 -6193.0,0.33081260602059237 -6194.0,0.33069836712380696 -6195.0,0.3305841676769255 -6196.0,0.3304700076663249 -6197.0,0.33035588707838653 -6198.0,0.3302418058994969 -6199.0,0.3301277641160467 -6200.0,0.3300137617144318 -6201.0,0.3298997986810523 -6202.0,0.32978587500231343 -6203.0,0.32967199066462494 -6204.0,0.32955814565440106 -6205.0,0.32944433995806116 -6206.0,0.3293305735620288 -6207.0,0.3292168464527328 -6208.0,0.329103158616606 -6209.0,0.3289895100400865 -6210.0,0.3288759007096167 -6211.0,0.328762330611644 -6212.0,0.3286487997326202 -6213.0,0.3285353080590019 -6214.0,0.3284218555772504 -6215.0,0.32830844227383166 -6216.0,0.3281950681352162 -6217.0,0.32808173314787953 -6218.0,0.32796843729830133 -6219.0,0.3278551805729665 -6220.0,0.3277419629583641 -6221.0,0.3276287844409882 -6222.0,0.32751564500733754 -6223.0,0.3274025446439152 -6224.0,0.32728948333722935 -6225.0,0.3271764610737924 -6226.0,0.3270634778401218 -6227.0,0.32695053362273924 -6228.0,0.32683762840817154 -6229.0,0.32672476218294977 -6230.0,0.32661193493360996 -6231.0,0.32649914664669244 -6232.0,0.3263863973087426 -6233.0,0.3262736869063101 -6234.0,0.32616101542594955 -6235.0,0.3260483828542199 -6236.0,0.32593578917768506 -6237.0,0.32582323438291333 -6238.0,0.32571071845647787 -6239.0,0.32559824138495613 -6240.0,0.3254858031549306 -6241.0,0.3253734037529882 -6242.0,0.32526104316572035 -6243.0,0.3251487213797235 -6244.0,0.32503643838159824 -6245.0,0.3249241941579502 -6246.0,0.32481198869538935 -6247.0,0.3246998219805305 -6248.0,0.3245876939999928 -6249.0,0.3244756047404005 -6250.0,0.3243635541883818 -6251.0,0.32425154233057024 -6252.0,0.3241395691536033 -6253.0,0.3240276346441237 -6254.0,0.3239157387887782 -6255.0,0.32380388157421863 -6256.0,0.3236920629871011 -6257.0,0.32358028301408664 -6258.0,0.3234685416418406 -6259.0,0.3233568388570329 -6260.0,0.32324517464633856 -6261.0,0.3231335489964366 -6262.0,0.323021961894011 -6263.0,0.32291041332575016 -6264.0,0.3227989032783472 -6265.0,0.32268743173849973 -6266.0,0.3225759986929101 -6267.0,0.32246460412828504 -6268.0,0.32235324803133614 -6269.0,0.3222419303887793 -6270.0,0.3221306511873352 -6271.0,0.322019410413729 -6272.0,0.32190820805469056 -6273.0,0.32179704409695414 -6274.0,0.3216859185272588 -6275.0,0.321574831332348 -6276.0,0.3214637824989699 -6277.0,0.3213527720138771 -6278.0,0.3212417998638269 -6279.0,0.3211308660355812 -6280.0,0.32101997051590636 -6281.0,0.32090911329157334 -6282.0,0.32079829434935764 -6283.0,0.3206875136760394 -6284.0,0.32057677125840334 -6285.0,0.3204660670832387 -6286.0,0.3203554011373391 -6287.0,0.32024477340750324 -6288.0,0.32013418388053366 -6289.0,0.3200236325432381 -6290.0,0.3199131193824285 -6291.0,0.31980264438492145 -6292.0,0.3196922075375381 -6293.0,0.3195818088271041 -6294.0,0.3194714482404497 -6295.0,0.3193611257644098 -6296.0,0.3192508413858235 -6297.0,0.3191405950915348 -6298.0,0.3190303868683923 -6299.0,0.31892021670324866 -6300.0,0.3188100845829616 -6301.0,0.318699990494393 -6302.0,0.31858993442440964 -6303.0,0.31847991635988243 -6304.0,0.3183699362876871 -6305.0,0.31825999419470385 -6306.0,0.3181500900678174 -6307.0,0.3180402238939169 -6308.0,0.3179303956598962 -6309.0,0.31782060535265355 -6310.0,0.31771085295909185 -6311.0,0.3176011384661183 -6312.0,0.3174914618606449 -6313.0,0.3173818231295879 -6314.0,0.31727222225986834 -6315.0,0.31716265923841147 -6316.0,0.3170531340521473 -6317.0,0.31694364668801034 -6318.0,0.3168341971329395 -6319.0,0.3167247853738782 -6320.0,0.31661541139777444 -6321.0,0.3165060751915808 -6322.0,0.3163967767422541 -6323.0,0.316287516036756 -6324.0,0.31617829306205225 -6325.0,0.31606910780511366 -6326.0,0.31595996025291495 -6327.0,0.3158508503924358 -6328.0,0.31574177821066013 -6329.0,0.31563274369457645 -6330.0,0.3155237468311776 -6331.0,0.3154147876074613 -6332.0,0.3153058660104292 -6333.0,0.31519698202708807 -6334.0,0.3150881356444486 -6335.0,0.3149793268495263 -6336.0,0.31487055562934113 -6337.0,0.3147618219709174 -6338.0,0.314653125861284 -6339.0,0.31454446728747426 -6340.0,0.3144358462365261 -6341.0,0.3143272626954816 -6342.0,0.31421871665138784 -6343.0,0.31411020809129575 -6344.0,0.3140017370022613 -6345.0,0.3138933033713445 -6346.0,0.31378490718561025 -6347.0,0.3136765484321274 -6348.0,0.31356822709796967 -6349.0,0.3134599431702151 -6350.0,0.31335169663594625 -6351.0,0.31324348748225 -6352.0,0.31313531569621794 -6353.0,0.3130271812649458 -6354.0,0.31291908417553393 -6355.0,0.31281102441508735 -6356.0,0.31270300197071504 -6357.0,0.31259501682953095 -6358.0,0.3124870689786531 -6359.0,0.31237915840520414 -6360.0,0.3122712850963111 -6361.0,0.31216344903910553 -6362.0,0.3120556502207233 -6363.0,0.3119478886283049 -6364.0,0.311840164248995 -6365.0,0.3117324770699431 -6366.0,0.3116248270783027 -6367.0,0.311517214261232 -6368.0,0.3114096386058936 -6369.0,0.3113021000994545 -6370.0,0.3111945987290861 -6371.0,0.3110871344819644 -6372.0,0.31097970734526953 -6373.0,0.31087231730618625 -6374.0,0.31076496435190387 -6375.0,0.31065764846961574 -6376.0,0.31055036964652005 -6377.0,0.31044312786981904 -6378.0,0.31033592312671976 -6379.0,0.31022875540443323 -6380.0,0.31012162469017535 -6381.0,0.310014530971166 -6382.0,0.3099074742346299 -6383.0,0.3098004544677957 -6384.0,0.30969347165789696 -6385.0,0.3095865257921712 -6386.0,0.3094796168578608 -6387.0,0.3093727448422121 -6388.0,0.30926590973247614 -6389.0,0.30915911151590825 -6390.0,0.3090523501797682 -6391.0,0.30894562571132006 -6392.0,0.30883893809783247 -6393.0,0.3087322873265784 -6394.0,0.3086256733848351 -6395.0,0.3085190962598844 -6396.0,0.30841255593901223 -6397.0,0.30830605240950937 -6398.0,0.30819958565867056 -6399.0,0.3080931556737952 -6400.0,0.3079867624421868 -6401.0,0.3078804059511536 -6402.0,0.3077740861880079 -6403.0,0.3076678031400667 -6404.0,0.307561556794651 -6405.0,0.3074553471390866 -6406.0,0.3073491741607033 -6407.0,0.3072430378468355 -6408.0,0.3071369381848219 -6409.0,0.3070308751620056 -6410.0,0.306924848765734 -6411.0,0.306818858983359 -6412.0,0.30671290580223676 -6413.0,0.30660698920972784 -6414.0,0.3065011091931972 -6415.0,0.306395265740014 -6416.0,0.30628945883755204 -6417.0,0.3061836884731892 -6418.0,0.30607795463430804 -6419.0,0.305972257308295 -6420.0,0.30586659648254144 -6421.0,0.3057609721444426 -6422.0,0.3056553842813983 -6423.0,0.3055498328808128 -6424.0,0.30544431793009447 -6425.0,0.3053388394166561 -6426.0,0.30523339732791505 -6427.0,0.3051279916512927 -6428.0,0.30502262237421496 -6429.0,0.304917289484112 -6430.0,0.30481199296841843 -6431.0,0.3047067328145732 -6432.0,0.3046015090100195 -6433.0,0.30449632154220485 -6434.0,0.3043911703985811 -6435.0,0.30428605556660465 -6436.0,0.3041809770337359 -6437.0,0.30407593478743994 -6438.0,0.3039709288151858 -6439.0,0.3038659591044472 -6440.0,0.3037610256427018 -6441.0,0.30365612841743206 -6442.0,0.3035512674161243 -6443.0,0.3034464426262695 -6444.0,0.30334165403536273 -6445.0,0.3032369016309036 -6446.0,0.30313218540039577 -6447.0,0.3030275053313475 -6448.0,0.302922861411271 -6449.0,0.3028182536276832 -6450.0,0.3027136819681052 -6451.0,0.3026091464200622 -6452.0,0.30250464697108403 -6453.0,0.30240018360870446 -6454.0,0.302295756320462 -6455.0,0.30219136509389904 -6456.0,0.3020870099165627 -6457.0,0.30198269077600387 -6458.0,0.3018784076597783 -6459.0,0.3017741605554456 -6460.0,0.30166994945056996 -6461.0,0.3015657743327197 -6462.0,0.30146163518946756 -6463.0,0.3013575320083903 -6464.0,0.3012534647770695 -6465.0,0.30114943348309037 -6466.0,0.30104543811404294 -6467.0,0.3009414786575212 -6468.0,0.3008375551011236 -6469.0,0.3007336674324529 -6470.0,0.3006298156391159 -6471.0,0.30052599970872396 -6472.0,0.3004222196288925 -6473.0,0.30031847538724143 -6474.0,0.3002147669713947 -6475.0,0.30011109436898076 -6476.0,0.30000745756763214 -6477.0,0.29990385655498575 -6478.0,0.29980029131868274 -6479.0,0.29969676184636856 -6480.0,0.29959326812569287 -6481.0,0.2994898101443097 -6482.0,0.2993863878898771 -6483.0,0.2992830013500577 -6484.0,0.29917965051251816 -6485.0,0.29907633536492956 -6486.0,0.29897305589496703 -6487.0,0.2988698120903102 -6488.0,0.29876660393864285 -6489.0,0.29866343142765284 -6490.0,0.29856029454503263 -6491.0,0.2984571932784786 -6492.0,0.29835412761569163 -6493.0,0.2982510975443767 -6494.0,0.298148103052243 -6495.0,0.2980451441270041 -6496.0,0.29794222075637783 -6497.0,0.297839332928086 -6498.0,0.297736480629855 -6499.0,0.2976336638494152 -6500.0,0.29753088257450144 -6501.0,0.29742813679285246 -6502.0,0.29732542649221166 -6503.0,0.29722275166032625 -6504.0,0.29712011228494806 -6505.0,0.2970175083538328 -6506.0,0.2969149398547406 -6507.0,0.2968124067754359 -6508.0,0.2967099091036871 -6509.0,0.29660744682726714 -6510.0,0.29650501993395284 -6511.0,0.2964026284115256 -6512.0,0.29630027224777067 -6513.0,0.29619795143047783 -6514.0,0.2960956659474409 -6515.0,0.29599341578645805 -6516.0,0.2958912009353314 -6517.0,0.2957890213818677 -6518.0,0.2956868771138775 -6519.0,0.2955847681191758 -6520.0,0.29548269438558167 -6521.0,0.2953806559009186 -6522.0,0.295278652653014 -6523.0,0.29517668462969976 -6524.0,0.2950747518188117 -6525.0,0.2949728542081901 -6526.0,0.2948709917856792 -6527.0,0.29476916453912766 -6528.0,0.29466737245638824 -6529.0,0.29456561552531774 -6530.0,0.29446389373377746 -6531.0,0.2943622070696326 -6532.0,0.29426055552075286 -6533.0,0.2941589390750118 -6534.0,0.29405735772028735 -6535.0,0.2939558114444616 -6536.0,0.29385430023542086 -6537.0,0.29375282408105546 -6538.0,0.29365138296926024 -6539.0,0.29354997688793383 -6540.0,0.29344860582497934 -6541.0,0.29334726976830383 -6542.0,0.2932459687058188 -6543.0,0.29314470262543957 -6544.0,0.29304347151508603 -6545.0,0.29294227536268197 -6546.0,0.2928411141561554 -6547.0,0.2927399878834385 -6548.0,0.2926388965324678 -6549.0,0.29253784009118367 -6550.0,0.29243681854753084 -6551.0,0.2923358318894583 -6552.0,0.2922348801049189 -6553.0,0.29213396318186996 -6554.0,0.2920330811082727 -6555.0,0.29193223387209283 -6556.0,0.2918314214612998 -6557.0,0.2917306438638676 -6558.0,0.291629901067774 -6559.0,0.29152919306100133 -6560.0,0.29142851983153567 -6561.0,0.2913278813673676 -6562.0,0.29122727765649153 -6563.0,0.29112670868690627 -6564.0,0.2910261744466147 -6565.0,0.29092567492362376 -6566.0,0.29082521010594464 -6567.0,0.29072477998159246 -6568.0,0.2906243845385869 -6569.0,0.2905240237649513 -6570.0,0.2904236976487135 -6571.0,0.29032340617790514 -6572.0,0.2902231493405624 -6573.0,0.2901229271247252 -6574.0,0.2900227395184379 -6575.0,0.28992258650974867 -6576.0,0.2898224680867102 -6577.0,0.2897223842373789 -6578.0,0.2896223349498156 -6579.0,0.2895223202120851 -6580.0,0.2894223400122564 -6581.0,0.2893223943384027 -6582.0,0.28922248317860094 -6583.0,0.28912260652093275 -6584.0,0.2890227643534833 -6585.0,0.28892295666434237 -6586.0,0.2888231834416035 -6587.0,0.2887234446733645 -6588.0,0.2886237403477273 -6589.0,0.28852407045279793 -6590.0,0.28842443497668635 -6591.0,0.2883248339075069 -6592.0,0.2882252672333778 -6593.0,0.28812573494242166 -6594.0,0.2880262370227648 -6595.0,0.287926773462538 -6596.0,0.28782734424987577 -6597.0,0.2877279493729172 -6598.0,0.28762858881980496 -6599.0,0.28752926257868616 -6600.0,0.28742997063771203 -6601.0,0.28733071298503754 -6602.0,0.28723148960882217 -6603.0,0.28713230049722915 -6604.0,0.2870331456384261 -6605.0,0.28693402502058435 -6606.0,0.28683493863187975 -6607.0,0.28673588646049186 -6608.0,0.2866368684946046 -6609.0,0.2865378847224057 -6610.0,0.28643893513208735 -6611.0,0.2863400197118453 -6612.0,0.28624113844987986 -6613.0,0.2861422913343951 -6614.0,0.28604347835359945 -6615.0,0.28594469949570506 -6616.0,0.28584595474892843 -6617.0,0.28574724410148994 -6618.0,0.2856485675416142 -6619.0,0.2855499250575299 -6620.0,0.28545131663746953 -6621.0,0.28535274226967 -6622.0,0.28525420194237194 -6623.0,0.2851556956438204 -6624.0,0.2850572233622641 -6625.0,0.2849587850859561 -6626.0,0.28486038080315346 -6627.0,0.28476201050211725 -6628.0,0.2846636741711126 -6629.0,0.2845653717984087 -6630.0,0.28446710337227876 -6631.0,0.28436886888100016 -6632.0,0.28427066831285414 -6633.0,0.2841725016561262 -6634.0,0.2840743688991056 -6635.0,0.283976270030086 -6636.0,0.2838782050373649 -6637.0,0.2837801739092437 -6638.0,0.28368217663402817 -6639.0,0.2835842132000279 -6640.0,0.2834862835955566 -6641.0,0.28338838780893183 -6642.0,0.2832905258284756 -6643.0,0.28319269764251337 -6644.0,0.28309490323937525 -6645.0,0.2829971426073949 -6646.0,0.28289941573491023 -6647.0,0.28280172261026315 -6648.0,0.2827040632217996 -6649.0,0.28260643755786946 -6650.0,0.28250884560682676 -6651.0,0.2824112873570295 -6652.0,0.2823137627968397 -6653.0,0.28221627191462323 -6654.0,0.2821188146987504 -6655.0,0.28202139113759506 -6656.0,0.28192400121953537 -6657.0,0.2818266449329535 -6658.0,0.28172932226623537 -6659.0,0.2816320332077713 -6660.0,0.2815347777459553 -6661.0,0.28143755586918556 -6662.0,0.2813403675658641 -6663.0,0.2812432128243972 -6664.0,0.28114609163319493 -6665.0,0.2810490039806715 -6666.0,0.28095194985524496 -6667.0,0.28085492924533756 -6668.0,0.2807579421393754 -6669.0,0.2806609885257887 -6670.0,0.28056406839301146 -6671.0,0.28046718172948193 -6672.0,0.2803703285236422 -6673.0,0.2802735087639384 -6674.0,0.2801767224388206 -6675.0,0.2800799695367429 -6676.0,0.27998325004616353 -6677.0,0.27988656395554434 -6678.0,0.2797899112533515 -6679.0,0.27969329192805503 -6680.0,0.279596705968129 -6681.0,0.2795001533620513 -6682.0,0.27940363409830404 -6683.0,0.279307148165373 -6684.0,0.2792106955517483 -6685.0,0.2791142762459237 -6686.0,0.2790178902363972 -6687.0,0.2789215375116706 -6688.0,0.27882521806024974 -6689.0,0.2787289318706443 -6690.0,0.27863267893136817 -6691.0,0.278536459230939 -6692.0,0.2784402727578786 -6693.0,0.2783441195007125 -6694.0,0.27824799944797024 -6695.0,0.27815191258818567 -6696.0,0.2780558589098961 -6697.0,0.2779598384016432 -6698.0,0.2778638510519722 -6699.0,0.2777678968494327 -6700.0,0.27767197578257796 -6701.0,0.2775760878399654 -6702.0,0.2774802330101561 -6703.0,0.27738441128171554 -6704.0,0.27728862264321263 -6705.0,0.2771928670832207 -6706.0,0.27709714459031665 -6707.0,0.27700145515308155 -6708.0,0.27690579876010035 -6709.0,0.27681017539996194 -6710.0,0.2767145850612591 -6711.0,0.2766190277325887 -6712.0,0.27652350340255133 -6713.0,0.2764280120597517 -6714.0,0.2763325536927984 -6715.0,0.2762371282903039 -6716.0,0.27614173584088475 -6717.0,0.27604637633316115 -6718.0,0.27595104975575757 -6719.0,0.2758557560973021 -6720.0,0.27576049534642705 -6721.0,0.2756652674917684 -6722.0,0.27557007252196625 -6723.0,0.2754749104256644 -6724.0,0.27537978119151085 -6725.0,0.27528468480815727 -6726.0,0.2751896212642594 -6727.0,0.27509459054847685 -6728.0,0.27499959264947316 -6729.0,0.27490462755591577 -6730.0,0.274809695256476 -6731.0,0.27471479573982915 -6732.0,0.27461992899465437 -6733.0,0.27452509500963485 -6734.0,0.27443029377345746 -6735.0,0.2743355252748132 -6736.0,0.2742407895023968 -6737.0,0.274146086444907 -6738.0,0.2740514160910464 -6739.0,0.2739567784295216 -6740.0,0.2738621734490429 -6741.0,0.27376760113832477 -6742.0,0.2736730614860852 -6743.0,0.27357855448104657 -6744.0,0.2734840801119346 -6745.0,0.2733896383674794 -6746.0,0.27329522923641464 -6747.0,0.2732008527074781 -6748.0,0.2731065087694112 -6749.0,0.2730121974109596 -6750.0,0.27291791862087245 -6751.0,0.27282367238790306 -6752.0,0.2727294587008086 -6753.0,0.27263527754834993 -6754.0,0.27254112891929205 -6755.0,0.27244701280240363 -6756.0,0.27235292918645737 -6757.0,0.2722588780602297 -6758.0,0.2721648594125011 -6759.0,0.27207087323205575 -6760.0,0.2719769195076819 -6761.0,0.27188299822817136 -6762.0,0.2717891093823202 -6763.0,0.27169525295892805 -6764.0,0.27160142894679856 -6765.0,0.2715076373347392 -6766.0,0.27141387811156137 -6767.0,0.27132015126608017 -6768.0,0.2712264567871148 -6769.0,0.27113279466348805 -6770.0,0.2710391648840268 -6771.0,0.2709455674375617 -6772.0,0.2708520023129272 -6773.0,0.2707584694989618 -6774.0,0.27066496898450754 -6775.0,0.2705715007584107 -6776.0,0.2704780648095209 -6777.0,0.2703846611266922 -6778.0,0.2702912896987821 -6779.0,0.27019795051465206 -6780.0,0.2701046435631674 -6781.0,0.2700113688331973 -6782.0,0.2699181263136147 -6783.0,0.26982491599329667 -6784.0,0.2697317378611236 -6785.0,0.2696385919059802 -6786.0,0.2695454781167548 -6787.0,0.2694523964823396 -6788.0,0.26935934699163055 -6789.0,0.26926632963352765 -6790.0,0.26917334439693463 -6791.0,0.2690803912707589 -6792.0,0.26898747024391195 -6793.0,0.26889458130530886 -6794.0,0.2688017244438688 -6795.0,0.26870889964851447 -6796.0,0.26861610690817267 -6797.0,0.2685233462117738 -6798.0,0.2684306175482523 -6799.0,0.26833792090654623 -6800.0,0.2682452562755976 -6801.0,0.26815262364435216 -6802.0,0.2680600230017596 -6803.0,0.26796745433677316 -6804.0,0.26787491763835025 -6805.0,0.26778241289545185 -6806.0,0.26768994009704283 -6807.0,0.26759749923209175 -6808.0,0.26750509028957126 -6809.0,0.2674127132584576 -6810.0,0.2673203681277308 -6811.0,0.26722805488637486 -6812.0,0.2671357735233773 -6813.0,0.26704352402772985 -6814.0,0.2669513063884277 -6815.0,0.2668591205944699 -6816.0,0.2667669666348595 -6817.0,0.2666748444986031 -6818.0,0.2665827541747113 -6819.0,0.2664906956521983 -6820.0,0.2663986689200822 -6821.0,0.2663066739673849 -6822.0,0.266214710783132 -6823.0,0.2661227793563532 -6824.0,0.26603087967608147 -6825.0,0.26593901173135404 -6826.0,0.2658471755112116 -6827.0,0.2657553710046988 -6828.0,0.26566359820086416 -6829.0,0.26557185708875963 -6830.0,0.2654801476574414 -6831.0,0.2653884698959689 -6832.0,0.265296823793406 -6833.0,0.26520520933881975 -6834.0,0.2651136265212813 -6835.0,0.2650220753298654 -6836.0,0.26493055575365076 -6837.0,0.26483906778171973 -6838.0,0.26474761140315844 -6839.0,0.26465618660705686 -6840.0,0.26456479338250866 -6841.0,0.2644734317186112 -6842.0,0.2643821016044659 -6843.0,0.2642908030291775 -6844.0,0.26419953598185497 -6845.0,0.26410830045161066 -6846.0,0.2640170964275609 -6847.0,0.2639259238988257 -6848.0,0.2638347828545288 -6849.0,0.26374367328379794 -6850.0,0.26365259517576417 -6851.0,0.26356154851956265 -6852.0,0.2634705333043321 -6853.0,0.2633795495192152 -6854.0,0.2632885971533581 -6855.0,0.263197676195911 -6856.0,0.2631067866360275 -6857.0,0.26301592846286537 -6858.0,0.26292510166558564 -6859.0,0.2628343062333536 -6860.0,0.2627435421553378 -6861.0,0.26265280942071084 -6862.0,0.26256210801864893 -6863.0,0.26247143793833216 -6864.0,0.2623807991689441 -6865.0,0.26229019169967227 -6866.0,0.2621996155197079 -6867.0,0.26210907061824584 -6868.0,0.26201855698448484 -6869.0,0.2619280746076272 -6870.0,0.26183762347687906 -6871.0,0.2617472035814502 -6872.0,0.26165681491055437 -6873.0,0.2615664574534086 -6874.0,0.26147613119923413 -6875.0,0.2613858361372555 -6876.0,0.2612955722567014 -6877.0,0.2612053395468038 -6878.0,0.26111513799679875 -6879.0,0.2610249675959257 -6880.0,0.2609348283334281 -6881.0,0.260844720198553 -6882.0,0.2607546431805511 -6883.0,0.2606645972686768 -6884.0,0.2605745824521884 -6885.0,0.2604845987203478 -6886.0,0.26039464606242047 -6887.0,0.2603047244676759 -6888.0,0.26021483392538686 -6889.0,0.2601249744248303 -6890.0,0.2600351459552865 -6891.0,0.2599453485060396 -6892.0,0.25985558206637743 -6893.0,0.25976584662559155 -6894.0,0.259676142172977 -6895.0,0.25958646869783303 -6896.0,0.2594968261894619 -6897.0,0.2594072146371701 -6898.0,0.2593176340302676 -6899.0,0.25922808435806804 -6900.0,0.25913856560988885 -6901.0,0.2590490777750511 -6902.0,0.25895962084287943 -6903.0,0.2588701948027024 -6904.0,0.25878079964385214 -6905.0,0.25869143535566436 -6906.0,0.2586021019274787 -6907.0,0.25851279934863813 -6908.0,0.25842352760848974 -6909.0,0.25833428669638386 -6910.0,0.2582450766016749 -6911.0,0.2581558973137205 -6912.0,0.2580667488218824 -6913.0,0.2579776311155258 -6914.0,0.2578885441840196 -6915.0,0.2577994880167363 -6916.0,0.2577104626030523 -6917.0,0.25762146793234736 -6918.0,0.25753250399400524 -6919.0,0.257443570777413 -6920.0,0.2573546682719617 -6921.0,0.25726579646704584 -6922.0,0.25717695535206364 -6923.0,0.2570881449164172 -6924.0,0.25699936514951177 -6925.0,0.2569106160407569 -6926.0,0.25682189757956514 -6927.0,0.2567332097553533 -6928.0,0.2566445525575414 -6929.0,0.2565559259755534 -6930.0,0.25646732999881666 -6931.0,0.25637876461676246 -6932.0,0.2562902298188255 -6933.0,0.2562017255944443 -6934.0,0.2561132519330609 -6935.0,0.25602480882412104 -6936.0,0.2559363962570741 -6937.0,0.25584801422137315 -6938.0,0.25575966270647477 -6939.0,0.2556713417018394 -6940.0,0.25558305119693087 -6941.0,0.25549479118121676 -6942.0,0.2554065616441684 -6943.0,0.2553183625752606 -6944.0,0.25523019396397184 -6945.0,0.2551420557997842 -6946.0,0.25505394807218357 -6947.0,0.2549658707706592 -6948.0,0.2548778238847042 -6949.0,0.2547898074038152 -6950.0,0.25470182131749247 -6951.0,0.25461386561523985 -6952.0,0.254525940286565 -6953.0,0.2544380453209789 -6954.0,0.25435018070799653 -6955.0,0.2542623464371361 -6956.0,0.2541745424979197 -6957.0,0.25408676887987297 -6958.0,0.25399902557252513 -6959.0,0.253911312565409 -6960.0,0.2538236298480611 -6961.0,0.25373597741002163 -6962.0,0.2536483552408341 -6963.0,0.253560763330046 -6964.0,0.2534732016672081 -6965.0,0.2533856702418751 -6966.0,0.2532981690436049 -6967.0,0.2532106980619595 -6968.0,0.2531232572865041 -6969.0,0.25303584670680773 -6970.0,0.25294846631244283 -6971.0,0.25286111609298567 -6972.0,0.2527737960380159 -6973.0,0.2526865061371171 -6974.0,0.2525992463798759 -6975.0,0.2525120167558831 -6976.0,0.2524248172547327 -6977.0,0.25233764786602253 -6978.0,0.2522505085793538 -6979.0,0.2521633993843316 -6980.0,0.25207632027056426 -6981.0,0.251989271227664 -6982.0,0.2519022522452465 -6983.0,0.2518152633129309 -6984.0,0.2517283044203402 -6985.0,0.25164137555710075 -6986.0,0.25155447671284265 -6987.0,0.2514676078771994 -6988.0,0.2513807690398083 -6989.0,0.25129396019031 -6990.0,0.2512071813183489 -6991.0,0.2511204324135729 -6992.0,0.2510337134656335 -6993.0,0.2509470244641857 -6994.0,0.25086036539888823 -6995.0,0.25077373625940325 -6996.0,0.2506871370353965 -6997.0,0.2506005677165373 -6998.0,0.2505140282924987 -6999.0,0.2504275187529571 -7000.0,0.2503410390875925 -7001.0,0.25025458928608857 -7002.0,0.25016816933813246 -7003.0,0.2500817792334149 -7004.0,0.24999541896163013 -7005.0,0.2499090885124761 -7006.0,0.2498227878756541 -7007.0,0.24973651704086922 -7008.0,0.24965027599782982 -7009.0,0.24956406473624818 -7010.0,0.2494778832458397 -7011.0,0.24939173151632374 -7012.0,0.2493056095374229 -7013.0,0.24921951729886357 -7014.0,0.24913345479037544 -7015.0,0.24904742200169203 -7016.0,0.2489614189225501 -7017.0,0.2488754455426902 -7018.0,0.24878950185185636 -7019.0,0.24870358783979604 -7020.0,0.24861770349626044 -7021.0,0.24853184881100404 -7022.0,0.24844602377378514 -7023.0,0.24836022837436533 -7024.0,0.24827446260250993 -7025.0,0.24818872644798762 -7026.0,0.2481030199005708 -7027.0,0.2480173429500352 -7028.0,0.24793169558616027 -7029.0,0.24784607779872883 -7030.0,0.24776048957752742 -7031.0,0.24767493091234585 -7032.0,0.2475894017929777 -7033.0,0.2475039022092199 -7034.0,0.24741843215087303 -7035.0,0.24733299160774105 -7036.0,0.24724758056963161 -7037.0,0.2471621990263558 -7038.0,0.24707684696772814 -7039.0,0.24699152438356686 -7040.0,0.24690623126369352 -7041.0,0.24682096759793332 -7042.0,0.24673573337611485 -7043.0,0.24665052858807038 -7044.0,0.24656535322363554 -7045.0,0.24648020727264958 -7046.0,0.24639509072495513 -7047.0,0.2463100035703985 -7048.0,0.24622494579882934 -7049.0,0.24613991740010094 -7050.0,0.24605491836406995 -7051.0,0.2459699486805967 -7052.0,0.24588500833954485 -7053.0,0.2458000973307817 -7054.0,0.24571521564417792 -7055.0,0.24563036326960774 -7056.0,0.24554554019694902 -7057.0,0.24546074641608281 -7058.0,0.245375981916894 -7059.0,0.24529124668927063 -7060.0,0.24520654072310455 -7061.0,0.24512186400829084 -7062.0,0.2450372165347283 -7063.0,0.244952598292319 -7064.0,0.2448680092709687 -7065.0,0.24478344946058642 -7066.0,0.24469891885108494 -7067.0,0.24461441743238024 -7068.0,0.24452994519439203 -7069.0,0.24444550212704327 -7070.0,0.24436108822026065 -7071.0,0.24427670346397407 -7072.0,0.24419234784811716 -7073.0,0.24410802136262683 -7074.0,0.24402372399744354 -7075.0,0.24393945574251136 -7076.0,0.24385521658777753 -7077.0,0.24377100652319308 -7078.0,0.24368682553871224 -7079.0,0.24360267362429291 -7080.0,0.24351855076989634 -7081.0,0.24343445696548732 -7082.0,0.24335039220103405 -7083.0,0.24326635646650824 -7084.0,0.24318234975188496 -7085.0,0.24309837204714296 -7086.0,0.2430144233422642 -7087.0,0.24293050362723426 -7088.0,0.24284661289204207 -7089.0,0.2427627511266802 -7090.0,0.2426789183211444 -7091.0,0.24259511446543416 -7092.0,0.2425113395495522 -7093.0,0.2424275935635048 -7094.0,0.24234387649730174 -7095.0,0.2422601883409561 -7096.0,0.2421765290844846 -7097.0,0.24209289871790715 -7098.0,0.2420092972312474 -7099.0,0.24192572461453218 -7100.0,0.24184218085779202 -7101.0,0.2417586659510606 -7102.0,0.24167517988437537 -7103.0,0.2415917226477769 -7104.0,0.24150829423130948 -7105.0,0.2414248946250206 -7106.0,0.24134152381896137 -7107.0,0.24125818180318617 -7108.0,0.24117486856775305 -7109.0,0.2410915841027232 -7110.0,0.2410083283981615 -7111.0,0.24092510144413606 -7112.0,0.24084190323071855 -7113.0,0.24075873374798412 -7114.0,0.2406755929860111 -7115.0,0.24059248093488153 -7116.0,0.24050939758468065 -7117.0,0.24042634292549733 -7118.0,0.2403433169474236 -7119.0,0.24026031964055528 -7120.0,0.24017735099499118 -7121.0,0.2400944110008339 -7122.0,0.24001149964818919 -7123.0,0.23992861692716644 -7124.0,0.23984576282787823 -7125.0,0.2397629373404408 -7126.0,0.23968014045497354 -7127.0,0.23959737216159951 -7128.0,0.23951463245044494 -7129.0,0.2394319213116397 -7130.0,0.23934923873531683 -7131.0,0.23926658471161297 -7132.0,0.23918395923066815 -7133.0,0.23910136228262566 -7134.0,0.23901879385763236 -7135.0,0.23893625394583837 -7136.0,0.23885374253739733 -7137.0,0.2387712596224662 -7138.0,0.23868880519120542 -7139.0,0.23860637923377867 -7140.0,0.23852398174035327 -7141.0,0.2384416127010997 -7142.0,0.238359272106192 -7143.0,0.23827695994580747 -7144.0,0.23819467621012694 -7145.0,0.2381124208893345 -7146.0,0.23803019397361774 -7147.0,0.23794799545316753 -7148.0,0.23786582531817826 -7149.0,0.23778368355884755 -7150.0,0.23770157016537652 -7151.0,0.2376194851279697 -7152.0,0.23753742843683487 -7153.0,0.2374554000821833 -7154.0,0.23737340005422958 -7155.0,0.23729142834319175 -7156.0,0.23720948493929112 -7157.0,0.2371275698327525 -7158.0,0.23704568301380394 -7159.0,0.23696382447267705 -7160.0,0.23688199419960657 -7161.0,0.23680019218483087 -7162.0,0.23671841841859148 -7163.0,0.23663667289113344 -7164.0,0.23655495559270504 -7165.0,0.23647326651355807 -7166.0,0.23639160564394757 -7167.0,0.23630997297413206 -7168.0,0.23622836849437326 -7169.0,0.2361467921949364 -7170.0,0.23606524406609009 -7171.0,0.23598372409810608 -7172.0,0.2359022322812598 -7173.0,0.23582076860582973 -7174.0,0.23573933306209796 -7175.0,0.23565792564034974 -7176.0,0.23557654633087383 -7177.0,0.23549519512396216 -7178.0,0.23541387200991026 -7179.0,0.23533257697901677 -7180.0,0.23525131002158386 -7181.0,0.2351700711279169 -7182.0,0.2350888602883248 -7183.0,0.23500767749311952 -7184.0,0.23492652273261672 -7185.0,0.2348453959971351 -7186.0,0.23476429727699696 -7187.0,0.23468322656252766 -7188.0,0.23460218384405615 -7189.0,0.23452116911191467 -7190.0,0.23444018235643865 -7191.0,0.23435922356796704 -7192.0,0.23427829273684195 -7193.0,0.23419738985340904 -7194.0,0.2341165149080171 -7195.0,0.2340356678910184 -7196.0,0.2339548487927684 -7197.0,0.2338740576036261 -7198.0,0.23379329431395351 -7199.0,0.23371255891411638 -7200.0,0.23363185139448336 -7201.0,0.23355117174542678 -7202.0,0.23347051995732207 -7203.0,0.2333898960205481 -7204.0,0.23330929992548696 -7205.0,0.23322873166252422 -7206.0,0.23314819122204858 -7207.0,0.23306767859445218 -7208.0,0.2329871937701305 -7209.0,0.23290673673948223 -7210.0,0.23282630749290947 -7211.0,0.23274590602081757 -7212.0,0.23266553231361525 -7213.0,0.23258518636171446 -7214.0,0.2325048681555306 -7215.0,0.2324245776854822 -7216.0,0.23234431494199126 -7217.0,0.23226407991548295 -7218.0,0.23218387259638593 -7219.0,0.2321036929751319 -7220.0,0.23202354104215617 -7221.0,0.23194341678789707 -7222.0,0.23186332020279646 -7223.0,0.23178325127729932 -7224.0,0.2317032100018541 -7225.0,0.23162319636691234 -7226.0,0.23154321036292907 -7227.0,0.2314632519803626 -7228.0,0.2313833212096744 -7229.0,0.23130341804132934 -7230.0,0.2312235424657955 -7231.0,0.23114369447354438 -7232.0,0.23106387405505063 -7233.0,0.23098408120079236 -7234.0,0.2309043159012507 -7235.0,0.23082457814691043 -7236.0,0.23074486792825924 -7237.0,0.2306651852357884 -7238.0,0.2305855300599923 -7239.0,0.23050590239136867 -7240.0,0.23042630222041846 -7241.0,0.23034672953764604 -7242.0,0.23026718433355886 -7243.0,0.23018766659866788 -7244.0,0.2301081763234871 -7245.0,0.23002871349853396 -7246.0,0.22994927811432916 -7247.0,0.22986987016139657 -7248.0,0.2297904896302635 -7249.0,0.22971113651146027 -7250.0,0.2296318107955208 -7251.0,0.229552512472982 -7252.0,0.22947324153438423 -7253.0,0.22939399797027096 -7254.0,0.22931478177118914 -7255.0,0.2292355929276887 -7256.0,0.2291564314303231 -7257.0,0.2290772972696489 -7258.0,0.22899819043622602 -7259.0,0.2289191109206175 -7260.0,0.22884005871338986 -7261.0,0.2287610338051126 -7262.0,0.22868203618635877 -7263.0,0.2286030658477044 -7264.0,0.22852412277972897 -7265.0,0.22844520697301518 -7266.0,0.2283663184181489 -7267.0,0.22828745710571932 -7268.0,0.2282086230263188 -7269.0,0.22812981617054315 -7270.0,0.22805103652899114 -7271.0,0.22797228409226503 -7272.0,0.22789355885097015 -7273.0,0.22781486079571525 -7274.0,0.22773618991711211 -7275.0,0.22765754620577597 -7276.0,0.22757892965232512 -7277.0,0.2275003402473813 -7278.0,0.2274217779815692 -7279.0,0.2273432428455171 -7280.0,0.22726473482985615 -7281.0,0.2271862539252211 -7282.0,0.22710780012224957 -7283.0,0.22702937341158266 -7284.0,0.22695097378386472 -7285.0,0.22687260122974315 -7286.0,0.22679425573986875 -7287.0,0.22671593730489534 -7288.0,0.22663764591548027 -7289.0,0.2265593815622838 -7290.0,0.2264811442359697 -7291.0,0.22640293392720473 -7292.0,0.22632475062665902 -7293.0,0.2262465943250058 -7294.0,0.2261684650129217 -7295.0,0.22609036268108634 -7296.0,0.22601228732018283 -7297.0,0.2259342389208972 -7298.0,0.22585621747391899 -7299.0,0.22577822296994063 -7300.0,0.22570025539965813 -7301.0,0.2256223147537704 -7302.0,0.22554440102297973 -7303.0,0.22546651419799163 -7304.0,0.22538865426951465 -7305.0,0.22531082122826082 -7306.0,0.22523301506494509 -7307.0,0.22515523577028587 -7308.0,0.22507748333500455 -7309.0,0.2249997577498259 -7310.0,0.22492205900547776 -7311.0,0.22484438709269133 -7312.0,0.22476674200220084 -7313.0,0.22468912372474384 -7314.0,0.22461153225106098 -7315.0,0.22453396757189625 -7316.0,0.22445642967799667 -7317.0,0.2243789185601126 -7318.0,0.22430143420899745 -7319.0,0.224223976615408 -7320.0,0.22414654577010398 -7321.0,0.2240691416638486 -7322.0,0.22399176428740805 -7323.0,0.2239144136315518 -7324.0,0.22383708968705246 -7325.0,0.2237597924446858 -7326.0,0.22368252189523094 -7327.0,0.22360527802946994 -7328.0,0.2235280608381883 -7329.0,0.22345087031217445 -7330.0,0.2233737064422202 -7331.0,0.22329656921912042 -7332.0,0.22321945863367323 -7333.0,0.22314237467667986 -7334.0,0.22306531733894483 -7335.0,0.22298828661127568 -7336.0,0.22291128248448328 -7337.0,0.2228343049493815 -7338.0,0.22275735399678762 -7339.0,0.2226804296175218 -7340.0,0.2226035318024076 -7341.0,0.22252666054227174 -7342.0,0.2224498158279439 -7343.0,0.2223729976502572 -7344.0,0.22229620600004765 -7345.0,0.2222194408681547 -7346.0,0.22214270224542074 -7347.0,0.22206599012269146 -7348.0,0.2219893044908156 -7349.0,0.22191264534064525 -7350.0,0.22183601266303538 -7351.0,0.2217594064488444 -7352.0,0.22168282668893363 -7353.0,0.22160627337416777 -7354.0,0.2215297464954145 -7355.0,0.22145324604354474 -7356.0,0.2213767720094325 -7357.0,0.2213003243839551 -7358.0,0.22122390315799279 -7359.0,0.2211475083224291 -7360.0,0.22107113986815075 -7361.0,0.22099479778604741 -7362.0,0.22091848206701217 -7363.0,0.220842192701941 -7364.0,0.22076592968173323 -7365.0,0.22068969299729113 -7366.0,0.22061348263952035 -7367.0,0.22053729859932944 -7368.0,0.22046114086763027 -7369.0,0.22038500943533773 -7370.0,0.22030890429336994 -7371.0,0.22023282543264805 -7372.0,0.22015677284409652 -7373.0,0.22008074651864265 -7374.0,0.22000474644721726 -7375.0,0.21992877262075392 -7376.0,0.21985282503018963 -7377.0,0.2197769036664643 -7378.0,0.2197010085205211 -7379.0,0.21962513958330637 -7380.0,0.21954929684576938 -7381.0,0.21947348029886274 -7382.0,0.219397689933542 -7383.0,0.21932192574076603 -7384.0,0.2192461877114966 -7385.0,0.21917047583669882 -7386.0,0.2190947901073407 -7387.0,0.21901913051439362 -7388.0,0.2189434970488318 -7389.0,0.21886788970163285 -7390.0,0.21879230846377723 -7391.0,0.2187167533262488 -7392.0,0.21864122428003424 -7393.0,0.21856572131612362 -7394.0,0.21849024442550985 -7395.0,0.2184147935991892 -7396.0,0.21833936882816085 -7397.0,0.21826397010342724 -7398.0,0.21818859741599386 -7399.0,0.21811325075686921 -7400.0,0.2180379301170651 -7401.0,0.2179626354875962 -7402.0,0.21788736685948054 -7403.0,0.21781212422373902 -7404.0,0.21773690757139583 -7405.0,0.21766171689347805 -7406.0,0.2175865521810161 -7407.0,0.2175114134250433 -7408.0,0.21743630061659622 -7409.0,0.21736121374671435 -7410.0,0.21728615280644048 -7411.0,0.21721111778682028 -7412.0,0.21713610867890273 -7413.0,0.2170611254737397 -7414.0,0.2169861681623863 -7415.0,0.2169112367359006 -7416.0,0.2168363311853439 -7417.0,0.2167614515017805 -7418.0,0.21668659767627774 -7419.0,0.2166117696999062 -7420.0,0.21653696756373936 -7421.0,0.21646219125885396 -7422.0,0.21638744077632963 -7423.0,0.21631271610724925 -7424.0,0.2162380172426987 -7425.0,0.21616334417376695 -7426.0,0.216088696891546 -7427.0,0.21601407538713108 -7428.0,0.21593947965162028 -7429.0,0.21586490967611494 -7430.0,0.21579036545171934 -7431.0,0.215715846969541 -7432.0,0.2156413542206903 -7433.0,0.2155668871962809 -7434.0,0.2154924458874293 -7435.0,0.21541803028525527 -7436.0,0.21534364038088163 -7437.0,0.21526927616543412 -7438.0,0.2151949376300417 -7439.0,0.21512062476583618 -7440.0,0.21504633756395278 -7441.0,0.21497207601552942 -7442.0,0.21489784011170734 -7443.0,0.21482362984363065 -7444.0,0.21474944520244668 -7445.0,0.2146752861793057 -7446.0,0.21460115276536113 -7447.0,0.21452704495176927 -7448.0,0.21445296272968978 -7449.0,0.21437890609028504 -7450.0,0.21430487502472073 -7451.0,0.2142308695241654 -7452.0,0.21415688957979082 -7453.0,0.21408293518277163 -7454.0,0.21400900632428566 -7455.0,0.21393510299551377 -7456.0,0.21386122518763978 -7457.0,0.21378737289185065 -7458.0,0.21371354609933627 -7459.0,0.21363974480128972 -7460.0,0.21356596898890698 -7461.0,0.2134922186533872 -7462.0,0.2134184937859324 -7463.0,0.21334479437774787 -7464.0,0.21327112042004168 -7465.0,0.2131974719040252 -7466.0,0.21312384882091254 -7467.0,0.21305025116192117 -7468.0,0.21297667891827127 -7469.0,0.21290313208118636 -7470.0,0.21282961064189268 -7471.0,0.2127561145916198 -7472.0,0.21268264392160008 -7473.0,0.21260919862306904 -7474.0,0.21253577868726523 -7475.0,0.21246238410543009 -7476.0,0.21238901486880832 -7477.0,0.21231567096864734 -7478.0,0.21224235239619793 -7479.0,0.21216905914271356 -7480.0,0.212095791199451 -7481.0,0.21202254855766983 -7482.0,0.21194933120863282 -7483.0,0.2118761391436056 -7484.0,0.21180297235385695 -7485.0,0.21172983083065852 -7486.0,0.21165671456528518 -7487.0,0.21158362354901458 -7488.0,0.21151055777312758 -7489.0,0.21143751722890788 -7490.0,0.21136450190764242 -7491.0,0.2112915118006208 -7492.0,0.21121854689913597 -7493.0,0.21114560719448378 -7494.0,0.21107269267796294 -7495.0,0.21099980334087537 -7496.0,0.21092693917452585 -7497.0,0.21085410017022224 -7498.0,0.21078128631927537 -7499.0,0.2107084976129991 -7500.0,0.21063573404271022 -7501.0,0.21056299559972863 -7502.0,0.21049028227537708 -7503.0,0.21041759406098154 -7504.0,0.21034493094787066 -7505.0,0.2102722929273764 -7506.0,0.2101996799908335 -7507.0,0.2101270921295798 -7508.0,0.21005452933495608 -7509.0,0.20998199159830616 -7510.0,0.20990947891097672 -7511.0,0.20983699126431762 -7512.0,0.20976452864968165 -7513.0,0.2096920910584244 -7514.0,0.20961967848190474 -7515.0,0.20954729091148427 -7516.0,0.2094749283385278 -7517.0,0.20940259075440285 -7518.0,0.20933027815048022 -7519.0,0.20925799051813343 -7520.0,0.20918572784873918 -7521.0,0.20911349013367697 -7522.0,0.20904127736432945 -7523.0,0.2089690895320821 -7524.0,0.20889692662832351 -7525.0,0.20882478864444512 -7526.0,0.2087526755718414 -7527.0,0.20868058740190978 -7528.0,0.20860852412605072 -7529.0,0.2085364857356675 -7530.0,0.20846447222216652 -7531.0,0.20839248357695714 -7532.0,0.20832051979145155 -7533.0,0.20824858085706507 -7534.0,0.20817666676521585 -7535.0,0.20810477750732514 -7536.0,0.20803291307481697 -7537.0,0.20796107345911855 -7538.0,0.2078892586516598 -7539.0,0.2078174686438739 -7540.0,0.2077457034271967 -7541.0,0.2076739629930672 -7542.0,0.20760224733292723 -7543.0,0.2075305564382217 -7544.0,0.20745889030039838 -7545.0,0.20738724891090804 -7546.0,0.2073156322612043 -7547.0,0.20724404034274396 -7548.0,0.20717247314698647 -7549.0,0.2071009306653945 -7550.0,0.20702941288943355 -7551.0,0.206957919810572 -7552.0,0.2068864514202813 -7553.0,0.20681500771003578 -7554.0,0.20674358867131273 -7555.0,0.20667219429559233 -7556.0,0.20660082457435786 -7557.0,0.2065294794990953 -7558.0,0.20645815906129383 -7559.0,0.20638686325244535 -7560.0,0.20631559206404484 -7561.0,0.20624434548759013 -7562.0,0.20617312351458206 -7563.0,0.2061019261365243 -7564.0,0.20603075334492366 -7565.0,0.20595960513128955 -7566.0,0.2058884814871347 -7567.0,0.20581738240397443 -7568.0,0.2057463078733272 -7569.0,0.2056752578867144 -7570.0,0.20560423243566017 -7571.0,0.20553323151169176 -7572.0,0.20546225510633925 -7573.0,0.2053913032111357 -7574.0,0.205320375817617 -7575.0,0.20524947291732215 -7576.0,0.2051785945017928 -7577.0,0.2051077405625738 -7578.0,0.20503691109121272 -7579.0,0.20496610607926016 -7580.0,0.20489532551826956 -7581.0,0.20482456939979737 -7582.0,0.20475383771540281 -7583.0,0.2046831304566482 -7584.0,0.2046124476150986 -7585.0,0.2045417891823222 -7586.0,0.20447115514988978 -7587.0,0.2044005455093753 -7588.0,0.20432996025235559 -7589.0,0.20425939937041027 -7590.0,0.20418886285512203 -7591.0,0.20411835069807624 -7592.0,0.20404786289086146 -7593.0,0.2039773994250689 -7594.0,0.20390696029229288 -7595.0,0.2038365454841304 -7596.0,0.20376615499218162 -7597.0,0.20369578880804934 -7598.0,0.20362544692333953 -7599.0,0.20355512932966077 -7600.0,0.2034848360186248 -7601.0,0.20341456698184604 -7602.0,0.203344322210942 -7603.0,0.20327410169753293 -7604.0,0.20320390543324204 -7605.0,0.20313373340969548 -7606.0,0.20306358561852217 -7607.0,0.20299346205135405 -7608.0,0.20292336269982583 -7609.0,0.20285328755557525 -7610.0,0.20278323661024275 -7611.0,0.20271320985547187 -7612.0,0.2026432072829088 -7613.0,0.2025732288842029 -7614.0,0.20250327465100612 -7615.0,0.20243334457497353 -7616.0,0.2023634386477629 -7617.0,0.20229355686103506 -7618.0,0.2022236992064535 -7619.0,0.20215386567568483 -7620.0,0.20208405626039833 -7621.0,0.20201427095226632 -7622.0,0.20194450974296382 -7623.0,0.20187477262416892 -7624.0,0.20180505958756248 -7625.0,0.2017353706248282 -7626.0,0.20166570572765272 -7627.0,0.2015960648877255 -7628.0,0.20152644809673897 -7629.0,0.20145685534638824 -7630.0,0.20138728662837152 -7631.0,0.20131774193438967 -7632.0,0.2012482212561466 -7633.0,0.2011787245853489 -7634.0,0.20110925191370627 -7635.0,0.20103980323293097 -7636.0,0.2009703785347384 -7637.0,0.2009009778108466 -7638.0,0.20083160105297665 -7639.0,0.20076224825285235 -7640.0,0.20069291940220046 -7641.0,0.20062361449275054 -7642.0,0.20055433351623497 -7643.0,0.20048507646438915 -7644.0,0.2004158433289511 -7645.0,0.2003466341016619 -7646.0,0.20027744877426532 -7647.0,0.20020828733850812 -7648.0,0.20013914978613978 -7649.0,0.20007003610891277 -7650.0,0.20000094629858226 -7651.0,0.1999318803469064 -7652.0,0.19986283824564607 -7653.0,0.1997938199865651 -7654.0,0.19972482556143006 -7655.0,0.1996558549620105 -7656.0,0.19958690818007863 -7657.0,0.19951798520740968 -7658.0,0.1994490860357816 -7659.0,0.19938021065697525 -7660.0,0.19931135906277425 -7661.0,0.19924253124496516 -7662.0,0.19917372719533732 -7663.0,0.19910494690568287 -7664.0,0.19903619036779688 -7665.0,0.19896745757347714 -7666.0,0.19889874851452438 -7667.0,0.19883006318274202 -7668.0,0.19876140156993655 -7669.0,0.19869276366791697 -7670.0,0.1986241494684954 -7671.0,0.19855555896348662 -7672.0,0.1984869921447083 -7673.0,0.1984184490039809 -7674.0,0.19834992953312774 -7675.0,0.19828143372397491 -7676.0,0.19821296156835144 -7677.0,0.198144513058089 -7678.0,0.1980760881850223 -7679.0,0.19800768694098858 -7680.0,0.19793930931782822 -7681.0,0.19787095530738424 -7682.0,0.19780262490150247 -7683.0,0.19773431809203162 -7684.0,0.19766603487082315 -7685.0,0.19759777522973143 -7686.0,0.1975295391606135 -7687.0,0.1974613266553294 -7688.0,0.19739313770574174 -7689.0,0.1973249723037162 -7690.0,0.19725683044112105 -7691.0,0.19718871210982758 -7692.0,0.19712061730170963 -7693.0,0.19705254600864408 -7694.0,0.1969844982225105 -7695.0,0.19691647393519127 -7696.0,0.1968484731385716 -7697.0,0.1967804958245395 -7698.0,0.19671254198498572 -7699.0,0.1966446116118039 -7700.0,0.1965767046968905 -7701.0,0.1965088212321446 -7702.0,0.19644096120946836 -7703.0,0.1963731246207664 -7704.0,0.1963053114579464 -7705.0,0.19623752171291872 -7706.0,0.1961697553775966 -7707.0,0.19610201244389588 -7708.0,0.19603429290373547 -7709.0,0.19596659674903683 -7710.0,0.19589892397172431 -7711.0,0.19583127456372507 -7712.0,0.19576364851696904 -7713.0,0.19569604582338884 -7714.0,0.19562846647492008 -7715.0,0.19556091046350094 -7716.0,0.19549337778107256 -7717.0,0.19542586841957868 -7718.0,0.195358382370966 -7719.0,0.19529091962718398 -7720.0,0.19522348018018468 -7721.0,0.19515606402192318 -7722.0,0.1950886711443571 -7723.0,0.1950213015394471 -7724.0,0.19495395519915637 -7725.0,0.19488663211545104 -7726.0,0.19481933228029993 -7727.0,0.1947520556856747 -7728.0,0.19468480232354965 -7729.0,0.19461757218590206 -7730.0,0.19455036526471178 -7731.0,0.19448318155196156 -7732.0,0.19441602103963684 -7733.0,0.19434888371972592 -7734.0,0.19428176958421972 -7735.0,0.1942146786251121 -7736.0,0.19414761083439952 -7737.0,0.19408056620408132 -7738.0,0.19401354472615961 -7739.0,0.1939465463926391 -7740.0,0.1938795711955275 -7741.0,0.1938126191268351 -7742.0,0.19374569017857501 -7743.0,0.19367878434276306 -7744.0,0.19361190161141795 -7745.0,0.19354504197656097 -7746.0,0.19347820543021635 -7747.0,0.19341139196441087 -7748.0,0.19334460157117428 -7749.0,0.19327783424253886 -7750.0,0.19321108997053987 -7751.0,0.1931443687472151 -7752.0,0.19307767056460529 -7753.0,0.19301099541475375 -7754.0,0.1929443432897067 -7755.0,0.19287771418151292 -7756.0,0.1928111080822241 -7757.0,0.19274452498389472 -7758.0,0.19267796487858171 -7759.0,0.1926114277583451 -7760.0,0.1925449136152474 -7761.0,0.192478422441354 -7762.0,0.19241195422873295 -7763.0,0.19234550896945513 -7764.0,0.192279086655594 -7765.0,0.19221268727922602 -7766.0,0.1921463108324301 -7767.0,0.1920799573072881 -7768.0,0.19201362669588448 -7769.0,0.19194731899030648 -7770.0,0.19188103418264407 -7771.0,0.19181477226499 -7772.0,0.19174853322943966 -7773.0,0.19168231706809125 -7774.0,0.1916161237730456 -7775.0,0.1915499533364064 -7776.0,0.19148380575028 -7777.0,0.19141768100677545 -7778.0,0.19135157909800457 -7779.0,0.19128550001608183 -7780.0,0.19121944375312455 -7781.0,0.19115341030125263 -7782.0,0.19108739965258884 -7783.0,0.19102141179925852 -7784.0,0.19095544673338985 -7785.0,0.1908895044471136 -7786.0,0.19082358493256346 -7787.0,0.1907576881818756 -7788.0,0.1906918141871891 -7789.0,0.1906259629406456 -7790.0,0.19056013443438963 -7791.0,0.19049432866056817 -7792.0,0.19042854561133124 -7793.0,0.19036278527883127 -7794.0,0.19029704765522357 -7795.0,0.1902313327326662 -7796.0,0.19016564050331974 -7797.0,0.19009997095934766 -7798.0,0.190034324092916 -7799.0,0.18996869989619367 -7800.0,0.18990309836135205 -7801.0,0.18983751948056546 -7802.0,0.18977196324601073 -7803.0,0.18970642964986756 -7804.0,0.1896409186843182 -7805.0,0.18957543034154775 -7806.0,0.18950996461374386 -7807.0,0.18944452149309698 -7808.0,0.1893791009718002 -7809.0,0.18931370304204936 -7810.0,0.1892483276960429 -7811.0,0.18918297492598213 -7812.0,0.1891176447240708 -7813.0,0.1890523370825156 -7814.0,0.18898705199352578 -7815.0,0.1889217894493133 -7816.0,0.1888565494420928 -7817.0,0.1887913319640816 -7818.0,0.18872613700749982 -7819.0,0.18866096456457007 -7820.0,0.18859581462751787 -7821.0,0.1885306871885712 -7822.0,0.18846558223996088 -7823.0,0.18840049977392032 -7824.0,0.18833543978268574 -7825.0,0.1882704022584959 -7826.0,0.1882053871935923 -7827.0,0.1881403945802191 -7828.0,0.18807542441062325 -7829.0,0.18801047667705414 -7830.0,0.1879455513717641 -7831.0,0.18788064848700795 -7832.0,0.18781576801504324 -7833.0,0.18775090994813026 -7834.0,0.18768607427853187 -7835.0,0.18762126099851367 -7836.0,0.18755647010034388 -7837.0,0.18749170157629347 -7838.0,0.18742695541863597 -7839.0,0.18736223161964768 -7840.0,0.18729753017160747 -7841.0,0.187232851066797 -7842.0,0.18716819429750045 -7843.0,0.1871035598560048 -7844.0,0.1870389477345996 -7845.0,0.1869743579255771 -7846.0,0.18690979042123218 -7847.0,0.1868452452138625 -7848.0,0.18678072229576817 -7849.0,0.18671622165925217 -7850.0,0.18665174329661996 -7851.0,0.1865872872001798 -7852.0,0.18652285336224256 -7853.0,0.1864584417751217 -7854.0,0.18639405243113344 -7855.0,0.18632968532259653 -7856.0,0.18626534044183254 -7857.0,0.18620101778116552 -7858.0,0.18613671733292228 -7859.0,0.18607243908943222 -7860.0,0.18600818304302744 -7861.0,0.18594394918604262 -7862.0,0.1858797375108152 -7863.0,0.1858155480096851 -7864.0,0.1857513806749951 -7865.0,0.18568723549909041 -7866.0,0.18562311247431904 -7867.0,0.18555901159303148 -7868.0,0.18549493284758112 -7869.0,0.18543087623032367 -7870.0,0.1853668417336177 -7871.0,0.18530282934982445 -7872.0,0.1852388390713076 -7873.0,0.18517487089043363 -7874.0,0.18511092479957156 -7875.0,0.18504700079109315 -7876.0,0.18498309885737266 -7877.0,0.18491921899078714 -7878.0,0.1848553611837161 -7879.0,0.18479152542854183 -7880.0,0.18472771171764912 -7881.0,0.18466392004342558 -7882.0,0.1846001503982612 -7883.0,0.18453640277454883 -7884.0,0.18447267716468374 -7885.0,0.18440897356106403 -7886.0,0.18434529195609026 -7887.0,0.1842816323421657 -7888.0,0.1842179947116962 -7889.0,0.18415437905709028 -7890.0,0.1840907853707591 -7891.0,0.1840272136451163 -7892.0,0.18396366387257831 -7893.0,0.18390013604556404 -7894.0,0.18383663015649518 -7895.0,0.18377314619779583 -7896.0,0.18370968416189293 -7897.0,0.18364624404121582 -7898.0,0.18358282582819663 -7899.0,0.18351942951526995 -7900.0,0.18345605509487317 -7901.0,0.18339270255944606 -7902.0,0.18332937190143125 -7903.0,0.18326606311327376 -7904.0,0.18320277618742137 -7905.0,0.18313951111632434 -7906.0,0.18307626789243572 -7907.0,0.18301304650821093 -7908.0,0.1829498469561082 -7909.0,0.1828866692285883 -7910.0,0.18282351331811447 -7911.0,0.18276037921715285 -7912.0,0.18269726691817184 -7913.0,0.1826341764136427 -7914.0,0.18257110769603913 -7915.0,0.18250806075783757 -7916.0,0.1824450355915169 -7917.0,0.18238203218955873 -7918.0,0.18231905054444714 -7919.0,0.182256090648669 -7920.0,0.18219315249471352 -7921.0,0.18213023607507275 -7922.0,0.18206734138224115 -7923.0,0.1820044684087159 -7924.0,0.18194161714699664 -7925.0,0.18187878758958573 -7926.0,0.18181597972898803 -7927.0,0.181753193557711 -7928.0,0.1816904290682648 -7929.0,0.18162768625316197 -7930.0,0.18156496510491785 -7931.0,0.18150226561605018 -7932.0,0.18143958777907943 -7933.0,0.18137693158652854 -7934.0,0.18131429703092314 -7935.0,0.1812516841047913 -7936.0,0.1811890928006639 -7937.0,0.18112652311107408 -7938.0,0.18106397502855787 -7939.0,0.18100144854565364 -7940.0,0.1809389436549025 -7941.0,0.18087646034884805 -7942.0,0.1808139986200365 -7943.0,0.1807515584610166 -7944.0,0.1806891398643397 -7945.0,0.18062674282255972 -7946.0,0.18056436732823317 -7947.0,0.18050201337391908 -7948.0,0.18043968095217908 -7949.0,0.18037737005557739 -7950.0,0.18031508067668073 -7951.0,0.1802528128080585 -7952.0,0.18019056644228248 -7953.0,0.18012834157192728 -7954.0,0.18006613818956982 -7955.0,0.18000395628778976 -7956.0,0.17994179585916917 -7957.0,0.17987965689629284 -7958.0,0.179817539391748 -7959.0,0.17975544333812452 -7960.0,0.17969336872801475 -7961.0,0.1796313155540137 -7962.0,0.1795692838087188 -7963.0,0.17950727348473022 -7964.0,0.17944528457465045 -7965.0,0.17938331707108476 -7966.0,0.1793213709666409 -7967.0,0.17925944625392903 -7968.0,0.17919754292556211 -7969.0,0.17913566097415545 -7970.0,0.17907380039232704 -7971.0,0.1790119611726973 -7972.0,0.17895014330788933 -7973.0,0.17888834679052862 -7974.0,0.1788265716132434 -7975.0,0.17876481776866424 -7976.0,0.17870308524942444 -7977.0,0.1786413740481597 -7978.0,0.17857968415750838 -7979.0,0.17851801557011127 -7980.0,0.17845636827861183 -7981.0,0.17839474227565588 -7982.0,0.17833313755389202 -7983.0,0.17827155410597112 -7984.0,0.17820999192454678 -7985.0,0.17814845100227514 -7986.0,0.17808693133181475 -7987.0,0.17802543290582679 -7988.0,0.1779639557169749 -7989.0,0.17790249975792538 -7990.0,0.1778410650213469 -7991.0,0.1777796514999108 -7992.0,0.17771825918629083 -7993.0,0.17765688807316343 -7994.0,0.1775955381532074 -7995.0,0.17753420941910417 -7996.0,0.17747290186353765 -7997.0,0.17741161547919435 -7998.0,0.17735035025876314 -7999.0,0.17728910619493565 -8000.0,0.17722788328040584 -8001.0,0.1771666815078703 -8002.0,0.17710550087002805 -8003.0,0.1770443413595807 -8004.0,0.17698320296923245 -8005.0,0.17692208569168982 -8006.0,0.17686098951966206 -8007.0,0.17679991444586074 -8008.0,0.17673886046300016 -8009.0,0.17667782756379694 -8010.0,0.17661681574097035 -8011.0,0.1765558249872421 -8012.0,0.17649485529533646 -8013.0,0.17643390665798014 -8014.0,0.1763729790679025 -8015.0,0.17631207251783523 -8016.0,0.17625118700051268 -8017.0,0.17619032250867162 -8018.0,0.17612947903505138 -8019.0,0.17606865657239376 -8020.0,0.17600785511344313 -8021.0,0.17594707465094622 -8022.0,0.17588631517765246 -8023.0,0.17582557668631368 -8024.0,0.17576485916968415 -8025.0,0.17570416262052083 -8026.0,0.17564348703158292 -8027.0,0.17558283239563238 -8028.0,0.1755221987054335 -8029.0,0.17546158595375316 -8030.0,0.17540099413336063 -8031.0,0.17534042323702784 -8032.0,0.17527987325752906 -8033.0,0.17521934418764115 -8034.0,0.17515883602014337 -8035.0,0.17509834874781766 -8036.0,0.1750378823634482 -8037.0,0.17497743685982187 -8038.0,0.17491701222972791 -8039.0,0.17485660846595819 -8040.0,0.17479622556130686 -8041.0,0.17473586350857073 -8042.0,0.17467552230054914 -8043.0,0.17461520193004368 -8044.0,0.17455490238985868 -8045.0,0.17449462367280075 -8046.0,0.17443436577167917 -8047.0,0.17437412867930555 -8048.0,0.17431391238849409 -8049.0,0.17425371689206134 -8050.0,0.1741935421828265 -8051.0,0.17413338825361116 -8052.0,0.17407325509723937 -8053.0,0.17401314270653767 -8054.0,0.17395305107433512 -8055.0,0.1738929801934632 -8056.0,0.17383293005675593 -8057.0,0.17377290065704973 -8058.0,0.17371289198718354 -8059.0,0.17365290403999875 -8060.0,0.17359293680833926 -8061.0,0.17353299028505145 -8062.0,0.17347306446298402 -8063.0,0.1734131593349884 -8064.0,0.17335327489391825 -8065.0,0.17329341113262983 -8066.0,0.1732335680439818 -8067.0,0.17317374562083537 -8068.0,0.17311394385605408 -8069.0,0.1730541627425041 -8070.0,0.1729944022730539 -8071.0,0.17293466244057457 -8072.0,0.1728749432379395 -8073.0,0.17281524465802472 -8074.0,0.17275556669370856 -8075.0,0.1726959093378719 -8076.0,0.172636272583398 -8077.0,0.17257665642317271 -8078.0,0.1725170608500842 -8079.0,0.17245748585702317 -8080.0,0.17239793143688278 -8081.0,0.17233839758255856 -8082.0,0.17227888428694862 -8083.0,0.17221939154295343 -8084.0,0.17215991934347596 -8085.0,0.17210046768142157 -8086.0,0.17204103654969816 -8087.0,0.17198162594121597 -8088.0,0.17192223584888783 -8089.0,0.17186286626562883 -8090.0,0.1718035171843567 -8091.0,0.17174418859799148 -8092.0,0.17168488049945574 -8093.0,0.1716255928816744 -8094.0,0.17156632573757494 -8095.0,0.17150707906008716 -8096.0,0.17144785284214342 -8097.0,0.17138864707667842 -8098.0,0.1713294617566294 -8099.0,0.17127029687493592 -8100.0,0.17121115242454008 -8101.0,0.17115202839838636 -8102.0,0.1710929247894217 -8103.0,0.1710338415905955 -8104.0,0.1709747787948595 -8105.0,0.17091573639516802 -8106.0,0.17085671438447766 -8107.0,0.1707977127557476 -8108.0,0.17073873150193924 -8109.0,0.17067977061601672 -8110.0,0.1706208300909463 -8111.0,0.1705619099196969 -8112.0,0.1705030100952397 -8113.0,0.17044413061054842 -8114.0,0.17038527145859914 -8115.0,0.17032643263237046 -8116.0,0.17026761412484323 -8117.0,0.1702088159290009 -8118.0,0.17015003803782927 -8119.0,0.17009128044431654 -8120.0,0.17003254314145344 -8121.0,0.1699738261222329 -8122.0,0.16991512937965053 -8123.0,0.16985645290670415 -8124.0,0.16979779669639417 -8125.0,0.16973916074172324 -8126.0,0.1696805450356966 -8127.0,0.16962194957132173 -8128.0,0.16956337434160873 -8129.0,0.16950481933956993 -8130.0,0.16944628455822017 -8131.0,0.16938776999057664 -8132.0,0.16932927562965905 -8133.0,0.16927080146848936 -8134.0,0.16921234750009212 -8135.0,0.1691539137174941 -8136.0,0.16909550011372468 -8137.0,0.16903710668181549 -8138.0,0.16897873341480057 -8139.0,0.16892038030571654 -8140.0,0.16886204734760218 -8141.0,0.16880373453349887 -8142.0,0.16874544185645024 -8143.0,0.1686871693095025 -8144.0,0.16862891688570406 -8145.0,0.1685706845781059 -8146.0,0.16851247237976127 -8147.0,0.16845428028372597 -8148.0,0.168396108283058 -8149.0,0.16833795637081797 -8150.0,0.16827982454006868 -8151.0,0.16822171278387552 -8152.0,0.1681636210953061 -8153.0,0.16810554946743056 -8154.0,0.16804749789332135 -8155.0,0.16798946636605333 -8156.0,0.1679314548787038 -8157.0,0.1678734634243524 -8158.0,0.16781549199608117 -8159.0,0.1677575405869745 -8160.0,0.1676996091901193 -8161.0,0.1676416977986047 -8162.0,0.1675838064055223 -8163.0,0.1675259350039661 -8164.0,0.1674680835870325 -8165.0,0.16741025214782015 -8166.0,0.16735244067943028 -8167.0,0.16729464917496634 -8168.0,0.16723687762753428 -8169.0,0.1671791260302423 -8170.0,0.1671213943762011 -8171.0,0.16706368265852373 -8172.0,0.16700599087032558 -8173.0,0.16694831900472443 -8174.0,0.16689066705484046 -8175.0,0.16683303501379626 -8176.0,0.16677542287471667 -8177.0,0.166717830630729 -8178.0,0.16666025827496295 -8179.0,0.16660270580055056 -8180.0,0.16654517320062617 -8181.0,0.16648766046832666 -8182.0,0.16643016759679108 -8183.0,0.16637269457916104 -8184.0,0.16631524140858034 -8185.0,0.16625780807819532 -8186.0,0.16620039458115451 -8187.0,0.16614300091060902 -8188.0,0.16608562705971208 -8189.0,0.16602827302161952 -8190.0,0.1659709387894893 -8191.0,0.165913624356482 -8192.0,0.16585632971576028 -8193.0,0.1657990548604894 -8194.0,0.1657417997838369 -8195.0,0.16568456447897262 -8196.0,0.16562734893906883 -8197.0,0.16557015315730012 -8198.0,0.16551297712684346 -8199.0,0.16545582084087815 -8200.0,0.1653986842925859 -8201.0,0.16534156747515066 -8202.0,0.16528447038175892 -8203.0,0.1652273930055993 -8204.0,0.16517033533986297 -8205.0,0.1651132973777433 -8206.0,0.16505627911243617 -8207.0,0.1649992805371396 -8208.0,0.1649423016450542 -8209.0,0.16488534242938266 -8210.0,0.1648284028833303 -8211.0,0.16477148300010455 -8212.0,0.1647145827729153 -8213.0,0.16465770219497486 -8214.0,0.16460084125949767 -8215.0,0.1645439999597007 -8216.0,0.16448717828880316 -8217.0,0.16443037624002668 -8218.0,0.16437359380659514 -8219.0,0.16431683098173488 -8220.0,0.16426008775867443 -8221.0,0.16420336413064482 -8222.0,0.16414666009087925 -8223.0,0.1640899756326134 -8224.0,0.1640333107490852 -8225.0,0.16397666543353498 -8226.0,0.1639200396792053 -8227.0,0.16386343347934118 -8228.0,0.16380684682718988 -8229.0,0.16375027971600106 -8230.0,0.16369373213902663 -8231.0,0.16363720408952087 -8232.0,0.16358069556074048 -8233.0,0.16352420654594432 -8234.0,0.16346773703839373 -8235.0,0.16341128703135221 -8236.0,0.16335485651808582 -8237.0,0.16329844549186268 -8238.0,0.16324205394595348 -8239.0,0.163185681873631 -8240.0,0.1631293292681706 -8241.0,0.16307299612284967 -8242.0,0.16301668243094822 -8243.0,0.16296038818574834 -8244.0,0.1629041133805346 -8245.0,0.16284785800859378 -8246.0,0.16279162206321504 -8247.0,0.16273540553768986 -8248.0,0.162679208425312 -8249.0,0.16262303071937756 -8250.0,0.1625668724131849 -8251.0,0.16251073350003487 -8252.0,0.16245461397323036 -8253.0,0.16239851382607684 -8254.0,0.16234243305188187 -8255.0,0.1622863716439555 -8256.0,0.16223032959560998 -8257.0,0.16217430690015994 -8258.0,0.1621183035509222 -8259.0,0.16206231954121603 -8260.0,0.16200635486436293 -8261.0,0.16195040951368675 -8262.0,0.16189448348251353 -8263.0,0.16183857676417182 -8264.0,0.16178268935199228 -8265.0,0.16172682123930798 -8266.0,0.16167097241945422 -8267.0,0.1616151428857687 -8268.0,0.16155933263159133 -8269.0,0.16150354165026434 -8270.0,0.16144776993513232 -8271.0,0.16139201747954207 -8272.0,0.16133628427684277 -8273.0,0.16128057032038579 -8274.0,0.16122487560352494 -8275.0,0.16116920011961616 -8276.0,0.16111354386201787 -8277.0,0.16105790682409057 -8278.0,0.1610022889991973 -8279.0,0.16094669038070314 -8280.0,0.16089111096197564 -8281.0,0.16083555073638456 -8282.0,0.160780009697302 -8283.0,0.16072448783810225 -8284.0,0.16066898515216205 -8285.0,0.16061350163286026 -8286.0,0.16055803727357815 -8287.0,0.16050259206769918 -8288.0,0.16044716600860917 -8289.0,0.16039175908969622 -8290.0,0.16033637130435063 -8291.0,0.1602810026459651 -8292.0,0.1602256531079345 -8293.0,0.16017032268365608 -8294.0,0.16011501136652928 -8295.0,0.16005971914995593 -8296.0,0.16000444602733996 -8297.0,0.1599491919920878 -8298.0,0.15989395703760798 -8299.0,0.15983874115731142 -8300.0,0.15978354434461123 -8301.0,0.15972836659292286 -8302.0,0.15967320789566394 -8303.0,0.15961806824625455 -8304.0,0.15956294763811685 -8305.0,0.15950784606467538 -8306.0,0.15945276351935692 -8307.0,0.1593976999955905 -8308.0,0.15934265548680754 -8309.0,0.1592876299864415 -8310.0,0.15923262348792833 -8311.0,0.15917763598470608 -8312.0,0.15912266747021525 -8313.0,0.15906771793789837 -8314.0,0.15901278738120048 -8315.0,0.15895787579356865 -8316.0,0.15890298316845244 -8317.0,0.1588481094993035 -8318.0,0.15879325477957582 -8319.0,0.1587384190027256 -8320.0,0.15868360216221136 -8321.0,0.1586288042514938 -8322.0,0.15857402526403605 -8323.0,0.15851926519330323 -8324.0,0.15846452403276298 -8325.0,0.158409801775885 -8326.0,0.15835509841614134 -8327.0,0.15830041394700636 -8328.0,0.15824574836195648 -8329.0,0.15819110165447062 -8330.0,0.15813647381802973 -8331.0,0.15808186484611716 -8332.0,0.1580272747322184 -8333.0,0.15797270346982134 -8334.0,0.1579181510524159 -8335.0,0.15786361747349453 -8336.0,0.15780910272655163 -8337.0,0.1577546068050841 -8338.0,0.15770012970259087 -8339.0,0.1576456714125733 -8340.0,0.15759123192853486 -8341.0,0.15753681124398136 -8342.0,0.15748240935242078 -8343.0,0.1574280262473634 -8344.0,0.15737366192232166 -8345.0,0.1573193163708103 -8346.0,0.15726498958634638 -8347.0,0.157210681562449 -8348.0,0.1571563922926397 -8349.0,0.15710212177044208 -8350.0,0.15704786998938214 -8351.0,0.15699363694298799 -8352.0,0.15693942262479002 -8353.0,0.1568852270283209 -8354.0,0.15683105014711543 -8355.0,0.15677689197471073 -8356.0,0.15672275250464618 -8357.0,0.15666863173046325 -8358.0,0.15661452964570577 -8359.0,0.15656044624391974 -8360.0,0.15650638151865345 -8361.0,0.1564523354634573 -8362.0,0.15639830807188404 -8363.0,0.15634429933748856 -8364.0,0.15629030925382803 -8365.0,0.15623633781446186 -8366.0,0.15618238501295162 -8367.0,0.15612845084286112 -8368.0,0.15607453529775642 -8369.0,0.1560206383712058 -8370.0,0.15596676005677973 -8371.0,0.15591290034805097 -8372.0,0.15585905923859436 -8373.0,0.15580523672198712 -8374.0,0.1557514327918086 -8375.0,0.15569764744164036 -8376.0,0.1556438806650662 -8377.0,0.1555901324556722 -8378.0,0.1555364028070465 -8379.0,0.15548269171277962 -8380.0,0.15542899916646416 -8381.0,0.15537532516169505 -8382.0,0.1553216696920693 -8383.0,0.15526803275118622 -8384.0,0.1552144143326474 -8385.0,0.15516081443005647 -8386.0,0.1551072330370194 -8387.0,0.15505367014714425 -8388.0,0.15500012575404143 -8389.0,0.15494659985132342 -8390.0,0.15489309243260505 -8391.0,0.1548396034915032 -8392.0,0.15478613302163707 -8393.0,0.15473268101662802 -8394.0,0.1546792474700996 -8395.0,0.15462583237567756 -8396.0,0.15457243572698995 -8397.0,0.15451905751766684 -8398.0,0.15446569774134067 -8399.0,0.15441235639164594 -8400.0,0.15435903346221952 -8401.0,0.15430572894670025 -8402.0,0.15425244283872935 -8403.0,0.15419917513195022 -8404.0,0.15414592582000833 -8405.0,0.1540926948965515 -8406.0,0.1540394823552296 -8407.0,0.15398628818969481 -8408.0,0.1539331123936014 -8409.0,0.15387995496060597 -8410.0,0.15382681588436714 -8411.0,0.1537736951585459 -8412.0,0.1537205927768052 -8413.0,0.15366750873281046 -8414.0,0.153614443020229 -8415.0,0.1535613956327306 -8416.0,0.153508366563987 -8417.0,0.15345535580767228 -8418.0,0.15340236335746257 -8419.0,0.15334938920703636 -8420.0,0.15329643335007412 -8421.0,0.15324349578025862 -8422.0,0.15319057649127488 -8423.0,0.1531376754768099 -8424.0,0.1530847927305531 -8425.0,0.1530319282461958 -8426.0,0.15297908201743177 -8427.0,0.1529262540379568 -8428.0,0.1528734443014689 -8429.0,0.15282065280166826 -8430.0,0.15276787953225723 -8431.0,0.15271512448694036 -8432.0,0.15266238765942433 -8433.0,0.15260966904341802 -8434.0,0.15255696863263254 -8435.0,0.15250428642078104 -8436.0,0.15245162240157897 -8437.0,0.15239897656874388 -8438.0,0.1523463489159955 -8439.0,0.15229373943705574 -8440.0,0.15224114812564862 -8441.0,0.1521885749755005 -8442.0,0.15213601998033968 -8443.0,0.1520834831338968 -8444.0,0.15203096442990455 -8445.0,0.15197846386209787 -8446.0,0.15192598142421376 -8447.0,0.15187351710999153 -8448.0,0.1518210709131725 -8449.0,0.1517686428275003 -8450.0,0.15171623284672053 -8451.0,0.1516638409645812 -8452.0,0.1516114671748322 -8453.0,0.15155911147122583 -8454.0,0.15150677384751637 -8455.0,0.15145445429746035 -8456.0,0.15140215281481642 -8457.0,0.1513498693933454 -8458.0,0.15129760402681025 -8459.0,0.1512453567089761 -8460.0,0.15119312743361024 -8461.0,0.15114091619448206 -8462.0,0.1510887229853632 -8463.0,0.15103654780002732 -8464.0,0.15098439063225036 -8465.0,0.1509322514758103 -8466.0,0.15088013032448738 -8467.0,0.15082802717206384 -8468.0,0.15077594201232428 -8469.0,0.15072387483905517 -8470.0,0.1506718256460454 -8471.0,0.15061979442708578 -8472.0,0.15056778117596947 -8473.0,0.1505157858864916 -8474.0,0.15046380855244954 -8475.0,0.15041184916764272 -8476.0,0.15035990772587285 -8477.0,0.1503079842209436 -8478.0,0.15025607864666093 -8479.0,0.1502041909968329 -8480.0,0.15015232126526964 -8481.0,0.15010046944578356 -8482.0,0.15004863553218897 -8483.0,0.14999681951830263 -8484.0,0.1499450213979431 -8485.0,0.14989324116493138 -8486.0,0.14984147881309037 -8487.0,0.1497897343362453 -8488.0,0.14973800772822332 -8489.0,0.1496862989828539 -8490.0,0.1496346080939685 -8491.0,0.14958293505540085 -8492.0,0.14953127986098666 -8493.0,0.14947964250456391 -8494.0,0.14942802297997257 -8495.0,0.14937642128105488 -8496.0,0.14932483740165506 -8497.0,0.14927327133561957 -8498.0,0.14922172307679696 -8499.0,0.14917019261903788 -8500.0,0.14911867995619515 -8501.0,0.14906718508212366 -8502.0,0.14901570799068045 -8503.0,0.14896424867572466 -8504.0,0.14891280713111762 -8505.0,0.1488613833507227 -8506.0,0.14880997732840542 -8507.0,0.14875858905803338 -8508.0,0.1487072185334764 -8509.0,0.1486558657486063 -8510.0,0.14860453069729707 -8511.0,0.14855321337342484 -8512.0,0.14850191377086783 -8513.0,0.14845063188350635 -8514.0,0.14839936770522286 -8515.0,0.14834812122990187 -8516.0,0.1482968924514301 -8517.0,0.14824568136369637 -8518.0,0.14819448796059145 -8519.0,0.14814331223600846 -8520.0,0.14809215418384242 -8521.0,0.14804101379799062 -8522.0,0.14798989107235233 -8523.0,0.14793878600082902 -8524.0,0.14788769857732417 -8525.0,0.14783662879574352 -8526.0,0.1477855766499947 -8527.0,0.14773454213398768 -8528.0,0.1476835252416343 -8529.0,0.14763252596684873 -8530.0,0.147581544303547 -8531.0,0.1475305802456475 -8532.0,0.1474796337870705 -8533.0,0.1474287049217385 -8534.0,0.14737779364357603 -8535.0,0.14732689994650977 -8536.0,0.14727602382446847 -8537.0,0.14722516527138296 -8538.0,0.14717432428118624 -8539.0,0.14712350084781325 -8540.0,0.14707269496520126 -8541.0,0.14702190662728937 -8542.0,0.146971135828019 -8543.0,0.14692038256133344 -8544.0,0.14686964682117834 -8545.0,0.1468189286015012 -8546.0,0.14676822789625177 -8547.0,0.14671754469938175 -8548.0,0.1466668790048451 -8549.0,0.14661623080659766 -8550.0,0.1465656000985976 -8551.0,0.1465149868748049 -8552.0,0.14646439112918191 -8553.0,0.1464138128556928 -8554.0,0.14636325204830403 -8555.0,0.1463127087009841 -8556.0,0.14626218280770342 -8557.0,0.14621167436243476 -8558.0,0.14616118335915276 -8559.0,0.14611070979183424 -8560.0,0.14606025365445802 -8561.0,0.14600981494100512 -8562.0,0.1459593936454585 -8563.0,0.14590898976180336 -8564.0,0.14585860328402678 -8565.0,0.1458082342061181 -8566.0,0.14575788252206862 -8567.0,0.14570754822587176 -8568.0,0.14565723131152297 -8569.0,0.1456069317730199 -8570.0,0.14555664960436204 -8571.0,0.14550638479955125 -8572.0,0.1454561373525912 -8573.0,0.14540590725748773 -8574.0,0.14535569450824887 -8575.0,0.14530549909888446 -8576.0,0.14525532102340669 -8577.0,0.14520516027582955 -8578.0,0.14515501685016935 -8579.0,0.14510489074044422 -8580.0,0.14505478194067462 -8581.0,0.14500469044488282 -8582.0,0.14495461624709333 -8583.0,0.14490455934133262 -8584.0,0.14485451972162933 -8585.0,0.14480449738201404 -8586.0,0.1447544923165195 -8587.0,0.14470450451918038 -8588.0,0.1446545339840336 -8589.0,0.144604580705118 -8590.0,0.14455464467647453 -8591.0,0.14450472589214614 -8592.0,0.14445482434617793 -8593.0,0.144404940032617 -8594.0,0.1443550729455125 -8595.0,0.14430522307891572 -8596.0,0.14425539042687982 -8597.0,0.1442055749834602 -8598.0,0.1441557767427142 -8599.0,0.14410599569870133 -8600.0,0.144056231845483 -8601.0,0.14400648517712275 -8602.0,0.1439567556876862 -8603.0,0.14390704337124097 -8604.0,0.14385734822185672 -8605.0,0.14380767023360524 -8606.0,0.14375800940056022 -8607.0,0.1437083657167976 -8608.0,0.14365873917639513 -8609.0,0.1436091297734328 -8610.0,0.14355953750199255 -8611.0,0.14350996235615834 -8612.0,0.14346040433001633 -8613.0,0.1434108634176545 -8614.0,0.14336133961316305 -8615.0,0.1433118329106341 -8616.0,0.14326234330416188 -8617.0,0.14321287078784264 -8618.0,0.1431634153557747 -8619.0,0.14311397700205833 -8620.0,0.14306455572079596 -8621.0,0.14301515150609193 -8622.0,0.14296576435205272 -8623.0,0.14291639425278677 -8624.0,0.14286704120240462 -8625.0,0.14281770519501877 -8626.0,0.14276838622474383 -8627.0,0.1427190842856964 -8628.0,0.1426697993719951 -8629.0,0.14262053147776063 -8630.0,0.14257128059711566 -8631.0,0.14252204672418495 -8632.0,0.14247282985309523 -8633.0,0.1424236299779753 -8634.0,0.14237444709295594 -8635.0,0.14232528119217008 -8636.0,0.14227613226975247 -8637.0,0.1422270003198401 -8638.0,0.1421778853365718 -8639.0,0.1421287873140886 -8640.0,0.14207970624653338 -8641.0,0.1420306421280512 -8642.0,0.141981594952789 -8643.0,0.14193256471489588 -8644.0,0.1418835514085228 -8645.0,0.14183455502782294 -8646.0,0.1417855755669513 -8647.0,0.141736613020065 -8648.0,0.1416876673813232 -8649.0,0.14163873864488705 -8650.0,0.1415898268049197 -8651.0,0.14154093185558625 -8652.0,0.141492053791054 -8653.0,0.14144319260549207 -8654.0,0.14139434829307174 -8655.0,0.1413455208479662 -8656.0,0.1412967102643507 -8657.0,0.14124791653640248 -8658.0,0.14119913965830083 -8659.0,0.141150379624227 -8660.0,0.1411016364283643 -8661.0,0.14105291006489798 -8662.0,0.1410042005280154 -8663.0,0.14095550781190583 -8664.0,0.1409068319107606 -8665.0,0.14085817281877297 -8666.0,0.14080953053013834 -8667.0,0.14076090503905403 -8668.0,0.14071229633971932 -8669.0,0.14066370442633563 -8670.0,0.14061512929310624 -8671.0,0.1405665709342365 -8672.0,0.14051802934393373 -8673.0,0.14046950451640736 -8674.0,0.1404209964458686 -8675.0,0.1403725051265309 -8676.0,0.14032403055260953 -8677.0,0.1402755727183219 -8678.0,0.14022713161788727 -8679.0,0.14017870724552703 -8680.0,0.1401302995954644 -8681.0,0.14008190866192485 -8682.0,0.1400335344391356 -8683.0,0.13998517692132598 -8684.0,0.13993683610272728 -8685.0,0.1398885119775728 -8686.0,0.13984020454009782 -8687.0,0.13979191378453965 -8688.0,0.1397436397051375 -8689.0,0.13969538229613265 -8690.0,0.13964714155176836 -8691.0,0.13959891746628983 -8692.0,0.13955071003394431 -8693.0,0.13950251924898097 -8694.0,0.13945434510565102 -8695.0,0.13940618759820764 -8696.0,0.139358046720906 -8697.0,0.13930992246800317 -8698.0,0.1392618148337584 -8699.0,0.1392137238124327 -8700.0,0.1391656493982892 -8701.0,0.13911759158559298 -8702.0,0.1390695503686111 -8703.0,0.13902152574161256 -8704.0,0.13897351769886837 -8705.0,0.13892552623465157 -8706.0,0.13887755134323707 -8707.0,0.13882959301890188 -8708.0,0.13878165125592484 -8709.0,0.13873372604858694 -8710.0,0.13868581739117097 -8711.0,0.13863792527796184 -8712.0,0.13859004970324632 -8713.0,0.13854219066131324 -8714.0,0.1384943481464533 -8715.0,0.13844652215295936 -8716.0,0.138398712675126 -8717.0,0.13835091970725 -8718.0,0.1383031432436299 -8719.0,0.13825538327856643 -8720.0,0.13820763980636208 -8721.0,0.13815991282132145 -8722.0,0.13811220231775106 -8723.0,0.13806450828995936 -8724.0,0.13801683073225687 -8725.0,0.13796916963895592 -8726.0,0.13792152500437097 -8727.0,0.13787389682281828 -8728.0,0.13782628508861622 -8729.0,0.137778689796085 -8730.0,0.13773111093954693 -8731.0,0.13768354851332612 -8732.0,0.1376360025117488 -8733.0,0.13758847292914297 -8734.0,0.13754095975983882 -8735.0,0.13749346299816825 -8736.0,0.13744598263846536 -8737.0,0.13739851867506597 -8738.0,0.1373510711023081 -8739.0,0.1373036399145315 -8740.0,0.13725622510607807 -8741.0,0.13720882667129147 -8742.0,0.13716144460451743 -8743.0,0.13711407890010371 -8744.0,0.13706672955239982 -8745.0,0.13701939655575737 -8746.0,0.1369720799045299 -8747.0,0.13692477959307284 -8748.0,0.13687749561574358 -8749.0,0.13683022796690159 -8750.0,0.13678297664090808 -8751.0,0.1367357416321264 -8752.0,0.13668852293492167 -8753.0,0.1366413205436611 -8754.0,0.13659413445271376 -8755.0,0.13654696465645075 -8756.0,0.13649981114924498 -8757.0,0.13645267392547142 -8758.0,0.13640555297950693 -8759.0,0.13635844830573035 -8760.0,0.1363113598985224 -8761.0,0.13626428775226576 -8762.0,0.13621723186134518 -8763.0,0.1361701922201471 -8764.0,0.13612316882306014 -8765.0,0.13607616166447464 -8766.0,0.13602917073878312 -8767.0,0.13598219604037978 -8768.0,0.13593523756366097 -8769.0,0.13588829530302482 -8770.0,0.13584136925287155 -8771.0,0.1357944594076031 -8772.0,0.13574756576162358 -8773.0,0.13570068830933885 -8774.0,0.13565382704515683 -8775.0,0.13560698196348725 -8776.0,0.1355601530587419 -8777.0,0.13551334032533432 -8778.0,0.13546654375768025 -8779.0,0.13541976335019706 -8780.0,0.13537299909730427 -8781.0,0.13532625099342324 -8782.0,0.13527951903297722 -8783.0,0.13523280321039144 -8784.0,0.13518610352009314 -8785.0,0.13513941995651124 -8786.0,0.1350927525140768 -8787.0,0.13504610118722268 -8788.0,0.13499946597038387 -8789.0,0.13495284685799697 -8790.0,0.1349062438445007 -8791.0,0.13485965692433566 -8792.0,0.13481308609194448 -8793.0,0.1347665313417714 -8794.0,0.13471999266826293 -8795.0,0.13467347006586727 -8796.0,0.13462696352903472 -8797.0,0.13458047305221724 -8798.0,0.1345339986298689 -8799.0,0.1344875402564457 -8800.0,0.13444109792640543 -8801.0,0.13439467163420796 -8802.0,0.13434826137431485 -8803.0,0.13430186714118975 -8804.0,0.13425548892929814 -8805.0,0.13420912673310753 -8806.0,0.1341627805470871 -8807.0,0.13411645036570818 -8808.0,0.1340701361834439 -8809.0,0.13402383799476938 -8810.0,0.13397755579416146 -8811.0,0.13393128957609907 -8812.0,0.133885039335063 -8813.0,0.13383880506553597 -8814.0,0.13379258676200245 -8815.0,0.13374638441894904 -8816.0,0.13370019803086408 -8817.0,0.13365402759223796 -8818.0,0.13360787309756275 -8819.0,0.1335617345413326 -8820.0,0.13351561191804356 -8821.0,0.13346950522219353 -8822.0,0.13342341444828235 -8823.0,0.13337733959081163 -8824.0,0.133331280644285 -8825.0,0.133285237603208 -8826.0,0.1332392104620881 -8827.0,0.13319319921543443 -8828.0,0.13314720385775827 -8829.0,0.13310122438357275 -8830.0,0.13305526078739283 -8831.0,0.13300931306373534 -8832.0,0.13296338120711906 -8833.0,0.13291746521206468 -8834.0,0.13287156507309483 -8835.0,0.13282568078473383 -8836.0,0.13277981234150807 -8837.0,0.13273395973794577 -8838.0,0.13268812296857704 -8839.0,0.132642302027934 -8840.0,0.1325964969105504 -8841.0,0.13255070761096205 -8842.0,0.13250493412370665 -8843.0,0.1324591764433238 -8844.0,0.13241343456435486 -8845.0,0.13236770848134322 -8846.0,0.13232199818883403 -8847.0,0.13227630368137447 -8848.0,0.13223062495351343 -8849.0,0.13218496199980181 -8850.0,0.13213931481479235 -8851.0,0.13209368339303973 -8852.0,0.13204806772910035 -8853.0,0.13200246781753264 -8854.0,0.13195688365289687 -8855.0,0.13191131522975522 -8856.0,0.13186576254267163 -8857.0,0.13182022558621204 -8858.0,0.1317747043549442 -8859.0,0.13172919884343778 -8860.0,0.13168370904626436 -8861.0,0.13163823495799723 -8862.0,0.1315927765732117 -8863.0,0.13154733388648493 -8864.0,0.13150190689239602 -8865.0,0.1314564955855257 -8866.0,0.1314110999604568 -8867.0,0.131365720011774 -8868.0,0.13132035573406378 -8869.0,0.13127500712191448 -8870.0,0.13122967416991635 -8871.0,0.1311843568726615 -8872.0,0.13113905522474398 -8873.0,0.1310937692207595 -8874.0,0.13104849885530587 -8875.0,0.13100324412298262 -8876.0,0.1309580050183912 -8877.0,0.13091278153613498 -8878.0,0.130867573670819 -8879.0,0.13082238141705038 -8880.0,0.130777204769438 -8881.0,0.13073204372259264 -8882.0,0.13068689827112684 -8883.0,0.13064176840965513 -8884.0,0.13059665413279384 -8885.0,0.13055155543516123 -8886.0,0.13050647231137721 -8887.0,0.1304614047560638 -8888.0,0.13041635276384472 -8889.0,0.13037131632934568 -8890.0,0.13032629544719404 -8891.0,0.1302812901120192 -8892.0,0.13023630031845232 -8893.0,0.13019132606112654 -8894.0,0.13014636733467666 -8895.0,0.13010142413373943 -8896.0,0.1300564964529535 -8897.0,0.13001158428695933 -8898.0,0.12996668763039923 -8899.0,0.1299218064779173 -8900.0,0.12987694082415957 -8901.0,0.1298320906637739 -8902.0,0.12978725599141008 -8903.0,0.1297424368017195 -8904.0,0.12969763308935567 -8905.0,0.12965284484897377 -8906.0,0.12960807207523098 -8907.0,0.1295633147627861 -8908.0,0.1295185729063 -8909.0,0.12947384650043528 -8910.0,0.12942913553985647 -8911.0,0.12938444001922977 -8912.0,0.12933975993322339 -8913.0,0.1292950952765073 -8914.0,0.12925044604375333 -8915.0,0.12920581222963523 -8916.0,0.12916119382882837 -8917.0,0.1291165908360102 -8918.0,0.1290720032458599 -8919.0,0.12902743105305853 -8920.0,0.12898287425228883 -8921.0,0.12893833283823558 -8922.0,0.1288938068055853 -8923.0,0.12884929614902643 -8924.0,0.12880480086324905 -8925.0,0.12876032094294526 -8926.0,0.1287158563828089 -8927.0,0.12867140717753578 -8928.0,0.1286269733218233 -8929.0,0.12858255481037084 -8930.0,0.12853815163787966 -8931.0,0.1284937637990528 -8932.0,0.12844939128859503 -8933.0,0.12840503410121307 -8934.0,0.12836069223161542 -8935.0,0.12831636567451246 -8936.0,0.12827205442461637 -8937.0,0.12822775847664103 -8938.0,0.12818347782530234 -8939.0,0.12813921246531793 -8940.0,0.1280949623914073 -8941.0,0.12805072759829164 -8942.0,0.12800650808069416 -8943.0,0.12796230383333973 -8944.0,0.1279181148509552 -8945.0,0.127873941128269 -8946.0,0.12782978266001163 -8947.0,0.12778563944091528 -8948.0,0.12774151146571402 -8949.0,0.12769739872914365 -8950.0,0.12765330122594185 -8951.0,0.12760921895084812 -8952.0,0.12756515189860376 -8953.0,0.12752110006395198 -8954.0,0.1274770634416376 -8955.0,0.12743304202640737 -8956.0,0.12738903581300992 -8957.0,0.12734504479619566 -8958.0,0.12730106897071666 -8959.0,0.127257108331327 -8960.0,0.1272131628727825 -8961.0,0.12716923258984084 -8962.0,0.12712531747726133 -8963.0,0.12708141752980526 -8964.0,0.12703753274223575 -8965.0,0.12699366310931764 -8966.0,0.12694980862581756 -8967.0,0.126905969286504 -8968.0,0.12686214508614727 -8969.0,0.12681833601951953 -8970.0,0.12677454208139452 -8971.0,0.12673076326654803 -8972.0,0.12668699956975757 -8973.0,0.12664325098580242 -8974.0,0.1265995175094638 -8975.0,0.12655579913552448 -8976.0,0.12651209585876924 -8977.0,0.12646840767398457 -8978.0,0.12642473457595887 -8979.0,0.12638107655948216 -8980.0,0.1263374336193464 -8981.0,0.12629380575034532 -8982.0,0.12625019294727444 -8983.0,0.126206595204931 -8984.0,0.12616301251811415 -8985.0,0.12611944488162483 -8986.0,0.12607589229026572 -8987.0,0.12603235473884125 -8988.0,0.1259888322221578 -8989.0,0.12594532473502335 -8990.0,0.12590183227224785 -8991.0,0.12585835482864302 -8992.0,0.1258148923990222 -8993.0,0.12577144497820064 -8994.0,0.12572801256099547 -8995.0,0.12568459514222552 -8996.0,0.1256411927167113 -8997.0,0.12559780527927528 -8998.0,0.12555443282474166 -8999.0,0.12551107534793646 -9000.0,0.12546773284368734 -9001.0,0.12542440530682394 -9002.0,0.1253810927321776 -9003.0,0.12533779511458146 -9004.0,0.12529451244887035 -9005.0,0.125251244729881 -9006.0,0.1252079919524519 -9007.0,0.1251647541114234 -9008.0,0.12512153120163735 -9009.0,0.1250783232179377 -9010.0,0.12503513015517 -9011.0,0.12499195200818168 -9012.0,0.12494878877182192 -9013.0,0.12490564044094156 -9014.0,0.12486250701039336 -9015.0,0.12481938847503186 -9016.0,0.12477628482971335 -9017.0,0.12473319606929578 -9018.0,0.12469012218863902 -9019.0,0.1246470631826047 -9020.0,0.12460401904605621 -9021.0,0.12456098977385863 -9022.0,0.1245179753608789 -9023.0,0.12447497580198573 -9024.0,0.12443199109204965 -9025.0,0.12438902122594277 -9026.0,0.12434606619853916 -9027.0,0.1243031260047146 -9028.0,0.12426020063934663 -9029.0,0.12421729009731464 -9030.0,0.1241743943734996 -9031.0,0.12413151346278439 -9032.0,0.12408864736005368 -9033.0,0.12404579606019386 -9034.0,0.12400295955809301 -9035.0,0.12396013784864109 -9036.0,0.12391733092672978 -9037.0,0.12387453878725257 -9038.0,0.12383176142510459 -9039.0,0.12378899883518285 -9040.0,0.12374625101238608 -9041.0,0.12370351795161483 -9042.0,0.12366079964777126 -9043.0,0.12361809609575942 -9044.0,0.12357540729048513 -9045.0,0.12353273322685594 -9046.0,0.12349007389978106 -9047.0,0.12344742930417159 -9048.0,0.12340479943494033 -9049.0,0.12336218428700187 -9050.0,0.12331958385527256 -9051.0,0.1232769981346704 -9052.0,0.12323442712011526 -9053.0,0.12319187080652873 -9054.0,0.12314932918883421 -9055.0,0.1231068022619567 -9056.0,0.12306429002082306 -9057.0,0.12302179246036193 -9058.0,0.12297930957550371 -9059.0,0.12293684136118038 -9060.0,0.12289438781232585 -9061.0,0.12285194892387573 -9062.0,0.1228095246907674 -9063.0,0.12276711510793989 -9064.0,0.12272472017033406 -9065.0,0.12268233987289252 -9066.0,0.12263997421055962 -9067.0,0.12259762317828149 -9068.0,0.12255528677100584 -9069.0,0.12251296498368232 -9070.0,0.12247065781126223 -9071.0,0.12242836524869871 -9072.0,0.12238608729094644 -9073.0,0.12234382393296202 -9074.0,0.12230157516970375 -9075.0,0.12225934099613171 -9076.0,0.12221712140720757 -9077.0,0.12217491639789488 -9078.0,0.12213272596315891 -9079.0,0.12209055009796668 -9080.0,0.12204838879728683 -9081.0,0.12200624205608986 -9082.0,0.12196410986934798 -9083.0,0.12192199223203519 -9084.0,0.12187988913912703 -9085.0,0.121837800585601 -9086.0,0.12179572656643621 -9087.0,0.12175366707661354 -9088.0,0.12171162211111568 -9089.0,0.12166959166492682 -9090.0,0.12162757573303312 -9091.0,0.12158557431042238 -9092.0,0.12154358739208419 -9093.0,0.12150161497300972 -9094.0,0.12145965704819199 -9095.0,0.12141771361262575 -9096.0,0.12137578466130751 -9097.0,0.12133387018923532 -9098.0,0.12129197019140917 -9099.0,0.12125008466283067 -9100.0,0.12120821359850327 -9101.0,0.12116635699343192 -9102.0,0.12112451484262349 -9103.0,0.12108268714108653 -9104.0,0.1210408738838313 -9105.0,0.12099907506586981 -9106.0,0.12095729068221568 -9107.0,0.1209155207278844 -9108.0,0.1208737651978931 -9109.0,0.12083202408726072 -9110.0,0.12079029739100773 -9111.0,0.1207485851041565 -9112.0,0.12070688722173105 -9113.0,0.12066520373875718 -9114.0,0.12062353465026227 -9115.0,0.12058187995127552 -9116.0,0.12054023963682786 -9117.0,0.12049861370195193 -9118.0,0.12045700214168198 -9119.0,0.12041540495105409 -9120.0,0.12037382212510601 -9121.0,0.1203322536588773 -9122.0,0.120290699547409 -9123.0,0.12024915978574408 -9124.0,0.12020763436892715 -9125.0,0.12016612329200452 -9126.0,0.12012462655002429 -9127.0,0.12008314413803609 -9128.0,0.1200416760510914 -9129.0,0.12000022228424341 -9130.0,0.11995878283254703 -9131.0,0.11991735769105874 -9132.0,0.11987594685483685 -9133.0,0.11983455031894137 -9134.0,0.11979316807843406 -9135.0,0.11975180012837817 -9136.0,0.11971044646383891 -9137.0,0.11966910707988304 -9138.0,0.11962778197157917 -9139.0,0.11958647113399738 -9140.0,0.11954517456220966 -9141.0,0.11950389225128963 -9142.0,0.11946262419631258 -9143.0,0.11942137039235563 -9144.0,0.11938013083449736 -9145.0,0.11933890551781827 -9146.0,0.11929769443740046 -9147.0,0.11925649758832782 -9148.0,0.11921531496568574 -9149.0,0.1191741465645615 -9150.0,0.11913299238004402 -9151.0,0.11909185240722393 -9152.0,0.11905072664119346 -9153.0,0.11900961507704662 -9154.0,0.11896851770987912 -9155.0,0.1189274345347884 -9156.0,0.11888636554687344 -9157.0,0.11884531074123506 -9158.0,0.11880427011297569 -9159.0,0.11876324365719951 -9160.0,0.1187222313690124 -9161.0,0.11868123324352181 -9162.0,0.118640249275837 -9163.0,0.11859927946106888 -9164.0,0.11855832379433011 -9165.0,0.11851738227073486 -9166.0,0.11847645488539917 -9167.0,0.1184355416334407 -9168.0,0.11839464250997885 -9169.0,0.11835375751013454 -9170.0,0.11831288662903054 -9171.0,0.11827202986179126 -9172.0,0.11823118720354284 -9173.0,0.11819035864941294 -9174.0,0.11814954419453105 -9175.0,0.11810874383402832 -9176.0,0.11806795756303762 -9177.0,0.11802718537669332 -9178.0,0.11798642727013167 -9179.0,0.11794568323849051 -9180.0,0.11790495327690939 -9181.0,0.11786423738052955 -9182.0,0.1178235355444938 -9183.0,0.11778284776394675 -9184.0,0.11774217403403464 -9185.0,0.11770151434990546 -9186.0,0.11766086870670868 -9187.0,0.11762023709959563 -9188.0,0.11757961952371926 -9189.0,0.11753901597423423 -9190.0,0.11749842644629675 -9191.0,0.11745785093506483 -9192.0,0.1174172894356981 -9193.0,0.11737674194335791 -9194.0,0.11733620845320716 -9195.0,0.11729568896041055 -9196.0,0.11725518346013439 -9197.0,0.11721469194754666 -9198.0,0.11717421441781709 -9199.0,0.11713375086611688 -9200.0,0.11709330128761909 -9201.0,0.11705286567749838 -9202.0,0.11701244403093113 -9203.0,0.11697203634309522 -9204.0,0.11693164260917037 -9205.0,0.1168912628243379 -9206.0,0.11685089698378083 -9207.0,0.11681054508268374 -9208.0,0.11677020711623295 -9209.0,0.11672988307961647 -9210.0,0.11668957296802399 -9211.0,0.11664927677664667 -9212.0,0.11660899450067756 -9213.0,0.11656872613531125 -9214.0,0.11652847167574408 -9215.0,0.11648823111717388 -9216.0,0.1164480044548003 -9217.0,0.11640779168382459 -9218.0,0.11636759279944967 -9219.0,0.11632740779688014 -9220.0,0.11628723667132213 -9221.0,0.11624707941798355 -9222.0,0.11620693603207397 -9223.0,0.1161668065088046 -9224.0,0.11612669084338818 -9225.0,0.11608658903103926 -9226.0,0.11604650106697399 -9227.0,0.11600642694641022 -9228.0,0.11596636666456729 -9229.0,0.11592632021666635 -9230.0,0.11588628759793015 -9231.0,0.11584626880358316 -9232.0,0.1158062638288513 -9233.0,0.11576627266896235 -9234.0,0.11572629531914563 -9235.0,0.11568633177463214 -9236.0,0.11564638203065458 -9237.0,0.11560644608244713 -9238.0,0.11556652392524577 -9239.0,0.11552661555428807 -9240.0,0.11548672096481334 -9241.0,0.1154468401520623 -9242.0,0.11540697311127754 -9243.0,0.11536711983770319 -9244.0,0.11532728032658511 -9245.0,0.11528745457317065 -9246.0,0.1152476425727089 -9247.0,0.11520784432045061 -9248.0,0.11516805981164818 -9249.0,0.1151282890415555 -9250.0,0.11508853200542828 -9251.0,0.11504878869852377 -9252.0,0.11500905911610095 -9253.0,0.11496934325342024 -9254.0,0.11492964110574393 -9255.0,0.11488995266833579 -9256.0,0.11485027793646133 -9257.0,0.11481061690538764 -9258.0,0.1147709695703834 -9259.0,0.11473133592671897 -9260.0,0.11469171596966639 -9261.0,0.11465210969449932 -9262.0,0.11461251709649291 -9263.0,0.11457293817092412 -9264.0,0.11453337291307147 -9265.0,0.11449382131821516 -9266.0,0.11445428338163685 -9267.0,0.11441475909862005 -9268.0,0.11437524846444976 -9269.0,0.11433575147441272 -9270.0,0.1142962681237971 -9271.0,0.11425679840789292 -9272.0,0.1142173423219917 -9273.0,0.11417789986138663 -9274.0,0.11413847102137255 -9275.0,0.11409905579724577 -9276.0,0.11405965418430444 -9277.0,0.1140202661778482 -9278.0,0.11398089177317841 -9279.0,0.11394153096559788 -9280.0,0.11390218375041121 -9281.0,0.11386285012292456 -9282.0,0.11382353007844577 -9283.0,0.11378422361228414 -9284.0,0.11374493071975077 -9285.0,0.11370565139615826 -9286.0,0.11366638563682095 -9287.0,0.11362713343705462 -9288.0,0.11358789479217682 -9289.0,0.11354866969750667 -9290.0,0.11350945814836493 -9291.0,0.11347026014007386 -9292.0,0.11343107566795749 -9293.0,0.11339190472734137 -9294.0,0.11335274731355272 -9295.0,0.11331360342192037 -9296.0,0.11327447304777466 -9297.0,0.11323535618644766 -9298.0,0.11319625283327302 -9299.0,0.11315716298358604 -9300.0,0.11311808663272348 -9301.0,0.11307902377602388 -9302.0,0.11303997440882732 -9303.0,0.11300093852647555 -9304.0,0.11296191612431176 -9305.0,0.11292290719768093 -9306.0,0.11288391174192958 -9307.0,0.11284492975240586 -9308.0,0.11280596122445942 -9309.0,0.11276700615344165 -9310.0,0.1127280645347055 -9311.0,0.11268913636360552 -9312.0,0.11265022163549789 -9313.0,0.11261132034574028 -9314.0,0.1125724324896921 -9315.0,0.11253355806271433 -9316.0,0.11249469706016955 -9317.0,0.11245584947742185 -9318.0,0.11241701530983704 -9319.0,0.11237819455278249 -9320.0,0.11233938720162721 -9321.0,0.11230059325174167 -9322.0,0.11226181269849808 -9323.0,0.11222304553727022 -9324.0,0.11218429176343347 -9325.0,0.11214555137236473 -9326.0,0.11210682435944255 -9327.0,0.11206811072004713 -9328.0,0.11202941044956023 -9329.0,0.11199072354336512 -9330.0,0.11195204999684676 -9331.0,0.11191338980539167 -9332.0,0.111874742964388 -9333.0,0.1118361094692255 -9334.0,0.11179748931529537 -9335.0,0.11175888249799057 -9336.0,0.11172028901270559 -9337.0,0.11168170885483653 -9338.0,0.11164314201978098 -9339.0,0.11160458850293827 -9340.0,0.1115660482997092 -9341.0,0.11152752140549628 -9342.0,0.11148900781570344 -9343.0,0.11145050752573632 -9344.0,0.11141202053100213 -9345.0,0.1113735468269097 -9346.0,0.11133508640886929 -9347.0,0.1112966392722929 -9348.0,0.11125820541259408 -9349.0,0.11121978482518796 -9350.0,0.11118137750549127 -9351.0,0.1111429834489222 -9352.0,0.11110460265090069 -9353.0,0.11106623510684817 -9354.0,0.11102788081218772 -9355.0,0.11098953976234387 -9356.0,0.11095121195274285 -9357.0,0.11091289737881242 -9358.0,0.11087459603598201 -9359.0,0.11083630791968244 -9360.0,0.11079803302534624 -9361.0,0.11075977134840753 -9362.0,0.11072152288430201 -9363.0,0.11068328762846681 -9364.0,0.1106450655763408 -9365.0,0.11060685672336434 -9366.0,0.11056866106497949 -9367.0,0.11053047859662965 -9368.0,0.11049230931376 -9369.0,0.11045415321181722 -9370.0,0.11041601028624955 -9371.0,0.11037788053250688 -9372.0,0.1103397639460405 -9373.0,0.11030166052230345 -9374.0,0.11026357025675025 -9375.0,0.11022549314483705 -9376.0,0.11018742918202146 -9377.0,0.11014937836376275 -9378.0,0.11011134068552175 -9379.0,0.11007331614276088 -9380.0,0.110035304730944 -9381.0,0.10999730644553667 -9382.0,0.10995932128200596 -9383.0,0.10992134923582059 -9384.0,0.10988339030245066 -9385.0,0.109845444477368 -9386.0,0.10980751175604594 -9387.0,0.1097695921339594 -9388.0,0.10973168560658488 -9389.0,0.10969379216940031 -9390.0,0.10965591181788534 -9391.0,0.10961804454752111 -9392.0,0.10958019035379038 -9393.0,0.10954234923217733 -9394.0,0.10950452117816782 -9395.0,0.10946670618724927 -9396.0,0.10942890425491066 -9397.0,0.10939111537664238 -9398.0,0.10935333954793656 -9399.0,0.10931557676428683 -9400.0,0.10927782702118839 -9401.0,0.1092400903141379 -9402.0,0.10920236663863367 -9403.0,0.10916465599017554 -9404.0,0.10912695836426498 -9405.0,0.1090892737564048 -9406.0,0.1090516021620996 -9407.0,0.10901394357685538 -9408.0,0.10897629799617979 -9409.0,0.10893866541558202 -9410.0,0.10890104583057267 -9411.0,0.10886343923666406 -9412.0,0.10882584562936999 -9413.0,0.10878826500420587 -9414.0,0.10875069735668849 -9415.0,0.10871314268233638 -9416.0,0.10867560097666953 -9417.0,0.10863807223520953 -9418.0,0.1086005564534794 -9419.0,0.10856305362700379 -9420.0,0.10852556375130892 -9421.0,0.10848808682192256 -9422.0,0.10845062283437389 -9423.0,0.10841317178419375 -9424.0,0.10837573366691455 -9425.0,0.10833830847807017 -9426.0,0.10830089621319612 -9427.0,0.10826349686782927 -9428.0,0.10822611043750821 -9429.0,0.10818873691777302 -9430.0,0.10815137630416535 -9431.0,0.10811402859222825 -9432.0,0.10807669377750648 -9433.0,0.10803937185554625 -9434.0,0.10800206282189538 -9435.0,0.10796476667210307 -9436.0,0.10792748340172023 -9437.0,0.10789021300629922 -9438.0,0.10785295548139401 -9439.0,0.10781571082255995 -9440.0,0.10777847902535406 -9441.0,0.10774126008533487 -9442.0,0.10770405399806249 -9443.0,0.1076668607590984 -9444.0,0.10762968036400575 -9445.0,0.10759251280834922 -9446.0,0.10755535808769497 -9447.0,0.10751821619761076 -9448.0,0.10748108713366575 -9449.0,0.10744397089143075 -9450.0,0.10740686746647807 -9451.0,0.1073697768543816 -9452.0,0.10733269905071657 -9453.0,0.10729563405105995 -9454.0,0.10725858185099015 -9455.0,0.10722154244608714 -9456.0,0.10718451583193232 -9457.0,0.10714750200410873 -9458.0,0.10711050095820086 -9459.0,0.10707351268979484 -9460.0,0.10703653719447813 -9461.0,0.10699957446783986 -9462.0,0.10696262450547066 -9463.0,0.10692568730296266 -9464.0,0.10688876285590958 -9465.0,0.10685185115990649 -9466.0,0.10681495221055015 -9467.0,0.1067780660034388 -9468.0,0.1067411925341722 -9469.0,0.10670433179835155 -9470.0,0.10666748379157966 -9471.0,0.10663064850946084 -9472.0,0.10659382594760096 -9473.0,0.10655701610160725 -9474.0,0.10652021896708863 -9475.0,0.10648343453965545 -9476.0,0.10644666281491966 -9477.0,0.10640990378849455 -9478.0,0.1063731574559951 -9479.0,0.10633642381303772 -9480.0,0.10629970285524043 -9481.0,0.10626299457822257 -9482.0,0.10622629897760516 -9483.0,0.1061896160490107 -9484.0,0.10615294578806317 -9485.0,0.10611628819038811 -9486.0,0.10607964325161247 -9487.0,0.10604301096736479 -9488.0,0.10600639133327514 -9489.0,0.10596978434497509 -9490.0,0.10593318999809762 -9491.0,0.1058966082882773 -9492.0,0.10586003921115023 -9493.0,0.10582348276235402 -9494.0,0.10578693893752768 -9495.0,0.10575040773231181 -9496.0,0.10571388914234853 -9497.0,0.10567738316328147 -9498.0,0.10564088979075566 -9499.0,0.10560440902041772 -9500.0,0.10556794084791579 -9501.0,0.10553148526889948 -9502.0,0.10549504227901993 -9503.0,0.10545861187392969 -9504.0,0.10542219404928291 -9505.0,0.10538578880073521 -9506.0,0.10534939612394376 -9507.0,0.10531301601456708 -9508.0,0.10527664846826534 -9509.0,0.10524029348070016 -9510.0,0.10520395104753469 -9511.0,0.10516762116443347 -9512.0,0.10513130382706264 -9513.0,0.1050949990310898 -9514.0,0.10505870677218411 -9515.0,0.10502242704601608 -9516.0,0.10498615984825785 -9517.0,0.10494990517458298 -9518.0,0.10491366302066664 -9519.0,0.10487743338218529 -9520.0,0.10484121625481703 -9521.0,0.10480501163424145 -9522.0,0.10476881951613959 -9523.0,0.10473263989619404 -9524.0,0.10469647277008874 -9525.0,0.10466031813350926 -9526.0,0.10462417598214263 -9527.0,0.1045880463116774 -9528.0,0.10455192911780345 -9529.0,0.10451582439621232 -9530.0,0.10447973214259698 -9531.0,0.10444365235265195 -9532.0,0.10440758502207305 -9533.0,0.10437153014655778 -9534.0,0.10433548772180505 -9535.0,0.1042994577435153 -9536.0,0.10426344020739034 -9537.0,0.10422743510913357 -9538.0,0.10419144244444986 -9539.0,0.10415546220904554 -9540.0,0.10411949439862847 -9541.0,0.10408353900890786 -9542.0,0.10404759603559456 -9543.0,0.10401166547440081 -9544.0,0.10397574732104042 -9545.0,0.10393984157122853 -9546.0,0.10390394822068187 -9547.0,0.10386806726511863 -9548.0,0.10383219870025853 -9549.0,0.10379634252182261 -9550.0,0.10376049872553354 -9551.0,0.10372466730711542 -9552.0,0.10368884826229387 -9553.0,0.10365304158679584 -9554.0,0.1036172472763499 -9555.0,0.10358146532668605 -9556.0,0.10354569573353581 -9557.0,0.10350993849263204 -9558.0,0.10347419359970922 -9559.0,0.10343846105050322 -9560.0,0.10340274084075142 -9561.0,0.1033670329661927 -9562.0,0.1033313374225673 -9563.0,0.10329565420561702 -9564.0,0.10325998331108513 -9565.0,0.10322432473471639 -9566.0,0.1031886784722569 -9567.0,0.10315304451945438 -9568.0,0.10311742287205794 -9569.0,0.10308181352581823 -9570.0,0.10304621647648722 -9571.0,0.1030106317198185 -9572.0,0.10297505925156707 -9573.0,0.1029394990674894 -9574.0,0.10290395116334339 -9575.0,0.10286841553488843 -9576.0,0.1028328921778854 -9577.0,0.1027973810880966 -9578.0,0.10276188226128591 -9579.0,0.10272639569321844 -9580.0,0.10269092137966097 -9581.0,0.10265545931638166 -9582.0,0.1026200094991502 -9583.0,0.1025845719237376 -9584.0,0.10254914658591645 -9585.0,0.10251373348146076 -9586.0,0.10247833260614607 -9587.0,0.1024429439557492 -9588.0,0.1024075675260486 -9589.0,0.10237220331282412 -9590.0,0.10233685131185712 -9591.0,0.10230151151893026 -9592.0,0.10226618392982781 -9593.0,0.10223086854033545 -9594.0,0.10219556534624034 -9595.0,0.102160274343331 -9596.0,0.1021249955273975 -9597.0,0.10208972889423135 -9598.0,0.10205447443962547 -9599.0,0.10201923215937433 -9600.0,0.1019840020492737 -9601.0,0.1019487841051209 -9602.0,0.1019135783227147 -9603.0,0.10187838469785536 -9604.0,0.10184320322634444 -9605.0,0.1018080339039851 -9606.0,0.10177287672658188 -9607.0,0.10173773168994084 -9608.0,0.10170259878986934 -9609.0,0.10166747802217634 -9610.0,0.10163236938267216 -9611.0,0.10159727286716867 -9612.0,0.101562188471479 -9613.0,0.1015271161914179 -9614.0,0.1014920560228015 -9615.0,0.10145700796144735 -9616.0,0.10142197200317456 -9617.0,0.10138694814380347 -9618.0,0.10135193637915606 -9619.0,0.10131693670505565 -9620.0,0.10128194911732712 -9621.0,0.10124697361179658 -9622.0,0.10121201018429177 -9623.0,0.1011770588306418 -9624.0,0.1011421195466773 -9625.0,0.10110719232823014 -9626.0,0.10107227717113382 -9627.0,0.10103737407122322 -9628.0,0.10100248302433469 -9629.0,0.1009676040263059 -9630.0,0.10093273707297609 -9631.0,0.10089788216018587 -9632.0,0.10086303928377735 -9633.0,0.10082820843959396 -9634.0,0.10079338962348065 -9635.0,0.10075858283128382 -9636.0,0.10072378805885125 -9637.0,0.10068900530203224 -9638.0,0.10065423455667735 -9639.0,0.10061947581863874 -9640.0,0.10058472908376995 -9641.0,0.10054999434792598 -9642.0,0.10051527160696316 -9643.0,0.10048056085673936 -9644.0,0.1004458620931138 -9645.0,0.10041117531194728 -9646.0,0.1003765005091018 -9647.0,0.10034183768044093 -9648.0,0.10030718682182968 -9649.0,0.1002725479291345 -9650.0,0.10023792099822311 -9651.0,0.10020330602496483 -9652.0,0.10016870300523034 -9653.0,0.10013411193489176 -9654.0,0.10009953280982267 -9655.0,0.10006496562589794 -9656.0,0.100030410378994 -9657.0,0.09999586706498867 -9658.0,0.09996133567976122 -9659.0,0.09992681621919222 -9660.0,0.0998923086791638 -9661.0,0.09985781305555945 -9662.0,0.09982332934426415 -9663.0,0.09978885754116415 -9664.0,0.09975439764214726 -9665.0,0.09971994964310267 -9666.0,0.09968551353992103 -9667.0,0.09965108932849426 -9668.0,0.09961667700471587 -9669.0,0.0995822765644807 -9670.0,0.09954788800368508 -9671.0,0.09951351131822662 -9672.0,0.09947914650400448 -9673.0,0.09944479355691918 -9674.0,0.09941045247287267 -9675.0,0.09937612324776834 -9676.0,0.0993418058775109 -9677.0,0.09930750035800656 -9678.0,0.09927320668516293 -9679.0,0.09923892485488905 -9680.0,0.0992046548630953 -9681.0,0.09917039670569354 -9682.0,0.09913615037859702 -9683.0,0.09910191587772045 -9684.0,0.09906769319897982 -9685.0,0.09903348233829264 -9686.0,0.09899928329157782 -9687.0,0.09896509605475572 -9688.0,0.09893092062374793 -9689.0,0.09889675699447764 -9690.0,0.09886260516286938 -9691.0,0.09882846512484907 -9692.0,0.09879433687634409 -9693.0,0.09876022041328313 -9694.0,0.09872611573159636 -9695.0,0.09869202282721536 -9696.0,0.09865794169607313 -9697.0,0.09862387233410395 -9698.0,0.09858981473724364 -9699.0,0.09855576890142938 -9700.0,0.0985217348225998 -9701.0,0.09848771249669477 -9702.0,0.09845370191965575 -9703.0,0.0984197030874255 -9704.0,0.09838571599594825 -9705.0,0.09835174064116954 -9706.0,0.09831777701903635 -9707.0,0.0982838251254971 -9708.0,0.09824988495650162 -9709.0,0.098215956508001 -9710.0,0.09818203977594785 -9711.0,0.09814813475629618 -9712.0,0.09811424144500135 -9713.0,0.09808035983802019 -9714.0,0.09804648993131078 -9715.0,0.09801263172083272 -9716.0,0.09797878520254699 -9717.0,0.09794495037241598 -9718.0,0.09791112722640335 -9719.0,0.09787731576047431 -9720.0,0.09784351597059537 -9721.0,0.09780972785273453 -9722.0,0.09777595140286102 -9723.0,0.09774218661694559 -9724.0,0.09770843349096035 -9725.0,0.09767469202087885 -9726.0,0.09764096220267589 -9727.0,0.09760724403232778 -9728.0,0.0975735375058122 -9729.0,0.09753984261910821 -9730.0,0.09750615936819627 -9731.0,0.09747248774905817 -9732.0,0.09743882775767716 -9733.0,0.09740517939003783 -9734.0,0.09737154264212623 -9735.0,0.09733791750992966 -9736.0,0.09730430398943693 -9737.0,0.0972707020766382 -9738.0,0.09723711176752502 -9739.0,0.09720353305809024 -9740.0,0.09716996594432822 -9741.0,0.09713641042223463 -9742.0,0.09710286648780661 -9743.0,0.0970693341370425 -9744.0,0.09703581336594218 -9745.0,0.09700230417050688 -9746.0,0.09696880654673924 -9747.0,0.09693532049064314 -9748.0,0.096901845998224 -9749.0,0.09686838306548853 -9750.0,0.09683493168844487 -9751.0,0.09680149186310255 -9752.0,0.09676806358547234 -9753.0,0.09673464685156656 -9754.0,0.09670124165739882 -9755.0,0.09666784799898417 -9756.0,0.09663446587233893 -9757.0,0.09660109527348085 -9758.0,0.0965677361984291 -9759.0,0.0965343886432042 -9760.0,0.09650105260382796 -9761.0,0.09646772807632367 -9762.0,0.09643441505671597 -9763.0,0.09640111354103091 -9764.0,0.09636782352529574 -9765.0,0.09633454500553928 -9766.0,0.09630127797779163 -9767.0,0.09626802243808427 -9768.0,0.09623477838245012 -9769.0,0.09620154580692329 -9770.0,0.09616832470753946 -9771.0,0.09613511508033555 -9772.0,0.09610191692134998 -9773.0,0.09606873022662232 -9774.0,0.09603555499219373 -9775.0,0.09600239121410661 -9776.0,0.09596923888840483 -9777.0,0.09593609801113347 -9778.0,0.09590296857833909 -9779.0,0.09586985058606959 -9780.0,0.0958367440303743 -9781.0,0.09580364890730377 -9782.0,0.09577056521291 -9783.0,0.09573749294324636 -9784.0,0.09570443209436763 -9785.0,0.09567138266232979 -9786.0,0.09563834464319032 -9787.0,0.09560531803300805 -9788.0,0.09557230282784313 -9789.0,0.09553929902375712 -9790.0,0.09550630661681284 -9791.0,0.09547332560307457 -9792.0,0.09544035597860792 -9793.0,0.09540739773947989 -9794.0,0.09537445088175872 -9795.0,0.09534151540151414 -9796.0,0.09530859129481718 -9797.0,0.09527567855774027 -9798.0,0.0952427771863571 -9799.0,0.09520988717674278 -9800.0,0.09517700852497381 -9801.0,0.09514414122712803 -9802.0,0.09511128527928453 -9803.0,0.09507844067752387 -9804.0,0.09504560741792793 -9805.0,0.09501278549657996 -9806.0,0.09497997490956457 -9807.0,0.0949471756529676 -9808.0,0.09491438772287641 -9809.0,0.09488161111537961 -9810.0,0.09484884582656726 -9811.0,0.09481609185253059 -9812.0,0.09478334918936235 -9813.0,0.09475061783315657 -9814.0,0.09471789778000868 -9815.0,0.09468518902601533 -9816.0,0.09465249156727466 -9817.0,0.09461980539988608 -9818.0,0.09458713051995044 -9819.0,0.09455446692356974 -9820.0,0.09452181460684753 -9821.0,0.09448917356588861 -9822.0,0.09445654379679919 -9823.0,0.09442392529568669 -9824.0,0.09439131805866 -9825.0,0.09435872208182931 -9826.0,0.09432613736130617 -9827.0,0.0942935638932035 -9828.0,0.09426100167363542 -9829.0,0.09422845069871756 -9830.0,0.09419591096456682 -9831.0,0.09416338246730149 -9832.0,0.09413086520304106 -9833.0,0.09409835916790653 -9834.0,0.09406586435802013 -9835.0,0.09403338076950553 -9836.0,0.09400090839848757 -9837.0,0.09396844724109261 -9838.0,0.09393599729344825 -9839.0,0.09390355855168347 -9840.0,0.09387113101192852 -9841.0,0.09383871467031506 -9842.0,0.09380630952297604 -9843.0,0.09377391556604578 -9844.0,0.09374153279565994 -9845.0,0.09370916120795544 -9846.0,0.09367680079907059 -9847.0,0.09364445156514506 -9848.0,0.09361211350231985 -9849.0,0.09357978660673717 -9850.0,0.09354747087454073 -9851.0,0.09351516630187547 -9852.0,0.09348287288488773 -9853.0,0.09345059061972508 -9854.0,0.09341831950253651 -9855.0,0.09338605952947232 -9856.0,0.09335381069668416 -9857.0,0.0933215730003249 -9858.0,0.09328934643654886 -9859.0,0.09325713100151165 -9860.0,0.09322492669137024 -9861.0,0.09319273350228281 -9862.0,0.09316055143040898 -9863.0,0.09312838047190969 -9864.0,0.09309622062294715 -9865.0,0.09306407187968498 -9866.0,0.09303193423828797 -9867.0,0.0929998076949224 -9868.0,0.0929676922457558 -9869.0,0.09293558788695705 -9870.0,0.09290349461469628 -9871.0,0.09287141242514503 -9872.0,0.09283934131447613 -9873.0,0.09280728127886376 -9874.0,0.09277523231448333 -9875.0,0.09274319441751165 -9876.0,0.09271116758412684 -9877.0,0.09267915181050838 -9878.0,0.09264714709283693 -9879.0,0.09261515342729462 -9880.0,0.09258317081006481 -9881.0,0.09255119923733224 -9882.0,0.09251923870528295 -9883.0,0.09248728921010421 -9884.0,0.09245535074798472 -9885.0,0.09242342331511445 -9886.0,0.09239150690768473 -9887.0,0.09235960152188809 -9888.0,0.09232770715391848 -9889.0,0.09229582379997116 -9890.0,0.0922639514562427 -9891.0,0.09223209011893087 -9892.0,0.09220023978423489 -9893.0,0.09216840044835527 -9894.0,0.09213657210749382 -9895.0,0.09210475475785358 -9896.0,0.09207294839563904 -9897.0,0.09204115301705589 -9898.0,0.09200936861831124 -9899.0,0.09197759519561335 -9900.0,0.09194583274517193 -9901.0,0.09191408126319796 -9902.0,0.09188234074590369 -9903.0,0.09185061118950277 -9904.0,0.09181889259021003 -9905.0,0.09178718494424168 -9906.0,0.09175548824781525 -9907.0,0.09172380249714958 -9908.0,0.09169212768846473 -9909.0,0.09166046381798214 -9910.0,0.09162881088192457 -9911.0,0.09159716887651607 -9912.0,0.09156553779798193 -9913.0,0.09153391764254881 -9914.0,0.09150230840644466 -9915.0,0.09147071008589876 -9916.0,0.0914391226771416 -9917.0,0.09140754617640506 -9918.0,0.0913759805799223 -9919.0,0.09134442588392776 -9920.0,0.09131288208465725 -9921.0,0.09128134917834775 -9922.0,0.09124982716123764 -9923.0,0.09121831602956657 -9924.0,0.09118681577957555 -9925.0,0.09115532640750673 -9926.0,0.09112384790960372 -9927.0,0.09109238028211133 -9928.0,0.09106092352127579 -9929.0,0.09102947762334442 -9930.0,0.090998042584566 -9931.0,0.09096661840119057 -9932.0,0.09093520506946948 -9933.0,0.09090380258565528 -9934.0,0.09087241094600192 -9935.0,0.0908410301467646 -9936.0,0.09080966018419986 -9937.0,0.09077830105456544 -9938.0,0.09074695275412042 -9939.0,0.09071561527912521 -9940.0,0.09068428862584146 -9941.0,0.09065297279053218 -9942.0,0.09062166776946153 -9943.0,0.09059037355889508 -9944.0,0.09055909015509969 -9945.0,0.09052781755434348 -9946.0,0.09049655575289582 -9947.0,0.09046530474702741 -9948.0,0.09043406453301024 -9949.0,0.09040283510711764 -9950.0,0.09037161646562406 -9951.0,0.09034040860480538 -9952.0,0.09030921152093876 -9953.0,0.09027802521030265 -9954.0,0.09024684966917665 -9955.0,0.09021568489384178 -9956.0,0.09018453088058036 -9957.0,0.09015338762567589 -9958.0,0.09012225512541326 -9959.0,0.09009113337607852 -9960.0,0.09006002237395912 -9961.0,0.09002892211534372 -9962.0,0.08999783259652233 -9963.0,0.08996675381378615 -9964.0,0.0899356857634277 -9965.0,0.08990462844174082 -9966.0,0.08987358184502063 -9967.0,0.08984254596956341 -9968.0,0.08981152081166685 -9969.0,0.0897805063676299 -9970.0,0.08974950263375275 -9971.0,0.08971850960633686 -9972.0,0.08968752728168498 -9973.0,0.08965655565610117 -9974.0,0.08962559472589077 -9975.0,0.08959464448736029 -9976.0,0.08956370493681765 -9977.0,0.08953277607057195 -9978.0,0.08950185788493363 -9979.0,0.08947095037621441 -9980.0,0.08944005354072716 -9981.0,0.08940916737478617 -9982.0,0.08937829187470693 -9983.0,0.08934742703680627 -9984.0,0.08931657285740216 -9985.0,0.08928572933281394 -9986.0,0.08925489645936223 -9987.0,0.08922407423336891 -9988.0,0.08919326265115705 -9989.0,0.0891624617090511 -9990.0,0.0891316714033767 -9991.0,0.08910089173046085 -9992.0,0.08907012268663168 -9993.0,0.08903936426821872 -9994.0,0.0890086164715527 -9995.0,0.08897787929296562 -9996.0,0.08894715272879082 -9997.0,0.08891643677536276 -9998.0,0.08888573142901729 -9999.0,0.08885503668609149 -10000.0,0.08882435254292372 -10001.0,0.08879367899585353 -10002.0,0.08876301604122182 -10003.0,0.08873236367537071 -10004.0,0.08870172189464368 -10005.0,0.08867109069538524 -10006.0,0.08864047007394142 -10007.0,0.08860986002665937 -10008.0,0.08857926054988756 -10009.0,0.08854867163997565 -10010.0,0.08851809329327462 -10011.0,0.08848752550613671 -10012.0,0.08845696827491543 -10013.0,0.08842642159596548 -10014.0,0.08839588546564286 -10015.0,0.08836535988030485 -10016.0,0.08833484483630998 -10017.0,0.08830434033001806 -10018.0,0.08827384635779005 -10019.0,0.08824336291598828 -10020.0,0.08821289000097629 -10021.0,0.08818242760911893 -10022.0,0.08815197573678217 -10023.0,0.08812153438033338 -10024.0,0.08809110353614111 -10025.0,0.08806068320057524 -10026.0,0.08803027337000674 -10027.0,0.087999874040808 -10028.0,0.0879694852093526 -10029.0,0.08793910687201542 -10030.0,0.08790873902517245 -10031.0,0.08787838166520108 -10032.0,0.08784803478847988 -10033.0,0.08781769839138871 -10034.0,0.0877873724703087 -10035.0,0.08775705702162208 -10036.0,0.0877267520417125 -10037.0,0.08769645752696481 -10038.0,0.0876661734737651 -10039.0,0.08763589987850065 -10040.0,0.08760563673756008 -10041.0,0.0875753840473332 -10042.0,0.08754514180421115 -10043.0,0.08751491000458614 -10044.0,0.0874846886448518 -10045.0,0.08745447772140295 -10046.0,0.08742427723063566 -10047.0,0.08739408716894716 -10048.0,0.08736390753273605 -10049.0,0.0873337383184021 -10050.0,0.08730357952234641 -10051.0,0.08727343114097114 -10052.0,0.08724329317067987 -10053.0,0.08721316560787735 -10054.0,0.08718304844896961 -10055.0,0.08715294169036389 -10056.0,0.08712284532846862 -10057.0,0.08709275935969354 -10058.0,0.08706268378044965 -10059.0,0.08703261858714917 -10060.0,0.08700256377620547 -10061.0,0.08697251934403324 -10062.0,0.08694248528704844 -10063.0,0.08691246160166825 -10064.0,0.08688244828431098 -10065.0,0.0868524453313963 -10066.0,0.08682245273934508 -10067.0,0.08679247050457944 -10068.0,0.08676249862352269 -10069.0,0.0867325370925994 -10070.0,0.08670258590823539 -10071.0,0.08667264506685769 -10072.0,0.08664271456489464 -10073.0,0.08661279439877566 -10074.0,0.08658288456493153 -10075.0,0.08655298505979421 -10076.0,0.08652309587979698 -10077.0,0.08649321702137416 -10078.0,0.0864633484809615 -10079.0,0.08643349025499587 -10080.0,0.08640364233991545 -10081.0,0.08637380473215953 -10082.0,0.08634397742816874 -10083.0,0.08631416042438489 -10084.0,0.08628435371725106 -10085.0,0.08625455730321148 -10086.0,0.08622477117871166 -10087.0,0.08619499534019837 -10088.0,0.08616522978411957 -10089.0,0.08613547450692438 -10090.0,0.08610572950506327 -10091.0,0.08607599477498787 -10092.0,0.08604627031315103 -10093.0,0.08601655611600688 -10094.0,0.08598685218001066 -10095.0,0.08595715850161896 -10096.0,0.08592747507728951 -10097.0,0.08589780190348137 -10098.0,0.08586813897665464 -10099.0,0.08583848629327079 -10100.0,0.08580884384979248 -10101.0,0.08577921164268364 -10102.0,0.08574958966840925 -10103.0,0.08571997792343568 -10104.0,0.08569037640423045 -10105.0,0.08566078510726238 -10106.0,0.08563120402900136 -10107.0,0.08560163316591861 -10108.0,0.08557207251448655 -10109.0,0.0855425220711788 -10110.0,0.08551298183247025 -10111.0,0.08548345179483689 -10112.0,0.08545393195475606 -10113.0,0.08542442230870623 -10114.0,0.08539492285316716 -10115.0,0.0853654335846197 -10116.0,0.08533595449954605 -10117.0,0.08530648559442955 -10118.0,0.08527702686575482 -10119.0,0.0852475783100076 -10120.0,0.08521813992367487 -10121.0,0.0851887117032449 -10122.0,0.08515929364520712 -10123.0,0.08512988574605213 -10124.0,0.08510048800227178 -10125.0,0.08507110041035916 -10126.0,0.08504172296680858 -10127.0,0.08501235566811545 -10128.0,0.08498299851077648 -10129.0,0.08495365149128961 -10130.0,0.08492431460615393 -10131.0,0.08489498785186982 -10132.0,0.08486567122493871 -10133.0,0.0848363647218634 -10134.0,0.08480706833914783 -10135.0,0.0847777820732972 -10136.0,0.08474850592081778 -10137.0,0.0847192398782172 -10138.0,0.08468998394200421 -10139.0,0.08466073810868885 -10140.0,0.08463150237478222 -10141.0,0.08460227673679674 -10142.0,0.08457306119124601 -10143.0,0.08454385573464487 -10144.0,0.08451466036350926 -10145.0,0.08448547507435639 -10146.0,0.08445629986370469 -10147.0,0.08442713472807375 -10148.0,0.08439797966398446 -10149.0,0.08436883466795872 -10150.0,0.0843396997365198 -10151.0,0.0843105748661921 -10152.0,0.08428146005350129 -10153.0,0.0842523552949741 -10154.0,0.0842232605871386 -10155.0,0.08419417592652396 -10156.0,0.08416510130966068 -10157.0,0.08413603673308026 -10158.0,0.08410698219331557 -10159.0,0.0840779376869006 -10160.0,0.0840489032103706 -10161.0,0.08401987876026187 -10162.0,0.08399086433311208 -10163.0,0.08396185992545999 -10164.0,0.0839328655338456 -10165.0,0.08390388115481012 -10166.0,0.08387490678489586 -10167.0,0.0838459424206464 -10168.0,0.08381698805860655 -10169.0,0.08378804369532225 -10170.0,0.08375910932734061 -10171.0,0.08373018495121 -10172.0,0.08370127056347995 -10173.0,0.08367236616070123 -10174.0,0.08364347173942566 -10175.0,0.0836145872962064 -10176.0,0.08358571282759775 -10177.0,0.08355684833015521 -10178.0,0.08352799380043541 -10179.0,0.08349914923499624 -10180.0,0.08347031463039675 -10181.0,0.08344148998319723 -10182.0,0.08341267528995902 -10183.0,0.08338387054724479 -10184.0,0.08335507575161834 -10185.0,0.08332629089964465 -10186.0,0.08329751598788994 -10187.0,0.08326875101292151 -10188.0,0.08323999597130793 -10189.0,0.08321125085961895 -10190.0,0.0831825156744255 -10191.0,0.08315379041229963 -10192.0,0.08312507506981465 -10193.0,0.08309636964354503 -10194.0,0.08306767413006647 -10195.0,0.08303898852595572 -10196.0,0.08301031282779084 -10197.0,0.08298164703215102 -10198.0,0.08295299113561669 -10199.0,0.08292434513476932 -10200.0,0.08289570902619169 -10201.0,0.08286708280646773 -10202.0,0.08283846647218254 -10203.0,0.08280986001992244 -10204.0,0.08278126344627482 -10205.0,0.08275267674782832 -10206.0,0.08272409992117279 -10207.0,0.08269553296289925 -10208.0,0.08266697586959978 -10209.0,0.0826384286378678 -10210.0,0.08260989126429781 -10211.0,0.08258136374548554 -10212.0,0.0825528460780278 -10213.0,0.08252433825852269 -10214.0,0.0824958402835694 -10215.0,0.08246735214976841 -10216.0,0.08243887385372119 -10217.0,0.08241040539203054 -10218.0,0.08238194676130035 -10219.0,0.08235349795813579 -10220.0,0.08232505897914304 -10221.0,0.08229662982092954 -10222.0,0.08226821048010395 -10223.0,0.08223980095327602 -10224.0,0.08221140123705674 -10225.0,0.08218301132805816 -10226.0,0.08215463122289361 -10227.0,0.08212626091817754 -10228.0,0.08209790041052564 -10229.0,0.08206954969655461 -10230.0,0.08204120877288247 -10231.0,0.08201287763612834 -10232.0,0.08198455628291257 -10233.0,0.08195624470985655 -10234.0,0.08192794291358295 -10235.0,0.08189965089071558 -10236.0,0.08187136863787943 -10237.0,0.08184309615170059 -10238.0,0.08181483342880637 -10239.0,0.08178658046582522 -10240.0,0.08175833725938682 -10241.0,0.08173010380612195 -10242.0,0.0817018801026625 -10243.0,0.08167366614564163 -10244.0,0.08164546193169363 -10245.0,0.08161726745745397 -10246.0,0.08158908271955917 -10247.0,0.08156090771464707 -10248.0,0.08153274243935656 -10249.0,0.08150458689032777 -10250.0,0.08147644106420189 -10251.0,0.08144830495762136 -10252.0,0.08142017856722973 -10253.0,0.0813920618896718 -10254.0,0.08136395492159335 -10255.0,0.08133585765964148 -10256.0,0.08130777010046436 -10257.0,0.08127969224071142 -10258.0,0.0812516240770331 -10259.0,0.0812235656060811 -10260.0,0.08119551682450823 -10261.0,0.08116747772896851 -10262.0,0.08113944831611711 -10263.0,0.08111142858261022 -10264.0,0.08108341852510537 -10265.0,0.08105541814026113 -10266.0,0.08102742742473731 -10267.0,0.08099944637519475 -10268.0,0.08097147498829556 -10269.0,0.08094351326070293 -10270.0,0.08091556118908129 -10271.0,0.08088761877009608 -10272.0,0.08085968600041402 -10273.0,0.0808317628767029 -10274.0,0.08080384939563179 -10275.0,0.08077594555387069 -10276.0,0.08074805134809093 -10277.0,0.08072016677496494 -10278.0,0.08069229183116629 -10279.0,0.08066442651336973 -10280.0,0.08063657081825108 -10281.0,0.08060872474248737 -10282.0,0.08058088828275678 -10283.0,0.08055306143573865 -10284.0,0.08052524419811338 -10285.0,0.08049743656656261 -10286.0,0.08046963853776909 -10287.0,0.08044185010841674 -10288.0,0.08041407127519055 -10289.0,0.08038630203477676 -10290.0,0.08035854238386266 -10291.0,0.08033079231913677 -10292.0,0.08030305183728867 -10293.0,0.08027532093500914 -10294.0,0.08024759960899007 -10295.0,0.08021988785592456 -10296.0,0.08019218567250673 -10297.0,0.08016449305543194 -10298.0,0.08013681000139666 -10299.0,0.08010913650709853 -10300.0,0.0800814725692363 -10301.0,0.08005381818450981 -10302.0,0.08002617334962014 -10303.0,0.07999853806126946 -10304.0,0.0799709123161611 -10305.0,0.07994329611099944 -10306.0,0.07991568944249014 -10307.0,0.07988809230733988 -10308.0,0.07986050470225659 -10309.0,0.07983292662394917 -10310.0,0.07980535806912781 -10311.0,0.07977779903450379 -10312.0,0.07975024951678954 -10313.0,0.07972270951269854 -10314.0,0.07969517901894549 -10315.0,0.07966765803224622 -10316.0,0.07964014654931768 -10317.0,0.07961264456687797 -10318.0,0.07958515208164624 -10319.0,0.07955766909034286 -10320.0,0.07953019558968934 -10321.0,0.07950273157640829 -10322.0,0.0794752770472234 -10323.0,0.0794478319988596 -10324.0,0.07942039642804287 -10325.0,0.07939297033150039 -10326.0,0.07936555370596035 -10327.0,0.07933814654815219 -10328.0,0.07931074885480643 -10329.0,0.07928336062265476 -10330.0,0.0792559818484299 -10331.0,0.0792286125288658 -10332.0,0.07920125266069748 -10333.0,0.07917390224066116 -10334.0,0.07914656126549408 -10335.0,0.07911922973193465 -10336.0,0.07909190763672244 -10337.0,0.07906459497659814 -10338.0,0.07903729174830357 -10339.0,0.07900999794858157 -10340.0,0.07898271357417626 -10341.0,0.07895543862183277 -10342.0,0.07892817308829746 -10343.0,0.07890091697031767 -10344.0,0.07887367026464198 -10345.0,0.07884643296802007 -10346.0,0.07881920507720275 -10347.0,0.07879198658894185 -10348.0,0.07876477749999047 -10349.0,0.07873757780710273 -10350.0,0.07871038750703396 -10351.0,0.07868320659654049 -10352.0,0.07865603507237987 -10353.0,0.07862887293131071 -10354.0,0.07860172017009279 -10355.0,0.078574576785487 -10356.0,0.07854744277425528 -10357.0,0.07852031813316077 -10358.0,0.07849320285896769 -10359.0,0.07846609694844142 -10360.0,0.07843900039834838 -10361.0,0.07841191320545614 -10362.0,0.07838483536653343 -10363.0,0.07835776687835008 -10364.0,0.07833070773767696 -10365.0,0.07830365794128613 -10366.0,0.07827661748595076 -10367.0,0.07824958636844515 -10368.0,0.07822256458554462 -10369.0,0.0781955521340257 -10370.0,0.07816854901066599 -10371.0,0.07814155521224425 -10372.0,0.07811457073554028 -10373.0,0.07808759557733502 -10374.0,0.07806062973441055 -10375.0,0.07803367320355006 -10376.0,0.07800672598153784 -10377.0,0.07797978806515922 -10378.0,0.07795285945120074 -10379.0,0.07792594013645002 -10380.0,0.07789903011769579 -10381.0,0.07787212939172784 -10382.0,0.07784523795533715 -10383.0,0.07781835580531574 -10384.0,0.07779148293845682 -10385.0,0.07776461935155457 -10386.0,0.0777377650414044 -10387.0,0.07771092000480279 -10388.0,0.07768408423854735 -10389.0,0.07765725773943671 -10390.0,0.0776304405042707 -10391.0,0.07760363252985021 -10392.0,0.07757683381297725 -10393.0,0.07755004435045496 -10394.0,0.07752326413908747 -10395.0,0.07749649317568015 -10396.0,0.07746973145703942 -10397.0,0.07744297897997283 -10398.0,0.07741623574128893 -10399.0,0.07738950173779749 -10400.0,0.07736277696630933 -10401.0,0.07733606142363643 -10402.0,0.07730935510659173 -10403.0,0.07728265801198941 -10404.0,0.0772559701366447 -10405.0,0.07722929147737397 -10406.0,0.07720262203099455 -10407.0,0.07717596179432505 -10408.0,0.07714931076418508 -10409.0,0.07712266893739537 -10410.0,0.07709603631077773 -10411.0,0.07706941288115508 -10412.0,0.07704279864535145 -10413.0,0.07701619360019195 -10414.0,0.07698959774250284 -10415.0,0.07696301106911134 -10416.0,0.0769364335768459 -10417.0,0.07690986526253603 -10418.0,0.07688330612301232 -10419.0,0.07685675615510644 -10420.0,0.07683021535565117 -10421.0,0.0768036837214804 -10422.0,0.07677716124942913 -10423.0,0.07675064793633335 -10424.0,0.07672414377903025 -10425.0,0.0766976487743581 -10426.0,0.07667116291915624 -10427.0,0.07664468621026506 -10428.0,0.0766182186445261 -10429.0,0.07659176021878197 -10430.0,0.07656531092987638 -10431.0,0.07653887077465416 -10432.0,0.07651243974996111 -10433.0,0.07648601785264425 -10434.0,0.07645960507955164 -10435.0,0.07643320142753245 -10436.0,0.07640680689343686 -10437.0,0.07638042147411622 -10438.0,0.07635404516642295 -10439.0,0.0763276779672106 -10440.0,0.07630131987333365 -10441.0,0.07627497088164782 -10442.0,0.07624863098900987 -10443.0,0.07622230019227769 -10444.0,0.07619597848831011 -10445.0,0.0761696658739672 -10446.0,0.07614336234611005 -10447.0,0.07611706790160087 -10448.0,0.07609078253730288 -10449.0,0.07606450625008043 -10450.0,0.07603823903679897 -10451.0,0.07601198089432501 -10452.0,0.07598573181952617 -10453.0,0.07595949180927107 -10454.0,0.0759332608604295 -10455.0,0.07590703896987228 -10456.0,0.07588082613447139 -10457.0,0.07585462235109976 -10458.0,0.07582842761663147 -10459.0,0.07580224192794173 -10460.0,0.07577606528190678 -10461.0,0.07574989767540387 -10462.0,0.07572373910531145 -10463.0,0.07569758956850897 -10464.0,0.07567144906187702 -10465.0,0.07564531758229716 -10466.0,0.07561919512665215 -10467.0,0.07559308169182574 -10468.0,0.0755669772747028 -10469.0,0.0755408818721693 -10470.0,0.07551479548111219 -10471.0,0.07548871809841957 -10472.0,0.07546264972098062 -10473.0,0.07543659034568558 -10474.0,0.07541053996942569 -10475.0,0.0753844985890934 -10476.0,0.07535846620158212 -10477.0,0.07533244280378643 -10478.0,0.07530642839260186 -10479.0,0.07528042296492513 -10480.0,0.07525442651765395 -10481.0,0.07522843904768718 -10482.0,0.07520246055192464 -10483.0,0.07517649102726733 -10484.0,0.07515053047061725 -10485.0,0.07512457887887755 -10486.0,0.07509863624895231 -10487.0,0.07507270257774681 -10488.0,0.07504677786216736 -10489.0,0.0750208620991213 -10490.0,0.07499495528551714 -10491.0,0.07496905741826428 -10492.0,0.07494316849427335 -10493.0,0.074917288510456 -10494.0,0.07489141746372494 -10495.0,0.0748655553509939 -10496.0,0.07483970216917774 -10497.0,0.07481385791519236 -10498.0,0.07478802258595478 -10499.0,0.07476219617838296 -10500.0,0.07473637868939603 -10501.0,0.07471057011591414 -10502.0,0.07468477045485857 -10503.0,0.07465897970315152 -10504.0,0.0746331978577164 -10505.0,0.07460742491547759 -10506.0,0.0745816608733606 -10507.0,0.07455590572829197 -10508.0,0.07453015947719926 -10509.0,0.07450442211701115 -10510.0,0.07447869364465737 -10511.0,0.07445297405706872 -10512.0,0.07442726335117698 -10513.0,0.07440156152391508 -10514.0,0.074375868572217 -10515.0,0.07435018449301777 -10516.0,0.07432450928325339 -10517.0,0.07429884293986105 -10518.0,0.07427318545977894 -10519.0,0.07424753683994634 -10520.0,0.07422189707730348 -10521.0,0.07419626616879177 -10522.0,0.07417064411135361 -10523.0,0.07414503090193254 -10524.0,0.07411942653747301 -10525.0,0.07409383101492063 -10526.0,0.07406824433122206 -10527.0,0.07404266648332497 -10528.0,0.07401709746817815 -10529.0,0.07399153728273135 -10530.0,0.07396598592393545 -10531.0,0.07394044338874237 -10532.0,0.07391490967410508 -10533.0,0.07388938477697754 -10534.0,0.07386386869431487 -10535.0,0.07383836142307316 -10536.0,0.07381286296020963 -10537.0,0.07378737330268241 -10538.0,0.07376189244745082 -10539.0,0.07373642039147518 -10540.0,0.0737109571317169 -10541.0,0.0736855026651383 -10542.0,0.07366005698870291 -10543.0,0.07363462009937524 -10544.0,0.07360919199412086 -10545.0,0.07358377266990641 -10546.0,0.07355836212369948 -10547.0,0.07353296035246881 -10548.0,0.07350756735318416 -10549.0,0.07348218312281636 -10550.0,0.07345680765833719 -10551.0,0.07343144095671958 -10552.0,0.07340608301493745 -10553.0,0.07338073382996585 -10554.0,0.07335539339878071 -10555.0,0.07333006171835914 -10556.0,0.07330473878567927 -10557.0,0.07327942459772026 -10558.0,0.07325411915146228 -10559.0,0.07322882244388661 -10560.0,0.0732035344719755 -10561.0,0.07317825523271235 -10562.0,0.07315298472308143 -10563.0,0.07312772294006822 -10564.0,0.07310246988065916 -10565.0,0.07307722554184173 -10566.0,0.07305198992060452 -10567.0,0.07302676301393703 -10568.0,0.07300154481882991 -10569.0,0.0729763353322748 -10570.0,0.07295113455126442 -10571.0,0.07292594247279247 -10572.0,0.07290075909385373 -10573.0,0.072875584411444 -10574.0,0.07285041842256015 -10575.0,0.07282526112420003 -10576.0,0.07280011251336256 -10577.0,0.0727749725870477 -10578.0,0.07274984134225648 -10579.0,0.07272471877599086 -10580.0,0.07269960488525393 -10581.0,0.07267449966704978 -10582.0,0.07264940311838354 -10583.0,0.07262431523626144 -10584.0,0.07259923601769055 -10585.0,0.07257416545967921 -10586.0,0.07254910355923662 -10587.0,0.07252405031337315 -10588.0,0.07249900571910005 -10589.0,0.07247396977342972 -10590.0,0.07244894247337555 -10591.0,0.072423923815952 -10592.0,0.07239891379817447 -10593.0,0.07237391241705947 -10594.0,0.0723489196696245 -10595.0,0.07232393555288819 -10596.0,0.07229896006387 -10597.0,0.0722739931995906 -10598.0,0.0722490349570716 -10599.0,0.07222408533333574 -10600.0,0.0721991443254066 -10601.0,0.07217421193030894 -10602.0,0.07214928814506853 -10603.0,0.07212437296671213 -10604.0,0.07209946639226758 -10605.0,0.07207456841876364 -10606.0,0.07204967904323019 -10607.0,0.0720247982626981 -10608.0,0.07199992607419933 -10609.0,0.07197506247476673 -10610.0,0.07195020746143428 -10611.0,0.07192536103123698 -10612.0,0.07190052318121086 -10613.0,0.07187569390839285 -10614.0,0.07185087320982107 -10615.0,0.07182606108253457 -10616.0,0.07180125752357348 -10617.0,0.07177646252997887 -10618.0,0.07175167609879288 -10619.0,0.07172689822705867 -10620.0,0.07170212891182046 -10621.0,0.07167736815012345 -10622.0,0.0716526159390138 -10623.0,0.07162787227553878 -10624.0,0.07160313715674668 -10625.0,0.07157841057968678 -10626.0,0.07155369254140934 -10627.0,0.07152898303896568 -10628.0,0.07150428206940818 -10629.0,0.07147958962979017 -10630.0,0.07145490571716602 -10631.0,0.0714302303285911 -10632.0,0.07140556346112184 -10633.0,0.0713809051118157 -10634.0,0.07135625527773104 -10635.0,0.07133161395592737 -10636.0,0.07130698114346512 -10637.0,0.07128235683740583 -10638.0,0.07125774103481194 -10639.0,0.071233133732747 -10640.0,0.07120853492827553 -10641.0,0.07118394461846307 -10642.0,0.07115936280037621 -10643.0,0.07113478947108245 -10644.0,0.07111022462765042 -10645.0,0.07108566826714968 -10646.0,0.0710611203866509 -10647.0,0.07103658098322561 -10648.0,0.0710120500539465 -10649.0,0.07098752759588717 -10650.0,0.07096301360612232 -10651.0,0.07093850808172755 -10652.0,0.07091401101977957 -10653.0,0.07088952241735604 -10654.0,0.07086504227153567 -10655.0,0.07084057057939813 -10656.0,0.07081610733802414 -10657.0,0.0707916525444954 -10658.0,0.07076720619589465 -10659.0,0.07074276828930565 -10660.0,0.07071833882181305 -10661.0,0.07069391779050266 -10662.0,0.0706695051924612 -10663.0,0.07064510102477646 -10664.0,0.07062070528453715 -10665.0,0.07059631796883306 -10666.0,0.07057193907475497 -10667.0,0.07054756859939468 -10668.0,0.0705232065398449 -10669.0,0.07049885289319946 -10670.0,0.07047450765655312 -10671.0,0.07045017082700175 -10672.0,0.07042584240164204 -10673.0,0.07040152237757183 -10674.0,0.07037721075188992 -10675.0,0.07035290752169614 -10676.0,0.07032861268409123 -10677.0,0.07030432623617702 -10678.0,0.07028004817505633 -10679.0,0.07025577849783293 -10680.0,0.07023151720161169 -10681.0,0.07020726428349836 -10682.0,0.07018301974059973 -10683.0,0.07015878357002364 -10684.0,0.0701345557688789 -10685.0,0.07011033633427527 -10686.0,0.07008612526332356 -10687.0,0.07006192255313556 -10688.0,0.07003772820082413 -10689.0,0.07001354220350296 -10690.0,0.0699893645582869 -10691.0,0.0699651952622917 -10692.0,0.0699410343126342 -10693.0,0.06991688170643208 -10694.0,0.06989273744080418 -10695.0,0.06986860151287023 -10696.0,0.06984447391975102 -10697.0,0.06982035465856831 -10698.0,0.0697962437264448 -10699.0,0.06977214112050427 -10700.0,0.06974804683787143 -10701.0,0.06972396087567205 -10702.0,0.06969988323103281 -10703.0,0.06967581390108142 -10704.0,0.0696517528829466 -10705.0,0.06962770017375808 -10706.0,0.06960365577064648 -10707.0,0.0695796196707435 -10708.0,0.06955559187118183 -10709.0,0.06953157236909514 -10710.0,0.06950756116161805 -10711.0,0.06948355824588617 -10712.0,0.06945956361903619 -10713.0,0.0694355772782057 -10714.0,0.0694115992205333 -10715.0,0.06938762944315857 -10716.0,0.0693636679432221 -10717.0,0.06933971471786547 -10718.0,0.06931576976423126 -10719.0,0.06929183307946295 -10720.0,0.06926790466070508 -10721.0,0.06924398450510319 -10722.0,0.06922007260980381 -10723.0,0.06919616897195435 -10724.0,0.06917227358870331 -10725.0,0.06914838645720016 -10726.0,0.06912450757459536 -10727.0,0.06910063693804026 -10728.0,0.06907677454468733 -10729.0,0.06905292039168993 -10730.0,0.06902907447620249 -10731.0,0.06900523679538027 -10732.0,0.06898140734637968 -10733.0,0.06895758612635801 -10734.0,0.06893377313247358 -10735.0,0.06890996836188568 -10736.0,0.06888617181175455 -10737.0,0.06886238347924142 -10738.0,0.06883860336150856 -10739.0,0.06881483145571919 -10740.0,0.06879106775903743 -10741.0,0.06876731226862846 -10742.0,0.06874356498165844 -10743.0,0.06871982589529453 -10744.0,0.06869609500670476 -10745.0,0.06867237231305824 -10746.0,0.06864865781152503 -10747.0,0.06862495149927617 -10748.0,0.06860125337348363 -10749.0,0.06857756343132043 -10750.0,0.06855388166996053 -10751.0,0.06853020808657889 -10752.0,0.06850654267835136 -10753.0,0.06848288544245489 -10754.0,0.0684592363760673 -10755.0,0.06843559547636745 -10756.0,0.0684119627405352 -10757.0,0.06838833816575125 -10758.0,0.0683647217491974 -10759.0,0.0683411134880564 -10760.0,0.06831751337951195 -10761.0,0.06829392142074871 -10762.0,0.06827033760895232 -10763.0,0.06824676194130945 -10764.0,0.06822319441500768 -10765.0,0.06819963502723554 -10766.0,0.06817608377518261 -10767.0,0.06815254065603936 -10768.0,0.06812900566699732 -10769.0,0.06810547880524888 -10770.0,0.06808196006798749 -10771.0,0.06805844945240752 -10772.0,0.06803494695570433 -10773.0,0.06801145257507428 -10774.0,0.0679879663077146 -10775.0,0.06796448815082358 -10776.0,0.06794101810160044 -10777.0,0.06791755615724542 -10778.0,0.0678941023149596 -10779.0,0.06787065657194515 -10780.0,0.06784721892540516 -10781.0,0.06782378937254371 -10782.0,0.06780036791056579 -10783.0,0.06777695453667741 -10784.0,0.06775354924808552 -10785.0,0.06773015204199807 -10786.0,0.06770676291562389 -10787.0,0.06768338186617284 -10788.0,0.06766000889085576 -10789.0,0.06763664398688443 -10790.0,0.06761328715147155 -10791.0,0.06758993838183082 -10792.0,0.06756659767517693 -10793.0,0.06754326502872549 -10794.0,0.06751994043969312 -10795.0,0.0674966239052973 -10796.0,0.06747331542275657 -10797.0,0.0674500149892904 -10798.0,0.06742672260211925 -10799.0,0.06740343825846444 -10800.0,0.06738016195554837 -10801.0,0.06735689369059432 -10802.0,0.06733363346082659 -10803.0,0.06731038126347036 -10804.0,0.06728713709575183 -10805.0,0.06726390095489813 -10806.0,0.06724067283813742 -10807.0,0.06721745274269868 -10808.0,0.06719424066581192 -10809.0,0.06717103660470816 -10810.0,0.06714784055661929 -10811.0,0.06712465251877824 -10812.0,0.06710147248841877 -10813.0,0.06707830046277571 -10814.0,0.06705513643908481 -10815.0,0.06703198041458279 -10816.0,0.06700883238650726 -10817.0,0.06698569235209684 -10818.0,0.06696256030859112 -10819.0,0.06693943625323061 -10820.0,0.06691632018325674 -10821.0,0.06689321209591197 -10822.0,0.06687011198843965 -10823.0,0.06684701985808415 -10824.0,0.06682393570209069 -10825.0,0.06680085951770552 -10826.0,0.06677779130217583 -10827.0,0.06675473105274977 -10828.0,0.06673167876667636 -10829.0,0.06670863444120567 -10830.0,0.06668559807358868 -10831.0,0.06666256966107731 -10832.0,0.06663954920092446 -10833.0,0.06661653669038392 -10834.0,0.06659353212671047 -10835.0,0.06657053550715987 -10836.0,0.06654754682898878 -10837.0,0.06652456608945478 -10838.0,0.06650159328581648 -10839.0,0.06647862841533335 -10840.0,0.06645567147526592 -10841.0,0.0664327224628755 -10842.0,0.0664097813754245 -10843.0,0.0663868482101762 -10844.0,0.06636392296439488 -10845.0,0.06634100563534565 -10846.0,0.06631809622029466 -10847.0,0.06629519471650903 -10848.0,0.06627230112125675 -10849.0,0.06624941543180679 -10850.0,0.06622653764542903 -10851.0,0.06620366775939432 -10852.0,0.06618080577097447 -10853.0,0.06615795167744223 -10854.0,0.06613510547607122 -10855.0,0.06611226716413608 -10856.0,0.06608943673891236 -10857.0,0.06606661419767659 -10858.0,0.06604379953770616 -10859.0,0.06602099275627947 -10860.0,0.06599819385067583 -10861.0,0.06597540281817553 -10862.0,0.06595261965605971 -10863.0,0.06592984436161053 -10864.0,0.06590707693211108 -10865.0,0.06588431736484537 -10866.0,0.06586156565709832 -10867.0,0.06583882180615583 -10868.0,0.06581608580930472 -10869.0,0.06579335766383276 -10870.0,0.06577063736702869 -10871.0,0.06574792491618207 -10872.0,0.0657252203085835 -10873.0,0.06570252354152449 -10874.0,0.06567983461229751 -10875.0,0.06565715351819588 -10876.0,0.06563448025651393 -10877.0,0.06561181482454692 -10878.0,0.06558915721959105 -10879.0,0.06556650743894336 -10880.0,0.06554386547990196 -10881.0,0.0655212313397658 -10882.0,0.06549860501583483 -10883.0,0.06547598650540984 -10884.0,0.06545337580579264 -10885.0,0.06543077291428592 -10886.0,0.06540817782819333 -10887.0,0.06538559054481949 -10888.0,0.0653630110614698 -10889.0,0.06534043937545077 -10890.0,0.06531787548406973 -10891.0,0.065295319384635 -10892.0,0.06527277107445577 -10893.0,0.0652502305508422 -10894.0,0.06522769781110536 -10895.0,0.06520517285255732 -10896.0,0.06518265567251093 -10897.0,0.0651601462682801 -10898.0,0.06513764463717961 -10899.0,0.06511515077652522 -10900.0,0.0650926646836335 -10901.0,0.06507018635582207 -10902.0,0.06504771579040942 -10903.0,0.06502525298471502 -10904.0,0.06500279793605915 -10905.0,0.06498035064176311 -10906.0,0.06495791109914911 -10907.0,0.06493547930554028 -10908.0,0.06491305525826069 -10909.0,0.06489063895463526 -10910.0,0.06486823039198993 -10911.0,0.06484582956765149 -10912.0,0.06482343647894775 -10913.0,0.0648010511232073 -10914.0,0.06477867349775976 -10915.0,0.06475630359993564 -10916.0,0.06473394142706643 -10917.0,0.06471158697648438 -10918.0,0.06468924024552285 -10919.0,0.06466690123151599 -10920.0,0.06464456993179897 -10921.0,0.06462224634370778 -10922.0,0.06459993046457939 -10923.0,0.0645776222917517 -10924.0,0.06455532182256346 -10925.0,0.06453302905435447 -10926.0,0.06451074398446528 -10927.0,0.0644884666102375 -10928.0,0.06446619692901355 -10929.0,0.0644439349381369 -10930.0,0.06442168063495175 -10931.0,0.06439943401680341 -10932.0,0.06437719508103798 -10933.0,0.06435496382500255 -10934.0,0.06433274024604504 -10935.0,0.06431052434151438 -10936.0,0.06428831610876037 -10937.0,0.06426611554513374 -10938.0,0.06424392264798609 -10939.0,0.06422173741466998 -10940.0,0.06419955984253889 -10941.0,0.06417738992894721 -10942.0,0.06415522767125019 -10943.0,0.06413307306680405 -10944.0,0.06411092611296591 -10945.0,0.0640887868070938 -10946.0,0.0640666551465467 -10947.0,0.0640445311286844 -10948.0,0.06402241475086769 -10949.0,0.06400030601045824 -10950.0,0.06397820490481869 -10951.0,0.06395611143131247 -10952.0,0.06393402558730402 -10953.0,0.06391194737015865 -10954.0,0.06388987677724264 -10955.0,0.06386781380592305 -10956.0,0.06384575845356796 -10957.0,0.06382371071754635 -10958.0,0.06380167059522808 -10959.0,0.0637796380839839 -10960.0,0.0637576131811855 -10961.0,0.06373559588420546 -10962.0,0.06371358619041731 -10963.0,0.06369158409719547 -10964.0,0.06366958960191517 -10965.0,0.06364760270195267 -10966.0,0.06362562339468512 -10967.0,0.06360365167749053 -10968.0,0.06358168754774782 -10969.0,0.06355973100283684 -10970.0,0.06353778204013832 -10971.0,0.06351584065703396 -10972.0,0.06349390685090624 -10973.0,0.06347198061913865 -10974.0,0.06345006195911557 -10975.0,0.06342815086822226 -10976.0,0.06340624734384485 -10977.0,0.06338435138337044 -10978.0,0.06336246298418698 -10979.0,0.06334058214368339 -10980.0,0.06331870885924938 -10981.0,0.06329684312827567 -10982.0,0.06327498494815383 -10983.0,0.06325313431627633 -10984.0,0.06323129123003657 -10985.0,0.0632094556868288 -10986.0,0.0631876276840482 -10987.0,0.06316580721909087 -10988.0,0.06314399428935381 -10989.0,0.06312218889223484 -10990.0,0.06310039102513275 -10991.0,0.06307860068544723 -10992.0,0.06305681787057887 -10993.0,0.06303504257792908 -10994.0,0.06301327480490027 -10995.0,0.06299151454889569 -10996.0,0.06296976180731953 -10997.0,0.0629480165775768 -10998.0,0.06292627885707347 -10999.0,0.06290454864321639 -11000.0,0.06288282593341331 -11001.0,0.06286111072507287 -11002.0,0.0628394030156046 -11003.0,0.06281770280241891 -11004.0,0.06279601008292715 -11005.0,0.06277432485454154 -11006.0,0.06275264711467517 -11007.0,0.06273097686074203 -11008.0,0.06270931409015705 -11009.0,0.06268765880033603 -11010.0,0.0626660109886956 -11011.0,0.06264437065265337 -11012.0,0.06262273778962779 -11013.0,0.06260111239703825 -11014.0,0.06257949447230496 -11015.0,0.06255788401284906 -11016.0,0.0625362810160926 -11017.0,0.06251468547945851 -11018.0,0.06249309740037057 -11019.0,0.06247151677625348 -11020.0,0.06244994360453285 -11021.0,0.06242837788263514 -11022.0,0.06240681960798776 -11023.0,0.0623852687780189 -11024.0,0.062363725390157734 -11025.0,0.06234218944183429 -11026.0,0.06232066093047952 -11027.0,0.06229913985352517 -11028.0,0.06227762620840396 -11029.0,0.06225611999254948 -11030.0,0.0622346212033962 -11031.0,0.062213129838379434 -11032.0,0.06219164589493544 -11033.0,0.06217016937050134 -11034.0,0.06214870026251518 -11035.0,0.062127238568415774 -11036.0,0.062105784285642944 -11037.0,0.062084337411637346 -11038.0,0.062062897943840525 -11039.0,0.06204146587969493 -11040.0,0.06202004121664383 -11041.0,0.06199862395213144 -11042.0,0.06197721408360283 -11043.0,0.06195581160850399 -11044.0,0.06193441652428171 -11045.0,0.06191302882838374 -11046.0,0.06189164851825867 -11047.0,0.061870275591356036 -11048.0,0.06184891004512613 -11049.0,0.061827551877020236 -11050.0,0.06180620108449047 -11051.0,0.061784857664989874 -11052.0,0.061763521615972275 -11053.0,0.06174219293489247 -11054.0,0.0617208716192061 -11055.0,0.06169955766636971 -11056.0,0.06167825107384065 -11057.0,0.06165695183907723 -11058.0,0.061635659959538604 -11059.0,0.061614375432684804 -11060.0,0.06159309825597677 -11061.0,0.06157182842687624 -11062.0,0.06155056594284589 -11063.0,0.06152931080134928 -11064.0,0.06150806299985084 -11065.0,0.06148682253581582 -11066.0,0.0614655894067104 -11067.0,0.06144436361000164 -11068.0,0.06142314514315747 -11069.0,0.06140193400364663 -11070.0,0.06138073018893882 -11071.0,0.06135953369650456 -11072.0,0.06133834452381532 -11073.0,0.06131716266834331 -11074.0,0.06129598812756173 -11075.0,0.0612748208989446 -11076.0,0.061253660979966824 -11077.0,0.06123250836810421 -11078.0,0.06121136306083336 -11079.0,0.061190225055631806 -11080.0,0.06116909434997794 -11081.0,0.061147970941351056 -11082.0,0.06112685482723123 -11083.0,0.061105746005099486 -11084.0,0.061084644472437694 -11085.0,0.06106355022672863 -11086.0,0.06104246326545585 -11087.0,0.06102138358610386 -11088.0,0.06100031118615799 -11089.0,0.060979246063104516 -11090.0,0.06095818821443044 -11091.0,0.060937137637623755 -11092.0,0.060916094330173275 -11093.0,0.06089505828956872 -11094.0,0.06087402951330058 -11095.0,0.060853007998860315 -11096.0,0.0608319937437402 -11097.0,0.0608109867454334 -11098.0,0.06078998700143395 -11099.0,0.06076899450923667 -11100.0,0.06074800926633736 -11101.0,0.06072703127023262 -11102.0,0.06070606051841996 -11103.0,0.060685097008397665 -11104.0,0.06066414073766496 -11105.0,0.060643191703721934 -11106.0,0.06062224990406953 -11107.0,0.060601315336209494 -11108.0,0.060580387997644515 -11109.0,0.06055946788587811 -11110.0,0.0605385549984147 -11111.0,0.060517649332759466 -11112.0,0.06049675088641854 -11113.0,0.06047585965689889 -11114.0,0.060454975641708354 -11115.0,0.060434098838355634 -11116.0,0.06041322924435024 -11117.0,0.0603923668572026 -11118.0,0.060371511674423985 -11119.0,0.060350663693526554 -11120.0,0.06032982291202324 -11121.0,0.06030898932742791 -11122.0,0.06028816293725527 -11123.0,0.06026734373902092 -11124.0,0.06024653173024123 -11125.0,0.06022572690843349 -11126.0,0.06020492927111584 -11127.0,0.060184138815807316 -11128.0,0.0601633555400277 -11129.0,0.06014257944129772 -11130.0,0.060121810517138954 -11131.0,0.06010104876507384 -11132.0,0.06008029418262561 -11133.0,0.0600595467673184 -11134.0,0.06003880651667721 -11135.0,0.060018073428227875 -11136.0,0.05999734749949712 -11137.0,0.059976628728012425 -11138.0,0.05995591711130223 -11139.0,0.05993521264689579 -11140.0,0.05991451533232324 -11141.0,0.05989382516511548 -11142.0,0.05987314214280436 -11143.0,0.059852466262922545 -11144.0,0.05983179752300357 -11145.0,0.05981113592058177 -11146.0,0.05979048145319238 -11147.0,0.05976983411837147 -11148.0,0.059749193913656004 -11149.0,0.05972856083658369 -11150.0,0.059707934884693184 -11151.0,0.05968731605552396 -11152.0,0.059666704346616334 -11153.0,0.05964609975551152 -11154.0,0.05962550227975148 -11155.0,0.05960491191687912 -11156.0,0.05958432866443814 -11157.0,0.05956375251997316 -11158.0,0.05954318348102952 -11159.0,0.059522621545153524 -11160.0,0.05950206670989228 -11161.0,0.05948151897279377 -11162.0,0.05946097833140675 -11163.0,0.059440444783280894 -11164.0,0.0594199183259667 -11165.0,0.05939939895701554 -11166.0,0.05937888667397955 -11167.0,0.05935838147441179 -11168.0,0.059337883355866136 -11169.0,0.05931739231589734 -11170.0,0.05929690835206092 -11171.0,0.05927643146191331 -11172.0,0.05925596164301177 -11173.0,0.05923549889291441 -11174.0,0.059215043209180175 -11175.0,0.05919459458936882 -11176.0,0.05917415303104099 -11177.0,0.05915371853175816 -11178.0,0.05913329108908266 -11179.0,0.05911287070057761 -11180.0,0.05909245736380702 -11181.0,0.05907205107633573 -11182.0,0.05905165183572945 -11183.0,0.059031259639554634 -11184.0,0.059010874485378687 -11185.0,0.05899049637076979 -11186.0,0.058970125293297024 -11187.0,0.058949761250530204 -11188.0,0.05892940424004008 -11189.0,0.05890905425939821 -11190.0,0.05888871130617698 -11191.0,0.05886837537794967 -11192.0,0.058848046472290284 -11193.0,0.05882772458677376 -11194.0,0.05880740971897585 -11195.0,0.05878710186647316 -11196.0,0.058766801026843056 -11197.0,0.058746507197663826 -11198.0,0.05872622037651457 -11199.0,0.05870594056097524 -11200.0,0.05868566774862655 -11201.0,0.05866540193705012 -11202.0,0.05864514312382839 -11203.0,0.05862489130654466 -11204.0,0.05860464648278299 -11205.0,0.05858440865012834 -11206.0,0.058564177806166476 -11207.0,0.05854395394848402 -11208.0,0.05852373707466843 -11209.0,0.05850352718230793 -11210.0,0.05848332426899166 -11211.0,0.05846312833230955 -11212.0,0.058442939369852405 -11213.0,0.05842275737921177 -11214.0,0.05840258235798011 -11215.0,0.0583824143037507 -11216.0,0.05836225321411766 -11217.0,0.05834209908667585 -11218.0,0.05832195191902108 -11219.0,0.05830181170874992 -11220.0,0.058281678453459836 -11221.0,0.05826155215074901 -11222.0,0.05824143279821655 -11223.0,0.05822132039346237 -11224.0,0.058201214934087225 -11225.0,0.05818111641769263 -11226.0,0.05816102484188101 -11227.0,0.05814094020425558 -11228.0,0.05812086250242039 -11229.0,0.05810079173398035 -11230.0,0.0580807278965411 -11231.0,0.0580606709877092 -11232.0,0.05804062100509202 -11233.0,0.05802057794629775 -11234.0,0.05800054180893536 -11235.0,0.0579805125906147 -11236.0,0.05796049028894645 -11237.0,0.0579404749015421 -11238.0,0.057920466426013915 -11239.0,0.05790046485997506 -11240.0,0.057880470201039494 -11241.0,0.05786048244682202 -11242.0,0.0578405015949382 -11243.0,0.05782052764300448 -11244.0,0.057800560588638125 -11245.0,0.0577806004294572 -11246.0,0.05776064716308064 -11247.0,0.057740700787128105 -11248.0,0.05772076129922017 -11249.0,0.05770082869697819 -11250.0,0.0576809029780244 -11251.0,0.057660984139981726 -11252.0,0.05764107218047403 -11253.0,0.05762116709712598 -11254.0,0.05760126888756305 -11255.0,0.05758137754941148 -11256.0,0.057561493080298405 -11257.0,0.05754161547785176 -11258.0,0.05752174473970031 -11259.0,0.057501880863473576 -11260.0,0.057482023846801955 -11261.0,0.05746217368731667 -11262.0,0.057442330382649745 -11263.0,0.057422493930433985 -11264.0,0.05740266432830306 -11265.0,0.05738284157389145 -11266.0,0.05736302566483444 -11267.0,0.05734321659876817 -11268.0,0.0573234143733295 -11269.0,0.05730361898615621 -11270.0,0.05728383043488684 -11271.0,0.057264048717160794 -11272.0,0.0572442738306182 -11273.0,0.057224505772900086 -11274.0,0.05720474454164828 -11275.0,0.05718499013450541 -11276.0,0.057165242549114884 -11277.0,0.05714550178312099 -11278.0,0.05712576783416879 -11279.0,0.057106040699904194 -11280.0,0.05708632037797385 -11281.0,0.05706660686602529 -11282.0,0.05704690016170684 -11283.0,0.05702720026266763 -11284.0,0.05700750716655764 -11285.0,0.056987820871027564 -11286.0,0.056968141373729 -11287.0,0.056948468672314324 -11288.0,0.056928802764436764 -11289.0,0.05690914364775026 -11290.0,0.05688949131990965 -11291.0,0.05686984577857055 -11292.0,0.056850207021389425 -11293.0,0.05683057504602346 -11294.0,0.056810949850130715 -11295.0,0.05679133143137007 -11296.0,0.056771719787401205 -11297.0,0.05675211491588455 -11298.0,0.056732516814481396 -11299.0,0.05671292548085385 -11300.0,0.05669334091266482 -11301.0,0.05667376310757797 -11302.0,0.05665419206325783 -11303.0,0.056634627777369724 -11304.0,0.056615070247579766 -11305.0,0.05659551947155491 -11306.0,0.056575975446962856 -11307.0,0.05655643817147215 -11308.0,0.05653690764275215 -11309.0,0.056517383858473026 -11310.0,0.056497866816305684 -11311.0,0.05647835651392191 -11312.0,0.05645885294899427 -11313.0,0.05643935611919614 -11314.0,0.05641986602220166 -11315.0,0.056400382655685824 -11316.0,0.05638090601732441 -11317.0,0.056361436104794 -11318.0,0.056341972915771955 -11319.0,0.05632251644793647 -11320.0,0.05630306669896652 -11321.0,0.05628362366654192 -11322.0,0.05626418734834326 -11323.0,0.05624475774205188 -11324.0,0.05622533484535 -11325.0,0.05620591865592061 -11326.0,0.05618650917144753 -11327.0,0.05616710638961529 -11328.0,0.05614771030810931 -11329.0,0.05612832092461578 -11330.0,0.05610893823682171 -11331.0,0.05608956224241484 -11332.0,0.05607019293908378 -11333.0,0.05605083032451791 -11334.0,0.05603147439640743 -11335.0,0.05601212515244328 -11336.0,0.055992782590317265 -11337.0,0.05597344670772195 -11338.0,0.05595411750235073 -11339.0,0.05593479497189772 -11340.0,0.05591547911405791 -11341.0,0.055896169926527066 -11342.0,0.05587686740700173 -11343.0,0.05585757155317929 -11344.0,0.055838282362757834 -11345.0,0.05581899983343633 -11346.0,0.05579972396291451 -11347.0,0.05578045474889292 -11348.0,0.055761192189072856 -11349.0,0.055741936281156444 -11350.0,0.05572268702284659 -11351.0,0.05570344441184704 -11352.0,0.05568420844586223 -11353.0,0.05566497912259747 -11354.0,0.05564575643975885 -11355.0,0.05562654039505327 -11356.0,0.05560733098618834 -11357.0,0.05558812821087255 -11358.0,0.055568932066815145 -11359.0,0.05554974255172616 -11360.0,0.05553055966331645 -11361.0,0.0555113833992976 -11362.0,0.05549221375738203 -11363.0,0.055473050735282955 -11364.0,0.05545389433071438 -11365.0,0.05543474454139105 -11366.0,0.055415601365028544 -11367.0,0.05539646479934323 -11368.0,0.055377334842052275 -11369.0,0.055358211490873575 -11370.0,0.055339094743525864 -11371.0,0.05531998459772866 -11372.0,0.05530088105120229 -11373.0,0.055281784101667786 -11374.0,0.05526269374684705 -11375.0,0.05524360998446274 -11376.0,0.05522453281223832 -11377.0,0.05520546222789799 -11378.0,0.05518639822916677 -11379.0,0.055167340813770484 -11380.0,0.055148289979435716 -11381.0,0.05512924572388986 -11382.0,0.055110208044861025 -11383.0,0.05509117694007819 -11384.0,0.05507215240727107 -11385.0,0.05505313444417021 -11386.0,0.05503412304850686 -11387.0,0.05501511821801311 -11388.0,0.054996119950421835 -11389.0,0.0549771282434667 -11390.0,0.054958143094882075 -11391.0,0.054939164502403215 -11392.0,0.054920192463766095 -11393.0,0.05490122697670752 -11394.0,0.05488226803896499 -11395.0,0.05486331564827688 -11396.0,0.054844369802382296 -11397.0,0.054825430499021145 -11398.0,0.05480649773593413 -11399.0,0.05478757151086265 -11400.0,0.05476865182154898 -11401.0,0.05474973866573614 -11402.0,0.054730832041167944 -11403.0,0.05471193194558893 -11404.0,0.05469303837674447 -11405.0,0.054674151332380704 -11406.0,0.05465527081024457 -11407.0,0.054636396808083715 -11408.0,0.05461752932364662 -11409.0,0.05459866835468254 -11410.0,0.05457981389894152 -11411.0,0.05456096595417432 -11412.0,0.054542124518132534 -11413.0,0.05452328958856852 -11414.0,0.05450446116323543 -11415.0,0.05448563923988712 -11416.0,0.054466823816278306 -11417.0,0.05444801489016443 -11418.0,0.05442921245930173 -11419.0,0.05441041652144725 -11420.0,0.054391627074358705 -11421.0,0.05437284411579469 -11422.0,0.05435406764351452 -11423.0,0.05433529765527833 -11424.0,0.054316534148846955 -11425.0,0.05429777712198206 -11426.0,0.05427902657244608 -11427.0,0.054260282498002216 -11428.0,0.05424154489641441 -11429.0,0.054222813765447415 -11430.0,0.05420408910286675 -11431.0,0.05418537090643871 -11432.0,0.054166659173930314 -11433.0,0.05414795390310941 -11434.0,0.054129255091744606 -11435.0,0.05411056273760525 -11436.0,0.05409187683846152 -11437.0,0.05407319739208427 -11438.0,0.0540545243962452 -11439.0,0.05403585784871676 -11440.0,0.0540171977472722 -11441.0,0.05399854408968545 -11442.0,0.05397989687373128 -11443.0,0.05396125609718523 -11444.0,0.053942621757823606 -11445.0,0.05392399385342341 -11446.0,0.05390537238176252 -11447.0,0.0538867573406195 -11448.0,0.053868148727773756 -11449.0,0.05384954654100536 -11450.0,0.05383095077809523 -11451.0,0.053812361436825024 -11452.0,0.05379377851497721 -11453.0,0.05377520201033491 -11454.0,0.05375663192068212 -11455.0,0.05373806824380356 -11456.0,0.053719510977484716 -11457.0,0.05370096011951188 -11458.0,0.053682415667672005 -11459.0,0.0536638776197529 -11460.0,0.05364534597354312 -11461.0,0.05362682072683199 -11462.0,0.05360830187740953 -11463.0,0.05358978942306662 -11464.0,0.05357128336159484 -11465.0,0.05355278369078659 -11466.0,0.05353429040843494 -11467.0,0.05351580351233379 -11468.0,0.053497323000277805 -11469.0,0.053478848870062407 -11470.0,0.05346038111948373 -11471.0,0.05344191974633872 -11472.0,0.05342346474842507 -11473.0,0.05340501612354124 -11474.0,0.05338657386948646 -11475.0,0.05336813798406066 -11476.0,0.0533497084650646 -11477.0,0.05333128531029977 -11478.0,0.053312868517568446 -11479.0,0.05329445808467359 -11480.0,0.053276054009419 -11481.0,0.05325765628960919 -11482.0,0.053239264923049485 -11483.0,0.05322087990754588 -11484.0,0.05320250124090519 -11485.0,0.053184128920934985 -11486.0,0.053165762945443604 -11487.0,0.05314740331224007 -11488.0,0.05312905001913423 -11489.0,0.05311070306393668 -11490.0,0.05309236244445878 -11491.0,0.05307402815851258 -11492.0,0.05305570020391096 -11493.0,0.053037378578467534 -11494.0,0.053019063279996656 -11495.0,0.05300075430631347 -11496.0,0.052982451655233805 -11497.0,0.05296415532457431 -11498.0,0.05294586531215236 -11499.0,0.05292758161578613 -11500.0,0.052909304233294444 -11501.0,0.05289103316249698 -11502.0,0.05287276840121412 -11503.0,0.052854509947267043 -11504.0,0.052836257798477594 -11505.0,0.05281801195266846 -11506.0,0.05279977240766304 -11507.0,0.05278153916128551 -11508.0,0.05276331221136073 -11509.0,0.052745091555714385 -11510.0,0.05272687719217287 -11511.0,0.05270866911856337 -11512.0,0.05269046733271379 -11513.0,0.052672271832452766 -11514.0,0.052654082615609714 -11515.0,0.05263589968001481 -11516.0,0.052617723023498965 -11517.0,0.0525995526438938 -11518.0,0.05258138853903175 -11519.0,0.05256323070674596 -11520.0,0.05254507914487037 -11521.0,0.05252693385123957 -11522.0,0.05250879482368898 -11523.0,0.05249066206005477 -11524.0,0.05247253555817383 -11525.0,0.05245441531588376 -11526.0,0.052436301331022984 -11527.0,0.05241819360143062 -11528.0,0.052400092124946576 -11529.0,0.05238199689941144 -11530.0,0.0523639079226666 -11531.0,0.052345825192554166 -11532.0,0.05232774870691701 -11533.0,0.052309678463598755 -11534.0,0.05229161446044372 -11535.0,0.052273556695297006 -11536.0,0.05225550516600447 -11537.0,0.0522374598704127 -11538.0,0.052219420806368995 -11539.0,0.05220138797172145 -11540.0,0.052183361364318864 -11541.0,0.052165340982010824 -11542.0,0.05214732682264759 -11543.0,0.05212931888408023 -11544.0,0.05211131716416051 -11545.0,0.052093321660740995 -11546.0,0.052075332371674894 -11547.0,0.05205734929481626 -11548.0,0.052039372428019814 -11549.0,0.05202140176914107 -11550.0,0.05200343731603628 -11551.0,0.05198547906656236 -11552.0,0.05196752701857705 -11553.0,0.0519495811699388 -11554.0,0.05193164151850683 -11555.0,0.05191370806214101 -11556.0,0.05189578079870205 -11557.0,0.05187785972605135 -11558.0,0.05185994484205107 -11559.0,0.05184203614456407 -11560.0,0.05182413363145398 -11561.0,0.051806237300585166 -11562.0,0.05178834714982275 -11563.0,0.05177046317703252 -11564.0,0.051752585380081075 -11565.0,0.051734713756835714 -11566.0,0.051716848305164514 -11567.0,0.05169898902293621 -11568.0,0.05168113590802034 -11569.0,0.05166328895828717 -11570.0,0.05164544817160766 -11571.0,0.051627613545853594 -11572.0,0.05160978507889736 -11573.0,0.05159196276861218 -11574.0,0.051574146612871984 -11575.0,0.05155633660955146 -11576.0,0.05153853275652596 -11577.0,0.05152073505167163 -11578.0,0.051502943492865334 -11579.0,0.0514851580779847 -11580.0,0.051467378804908 -11581.0,0.05144960567151433 -11582.0,0.05143183867568348 -11583.0,0.05141407781529601 -11584.0,0.05139632308823311 -11585.0,0.05137857449237681 -11586.0,0.05136083202560983 -11587.0,0.051343095685815625 -11588.0,0.0513253654708784 -11589.0,0.05130764137868302 -11590.0,0.05128992340711515 -11591.0,0.05127221155406118 -11592.0,0.051254505817408216 -11593.0,0.051236806195044074 -11594.0,0.051219112684857314 -11595.0,0.05120142528473725 -11596.0,0.05118374399257392 -11597.0,0.05116606880625803 -11598.0,0.05114839972368107 -11599.0,0.051130736742735265 -11600.0,0.05111307986131356 -11601.0,0.05109542907730958 -11602.0,0.051077784388617736 -11603.0,0.051060145793133144 -11604.0,0.05104251328875167 -11605.0,0.05102488687336985 -11606.0,0.05100726654488499 -11607.0,0.05098965230119511 -11608.0,0.05097204414019897 -11609.0,0.05095444205979607 -11610.0,0.05093684605788656 -11611.0,0.05091925613237138 -11612.0,0.050901672281152194 -11613.0,0.05088409450213139 -11614.0,0.05086652279321203 -11615.0,0.050848957152297945 -11616.0,0.0508313975772937 -11617.0,0.05081384406610458 -11618.0,0.05079629661663653 -11619.0,0.0507787552267963 -11620.0,0.05076121989449132 -11621.0,0.050743690617629775 -11622.0,0.05072616739412052 -11623.0,0.05070865022187316 -11624.0,0.05069113909879804 -11625.0,0.05067363402280622 -11626.0,0.05065613499180948 -11627.0,0.050638642003720265 -11628.0,0.05062115505645182 -11629.0,0.05060367414791808 -11630.0,0.05058619927603372 -11631.0,0.05056873043871407 -11632.0,0.05055126763387525 -11633.0,0.05053381085943407 -11634.0,0.050516360113308095 -11635.0,0.05049891539341552 -11636.0,0.05048147669767535 -11637.0,0.050464044024007275 -11638.0,0.05044661737033172 -11639.0,0.05042919673456978 -11640.0,0.05041178211464331 -11641.0,0.05039437350847488 -11642.0,0.05037697091398779 -11643.0,0.05035957432910598 -11644.0,0.05034218375175421 -11645.0,0.0503247991798579 -11646.0,0.050307420611343204 -11647.0,0.05029004804413699 -11648.0,0.05027268147616681 -11649.0,0.05025532090536097 -11650.0,0.0502379663296485 -11651.0,0.05022061774695912 -11652.0,0.05020327515522324 -11653.0,0.05018593855237204 -11654.0,0.050168607936337394 -11655.0,0.05015128330505189 -11656.0,0.0501339646564488 -11657.0,0.05011665198846215 -11658.0,0.05009934529902666 -11659.0,0.050082044586077804 -11660.0,0.05006474984755167 -11661.0,0.050047461081385164 -11662.0,0.05003017828551585 -11663.0,0.050012901457882016 -11664.0,0.04999563059642269 -11665.0,0.049978365699077536 -11666.0,0.049961106763787004 -11667.0,0.04994385378849222 -11668.0,0.049926606771135064 -11669.0,0.04990936570965804 -11670.0,0.04989213060200444 -11671.0,0.04987490144611824 -11672.0,0.04985767823994415 -11673.0,0.049840460981427526 -11674.0,0.049823249668514494 -11675.0,0.049806044299151864 -11676.0,0.049788844871287194 -11677.0,0.04977165138286867 -11678.0,0.04975446383184525 -11679.0,0.04973728221616659 -11680.0,0.04972010653378307 -11681.0,0.049702936782645715 -11682.0,0.04968577296070631 -11683.0,0.04966861506591735 -11684.0,0.049651463096232015 -11685.0,0.04963431704960423 -11686.0,0.04961717692398854 -11687.0,0.04960004271734028 -11688.0,0.04958291442761547 -11689.0,0.04956579205277085 -11690.0,0.0495486755907638 -11691.0,0.049531565039552465 -11692.0,0.04951446039709569 -11693.0,0.049497361661353045 -11694.0,0.04948026883028472 -11695.0,0.049463181901851686 -11696.0,0.049446100874015596 -11697.0,0.04942902574473884 -11698.0,0.049411956511984434 -11699.0,0.049394893173716155 -11700.0,0.04937783572789848 -11701.0,0.04936078417249658 -11702.0,0.04934373850547634 -11703.0,0.0493266987248043 -11704.0,0.04930966482844777 -11705.0,0.049292636814374714 -11706.0,0.049275614680553845 -11707.0,0.0492585984249545 -11708.0,0.04924158804554679 -11709.0,0.04922458354030149 -11710.0,0.04920758490719013 -11711.0,0.04919059214418482 -11712.0,0.049173605249258505 -11713.0,0.04915662422038475 -11714.0,0.04913964905553786 -11715.0,0.0491226797526928 -11716.0,0.049105716309825256 -11717.0,0.04908875872491163 -11718.0,0.04907180699592901 -11719.0,0.04905486112085515 -11720.0,0.049037921097668545 -11721.0,0.04902098692434837 -11722.0,0.049004058598874516 -11723.0,0.048987136119227566 -11724.0,0.048970219483388755 -11725.0,0.048953308689340065 -11726.0,0.04893640373506417 -11727.0,0.048919504618544454 -11728.0,0.048902611337764926 -11729.0,0.048885723890710366 -11730.0,0.04886884227536622 -11731.0,0.048851966489718665 -11732.0,0.048835096531754496 -11733.0,0.048818232399461266 -11734.0,0.048801374090827215 -11735.0,0.04878452160384129 -11736.0,0.04876767493649306 -11737.0,0.04875083408677287 -11738.0,0.048733999052671735 -11739.0,0.04871716983218135 -11740.0,0.04870034642329413 -11741.0,0.048683528824003126 -11742.0,0.048666717032302145 -11743.0,0.048649911046185663 -11744.0,0.04863311086364887 -11745.0,0.04861631648268757 -11746.0,0.04859952790129836 -11747.0,0.04858274511747847 -11748.0,0.04856596812922586 -11749.0,0.048549196934539116 -11750.0,0.048532431531417584 -11751.0,0.04851567191786126 -11752.0,0.04849891809187088 -11753.0,0.04848217005144778 -11754.0,0.04846542779459407 -11755.0,0.048448691319312516 -11756.0,0.04843196062360661 -11757.0,0.048415235705480446 -11758.0,0.048398516562938886 -11759.0,0.04838180319398747 -11760.0,0.04836509559663241 -11761.0,0.04834839376888062 -11762.0,0.048331697708739664 -11763.0,0.04831500741421785 -11764.0,0.048298322883324134 -11765.0,0.0482816441140682 -11766.0,0.04826497110446035 -11767.0,0.04824830385251164 -11768.0,0.048231642356233784 -11769.0,0.0482149866136392 -11770.0,0.048198336622740964 -11771.0,0.04818169238155285 -11772.0,0.04816505388808933 -11773.0,0.04814842114036557 -11774.0,0.048131794136397364 -11775.0,0.04811517287420126 -11776.0,0.04809855735179445 -11777.0,0.048081947567194826 -11778.0,0.048065343518421 -11779.0,0.04804874520349216 -11780.0,0.04803215262042829 -11781.0,0.04801556576725001 -11782.0,0.047998984641978645 -11783.0,0.04798240924263616 -11784.0,0.04796583956724523 -11785.0,0.04794927561382924 -11786.0,0.04793271738041222 -11787.0,0.04791616486501888 -11788.0,0.04789961806567464 -11789.0,0.04788307698040557 -11790.0,0.04786654160723849 -11791.0,0.047850011944200785 -11792.0,0.04783348798932061 -11793.0,0.04781696974062679 -11794.0,0.047800457196148824 -11795.0,0.04778395035391686 -11796.0,0.04776744921196176 -11797.0,0.04775095376831506 -11798.0,0.047734464021008984 -11799.0,0.04771797996807643 -11800.0,0.04770150160755095 -11801.0,0.04768502893746679 -11802.0,0.047668561955858904 -11803.0,0.04765210066076291 -11804.0,0.04763564505021506 -11805.0,0.047619195122252336 -11806.0,0.047602750874912385 -11807.0,0.047586312306233544 -11808.0,0.04756987941425477 -11809.0,0.04755345219701577 -11810.0,0.047537030652556884 -11811.0,0.04752061477891917 -11812.0,0.04750420457414429 -11813.0,0.04748780003627464 -11814.0,0.04747140116335329 -11815.0,0.04745500795342397 -11816.0,0.04743862040453111 -11817.0,0.04742223851471976 -11818.0,0.04740586228203568 -11819.0,0.047389491704525326 -11820.0,0.04737312678023582 -11821.0,0.0473567675072149 -11822.0,0.04734041388351106 -11823.0,0.04732406590717342 -11824.0,0.0473077235762518 -11825.0,0.04729138688879665 -11826.0,0.04727505584285914 -11827.0,0.04725873043649109 -11828.0,0.04724241066774503 -11829.0,0.04722609653467408 -11830.0,0.0472097880353321 -11831.0,0.047193485167773615 -11832.0,0.04717718793005383 -11833.0,0.04716089632022855 -11834.0,0.04714461033635435 -11835.0,0.04712832997648841 -11836.0,0.047112055238688604 -11837.0,0.047095786121013505 -11838.0,0.04707952262152227 -11839.0,0.04706326473827482 -11840.0,0.0470470124693317 -11841.0,0.047030765812754144 -11842.0,0.04701452476660402 -11843.0,0.0469982893289439 -11844.0,0.04698205949783702 -11845.0,0.046965835271347296 -11846.0,0.04694961664753925 -11847.0,0.04693340362447815 -11848.0,0.046917196200229896 -11849.0,0.04690099437286108 -11850.0,0.0468847981404389 -11851.0,0.046868607501031286 -11852.0,0.046852422452706814 -11853.0,0.04683624299353472 -11854.0,0.04682006912158494 -11855.0,0.04680390083492801 -11856.0,0.046787738131635184 -11857.0,0.04677158100977837 -11858.0,0.046755429467430165 -11859.0,0.046739283502663764 -11860.0,0.0467231431135531 -11861.0,0.04670700829817273 -11862.0,0.046690879054597914 -11863.0,0.04667475538090451 -11864.0,0.046658637275169106 -11865.0,0.04664252473546892 -11866.0,0.046626417759881876 -11867.0,0.04661031634648648 -11868.0,0.04659422049336197 -11869.0,0.04657813019858823 -11870.0,0.04656204546024583 -11871.0,0.04654596627641593 -11872.0,0.046529892645180426 -11873.0,0.04651382456462186 -11874.0,0.0464977620328234 -11875.0,0.04648170504786895 -11876.0,0.04646565360784298 -11877.0,0.04644960771083069 -11878.0,0.046433567354917916 -11879.0,0.046417532538191184 -11880.0,0.04640150325873762 -11881.0,0.04638547951464507 -11882.0,0.04636946130400201 -11883.0,0.04635344862489761 -11884.0,0.04633744147542163 -11885.0,0.04632143985366456 -11886.0,0.046305443757717515 -11887.0,0.04628945318567231 -11888.0,0.04627346813562133 -11889.0,0.04625748860565771 -11890.0,0.0462415145938752 -11891.0,0.04622554609836822 -11892.0,0.04620958311723186 -11893.0,0.046193625648561824 -11894.0,0.04617767369045451 -11895.0,0.04616172724100697 -11896.0,0.046145786298316935 -11897.0,0.04612985086048271 -11898.0,0.04611392092560336 -11899.0,0.04609799649177854 -11900.0,0.046082077557108594 -11901.0,0.04606616411969449 -11902.0,0.04605025617763788 -11903.0,0.04603435372904107 -11904.0,0.04601845677200702 -11905.0,0.046002565304639316 -11906.0,0.045986679325042225 -11907.0,0.04597079883132068 -11908.0,0.045954923821580264 -11909.0,0.04593905429392717 -11910.0,0.045923190246468286 -11911.0,0.04590733167731117 -11912.0,0.045891478584563994 -11913.0,0.045875630966335616 -11914.0,0.045859788820735506 -11915.0,0.04584395214587382 -11916.0,0.04582812093986137 -11917.0,0.04581229520080961 -11918.0,0.04579647492683062 -11919.0,0.04578066011603717 -11920.0,0.04576485076654267 -11921.0,0.045749046876461204 -11922.0,0.04573324844390743 -11923.0,0.045717455466996744 -11924.0,0.045701667943845156 -11925.0,0.045685885872569346 -11926.0,0.04567010925128659 -11927.0,0.04565433807811488 -11928.0,0.04563857235117281 -11929.0,0.04562281206857966 -11930.0,0.04560705722845536 -11931.0,0.04559130782892043 -11932.0,0.0455755638680961 -11933.0,0.045559825344104236 -11934.0,0.045544092255067364 -11935.0,0.045528364599108605 -11936.0,0.04551264237435178 -11937.0,0.045496925578921335 -11938.0,0.0454812142109424 -11939.0,0.045465508268540684 -11940.0,0.045449807749842606 -11941.0,0.04543411265297519 -11942.0,0.04541842297606617 -11943.0,0.04540273871724383 -11944.0,0.04538705987463717 -11945.0,0.04537138644637582 -11946.0,0.04535571843059008 -11947.0,0.04534005582541082 -11948.0,0.04532439862896963 -11949.0,0.04530874683939873 -11950.0,0.045293100454830953 -11951.0,0.045277459473399846 -11952.0,0.045261823893239496 -11953.0,0.045246193712484714 -11954.0,0.045230568929270944 -11955.0,0.04521494954173427 -11956.0,0.045199335548011386 -11957.0,0.04518372694623966 -11958.0,0.04516812373455712 -11959.0,0.04515252591110242 -11960.0,0.045136933474014825 -11961.0,0.04512134642143428 -11962.0,0.04510576475150137 -11963.0,0.045090188462357336 -11964.0,0.045074617552143995 -11965.0,0.04505905201900387 -11966.0,0.04504349186108012 -11967.0,0.04502793707651652 -11968.0,0.04501238766345751 -11969.0,0.04499684362004814 -11970.0,0.04498130494443412 -11971.0,0.044965771634761814 -11972.0,0.044950243689178215 -11973.0,0.044934721105830924 -11974.0,0.04491920388286823 -11975.0,0.04490369201843904 -11976.0,0.044888185510692916 -11977.0,0.04487268435778001 -11978.0,0.04485718855785116 -11979.0,0.044841698109057845 -11980.0,0.044826213009552175 -11981.0,0.04481073325748686 -11982.0,0.044795258851015284 -11983.0,0.04477978978829148 -11984.0,0.04476432606747011 -11985.0,0.044748867686706426 -11986.0,0.04473341464415639 -11987.0,0.04471796693797654 -11988.0,0.0447025245663241 -11989.0,0.044687087527356915 -11990.0,0.04467165581923343 -11991.0,0.044656229440112764 -11992.0,0.04464080838815467 -11993.0,0.04462539266151955 -11994.0,0.04460998225836837 -11995.0,0.044594577176862805 -11996.0,0.04457917741516514 -11997.0,0.04456378297143833 -11998.0,0.044548393843845874 -11999.0,0.04453301003055199 -12000.0,0.0445176315297215 -12001.0,0.04450225833951987 -12002.0,0.04448689045811317 -12003.0,0.04447152788366812 -12004.0,0.0444561706143521 -12005.0,0.04444081864833309 -12006.0,0.044425471983779725 -12007.0,0.04441013061886123 -12008.0,0.04439479455174751 -12009.0,0.044379463780609085 -12010.0,0.04436413830361712 -12011.0,0.04434881811894336 -12012.0,0.04433350322476025 -12013.0,0.04431819361924081 -12014.0,0.044302889300558757 -12015.0,0.04428759026688835 -12016.0,0.044272296516404554 -12017.0,0.04425700804728292 -12018.0,0.04424172485769968 -12019.0,0.0442264469458316 -12020.0,0.04421117430985619 -12021.0,0.0441959069479515 -12022.0,0.04418064485829629 -12023.0,0.04416538803906986 -12024.0,0.044150136488452195 -12025.0,0.0441348902046239 -12026.0,0.044119649185766205 -12027.0,0.04410441343006098 -12028.0,0.04408918293569069 -12029.0,0.04407395770083845 -12030.0,0.044058737723688006 -12031.0,0.04404352300242374 -12032.0,0.04402831353523062 -12033.0,0.04401310932029428 -12034.0,0.043997910355800966 -12035.0,0.04398271663993757 -12036.0,0.043967528170891564 -12037.0,0.04395234494685108 -12038.0,0.04393716696600488 -12039.0,0.04392199422654236 -12040.0,0.04390682672665348 -12041.0,0.04389166446452889 -12042.0,0.043876507438359844 -12043.0,0.04386135564633822 -12044.0,0.043846209086656526 -12045.0,0.04383106775750787 -12046.0,0.043815931657086006 -12047.0,0.04380080078358531 -12048.0,0.043785675135200805 -12049.0,0.043770554710128064 -12050.0,0.04375543950656336 -12051.0,0.04374032952270355 -12052.0,0.04372522475674615 -12053.0,0.04371012520688923 -12054.0,0.04369503087133154 -12055.0,0.04367994174827244 -12056.0,0.04366485783591192 -12057.0,0.04364977913245054 -12058.0,0.04363470563608956 -12059.0,0.0436196373450308 -12060.0,0.04360457425747675 -12061.0,0.04358951637163046 -12062.0,0.04357446368569564 -12063.0,0.04355941619787662 -12064.0,0.04354437390637836 -12065.0,0.04352933680940642 -12066.0,0.04351430490516695 -12067.0,0.04349927819186679 -12068.0,0.04348425666771334 -12069.0,0.043469240330914684 -12070.0,0.04345422917967942 -12071.0,0.04343922321221687 -12072.0,0.04342422242673691 -12073.0,0.043409226821450084 -12074.0,0.04339423639456749 -12075.0,0.0433792511443009 -12076.0,0.043364271068862675 -12077.0,0.04334929616646583 -12078.0,0.043334326435323915 -12079.0,0.04331936187365119 -12080.0,0.04330440247966247 -12081.0,0.04328944825157322 -12082.0,0.043274499187599534 -12083.0,0.043259555285958054 -12084.0,0.043244616544866096 -12085.0,0.04322968296254159 -12086.0,0.04321475453720307 -12087.0,0.04319983126706965 -12088.0,0.043184913150361125 -12089.0,0.04317000018529786 -12090.0,0.043155092370100866 -12091.0,0.04314018970299172 -12092.0,0.04312529218219265 -12093.0,0.04311039980592651 -12094.0,0.04309551257241674 -12095.0,0.04308063047988738 -12096.0,0.043065753526563125 -12097.0,0.04305088171066926 -12098.0,0.0430360150304317 -12099.0,0.04302115348407693 -12100.0,0.04300629706983208 -12101.0,0.042991445785924905 -12102.0,0.04297659963058375 -12103.0,0.04296175860203758 -12104.0,0.04294692269851596 -12105.0,0.042932091918249066 -12106.0,0.042917266259467714 -12107.0,0.04290244572040332 -12108.0,0.04288763029928786 -12109.0,0.042872819994353994 -12110.0,0.04285801480383495 -12111.0,0.0428432147259646 -12112.0,0.04282841975897736 -12113.0,0.042813629901108326 -12114.0,0.04279884515059317 -12115.0,0.0427840655056682 -12116.0,0.04276929096457027 -12117.0,0.04275452152553691 -12118.0,0.042739757186806226 -12119.0,0.04272499794661695 -12120.0,0.042710243803208425 -12121.0,0.042695494754820554 -12122.0,0.0426807507996939 -12123.0,0.042666011936069614 -12124.0,0.04265127816218948 -12125.0,0.042636549476295825 -12126.0,0.04262182587663165 -12127.0,0.04260710736144053 -12128.0,0.042592393928966674 -12129.0,0.042577685577454845 -12130.0,0.04256298230515045 -12131.0,0.042548284110299504 -12132.0,0.042533590991148645 -12133.0,0.04251890294594504 -12134.0,0.04250421997293654 -12135.0,0.04248954207037157 -12136.0,0.04247486923649918 -12137.0,0.04246020146956897 -12138.0,0.04244553876783121 -12139.0,0.04243088112953674 -12140.0,0.04241622855293701 -12141.0,0.042401581036284094 -12142.0,0.042386938577830616 -12143.0,0.04237230117582985 -12144.0,0.042357668828535665 -12145.0,0.04234304153420255 -12146.0,0.04232841929108553 -12147.0,0.0423138020974403 -12148.0,0.04229918995152314 -12149.0,0.042284582851590945 -12150.0,0.04226998079590115 -12151.0,0.04225538378271186 -12152.0,0.04224079181028176 -12153.0,0.04222620487687014 -12154.0,0.04221162298073687 -12155.0,0.04219704612014244 -12156.0,0.04218247429334794 -12157.0,0.042167907498615056 -12158.0,0.042153345734206094 -12159.0,0.04213878899838391 -12160.0,0.042124237289411996 -12161.0,0.04210969060555445 -12162.0,0.04209514894507598 -12163.0,0.042080612306241834 -12164.0,0.04206608068731791 -12165.0,0.0420515540865707 -12166.0,0.04203703250226729 -12167.0,0.042022515932675336 -12168.0,0.042008004376063134 -12169.0,0.04199349783069956 -12170.0,0.04197899629485411 -12171.0,0.041964499766796816 -12172.0,0.041950008244798366 -12173.0,0.041935521727130026 -12174.0,0.04192104021206368 -12175.0,0.04190656369787176 -12176.0,0.04189209218282733 -12177.0,0.041877625665204046 -12178.0,0.04186316414327616 -12179.0,0.041848707615318545 -12180.0,0.04183425607960659 -12181.0,0.04181980953441636 -12182.0,0.041805367978024484 -12183.0,0.04179093140870821 -12184.0,0.04177649982474533 -12185.0,0.04176207322441426 -12186.0,0.041747651605994036 -12187.0,0.041733234967764266 -12188.0,0.041718823308005124 -12189.0,0.04170441662499741 -12190.0,0.04169001491702252 -12191.0,0.041675618182362456 -12192.0,0.04166122641929975 -12193.0,0.041646839626117586 -12194.0,0.04163245780109973 -12195.0,0.04161808094253054 -12196.0,0.041603709048694974 -12197.0,0.04158934211787853 -12198.0,0.04157498014836736 -12199.0,0.041560623138448174 -12200.0,0.04154627108640833 -12201.0,0.04153192399053567 -12202.0,0.041517581849118725 -12203.0,0.041503244660446574 -12204.0,0.041488912422808916 -12205.0,0.041474585134495985 -12206.0,0.04146026279379865 -12207.0,0.04144594539900837 -12208.0,0.0414316329484172 -12209.0,0.041417325440317725 -12210.0,0.041403022873003195 -12211.0,0.04138872524476741 -12212.0,0.04137443255390476 -12213.0,0.041360144798710266 -12214.0,0.04134586197747945 -12215.0,0.04133158408850851 -12216.0,0.04131731113009418 -12217.0,0.041303043100533836 -12218.0,0.04128877999812536 -12219.0,0.04127452182116729 -12220.0,0.04126026856795872 -12221.0,0.041246020236799366 -12222.0,0.041231776825989476 -12223.0,0.04121753833382993 -12224.0,0.04120330475862217 -12225.0,0.04118907609866826 -12226.0,0.04117485235227079 -12227.0,0.04116063351773298 -12228.0,0.04114641959335864 -12229.0,0.04113221057745216 -12230.0,0.04111800646831847 -12231.0,0.04110380726426315 -12232.0,0.04108961296359234 -12233.0,0.04107542356461276 -12234.0,0.04106123906563173 -12235.0,0.04104705946495711 -12236.0,0.041032884760897406 -12237.0,0.04101871495176166 -12238.0,0.04100455003585955 -12239.0,0.04099039001150126 -12240.0,0.04097623487699763 -12241.0,0.04096208463066004 -12242.0,0.0409479392708005 -12243.0,0.04093379879573154 -12244.0,0.040919663203766304 -12245.0,0.04090553249321854 -12246.0,0.040891406662402555 -12247.0,0.04087728570963322 -12248.0,0.04086316963322602 -12249.0,0.040849058431497005 -12250.0,0.04083495210276282 -12251.0,0.0408208506453407 -12252.0,0.040806754057548404 -12253.0,0.04079266233770434 -12254.0,0.040778575484127444 -12255.0,0.040764493495137305 -12256.0,0.040750416369053986 -12257.0,0.04073634410419822 -12258.0,0.04072227669889128 -12259.0,0.04070821415145505 -12260.0,0.04069415646021193 -12261.0,0.040680103623484974 -12262.0,0.040666055639597756 -12263.0,0.04065201250687449 -12264.0,0.040637974223639885 -12265.0,0.04062394078821931 -12266.0,0.040609912198938655 -12267.0,0.04059588845412445 -12268.0,0.04058186955210372 -12269.0,0.04056785549120414 -12270.0,0.04055384626975392 -12271.0,0.04053984188608187 -12272.0,0.04052584233851738 -12273.0,0.04051184762539038 -12274.0,0.040497857745031424 -12275.0,0.040483872695771604 -12276.0,0.04046989247594264 -12277.0,0.04045591708387675 -12278.0,0.04044194651790678 -12279.0,0.04042798077636617 -12280.0,0.0404140198575889 -12281.0,0.04040006375990951 -12282.0,0.040386112481663156 -12283.0,0.040372166021185554 -12284.0,0.040358224376813016 -12285.0,0.04034428754688236 -12286.0,0.04033035552973104 -12287.0,0.04031642832369708 -12288.0,0.04030250592711905 -12289.0,0.04028858833833614 -12290.0,0.04027467555568804 -12291.0,0.04026076757751509 -12292.0,0.04024686440215815 -12293.0,0.04023296602795869 -12294.0,0.04021907245325872 -12295.0,0.04020518367640084 -12296.0,0.04019129969572822 -12297.0,0.04017742050958462 -12298.0,0.04016354611631433 -12299.0,0.04014967651426224 -12300.0,0.04013581170177382 -12301.0,0.04012195167719511 -12302.0,0.04010809643887267 -12303.0,0.040094245985153695 -12304.0,0.04008040031438593 -12305.0,0.04006655942491769 -12306.0,0.04005272331509785 -12307.0,0.04003889198327585 -12308.0,0.04002506542780174 -12309.0,0.04001124364702609 -12310.0,0.03999742663930009 -12311.0,0.03998361440297544 -12312.0,0.03996980693640445 -12313.0,0.03995600423794 -12314.0,0.039942206305935535 -12315.0,0.03992841313874503 -12316.0,0.03991462473472309 -12317.0,0.039900841092224845 -12318.0,0.039887062209606035 -12319.0,0.03987328808522289 -12320.0,0.03985951871743229 -12321.0,0.03984575410459165 -12322.0,0.039831994245058955 -12323.0,0.039818239137192735 -12324.0,0.03980448877935211 -12325.0,0.039790743169896774 -12326.0,0.03977700230718696 -12327.0,0.03976326618958353 -12328.0,0.039749534815447796 -12329.0,0.03973580818314174 -12330.0,0.03972208629102788 -12331.0,0.0397083691374693 -12332.0,0.03969465672082962 -12333.0,0.03968094903947306 -12334.0,0.039667246091764384 -12335.0,0.039653547876068965 -12336.0,0.03963985439075266 -12337.0,0.03962616563418196 -12338.0,0.03961248160472389 -12339.0,0.03959880230074607 -12340.0,0.03958512772061661 -12341.0,0.039571457862704267 -12342.0,0.039557792725378314 -12343.0,0.03954413230700862 -12344.0,0.03953047660596557 -12345.0,0.039516825620620144 -12346.0,0.039503179349343887 -12347.0,0.0394895377905089 -12348.0,0.03947590094248785 -12349.0,0.03946226880365394 -12350.0,0.03944864137238096 -12351.0,0.03943501864704326 -12352.0,0.039421400626015776 -12353.0,0.039407787307673935 -12354.0,0.03939417869039378 -12355.0,0.039380574772551906 -12356.0,0.03936697555252549 -12357.0,0.039353381028692194 -12358.0,0.039339791199430325 -12359.0,0.0393262060631187 -12360.0,0.03931262561813674 -12361.0,0.03929904986286435 -12362.0,0.039285478795682074 -12363.0,0.03927191241497097 -12364.0,0.03925835071911268 -12365.0,0.039244793706489395 -12366.0,0.03923124137548384 -12367.0,0.03921769372447933 -12368.0,0.039204150751859734 -12369.0,0.039190612456009494 -12370.0,0.039177078835313545 -12371.0,0.03916354988815745 -12372.0,0.0391500256129273 -12373.0,0.03913650600800977 -12374.0,0.03912299107179203 -12375.0,0.03910948080266187 -12376.0,0.03909597519900761 -12377.0,0.03908247425921814 -12378.0,0.03906897798168287 -12379.0,0.039055486364791815 -12380.0,0.039041999406935514 -12381.0,0.03902851710650509 -12382.0,0.03901503946189217 -12383.0,0.03900156647148899 -12384.0,0.03898809813368831 -12385.0,0.03897463444688347 -12386.0,0.038961175409468356 -12387.0,0.03894772101983737 -12388.0,0.038934271276385525 -12389.0,0.03892082617750836 -12390.0,0.03890738572160199 -12391.0,0.03889394990706303 -12392.0,0.03888051873228871 -12393.0,0.03886709219567678 -12394.0,0.03885367029562558 -12395.0,0.03884025303053393 -12396.0,0.038826840398801264 -12397.0,0.03881343239882757 -12398.0,0.03880002902901337 -12399.0,0.038786630287759714 -12400.0,0.03877323617346824 -12401.0,0.03875984668454114 -12402.0,0.038746461819381135 -12403.0,0.038733081576391534 -12404.0,0.03871970595397613 -12405.0,0.03870633495053932 -12406.0,0.038692968564486056 -12407.0,0.03867960679422184 -12408.0,0.03866624963815266 -12409.0,0.03865289709468515 -12410.0,0.038639549162226415 -12411.0,0.03862620583918419 -12412.0,0.038612867123966665 -12413.0,0.038599533014982645 -12414.0,0.03858620351064148 -12415.0,0.03857287860935306 -12416.0,0.03855955830952779 -12417.0,0.03854624260957668 -12418.0,0.03853293150791126 -12419.0,0.03851962500294363 -12420.0,0.038506323093086395 -12421.0,0.03849302577675273 -12422.0,0.03847973305235638 -12423.0,0.03846644491831162 -12424.0,0.03845316137303328 -12425.0,0.03843988241493669 -12426.0,0.038426608042437804 -12427.0,0.03841333825395308 -12428.0,0.03840007304789954 -12429.0,0.038386812422694705 -12430.0,0.038373556376756705 -12431.0,0.038360304908504186 -12432.0,0.038347058016356364 -12433.0,0.03833381569873294 -12434.0,0.038320577954054226 -12435.0,0.038307344780741055 -12436.0,0.03829411617721483 -12437.0,0.03828089214189742 -12438.0,0.03826767267321133 -12439.0,0.03825445776957957 -12440.0,0.038241247429425695 -12441.0,0.03822804165117382 -12442.0,0.03821484043324857 -12443.0,0.038201643774075145 -12444.0,0.03818845167207928 -12445.0,0.038175264125687274 -12446.0,0.03816208113332591 -12447.0,0.03814890269342258 -12448.0,0.03813572880440518 -12449.0,0.03812255946470218 -12450.0,0.03810939467274255 -12451.0,0.03809623442695583 -12452.0,0.03808307872577211 -12453.0,0.03806992756762202 -12454.0,0.03805678095093669 -12455.0,0.03804363887414785 -12456.0,0.03803050133568773 -12457.0,0.03801736833398915 -12458.0,0.03800423986748539 -12459.0,0.03799111593461035 -12460.0,0.03797799653379844 -12461.0,0.0379648816634846 -12462.0,0.03795177132210435 -12463.0,0.03793866550809368 -12464.0,0.037925564219889185 -12465.0,0.03791246745592797 -12466.0,0.03789937521464771 -12467.0,0.037886287494486554 -12468.0,0.03787320429388326 -12469.0,0.037860125611277086 -12470.0,0.03784705144510787 -12471.0,0.03783398179381592 -12472.0,0.037820916655842134 -12473.0,0.03780785602962794 -12474.0,0.03779479991361532 -12475.0,0.03778174830624673 -12476.0,0.03776870120596525 -12477.0,0.03775565861121443 -12478.0,0.03774262052043839 -12479.0,0.03772958693208181 -12480.0,0.03771655784458983 -12481.0,0.0377035332564082 -12482.0,0.037690513165983174 -12483.0,0.03767749757176158 -12484.0,0.0376644864721907 -12485.0,0.037651479865718436 -12486.0,0.037638477750793195 -12487.0,0.037625480125863926 -12488.0,0.037612486989380085 -12489.0,0.0375994983397917 -12490.0,0.037586514175549306 -12491.0,0.03757353449510402 -12492.0,0.037560559296907416 -12493.0,0.03754758857941168 -12494.0,0.03753462234106948 -12495.0,0.03752166058033407 -12496.0,0.03750870329565917 -12497.0,0.03749575048549908 -12498.0,0.037482802148308625 -12499.0,0.03746985828254318 -12500.0,0.03745691888665863 -12501.0,0.037443983959111374 -12502.0,0.037431053498358395 -12503.0,0.037418127502857175 -12504.0,0.03740520597106575 -12505.0,0.03739228890144265 -12506.0,0.037379376292446975 -12507.0,0.03736646814253835 -12508.0,0.037353564450176936 -12509.0,0.03734066521382339 -12510.0,0.03732777043193894 -12511.0,0.03731488010298534 -12512.0,0.037301994225424864 -12513.0,0.03728911279772031 -12514.0,0.03727623581833502 -12515.0,0.03726336328573288 -12516.0,0.037250495198378274 -12517.0,0.03723763155473616 -12518.0,0.03722477235327196 -12519.0,0.03721191759245168 -12520.0,0.03719906727074185 -12521.0,0.03718622138660953 -12522.0,0.03717337993852226 -12523.0,0.03716054292494818 -12524.0,0.03714771034435592 -12525.0,0.037134882195214665 -12526.0,0.03712205847599408 -12527.0,0.0371092391851644 -12528.0,0.03709642432119638 -12529.0,0.03708361388256131 -12530.0,0.037070807867730975 -12531.0,0.037058006275177725 -12532.0,0.03704520910337442 -12533.0,0.03703241635079447 -12534.0,0.03701962801591176 -12535.0,0.037006844097200745 -12536.0,0.0369940645931364 -12537.0,0.03698128950219423 -12538.0,0.03696851882285027 -12539.0,0.036955752553581044 -12540.0,0.036942990692863636 -12541.0,0.03693023323917566 -12542.0,0.03691748019099524 -12543.0,0.03690473154680103 -12544.0,0.036891987305072205 -12545.0,0.036879247464288466 -12546.0,0.03686651202293007 -12547.0,0.036853780979477745 -12548.0,0.03684105433241277 -12549.0,0.036828332080216956 -12550.0,0.03681561422137265 -12551.0,0.036802900754362676 -12552.0,0.03679019167767041 -12553.0,0.03677748698977976 -12554.0,0.03676478668917516 -12555.0,0.036752090774341564 -12556.0,0.0367393992437644 -12557.0,0.0367267120959297 -12558.0,0.03671402932932396 -12559.0,0.03670135094243424 -12560.0,0.03668867693374807 -12561.0,0.03667600730175355 -12562.0,0.03666334204493928 -12563.0,0.036650681161794416 -12564.0,0.036638024650808565 -12565.0,0.03662537251047191 -12566.0,0.03661272473927515 -12567.0,0.03660008133570951 -12568.0,0.0365874422982667 -12569.0,0.03657480762543898 -12570.0,0.03656217731571913 -12571.0,0.036549551367600464 -12572.0,0.03653692977957677 -12573.0,0.036524312550142386 -12574.0,0.036511699677792185 -12575.0,0.03649909116102154 -12576.0,0.03648648699832636 -12577.0,0.03647388718820302 -12578.0,0.036461291729148484 -12579.0,0.0364487006196602 -12580.0,0.03643611385823615 -12581.0,0.036423531443374804 -12582.0,0.03641095337357519 -12583.0,0.03639837964733682 -12584.0,0.03638581026315977 -12585.0,0.03637324521954456 -12586.0,0.0363606845149923 -12587.0,0.03634812814800459 -12588.0,0.03633557611708355 -12589.0,0.0363230284207318 -12590.0,0.03631048505745249 -12591.0,0.036297946025749296 -12592.0,0.0362854113241264 -12593.0,0.036272880951088535 -12594.0,0.03626035490514086 -12595.0,0.03624783318478915 -12596.0,0.036235315788539633 -12597.0,0.03622280271489911 -12598.0,0.036210293962374816 -12599.0,0.036197789529474576 -12600.0,0.036185289414706695 -12601.0,0.03617279361658002 -12602.0,0.03616030213360386 -12603.0,0.03614781496428809 -12604.0,0.03613533210714307 -12605.0,0.03612285356067972 -12606.0,0.036110379323409394 -12607.0,0.03609790939384404 -12608.0,0.036085443770496065 -12609.0,0.03607298245187844 -12610.0,0.036060525436504585 -12611.0,0.036048072722888486 -12612.0,0.03603562430954462 -12613.0,0.03602318019498799 -12614.0,0.03601074037773412 -12615.0,0.03599830485629899 -12616.0,0.03598587362919916 -12617.0,0.035973446694951665 -12618.0,0.03596102405207408 -12619.0,0.03594860569908445 -12620.0,0.03593619163450136 -12621.0,0.03592378185684392 -12622.0,0.03591137636463173 -12623.0,0.035898975156384884 -12624.0,0.03588657823062402 -12625.0,0.035874185585870286 -12626.0,0.035861797220645336 -12627.0,0.0358494131334713 -12628.0,0.03583703332287086 -12629.0,0.03582465778736719 -12630.0,0.03581228652548399 -12631.0,0.03579991953574547 -12632.0,0.0357875568166763 -12633.0,0.03577519836680172 -12634.0,0.03576284418464746 -12635.0,0.03575049426873977 -12636.0,0.03573814861760536 -12637.0,0.0357258072297715 -12638.0,0.03571347010376596 -12639.0,0.03570113723811701 -12640.0,0.035688808631353416 -12641.0,0.03567648428200447 -12642.0,0.03566416418859997 -12643.0,0.03565184834967024 -12644.0,0.035639536763746045 -12645.0,0.035627229429358725 -12646.0,0.03561492634504011 -12647.0,0.03560262750932255 -12648.0,0.035590332920738835 -12649.0,0.03557804257782234 -12650.0,0.03556575647910692 -12651.0,0.03555347462312692 -12652.0,0.03554119700841723 -12653.0,0.035528923633513176 -12654.0,0.03551665449695067 -12655.0,0.035504389597266074 -12656.0,0.0354921289329963 -12657.0,0.03547987250267871 -12658.0,0.03546762030485121 -12659.0,0.03545537233805221 -12660.0,0.03544312860082063 -12661.0,0.03543088909169584 -12662.0,0.03541865380921779 -12663.0,0.03540642275192688 -12664.0,0.035394195918364076 -12665.0,0.03538197330707075 -12666.0,0.03536975491658886 -12667.0,0.03535754074546083 -12668.0,0.035345330792229616 -12669.0,0.03533312505543866 -12670.0,0.03532092353363189 -12671.0,0.035308726225353755 -12672.0,0.03529653312914922 -12673.0,0.035284344243563734 -12674.0,0.03527215956714324 -12675.0,0.035259979098434195 -12676.0,0.03524780283598356 -12677.0,0.03523563077833883 -12678.0,0.03522346292404791 -12679.0,0.035211299271659294 -12680.0,0.03519913981972195 -12681.0,0.035186984566785345 -12682.0,0.035174833511399425 -12683.0,0.03516268665211467 -12684.0,0.03515054398748206 -12685.0,0.03513840551605306 -12686.0,0.03512627123637962 -12687.0,0.03511414114701422 -12688.0,0.035102015246509834 -12689.0,0.035089893533419916 -12690.0,0.035077776006298474 -12691.0,0.03506566266369992 -12692.0,0.03505355350417925 -12693.0,0.03504144852629193 -12694.0,0.03502934772859393 -12695.0,0.03501725110964169 -12696.0,0.035005158667992184 -12697.0,0.034993070402202876 -12698.0,0.034980986310831734 -12699.0,0.03496890639243719 -12700.0,0.0349568306455782 -12701.0,0.03494475906881423 -12702.0,0.03493269166070524 -12703.0,0.034920628419811646 -12704.0,0.0349085693446944 -12705.0,0.03489651443391495 -12706.0,0.034884463686035226 -12707.0,0.034872417099617685 -12708.0,0.03486037467322522 -12709.0,0.034848336405421274 -12710.0,0.03483630229476977 -12711.0,0.03482427233983514 -12712.0,0.03481224653918228 -12713.0,0.034800224891376595 -12714.0,0.034788207394984005 -12715.0,0.03477619404857092 -12716.0,0.034764184850704205 -12717.0,0.03475217979995126 -12718.0,0.03474017889487998 -12719.0,0.034728182134058753 -12720.0,0.03471618951605643 -12721.0,0.034704201039442384 -12722.0,0.03469221670278649 -12723.0,0.0346802365046591 -12724.0,0.03466826044363105 -12725.0,0.034656288518273695 -12726.0,0.03464432072715887 -12727.0,0.0346323570688589 -12728.0,0.03462039754194663 -12729.0,0.034608442144995345 -12730.0,0.034596490876578866 -12731.0,0.03458454373527149 -12732.0,0.03457260071964804 -12733.0,0.03456066182828375 -12734.0,0.034548727059754425 -12735.0,0.03453679641263633 -12736.0,0.03452486988550625 -12737.0,0.0345129474769414 -12738.0,0.03450102918551953 -12739.0,0.03448911500981889 -12740.0,0.034477204948418216 -12741.0,0.034465298999896685 -12742.0,0.034453397162834035 -12743.0,0.03444149943581045 -12744.0,0.034429605817406624 -12745.0,0.03441771630620375 -12746.0,0.03440583090078347 -12747.0,0.03439394959972795 -12748.0,0.034382072401619834 -12749.0,0.03437019930504229 -12750.0,0.03435833030857889 -12751.0,0.03434646541081379 -12752.0,0.034334604610331575 -12753.0,0.03432274790571736 -12754.0,0.034310895295556705 -12755.0,0.034299046778435684 -12756.0,0.03428720235294085 -12757.0,0.03427536201765928 -12758.0,0.03426352577117847 -12759.0,0.03425169361208646 -12760.0,0.03423986553897175 -12761.0,0.03422804155042336 -12762.0,0.03421622164503075 -12763.0,0.0342044058213839 -12764.0,0.03419259407807326 -12765.0,0.034180786413689795 -12766.0,0.03416898282682494 -12767.0,0.03415718331607058 -12768.0,0.03414538788001914 -12769.0,0.034133596517263505 -12770.0,0.03412180922639708 -12771.0,0.03411002600601368 -12772.0,0.03409824685470767 -12773.0,0.0340864717710739 -12774.0,0.03407470075370768 -12775.0,0.0340629338012048 -12776.0,0.03405117091216156 -12777.0,0.03403941208517473 -12778.0,0.03402765731884159 -12779.0,0.03401590661175984 -12780.0,0.03400415996252773 -12781.0,0.03399241736974397 -12782.0,0.03398067883200775 -12783.0,0.033968944347918764 -12784.0,0.033957213916077145 -12785.0,0.03394548753508355 -12786.0,0.03393376520353912 -12787.0,0.03392204692004546 -12788.0,0.033910332683204654 -12789.0,0.03389862249161928 -12790.0,0.03388691634389241 -12791.0,0.03387521423862759 -12792.0,0.03386351617442882 -12793.0,0.033851822149900616 -12794.0,0.03384013216364797 -12795.0,0.03382844621427637 -12796.0,0.03381676430039174 -12797.0,0.03380508642060051 -12798.0,0.03379341257350961 -12799.0,0.03378174275772645 -12800.0,0.03377007697185887 -12801.0,0.033758415214515246 -12802.0,0.033746757484304404 -12803.0,0.033735103779835685 -12804.0,0.03372345409971888 -12805.0,0.033711808442564245 -12806.0,0.033700166806982554 -12807.0,0.03368852919158505 -12808.0,0.03367689559498345 -12809.0,0.03366526601578993 -12810.0,0.03365364045261719 -12811.0,0.03364201890407837 -12812.0,0.03363040136878713 -12813.0,0.033618787845357545 -12814.0,0.033607178332404224 -12815.0,0.03359557282854224 -12816.0,0.03358397133238715 -12817.0,0.03357237384255495 -12818.0,0.03356078035766217 -12819.0,0.03354919087632578 -12820.0,0.033537605397163245 -12821.0,0.03352602391879251 -12822.0,0.03351444643983197 -12823.0,0.033502872958900524 -12824.0,0.03349130347461754 -12825.0,0.03347973798560288 -12826.0,0.033468176490476835 -12827.0,0.03345661898786022 -12828.0,0.033445065476374304 -12829.0,0.033433515954640856 -12830.0,0.033421970421282074 -12831.0,0.03341042887492067 -12832.0,0.03339889131417983 -12833.0,0.033387357737683206 -12834.0,0.03337582814405492 -12835.0,0.03336430253191956 -12836.0,0.033352780899902235 -12837.0,0.0333412632466285 -12838.0,0.03332974957072435 -12839.0,0.03331823987081631 -12840.0,0.03330673414553135 -12841.0,0.03329523239349692 -12842.0,0.033283734613340964 -12843.0,0.03327224080369185 -12844.0,0.033260750963178466 -12845.0,0.033249265090430156 -12846.0,0.033237783184076754 -12847.0,0.03322630524274853 -12848.0,0.033214831265076246 -12849.0,0.03320336124969116 -12850.0,0.03319189519522499 -12851.0,0.03318043310030988 -12852.0,0.03316897496357852 -12853.0,0.033157520783664025 -12854.0,0.033146070559200005 -12855.0,0.03313462428882052 -12856.0,0.033123181971160105 -12857.0,0.0331117436048538 -12858.0,0.03310030918853707 -12859.0,0.0330888787208459 -12860.0,0.03307745220041668 -12861.0,0.03306602962588633 -12862.0,0.03305461099589222 -12863.0,0.0330431963090722 -12864.0,0.03303178556406457 -12865.0,0.0330203787595081 -12866.0,0.03300897589404206 -12867.0,0.032997576966306175 -12868.0,0.03298618197494061 -12869.0,0.032974790918586044 -12870.0,0.032963403795883604 -12871.0,0.032952020605474905 -12872.0,0.03294064134600199 -12873.0,0.0329292660161074 -12874.0,0.03291789461443415 -12875.0,0.032906527139625726 -12876.0,0.03289516359032604 -12877.0,0.03288380396517953 -12878.0,0.03287244826283106 -12879.0,0.032861096481925985 -12880.0,0.032849748621110134 -12881.0,0.032838404679029765 -12882.0,0.032827064654331634 -12883.0,0.03281572854566296 -12884.0,0.03280439635167145 -12885.0,0.032793068071005224 -12886.0,0.03278174370231291 -12887.0,0.0327704232442436 -12888.0,0.032759106695446856 -12889.0,0.03274779405457267 -12890.0,0.03273648532027154 -12891.0,0.03272518049119442 -12892.0,0.032713879565992726 -12893.0,0.03270258254331833 -12894.0,0.03269128942182359 -12895.0,0.032680000200161305 -12896.0,0.03266871487698477 -12897.0,0.03265743345094773 -12898.0,0.03264615592070438 -12899.0,0.03263488228490939 -12900.0,0.032623612542217906 -12901.0,0.03261234669128555 -12902.0,0.032601084730768344 -12903.0,0.03258982665932284 -12904.0,0.03257857247560604 -12905.0,0.03256732217827541 -12906.0,0.03255607576598884 -12907.0,0.03254483323740473 -12908.0,0.03253359459118193 -12909.0,0.032522359825979764 -12910.0,0.03251112894045798 -12911.0,0.032499901933276835 -12912.0,0.032488678803097026 -12913.0,0.03247745954857972 -12914.0,0.03246624416838652 -12915.0,0.03245503266117953 -12916.0,0.03244382502562129 -12917.0,0.03243262126037482 -12918.0,0.03242142136410361 -12919.0,0.032410225335471554 -12920.0,0.03239903317314307 -12921.0,0.03238784487578301 -12922.0,0.032376660442056705 -12923.0,0.032365479870629904 -12924.0,0.03235430316016887 -12925.0,0.0323431303093403 -12926.0,0.03233196131681136 -12927.0,0.03232079618124965 -12928.0,0.03230963490132326 -12929.0,0.03229847747570074 -12930.0,0.0322873239030511 -12931.0,0.03227617418204376 -12932.0,0.03226502831134867 -12933.0,0.0322538862896362 -12934.0,0.032242748115577195 -12935.0,0.03223161378784296 -12936.0,0.03222048330510522 -12937.0,0.032209356666036214 -12938.0,0.032198233869308604 -12939.0,0.03218711491359554 -12940.0,0.0321759997975706 -12941.0,0.032164888519907814 -12942.0,0.032153781079281706 -12943.0,0.03214267747436725 -12944.0,0.03213157770383984 -12945.0,0.03212048176637537 -12946.0,0.03210938966065018 -12947.0,0.03209830138534107 -12948.0,0.03208721693912525 -12949.0,0.03207613632068046 -12950.0,0.03206505952868485 -12951.0,0.03205398656181707 -12952.0,0.03204291741875615 -12953.0,0.03203185209818164 -12954.0,0.03202079059877354 -12955.0,0.032009732919212275 -12956.0,0.03199867905817877 -12957.0,0.03198762901435435 -12958.0,0.03197658278642084 -12959.0,0.0319655403730605 -12960.0,0.03195450177295608 -12961.0,0.031943466984790704 -12962.0,0.03193243600724804 -12963.0,0.03192140883901216 -12964.0,0.03191038547876761 -12965.0,0.031899365925199374 -12966.0,0.031888350176992895 -12967.0,0.03187733823283409 -12968.0,0.03186633009140932 -12969.0,0.03185532575140537 -12970.0,0.03184432521150952 -12971.0,0.03183332847040947 -12972.0,0.0318223355267934 -12973.0,0.03181134637934995 -12974.0,0.03180036102676816 -12975.0,0.03178937946773758 -12976.0,0.03177840170094817 -12977.0,0.031767427725090405 -12978.0,0.03175645753885512 -12979.0,0.03174549114093367 -12980.0,0.03173452853001785 -12981.0,0.03172356970479991 -12982.0,0.031712614663972516 -12983.0,0.03170166340622882 -12984.0,0.031690715930262424 -12985.0,0.03167977223476739 -12986.0,0.03166883231843817 -12987.0,0.031657896179969745 -12988.0,0.03164696381805751 -12989.0,0.03163603523139732 -12990.0,0.03162511041868545 -12991.0,0.031614189378618665 -12992.0,0.031603272109894165 -12993.0,0.03159235861120959 -12994.0,0.03158144888126307 -12995.0,0.031570542918753115 -12996.0,0.03155964072237873 -12997.0,0.031548742290839385 -12998.0,0.03153784762283497 -12999.0,0.03152695671706581 -13000.0,0.03151606957223271 -13001.0,0.031505186187036925 -13002.0,0.031494306560180145 -13003.0,0.03148343069036449 -13004.0,0.03147255857629256 -13005.0,0.03146169021666739 -13006.0,0.03145082561019248 -13007.0,0.03143996475557174 -13008.0,0.031429107651509545 -13009.0,0.03141825429671074 -13010.0,0.03140740468988058 -13011.0,0.03139655882972483 -13012.0,0.0313857167149496 -13013.0,0.03137487834426153 -13014.0,0.03136404371636769 -13015.0,0.03135321282997559 -13016.0,0.031342385683793154 -13017.0,0.031331562276528814 -13018.0,0.0313207426068914 -13019.0,0.03130992667359022 -13020.0,0.03129911447533499 -13021.0,0.0312883060108359 -13022.0,0.03127750127880359 -13023.0,0.03126670027794914 -13024.0,0.03125590300698404 -13025.0,0.031245109464620276 -13026.0,0.03123431964957025 -13027.0,0.031223533560546836 -13028.0,0.0312127511962633 -13029.0,0.0312019725554334 -13030.0,0.031191197636771317 -13031.0,0.03118042643899169 -13032.0,0.031169658960809605 -13033.0,0.03115889520094055 -13034.0,0.031148135158100505 -13035.0,0.031137378831005872 -13036.0,0.031126626218373515 -13037.0,0.031115877318920696 -13038.0,0.031105132131365166 -13039.0,0.0310943906544251 -13040.0,0.031083652886819135 -13041.0,0.031072918827266306 -13042.0,0.03106218847448613 -13043.0,0.03105146182719855 -13044.0,0.031040738884123977 -13045.0,0.03103001964398321 -13046.0,0.03101930410549754 -13047.0,0.03100859226738867 -13048.0,0.03099788412837877 -13049.0,0.030987179687190444 -13050.0,0.030976478942546702 -13051.0,0.03096578189317104 -13052.0,0.030955088537787372 -13053.0,0.03094439887512008 -13054.0,0.030933712903893934 -13055.0,0.030923030622834188 -13056.0,0.030912352030666525 -13057.0,0.03090167712611708 -13058.0,0.030891005907912394 -13059.0,0.03088033837477947 -13060.0,0.03086967452544576 -13061.0,0.03085901435863915 -13062.0,0.03084835787308794 -13063.0,0.030837705067520895 -13064.0,0.03082705594066722 -13065.0,0.03081641049125656 -13066.0,0.030805768718018964 -13067.0,0.030795130619684963 -13068.0,0.03078449619498551 -13069.0,0.03077386544265199 -13070.0,0.03076323836141625 -13071.0,0.030752614950010526 -13072.0,0.03074199520716754 -13073.0,0.030731379131620433 -13074.0,0.030720766722102794 -13075.0,0.030710157977348617 -13076.0,0.030699552896092372 -13077.0,0.030688951477068946 -13078.0,0.03067835371901368 -13079.0,0.030667759620662313 -13080.0,0.03065716918075106 -13081.0,0.03064658239801656 -13082.0,0.0306359992711959 -13083.0,0.03062541979902656 -13084.0,0.030614843980246505 -13085.0,0.03060427181359411 -13086.0,0.0305937032978082 -13087.0,0.030583138431628038 -13088.0,0.030572577213793285 -13089.0,0.03056201964304408 -13090.0,0.030551465718120976 -13091.0,0.03054091543776499 -13092.0,0.030530368800717515 -13093.0,0.030519825805720435 -13094.0,0.03050928645151604 -13095.0,0.03049875073684708 -13096.0,0.030488218660456694 -13097.0,0.030477690221088493 -13098.0,0.03046716541748651 -13099.0,0.030456644248395236 -13100.0,0.030446126712559533 -13101.0,0.030435612808724755 -13102.0,0.03042510253563667 -13103.0,0.03041459589204149 -13104.0,0.030404092876685822 -13105.0,0.03039359348831675 -13106.0,0.030383097725681773 -13107.0,0.03037260558752882 -13108.0,0.03036211707260627 -13109.0,0.030351632179662896 -13110.0,0.030341150907447934 -13111.0,0.03033067325471105 -13112.0,0.030320199220202345 -13113.0,0.030309728802672322 -13114.0,0.030299262000871945 -13115.0,0.030288798813552602 -13116.0,0.03027833923946613 -13117.0,0.03026788327736474 -13118.0,0.03025743092600114 -13119.0,0.030246982184128426 -13120.0,0.03023653705050016 -13121.0,0.03022609552387029 -13122.0,0.030215657602993225 -13123.0,0.030205223286623797 -13124.0,0.030194792573517277 -13125.0,0.03018436546242936 -13126.0,0.030173941952116146 -13127.0,0.030163522041334198 -13128.0,0.030153105728840498 -13129.0,0.03014269301339247 -13130.0,0.030132283893747926 -13131.0,0.03012187836866514 -13132.0,0.03011147643690282 -13133.0,0.0301010780972201 -13134.0,0.030090683348376505 -13135.0,0.03008029218913203 -13136.0,0.030069904618247094 -13137.0,0.03005952063448254 -13138.0,0.03004914023659961 -13139.0,0.03003876342336001 -13140.0,0.030028390193525867 -13141.0,0.03001802054585974 -13142.0,0.03000765447912458 -13143.0,0.0299972919920838 -13144.0,0.029986933083501238 -13145.0,0.029976577752141145 -13146.0,0.029966225996768226 -13147.0,0.02995587781614756 -13148.0,0.0299455332090447 -13149.0,0.02993519217422561 -13150.0,0.029924854710456687 -13151.0,0.029914520816504732 -13152.0,0.02990419049113699 -13153.0,0.029893863733121133 -13154.0,0.02988354054122527 -13155.0,0.029873220914217888 -13156.0,0.02986290485086794 -13157.0,0.029852592349944806 -13158.0,0.029842283410218287 -13159.0,0.02983197803045858 -13160.0,0.02982167620943633 -13161.0,0.029811377945922615 -13162.0,0.029801083238688922 -13163.0,0.029790792086507187 -13164.0,0.029780504488149718 -13165.0,0.029770220442389295 -13166.0,0.02975993994799911 -13167.0,0.02974966300375278 -13168.0,0.02973938960842432 -13169.0,0.029729119760788198 -13170.0,0.0297188534596193 -13171.0,0.029708590703692948 -13172.0,0.029698331491784833 -13173.0,0.029688075822671127 -13174.0,0.029677823695128402 -13175.0,0.029667575107933664 -13176.0,0.029657330059864307 -13177.0,0.02964708854969819 -13178.0,0.029636850576213562 -13179.0,0.029626616138189135 -13180.0,0.02961638523440398 -13181.0,0.02960615786363764 -13182.0,0.02959593402467007 -13183.0,0.02958571371628163 -13184.0,0.029575496937253132 -13185.0,0.029565283686365764 -13186.0,0.029555073962401167 -13187.0,0.029544867764141395 -13188.0,0.029534665090368943 -13189.0,0.029524465939866674 -13190.0,0.02951427031141792 -13191.0,0.02950407820380642 -13192.0,0.02949388961581633 -13193.0,0.029483704546232215 -13194.0,0.029473522993839076 -13195.0,0.029463344957422328 -13196.0,0.029453170435767822 -13197.0,0.02944299942766178 -13198.0,0.02943283193189089 -13199.0,0.02942266794724225 -13200.0,0.029412507472503364 -13201.0,0.029402350506462175 -13202.0,0.029392197047907007 -13203.0,0.029382047095626636 -13204.0,0.029371900648410252 -13205.0,0.029361757705047467 -13206.0,0.029351618264328277 -13207.0,0.029341482325043137 -13208.0,0.029331349885982898 -13209.0,0.029321220945938847 -13210.0,0.02931109550370265 -13211.0,0.029300973558066434 -13212.0,0.02929085510782272 -13213.0,0.02928074015176446 -13214.0,0.029270628688684998 -13215.0,0.029260520717378113 -13216.0,0.029250416236638002 -13217.0,0.029240315245259284 -13218.0,0.029230217742036966 -13219.0,0.029220123725766493 -13220.0,0.02921003319524373 -13221.0,0.029199946149264945 -13222.0,0.029189862586626845 -13223.0,0.029179782506126503 -13224.0,0.029169705906561455 -13225.0,0.029159632786729638 -13226.0,0.02914956314542941 -13227.0,0.029139496981459515 -13228.0,0.029129434293619142 -13229.0,0.02911937508070789 -13230.0,0.02910931934152578 -13231.0,0.02909926707487321 -13232.0,0.029089218279551025 -13233.0,0.029079172954360487 -13234.0,0.029069131098103267 -13235.0,0.02905909270958142 -13236.0,0.029049057787597456 -13237.0,0.029039026330954277 -13238.0,0.02902899833845521 -13239.0,0.029018973808903996 -13240.0,0.02900895274110476 -13241.0,0.028998935133862067 -13242.0,0.0289889209859809 -13243.0,0.028978910296266647 -13244.0,0.02896890306352509 -13245.0,0.02895889928656244 -13246.0,0.02894889896418533 -13247.0,0.028938902095200805 -13248.0,0.02892890867841628 -13249.0,0.028918918712639633 -13250.0,0.028908932196679133 -13251.0,0.028898949129343467 -13252.0,0.02888896950944171 -13253.0,0.02887899333578338 -13254.0,0.028869020607178386 -13255.0,0.028859051322437056 -13256.0,0.02884908548037014 -13257.0,0.028839123079788764 -13258.0,0.028829164119504494 -13259.0,0.028819208598329298 -13260.0,0.028809256515075574 -13261.0,0.02879930786855608 -13262.0,0.02878936265758403 -13263.0,0.028779420880973034 -13264.0,0.02876948253753712 -13265.0,0.028759547626090693 -13266.0,0.028749616145448603 -13267.0,0.028739688094426095 -13268.0,0.028729763471838837 -13269.0,0.028719842276502875 -13270.0,0.028709924507234686 -13271.0,0.02870001016285116 -13272.0,0.028690099242169597 -13273.0,0.028680191744007672 -13274.0,0.028670287667183506 -13275.0,0.028660387010515615 -13276.0,0.02865048977282292 -13277.0,0.028640595952924768 -13278.0,0.028630705549640874 -13279.0,0.028620818561791397 -13280.0,0.028610934988196886 -13281.0,0.028601054827678326 -13282.0,0.02859117807905705 -13283.0,0.028581304741154855 -13284.0,0.028571434812793915 -13285.0,0.02856156829279684 -13286.0,0.0285517051799866 -13287.0,0.028541845473186604 -13288.0,0.028531989171220667 -13289.0,0.02852213627291301 -13290.0,0.028512286777088242 -13291.0,0.02850244068257139 -13292.0,0.02849259798818789 -13293.0,0.02848275869276358 -13294.0,0.02847292279512472 -13295.0,0.02846309029409793 -13296.0,0.02845326118851028 -13297.0,0.028443435477189225 -13298.0,0.02843361315896265 -13299.0,0.028423794232658787 -13300.0,0.02841397869710633 -13301.0,0.02840416655113436 -13302.0,0.028394357793572363 -13303.0,0.02838455242325021 -13304.0,0.028374750438998196 -13305.0,0.02836495183964702 -13306.0,0.028355156624027798 -13307.0,0.028345364790971998 -13308.0,0.028335576339311542 -13309.0,0.02832579126787874 -13310.0,0.028316009575506316 -13311.0,0.02830623126102736 -13312.0,0.028296456323275408 -13313.0,0.028286684761084372 -13314.0,0.02827691657328858 -13315.0,0.028267151758722773 -13316.0,0.028257390316222052 -13317.0,0.028247632244621963 -13318.0,0.028237877542758437 -13319.0,0.028228126209467824 -13320.0,0.028218378243586837 -13321.0,0.02820863364395262 -13322.0,0.02819889240940272 -13323.0,0.02818915453877509 -13324.0,0.02817942003090805 -13325.0,0.028169688884640352 -13326.0,0.028159961098811144 -13327.0,0.028150236672259982 -13328.0,0.028140515603826792 -13329.0,0.02813079789235193 -13330.0,0.02812108353667615 -13331.0,0.02811137253564059 -13332.0,0.02810166488808682 -13333.0,0.02809196059285676 -13334.0,0.02808225964879277 -13335.0,0.0280725620547376 -13336.0,0.02806286780953441 -13337.0,0.02805317691202672 -13338.0,0.028043489361058493 -13339.0,0.02803380515547407 -13340.0,0.02802412429411821 -13341.0,0.028014446775836036 -13342.0,0.028004772599473097 -13343.0,0.02799510176387534 -13344.0,0.027985434267889114 -13345.0,0.02797577011036113 -13346.0,0.02796610929013854 -13347.0,0.027956451806068882 -13348.0,0.027946797657000092 -13349.0,0.027937146841780485 -13350.0,0.027927499359258794 -13351.0,0.027917855208284152 -13352.0,0.027908214387706076 -13353.0,0.0278985768963745 -13354.0,0.02788894273313972 -13355.0,0.027879311896852457 -13356.0,0.02786968438636383 -13357.0,0.027860060200525352 -13358.0,0.02785043933818891 -13359.0,0.02784082179820681 -13360.0,0.02783120757943176 -13361.0,0.027821596680716855 -13362.0,0.027811989100915566 -13363.0,0.027802384838881793 -13364.0,0.027792783893469813 -13365.0,0.027783186263534317 -13366.0,0.027773591947930356 -13367.0,0.027764000945513408 -13368.0,0.027754413255139335 -13369.0,0.027744828875664394 -13370.0,0.02773524780594526 -13371.0,0.027725670044838946 -13372.0,0.02771609559120291 -13373.0,0.027706524443894993 -13374.0,0.027696956601773435 -13375.0,0.027687392063696845 -13376.0,0.027677830828524246 -13377.0,0.027668272895115056 -13378.0,0.027658718262329098 -13379.0,0.027649166929026546 -13380.0,0.027639618894068012 -13381.0,0.027630074156314483 -13382.0,0.02762053271462735 -13383.0,0.02761099456786837 -13384.0,0.027601459714899718 -13385.0,0.027591928154583962 -13386.0,0.027582399885784065 -13387.0,0.02757287490736335 -13388.0,0.027563353218185566 -13389.0,0.027553834817114847 -13390.0,0.02754431970301572 -13391.0,0.027534807874753108 -13392.0,0.027525299331192302 -13393.0,0.027515794071199008 -13394.0,0.02750629209363932 -13395.0,0.027496793397379735 -13396.0,0.0274872979812871 -13397.0,0.0274778058442287 -13398.0,0.02746831698507218 -13399.0,0.027458831402685614 -13400.0,0.02744934909593741 -13401.0,0.027439870063696407 -13402.0,0.02743039430483183 -13403.0,0.027420921818213307 -13404.0,0.027411452602710804 -13405.0,0.027401986657194736 -13406.0,0.027392523980535877 -13407.0,0.0273830645716054 -13408.0,0.02737360842927488 -13409.0,0.027364155552416242 -13410.0,0.027354705939901844 -13411.0,0.02734525959060441 -13412.0,0.027335816503397073 -13413.0,0.02732637667715332 -13414.0,0.02731694011074706 -13415.0,0.027307506803052575 -13416.0,0.02729807675294456 -13417.0,0.027288649959298045 -13418.0,0.027279226420988505 -13419.0,0.027269806136891773 -13420.0,0.027260389105884093 -13421.0,0.027250975326842054 -13422.0,0.02724156479864268 -13423.0,0.027232157520163357 -13424.0,0.027222753490281876 -13425.0,0.02721335270787639 -13426.0,0.02720395517182546 -13427.0,0.027194560881008027 -13428.0,0.02718516983430342 -13429.0,0.027175782030591376 -13430.0,0.027166397468751966 -13431.0,0.027157016147665695 -13432.0,0.02714763806621344 -13433.0,0.027138263223276473 -13434.0,0.027128891617736427 -13435.0,0.027119523248475344 -13436.0,0.027110158114375647 -13437.0,0.027100796214320155 -13438.0,0.027091437547192038 -13439.0,0.027082082111874888 -13440.0,0.027072729907252673 -13441.0,0.02706338093220975 -13442.0,0.02705403518563083 -13443.0,0.02704469266640105 -13444.0,0.027035353373405912 -13445.0,0.027026017305531308 -13446.0,0.027016684461663526 -13447.0,0.0270073548406892 -13448.0,0.02699802844149539 -13449.0,0.026988705262969516 -13450.0,0.026979385303999414 -13451.0,0.026970068563473247 -13452.0,0.026960755040279612 -13453.0,0.026951444733307475 -13454.0,0.026942137641446196 -13455.0,0.026932833763585483 -13456.0,0.02692353309861546 -13457.0,0.026914235645426623 -13458.0,0.026904941402909874 -13459.0,0.02689565036995645 -13460.0,0.02688636254545801 -13461.0,0.026877077928306584 -13462.0,0.026867796517394595 -13463.0,0.026858518311614822 -13464.0,0.026849243309860445 -13465.0,0.02683997151102503 -13466.0,0.026830702914002514 -13467.0,0.02682143751768724 -13468.0,0.026812175320973883 -13469.0,0.02680291632275755 -13470.0,0.0267936605219337 -13471.0,0.026784407917398206 -13472.0,0.026775158508047268 -13473.0,0.02676591229277751 -13474.0,0.026756669270485936 -13475.0,0.02674742944006992 -13476.0,0.026738192800427205 -13477.0,0.02672895935045593 -13478.0,0.02671972908905462 -13479.0,0.02671050201512218 -13480.0,0.02670127812755786 -13481.0,0.026692057425261335 -13482.0,0.02668283990713264 -13483.0,0.02667362557207219 -13484.0,0.0266644144189808 -13485.0,0.02665520644675962 -13486.0,0.026646001654310213 -13487.0,0.026636800040534522 -13488.0,0.026627601604334868 -13489.0,0.026618406344613925 -13490.0,0.026609214260274773 -13491.0,0.02660002535022087 -13492.0,0.026590839613356048 -13493.0,0.0265816570485845 -13494.0,0.026572477654810824 -13495.0,0.02656330143093998 -13496.0,0.02655412837587733 -13497.0,0.026544958488528565 -13498.0,0.026535791767799802 -13499.0,0.026526628212597516 -13500.0,0.026517467821828573 -13501.0,0.026508310594400182 -13502.0,0.026499156529219966 -13503.0,0.026490005625195906 -13504.0,0.026480857881236372 -13505.0,0.026471713296250116 -13506.0,0.026462571869146228 -13507.0,0.026453433598834217 -13508.0,0.02644429848422395 -13509.0,0.026435166524225697 -13510.0,0.026426037717750046 -13511.0,0.026416912063708015 -13512.0,0.02640778956101098 -13513.0,0.0263986702085707 -13514.0,0.026389554005299288 -13515.0,0.026380440950109253 -13516.0,0.026371331041913474 -13517.0,0.026362224279625215 -13518.0,0.02635312066215809 -13519.0,0.026344020188426107 -13520.0,0.02633492285734365 -13521.0,0.026325828667825475 -13522.0,0.02631673761878672 -13523.0,0.02630764970914287 -13524.0,0.02629856493780981 -13525.0,0.026289483303703797 -13526.0,0.026280404805741467 -13527.0,0.026271329442839803 -13528.0,0.026262257213916184 -13529.0,0.026253188117888366 -13530.0,0.02624412215367448 -13531.0,0.026235059320193006 -13532.0,0.026225999616362815 -13533.0,0.02621694304110316 -13534.0,0.02620788959333366 -13535.0,0.02619883927197429 -13536.0,0.02618979207594542 -13537.0,0.026180748004167784 -13538.0,0.02617170705556251 -13539.0,0.026162669229051045 -13540.0,0.026153634523555257 -13541.0,0.026144602937997377 -13542.0,0.026135574471299997 -13543.0,0.0261265491223861 -13544.0,0.026117526890179002 -13545.0,0.026108507773602435 -13546.0,0.026099491771580476 -13547.0,0.026090478883037598 -13548.0,0.026081469106898604 -13549.0,0.02607246244208871 -13550.0,0.02606345888753348 -13551.0,0.026054458442158868 -13552.0,0.026045461104891168 -13553.0,0.026036466874657067 -13554.0,0.026027475750383628 -13555.0,0.026018487730998283 -13556.0,0.0260095028154288 -13557.0,0.02600052100260336 -13558.0,0.0259915422914505 -13559.0,0.02598256668089912 -13560.0,0.02597359416987851 -13561.0,0.02596462475731829 -13562.0,0.02595565844214849 -13563.0,0.02594669522329949 -13564.0,0.025937735099702052 -13565.0,0.025928778070287282 -13566.0,0.02591982413398668 -13567.0,0.025910873289732107 -13568.0,0.025901925536455806 -13569.0,0.02589298087309035 -13570.0,0.02588403929856872 -13571.0,0.025875100811824245 -13572.0,0.025866165411790647 -13573.0,0.025857233097401972 -13574.0,0.02584830386759267 -13575.0,0.025839377721297553 -13576.0,0.025830454657451804 -13577.0,0.02582153467499095 -13578.0,0.025812617772850908 -13579.0,0.025803703949967956 -13580.0,0.025794793205278742 -13581.0,0.025785885537720293 -13582.0,0.02577698094622996 -13583.0,0.02576807942974551 -13584.0,0.02575918098720505 -13585.0,0.025750285617547074 -13586.0,0.02574139331971041 -13587.0,0.025732504092634275 -13588.0,0.025723617935258257 -13589.0,0.02571473484652231 -13590.0,0.025705854825366727 -13591.0,0.025696977870732194 -13592.0,0.025688103981559754 -13593.0,0.02567923315679083 -13594.0,0.025670365395367174 -13595.0,0.02566150069623094 -13596.0,0.025652639058324635 -13597.0,0.025643780480591124 -13598.0,0.02563492496197366 -13599.0,0.02562607250141582 -13600.0,0.02561722309786158 -13601.0,0.025608376750255273 -13602.0,0.025599533457541603 -13603.0,0.02559069321866561 -13604.0,0.02558185603257273 -13605.0,0.025573021898208745 -13606.0,0.025564190814519824 -13607.0,0.02555536278045246 -13608.0,0.02554653779495354 -13609.0,0.025537715856970317 -13610.0,0.0255288969654504 -13611.0,0.025520081119341738 -13612.0,0.02551126831759268 -13613.0,0.02550245855915192 -13614.0,0.02549365184296853 -13615.0,0.025484848167991916 -13616.0,0.025476047533171866 -13617.0,0.025467249937458532 -13618.0,0.025458455379802427 -13619.0,0.025449663859154432 -13620.0,0.025440875374465766 -13621.0,0.025432089924688032 -13622.0,0.025423307508773193 -13623.0,0.02541452812567358 -13624.0,0.02540575177434186 -13625.0,0.025396978453731078 -13626.0,0.02538820816279465 -13627.0,0.02537944090048636 -13628.0,0.0253706766657603 -13629.0,0.025361915457570983 -13630.0,0.02535315727487326 -13631.0,0.02534440211662235 -13632.0,0.02533564998177381 -13633.0,0.02532690086928358 -13634.0,0.025318154778107956 -13635.0,0.025309411707203595 -13636.0,0.025300671655527525 -13637.0,0.025291934622037094 -13638.0,0.025283200605690052 -13639.0,0.025274469605444494 -13640.0,0.025265741620258887 -13641.0,0.025257016649092027 -13642.0,0.02524829469090309 -13643.0,0.02523957574465162 -13644.0,0.025230859809297516 -13645.0,0.02522214688380101 -13646.0,0.025213436967122724 -13647.0,0.02520473005822363 -13648.0,0.025196026156065063 -13649.0,0.025187325259608696 -13650.0,0.025178627367816585 -13651.0,0.02516993247965113 -13652.0,0.02516124059407511 -13653.0,0.025152551710051624 -13654.0,0.02514386582654416 -13655.0,0.025135182942516557 -13656.0,0.025126503056933012 -13657.0,0.025117826168758083 -13658.0,0.02510915227695667 -13659.0,0.025100481380494036 -13660.0,0.02509181347833582 -13661.0,0.02508314856944801 -13662.0,0.02507448665279692 -13663.0,0.025065827727349266 -13664.0,0.025057171792072095 -13665.0,0.02504851884593283 -13666.0,0.025039868887899216 -13667.0,0.025031221916939385 -13668.0,0.025022577932021818 -13669.0,0.02501393693211536 -13670.0,0.025005298916189186 -13671.0,0.02499666388321285 -13672.0,0.024988031832156254 -13673.0,0.02497940276198966 -13674.0,0.024970776671683695 -13675.0,0.024962153560209303 -13676.0,0.024953533426537826 -13677.0,0.024944916269640943 -13678.0,0.024936302088490698 -13679.0,0.024927690882059466 -13680.0,0.024919082649319996 -13681.0,0.024910477389245397 -13682.0,0.02490187510080913 -13683.0,0.02489327578298498 -13684.0,0.024884679434747127 -13685.0,0.024876086055070093 -13686.0,0.024867495642928752 -13687.0,0.024858908197298316 -13688.0,0.02485032371715437 -13689.0,0.024841742201472856 -13690.0,0.024833163649230064 -13691.0,0.02482458805940262 -13692.0,0.024816015430967526 -13693.0,0.02480744576290213 -13694.0,0.02479887905418414 -13695.0,0.02479031530379161 -13696.0,0.024781754510702934 -13697.0,0.024773196673896877 -13698.0,0.024764641792352552 -13699.0,0.02475608986504944 -13700.0,0.024747540890967333 -13701.0,0.02473899486908641 -13702.0,0.024730451798387194 -13703.0,0.024721911677850573 -13704.0,0.024713374506457747 -13705.0,0.024704840283190307 -13706.0,0.02469630900703018 -13707.0,0.024687780676959665 -13708.0,0.024679255291961362 -13709.0,0.024670732851018274 -13710.0,0.024662213353113728 -13711.0,0.02465369679723142 -13712.0,0.02464518318235539 -13713.0,0.024636672507470005 -13714.0,0.024628164771560018 -13715.0,0.024619659973610517 -13716.0,0.024611158112606953 -13717.0,0.024602659187535087 -13718.0,0.024594163197381082 -13719.0,0.02458567014113142 -13720.0,0.024577180017772954 -13721.0,0.024568692826292853 -13722.0,0.02456020856567867 -13723.0,0.02455172723491829 -13724.0,0.024543248832999964 -13725.0,0.024534773358912264 -13726.0,0.02452630081164413 -13727.0,0.024517831190184858 -13728.0,0.02450936449352409 -13729.0,0.024500900720651787 -13730.0,0.024492439870558297 -13731.0,0.0244839819422343 -13732.0,0.024475526934670828 -13733.0,0.024467074846859272 -13734.0,0.024458625677791338 -13735.0,0.02445017942645911 -13736.0,0.024441736091855012 -13737.0,0.024433295672971832 -13738.0,0.02442485816880266 -13739.0,0.02441642357834098 -13740.0,0.024407991900580604 -13741.0,0.024399563134515703 -13742.0,0.024391137279140773 -13743.0,0.024382714333450673 -13744.0,0.024374294296440613 -13745.0,0.02436587716710615 -13746.0,0.024357462944443162 -13747.0,0.02434905162744791 -13748.0,0.024340643215116975 -13749.0,0.024332237706447303 -13750.0,0.024323835100436186 -13751.0,0.02431543539608123 -13752.0,0.024307038592380426 -13753.0,0.024298644688332097 -13754.0,0.024290253682934918 -13755.0,0.024281865575187887 -13756.0,0.02427348036409037 -13757.0,0.024265098048642075 -13758.0,0.024256718627843066 -13759.0,0.024248342100693713 -13760.0,0.024239968466194767 -13761.0,0.02423159772334732 -13762.0,0.024223229871152812 -13763.0,0.024214864908612996 -13764.0,0.02420650283473001 -13765.0,0.02419814364850631 -13766.0,0.02418978734894472 -13767.0,0.024181433935048378 -13768.0,0.024173083405820785 -13769.0,0.024164735760265794 -13770.0,0.024156390997387582 -13771.0,0.024148049116190697 -13772.0,0.024139710115679988 -13773.0,0.024131373994860685 -13774.0,0.024123040752738353 -13775.0,0.024114710388318902 -13776.0,0.02410638290060856 -13777.0,0.024098058288613933 -13778.0,0.024089736551341955 -13779.0,0.024081417687799908 -13780.0,0.024073101696995395 -13781.0,0.024064788577936393 -13782.0,0.0240564783296312 -13783.0,0.02404817095108848 -13784.0,0.0240398664413172 -13785.0,0.024031564799326707 -13786.0,0.02402326602412667 -13787.0,0.02401497011472711 -13788.0,0.024006677070138392 -13789.0,0.023998386889371198 -13790.0,0.02399009957143658 -13791.0,0.02398181511534592 -13792.0,0.023973533520110956 -13793.0,0.023965254784743734 -13794.0,0.023956978908256665 -13795.0,0.023948705889662504 -13796.0,0.023940435727974347 -13797.0,0.023932168422205604 -13798.0,0.023923903971370057 -13799.0,0.023915642374481814 -13800.0,0.023907383630555345 -13801.0,0.023899127738605412 -13802.0,0.023890874697647165 -13803.0,0.023882624506696072 -13804.0,0.02387437716476796 -13805.0,0.02386613267087895 -13806.0,0.023857891024045556 -13807.0,0.02384965222328461 -13808.0,0.023841416267613273 -13809.0,0.02383318315604907 -13810.0,0.023824952887609836 -13811.0,0.023816725461313762 -13812.0,0.023808500876179382 -13813.0,0.023800279131225573 -13814.0,0.023792060225471517 -13815.0,0.02378384415793677 -13816.0,0.023775630927641216 -13817.0,0.023767420533605085 -13818.0,0.02375921297484892 -13819.0,0.023751008250393623 -13820.0,0.023742806359260432 -13821.0,0.023734607300470938 -13822.0,0.023726411073047026 -13823.0,0.02371821767601096 -13824.0,0.023710027108385323 -13825.0,0.023701839369193043 -13826.0,0.023693654457457393 -13827.0,0.02368547237220195 -13828.0,0.023677293112450662 -13829.0,0.023669116677227806 -13830.0,0.023660943065557997 -13831.0,0.02365277227646617 -13832.0,0.023644604308977614 -13833.0,0.02363643916211795 -13834.0,0.023628276834913146 -13835.0,0.02362011732638948 -13836.0,0.023611960635573588 -13837.0,0.023603806761492437 -13838.0,0.02359565570317334 -13839.0,0.023587507459643914 -13840.0,0.023579362029932143 -13841.0,0.02357121941306634 -13842.0,0.023563079608075153 -13843.0,0.02355494261398755 -13844.0,0.023546808429832852 -13845.0,0.023538677054640716 -13846.0,0.02353054848744112 -13847.0,0.023522422727264403 -13848.0,0.023514299773141196 -13849.0,0.023506179624102504 -13850.0,0.023498062279179645 -13851.0,0.023489947737404298 -13852.0,0.023481835997808433 -13853.0,0.023473727059424385 -13854.0,0.023465620921284826 -13855.0,0.023457517582422753 -13856.0,0.023449417041871482 -13857.0,0.02344131929866469 -13858.0,0.023433224351836368 -13859.0,0.023425132200420862 -13860.0,0.02341704284345282 -13861.0,0.023408956279967245 -13862.0,0.023400872508999474 -13863.0,0.023392791529585167 -13864.0,0.023384713340760338 -13865.0,0.023376637941561293 -13866.0,0.02336856533102471 -13867.0,0.02336049550818758 -13868.0,0.023352428472087246 -13869.0,0.02334436422176135 -13870.0,0.023336302756247894 -13871.0,0.023328244074585204 -13872.0,0.023320188175811947 -13873.0,0.023312135058967096 -13874.0,0.02330408472308998 -13875.0,0.023296037167220254 -13876.0,0.023287992390397912 -13877.0,0.02327995039166325 -13878.0,0.023271911170056933 -13879.0,0.023263874724619934 -13880.0,0.023255841054393572 -13881.0,0.023247810158419476 -13882.0,0.02323978203573962 -13883.0,0.023231756685396315 -13884.0,0.023223734106432192 -13885.0,0.023215714297890225 -13886.0,0.023207697258813692 -13887.0,0.023199682988246227 -13888.0,0.023191671485231782 -13889.0,0.02318366274881466 -13890.0,0.023175656778039455 -13891.0,0.023167653571951122 -13892.0,0.023159653129594938 -13893.0,0.023151655450016517 -13894.0,0.023143660532261773 -13895.0,0.023135668375376985 -13896.0,0.02312767897840874 -13897.0,0.02311969234040398 -13898.0,0.023111708460409934 -13899.0,0.02310372733747419 -13900.0,0.02309574897064466 -13901.0,0.023087773358969582 -13902.0,0.02307980050149754 -13903.0,0.023071830397277403 -13904.0,0.02306386304535841 -13905.0,0.02305589844479011 -13906.0,0.023047936594622394 -13907.0,0.023039977493905458 -13908.0,0.02303202114168984 -13909.0,0.023024067537026415 -13910.0,0.02301611667896638 -13911.0,0.023008168566561234 -13912.0,0.02300022319886284 -13913.0,0.022992280574923373 -13914.0,0.022984340693795343 -13915.0,0.02297640355453156 -13916.0,0.02296846915618519 -13917.0,0.022960537497809727 -13918.0,0.02295260857845898 -13919.0,0.022944682397187072 -13920.0,0.02293675895304848 -13921.0,0.022928838245097987 -13922.0,0.022920920272390715 -13923.0,0.02291300503398212 -13924.0,0.02290509252892795 -13925.0,0.022897182756284308 -13926.0,0.022889275715107616 -13927.0,0.022881371404454637 -13928.0,0.02287346982338242 -13929.0,0.022865570970948376 -13930.0,0.02285767484621023 -13931.0,0.022849781448226036 -13932.0,0.022841890776054155 -13933.0,0.022834002828753298 -13934.0,0.022826117605382484 -13935.0,0.02281823510500108 -13936.0,0.02281035532666874 -13937.0,0.02280247826944547 -13938.0,0.0227946039323916 -13939.0,0.022786732314567775 -13940.0,0.02277886341503498 -13941.0,0.02277099723285449 -13942.0,0.022763133767087943 -13943.0,0.02275527301679728 -13944.0,0.02274741498104478 -13945.0,0.02273955965889302 -13946.0,0.02273170704940492 -13947.0,0.022723857151643736 -13948.0,0.022716009964673028 -13949.0,0.022708165487556668 -13950.0,0.02270032371935888 -13951.0,0.022692484659144193 -13952.0,0.02268464830597748 -13953.0,0.0226768146589239 -13954.0,0.022668983717048962 -13955.0,0.022661155479418497 -13956.0,0.02265332994509866 -13957.0,0.022645507113155904 -13958.0,0.022637686982657026 -13959.0,0.02262986955266915 -13960.0,0.02262205482225971 -13961.0,0.022614242790496474 -13962.0,0.022606433456447503 -13963.0,0.022598626819181216 -13964.0,0.022590822877766335 -13965.0,0.022583021631271915 -13966.0,0.022575223078767304 -13967.0,0.022567427219322204 -13968.0,0.022559634052006623 -13969.0,0.022551843575890906 -13970.0,0.022544055790045685 -13971.0,0.022536270693541947 -13972.0,0.022528488285450978 -13973.0,0.02252070856484441 -13974.0,0.022512931530794162 -13975.0,0.022505157182372493 -13976.0,0.022497385518651984 -13977.0,0.02248961653870553 -13978.0,0.02248185024160636 -13979.0,0.022474086626427994 -13980.0,0.022466325692244295 -13981.0,0.02245856743812944 -13982.0,0.02245081186315794 -13983.0,0.022443058966404587 -13984.0,0.02243530874694453 -13985.0,0.022427561203853225 -13986.0,0.022419816336206454 -13987.0,0.02241207414308029 -13988.0,0.02240433462355116 -13989.0,0.022396597776695792 -13990.0,0.022388863601591247 -13991.0,0.022381132097314876 -13992.0,0.022373403262944375 -13993.0,0.022365677097557754 -13994.0,0.022357953600233342 -13995.0,0.022350232770049768 -13996.0,0.022342514606085998 -13997.0,0.022334799107421317 -13998.0,0.022327086273135316 -13999.0,0.022319376102307924 -14000.0,0.022311668594019354 -14001.0,0.022303963747350167 -14002.0,0.022296261561381227 -14003.0,0.022288562035193735 -14004.0,0.022280865167869167 -14005.0,0.02227317095848936 -14006.0,0.02226547940613644 -14007.0,0.022257790509892888 -14008.0,0.02225010426884144 -14009.0,0.0222424206820652 -14010.0,0.022234739748647567 -14011.0,0.02222706146767228 -14012.0,0.022219385838223346 -14013.0,0.022211712859385137 -14014.0,0.02220404253024232 -14015.0,0.02219637484987988 -14016.0,0.022188709817383124 -14017.0,0.022181047431837658 -14018.0,0.022173387692329422 -14019.0,0.02216573059794466 -14020.0,0.022158076147769955 -14021.0,0.022150424340892164 -14022.0,0.022142775176398486 -14023.0,0.02213512865337644 -14024.0,0.022127484770913856 -14025.0,0.022119843528098856 -14026.0,0.022112204924019906 -14027.0,0.022104568957765778 -14028.0,0.02209693562842556 -14029.0,0.02208930493508864 -14030.0,0.022081676876844737 -14031.0,0.022074051452783884 -14032.0,0.02206642866199643 -14033.0,0.02205880850357301 -14034.0,0.022051190976604605 -14035.0,0.022043576080182502 -14036.0,0.0220359638133983 -14037.0,0.022028354175343916 -14038.0,0.022020747165111564 -14039.0,0.022013142781793785 -14040.0,0.022005541024483436 -14041.0,0.021997941892273692 -14042.0,0.02199034538425801 -14043.0,0.021982751499530193 -14044.0,0.02197516023718435 -14045.0,0.021967571596314902 -14046.0,0.021959985576016562 -14047.0,0.021952402175384387 -14048.0,0.02194482139351373 -14049.0,0.021937243229500265 -14050.0,0.021929667682439955 -14051.0,0.021922094751429106 -14052.0,0.02191452443556432 -14053.0,0.02190695673394251 -14054.0,0.021899391645660918 -14055.0,0.021891829169817065 -14056.0,0.02188426930550881 -14057.0,0.02187671205183432 -14058.0,0.021869157407892078 -14059.0,0.021861605372780847 -14060.0,0.021854055945599738 -14061.0,0.02184650912544816 -14062.0,0.021838964911425836 -14063.0,0.021831423302632786 -14064.0,0.021823884298169352 -14065.0,0.02181634789713619 -14066.0,0.021808814098634274 -14067.0,0.021801282901764855 -14068.0,0.021793754305629524 -14069.0,0.021786228309330177 -14070.0,0.021778704911969027 -14071.0,0.021771184112648567 -14072.0,0.02176366591047163 -14073.0,0.021756150304541352 -14074.0,0.021748637293961173 -14075.0,0.021741126877834856 -14076.0,0.021733619055266447 -14077.0,0.02172611382536032 -14078.0,0.021718611187221164 -14079.0,0.021711111139953974 -14080.0,0.02170361368266403 -14081.0,0.021696118814456947 -14082.0,0.02168862653443865 -14083.0,0.021681136841715364 -14084.0,0.021673649735393614 -14085.0,0.021666165214580247 -14086.0,0.021658683278382412 -14087.0,0.021651203925907584 -14088.0,0.021643727156263507 -14089.0,0.02163625296855827 -14090.0,0.021628781361900253 -14091.0,0.021621312335398154 -14092.0,0.021613845888160975 -14093.0,0.021606382019298005 -14094.0,0.021598920727918875 -14095.0,0.0215914620131335 -14096.0,0.021584005874052122 -14097.0,0.021576552309785262 -14098.0,0.02156910131944377 -14099.0,0.0215616529021388 -14100.0,0.021554207056981814 -14101.0,0.021546763783084562 -14102.0,0.021539323079559126 -14103.0,0.02153188494551788 -14104.0,0.021524449380073526 -14105.0,0.02151701638233903 -14106.0,0.021509585951427698 -14107.0,0.02150215808645314 -14108.0,0.02149473278652927 -14109.0,0.02148731005077029 -14110.0,0.021479889878290723 -14111.0,0.021472472268205405 -14112.0,0.021465057219629467 -14113.0,0.021457644731678355 -14114.0,0.021450234803467794 -14115.0,0.021442827434113843 -14116.0,0.02143542262273286 -14117.0,0.021428020368441512 -14118.0,0.021420620670356747 -14119.0,0.021413223527595844 -14120.0,0.021405828939276374 -14121.0,0.021398436904516233 -14122.0,0.021391047422433578 -14123.0,0.021383660492146912 -14124.0,0.02137627611277503 -14125.0,0.021368894283437034 -14126.0,0.02136151500325231 -14127.0,0.021354138271340573 -14128.0,0.021346764086821828 -14129.0,0.021339392448816396 -14130.0,0.0213320233564449 -14131.0,0.02132465680882824 -14132.0,0.021317292805087654 -14133.0,0.021309931344344668 -14134.0,0.02130257242572112 -14135.0,0.021295216048339134 -14136.0,0.02128786221132115 -14137.0,0.02128051091378991 -14138.0,0.02127316215486847 -14139.0,0.021265815933680154 -14140.0,0.021258472249348626 -14141.0,0.02125113110099783 -14142.0,0.021243792487752038 -14143.0,0.021236456408735786 -14144.0,0.02122912286307394 -14145.0,0.02122179184989166 -14146.0,0.021214463368314427 -14147.0,0.02120713741746798 -14148.0,0.0211998139964784 -14149.0,0.021192493104472056 -14150.0,0.021185174740575616 -14151.0,0.021177858903916064 -14152.0,0.021170545593620655 -14153.0,0.021163234808816975 -14154.0,0.0211559265486329 -14155.0,0.021148620812196615 -14156.0,0.021141317598636584 -14157.0,0.021134016907081592 -14158.0,0.021126718736660725 -14159.0,0.02111942308650337 -14160.0,0.02111212995573919 -14161.0,0.021104839343498178 -14162.0,0.021097551248910617 -14163.0,0.0210902656711071 -14164.0,0.021082982609218495 -14165.0,0.021075702062375988 -14166.0,0.02106842402971107 -14167.0,0.021061148510355523 -14168.0,0.021053875503441438 -14169.0,0.02104660500810118 -14170.0,0.02103933702346744 -14171.0,0.021032071548673203 -14172.0,0.021024808582851762 -14173.0,0.021017548125136672 -14174.0,0.02101029017466183 -14175.0,0.021003034730561417 -14176.0,0.02099578179196991 -14177.0,0.02098853135802208 -14178.0,0.020981283427853003 -14179.0,0.02097403800059806 -14180.0,0.020966795075392928 -14181.0,0.020959554651373564 -14182.0,0.02095231672767625 -14183.0,0.02094508130343755 -14184.0,0.02093784837779434 -14185.0,0.020930617949883767 -14186.0,0.020923390018843305 -14187.0,0.020916164583810713 -14188.0,0.02090894164392405 -14189.0,0.02090172119832168 -14190.0,0.020894503246142237 -14191.0,0.020887287786524683 -14192.0,0.020880074818608266 -14193.0,0.02087286434153254 -14194.0,0.02086565635443733 -14195.0,0.020858450856462787 -14196.0,0.020851247846749344 -14197.0,0.020844047324437745 -14198.0,0.020836849288669 -14199.0,0.02082965373858445 -14200.0,0.020822460673325712 -14201.0,0.02081527009203472 -14202.0,0.02080808199385367 -14203.0,0.020800896377925083 -14204.0,0.020793713243391767 -14205.0,0.020786532589396826 -14206.0,0.020779354415083676 -14207.0,0.020772178719595982 -14208.0,0.020765005502077757 -14209.0,0.020757834761673283 -14210.0,0.020750666497527156 -14211.0,0.020743500708784227 -14212.0,0.02073633739458969 -14213.0,0.020729176554089006 -14214.0,0.02072201818642795 -14215.0,0.02071486229075257 -14216.0,0.020707708866209214 -14217.0,0.020700557911944542 -14218.0,0.020693409427105507 -14219.0,0.02068626341083932 -14220.0,0.02067911986229353 -14221.0,0.02067197878061596 -14222.0,0.020664840164954745 -14223.0,0.020657704014458274 -14224.0,0.02065057032827527 -14225.0,0.02064343910555474 -14226.0,0.020636310345445975 -14227.0,0.020629184047098577 -14228.0,0.020622060209662414 -14229.0,0.02061493883228767 -14230.0,0.020607819914124817 -14231.0,0.020600703454324635 -14232.0,0.020593589452038156 -14233.0,0.020586477906416746 -14234.0,0.020579368816612046 -14235.0,0.020572262181776005 -14236.0,0.020565158001060832 -14237.0,0.020558056273619063 -14238.0,0.02055095699860351 -14239.0,0.020543860175167294 -14240.0,0.020536765802463795 -14241.0,0.02052967387964672 -14242.0,0.020522584405870046 -14243.0,0.020515497380288055 -14244.0,0.020508412802055325 -14245.0,0.020501330670326702 -14246.0,0.020494250984257344 -14247.0,0.0204871737430027 -14248.0,0.02048009894571851 -14249.0,0.020473026591560792 -14250.0,0.020465956679685867 -14251.0,0.020458889209250354 -14252.0,0.02045182417941116 -14253.0,0.02044476158932546 -14254.0,0.020437701438150744 -14255.0,0.020430643725044797 -14256.0,0.020423588449165687 -14257.0,0.020416535609671754 -14258.0,0.020409485205721657 -14259.0,0.02040243723647433 -14260.0,0.020395391701089005 -14261.0,0.020388348598725212 -14262.0,0.020381307928542737 -14263.0,0.020374269689701695 -14264.0,0.020367233881362468 -14265.0,0.02036020050268575 -14266.0,0.02035316955283249 -14267.0,0.020346141030963952 -14268.0,0.020339114936241694 -14269.0,0.020332091267827555 -14270.0,0.020325070024883648 -14271.0,0.020318051206572395 -14272.0,0.02031103481205651 -14273.0,0.02030402084049899 -14274.0,0.020297009291063105 -14275.0,0.020290000162912436 -14276.0,0.020282993455210847 -14277.0,0.020275989167122494 -14278.0,0.0202689872978118 -14279.0,0.020261987846443504 -14280.0,0.020254990812182624 -14281.0,0.02024799619419446 -14282.0,0.020241003991644614 -14283.0,0.020234014203698955 -14284.0,0.020227026829523653 -14285.0,0.020220041868285174 -14286.0,0.020213059319150267 -14287.0,0.020206079181285946 -14288.0,0.020199101453859544 -14289.0,0.020192126136038668 -14290.0,0.02018515322699122 -14291.0,0.020178182725885365 -14292.0,0.020171214631889586 -14293.0,0.02016424894417264 -14294.0,0.02015728566190357 -14295.0,0.020150324784251702 -14296.0,0.02014336631038666 -14297.0,0.020136410239478344 -14298.0,0.02012945657069695 -14299.0,0.02012250530321296 -14300.0,0.020115556436197127 -14301.0,0.02010860996882051 -14302.0,0.020101665900254438 -14303.0,0.020094724229670555 -14304.0,0.02008778495624074 -14305.0,0.02008084807913721 -14306.0,0.020073913597532436 -14307.0,0.0200669815105992 -14308.0,0.02006005181751053 -14309.0,0.02005312451743978 -14310.0,0.020046199609560573 -14311.0,0.02003927709304682 -14312.0,0.020032356967072708 -14313.0,0.02002543923081272 -14314.0,0.020018523883441615 -14315.0,0.02001161092413446 -14316.0,0.020004700352066567 -14317.0,0.019997792166413564 -14318.0,0.01999088636635136 -14319.0,0.019983982951056134 -14320.0,0.019977081919704376 -14321.0,0.019970183271472822 -14322.0,0.019963287005538524 -14323.0,0.019956393121078806 -14324.0,0.019949501617271288 -14325.0,0.019942612493293845 -14326.0,0.019935725748324667 -14327.0,0.01992884138154221 -14328.0,0.01992195939212523 -14329.0,0.019915079779252744 -14330.0,0.019908202542104063 -14331.0,0.01990132767985879 -14332.0,0.019894455191696813 -14333.0,0.019887585076798272 -14334.0,0.019880717334343625 -14335.0,0.019873851963513597 -14336.0,0.019866988963489204 -14337.0,0.019860128333451747 -14338.0,0.019853270072582783 -14339.0,0.019846414180064182 -14340.0,0.019839560655078085 -14341.0,0.019832709496806926 -14342.0,0.019825860704433398 -14343.0,0.01981901427714049 -14344.0,0.019812170214111482 -14345.0,0.019805328514529933 -14346.0,0.01979848917757966 -14347.0,0.019791652202444783 -14348.0,0.019784817588309713 -14349.0,0.01977798533435913 -14350.0,0.01977115543977798 -14351.0,0.019764327903751516 -14352.0,0.019757502725465264 -14353.0,0.019750679904105034 -14354.0,0.0197438594388569 -14355.0,0.019737041328907242 -14356.0,0.019730225573442704 -14357.0,0.019723412171650218 -14358.0,0.019716601122717 -14359.0,0.019709792425830527 -14360.0,0.01970298608017858 -14361.0,0.019696182084949214 -14362.0,0.01968938043933077 -14363.0,0.019682581142511837 -14364.0,0.019675784193681323 -14365.0,0.019668989592028403 -14366.0,0.019662197336742536 -14367.0,0.019655407427013438 -14368.0,0.019648619862031133 -14369.0,0.01964183464098591 -14370.0,0.019635051763068356 -14371.0,0.019628271227469303 -14372.0,0.019621493033379893 -14373.0,0.019614717179991532 -14374.0,0.019607943666495917 -14375.0,0.01960117249208502 -14376.0,0.01959440365595107 -14377.0,0.019587637157286612 -14378.0,0.019580872995284448 -14379.0,0.019574111169137667 -14380.0,0.019567351678039618 -14381.0,0.019560594521183954 -14382.0,0.019553839697764596 -14383.0,0.019547087206975747 -14384.0,0.019540337048011867 -14385.0,0.01953358922006772 -14386.0,0.019526843722338347 -14387.0,0.01952010055401906 -14388.0,0.01951335971430543 -14389.0,0.01950662120239334 -14390.0,0.01949988501747893 -14391.0,0.019493151158758628 -14392.0,0.019486419625429123 -14393.0,0.019479690416687394 -14394.0,0.0194729635317307 -14395.0,0.019466238969756574 -14396.0,0.01945951672996283 -14397.0,0.019452796811547535 -14398.0,0.019446079213709066 -14399.0,0.01943936393564606 -14400.0,0.019432650976557435 -14401.0,0.019425940335642378 -14402.0,0.01941923201210036 -14403.0,0.01941252600513113 -14404.0,0.01940582231393472 -14405.0,0.01939912093771141 -14406.0,0.01939242187566178 -14407.0,0.019385725126986685 -14408.0,0.019379030690887256 -14409.0,0.01937233856656488 -14410.0,0.01936564875322125 -14411.0,0.019358961250058312 -14412.0,0.019352276056278296 -14413.0,0.01934559317108372 -14414.0,0.019338912593677347 -14415.0,0.01933223432326224 -14416.0,0.01932555835904173 -14417.0,0.019318884700219432 -14418.0,0.01931221334599921 -14419.0,0.019305544295585227 -14420.0,0.019298877548181916 -14421.0,0.01929221310299399 -14422.0,0.019285550959226412 -14423.0,0.019278891116084447 -14424.0,0.019272233572773627 -14425.0,0.019265578328499757 -14426.0,0.0192589253824689 -14427.0,0.019252274733887423 -14428.0,0.019245626381961943 -14429.0,0.019238980325899373 -14430.0,0.01923233656490687 -14431.0,0.01922569509819189 -14432.0,0.019219055924962154 -14433.0,0.01921241904442566 -14434.0,0.01920578445579068 -14435.0,0.01919915215826574 -14436.0,0.01919252215105967 -14437.0,0.01918589443338155 -14438.0,0.019179269004440756 -14439.0,0.0191726458634469 -14440.0,0.019166025009609903 -14441.0,0.019159406442139947 -14442.0,0.019152790160247485 -14443.0,0.019146176163143236 -14444.0,0.0191395644500382 -14445.0,0.01913295502014365 -14446.0,0.01912634787267114 -14447.0,0.019119743006832463 -14448.0,0.01911314042183972 -14449.0,0.01910654011690527 -14450.0,0.01909994209124174 -14451.0,0.01909334634406205 -14452.0,0.019086752874579352 -14453.0,0.019080161682007105 -14454.0,0.01907357276555903 -14455.0,0.01906698612444912 -14456.0,0.019060401757891622 -14457.0,0.019053819665101078 -14458.0,0.01904723984529229 -14459.0,0.01904066229768035 -14460.0,0.01903408702148058 -14461.0,0.019027514015908607 -14462.0,0.019020943280180322 -14463.0,0.019014374813511887 -14464.0,0.019007808615119724 -14465.0,0.01900124468422053 -14466.0,0.018994683020031287 -14467.0,0.01898812362176924 -14468.0,0.018981566488651885 -14469.0,0.01897501161989701 -14470.0,0.018968459014722668 -14471.0,0.018961908672347177 -14472.0,0.018955360591989146 -14473.0,0.018948814772867417 -14474.0,0.018942271214201126 -14475.0,0.018935729915209677 -14476.0,0.018929190875112748 -14477.0,0.018922654093130264 -14478.0,0.018916119568482444 -14479.0,0.01890958730038976 -14480.0,0.018903057288072976 -14481.0,0.01889652953075309 -14482.0,0.018890004027651397 -14483.0,0.01888348077798945 -14484.0,0.01887695978098908 -14485.0,0.01887044103587237 -14486.0,0.01886392454186168 -14487.0,0.01885741029817965 -14488.0,0.018850898304049173 -14489.0,0.01884438855869342 -14490.0,0.018837881061335816 -14491.0,0.018831375811200066 -14492.0,0.01882487280751015 -14493.0,0.018818372049490304 -14494.0,0.01881187353636503 -14495.0,0.018805377267359098 -14496.0,0.018798883241697564 -14497.0,0.01879239145860574 -14498.0,0.018785901917309184 -14499.0,0.018779414617033755 -14500.0,0.01877292955700556 -14501.0,0.018766446736450993 -14502.0,0.01875996615459668 -14503.0,0.018753487810669545 -14504.0,0.018747011703896765 -14505.0,0.0187405378335058 -14506.0,0.01873406619872435 -14507.0,0.0187275967987804 -14508.0,0.018721129632902195 -14509.0,0.018714664700318257 -14510.0,0.018708202000257374 -14511.0,0.01870174153194857 -14512.0,0.01869528329462117 -14513.0,0.018688827287504754 -14514.0,0.018682373509829174 -14515.0,0.01867592196082453 -14516.0,0.0186694726397212 -14517.0,0.018663025545749834 -14518.0,0.01865658067814134 -14519.0,0.018650138036126886 -14520.0,0.018643697618937916 -14521.0,0.018637259425806133 -14522.0,0.018630823455963518 -14523.0,0.01862438970864229 -14524.0,0.018617958183074955 -14525.0,0.018611528878494283 -14526.0,0.018605101794133303 -14527.0,0.01859867692922532 -14528.0,0.01859225428300388 -14529.0,0.01858583385470281 -14530.0,0.018579415643556203 -14531.0,0.018572999648798424 -14532.0,0.018566585869664073 -14533.0,0.01856017430538804 -14534.0,0.018553764955205474 -14535.0,0.018547357818351796 -14536.0,0.01854095289406266 -14537.0,0.018534550181574017 -14538.0,0.018528149680122067 -14539.0,0.01852175138894329 -14540.0,0.018515355307274398 -14541.0,0.018508961434352388 -14542.0,0.01850256976941453 -14543.0,0.018496180311698338 -14544.0,0.01848979306044159 -14545.0,0.018483408014882338 -14546.0,0.018477025174258893 -14547.0,0.018470644537809833 -14548.0,0.018464266104773995 -14549.0,0.018457889874390468 -14550.0,0.01845151584589862 -14551.0,0.018445144018538077 -14552.0,0.018438774391548732 -14553.0,0.018432406964170724 -14554.0,0.018426041735644466 -14555.0,0.018419678705210638 -14556.0,0.018413317872110185 -14557.0,0.01840695923558429 -14558.0,0.01840060279487442 -14559.0,0.018394248549222295 -14560.0,0.018387896497869913 -14561.0,0.018381546640059504 -14562.0,0.018375198975033584 -14563.0,0.01836885350203492 -14564.0,0.01836251022030655 -14565.0,0.018356169129091764 -14566.0,0.01834983022763411 -14567.0,0.018343493515177407 -14568.0,0.018337158990965732 -14569.0,0.018330826654243428 -14570.0,0.01832449650425508 -14571.0,0.01831816854024556 -14572.0,0.01831184276145998 -14573.0,0.018305519167143722 -14574.0,0.018299197756542433 -14575.0,0.01829287852890202 -14576.0,0.018286561483468626 -14577.0,0.018280246619488683 -14578.0,0.018273933936208873 -14579.0,0.01826762343287614 -14580.0,0.01826131510873769 -14581.0,0.018255008963040983 -14582.0,0.01824870499503374 -14583.0,0.018242403203963947 -14584.0,0.018236103589079858 -14585.0,0.01822980614962995 -14586.0,0.018223510884862994 -14587.0,0.01821721779402801 -14588.0,0.018210926876374288 -14589.0,0.018204638131151356 -14590.0,0.018198351557609016 -14591.0,0.01819206715499733 -14592.0,0.018185784922566624 -14593.0,0.018179504859567448 -14594.0,0.018173226965250647 -14595.0,0.018166951238867315 -14596.0,0.018160677679668807 -14597.0,0.01815440628690673 -14598.0,0.018148137059832953 -14599.0,0.0181418699976996 -14600.0,0.01813560509975908 -14601.0,0.018129342365264 -14602.0,0.018123081793467274 -14603.0,0.018116823383622065 -14604.0,0.01811056713498179 -14605.0,0.018104313046800127 -14606.0,0.018098061118331003 -14607.0,0.018091811348828615 -14608.0,0.018085563737547404 -14609.0,0.018079318283742096 -14610.0,0.01807307498666762 -14611.0,0.018066833845579215 -14612.0,0.018060594859732357 -14613.0,0.01805435802838278 -14614.0,0.018048123350786472 -14615.0,0.01804189082619969 -14616.0,0.01803566045387893 -14617.0,0.018029432233080976 -14618.0,0.018023206163062813 -14619.0,0.018016982243081733 -14620.0,0.018010760472395266 -14621.0,0.0180045408502612 -14622.0,0.017998323375937583 -14623.0,0.01799210804868271 -14624.0,0.017985894867755144 -14625.0,0.017979683832413693 -14626.0,0.017973474941917443 -14627.0,0.017967268195525687 -14628.0,0.017961063592498022 -14629.0,0.017954861132094282 -14630.0,0.017948660813574564 -14631.0,0.017942462636199207 -14632.0,0.017936266599228822 -14633.0,0.01793007270192426 -14634.0,0.017923880943546654 -14635.0,0.01791769132335734 -14636.0,0.01791150384061796 -14637.0,0.017905318494590386 -14638.0,0.017899135284536755 -14639.0,0.017892954209719456 -14640.0,0.01788677526940113 -14641.0,0.017880598462844677 -14642.0,0.017874423789313247 -14643.0,0.01786825124807026 -14644.0,0.01786208083837935 -14645.0,0.017855912559504444 -14646.0,0.017849746410709716 -14647.0,0.017843582391259584 -14648.0,0.01783742050041873 -14649.0,0.01783126073745208 -14650.0,0.017825103101624825 -14651.0,0.017818947592202417 -14652.0,0.017812794208450517 -14653.0,0.017806642949635087 -14654.0,0.017800493815022325 -14655.0,0.01779434680387869 -14656.0,0.017788201915470883 -14657.0,0.017782059149065863 -14658.0,0.017775918503930847 -14659.0,0.017769779979333294 -14660.0,0.01776364357454095 -14661.0,0.017757509288821742 -14662.0,0.017751377121443916 -14663.0,0.017745247071675952 -14664.0,0.017739119138786577 -14665.0,0.017732993322044775 -14666.0,0.017726869620719777 -14667.0,0.017720748034081073 -14668.0,0.017714628561398417 -14669.0,0.01770851120194177 -14670.0,0.01770239595498139 -14671.0,0.017696282819787773 -14672.0,0.01769017179563167 -14673.0,0.017684062881784073 -14674.0,0.01767795607751624 -14675.0,0.017671851382099674 -14676.0,0.017665748794806136 -14677.0,0.01765964831490761 -14678.0,0.017653549941676366 -14679.0,0.017647453674384913 -14680.0,0.01764135951230601 -14681.0,0.017635267454712666 -14682.0,0.017629177500878147 -14683.0,0.017623089650075963 -14684.0,0.017617003901579876 -14685.0,0.01761092025466392 -14686.0,0.01760483870860233 -14687.0,0.017598759262669635 -14688.0,0.0175926819161406 -14689.0,0.017586606668290244 -14690.0,0.017580533518393834 -14691.0,0.017574462465726887 -14692.0,0.01756839350956517 -14693.0,0.01756232664918472 -14694.0,0.01755626188386177 -14695.0,0.017550199212872854 -14696.0,0.017544138635494737 -14697.0,0.017538080151004443 -14698.0,0.017532023758679235 -14699.0,0.01752596945779663 -14700.0,0.01751991724763439 -14701.0,0.017513867127470537 -14702.0,0.017507819096583346 -14703.0,0.017501773154251304 -14704.0,0.01749572929975319 -14705.0,0.017489687532368015 -14706.0,0.017483647851375034 -14707.0,0.017477610256053766 -14708.0,0.01747157474568397 -14709.0,0.017465541319545645 -14710.0,0.01745950997691907 -14711.0,0.017453480717084715 -14712.0,0.01744745353932335 -14713.0,0.017441428442915984 -14714.0,0.017435405427143853 -14715.0,0.017429384491288464 -14716.0,0.017423365634631562 -14717.0,0.017417348856455142 -14718.0,0.01741133415604144 -14719.0,0.017405321532672973 -14720.0,0.017399310985632438 -14721.0,0.01739330251420284 -14722.0,0.01738729611766741 -14723.0,0.017381291795309634 -14724.0,0.017375289546413233 -14725.0,0.01736928937026219 -14726.0,0.01736329126614072 -14727.0,0.017357295233333313 -14728.0,0.017351301271124654 -14729.0,0.01734530937879972 -14730.0,0.017339319555643728 -14731.0,0.017333331800942132 -14732.0,0.017327346113980638 -14733.0,0.017321362494045194 -14734.0,0.017315380940422 -14735.0,0.0173094014523975 -14736.0,0.017303424029258403 -14737.0,0.017297448670291607 -14738.0,0.01729147537478432 -14739.0,0.017285504142023966 -14740.0,0.01727953497129822 -14741.0,0.01727356786189501 -14742.0,0.017267602813102495 -14743.0,0.017261639824209096 -14744.0,0.017255678894503478 -14745.0,0.017249720023274524 -14746.0,0.017243763209811393 -14747.0,0.01723780845340348 -14748.0,0.017231855753340436 -14749.0,0.017225905108912136 -14750.0,0.017219956519408715 -14751.0,0.01721400998412055 -14752.0,0.017208065502338284 -14753.0,0.017202123073352744 -14754.0,0.017196182696455058 -14755.0,0.017190244370936587 -14756.0,0.01718430809608893 -14757.0,0.017178373871203932 -14758.0,0.017172441695573682 -14759.0,0.01716651156849052 -14760.0,0.017160583489247018 -14761.0,0.01715465745713602 -14762.0,0.017148733471450562 -14763.0,0.01714281153148397 -14764.0,0.017136891636529795 -14765.0,0.017130973785881846 -14766.0,0.017125057978834162 -14767.0,0.01711914421468103 -14768.0,0.01711323249271698 -14769.0,0.017107322812236803 -14770.0,0.01710141517253549 -14771.0,0.017095509572908313 -14772.0,0.01708960601265078 -14773.0,0.01708370449105864 -14774.0,0.01707780500742788 -14775.0,0.017071907561054738 -14776.0,0.017066012151235693 -14777.0,0.01706011877726746 -14778.0,0.017054227438447027 -14779.0,0.01704833813407156 -14780.0,0.01704245086343853 -14781.0,0.017036565625845622 -14782.0,0.017030682420590776 -14783.0,0.017024801246972168 -14784.0,0.017018922104288212 -14785.0,0.017013044991837575 -14786.0,0.017007169908919175 -14787.0,0.01700129685483212 -14788.0,0.01699542582887582 -14789.0,0.016989556830349906 -14790.0,0.01698368985855424 -14791.0,0.016977824912788944 -14792.0,0.016971961992354366 -14793.0,0.016966101096551108 -14794.0,0.016960242224680004 -14795.0,0.01695438537604215 -14796.0,0.016948530549938837 -14797.0,0.016942677745671642 -14798.0,0.016936826962542367 -14799.0,0.016930978199853057 -14800.0,0.016925131456905995 -14801.0,0.016919286733003712 -14802.0,0.01691344402744897 -14803.0,0.016907603339544792 -14804.0,0.016901764668594402 -14805.0,0.0168959280139013 -14806.0,0.016890093374769214 -14807.0,0.01688426075050212 -14808.0,0.016878430140404223 -14809.0,0.016872601543779977 -14810.0,0.016866774959934067 -14811.0,0.016860950388171432 -14812.0,0.016855127827797255 -14813.0,0.016849307278116916 -14814.0,0.016843488738436083 -14815.0,0.016837672208060643 -14816.0,0.01683185768629673 -14817.0,0.01682604517245071 -14818.0,0.016820234665829197 -14819.0,0.016814426165739037 -14820.0,0.01680861967148733 -14821.0,0.016802815182381383 -14822.0,0.016797012697728774 -14823.0,0.0167912122168373 -14824.0,0.016785413739015022 -14825.0,0.016779617263570207 -14826.0,0.01677382278981139 -14827.0,0.01676803031704733 -14828.0,0.016762239844587037 -14829.0,0.016756451371739724 -14830.0,0.016750664897814887 -14831.0,0.016744880422122233 -14832.0,0.01673909794397172 -14833.0,0.016733317462673546 -14834.0,0.016727538977538137 -14835.0,0.016721762487876157 -14836.0,0.016715987992998522 -14837.0,0.016710215492216386 -14838.0,0.016704444984841107 -14839.0,0.016698676470184314 -14840.0,0.016692909947557868 -14841.0,0.016687145416273867 -14842.0,0.01668138287564464 -14843.0,0.016675622324982764 -14844.0,0.016669863763601044 -14845.0,0.016664107190812537 -14846.0,0.0166583526059305 -14847.0,0.01665260000826847 -14848.0,0.0166468493971402 -14849.0,0.016641100771859686 -14850.0,0.016635354131741158 -14851.0,0.016629609476099084 -14852.0,0.01662386680424817 -14853.0,0.016618126115503354 -14854.0,0.016612387409179828 -14855.0,0.016606650684592984 -14856.0,0.01660091594105848 -14857.0,0.016595183177892204 -14858.0,0.01658945239441028 -14859.0,0.016583723589929066 -14860.0,0.016577996763765163 -14861.0,0.016572271915235394 -14862.0,0.01656654904365685 -14863.0,0.016560828148346796 -14864.0,0.016555109228622793 -14865.0,0.01654939228380261 -14866.0,0.016543677313204257 -14867.0,0.016537964316145987 -14868.0,0.016532253291946273 -14869.0,0.01652654423992384 -14870.0,0.016520837159397627 -14871.0,0.016515132049686847 -14872.0,0.016509428910110886 -14873.0,0.01650372773998942 -14874.0,0.01649802853864234 -14875.0,0.01649233130538977 -14876.0,0.016486636039552076 -14877.0,0.016480942740449853 -14878.0,0.01647525140740393 -14879.0,0.016469562039735385 -14880.0,0.016463874636765494 -14881.0,0.016458189197815803 -14882.0,0.016452505722208084 -14883.0,0.016446824209264334 -14884.0,0.016441144658306796 -14885.0,0.016435467068657936 -14886.0,0.01642979143964046 -14887.0,0.01642411777057731 -14888.0,0.016418446060791667 -14889.0,0.016412776309606913 -14890.0,0.016407108516346705 -14891.0,0.016401442680334912 -14892.0,0.01639577880089564 -14893.0,0.016390116877353235 -14894.0,0.016384456909032268 -14895.0,0.016378798895257545 -14896.0,0.016373142835354123 -14897.0,0.016367488728647243 -14898.0,0.016361836574462427 -14899.0,0.016356186372125416 -14900.0,0.01635053812096218 -14901.0,0.016344891820298923 -14902.0,0.01633924746946209 -14903.0,0.01633360506777834 -14904.0,0.016327964614574596 -14905.0,0.016322326109177963 -14906.0,0.01631668955091583 -14907.0,0.016311054939115784 -14908.0,0.016305422273105663 -14909.0,0.016299791552213533 -14910.0,0.016294162775767687 -14911.0,0.016288535943096653 -14912.0,0.016282911053529192 -14913.0,0.01627728810639431 -14914.0,0.016271667101021205 -14915.0,0.01626604803673934 -14916.0,0.016260430912878404 -14917.0,0.01625481572876832 -14918.0,0.01624920248373923 -14919.0,0.016243591177121517 -14920.0,0.016237981808245795 -14921.0,0.016232374376442923 -14922.0,0.01622676888104394 -14923.0,0.01622116532138017 -14924.0,0.016215563696783154 -14925.0,0.01620996400658465 -14926.0,0.01620436625011666 -14927.0,0.016198770426711414 -14928.0,0.01619317653570137 -14929.0,0.016187584576419216 -14930.0,0.016181994548197885 -14931.0,0.016176406450370506 -14932.0,0.016170820282270463 -14933.0,0.016165236043231376 -14934.0,0.016159653732587084 -14935.0,0.016154073349671654 -14936.0,0.016148494893819393 -14937.0,0.016142918364364826 -14938.0,0.016137343760642735 -14939.0,0.016131771081988072 -14940.0,0.01612620032773608 -14941.0,0.016120631497222208 -14942.0,0.01611506458978213 -14943.0,0.01610949960475176 -14944.0,0.016103936541467228 -14945.0,0.01609837539926491 -14946.0,0.016092816177481397 -14947.0,0.016087258875453533 -14948.0,0.016081703492518338 -14949.0,0.016076150028013114 -14950.0,0.016070598481275372 -14951.0,0.016065048851642855 -14952.0,0.016059501138453527 -14953.0,0.01605395534104559 -14954.0,0.01604841145875747 -14955.0,0.01604286949092784 -14956.0,0.01603732943689555 -14957.0,0.016031791295999732 -14958.0,0.01602625506757972 -14959.0,0.016020720750975083 -14960.0,0.016015188345525618 -14961.0,0.016009657850571356 -14962.0,0.01600412926545254 -14963.0,0.015998602589509657 -14964.0,0.015993077822083424 -14965.0,0.01598755496251475 -14966.0,0.01598203401014481 -14967.0,0.015976514964315004 -14968.0,0.015970997824366936 -14969.0,0.015965482589642463 -14970.0,0.015959969259483654 -14971.0,0.015954457833232807 -14972.0,0.015948948310232462 -14973.0,0.01594344068982535 -14974.0,0.015937934971354463 -14975.0,0.01593243115416301 -14976.0,0.015926929237594423 -14977.0,0.015921429220992368 -14978.0,0.01591593110370073 -14979.0,0.015910434885063624 -14980.0,0.015904940564425405 -14981.0,0.015899448141130614 -14982.0,0.015893957614524057 -14983.0,0.015888468983950757 -14984.0,0.015882982248755957 -14985.0,0.015877497408285132 -14986.0,0.01587201446188398 -14987.0,0.015866533408898424 -14988.0,0.01586105424867462 -14989.0,0.01585557698055895 -14990.0,0.015850101603897992 -14991.0,0.015844628118038585 -14992.0,0.015839156522327785 -14993.0,0.01583368681611287 -14994.0,0.015828218998741348 -14995.0,0.01582275306956094 -14996.0,0.015817289027919602 -14997.0,0.015811826873165534 -14998.0,0.01580636660464711 -14999.0,0.015800908221712966 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516203000_theo_VPR_VPR.png b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516203000_theo_VPR_VPR.png deleted file mode 100644 index ef41d3e..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516203000_theo_VPR_VPR.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516203500_theo_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516203500_theo_VPR_VPR.csv deleted file mode 100644 index 65a5280..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516203500_theo_VPR_VPR.csv +++ /dev/null @@ -1,15008 +0,0 @@ -# Height Profile -# ============== -# -# Datatype (Unit) : normalized reflectivity (-) -# Fill value : -9999.0 -# Time : 2020-05-16 20:35:00 -# Sector specification: None -Altitude [m MSL],Znorm -0.0,1.0 -1.0,1.0 -2.0,1.0 -3.0,1.0 -4.0,1.0 -5.0,1.0 -6.0,1.0 -7.0,1.0 -8.0,1.0 -9.0,1.0 -10.0,1.0 -11.0,1.0 -12.0,1.0 -13.0,1.0 -14.0,1.0 -15.0,1.0 -16.0,1.0 -17.0,1.0 -18.0,1.0 -19.0,1.0 -20.0,1.0 -21.0,1.0 -22.0,1.0 -23.0,1.0 -24.0,1.0 -25.0,1.0 -26.0,1.0 -27.0,1.0 -28.0,1.0 -29.0,1.0 -30.0,1.0 -31.0,1.0 -32.0,1.0 -33.0,1.0 -34.0,1.0 -35.0,1.0 -36.0,1.0 -37.0,1.0 -38.0,1.0 -39.0,1.0 -40.0,1.0 -41.0,1.0 -42.0,1.0 -43.0,1.0 -44.0,1.0 -45.0,1.0 -46.0,1.0 -47.0,1.0 -48.0,1.0 -49.0,1.0 -50.0,1.0 -51.0,1.0 -52.0,1.0 -53.0,1.0 -54.0,1.0 -55.0,1.0 -56.0,1.0 -57.0,1.0 -58.0,1.0 -59.0,1.0 -60.0,1.0 -61.0,1.0 -62.0,1.0 -63.0,1.0 -64.0,1.0 -65.0,1.0 -66.0,1.0 -67.0,1.0 -68.0,1.0 -69.0,1.0 -70.0,1.0 -71.0,1.0 -72.0,1.0 -73.0,1.0 -74.0,1.0 -75.0,1.0 -76.0,1.0 -77.0,1.0 -78.0,1.0 -79.0,1.0 -80.0,1.0 -81.0,1.0 -82.0,1.0 -83.0,1.0 -84.0,1.0 -85.0,1.0 -86.0,1.0 -87.0,1.0 -88.0,1.0 -89.0,1.0 -90.0,1.0 -91.0,1.0 -92.0,1.0 -93.0,1.0 -94.0,1.0 -95.0,1.0 -96.0,1.0 -97.0,1.0 -98.0,1.0 -99.0,1.0 -100.0,1.0 -101.0,1.0 -102.0,1.0 -103.0,1.0 -104.0,1.0 -105.0,1.0 -106.0,1.0 -107.0,1.0 -108.0,1.0 -109.0,1.0 -110.0,1.0 -111.0,1.0 -112.0,1.0 -113.0,1.0 -114.0,1.0 -115.0,1.0 -116.0,1.0 -117.0,1.0 -118.0,1.0 -119.0,1.0 -120.0,1.0 -121.0,1.0 -122.0,1.0 -123.0,1.0 -124.0,1.0 -125.0,1.0 -126.0,1.0 -127.0,1.0 -128.0,1.0 -129.0,1.0 -130.0,1.0 -131.0,1.0 -132.0,1.0 -133.0,1.0 -134.0,1.0 -135.0,1.0 -136.0,1.0 -137.0,1.0 -138.0,1.0 -139.0,1.0 -140.0,1.0 -141.0,1.0 -142.0,1.0 -143.0,1.0 -144.0,1.0 -145.0,1.0 -146.0,1.0 -147.0,1.0 -148.0,1.0 -149.0,1.0 -150.0,1.0 -151.0,1.0 -152.0,1.0 -153.0,1.0 -154.0,1.0 -155.0,1.0 -156.0,1.0 -157.0,1.0 -158.0,1.0 -159.0,1.0 -160.0,1.0 -161.0,1.0 -162.0,1.0 -163.0,1.0 -164.0,1.0 -165.0,1.0 -166.0,1.0 -167.0,1.0 -168.0,1.0 -169.0,1.0 -170.0,1.0 -171.0,1.0 -172.0,1.0 -173.0,1.0 -174.0,1.0 -175.0,1.0 -176.0,1.0 -177.0,1.0 -178.0,1.0 -179.0,1.0 -180.0,1.0 -181.0,1.0 -182.0,1.0 -183.0,1.0 -184.0,1.0 -185.0,1.0 -186.0,1.0 -187.0,1.0 -188.0,1.0 -189.0,1.0 -190.0,1.0 -191.0,1.0 -192.0,1.0 -193.0,1.0 -194.0,1.0 -195.0,1.0 -196.0,1.0 -197.0,1.0 -198.0,1.0 -199.0,1.0 -200.0,1.0 -201.0,1.0 -202.0,1.0 -203.0,1.0 -204.0,1.0 -205.0,1.0 -206.0,1.0 -207.0,1.0 -208.0,1.0 -209.0,1.0 -210.0,1.0 -211.0,1.0 -212.0,1.0 -213.0,1.0 -214.0,1.0 -215.0,1.0 -216.0,1.0 -217.0,1.0 -218.0,1.0 -219.0,1.0 -220.0,1.0 -221.0,1.0 -222.0,1.0 -223.0,1.0 -224.0,1.0 -225.0,1.0 -226.0,1.0 -227.0,1.0 -228.0,1.0 -229.0,1.0 -230.0,1.0 -231.0,1.0 -232.0,1.0 -233.0,1.0 -234.0,1.0 -235.0,1.0 -236.0,1.0 -237.0,1.0 -238.0,1.0 -239.0,1.0 -240.0,1.0 -241.0,1.0 -242.0,1.0 -243.0,1.0 -244.0,1.0 -245.0,1.0 -246.0,1.0 -247.0,1.0 -248.0,1.0 -249.0,1.0 -250.0,1.0 -251.0,1.0 -252.0,1.0 -253.0,1.0 -254.0,1.0 -255.0,1.0 -256.0,1.0 -257.0,1.0 -258.0,1.0 -259.0,1.0 -260.0,1.0 -261.0,1.0 -262.0,1.0 -263.0,1.0 -264.0,1.0 -265.0,1.0 -266.0,1.0 -267.0,1.0 -268.0,1.0 -269.0,1.0 -270.0,1.0 -271.0,1.0 -272.0,1.0 -273.0,1.0 -274.0,1.0 -275.0,1.0 -276.0,1.0 -277.0,1.0 -278.0,1.0 -279.0,1.0 -280.0,1.0 -281.0,1.0 -282.0,1.0 -283.0,1.0 -284.0,1.0 -285.0,1.0 -286.0,1.0 -287.0,1.0 -288.0,1.0 -289.0,1.0 -290.0,1.0 -291.0,1.0 -292.0,1.0 -293.0,1.0 -294.0,1.0 -295.0,1.0 -296.0,1.0 -297.0,1.0 -298.0,1.0 -299.0,1.0 -300.0,1.0 -301.0,1.0 -302.0,1.0 -303.0,1.0 -304.0,1.0 -305.0,1.0 -306.0,1.0 -307.0,1.0 -308.0,1.0 -309.0,1.0 -310.0,1.0 -311.0,1.0 -312.0,1.0 -313.0,1.0 -314.0,1.0 -315.0,1.0 -316.0,1.0 -317.0,1.0 -318.0,1.0 -319.0,1.0 -320.0,1.0 -321.0,1.0 -322.0,1.0 -323.0,1.0 -324.0,1.0 -325.0,1.0 -326.0,1.0 -327.0,1.0 -328.0,1.0 -329.0,1.0 -330.0,1.0 -331.0,1.0 -332.0,1.0 -333.0,1.0 -334.0,1.0 -335.0,1.0 -336.0,1.0 -337.0,1.0 -338.0,1.0 -339.0,1.0 -340.0,1.0 -341.0,1.0 -342.0,1.0 -343.0,1.0 -344.0,1.0 -345.0,1.0 -346.0,1.0 -347.0,1.0 -348.0,1.0 -349.0,1.0 -350.0,1.0 -351.0,1.0 -352.0,1.0 -353.0,1.0 -354.0,1.0 -355.0,1.0 -356.0,1.0 -357.0,1.0 -358.0,1.0 -359.0,1.0 -360.0,1.0 -361.0,1.0 -362.0,1.0 -363.0,1.0 -364.0,1.0 -365.0,1.0 -366.0,1.0 -367.0,1.0 -368.0,1.0 -369.0,1.0 -370.0,1.0 -371.0,1.0 -372.0,1.0 -373.0,1.0 -374.0,1.0 -375.0,1.0 -376.0,1.0 -377.0,1.0 -378.0,1.0 -379.0,1.0 -380.0,1.0 -381.0,1.0 -382.0,1.0 -383.0,1.0 -384.0,1.0 -385.0,1.0 -386.0,1.0 -387.0,1.0 -388.0,1.0 -389.0,1.0 -390.0,1.0 -391.0,1.0 -392.0,1.0 -393.0,1.0 -394.0,1.0 -395.0,1.0 -396.0,1.0 -397.0,1.0 -398.0,1.0 -399.0,1.0 -400.0,1.0 -401.0,1.0 -402.0,1.0 -403.0,1.0 -404.0,1.0 -405.0,1.0 -406.0,1.0 -407.0,1.0 -408.0,1.0 -409.0,1.0 -410.0,1.0 -411.0,1.0 -412.0,1.0 -413.0,1.0 -414.0,1.0 -415.0,1.0 -416.0,1.0 -417.0,1.0 -418.0,1.0 -419.0,1.0 -420.0,1.0 -421.0,1.0 -422.0,1.0 -423.0,1.0 -424.0,1.0 -425.0,1.0 -426.0,1.0 -427.0,1.0 -428.0,1.0 -429.0,1.0 -430.0,1.0 -431.0,1.0 -432.0,1.0 -433.0,1.0 -434.0,1.0 -435.0,1.0 -436.0,1.0 -437.0,1.0 -438.0,1.0 -439.0,1.0 -440.0,1.0 -441.0,1.0 -442.0,1.0 -443.0,1.0 -444.0,1.0 -445.0,1.0 -446.0,1.0 -447.0,1.0 -448.0,1.0 -449.0,1.0 -450.0,1.0 -451.0,1.0 -452.0,1.0 -453.0,1.0 -454.0,1.0 -455.0,1.0 -456.0,1.0 -457.0,1.0 -458.0,1.0 -459.0,1.0 -460.0,1.0 -461.0,1.0 -462.0,1.0 -463.0,1.0 -464.0,1.0 -465.0,1.0 -466.0,1.0 -467.0,1.0 -468.0,1.0 -469.0,1.0 -470.0,1.0 -471.0,1.0 -472.0,1.0 -473.0,1.0 -474.0,1.0 -475.0,1.0 -476.0,1.0 -477.0,1.0 -478.0,1.0 -479.0,1.0 -480.0,1.0 -481.0,1.0 -482.0,1.0 -483.0,1.0 -484.0,1.0 -485.0,1.0 -486.0,1.0 -487.0,1.0 -488.0,1.0 -489.0,1.0 -490.0,1.0 -491.0,1.0 -492.0,1.0 -493.0,1.0 -494.0,1.0 -495.0,1.0 -496.0,1.0 -497.0,1.0 -498.0,1.0 -499.0,1.0 -500.0,1.0 -501.0,1.0 -502.0,1.0 -503.0,1.0 -504.0,1.0 -505.0,1.0 -506.0,1.0 -507.0,1.0 -508.0,1.0 -509.0,1.0 -510.0,1.0 -511.0,1.0 -512.0,1.0 -513.0,1.0 -514.0,1.0 -515.0,1.0 -516.0,1.0 -517.0,1.0 -518.0,1.0 -519.0,1.0 -520.0,1.0 -521.0,1.0 -522.0,1.0 -523.0,1.0 -524.0,1.0 -525.0,1.0 -526.0,1.0 -527.0,1.0 -528.0,1.0 -529.0,1.0 -530.0,1.0 -531.0,1.0 -532.0,1.0 -533.0,1.0 -534.0,1.0 -535.0,1.0 -536.0,1.0 -537.0,1.0 -538.0,1.0 -539.0,1.0 -540.0,1.0 -541.0,1.0 -542.0,1.0 -543.0,1.0 -544.0,1.0 -545.0,1.0 -546.0,1.0 -547.0,1.0 -548.0,1.0 -549.0,1.0 -550.0,1.0 -551.0,1.0 -552.0,1.0 -553.0,1.0 -554.0,1.0 -555.0,1.0 -556.0,1.0 -557.0,1.0 -558.0,1.0 -559.0,1.0 -560.0,1.0 -561.0,1.0 -562.0,1.0 -563.0,1.0 -564.0,1.0 -565.0,1.0 -566.0,1.0 -567.0,1.0 -568.0,1.0 -569.0,1.0 -570.0,1.0 -571.0,1.0 -572.0,1.0 -573.0,1.0 -574.0,1.0 -575.0,1.0 -576.0,1.0 -577.0,1.0 -578.0,1.0 -579.0,1.0 -580.0,1.0 -581.0,1.0 -582.0,1.0 -583.0,1.0 -584.0,1.0 -585.0,1.0 -586.0,1.0 -587.0,1.0 -588.0,1.0 -589.0,1.0 -590.0,1.0 -591.0,1.0 -592.0,1.0 -593.0,1.0 -594.0,1.0 -595.0,1.0 -596.0,1.0 -597.0,1.0 -598.0,1.0 -599.0,1.0 -600.0,1.0 -601.0,1.0 -602.0,1.0 -603.0,1.0 -604.0,1.0 -605.0,1.0 -606.0,1.0 -607.0,1.0 -608.0,1.0 -609.0,1.0 -610.0,1.0 -611.0,1.0 -612.0,1.0 -613.0,1.0 -614.0,1.0 -615.0,1.0 -616.0,1.0 -617.0,1.0 -618.0,1.0 -619.0,1.0 -620.0,1.0 -621.0,1.0 -622.0,1.0 -623.0,1.0 -624.0,1.0 -625.0,1.0 -626.0,1.0 -627.0,1.0 -628.0,1.0 -629.0,1.0 -630.0,1.0 -631.0,1.0 -632.0,1.0 -633.0,1.0 -634.0,1.0 -635.0,1.0 -636.0,1.0 -637.0,1.0 -638.0,1.0 -639.0,1.0 -640.0,1.0 -641.0,1.0 -642.0,1.0 -643.0,1.0 -644.0,1.0 -645.0,1.0 -646.0,1.0 -647.0,1.0 -648.0,1.0 -649.0,1.0 -650.0,1.0 -651.0,1.0 -652.0,1.0 -653.0,1.0 -654.0,1.0 -655.0,1.0 -656.0,1.0 -657.0,1.0 -658.0,1.0 -659.0,1.0 -660.0,1.0 -661.0,1.0 -662.0,1.0 -663.0,1.0 -664.0,1.0 -665.0,1.0 -666.0,1.0 -667.0,1.0 -668.0,1.0 -669.0,1.0 -670.0,1.0 -671.0,1.0 -672.0,1.0 -673.0,1.0 -674.0,1.0 -675.0,1.0 -676.0,1.0 -677.0,1.0 -678.0,1.0 -679.0,1.0 -680.0,1.0 -681.0,1.0 -682.0,1.0 -683.0,1.0 -684.0,1.0 -685.0,1.0 -686.0,1.0 -687.0,1.0 -688.0,1.0 -689.0,1.0 -690.0,1.0 -691.0,1.0 -692.0,1.0 -693.0,1.0 -694.0,1.0 -695.0,1.0 -696.0,1.0 -697.0,1.0 -698.0,1.0 -699.0,1.0 -700.0,1.0 -701.0,1.0 -702.0,1.0 -703.0,1.0 -704.0,1.0 -705.0,1.0 -706.0,1.0 -707.0,1.0 -708.0,1.0 -709.0,1.0 -710.0,1.0 -711.0,1.0 -712.0,1.0 -713.0,1.0 -714.0,1.0 -715.0,1.0 -716.0,1.0 -717.0,1.0 -718.0,1.0 -719.0,1.0 -720.0,1.0 -721.0,1.0 -722.0,1.0 -723.0,1.0 -724.0,1.0 -725.0,1.0 -726.0,1.0 -727.0,1.0 -728.0,1.0 -729.0,1.0 -730.0,1.0 -731.0,1.0 -732.0,1.0 -733.0,1.0 -734.0,1.0 -735.0,1.0 -736.0,1.0 -737.0,1.0 -738.0,1.0 -739.0,1.0 -740.0,1.0 -741.0,1.0 -742.0,1.0 -743.0,1.0 -744.0,1.0 -745.0,1.0 -746.0,1.0 -747.0,1.0 -748.0,1.0 -749.0,1.0 -750.0,1.0 -751.0,1.0 -752.0,1.0 -753.0,1.0 -754.0,1.0 -755.0,1.0 -756.0,1.0 -757.0,1.0 -758.0,1.0 -759.0,1.0 -760.0,1.0 -761.0,1.0 -762.0,1.0 -763.0,1.0 -764.0,1.0 -765.0,1.0 -766.0,1.0 -767.0,1.0 -768.0,1.0 -769.0,1.0 -770.0,1.0 -771.0,1.0 -772.0,1.0 -773.0,1.0 -774.0,1.0 -775.0,1.0 -776.0,1.0 -777.0,1.0 -778.0,1.0 -779.0,1.0 -780.0,1.0 -781.0,1.0 -782.0,1.0 -783.0,1.0 -784.0,1.0 -785.0,1.0 -786.0,1.0 -787.0,1.0 -788.0,1.0 -789.0,1.0 -790.0,1.0 -791.0,1.0 -792.0,1.0 -793.0,1.0 -794.0,1.0 -795.0,1.0 -796.0,1.0 -797.0,1.0 -798.0,1.0 -799.0,1.0 -800.0,1.0 -801.0,1.0 -802.0,1.0 -803.0,1.0 -804.0,1.0 -805.0,1.0 -806.0,1.0 -807.0,1.0 -808.0,1.0 -809.0,1.0 -810.0,1.0 -811.0,1.0 -812.0,1.0 -813.0,1.0 -814.0,1.0 -815.0,1.0 -816.0,1.0 -817.0,1.0 -818.0,1.0 -819.0,1.0 -820.0,1.0 -821.0,1.0 -822.0,1.0 -823.0,1.0 -824.0,1.0 -825.0,1.0 -826.0,1.0 -827.0,1.0 -828.0,1.0 -829.0,1.0 -830.0,1.0 -831.0,1.0 -832.0,1.0 -833.0,1.0 -834.0,1.0 -835.0,1.0 -836.0,1.0 -837.0,1.0 -838.0,1.0 -839.0,1.0 -840.0,1.0 -841.0,1.0 -842.0,1.0 -843.0,1.0 -844.0,1.0 -845.0,1.0 -846.0,1.0 -847.0,1.0 -848.0,1.0 -849.0,1.0 -850.0,1.0 -851.0,1.0 -852.0,1.0 -853.0,1.0 -854.0,1.0 -855.0,1.0 -856.0,1.0 -857.0,1.0 -858.0,1.0 -859.0,1.0 -860.0,1.0 -861.0,1.0 -862.0,1.0 -863.0,1.0 -864.0,1.0 -865.0,1.0 -866.0,1.0 -867.0,1.0 -868.0,1.0 -869.0,1.0 -870.0,1.0 -871.0,1.0 -872.0,1.0 -873.0,1.0 -874.0,1.0 -875.0,1.0 -876.0,1.0 -877.0,1.0 -878.0,1.0 -879.0,1.0 -880.0,1.0 -881.0,1.0 -882.0,1.0 -883.0,1.0 -884.0,1.0 -885.0,1.0 -886.0,1.0 -887.0,1.0 -888.0,1.0 -889.0,1.0 -890.0,1.0 -891.0,1.0 -892.0,1.0 -893.0,1.0 -894.0,1.0 -895.0,1.0 -896.0,1.0 -897.0,1.0 -898.0,1.0 -899.0,1.0 -900.0,1.0 -901.0,1.0 -902.0,1.0 -903.0,1.0 -904.0,1.0 -905.0,1.0 -906.0,1.0 -907.0,1.0 -908.0,1.0 -909.0,1.0 -910.0,1.0 -911.0,1.0 -912.0,1.0 -913.0,1.0 -914.0,1.0 -915.0,1.0 -916.0,1.0 -917.0,1.0 -918.0,1.0 -919.0,1.0 -920.0,1.0 -921.0,1.0 -922.0,1.0 -923.0,1.0 -924.0,1.0 -925.0,1.0 -926.0,1.0 -927.0,1.0 -928.0,1.0 -929.0,1.0 -930.0,1.0 -931.0,1.0 -932.0,1.0 -933.0,1.0 -934.0,1.0 -935.0,1.0 -936.0,1.0 -937.0,1.0 -938.0,1.0 -939.0,1.0 -940.0,1.0 -941.0,1.0 -942.0,1.0 -943.0,1.0 -944.0,1.0 -945.0,1.0 -946.0,1.0 -947.0,1.0 -948.0,1.0 -949.0,1.0 -950.0,1.0 -951.0,1.0 -952.0,1.0 -953.0,1.0 -954.0,1.0 -955.0,1.0 -956.0,1.0 -957.0,1.0 -958.0,1.0 -959.0,1.0 -960.0,1.0 -961.0,1.0 -962.0,1.0 -963.0,1.0 -964.0,1.0 -965.0,1.0 -966.0,1.0 -967.0,1.0 -968.0,1.0 -969.0,1.0 -970.0,1.0 -971.0,1.0 -972.0,1.0 -973.0,1.0 -974.0,1.0 -975.0,1.0 -976.0,1.0 -977.0,1.0 -978.0,1.0 -979.0,1.0 -980.0,1.0 -981.0,1.0 -982.0,1.0 -983.0,1.0 -984.0,1.0 -985.0,1.0 -986.0,1.0 -987.0,1.0 -988.0,1.0 -989.0,1.0 -990.0,1.0 -991.0,1.0 -992.0,1.0 -993.0,1.0 -994.0,1.0 -995.0,1.0 -996.0,1.0 -997.0,1.0 -998.0,1.0 -999.0,1.0 -1000.0,1.0 -1001.0,1.0 -1002.0,1.0 -1003.0,1.0 -1004.0,1.0 -1005.0,1.0 -1006.0,1.0 -1007.0,1.0 -1008.0,1.0 -1009.0,1.0 -1010.0,1.0 -1011.0,1.0 -1012.0,1.0 -1013.0,1.0 -1014.0,1.0 -1015.0,1.0 -1016.0,1.0 -1017.0,1.0 -1018.0,1.0 -1019.0,1.0 -1020.0,1.0 -1021.0,1.0 -1022.0,1.0 -1023.0,1.0 -1024.0,1.0 -1025.0,1.0 -1026.0,1.0 -1027.0,1.0 -1028.0,1.0 -1029.0,1.0 -1030.0,1.0 -1031.0,1.0 -1032.0,1.0 -1033.0,1.0 -1034.0,1.0 -1035.0,1.0 -1036.0,1.0 -1037.0,1.0 -1038.0,1.0 -1039.0,1.0 -1040.0,1.0 -1041.0,1.0 -1042.0,1.0 -1043.0,1.0 -1044.0,1.0 -1045.0,1.0 -1046.0,1.0 -1047.0,1.0 -1048.0,1.0 -1049.0,1.0 -1050.0,1.0 -1051.0,1.0 -1052.0,1.0 -1053.0,1.0 -1054.0,1.0 -1055.0,1.0 -1056.0,1.0 -1057.0,1.0 -1058.0,1.0 -1059.0,1.0 -1060.0,1.0 -1061.0,1.0 -1062.0,1.0 -1063.0,1.0 -1064.0,1.0 -1065.0,1.0 -1066.0,1.0 -1067.0,1.0 -1068.0,1.0 -1069.0,1.0 -1070.0,1.0 -1071.0,1.0 -1072.0,1.0 -1073.0,1.0 -1074.0,1.0 -1075.0,1.0 -1076.0,1.0 -1077.0,1.0 -1078.0,1.0 -1079.0,1.0 -1080.0,1.0 -1081.0,1.0 -1082.0,1.0 -1083.0,1.0 -1084.0,1.0 -1085.0,1.0 -1086.0,1.0 -1087.0,1.0 -1088.0,1.0 -1089.0,1.0 -1090.0,1.0 -1091.0,1.0 -1092.0,1.0 -1093.0,1.0 -1094.0,1.0 -1095.0,1.0 -1096.0,1.0 -1097.0,1.0 -1098.0,1.0 -1099.0,1.0 -1100.0,1.0 -1101.0,1.0 -1102.0,1.0 -1103.0,1.0 -1104.0,1.0 -1105.0,1.0 -1106.0,1.0 -1107.0,1.0 -1108.0,1.0 -1109.0,1.0 -1110.0,1.0 -1111.0,1.0 -1112.0,1.0 -1113.0,1.0 -1114.0,1.0 -1115.0,1.0 -1116.0,1.0 -1117.0,1.0 -1118.0,1.0 -1119.0,1.0 -1120.0,1.0 -1121.0,1.0 -1122.0,1.0 -1123.0,1.0 -1124.0,1.0 -1125.0,1.0 -1126.0,1.0 -1127.0,1.0 -1128.0,1.0 -1129.0,1.0 -1130.0,1.0 -1131.0,1.0 -1132.0,1.0 -1133.0,1.0 -1134.0,1.0 -1135.0,1.0 -1136.0,1.0 -1137.0,1.0 -1138.0,1.0 -1139.0,1.0 -1140.0,1.0 -1141.0,1.0 -1142.0,1.0 -1143.0,1.0 -1144.0,1.0 -1145.0,1.0 -1146.0,1.0 -1147.0,1.0 -1148.0,1.0 -1149.0,1.0 -1150.0,1.0 -1151.0,1.0 -1152.0,1.0 -1153.0,1.0 -1154.0,1.0 -1155.0,1.0 -1156.0,1.0 -1157.0,1.0 -1158.0,1.0 -1159.0,1.0 -1160.0,1.0 -1161.0,1.0 -1162.0,1.0 -1163.0,1.0 -1164.0,1.0 -1165.0,1.0 -1166.0,1.0 -1167.0,1.0 -1168.0,1.0 -1169.0,1.0 -1170.0,1.0 -1171.0,1.0 -1172.0,1.0 -1173.0,1.0 -1174.0,1.0 -1175.0,1.0 -1176.0,1.0 -1177.0,1.0 -1178.0,1.0 -1179.0,1.0 -1180.0,1.0 -1181.0,1.0 -1182.0,1.0 -1183.0,1.0 -1184.0,1.0 -1185.0,1.0 -1186.0,1.0 -1187.0,1.0 -1188.0,1.0 -1189.0,1.0 -1190.0,1.0 -1191.0,1.0 -1192.0,1.0 -1193.0,1.0 -1194.0,1.0 -1195.0,1.0 -1196.0,1.0 -1197.0,1.0 -1198.0,1.0 -1199.0,1.0 -1200.0,1.0 -1201.0,1.0 -1202.0,1.0 -1203.0,1.0 -1204.0,1.0 -1205.0,1.0 -1206.0,1.0 -1207.0,1.0 -1208.0,1.0 -1209.0,1.0 -1210.0,1.0 -1211.0,1.0 -1212.0,1.0 -1213.0,1.0 -1214.0,1.0 -1215.0,1.0 -1216.0,1.0 -1217.0,1.0 -1218.0,1.0 -1219.0,1.0 -1220.0,1.0 -1221.0,1.0 -1222.0,1.0 -1223.0,1.0 -1224.0,1.0 -1225.0,1.0 -1226.0,1.0 -1227.0,1.0 -1228.0,1.0 -1229.0,1.0 -1230.0,1.0 -1231.0,1.0 -1232.0,1.0 -1233.0,1.0 -1234.0,1.0 -1235.0,1.0 -1236.0,1.0 -1237.0,1.0 -1238.0,1.0 -1239.0,1.0 -1240.0,1.0 -1241.0,1.0 -1242.0,1.0 -1243.0,1.0 -1244.0,1.0 -1245.0,1.0 -1246.0,1.0 -1247.0,1.0 -1248.0,1.0 -1249.0,1.0 -1250.0,1.0 -1251.0,1.0 -1252.0,1.0 -1253.0,1.0 -1254.0,1.0 -1255.0,1.0 -1256.0,1.0 -1257.0,1.0 -1258.0,1.0 -1259.0,1.0 -1260.0,1.0 -1261.0,1.0 -1262.0,1.0 -1263.0,1.0 -1264.0,1.0 -1265.0,1.0 -1266.0,1.0 -1267.0,1.0 -1268.0,1.0 -1269.0,1.0 -1270.0,1.0 -1271.0,1.0 -1272.0,1.0 -1273.0,1.0 -1274.0,1.0 -1275.0,1.0 -1276.0,1.0 -1277.0,1.0 -1278.0,1.0 -1279.0,1.0 -1280.0,1.0 -1281.0,1.0 -1282.0,1.0 -1283.0,1.0 -1284.0,1.0 -1285.0,1.0 -1286.0,1.0 -1287.0,1.0 -1288.0,1.0 -1289.0,1.0 -1290.0,1.0 -1291.0,1.0 -1292.0,1.0 -1293.0,1.0 -1294.0,1.0 -1295.0,1.0 -1296.0,1.0 -1297.0,1.0 -1298.0,1.0 -1299.0,1.0 -1300.0,1.0 -1301.0,1.0 -1302.0,1.0 -1303.0,1.0 -1304.0,1.0 -1305.0,1.0 -1306.0,1.0 -1307.0,1.0 -1308.0,1.0 -1309.0,1.0 -1310.0,1.0 -1311.0,1.0 -1312.0,1.0 -1313.0,1.0 -1314.0,1.0 -1315.0,1.0 -1316.0,1.0 -1317.0,1.0 -1318.0,1.0 -1319.0,1.0 -1320.0,1.0 -1321.0,1.0 -1322.0,1.0 -1323.0,1.0 -1324.0,1.0 -1325.0,1.0 -1326.0,1.0 -1327.0,1.0 -1328.0,1.0 -1329.0,1.0 -1330.0,1.0 -1331.0,1.0 -1332.0,1.0 -1333.0,1.0 -1334.0,1.0 -1335.0,1.0 -1336.0,1.0 -1337.0,1.0 -1338.0,1.0 -1339.0,1.0 -1340.0,1.0 -1341.0,1.0 -1342.0,1.0 -1343.0,1.0 -1344.0,1.0 -1345.0,1.0 -1346.0,1.0 -1347.0,1.0 -1348.0,1.0 -1349.0,1.0 -1350.0,1.0 -1351.0,1.0 -1352.0,1.0 -1353.0,1.0 -1354.0,1.0 -1355.0,1.0 -1356.0,1.0 -1357.0,1.0 -1358.0,1.0 -1359.0,1.0 -1360.0,1.0 -1361.0,1.0 -1362.0,1.0 -1363.0,1.0 -1364.0,1.0 -1365.0,1.0 -1366.0,1.0 -1367.0,1.0 -1368.0,1.0 -1369.0,1.0 -1370.0,1.0 -1371.0,1.0 -1372.0,1.0 -1373.0,1.0 -1374.0,1.0 -1375.0,1.0 -1376.0,1.0 -1377.0,1.0 -1378.0,1.0 -1379.0,1.0 -1380.0,1.0 -1381.0,1.0 -1382.0,1.0 -1383.0,1.0 -1384.0,1.0 -1385.0,1.0 -1386.0,1.0 -1387.0,1.0 -1388.0,1.0 -1389.0,1.0 -1390.0,1.0 -1391.0,1.0 -1392.0,1.0 -1393.0,1.0 -1394.0,1.0 -1395.0,1.0 -1396.0,1.0 -1397.0,1.0 -1398.0,1.0 -1399.0,1.0 -1400.0,1.0 -1401.0,1.0 -1402.0,1.0 -1403.0,1.0 -1404.0,1.0 -1405.0,1.0 -1406.0,1.0 -1407.0,1.0 -1408.0,1.0 -1409.0,1.0 -1410.0,1.0 -1411.0,1.0 -1412.0,1.0 -1413.0,1.0 -1414.0,1.0 -1415.0,1.0 -1416.0,1.0 -1417.0,1.0 -1418.0,1.0 -1419.0,1.0 -1420.0,1.0 -1421.0,1.0 -1422.0,1.0 -1423.0,1.0 -1424.0,1.0 -1425.0,1.0 -1426.0,1.0 -1427.0,1.0 -1428.0,1.0 -1429.0,1.0 -1430.0,1.0 -1431.0,1.0 -1432.0,1.0 -1433.0,1.0 -1434.0,1.0 -1435.0,1.0 -1436.0,1.0 -1437.0,1.0 -1438.0,1.0 -1439.0,1.0 -1440.0,1.0 -1441.0,1.0 -1442.0,1.0 -1443.0,1.0 -1444.0,1.0 -1445.0,1.0 -1446.0,1.0 -1447.0,1.0 -1448.0,1.0 -1449.0,1.0 -1450.0,1.0 -1451.0,1.0 -1452.0,1.0 -1453.0,1.0 -1454.0,1.0 -1455.0,1.0 -1456.0,1.0 -1457.0,1.0 -1458.0,1.0 -1459.0,1.0 -1460.0,1.0 -1461.0,1.0 -1462.0,1.0 -1463.0,1.0 -1464.0,1.0 -1465.0,1.0 -1466.0,1.0 -1467.0,1.0 -1468.0,1.0 -1469.0,1.0 -1470.0,1.0 -1471.0,1.0 -1472.0,1.0 -1473.0,1.0 -1474.0,1.0 -1475.0,1.0 -1476.0,1.0 -1477.0,1.0 -1478.0,1.0 -1479.0,1.0 -1480.0,1.0 -1481.0,1.0 -1482.0,1.0 -1483.0,1.0 -1484.0,1.0 -1485.0,1.0 -1486.0,1.0 -1487.0,1.0 -1488.0,1.0 -1489.0,1.0 -1490.0,1.0 -1491.0,1.0 -1492.0,1.0 -1493.0,1.0 -1494.0,1.0 -1495.0,1.0 -1496.0,1.0 -1497.0,1.0 -1498.0,1.0 -1499.0,1.0 -1500.0,1.0 -1501.0,1.0 -1502.0,1.0 -1503.0,1.0 -1504.0,1.0 -1505.0,1.0 -1506.0,1.0 -1507.0,1.0 -1508.0,1.0 -1509.0,1.0 -1510.0,1.0 -1511.0,1.0 -1512.0,1.0 -1513.0,1.0 -1514.0,1.0 -1515.0,1.0 -1516.0,1.0 -1517.0,1.0 -1518.0,1.0 -1519.0,1.0 -1520.0,1.0 -1521.0,1.0 -1522.0,1.0 -1523.0,1.0 -1524.0,1.0 -1525.0,1.0 -1526.0,1.0 -1527.0,1.0 -1528.0,1.0 -1529.0,1.0 -1530.0,1.0 -1531.0,1.0 -1532.0,1.0 -1533.0,1.0 -1534.0,1.0 -1535.0,1.0 -1536.0,1.0 -1537.0,1.0 -1538.0,1.0 -1539.0,1.0 -1540.0,1.0 -1541.0,1.0 -1542.0,1.0 -1543.0,1.0 -1544.0,1.0 -1545.0,1.0 -1546.0,1.0 -1547.0,1.0 -1548.0,1.0 -1549.0,1.0 -1550.0,1.0 -1551.0,1.0 -1552.0,1.0 -1553.0,1.0 -1554.0,1.0 -1555.0,1.0 -1556.0,1.0 -1557.0,1.0 -1558.0,1.0 -1559.0,1.0 -1560.0,1.0 -1561.0,1.0 -1562.0,1.0 -1563.0,1.0 -1564.0,1.0 -1565.0,1.0 -1566.0,1.0 -1567.0,1.0 -1568.0,1.0 -1569.0,1.0 -1570.0,1.0 -1571.0,1.0 -1572.0,1.0 -1573.0,1.0 -1574.0,1.0 -1575.0,1.0 -1576.0,1.0 -1577.0,1.0 -1578.0,1.0 -1579.0,1.0 -1580.0,1.0 -1581.0,1.0 -1582.0,1.0 -1583.0,1.0 -1584.0,1.0 -1585.0,1.0 -1586.0,1.0 -1587.0,1.0 -1588.0,1.0 -1589.0,1.0 -1590.0,1.0 -1591.0,1.0 -1592.0,1.0 -1593.0,1.0 -1594.0,1.0 -1595.0,1.0 -1596.0,1.0 -1597.0,1.0 -1598.0,1.0 -1599.0,1.0 -1600.0,1.0 -1601.0,1.0 -1602.0,1.0 -1603.0,1.0 -1604.0,1.0 -1605.0,1.0 -1606.0,1.0 -1607.0,1.0 -1608.0,1.0 -1609.0,1.0 -1610.0,1.0 -1611.0,1.0 -1612.0,1.0 -1613.0,1.0 -1614.0,1.0 -1615.0,1.0 -1616.0,1.0 -1617.0,1.0 -1618.0,1.0 -1619.0,1.0 -1620.0,1.0 -1621.0,1.0 -1622.0,1.0 -1623.0,1.0 -1624.0,1.0 -1625.0,1.0 -1626.0,1.0 -1627.0,1.0 -1628.0,1.0 -1629.0,1.0 -1630.0,1.0 -1631.0,1.0 -1632.0,1.0 -1633.0,1.0 -1634.0,1.0 -1635.0,1.0 -1636.0,1.0 -1637.0,1.0 -1638.0,1.0 -1639.0,1.0 -1640.0,1.0 -1641.0,1.0 -1642.0,1.0 -1643.0,1.0 -1644.0,1.0 -1645.0,1.0 -1646.0,1.0 -1647.0,1.0 -1648.0,1.0 -1649.0,1.0 -1650.0,1.0 -1651.0,1.0 -1652.0,1.0 -1653.0,1.0 -1654.0,1.0 -1655.0,1.0 -1656.0,1.0 -1657.0,1.0 -1658.0,1.0 -1659.0,1.0 -1660.0,1.0 -1661.0,1.0 -1662.0,1.0 -1663.0,1.0 -1664.0,1.0 -1665.0,1.0 -1666.0,1.0 -1667.0,1.0 -1668.0,1.0 -1669.0,1.0 -1670.0,1.0 -1671.0,1.0 -1672.0,1.0 -1673.0,1.0 -1674.0,1.0 -1675.0,1.0 -1676.0,1.0 -1677.0,1.0 -1678.0,1.0 -1679.0,1.0 -1680.0,1.0 -1681.0,1.0 -1682.0,1.0 -1683.0,1.0 -1684.0,1.0 -1685.0,1.0 -1686.0,1.0 -1687.0,1.0 -1688.0,1.0 -1689.0,1.0 -1690.0,1.0 -1691.0,1.0 -1692.0,1.0 -1693.0,1.0 -1694.0,1.0 -1695.0,1.0 -1696.0,1.0 -1697.0,1.0 -1698.0,1.0 -1699.0,1.0 -1700.0,1.0 -1701.0,1.0 -1702.0,1.0 -1703.0,1.0 -1704.0,1.0 -1705.0,1.0 -1706.0,1.0 -1707.0,1.0 -1708.0,1.0 -1709.0,1.0 -1710.0,1.0 -1711.0,1.0 -1712.0,1.0 -1713.0,1.0 -1714.0,1.0 -1715.0,1.0 -1716.0,1.0 -1717.0,1.0 -1718.0,1.0 -1719.0,1.0 -1720.0,1.0 -1721.0,1.0 -1722.0,1.0 -1723.0,1.0 -1724.0,1.0 -1725.0,1.0 -1726.0,1.0 -1727.0,1.0 -1728.0,1.0 -1729.0,1.0 -1730.0,1.0 -1731.0,1.0 -1732.0,1.0 -1733.0,1.0 -1734.0,1.0 -1735.0,1.0 -1736.0,1.0 -1737.0,1.0 -1738.0,1.0 -1739.0,1.0 -1740.0,1.0 -1741.0,1.0 -1742.0,1.0 -1743.0,1.0 -1744.0,1.0 -1745.0,1.0 -1746.0,1.0 -1747.0,1.0 -1748.0,1.0 -1749.0,1.0 -1750.0,1.0 -1751.0,1.0 -1752.0,1.0 -1753.0,1.0 -1754.0,1.0 -1755.0,1.0 -1756.0,1.0 -1757.0,1.0 -1758.0,1.0 -1759.0,1.0 -1760.0,1.0 -1761.0,1.0 -1762.0,1.0 -1763.0,1.0 -1764.0,1.0 -1765.0,1.0 -1766.0,1.0 -1767.0,1.0 -1768.0,1.0 -1769.0,1.0 -1770.0,1.0 -1771.0,1.0 -1772.0,1.0 -1773.0,1.0 -1774.0,1.0 -1775.0,1.0 -1776.0,1.0 -1777.0,1.0 -1778.0,1.0 -1779.0,1.0 -1780.0,1.0 -1781.0,1.0 -1782.0,1.0 -1783.0,1.0 -1784.0,1.0 -1785.0,1.0 -1786.0,1.0 -1787.0,1.0 -1788.0,1.0 -1789.0,1.0 -1790.0,1.0 -1791.0,1.0 -1792.0,1.0 -1793.0,1.0 -1794.0,1.0 -1795.0,1.0 -1796.0,1.0 -1797.0,1.0 -1798.0,1.0 -1799.0,1.0 -1800.0,1.0 -1801.0,1.0 -1802.0,1.0 -1803.0,1.0 -1804.0,1.0 -1805.0,1.0 -1806.0,1.0 -1807.0,1.0 -1808.0,1.0 -1809.0,1.0 -1810.0,1.0 -1811.0,1.0 -1812.0,1.0 -1813.0,1.0 -1814.0,1.0 -1815.0,1.0 -1816.0,1.0 -1817.0,1.0 -1818.0,1.0 -1819.0,1.0 -1820.0,1.0 -1821.0,1.0 -1822.0,1.0 -1823.0,1.0 -1824.0,1.0 -1825.0,1.0 -1826.0,1.0 -1827.0,1.0 -1828.0,1.0 -1829.0,1.0 -1830.0,1.0 -1831.0,1.0 -1832.0,1.0 -1833.0,1.0 -1834.0,1.0 -1835.0,1.0 -1836.0,1.0 -1837.0,1.0 -1838.0,1.0 -1839.0,1.0 -1840.0,1.0 -1841.0,1.0 -1842.0,1.0 -1843.0,1.0 -1844.0,1.0 -1845.0,1.0 -1846.0,1.0 -1847.0,1.0 -1848.0,1.0 -1849.0,1.0 -1850.0,1.0 -1851.0,1.0 -1852.0,1.0 -1853.0,1.0 -1854.0,1.0 -1855.0,1.0 -1856.0,1.0 -1857.0,1.0 -1858.0,1.0 -1859.0,1.0 -1860.0,1.0 -1861.0,1.0 -1862.0,1.0 -1863.0,1.0 -1864.0,1.0 -1865.0,1.0 -1866.0,1.0 -1867.0,1.0 -1868.0,1.0 -1869.0,1.0 -1870.0,1.0 -1871.0,1.0 -1872.0,1.0 -1873.0,1.0 -1874.0,1.0 -1875.0,1.0 -1876.0,1.0 -1877.0,1.0 -1878.0,1.0 -1879.0,1.0 -1880.0,1.0 -1881.0,1.0 -1882.0,1.0 -1883.0,1.0 -1884.0,1.0 -1885.0,1.0 -1886.0,1.0 -1887.0,1.0 -1888.0,1.0 -1889.0,1.0 -1890.0,1.0 -1891.0,1.0 -1892.0,1.0 -1893.0,1.0 -1894.0,1.0 -1895.0,1.0 -1896.0,1.0 -1897.0,1.0 -1898.0,1.0 -1899.0,1.0 -1900.0,1.0 -1901.0,1.0 -1902.0,1.0 -1903.0,1.0 -1904.0,1.0 -1905.0,1.0 -1906.0,1.0 -1907.0,1.0 -1908.0,1.0 -1909.0,1.0 -1910.0,1.0 -1911.0,1.0 -1912.0,1.0 -1913.0,1.0 -1914.0,1.0 -1915.0,1.0 -1916.0,1.0 -1917.0,1.0 -1918.0,1.0 -1919.0,1.0 -1920.0,1.0 -1921.0,1.0 -1922.0,1.0 -1923.0,1.0 -1924.0,1.0 -1925.0,1.0 -1926.0,1.0 -1927.0,1.0 -1928.0,1.0 -1929.0,1.0 -1930.0,1.0 -1931.0,1.0 -1932.0,1.0 -1933.0,1.0 -1934.0,1.0 -1935.0,1.0 -1936.0,1.0 -1937.0,1.0 -1938.0,1.0 -1939.0,1.0 -1940.0,1.0 -1941.0,1.0 -1942.0,1.0 -1943.0,1.0 -1944.0,1.0 -1945.0,1.0 -1946.0,1.0 -1947.0,1.0 -1948.0,1.0 -1949.0,1.0 -1950.0,1.0 -1951.0,1.0 -1952.0,1.0 -1953.0,1.0 -1954.0,1.0 -1955.0,1.0 -1956.0,1.0 -1957.0,1.0 -1958.0,1.0 -1959.0,1.0 -1960.0,1.0 -1961.0,1.0 -1962.0,1.0 -1963.0,1.0 -1964.0,1.0 -1965.0,1.0 -1966.0,1.0 -1967.0,1.0 -1968.0,1.0 -1969.0,1.0 -1970.0,1.0 -1971.0,1.0 -1972.0,1.0 -1973.0,1.0 -1974.0,1.0 -1975.0,1.0 -1976.0,1.0 -1977.0,1.0 -1978.0,1.0 -1979.0,1.0 -1980.0,1.0 -1981.0,1.0 -1982.0,1.0 -1983.0,1.0 -1984.0,1.0 -1985.0,1.0 -1986.0,1.0 -1987.0,1.0 -1988.0,1.0 -1989.0,1.0 -1990.0,1.0 -1991.0,1.0 -1992.0,1.0 -1993.0,1.0 -1994.0,1.0 -1995.0,1.0 -1996.0,1.0 -1997.0,1.0 -1998.0,1.0 -1999.0,1.0 -2000.0,1.0 -2001.0,1.0 -2002.0,1.0 -2003.0,1.0 -2004.0,1.0 -2005.0,1.0 -2006.0,1.0 -2007.0,1.0 -2008.0,1.0 -2009.0,1.0 -2010.0,1.0 -2011.0,1.0 -2012.0,1.0 -2013.0,1.0 -2014.0,1.0 -2015.0,1.0 -2016.0,1.0 -2017.0,1.0 -2018.0,1.0 -2019.0,1.0 -2020.0,1.0 -2021.0,1.0 -2022.0,1.0 -2023.0,1.0 -2024.0,1.0 -2025.0,1.0 -2026.0,1.0 -2027.0,1.0 -2028.0,1.0 -2029.0,1.0 -2030.0,1.0 -2031.0,1.0 -2032.0,1.0 -2033.0,1.0 -2034.0,1.0 -2035.0,1.0 -2036.0,1.0 -2037.0,1.0 -2038.0,1.0 -2039.0,1.0 -2040.0,1.0 -2041.0,1.0 -2042.0,1.0 -2043.0,1.0 -2044.0,1.0 -2045.0,1.0 -2046.0,1.0 -2047.0,1.0 -2048.0,1.0 -2049.0,1.0 -2050.0,1.0 -2051.0,1.0 -2052.0,1.0 -2053.0,1.0 -2054.0,1.0 -2055.0,1.0 -2056.0,1.0 -2057.0,1.0 -2058.0,1.0 -2059.0,1.0 -2060.0,1.0 -2061.0,1.0 -2062.0,1.0 -2063.0,1.0 -2064.0,1.0 -2065.0,1.0 -2066.0,1.0 -2067.0,1.0 -2068.0,1.0 -2069.0,1.0 -2070.0,1.0 -2071.0,1.0 -2072.0,1.0 -2073.0,1.0 -2074.0,1.0 -2075.0,1.0 -2076.0,1.0 -2077.0,1.0 -2078.0,1.0 -2079.0,1.0 -2080.0,1.0 -2081.0,1.0 -2082.0,1.0 -2083.0,1.0 -2084.0,1.0 -2085.0,1.0 -2086.0,1.0 -2087.0,1.0 -2088.0,1.0 -2089.0,1.0 -2090.0,1.0 -2091.0,1.0 -2092.0,1.0 -2093.0,1.0 -2094.0,1.0 -2095.0,1.0 -2096.0,1.0 -2097.0,1.0 -2098.0,1.0 -2099.0,1.0 -2100.0,1.0 -2101.0,1.0 -2102.0,1.0 -2103.0,1.0 -2104.0,1.0 -2105.0,1.0 -2106.0,1.0 -2107.0,1.0 -2108.0,1.0 -2109.0,1.0 -2110.0,1.0 -2111.0,1.0 -2112.0,1.0 -2113.0,1.0 -2114.0,1.0 -2115.0,1.0 -2116.0,1.0 -2117.0,1.0 -2118.0,1.0 -2119.0,1.0 -2120.0,1.0 -2121.0,1.0 -2122.0,1.0 -2123.0,1.0 -2124.0,1.0 -2125.0,1.0 -2126.0,1.0 -2127.0,1.0 -2128.0,1.0 -2129.0,1.0 -2130.0,1.0 -2131.0,1.0 -2132.0,1.0 -2133.0,1.0 -2134.0,1.0 -2135.0,1.0 -2136.0,1.0 -2137.0,1.0 -2138.0,1.0 -2139.0,1.0 -2140.0,1.0 -2141.0,1.0 -2142.0,1.0 -2143.0,1.0 -2144.0,1.0 -2145.0,1.0 -2146.0,1.0 -2147.0,1.0 -2148.0,1.0 -2149.0,1.0 -2150.0,1.0 -2151.0,1.0 -2152.0,1.0 -2153.0,1.0 -2154.0,1.0 -2155.0,1.0 -2156.0,1.0 -2157.0,1.0 -2158.0,1.0 -2159.0,1.0 -2160.0,1.0 -2161.0,1.0 -2162.0,1.0 -2163.0,1.0 -2164.0,1.0 -2165.0,1.0 -2166.0,1.0 -2167.0,1.0 -2168.0,1.0 -2169.0,1.0 -2170.0,1.0 -2171.0,1.0 -2172.0,1.0 -2173.0,1.0 -2174.0,1.0 -2175.0,1.0 -2176.0,1.0 -2177.0,1.0 -2178.0,1.0 -2179.0,1.0 -2180.0,1.0 -2181.0,1.0 -2182.0,1.0 -2183.0,1.0 -2184.0,1.0 -2185.0,1.0 -2186.0,1.0 -2187.0,1.0 -2188.0,1.0 -2189.0,1.0 -2190.0,1.0 -2191.0,1.0 -2192.0,1.0 -2193.0,1.0 -2194.0,1.0 -2195.0,1.0 -2196.0,1.0 -2197.0,1.0 -2198.0,1.0 -2199.0,1.0 -2200.0,1.0 -2201.0,1.0 -2202.0,1.0 -2203.0,1.0 -2204.0,1.0 -2205.0,1.0 -2206.0,1.0 -2207.0,1.0 -2208.0,1.0 -2209.0,1.0 -2210.0,1.0 -2211.0,1.0 -2212.0,1.0 -2213.0,1.0 -2214.0,1.0 -2215.0,1.0 -2216.0,1.0 -2217.0,1.0 -2218.0,1.0 -2219.0,1.0 -2220.0,1.0 -2221.0,1.0 -2222.0,1.0 -2223.0,1.0 -2224.0,1.0 -2225.0,1.0 -2226.0,1.0 -2227.0,1.0 -2228.0,1.0 -2229.0,1.0 -2230.0,1.0 -2231.0,1.0 -2232.0,1.0 -2233.0,1.0 -2234.0,1.0 -2235.0,1.0 -2236.0,1.0 -2237.0,1.0 -2238.0,1.0 -2239.0,1.0 -2240.0,1.0 -2241.0,1.0 -2242.0,1.0 -2243.0,1.0 -2244.0,1.0 -2245.0,1.0 -2246.0,1.0 -2247.0,1.0 -2248.0,1.0 -2249.0,1.0 -2250.0,1.0 -2251.0,1.0 -2252.0,1.0 -2253.0,1.0 -2254.0,1.0 -2255.0,1.0 -2256.0,1.0 -2257.0,1.0 -2258.0,1.0 -2259.0,1.0 -2260.0,1.0 -2261.0,1.0 -2262.0,1.0 -2263.0,1.0 -2264.0,1.0 -2265.0,1.0 -2266.0,1.0 -2267.0,1.0 -2268.0,1.0 -2269.0,1.0 -2270.0,1.0 -2271.0,1.0 -2272.0,1.0 -2273.0,1.0 -2274.0,1.0 -2275.0,1.0 -2276.0,1.0 -2277.0,1.0 -2278.0,1.0 -2279.0,1.0 -2280.0,1.0 -2281.0,1.0 -2282.0,1.0 -2283.0,1.0 -2284.0,1.0 -2285.0,1.0 -2286.0,1.0 -2287.0,1.0 -2288.0,1.0 -2289.0,1.0 -2290.0,1.0 -2291.0,1.0 -2292.0,1.0 -2293.0,1.0 -2294.0,1.0 -2295.0,1.0 -2296.0,1.0 -2297.0,1.0 -2298.0,1.0 -2299.0,1.0 -2300.0,1.0 -2301.0,1.0 -2302.0,1.0 -2303.0,1.0 -2304.0,1.0 -2305.0,1.0 -2306.0,1.0 -2307.0,1.0 -2308.0,1.0 -2309.0,1.0 -2310.0,1.0 -2311.0,1.0 -2312.0,1.0 -2313.0,1.0 -2314.0,1.0 -2315.0,1.0 -2316.0,1.0 -2317.0,1.0 -2318.0,1.0 -2319.0,1.0 -2320.0,1.0 -2321.0,1.0 -2322.0,1.0 -2323.0,1.0 -2324.0,1.0 -2325.0,1.0 -2326.0,1.0 -2327.0,1.0 -2328.0,1.0 -2329.0,1.0 -2330.0,1.0 -2331.0,1.0 -2332.0,1.0 -2333.0,1.0 -2334.0,1.0 -2335.0,1.0 -2336.0,1.0 -2337.0,1.0 -2338.0,1.0 -2339.0,1.0 -2340.0,1.0 -2341.0,1.0 -2342.0,1.0 -2343.0,1.0 -2344.0,1.0 -2345.0,1.0 -2346.0,1.0 -2347.0,1.0 -2348.0,1.0 -2349.0,1.0 -2350.0,1.0 -2351.0,1.0 -2352.0,1.0 -2353.0,1.0 -2354.0,1.0 -2355.0,1.0 -2356.0,1.0 -2357.0,1.0 -2358.0,1.0 -2359.0,1.0 -2360.0,1.0 -2361.0,1.0 -2362.0,1.0 -2363.0,1.0 -2364.0,1.0 -2365.0,1.0 -2366.0,1.0 -2367.0,1.0 -2368.0,1.0 -2369.0,1.0 -2370.0,1.0 -2371.0,1.0 -2372.0,1.0 -2373.0,1.0 -2374.0,1.0 -2375.0,1.0 -2376.0,1.0 -2377.0,1.0 -2378.0,1.0 -2379.0,1.0 -2380.0,1.0 -2381.0,1.0 -2382.0,1.0 -2383.0,1.0 -2384.0,1.0 -2385.0,1.0 -2386.0,1.0 -2387.0,1.0 -2388.0,1.0 -2389.0,1.0 -2390.0,1.0 -2391.0,1.0 -2392.0,1.0 -2393.0,1.0 -2394.0,1.0 -2395.0,1.0 -2396.0,1.0 -2397.0,1.0 -2398.0,1.0 -2399.0,1.0 -2400.0,1.0 -2401.0,1.0 -2402.0,1.0 -2403.0,1.0 -2404.0,1.0 -2405.0,1.0 -2406.0,1.0 -2407.0,1.0 -2408.0,1.0 -2409.0,1.0 -2410.0,1.0 -2411.0,1.0 -2412.0,1.0 -2413.0,1.0 -2414.0,1.0 -2415.0,1.0 -2416.0,1.0 -2417.0,1.0 -2418.0,1.0 -2419.0,1.0 -2420.0,1.0 -2421.0,1.0 -2422.0,1.0 -2423.0,1.0 -2424.0,1.0 -2425.0,1.0 -2426.0,1.0 -2427.0,1.0 -2428.0,1.0 -2429.0,1.0 -2430.0,1.0 -2431.0,1.0 -2432.0,1.0 -2433.0,1.0 -2434.0,1.0 -2435.0,1.0 -2436.0,1.0 -2437.0,1.0 -2438.0,1.0 -2439.0,1.0 -2440.0,1.0 -2441.0,1.0 -2442.0,1.0 -2443.0,1.0 -2444.0,1.0 -2445.0,1.0 -2446.0,1.0 -2447.0,1.0 -2448.0,1.0 -2449.0,1.0 -2450.0,1.0 -2451.0,1.0 -2452.0,1.0 -2453.0,1.0 -2454.0,1.0 -2455.0,1.0 -2456.0,1.0 -2457.0,1.0 -2458.0,1.0 -2459.0,1.0 -2460.0,1.0 -2461.0,1.0 -2462.0,1.0 -2463.0,1.0 -2464.0,1.0 -2465.0,1.0 -2466.0,1.0 -2467.0,1.0 -2468.0,1.0 -2469.0,1.0 -2470.0,1.0 -2471.0,1.0 -2472.0,1.0 -2473.0,1.0 -2474.0,1.0 -2475.0,1.0 -2476.0,1.0 -2477.0,1.0 -2478.0,1.0 -2479.0,1.0 -2480.0,1.0 -2481.0,1.0 -2482.0,1.0 -2483.0,1.0 -2484.0,1.0 -2485.0,1.0 -2486.0,1.0 -2487.0,1.0 -2488.0,1.0 -2489.0,1.0 -2490.0,1.0 -2491.0,1.0 -2492.0,1.0 -2493.0,1.0 -2494.0,1.0 -2495.0,1.0 -2496.0,1.0 -2497.0,1.0 -2498.0,1.0 -2499.0,1.0 -2500.0,1.0 -2501.0,1.0 -2502.0,1.0 -2503.0,1.0 -2504.0,1.0 -2505.0,1.0 -2506.0,1.0 -2507.0,1.0 -2508.0,1.0 -2509.0,1.0 -2510.0,1.0 -2511.0,1.0 -2512.0,1.0 -2513.0,1.0 -2514.0,1.0 -2515.0,1.0 -2516.0,1.0 -2517.0,1.0 -2518.0,1.0 -2519.0,1.0 -2520.0,1.0 -2521.0,1.0 -2522.0,1.0 -2523.0,1.0 -2524.0,1.0 -2525.0,1.0 -2526.0,1.0 -2527.0,1.0 -2528.0,1.0 -2529.0,1.0 -2530.0,1.0 -2531.0,1.0 -2532.0,1.0 -2533.0,1.0 -2534.0,1.0 -2535.0,1.0 -2536.0,1.0 -2537.0,1.0 -2538.0,1.0 -2539.0,1.0 -2540.0,1.0 -2541.0,1.0 -2542.0,1.0 -2543.0,1.0 -2544.0,1.0 -2545.0,1.0 -2546.0,1.0 -2547.0,1.0 -2548.0,1.0 -2549.0,1.0 -2550.0,1.0 -2551.0,1.0 -2552.0,1.0 -2553.0,1.0 -2554.0,1.0 -2555.0,1.0 -2556.0,1.0 -2557.0,1.0 -2558.0,1.0 -2559.0,1.0 -2560.0,1.0 -2561.0,1.0 -2562.0,1.0 -2563.0,1.0 -2564.0,1.0 -2565.0,1.0 -2566.0,1.0 -2567.0,1.0 -2568.0,1.0 -2569.0,1.0 -2570.0,1.0 -2571.0,1.0 -2572.0,1.0 -2573.0,1.0 -2574.0,1.0 -2575.0,1.0 -2576.0,1.0 -2577.0,1.0 -2578.0,1.0 -2579.0,1.0 -2580.0,1.0 -2581.0,1.0 -2582.0,1.0 -2583.0,1.0 -2584.0,1.0 -2585.0,1.0 -2586.0,1.0 -2587.0,1.0 -2588.0,1.0 -2589.0,1.0 -2590.0,1.0 -2591.0,1.0 -2592.0,1.0 -2593.0,1.0 -2594.0,1.0 -2595.0,1.0 -2596.0,1.0 -2597.0,1.0 -2598.0,1.0 -2599.0,1.0 -2600.0,1.0 -2601.0,1.0 -2602.0,1.0 -2603.0,1.0 -2604.0,1.0 -2605.0,1.0 -2606.0,1.0 -2607.0,1.0 -2608.0,1.0 -2609.0,1.0 -2610.0,1.0 -2611.0,1.0 -2612.0,1.0 -2613.0,1.0 -2614.0,1.0 -2615.0,1.0 -2616.0,1.0 -2617.0,1.0 -2618.0,1.0 -2619.0,1.0 -2620.0,1.0 -2621.0,1.0 -2622.0,1.0 -2623.0,1.0 -2624.0,1.0 -2625.0,1.0 -2626.0,1.0 -2627.0,1.0 -2628.0,1.0 -2629.0,1.0 -2630.0,1.0 -2631.0,1.0 -2632.0,1.0 -2633.0,1.0 -2634.0,1.0 -2635.0,1.0 -2636.0,1.0 -2637.0,1.0 -2638.0,1.0 -2639.0,1.0 -2640.0,1.0 -2641.0,1.0 -2642.0,1.0 -2643.0,1.0 -2644.0,1.0 -2645.0,1.0 -2646.0,1.0 -2647.0,1.0 -2648.0,1.0 -2649.0,1.0 -2650.0,1.0 -2651.0,1.0 -2652.0,1.0 -2653.0,1.0 -2654.0,1.0 -2655.0,1.0 -2656.0,1.0 -2657.0,1.0 -2658.0,1.0 -2659.0,1.0 -2660.0,1.0 -2661.0,1.0 -2662.0,1.0 -2663.0,1.0 -2664.0,1.0062061910787088 -2665.0,1.0462061910787088 -2666.0,1.0862061910787089 -2667.0,1.126206191078709 -2668.0,1.1662061910787087 -2669.0,1.2062061910787087 -2670.0,1.2462061910787088 -2671.0,1.2862061910787088 -2672.0,1.3262061910787089 -2673.0,1.3662061910787089 -2674.0,1.406206191078709 -2675.0,1.4462061910787087 -2676.0,1.4862061910787088 -2677.0,1.5262061910787088 -2678.0,1.5662061910787088 -2679.0,1.6062061910787087 -2680.0,1.6462061910787087 -2681.0,1.6862061910787087 -2682.0,1.7262061910787088 -2683.0,1.7662061910787088 -2684.0,1.8062061910787088 -2685.0,1.8462061910787089 -2686.0,1.886206191078709 -2687.0,1.926206191078709 -2688.0,1.966206191078709 -2689.0,2.006206191078709 -2690.0,2.046206191078709 -2691.0,2.086206191078709 -2692.0,2.126206191078709 -2693.0,2.166206191078709 -2694.0,2.2062061910787087 -2695.0,2.246206191078709 -2696.0,2.286206191078709 -2697.0,2.326206191078709 -2698.0,2.366206191078709 -2699.0,2.406206191078709 -2700.0,2.4462061910787085 -2701.0,2.4862061910787085 -2702.0,2.5262061910787086 -2703.0,2.5662061910787086 -2704.0,2.6062061910787087 -2705.0,2.6462061910787087 -2706.0,2.6862061910787087 -2707.0,2.7262061910787088 -2708.0,2.766206191078709 -2709.0,2.806206191078709 -2710.0,2.846206191078709 -2711.0,2.886206191078709 -2712.0,2.926206191078709 -2713.0,2.966206191078709 -2714.0,3.006206191078709 -2715.0,3.046206191078709 -2716.0,3.0862061910787086 -2717.0,3.1262061910787087 -2718.0,3.1662061910787087 -2719.0,3.2062061910787087 -2720.0,3.246206191078709 -2721.0,3.286206191078709 -2722.0,3.326206191078709 -2723.0,3.366206191078709 -2724.0,3.406206191078709 -2725.0,3.446206191078709 -2726.0,3.486206191078709 -2727.0,3.526206191078709 -2728.0,3.566206191078709 -2729.0,3.6062061910787087 -2730.0,3.6462061910787087 -2731.0,3.6862061910787087 -2732.0,3.7262061910787088 -2733.0,3.766206191078709 -2734.0,3.806206191078709 -2735.0,3.846206191078709 -2736.0,3.886206191078709 -2737.0,3.926206191078709 -2738.0,3.966206191078709 -2739.0,4.006206191078709 -2740.0,4.046206191078709 -2741.0,4.086206191078709 -2742.0,4.126206191078708 -2743.0,4.166206191078709 -2744.0,4.206206191078708 -2745.0,4.246206191078709 -2746.0,4.286206191078708 -2747.0,4.326206191078709 -2748.0,4.366206191078708 -2749.0,4.406206191078709 -2750.0,4.4462061910787085 -2751.0,4.486206191078709 -2752.0,4.526206191078709 -2753.0,4.5662061910787095 -2754.0,4.606206191078709 -2755.0,4.646206191078709 -2756.0,4.686206191078709 -2757.0,4.726206191078709 -2758.0,4.766206191078709 -2759.0,4.806206191078709 -2760.0,4.846206191078709 -2761.0,4.886206191078709 -2762.0,4.926206191078709 -2763.0,4.966206191078709 -2764.0,4.993793808921291 -2765.0,4.953793808921291 -2766.0,4.913793808921291 -2767.0,4.873793808921291 -2768.0,4.833793808921291 -2769.0,4.793793808921291 -2770.0,4.753793808921291 -2771.0,4.713793808921292 -2772.0,4.673793808921292 -2773.0,4.633793808921292 -2774.0,4.5937938089212915 -2775.0,4.5537938089212915 -2776.0,4.5137938089212915 -2777.0,4.473793808921291 -2778.0,4.433793808921291 -2779.0,4.393793808921291 -2780.0,4.353793808921291 -2781.0,4.313793808921291 -2782.0,4.273793808921291 -2783.0,4.233793808921291 -2784.0,4.193793808921291 -2785.0,4.153793808921291 -2786.0,4.113793808921291 -2787.0,4.073793808921291 -2788.0,4.033793808921291 -2789.0,3.993793808921291 -2790.0,3.953793808921291 -2791.0,3.913793808921291 -2792.0,3.873793808921291 -2793.0,3.833793808921291 -2794.0,3.7937938089212913 -2795.0,3.753793808921291 -2796.0,3.713793808921291 -2797.0,3.673793808921291 -2798.0,3.633793808921291 -2799.0,3.593793808921291 -2800.0,3.5537938089212915 -2801.0,3.5137938089212915 -2802.0,3.4737938089212914 -2803.0,3.4337938089212914 -2804.0,3.3937938089212913 -2805.0,3.3537938089212913 -2806.0,3.3137938089212913 -2807.0,3.2737938089212912 -2808.0,3.233793808921291 -2809.0,3.193793808921291 -2810.0,3.153793808921291 -2811.0,3.113793808921291 -2812.0,3.073793808921291 -2813.0,3.033793808921291 -2814.0,2.993793808921291 -2815.0,2.953793808921291 -2816.0,2.9137938089212914 -2817.0,2.8737938089212913 -2818.0,2.8337938089212913 -2819.0,2.7937938089212913 -2820.0,2.753793808921291 -2821.0,2.713793808921291 -2822.0,2.673793808921291 -2823.0,2.633793808921291 -2824.0,2.593793808921291 -2825.0,2.553793808921291 -2826.0,2.513793808921291 -2827.0,2.473793808921291 -2828.0,2.433793808921291 -2829.0,2.3937938089212913 -2830.0,2.3537938089212913 -2831.0,2.3137938089212913 -2832.0,2.2737938089212912 -2833.0,2.233793808921291 -2834.0,2.193793808921291 -2835.0,2.153793808921291 -2836.0,2.113793808921291 -2837.0,2.073793808921291 -2838.0,2.033793808921291 -2839.0,1.993793808921291 -2840.0,1.953793808921291 -2841.0,1.913793808921291 -2842.0,1.8737938089212913 -2843.0,1.8337938089212913 -2844.0,1.7937938089212913 -2845.0,1.7537938089212912 -2846.0,1.7137938089212912 -2847.0,1.6737938089212911 -2848.0,1.6337938089212911 -2849.0,1.593793808921291 -2850.0,1.553793808921291 -2851.0,1.513793808921291 -2852.0,1.473793808921291 -2853.0,1.433793808921291 -2854.0,1.3937938089212913 -2855.0,1.3537938089212913 -2856.0,1.3137938089212913 -2857.0,1.2737938089212912 -2858.0,1.2337938089212912 -2859.0,1.1937938089212912 -2860.0,1.1537938089212911 -2861.0,1.113793808921291 -2862.0,1.073793808921291 -2863.0,1.033793808921291 -2864.0,0.9999464128743585 -2865.0,0.9996011032550383 -2866.0,0.9992559128808413 -2867.0,0.9989108417105887 -2868.0,0.9985658897031162 -2869.0,0.9982210568172736 -2870.0,0.9978763430119245 -2871.0,0.9975317482459475 -2872.0,0.9971872724782346 -2873.0,0.9968429156676925 -2874.0,0.9964986777732419 -2875.0,0.9961545587538178 -2876.0,0.9958105585683692 -2877.0,0.9954666771758596 -2878.0,0.9951229145352661 -2879.0,0.9947792706055807 -2880.0,0.994435745345809 -2881.0,0.9940923387149709 -2882.0,0.9937490506721006 -2883.0,0.9934058811762464 -2884.0,0.9930628301864705 -2885.0,0.9927198976618494 -2886.0,0.9923770835614739 -2887.0,0.9920343878444488 -2888.0,0.9916918104698927 -2889.0,0.9913493513969391 -2890.0,0.9910070105847347 -2891.0,0.9906647879924411 -2892.0,0.9903226835792333 -2893.0,0.9899806973043008 -2894.0,0.9896388291268473 -2895.0,0.9892970790060903 -2896.0,0.9889554469012617 -2897.0,0.9886139327716069 -2898.0,0.9882725365763861 -2899.0,0.987931258274873 -2900.0,0.9875900978263558 -2901.0,0.9872490551901364 -2902.0,0.9869081303255308 -2903.0,0.9865673231918695 -2904.0,0.9862266337484963 -2905.0,0.9858860619547697 -2906.0,0.9855456077700617 -2907.0,0.985205271153759 -2908.0,0.9848650520652615 -2909.0,0.9845249504639838 -2910.0,0.9841849663093543 -2911.0,0.9838450995608151 -2912.0,0.9835053501778229 -2913.0,0.9831657181198478 -2914.0,0.9828262033463744 -2915.0,0.9824868058169008 -2916.0,0.9821475254909395 -2917.0,0.9818083623280169 -2918.0,0.9814693162876733 -2919.0,0.9811303873294629 -2920.0,0.9807915754129539 -2921.0,0.9804528804977286 -2922.0,0.9801143025433832 -2923.0,0.9797758415095277 -2924.0,0.9794374973557862 -2925.0,0.9790992700417968 -2926.0,0.9787611595272113 -2927.0,0.9784231657716956 -2928.0,0.9780852887349297 -2929.0,0.9777475283766073 -2930.0,0.9774098846564357 -2931.0,0.9770723575341369 -2932.0,0.9767349469694462 -2933.0,0.9763976529221129 -2934.0,0.9760604753519004 -2935.0,0.9757234142185858 -2936.0,0.9753864694819603 -2937.0,0.9750496411018286 -2938.0,0.9747129290380098 -2939.0,0.9743763332503363 -2940.0,0.9740398536986551 -2941.0,0.9737034903428262 -2942.0,0.9733672431427243 -2943.0,0.9730311120582372 -2944.0,0.9726950970492672 -2945.0,0.9723591980757299 -2946.0,0.9720234150975552 -2947.0,0.9716877480746866 -2948.0,0.9713521969670814 -2949.0,0.971016761734711 -2950.0,0.9706814423375602 -2951.0,0.9703462387356278 -2952.0,0.9700111508889266 -2953.0,0.9696761787574831 -2954.0,0.9693413223013375 -2955.0,0.9690065814805439 -2956.0,0.96867195625517 -2957.0,0.9683374465852977 -2958.0,0.9680030524310222 -2959.0,0.967668773752453 -2960.0,0.9673346105097127 -2961.0,0.9670005626629384 -2962.0,0.9666666301722805 -2963.0,0.9663328129979033 -2964.0,0.9659991110999848 -2965.0,0.9656655244387169 -2966.0,0.965332052974305 -2967.0,0.9649986966669686 -2968.0,0.9646654554769405 -2969.0,0.9643323293644676 -2970.0,0.9639993182898102 -2971.0,0.9636664222132427 -2972.0,0.963333641095053 -2973.0,0.9630009748955427 -2974.0,0.9626684235750271 -2975.0,0.9623359870938353 -2976.0,0.9620036654123101 -2977.0,0.9616714584908079 -2978.0,0.9613393662896988 -2979.0,0.9610073887693666 -2980.0,0.960675525890209 -2981.0,0.960343777612637 -2982.0,0.9600121438970755 -2983.0,0.9596806247039629 -2984.0,0.9593492199937516 -2985.0,0.9590179297269071 -2986.0,0.9586867538639093 -2987.0,0.9583556923652511 -2988.0,0.9580247451914393 -2989.0,0.9576939123029944 -2990.0,0.9573631936604502 -2991.0,0.9570325892243547 -2992.0,0.956702098955269 -2993.0,0.9563717228137681 -2994.0,0.9560414607604405 -2995.0,0.9557113127558884 -2996.0,0.9553812787607275 -2997.0,0.9550513587355871 -2998.0,0.9547215526411102 -2999.0,0.9543918604379534 -3000.0,0.9540622820867868 -3001.0,0.953732817548294 -3002.0,0.9534034667831723 -3003.0,0.9530742297521327 -3004.0,0.9527451064158995 -3005.0,0.9524160967352108 -3006.0,0.952087200670818 -3007.0,0.9517584181834862 -3008.0,0.9514297492339941 -3009.0,0.951101193783134 -3010.0,0.9507727517917115 -3011.0,0.9504444232205459 -3012.0,0.9501162080304699 -3013.0,0.94978810618233 -3014.0,0.9494601176369859 -3015.0,0.949132242355311 -3016.0,0.9488044802981922 -3017.0,0.9484768314265299 -3018.0,0.9481492957012378 -3019.0,0.9478218730832436 -3020.0,0.9474945635334878 -3021.0,0.947167367012925 -3022.0,0.946840283482523 -3023.0,0.9465133129032631 -3024.0,0.9461864552361402 -3025.0,0.9458597104421623 -3026.0,0.9455330784823514 -3027.0,0.9452065593177424 -3028.0,0.9448801529093842 -3029.0,0.9445538592183388 -3030.0,0.9442276782056818 -3031.0,0.943901609832502 -3032.0,0.9435756540599022 -3033.0,0.9432498108489978 -3034.0,0.9429240801609183 -3035.0,0.9425984619568065 -3036.0,0.9422729561978184 -3037.0,0.9419475628451235 -3038.0,0.9416222818599048 -3039.0,0.9412971132033587 -3040.0,0.9409720568366948 -3041.0,0.9406471127211364 -3042.0,0.9403222808179201 -3043.0,0.9399975610882956 -3044.0,0.9396729534935263 -3045.0,0.9393484579948889 -3046.0,0.9390240745536734 -3047.0,0.9386998031311833 -3048.0,0.9383756436887354 -3049.0,0.9380515961876597 -3050.0,0.9377276605892998 -3051.0,0.9374038368550125 -3052.0,0.937080124946168 -3053.0,0.93675652482415 -3054.0,0.936433036450355 -3055.0,0.9361096597861935 -3056.0,0.935786394793089 -3057.0,0.9354632414324783 -3058.0,0.9351401996658114 -3059.0,0.934817269454552 -3060.0,0.9344944507601767 -3061.0,0.9341717435441758 -3062.0,0.9338491477680524 -3063.0,0.9335266633933234 -3064.0,0.9332042903815186 -3065.0,0.9328820286941816 -3066.0,0.9325598782928685 -3067.0,0.9322378391391493 -3068.0,0.9319159111946069 -3069.0,0.931594094420838 -3070.0,0.931272388779452 -3071.0,0.9309507942320717 -3072.0,0.9306293107403333 -3073.0,0.9303079382658861 -3074.0,0.9299866767703928 -3075.0,0.9296655262155292 -3076.0,0.9293444865629844 -3077.0,0.9290235577744607 -3078.0,0.9287027398116736 -3079.0,0.9283820326363519 -3080.0,0.9280614362102375 -3081.0,0.9277409504950858 -3082.0,0.9274205754526649 -3083.0,0.9271003110447564 -3084.0,0.9267801572331554 -3085.0,0.9264601139796697 -3086.0,0.9261401812461204 -3087.0,0.925820358994342 -3088.0,0.9255006471861819 -3089.0,0.9251810457835009 -3090.0,0.9248615547481729 -3091.0,0.9245421740420848 -3092.0,0.924222903627137 -3093.0,0.9239037434652428 -3094.0,0.9235846935183287 -3095.0,0.9232657537483344 -3096.0,0.9229469241172127 -3097.0,0.9226282045869295 -3098.0,0.9223095951194639 -3099.0,0.9219910956768081 -3100.0,0.9216727062209676 -3101.0,0.9213544267139607 -3102.0,0.921036257117819 -3103.0,0.9207181973945872 -3104.0,0.920400247506323 -3105.0,0.9200824074150975 -3106.0,0.9197646770829945 -3107.0,0.9194470564721112 -3108.0,0.9191295455445577 -3109.0,0.9188121442624574 -3110.0,0.9184948525879465 -3111.0,0.9181776704831744 -3112.0,0.9178605979103038 -3113.0,0.91754363483151 -3114.0,0.9172267812089818 -3115.0,0.9169100370049208 -3116.0,0.9165934021815417 -3117.0,0.9162768767010723 -3118.0,0.9159604605257534 -3119.0,0.9156441536178389 -3120.0,0.9153279559395956 -3121.0,0.9150118674533035 -3122.0,0.9146958881212556 -3123.0,0.9143800179057577 -3124.0,0.914064256769129 -3125.0,0.9137486046737013 -3126.0,0.9134330615818197 -3127.0,0.9131176274558422 -3128.0,0.91280230225814 -3129.0,0.9124870859510967 -3130.0,0.9121719784971095 -3131.0,0.9118569798585885 -3132.0,0.9115420899979565 -3133.0,0.9112273088776496 -3134.0,0.9109126364601164 -3135.0,0.9105980727078191 -3136.0,0.9102836175832324 -3137.0,0.9099692710488441 -3138.0,0.9096550330671549 -3139.0,0.9093409036006785 -3140.0,0.9090268826119416 -3141.0,0.908712970063484 -3142.0,0.9083991659178579 -3143.0,0.9080854701376287 -3144.0,0.907771882685375 -3145.0,0.9074584035236881 -3146.0,0.9071450326151722 -3147.0,0.9068317699224444 -3148.0,0.9065186154081347 -3149.0,0.906205569034886 -3150.0,0.9058926307653544 -3151.0,0.9055798005622084 -3152.0,0.9052670783881298 -3153.0,0.9049544642058129 -3154.0,0.9046419579779654 -3155.0,0.9043295596673074 -3156.0,0.9040172692365721 -3157.0,0.9037050866485056 -3158.0,0.9033930118658666 -3159.0,0.9030810448514272 -3160.0,0.9027691855679716 -3161.0,0.9024574339782975 -3162.0,0.9021457900452151 -3163.0,0.9018342537315477 -3164.0,0.9015228250001311 -3165.0,0.9012115038138143 -3166.0,0.9009002901354589 -3167.0,0.9005891839279394 -3168.0,0.9002781851541429 -3169.0,0.8999672937769697 -3170.0,0.8996565097593328 -3171.0,0.8993458330641577 -3172.0,0.8990352636543831 -3173.0,0.8987248014929603 -3174.0,0.8984144465428535 -3175.0,0.8981041987670394 -3176.0,0.897794058128508 -3177.0,0.8974840245902614 -3178.0,0.8971740981153152 -3179.0,0.8968642786666974 -3180.0,0.8965545662074487 -3181.0,0.8962449607006225 -3182.0,0.8959354621092854 -3183.0,0.8956260703965164 -3184.0,0.8953167855254073 -3185.0,0.8950076074590626 -3186.0,0.8946985361605997 -3187.0,0.8943895715931487 -3188.0,0.8940807137198522 -3189.0,0.8937719625038658 -3190.0,0.8934633179083578 -3191.0,0.893154779896509 -3192.0,0.8928463484315133 -3193.0,0.8925380234765768 -3194.0,0.8922298049949189 -3195.0,0.8919216929497711 -3196.0,0.8916136873043778 -3197.0,0.8913057880219966 -3198.0,0.890997995065897 -3199.0,0.8906903083993617 -3200.0,0.8903827279856859 -3201.0,0.8900752537881773 -3202.0,0.8897678857701568 -3203.0,0.8894606238949574 -3204.0,0.8891534681259251 -3205.0,0.8888464184264185 -3206.0,0.8885394747598087 -3207.0,0.8882326370894796 -3208.0,0.8879259053788278 -3209.0,0.8876192795912622 -3210.0,0.8873127596902048 -3211.0,0.88700634563909 -3212.0,0.8867000374013647 -3213.0,0.8863938349404886 -3214.0,0.8860877382199341 -3215.0,0.885781747203186 -3216.0,0.8854758618537418 -3217.0,0.8851700821351117 -3218.0,0.8848644080108182 -3219.0,0.884558839444397 -3220.0,0.8842533763993954 -3221.0,0.8839480188393745 -3222.0,0.8836427667279069 -3223.0,0.8833376200285785 -3224.0,0.8830325787049874 -3225.0,0.8827276427207446 -3226.0,0.8824228120394733 -3227.0,0.8821180866248093 -3228.0,0.8818134664404014 -3229.0,0.8815089514499103 -3230.0,0.8812045416170098 -3231.0,0.880900236905386 -3232.0,0.8805960372787375 -3233.0,0.8802919427007755 -3234.0,0.8799879531352238 -3235.0,0.8796840685458186 -3236.0,0.8793802888963088 -3237.0,0.8790766141504556 -3238.0,0.8787730442720327 -3239.0,0.8784695792248266 -3240.0,0.8781662189726361 -3241.0,0.8778629634792726 -3242.0,0.8775598127085599 -3243.0,0.8772567666243342 -3244.0,0.8769538251904443 -3245.0,0.8766509883707517 -3246.0,0.87634825612913 -3247.0,0.8760456284294655 -3248.0,0.8757431052356571 -3249.0,0.8754406865116157 -3250.0,0.8751383722212651 -3251.0,0.8748361623285413 -3252.0,0.874534056797393 -3253.0,0.8742320555917812 -3254.0,0.8739301586756794 -3255.0,0.8736283660130733 -3256.0,0.8733266775679613 -3257.0,0.8730250933043543 -3258.0,0.8727236131862754 -3259.0,0.8724222371777602 -3260.0,0.8721209652428569 -3261.0,0.8718197973456258 -3262.0,0.8715187334501396 -3263.0,0.871217773520484 -3264.0,0.8709169175207564 -3265.0,0.8706161654150669 -3266.0,0.870315517167538 -3267.0,0.8700149727423044 -3268.0,0.8697145321035137 -3269.0,0.8694141952153251 -3270.0,0.869113962041911 -3271.0,0.8688138325474555 -3272.0,0.8685138066961554 -3273.0,0.8682138844522198 -3274.0,0.8679140657798703 -3275.0,0.8676143506433405 -3276.0,0.8673147390068766 -3277.0,0.8670152308347373 -3278.0,0.8667158260911934 -3279.0,0.8664165247405279 -3280.0,0.8661173267470366 -3281.0,0.8658182320750271 -3282.0,0.8655192406888198 -3283.0,0.8652203525527471 -3284.0,0.8649215676311539 -3285.0,0.8646228858883972 -3286.0,0.8643243072888467 -3287.0,0.8640258317968839 -3288.0,0.8637274593769029 -3289.0,0.8634291899933101 -3290.0,0.8631310236105241 -3291.0,0.8628329601929758 -3292.0,0.8625349997051086 -3293.0,0.8622371421113778 -3294.0,0.8619393873762512 -3295.0,0.8616417354642087 -3296.0,0.8613441863397429 -3297.0,0.861046739967358 -3298.0,0.8607493963115712 -3299.0,0.8604521553369113 -3300.0,0.8601550170079196 -3301.0,0.8598579812891499 -3302.0,0.8595610481451678 -3303.0,0.8592642175405514 -3304.0,0.858967489439891 -3305.0,0.858670863807789 -3306.0,0.8583743406088603 -3307.0,0.8580779198077317 -3308.0,0.8577816013690424 -3309.0,0.8574853852574438 -3310.0,0.8571892714375994 -3311.0,0.8568932598741851 -3312.0,0.8565973505318888 -3313.0,0.8563015433754105 -3314.0,0.856005838369463 -3315.0,0.8557102354787706 -3316.0,0.8554147346680698 -3317.0,0.85511933590211 -3318.0,0.8548240391456519 -3319.0,0.8545288443634688 -3320.0,0.8542337515203462 -3321.0,0.8539387605810818 -3322.0,0.853643871510485 -3323.0,0.853349084273378 -3324.0,0.8530543988345947 -3325.0,0.8527598151589812 -3326.0,0.852465333211396 -3327.0,0.8521709529567094 -3328.0,0.851876674359804 -3329.0,0.8515824973855746 -3330.0,0.8512884219989278 -3331.0,0.850994448164783 -3332.0,0.8507005758480708 -3333.0,0.8504068050137346 -3334.0,0.8501131356267296 -3335.0,0.8498195676520233 -3336.0,0.8495261010545951 -3337.0,0.8492327357994365 -3338.0,0.8489394718515514 -3339.0,0.8486463091759553 -3340.0,0.8483532477376761 -3341.0,0.8480602875017538 -3342.0,0.8477674284332402 -3343.0,0.8474746704971996 -3344.0,0.8471820136587078 -3345.0,0.8468894578828533 -3346.0,0.8465970031347362 -3347.0,0.8463046493794686 -3348.0,0.8460123965821751 -3349.0,0.845720244707992 -3350.0,0.8454281937220676 -3351.0,0.8451362435895624 -3352.0,0.844844394275649 -3353.0,0.8445526457455116 -3354.0,0.8442609979643471 -3355.0,0.8439694508973637 -3356.0,0.8436780045097824 -3357.0,0.8433866587668353 -3358.0,0.8430954136337672 -3359.0,0.8428042690758347 -3360.0,0.8425132250583064 -3361.0,0.8422222815464627 -3362.0,0.8419314385055963 -3363.0,0.8416406959010118 -3364.0,0.8413500536980255 -3365.0,0.8410595118619661 -3366.0,0.840769070358174 -3367.0,0.8404787291520018 -3368.0,0.8401884882088138 -3369.0,0.8398983474939862 -3370.0,0.8396083069729074 -3371.0,0.839318366610978 -3372.0,0.8390285263736099 -3373.0,0.8387387862262273 -3374.0,0.8384491461342665 -3375.0,0.8381596060631753 -3376.0,0.8378701659784138 -3377.0,0.837580825845454 -3378.0,0.8372915856297796 -3379.0,0.8370024452968864 -3380.0,0.8367134048122821 -3381.0,0.8364244641414862 -3382.0,0.8361356232500302 -3383.0,0.8358468821034576 -3384.0,0.8355582406673235 -3385.0,0.8352696989071953 -3386.0,0.8349812567886519 -3387.0,0.8346929142772843 -3388.0,0.8344046713386953 -3389.0,0.8341165279384998 -3390.0,0.8338284840423242 -3391.0,0.833540539615807 -3392.0,0.8332526946245986 -3393.0,0.8329649490343611 -3394.0,0.8326773028107687 -3395.0,0.8323897559195071 -3396.0,0.8321023083262742 -3397.0,0.8318149599967796 -3398.0,0.8315277108967446 -3399.0,0.8312405609919026 -3400.0,0.8309535102479987 -3401.0,0.8306665586307898 -3402.0,0.8303797061060446 -3403.0,0.830092952639544 -3404.0,0.82980629819708 -3405.0,0.829519742744457 -3406.0,0.8292332862474909 -3407.0,0.8289469286720098 -3408.0,0.8286606699838531 -3409.0,0.8283745101488723 -3410.0,0.8280884491329307 -3411.0,0.8278024869019031 -3412.0,0.8275166234216764 -3413.0,0.8272308586581493 -3414.0,0.8269451925772319 -3415.0,0.8266596251448465 -3416.0,0.8263741563269269 -3417.0,0.8260887860894188 -3418.0,0.8258035143982796 -3419.0,0.8255183412194785 -3420.0,0.8252332665189963 -3421.0,0.8249482902628259 -3422.0,0.8246634124169714 -3423.0,0.8243786329474492 -3424.0,0.8240939518202871 -3425.0,0.8238093690015247 -3426.0,0.8235248844572133 -3427.0,0.823240498153416 -3428.0,0.8229562100562077 -3429.0,0.8226720201316748 -3430.0,0.8223879283459156 -3431.0,0.8221039346650398 -3432.0,0.8218200390551692 -3433.0,0.8215362414824372 -3434.0,0.8212525419129887 -3435.0,0.8209689403129803 -3436.0,0.8206854366485806 -3437.0,0.8204020308859696 -3438.0,0.8201187229913391 -3439.0,0.8198355129308925 -3440.0,0.8195524006708449 -3441.0,0.8192693861774231 -3442.0,0.8189864694168655 -3443.0,0.8187036503554221 -3444.0,0.8184209289593548 -3445.0,0.818138305194937 -3446.0,0.8178557790284536 -3447.0,0.8175733504262015 -3448.0,0.8172910193544889 -3449.0,0.8170087857796358 -3450.0,0.8167266496679736 -3451.0,0.8164446109858458 -3452.0,0.8161626696996072 -3453.0,0.815880825775624 -3454.0,0.8155990791802745 -3455.0,0.8153174298799485 -3456.0,0.8150358778410469 -3457.0,0.814754423029983 -3458.0,0.8144730654131811 -3459.0,0.8141918049570773 -3460.0,0.8139106416281193 -3461.0,0.8136295753927664 -3462.0,0.8133486062174894 -3463.0,0.8130677340687706 -3464.0,0.8127869589131043 -3465.0,0.8125062807169957 -3466.0,0.8122256994469623 -3467.0,0.8119452150695327 -3468.0,0.8116648275512469 -3469.0,0.8113845368586571 -3470.0,0.8111043429583263 -3471.0,0.8108242458168297 -3472.0,0.8105442454007535 -3473.0,0.810264341676696 -3474.0,0.8099845346112665 -3475.0,0.8097048241710861 -3476.0,0.8094252103227875 -3477.0,0.8091456930330146 -3478.0,0.8088662722684231 -3479.0,0.8085869479956803 -3480.0,0.8083077201814646 -3481.0,0.8080285887924664 -3482.0,0.8077495537953872 -3483.0,0.8074706151569401 -3484.0,0.8071917728438499 -3485.0,0.8069130268228527 -3486.0,0.8066343770606962 -3487.0,0.8063558235241395 -3488.0,0.806077366179953 -3489.0,0.805799004994919 -3490.0,0.8055207399358308 -3491.0,0.8052425709694937 -3492.0,0.804964498062724 -3493.0,0.8046865211823496 -3494.0,0.8044086402952101 -3495.0,0.8041308553681561 -3496.0,0.8038531663680499 -3497.0,0.8035755732617653 -3498.0,0.8032980760161875 -3499.0,0.803020674598213 -3500.0,0.8027433689747501 -3501.0,0.8024661591127178 -3502.0,0.8021890449790473 -3503.0,0.8019120265406809 -3504.0,0.8016351037645723 -3505.0,0.8013582766176864 -3506.0,0.8010815450670001 -3507.0,0.8008049090795012 -3508.0,0.8005283686221889 -3509.0,0.8002519236620742 -3510.0,0.799975574166179 -3511.0,0.7996993201015369 -3512.0,0.7994231614351929 -3513.0,0.7991470981342031 -3514.0,0.7988711301656354 -3515.0,0.7985952574965686 -3516.0,0.7983194800940931 -3517.0,0.7980437979253109 -3518.0,0.797768210957335 -3519.0,0.7974927191572898 -3520.0,0.7972173224923114 -3521.0,0.7969420209295466 -3522.0,0.7966668144361542 -3523.0,0.796391702979304 -3524.0,0.7961166865261772 -3525.0,0.7958417650439663 -3526.0,0.7955669384998754 -3527.0,0.7952922068611193 -3528.0,0.7950175700949249 -3529.0,0.7947430281685298 -3530.0,0.7944685810491833 -3531.0,0.7941942287041458 -3532.0,0.7939199711006889 -3533.0,0.793645808206096 -3534.0,0.7933717399876612 -3535.0,0.7930977664126903 -3536.0,0.7928238874485001 -3537.0,0.792550103062419 -3538.0,0.7922764132217864 -3539.0,0.7920028178939532 -3540.0,0.7917293170462815 -3541.0,0.7914559106461444 -3542.0,0.7911825986609268 -3543.0,0.7909093810580243 -3544.0,0.7906362578048444 -3545.0,0.7903632288688051 -3546.0,0.7900902942173362 -3547.0,0.7898174538178787 -3548.0,0.7895447076378845 -3549.0,0.7892720556448173 -3550.0,0.7889994978061513 -3551.0,0.7887270340893726 -3552.0,0.7884546644619782 -3553.0,0.7881823888914763 -3554.0,0.7879102073453866 -3555.0,0.7876381197912397 -3556.0,0.7873661261965775 -3557.0,0.7870942265289533 -3558.0,0.7868224207559313 -3559.0,0.7865507088450873 -3560.0,0.7862790907640076 -3561.0,0.7860075664802906 -3562.0,0.7857361359615451 -3563.0,0.7854647991753917 -3564.0,0.7851935560894617 -3565.0,0.7849224066713978 -3566.0,0.7846513508888538 -3567.0,0.784380388709495 -3568.0,0.7841095201009973 -3569.0,0.7838387450310482 -3570.0,0.7835680634673462 -3571.0,0.7832974753776007 -3572.0,0.783026980729533 -3573.0,0.7827565794908746 -3574.0,0.7824862716293689 -3575.0,0.78221605711277 -3576.0,0.7819459359088433 -3577.0,0.7816759079853655 -3578.0,0.7814059733101238 -3579.0,0.7811361318509175 -3580.0,0.7808663835755559 -3581.0,0.7805967284518606 -3582.0,0.7803271664476633 -3583.0,0.7800576975308073 -3584.0,0.779788321669147 -3585.0,0.7795190388305477 -3586.0,0.7792498489828861 -3587.0,0.7789807520940497 -3588.0,0.7787117481319372 -3589.0,0.7784428370644585 -3590.0,0.7781740188595343 -3591.0,0.7779052934850965 -3592.0,0.7776366609090885 -3593.0,0.777368121099464 -3594.0,0.7770996740241882 -3595.0,0.7768313196512376 -3596.0,0.7765630579485993 -3597.0,0.7762948888842716 -3598.0,0.7760268124262639 -3599.0,0.7757588285425966 -3600.0,0.7754909372013012 -3601.0,0.7752231383704205 -3602.0,0.7749554320180075 -3603.0,0.7746878181121273 -3604.0,0.7744202966208552 -3605.0,0.774152867512278 -3606.0,0.7738855307544933 -3607.0,0.7736182863156097 -3608.0,0.773351134163747 -3609.0,0.7730840742670357 -3610.0,0.7728171065936178 -3611.0,0.7725502311116459 -3612.0,0.7722834477892835 -3613.0,0.7720167565947056 -3614.0,0.7717501574960977 -3615.0,0.7714836504616563 -3616.0,0.7712172354595895 -3617.0,0.7709509124581156 -3618.0,0.7706846814254644 -3619.0,0.7704185423298763 -3620.0,0.7701524951396029 -3621.0,0.7698865398229068 -3622.0,0.7696206763480614 -3623.0,0.7693549046833511 -3624.0,0.7690892247970713 -3625.0,0.7688236366575283 -3626.0,0.7685581402330395 -3627.0,0.7682927354919329 -3628.0,0.7680274224025478 -3629.0,0.7677622009332343 -3630.0,0.7674970710523534 -3631.0,0.7672320327282769 -3632.0,0.7669670859293879 -3633.0,0.7667022306240799 -3634.0,0.7664374667807579 -3635.0,0.7661727943678371 -3636.0,0.7659082133537445 -3637.0,0.7656437237069171 -3638.0,0.7653793253958034 -3639.0,0.7651150183888626 -3640.0,0.7648508026545648 -3641.0,0.764586678161391 -3642.0,0.7643226448778331 -3643.0,0.7640587027723937 -3644.0,0.7637948518135866 -3645.0,0.7635310919699363 -3646.0,0.763267423209978 -3647.0,0.7630038455022581 -3648.0,0.7627403588153336 -3649.0,0.7624769631177726 -3650.0,0.7622136583781538 -3651.0,0.7619504445650669 -3652.0,0.7616873216471124 -3653.0,0.7614242895929016 -3654.0,0.7611613483710569 -3655.0,0.7608984979502111 -3656.0,0.7606357382990081 -3657.0,0.7603730693861027 -3658.0,0.7601104911801603 -3659.0,0.7598480036498574 -3660.0,0.7595856067638809 -3661.0,0.7593233004909289 -3662.0,0.7590610847997102 -3663.0,0.7587989596589444 -3664.0,0.7585369250373618 -3665.0,0.7582749809037037 -3666.0,0.7580131272267219 -3667.0,0.7577513639751792 -3668.0,0.7574896911178493 -3669.0,0.7572281086235164 -3670.0,0.7569666164609757 -3671.0,0.7567052145990331 -3672.0,0.7564439030065051 -3673.0,0.7561826816522192 -3674.0,0.7559215505050138 -3675.0,0.7556605095337376 -3676.0,0.7553995587072505 -3677.0,0.7551386979944228 -3678.0,0.7548779273641358 -3679.0,0.7546172467852816 -3680.0,0.7543566562267627 -3681.0,0.7540961556574927 -3682.0,0.7538357450463956 -3683.0,0.7535754243624064 -3684.0,0.7533151935744709 -3685.0,0.7530550526515452 -3686.0,0.7527950015625965 -3687.0,0.7525350402766027 -3688.0,0.7522751687625522 -3689.0,0.7520153869894443 -3690.0,0.7517556949262887 -3691.0,0.7514960925421064 -3692.0,0.7512365798059284 -3693.0,0.7509771566867969 -3694.0,0.7507178231537646 -3695.0,0.7504585791758949 -3696.0,0.7501994247222618 -3697.0,0.7499403597619501 -3698.0,0.7496813842640553 -3699.0,0.7494224981976835 -3700.0,0.7491637015319513 -3701.0,0.7489049942359864 -3702.0,0.7486463762789268 -3703.0,0.7483878476299214 -3704.0,0.7481294082581292 -3705.0,0.7478710581327207 -3706.0,0.7476127972228765 -3707.0,0.7473546254977879 -3708.0,0.7470965429266568 -3709.0,0.7468385494786961 -3710.0,0.7465806451231288 -3711.0,0.746322829829189 -3712.0,0.7460651035661211 -3713.0,0.7458074663031802 -3714.0,0.7455499180096321 -3715.0,0.7452924586547531 -3716.0,0.7450350882078304 -3717.0,0.7447778066381613 -3718.0,0.7445206139150542 -3719.0,0.7442635100078278 -3720.0,0.7440064948858114 -3721.0,0.7437495685183451 -3722.0,0.7434927308747793 -3723.0,0.7432359819244754 -3724.0,0.7429793216368048 -3725.0,0.7427227499811501 -3726.0,0.742466266926904 -3727.0,0.7422098724434699 -3728.0,0.741953566500262 -3729.0,0.7416973490667047 -3730.0,0.7414412201122332 -3731.0,0.7411851796062932 -3732.0,0.7409292275183409 -3733.0,0.740673363817843 -3734.0,0.740417588474277 -3735.0,0.7401619014571306 -3736.0,0.7399063027359023 -3737.0,0.7396507922801011 -3738.0,0.7393953700592463 -3739.0,0.739140036042868 -3740.0,0.7388847902005067 -3741.0,0.7386296325017134 -3742.0,0.7383745629160496 -3743.0,0.7381195814130875 -3744.0,0.7378646879624097 -3745.0,0.737609882533609 -3746.0,0.7373551650962892 -3747.0,0.7371005356200643 -3748.0,0.7368459940745588 -3749.0,0.7365915404294078 -3750.0,0.7363371746542569 -3751.0,0.736082896718762 -3752.0,0.7358287065925897 -3753.0,0.7355746042454169 -3754.0,0.7353205896469311 -3755.0,0.7350666627668302 -3756.0,0.7348128235748225 -3757.0,0.734559072040627 -3758.0,0.7343054081339727 -3759.0,0.7340518318245997 -3760.0,0.7337983430822579 -3761.0,0.7335449418767082 -3762.0,0.7332916281777214 -3763.0,0.7330384019550792 -3764.0,0.7327852631785736 -3765.0,0.7325322118180069 -3766.0,0.7322792478431919 -3767.0,0.732026371223952 -3768.0,0.7317735819301205 -3769.0,0.7315208799315419 -3770.0,0.7312682651980705 -3771.0,0.7310157376995712 -3772.0,0.7307632974059194 -3773.0,0.7305109442870006 -3774.0,0.7302586783127112 -3775.0,0.7300064994529575 -3776.0,0.7297544076776565 -3777.0,0.7295024029567354 -3778.0,0.729250485260132 -3779.0,0.7289986545577942 -3780.0,0.7287469108196806 -3781.0,0.7284952540157599 -3782.0,0.7282436841160113 -3783.0,0.7279922010904244 -3784.0,0.727740804908999 -3785.0,0.7274894955417455 -3786.0,0.7272382729586844 -3787.0,0.7269871371298466 -3788.0,0.7267360880252738 -3789.0,0.7264851256150173 -3790.0,0.7262342498691392 -3791.0,0.725983460757712 -3792.0,0.7257327582508183 -3793.0,0.725482142318551 -3794.0,0.7252316129310136 -3795.0,0.7249811700583197 -3796.0,0.7247308136705933 -3797.0,0.7244805437379688 -3798.0,0.7242303602305907 -3799.0,0.723980263118614 -3800.0,0.7237302523722038 -3801.0,0.7234803279615358 -3802.0,0.7232304898567959 -3803.0,0.7229807380281801 -3804.0,0.7227310724458947 -3805.0,0.7224814930801567 -3806.0,0.722231999901193 -3807.0,0.7219825928792408 -3808.0,0.7217332719845478 -3809.0,0.7214840371873716 -3810.0,0.7212348884579806 -3811.0,0.7209858257666529 -3812.0,0.7207368490836774 -3813.0,0.7204879583793529 -3814.0,0.7202391536239884 -3815.0,0.7199904347879035 -3816.0,0.7197418018414278 -3817.0,0.7194932547549011 -3818.0,0.7192447934986735 -3819.0,0.7189964180431058 -3820.0,0.7187481283585682 -3821.0,0.7184999244154417 -3822.0,0.7182518061841173 -3823.0,0.7180037736349965 -3824.0,0.7177558267384906 -3825.0,0.7175079654650215 -3826.0,0.717260189785021 -3827.0,0.7170124996689314 -3828.0,0.7167648950872051 -3829.0,0.7165173760103045 -3830.0,0.7162699424087026 -3831.0,0.7160225942528823 -3832.0,0.7157753315133366 -3833.0,0.7155281541605691 -3834.0,0.7152810621650932 -3835.0,0.7150340554974327 -3836.0,0.7147871341281214 -3837.0,0.7145402980277035 -3838.0,0.7142935471667332 -3839.0,0.714046881515775 -3840.0,0.7138003010454034 -3841.0,0.7135538057262031 -3842.0,0.713307395528769 -3843.0,0.7130610704237064 -3844.0,0.7128148303816302 -3845.0,0.7125686753731659 -3846.0,0.7123226053689491 -3847.0,0.7120766203396253 -3848.0,0.7118307202558503 -3849.0,0.7115849050882901 -3850.0,0.7113391748076205 -3851.0,0.7110935293845281 -3852.0,0.7108479687897088 -3853.0,0.7106024929938691 -3854.0,0.7103571019677256 -3855.0,0.710111795682005 -3856.0,0.7098665741074439 -3857.0,0.7096214372147892 -3858.0,0.7093763849747979 -3859.0,0.7091314173582371 -3860.0,0.7088865343358839 -3861.0,0.7086417358785254 -3862.0,0.7083970219569592 -3863.0,0.7081523925419925 -3864.0,0.7079078476044428 -3865.0,0.7076633871151378 -3866.0,0.7074190110449149 -3867.0,0.7071747193646222 -3868.0,0.7069305120451171 -3869.0,0.7066863890572678 -3870.0,0.7064423503719519 -3871.0,0.7061983959600576 -3872.0,0.7059545257924827 -3873.0,0.7057107398401355 -3874.0,0.705467038073934 -3875.0,0.7052234204648062 -3876.0,0.7049798869836906 -3877.0,0.7047364376015353 -3878.0,0.7044930722892984 -3879.0,0.7042497910179484 -3880.0,0.7040065937584635 -3881.0,0.7037634804818321 -3882.0,0.7035204511590527 -3883.0,0.7032775057611333 -3884.0,0.7030346442590927 -3885.0,0.702791866623959 -3886.0,0.7025491728267708 -3887.0,0.7023065628385763 -3888.0,0.702064036630434 -3889.0,0.7018215941734124 -3890.0,0.7015792354385897 -3891.0,0.7013369603970543 -3892.0,0.7010947690199046 -3893.0,0.700852661278249 -3894.0,0.7006106371432057 -3895.0,0.7003686965859031 -3896.0,0.7001268395774792 -3897.0,0.6998850660890826 -3898.0,0.6996433760918712 -3899.0,0.6994017695570133 -3900.0,0.6991602464556869 -3901.0,0.6989188067590801 -3902.0,0.6986774504383909 -3903.0,0.6984361774648272 -3904.0,0.698194987809607 -3905.0,0.6979538814439581 -3906.0,0.6977128583391182 -3907.0,0.697471918466335 -3908.0,0.6972310617968663 -3909.0,0.6969902883019795 -3910.0,0.6967495979529521 -3911.0,0.6965089907210715 -3912.0,0.696268466577635 -3913.0,0.6960280254939498 -3914.0,0.6957876674413331 -3915.0,0.695547392391112 -3916.0,0.6953072003146232 -3917.0,0.6950670911832137 -3918.0,0.6948270649682404 -3919.0,0.6945871216410696 -3920.0,0.694347261173078 -3921.0,0.6941074835356519 -3922.0,0.6938677887001876 -3923.0,0.6936281766380913 -3924.0,0.693388647320779 -3925.0,0.6931492007196766 -3926.0,0.6929098368062199 -3927.0,0.6926705555518544 -3928.0,0.6924313569280358 -3929.0,0.6921922409062293 -3930.0,0.6919532074579101 -3931.0,0.6917142565545633 -3932.0,0.6914753881676838 -3933.0,0.6912366022687764 -3934.0,0.6909978988293556 -3935.0,0.6907592778209458 -3936.0,0.6905207392150813 -3937.0,0.6902822829833062 -3938.0,0.6900439090971743 -3939.0,0.6898056175282495 -3940.0,0.6895674082481053 -3941.0,0.6893292812283249 -3942.0,0.6890912364405017 -3943.0,0.6888532738562386 -3944.0,0.6886153934471485 -3945.0,0.6883775951848539 -3946.0,0.6881398790409872 -3947.0,0.6879022449871905 -3948.0,0.687664692995116 -3949.0,0.6874272230364254 -3950.0,0.6871898350827903 -3951.0,0.6869525291058919 -3952.0,0.6867153050774215 -3953.0,0.6864781629690798 -3954.0,0.6862411027525778 -3955.0,0.6860041243996357 -3956.0,0.6857672278819836 -3957.0,0.6855304131713618 -3958.0,0.6852936802395198 -3959.0,0.6850570290582171 -3960.0,0.6848204595992231 -3961.0,0.6845839718343165 -3962.0,0.6843475657352864 -3963.0,0.6841112412739311 -3964.0,0.6838749984220587 -3965.0,0.6836388371514873 -3966.0,0.6834027574340445 -3967.0,0.6831667592415678 -3968.0,0.6829308425459042 -3969.0,0.6826950073189108 -3970.0,0.6824592535324538 -3971.0,0.6822235811584099 -3972.0,0.6819879901686648 -3973.0,0.6817524805351144 -3974.0,0.681517052229664 -3975.0,0.6812817052242288 -3976.0,0.6810464394907336 -3977.0,0.6808112550011128 -3978.0,0.6805761517273108 -3979.0,0.6803411296412814 -3980.0,0.6801061887149881 -3981.0,0.6798713289204042 -3982.0,0.6796365502295129 -3983.0,0.6794018526143064 -3984.0,0.6791672360467872 -3985.0,0.6789327004989673 -3986.0,0.6786982459428682 -3987.0,0.6784638723505212 -3988.0,0.6782295796939674 -3989.0,0.677995367945257 -3990.0,0.6777612370764508 -3991.0,0.6775271870596182 -3992.0,0.677293217866839 -3993.0,0.6770593294702024 -3994.0,0.6768255218418071 -3995.0,0.6765917949537615 -3996.0,0.676358148778184 -3997.0,0.6761245832872019 -3998.0,0.6758910984529528 -3999.0,0.6756576942475836 -4000.0,0.6754243706432509 -4001.0,0.6751911276121209 -4002.0,0.6749579651263693 -4003.0,0.6747248831581817 -4004.0,0.6744918816797529 -4005.0,0.6742589606632878 -4006.0,0.6740261200810004 -4007.0,0.6737933599051146 -4008.0,0.6735606801078636 -4009.0,0.6733280806614907 -4010.0,0.6730955615382485 -4011.0,0.6728631227103989 -4012.0,0.6726307641502138 -4013.0,0.6723984858299745 -4014.0,0.6721662877219718 -4015.0,0.6719341697985064 -4016.0,0.6717021320318881 -4017.0,0.6714701743944365 -4018.0,0.6712382968584808 -4019.0,0.6710064993963597 -4020.0,0.6707747819804215 -4021.0,0.6705431445830239 -4022.0,0.6703115871765343 -4023.0,0.6700801097333297 -4024.0,0.6698487122257962 -4025.0,0.6696173946263302 -4026.0,0.6693861569073368 -4027.0,0.6691549990412313 -4028.0,0.6689239210004382 -4029.0,0.6686929227573915 -4030.0,0.6684620042845347 -4031.0,0.6682311655543212 -4032.0,0.6680004065392134 -4033.0,0.6677697272116835 -4034.0,0.6675391275442131 -4035.0,0.6673086075092934 -4036.0,0.6670781670794249 -4037.0,0.666847806227118 -4038.0,0.6666175249248921 -4039.0,0.6663873231452765 -4040.0,0.6661572008608095 -4041.0,0.6659271580440396 -4042.0,0.6656971946675241 -4043.0,0.66546731070383 -4044.0,0.665237506125534 -4045.0,0.6650077809052221 -4046.0,0.6647781350154895 -4047.0,0.6645485684289414 -4048.0,0.664319081118192 -4049.0,0.6640896730558653 -4050.0,0.6638603442145945 -4051.0,0.6636310945670223 -4052.0,0.6634019240858009 -4053.0,0.6631728327435921 -4054.0,0.6629438205130667 -4055.0,0.6627148873669053 -4056.0,0.662486033277798 -4057.0,0.662257258218444 -4058.0,0.6620285621615521 -4059.0,0.6617999450798409 -4060.0,0.6615714069460374 -4061.0,0.6613429477328793 -4062.0,0.6611145674131126 -4063.0,0.6608862659594934 -4064.0,0.6606580433447871 -4065.0,0.6604298995417682 -4066.0,0.6602018345232209 -4067.0,0.6599738482619387 -4068.0,0.6597459407307247 -4069.0,0.6595181119023908 -4070.0,0.659290361749759 -4071.0,0.6590626902456602 -4072.0,0.6588350973629349 -4073.0,0.6586075830744329 -4074.0,0.6583801473530134 -4075.0,0.6581527901715452 -4076.0,0.6579255115029059 -4077.0,0.657698311319983 -4078.0,0.6574711895956732 -4079.0,0.6572441463028825 -4080.0,0.6570171814145263 -4081.0,0.6567902949035291 -4082.0,0.6565634867428254 -4083.0,0.6563367569053584 -4084.0,0.6561101053640809 -4085.0,0.655883532091955 -4086.0,0.6556570370619523 -4087.0,0.6554306202470536 -4088.0,0.6552042816202488 -4089.0,0.6549780211545375 -4090.0,0.6547518388229285 -4091.0,0.6545257345984399 -4092.0,0.654299708454099 -4093.0,0.6540737603629426 -4094.0,0.6538478902980168 -4095.0,0.6536220982323769 -4096.0,0.6533963841390875 -4097.0,0.6531707479912227 -4098.0,0.6529451897618656 -4099.0,0.6527197094241087 -4100.0,0.652494306951054 -4101.0,0.6522689823158127 -4102.0,0.6520437354915049 -4103.0,0.6518185664512605 -4104.0,0.6515934751682185 -4105.0,0.6513684616155271 -4106.0,0.6511435257663438 -4107.0,0.6509186675938355 -4108.0,0.6506938870711781 -4109.0,0.6504691841715571 -4110.0,0.6502445588681669 -4111.0,0.6500200111342115 -4112.0,0.6497955409429038 -4113.0,0.6495711482674664 -4114.0,0.6493468330811307 -4115.0,0.6491225953571376 -4116.0,0.6488984350687371 -4117.0,0.6486743521891887 -4118.0,0.6484503466917606 -4119.0,0.648226418549731 -4120.0,0.6480025677363866 -4121.0,0.6477787942250238 -4122.0,0.6475550979889478 -4123.0,0.6473314790014737 -4124.0,0.6471079372359251 -4125.0,0.646884472665635 -4126.0,0.646661085263946 -4127.0,0.6464377750042093 -4128.0,0.6462145418597858 -4129.0,0.6459913858040455 -4130.0,0.6457683068103672 -4131.0,0.6455453048521395 -4132.0,0.6453223799027598 -4133.0,0.6450995319356347 -4134.0,0.6448767609241802 -4135.0,0.6446540668418212 -4136.0,0.6444314496619921 -4137.0,0.6442089093581361 -4138.0,0.6439864459037059 -4139.0,0.6437640592721631 -4140.0,0.6435417494369787 -4141.0,0.6433195163716328 -4142.0,0.6430973600496145 -4143.0,0.6428752804444222 -4144.0,0.6426532775295635 -4145.0,0.642431351278555 -4146.0,0.6422095016649224 -4147.0,0.641987728662201 -4148.0,0.6417660322439346 -4149.0,0.6415444123836764 -4150.0,0.641322869054989 -4151.0,0.6411014022314437 -4152.0,0.6408800118866214 -4153.0,0.6406586979941115 -4154.0,0.640437460527513 -4155.0,0.640216299460434 -4156.0,0.6399952147664915 -4157.0,0.6397742064193116 -4158.0,0.6395532743925298 -4159.0,0.6393324186597904 -4160.0,0.639111639194747 -4161.0,0.6388909359710622 -4162.0,0.6386703089624076 -4163.0,0.6384497581424642 -4164.0,0.6382292834849218 -4165.0,0.6380088849634793 -4166.0,0.6377885625518449 -4167.0,0.6375683162237357 -4168.0,0.6373481459528779 -4169.0,0.6371280517130067 -4170.0,0.6369080334778666 -4171.0,0.6366880912212111 -4172.0,0.6364682249168025 -4173.0,0.6362484345384124 -4174.0,0.6360287200598216 -4175.0,0.6358090814548194 -4176.0,0.6355895186972048 -4177.0,0.6353700317607855 -4178.0,0.6351506206193784 -4179.0,0.6349312852468091 -4180.0,0.6347120256169128 -4181.0,0.634492841703533 -4182.0,0.6342737334805232 -4183.0,0.6340547009217449 -4184.0,0.6338357440010695 -4185.0,0.6336168626923767 -4186.0,0.6333980569695558 -4187.0,0.6331793268065047 -4188.0,0.6329606721771306 -4189.0,0.6327420930553496 -4190.0,0.6325235894150867 -4191.0,0.6323051612302761 -4192.0,0.632086808474861 -4193.0,0.6318685311227933 -4194.0,0.6316503291480342 -4195.0,0.6314322025245539 -4196.0,0.6312141512263313 -4197.0,0.6309961752273545 -4198.0,0.6307782745016207 -4199.0,0.6305604490231358 -4200.0,0.6303426987659149 -4201.0,0.6301250237039818 -4202.0,0.6299074238113697 -4203.0,0.6296898990621203 -4204.0,0.6294724494302847 -4205.0,0.6292550748899225 -4206.0,0.6290377754151026 -4207.0,0.628820550979903 -4208.0,0.62860340155841 -4209.0,0.6283863271247195 -4210.0,0.6281693276529361 -4211.0,0.6279524031171733 -4212.0,0.6277355534915535 -4213.0,0.6275187787502083 -4214.0,0.627302078867278 -4215.0,0.6270854538169117 -4216.0,0.6268689035732679 -4217.0,0.6266524281105135 -4218.0,0.6264360274028246 -4219.0,0.6262197014243862 -4220.0,0.6260034501493923 -4221.0,0.6257872735520457 -4222.0,0.6255711716065578 -4223.0,0.6253551442871496 -4224.0,0.6251391915680503 -4225.0,0.6249233134234986 -4226.0,0.6247075098277416 -4227.0,0.6244917807550355 -4228.0,0.6242761261796456 -4229.0,0.6240605460758457 -4230.0,0.6238450404179187 -4231.0,0.6236296091801564 -4232.0,0.6234142523368593 -4233.0,0.6231989698623371 -4234.0,0.622983761730908 -4235.0,0.6227686279168994 -4236.0,0.6225535683946471 -4237.0,0.6223385831384963 -4238.0,0.622123672122801 -4239.0,0.6219088353219234 -4240.0,0.6216940727102356 -4241.0,0.6214793842621175 -4242.0,0.6212647699519586 -4243.0,0.6210502297541569 -4244.0,0.6208357636431193 -4245.0,0.6206213715932616 -4246.0,0.6204070535790084 -4247.0,0.6201928095747931 -4248.0,0.6199786395550579 -4249.0,0.619764543494254 -4250.0,0.6195505213668412 -4251.0,0.6193365731472882 -4252.0,0.6191226988100726 -4253.0,0.6189088983296809 -4254.0,0.618695171680608 -4255.0,0.6184815188373579 -4256.0,0.6182679397744435 -4257.0,0.6180544344663863 -4258.0,0.6178410028877167 -4259.0,0.617627645012974 -4260.0,0.6174143608167059 -4261.0,0.6172011502734692 -4262.0,0.6169880133578296 -4263.0,0.6167749500443613 -4264.0,0.6165619603076474 -4265.0,0.6163490441222799 -4266.0,0.6161362014628593 -4267.0,0.6159234323039952 -4268.0,0.6157107366203055 -4269.0,0.6154981143864174 -4270.0,0.6152855655769666 -4271.0,0.6150730901665975 -4272.0,0.6148606881299633 -4273.0,0.614648359441726 -4274.0,0.6144361040765565 -4275.0,0.6142239220091341 -4276.0,0.6140118132141471 -4277.0,0.6137997776662926 -4278.0,0.613587815340276 -4279.0,0.6133759262108118 -4280.0,0.6131641102526235 -4281.0,0.6129523674404427 -4282.0,0.61274069774901 -4283.0,0.6125291011530749 -4284.0,0.6123175776273955 -4285.0,0.6121061271467384 -4286.0,0.6118947496858792 -4287.0,0.6116834452196022 -4288.0,0.6114722137227001 -4289.0,0.6112610551699748 -4290.0,0.6110499695362364 -4291.0,0.610838956796304 -4292.0,0.6106280169250052 -4293.0,0.6104171498971768 -4294.0,0.6102063556876635 -4295.0,0.6099956342713191 -4296.0,0.6097849856230063 -4297.0,0.6095744097175961 -4298.0,0.6093639065299685 -4299.0,0.6091534760350118 -4300.0,0.6089431182076233 -4301.0,0.6087328330227086 -4302.0,0.6085226204551826 -4303.0,0.6083124804799682 -4304.0,0.6081024130719973 -4305.0,0.6078924182062104 -4306.0,0.6076824958575567 -4307.0,0.607472646000994 -4308.0,0.6072628686114886 -4309.0,0.6070531636640157 -4310.0,0.606843531133559 -4311.0,0.6066339709951108 -4312.0,0.6064244832236723 -4313.0,0.6062150677942529 -4314.0,0.6060057246818711 -4315.0,0.6057964538615536 -4316.0,0.6055872553083359 -4317.0,0.6053781289972624 -4318.0,0.6051690749033856 -4319.0,0.6049600930017669 -4320.0,0.6047511832674763 -4321.0,0.6045423456755925 -4322.0,0.6043335802012026 -4323.0,0.6041248868194025 -4324.0,0.6039162655052964 -4325.0,0.6037077162339974 -4326.0,0.6034992389806272 -4327.0,0.6032908337203159 -4328.0,0.6030825004282022 -4329.0,0.6028742390794336 -4330.0,0.602666049649166 -4331.0,0.6024579321125638 -4332.0,0.6022498864448003 -4333.0,0.602041912621057 -4334.0,0.6018340106165241 -4335.0,0.6016261804064006 -4336.0,0.6014184219658938 -4337.0,0.6012107352702195 -4338.0,0.6010031202946023 -4339.0,0.6007955770142753 -4340.0,0.60058810540448 -4341.0,0.6003807054404666 -4342.0,0.6001733770974937 -4343.0,0.5999661203508289 -4344.0,0.5997589351757474 -4345.0,0.599551821547534 -4346.0,0.5993447794414812 -4347.0,0.5991378088328907 -4348.0,0.5989309096970723 -4349.0,0.5987240820093445 -4350.0,0.598517325745034 -4351.0,0.5983106408794766 -4352.0,0.5981040273880162 -4353.0,0.5978974852460052 -4354.0,0.5976910144288048 -4355.0,0.5974846149117844 -4356.0,0.5972782866703221 -4357.0,0.5970720296798046 -4358.0,0.5968658439156266 -4359.0,0.5966597293531919 -4360.0,0.5964536859679125 -4361.0,0.5962477137352088 -4362.0,0.59604181263051 -4363.0,0.5958359826292535 -4364.0,0.5956302237068852 -4365.0,0.5954245358388597 -4366.0,0.59521891900064 -4367.0,0.5950133731676973 -4368.0,0.5948078983155116 -4369.0,0.5946024944195712 -4370.0,0.594397161455373 -4371.0,0.5941918993984222 -4372.0,0.5939867082242325 -4373.0,0.5937815879083262 -4374.0,0.5935765384262339 -4375.0,0.5933715597534946 -4376.0,0.593166651865656 -4377.0,0.5929618147382739 -4378.0,0.5927570483469129 -4379.0,0.5925523526671458 -4380.0,0.5923477276745538 -4381.0,0.5921431733447267 -4382.0,0.5919386896532627 -4383.0,0.5917342765757683 -4384.0,0.5915299340878586 -4385.0,0.591325662165157 -4386.0,0.5911214607832954 -4387.0,0.590917329917914 -4388.0,0.5907132695446614 -4389.0,0.5905092796391949 -4390.0,0.5903053601771798 -4391.0,0.5901015111342901 -4392.0,0.589897732486208 -4393.0,0.5896940242086243 -4394.0,0.5894903862772379 -4395.0,0.5892868186677566 -4396.0,0.5890833213558959 -4397.0,0.5888798943173804 -4398.0,0.5886765375279425 -4399.0,0.5884732509633233 -4400.0,0.5882700345992722 -4401.0,0.5880668884115469 -4402.0,0.5878638123759137 -4403.0,0.5876608064681469 -4404.0,0.5874578706640295 -4405.0,0.5872550049393528 -4406.0,0.5870522092699163 -4407.0,0.586849483631528 -4408.0,0.5866468280000041 -4409.0,0.5864442423511694 -4410.0,0.5862417266608568 -4411.0,0.5860392809049078 -4412.0,0.585836905059172 -4413.0,0.5856345990995073 -4414.0,0.5854323630017804 -4415.0,0.5852301967418657 -4416.0,0.5850281002956464 -4417.0,0.584826073639014 -4418.0,0.5846241167478679 -4419.0,0.5844222295981161 -4420.0,0.5842204121656751 -4421.0,0.5840186644264697 -4422.0,0.5838169863564326 -4423.0,0.5836153779315052 -4424.0,0.583413839127637 -4425.0,0.5832123699207861 -4426.0,0.5830109702869184 -4427.0,0.5828096402020085 -4428.0,0.5826083796420393 -4429.0,0.5824071885830018 -4430.0,0.5822060670008954 -4431.0,0.5820050148717276 -4432.0,0.5818040321715147 -4433.0,0.5816031188762805 -4434.0,0.5814022749620579 -4435.0,0.5812015004048874 -4436.0,0.5810007951808182 -4437.0,0.5808001592659076 -4438.0,0.5805995926362211 -4439.0,0.5803990952678327 -4440.0,0.5801986671368246 -4441.0,0.5799983082192869 -4442.0,0.5797980184913185 -4443.0,0.5795977979290262 -4444.0,0.5793976465085252 -4445.0,0.5791975642059388 -4446.0,0.5789975509973988 -4447.0,0.5787976068590449 -4448.0,0.5785977317670252 -4449.0,0.5783979256974963 -4450.0,0.5781981886266225 -4451.0,0.5779985205305769 -4452.0,0.5777989213855405 -4453.0,0.5775993911677023 -4454.0,0.57739992985326 -4455.0,0.5772005374184195 -4456.0,0.5770012138393944 -4457.0,0.5768019590924071 -4458.0,0.5766027731536877 -4459.0,0.5764036559994751 -4460.0,0.5762046076060159 -4461.0,0.576005627949565 -4462.0,0.5758067170063857 -4463.0,0.5756078747527494 -4464.0,0.5754091011649356 -4465.0,0.5752103962192321 -4466.0,0.5750117598919348 -4467.0,0.5748131921593478 -4468.0,0.5746146929977834 -4469.0,0.5744162623835624 -4470.0,0.5742179002930131 -4471.0,0.5740196067024725 -4472.0,0.5738213815882857 -4473.0,0.5736232249268057 -4474.0,0.573425136694394 -4475.0,0.57322711686742 -4476.0,0.5730291654222616 -4477.0,0.5728312823353043 -4478.0,0.5726334675829424 -4479.0,0.5724357211415779 -4480.0,0.5722380429876212 -4481.0,0.5720404330974905 -4482.0,0.5718428914476127 -4483.0,0.5716454180144223 -4484.0,0.5714480127743622 -4485.0,0.5712506757038834 -4486.0,0.571053406779445 -4487.0,0.5708562059775144 -4488.0,0.5706590732745668 -4489.0,0.5704620086470857 -4490.0,0.5702650120715629 -4491.0,0.5700680835244981 -4492.0,0.569871222982399 -4493.0,0.5696744304217818 -4494.0,0.5694777058191703 -4495.0,0.5692810491510971 -4496.0,0.569084460394102 -4497.0,0.5688879395247337 -4498.0,0.5686914865195487 -4499.0,0.5684951013551116 -4500.0,0.5682987840079948 -4501.0,0.5681025344547794 -4502.0,0.5679063526720542 -4503.0,0.567710238636416 -4504.0,0.56751419232447 -4505.0,0.5673182137128291 -4506.0,0.5671223027781146 -4507.0,0.5669264594969557 -4508.0,0.5667306838459899 -4509.0,0.5665349758018624 -4510.0,0.5663393353412267 -4511.0,0.5661437624407444 -4512.0,0.565948257077085 -4513.0,0.5657528192269261 -4514.0,0.5655574488669536 -4515.0,0.5653621459738608 -4516.0,0.56516691052435 -4517.0,0.5649717424951307 -4518.0,0.564776641862921 -4519.0,0.5645816086044466 -4520.0,0.5643866426964416 -4521.0,0.564191744115648 -4522.0,0.5639969128388157 -4523.0,0.5638021488427027 -4524.0,0.5636074521040754 -4525.0,0.5634128225997076 -4526.0,0.5632182603063816 -4527.0,0.5630237652008873 -4528.0,0.562829337260023 -4529.0,0.5626349764605949 -4530.0,0.5624406827794172 -4531.0,0.5622464561933119 -4532.0,0.5620522966791094 -4533.0,0.5618582042136477 -4534.0,0.5616641787737732 -4535.0,0.5614702203363398 -4536.0,0.5612763288782099 -4537.0,0.5610825043762536 -4538.0,0.560888746807349 -4539.0,0.5606950561483823 -4540.0,0.5605014323762476 -4541.0,0.5603078754678469 -4542.0,0.5601143854000904 -4543.0,0.5599209621498962 -4544.0,0.5597276056941901 -4545.0,0.5595343160099062 -4546.0,0.5593410930739865 -4547.0,0.5591479368633808 -4548.0,0.5589548473550471 -4549.0,0.5587618245259511 -4550.0,0.5585688683530667 -4551.0,0.5583759788133756 -4552.0,0.5581831558838675 -4553.0,0.5579903995415398 -4554.0,0.5577977097633985 -4555.0,0.5576050865264568 -4556.0,0.5574125298077363 -4557.0,0.5572200395842662 -4558.0,0.5570276158330841 -4559.0,0.5568352585312351 -4560.0,0.5566429676557723 -4561.0,0.5564507431837568 -4562.0,0.5562585850922578 -4563.0,0.5560664933583521 -4564.0,0.5558744679591245 -4565.0,0.555682508871668 -4566.0,0.5554906160730831 -4567.0,0.5552987895404785 -4568.0,0.5551070292509706 -4569.0,0.5549153351816838 -4570.0,0.5547237073097504 -4571.0,0.5545321456123107 -4572.0,0.5543406500665125 -4573.0,0.5541492206495121 -4574.0,0.5539578573384732 -4575.0,0.5537665601105677 -4576.0,0.553575328942975 -4577.0,0.5533841638128828 -4578.0,0.5531930646974864 -4579.0,0.5530020315739892 -4580.0,0.5528110644196021 -4581.0,0.5526201632115444 -4582.0,0.5524293279270428 -4583.0,0.552238558543332 -4584.0,0.5520478550376547 -4585.0,0.5518572173872615 -4586.0,0.5516666455694104 -4587.0,0.5514761395613678 -4588.0,0.5512856993404076 -4589.0,0.5510953248838117 -4590.0,0.55090501616887 -4591.0,0.5507147731728798 -4592.0,0.5505245958731465 -4593.0,0.5503344842469835 -4594.0,0.5501444382717119 -4595.0,0.5499544579246605 -4596.0,0.5497645431831659 -4597.0,0.5495746940245728 -4598.0,0.5493849104262337 -4599.0,0.5491951923655085 -4600.0,0.5490055398197655 -4601.0,0.5488159527663804 -4602.0,0.5486264311827369 -4603.0,0.5484369750462263 -4604.0,0.5482475843342481 -4605.0,0.5480582590242093 -4606.0,0.5478689990935247 -4607.0,0.547679804519617 -4608.0,0.5474906752799166 -4609.0,0.5473016113518618 -4610.0,0.5471126127128987 -4611.0,0.5469236793404811 -4612.0,0.5467348112120708 -4613.0,0.5465460083051369 -4614.0,0.5463572705971569 -4615.0,0.5461685980656155 -4616.0,0.5459799906880055 -4617.0,0.5457914484418276 -4618.0,0.5456029713045898 -4619.0,0.5454145592538084 -4620.0,0.5452262122670071 -4621.0,0.5450379303217175 -4622.0,0.5448497133954789 -4623.0,0.5446615614658386 -4624.0,0.5444734745103511 -4625.0,0.5442854525065793 -4626.0,0.5440974954320934 -4627.0,0.5439096032644715 -4628.0,0.5437217759812993 -4629.0,0.5435340135601706 -4630.0,0.5433463159786867 -4631.0,0.5431586832144565 -4632.0,0.5429711152450969 -4633.0,0.5427836120482324 -4634.0,0.5425961736014951 -4635.0,0.5424087998825252 -4636.0,0.5422214908689702 -4637.0,0.5420342465384855 -4638.0,0.5418470668687343 -4639.0,0.5416599518373875 -4640.0,0.5414729014221233 -4641.0,0.5412859156006283 -4642.0,0.5410989943505964 -4643.0,0.5409121376497291 -4644.0,0.5407253454757359 -4645.0,0.5405386178063338 -4646.0,0.5403519546192476 -4647.0,0.5401653558922097 -4648.0,0.5399788216029601 -4649.0,0.5397923517292469 -4650.0,0.5396059462488254 -4651.0,0.5394196051394589 -4652.0,0.5392333283789181 -4653.0,0.5390471159449817 -4654.0,0.5388609678154359 -4655.0,0.5386748839680745 -4656.0,0.5384888643806991 -4657.0,0.538302909031119 -4658.0,0.5381170178971509 -4659.0,0.5379311909566195 -4660.0,0.5377454281873569 -4661.0,0.5375597295672031 -4662.0,0.5373740950740055 -4663.0,0.5371885246856192 -4664.0,0.5370030183799072 -4665.0,0.5368175761347397 -4666.0,0.5366321979279949 -4667.0,0.5364468837375586 -4668.0,0.5362616335413241 -4669.0,0.5360764473171924 -4670.0,0.5358913250430722 -4671.0,0.5357062666968798 -4672.0,0.5355212722565389 -4673.0,0.5353363416999811 -4674.0,0.5351514750051457 -4675.0,0.5349666721499792 -4676.0,0.534781933112436 -4677.0,0.5345972578704783 -4678.0,0.5344126464020754 -4679.0,0.5342280986852047 -4680.0,0.534043614697851 -4681.0,0.5338591944180066 -4682.0,0.5336748378236715 -4683.0,0.5334905448928534 -4684.0,0.5333063156035674 -4685.0,0.5331221499338364 -4686.0,0.5329380478616906 -4687.0,0.5327540093651683 -4688.0,0.5325700344223147 -4689.0,0.532386123011183 -4690.0,0.5322022751098341 -4691.0,0.5320184906963361 -4692.0,0.531834769748765 -4693.0,0.531651112245204 -4694.0,0.5314675181637444 -4695.0,0.5312839874824845 -4696.0,0.5311005201795306 -4697.0,0.5309171162329963 -4698.0,0.5307337756210029 -4699.0,0.5305504983216791 -4700.0,0.5303672843131615 -4701.0,0.5301841335735937 -4702.0,0.5300010460811273 -4703.0,0.5298180218139213 -4704.0,0.5296350607501422 -4705.0,0.5294521628679641 -4706.0,0.5292693281455687 -4707.0,0.529086556561145 -4708.0,0.5289038480928898 -4709.0,0.5287212027190072 -4710.0,0.5285386204177092 -4711.0,0.5283561011672147 -4712.0,0.5281736449457506 -4713.0,0.5279912517315514 -4714.0,0.5278089215028586 -4715.0,0.5276266542379219 -4716.0,0.5274444499149978 -4717.0,0.5272623085123509 -4718.0,0.5270802300082529 -4719.0,0.5268982143809833 -4720.0,0.5267162616088288 -4721.0,0.5265343716700839 -4722.0,0.5263525445430504 -4723.0,0.5261707802060376 -4724.0,0.5259890786373624 -4725.0,0.5258074398153492 -4726.0,0.5256258637183296 -4727.0,0.5254443503246432 -4728.0,0.5252628996126365 -4729.0,0.525081511560664 -4730.0,0.5249001861470871 -4731.0,0.5247189233502754 -4732.0,0.5245377231486051 -4733.0,0.5243565855204608 -4734.0,0.5241755104442338 -4735.0,0.5239944978983233 -4736.0,0.5238135478611358 -4737.0,0.5236326603110851 -4738.0,0.523451835226593 -4739.0,0.5232710725860881 -4740.0,0.5230903723680068 -4741.0,0.5229097345507929 -4742.0,0.5227291591128977 -4743.0,0.5225486460327797 -4744.0,0.5223681952889051 -4745.0,0.5221878068597475 -4746.0,0.5220074807237879 -4747.0,0.5218272168595145 -4748.0,0.5216470152454233 -4749.0,0.5214668758600175 -4750.0,0.5212867986818078 -4751.0,0.5211067836893123 -4752.0,0.5209268308610566 -4753.0,0.5207469401755735 -4754.0,0.5205671116114035 -4755.0,0.5203873451470942 -4756.0,0.5202076407612009 -4757.0,0.5200279984322861 -4758.0,0.5198484181389198 -4759.0,0.5196688998596795 -4760.0,0.5194894435731499 -4761.0,0.519310049257923 -4762.0,0.5191307168925985 -4763.0,0.5189514464557835 -4764.0,0.5187722379260922 -4765.0,0.5185930912821463 -4766.0,0.518414006502575 -4767.0,0.5182349835660147 -4768.0,0.5180560224511094 -4769.0,0.5178771231365102 -4770.0,0.5176982856008758 -4771.0,0.5175195098228721 -4772.0,0.5173407957811726 -4773.0,0.5171621434544579 -4774.0,0.5169835528214162 -4775.0,0.5168050238607427 -4776.0,0.5166265565511404 -4777.0,0.5164481508713195 -4778.0,0.5162698067999973 -4779.0,0.5160915243158988 -4780.0,0.5159133033977562 -4781.0,0.5157351440243089 -4782.0,0.515557046174304 -4783.0,0.5153790098264955 -4784.0,0.5152010349596451 -4785.0,0.5150231215525217 -4786.0,0.5148452695839015 -4787.0,0.5146674790325682 -4788.0,0.5144897498773123 -4789.0,0.5143120820969324 -4790.0,0.5141344756702337 -4791.0,0.5139569305760294 -4792.0,0.5137794467931395 -4793.0,0.5136020243003914 -4794.0,0.5134246630766199 -4795.0,0.5132473631006672 -4796.0,0.5130701243513827 -4797.0,0.5128929468076231 -4798.0,0.5127158304482523 -4799.0,0.5125387752521418 -4800.0,0.5123617811981699 -4801.0,0.5121848482652228 -4802.0,0.5120079764321936 -4803.0,0.5118311656779828 -4804.0,0.5116544159814982 -4805.0,0.5114777273216546 -4806.0,0.5113010996773747 -4807.0,0.5111245330275879 -4808.0,0.510948027351231 -4809.0,0.5107715826272483 -4810.0,0.5105951988345913 -4811.0,0.5104188759522186 -4812.0,0.5102426139590961 -4813.0,0.5100664128341971 -4814.0,0.5098902725565021 -4815.0,0.5097141931049988 -4816.0,0.5095381744586823 -4817.0,0.5093622165965548 -4818.0,0.5091863194976258 -4819.0,0.509010483140912 -4820.0,0.5088347075054376 -4821.0,0.5086589925702336 -4822.0,0.5084833383143387 -4823.0,0.5083077447167985 -4824.0,0.5081322117566661 -4825.0,0.5079567394130016 -4826.0,0.5077813276648723 -4827.0,0.5076059764913531 -4828.0,0.5074306858715257 -4829.0,0.5072554557844793 -4830.0,0.5070802862093102 -4831.0,0.5069051771251221 -4832.0,0.5067301285110254 -4833.0,0.5065551403461385 -4834.0,0.5063802126095862 -4835.0,0.5062053452805012 -4836.0,0.5060305383380229 -4837.0,0.5058557917612982 -4838.0,0.5056811055294811 -4839.0,0.5055064796217329 -4840.0,0.5053319140172218 -4841.0,0.5051574086951235 -4842.0,0.5049829636346208 -4843.0,0.5048085788149037 -4844.0,0.5046342542151694 -4845.0,0.504459989814622 -4846.0,0.5042857855924734 -4847.0,0.504111641527942 -4848.0,0.5039375576002537 -4849.0,0.5037635337886418 -4850.0,0.5035895700723463 -4851.0,0.5034156664306147 -4852.0,0.5032418228427016 -4853.0,0.5030680392878685 -4854.0,0.5028943157453846 -4855.0,0.5027206521945257 -4856.0,0.5025470486145751 -4857.0,0.5023735049848232 -4858.0,0.5022000212845675 -4859.0,0.5020265974931126 -4860.0,0.5018532335897704 -4861.0,0.5016799295538598 -4862.0,0.5015066853647068 -4863.0,0.5013335010016448 -4864.0,0.5011603764440139 -4865.0,0.500987311671162 -4866.0,0.5008143066624434 -4867.0,0.50064136139722 -4868.0,0.5004684758548608 -4869.0,0.5002956500147415 -4870.0,0.5001228838562455 -4871.0,0.499950177358763 -4872.0,0.4997775305016914 -4873.0,0.4996049432644351 -4874.0,0.4994324156264057 -4875.0,0.4992599475670221 -4876.0,0.4990875390657098 -4877.0,0.49891519010190194 -4878.0,0.49874290065503857 -4879.0,0.49857067070456673 -4880.0,0.49839850022994064 -4881.0,0.4982263892106217 -4882.0,0.4980543376260782 -4883.0,0.4978823454557857 -4884.0,0.49771041267922683 -4885.0,0.4975385392758912 -4886.0,0.4973667252252756 -4887.0,0.4971949705068838 -4888.0,0.4970232751002268 -4889.0,0.4968516389848226 -4890.0,0.4966800621401962 -4891.0,0.4965085445458797 -4892.0,0.4963370861814125 -4893.0,0.49616568702634056 -4894.0,0.4959943470602175 -4895.0,0.4958230662626035 -4896.0,0.4956518446130661 -4897.0,0.49548068209117985 -4898.0,0.4953095786765262 -4899.0,0.49513853434869387 -4900.0,0.49496754908727847 -4901.0,0.4947966228718827 -4902.0,0.49462575568211636 -4903.0,0.4944549474975961 -4904.0,0.49428419829794595 -4905.0,0.4941135080627966 -4906.0,0.493942876771786 -4907.0,0.49377230440455916 -4908.0,0.49360179094076795 -4909.0,0.49343133636007136 -4910.0,0.4932609406421355 -4911.0,0.4930906037666333 -4912.0,0.4929203257132448 -4913.0,0.49275010646165707 -4914.0,0.4925799459915643 -4915.0,0.49240984428266754 -4916.0,0.4922398013146749 -4917.0,0.49206981706730146 -4918.0,0.4918998915202693 -4919.0,0.4917300246533077 -4920.0,0.4915602164461526 -4921.0,0.4913904668785472 -4922.0,0.4912207759302416 -4923.0,0.49105114358099294 -4924.0,0.4908815698105653 -4925.0,0.49071205459872974 -4926.0,0.4905425979252644 -4927.0,0.49037319976995425 -4928.0,0.4902038601125913 -4929.0,0.4900345789329747 -4930.0,0.4898653562109104 -4931.0,0.4896961919262112 -4932.0,0.4895270860586972 -4933.0,0.4893580385881953 -4934.0,0.48918904949453934 -4935.0,0.4890201187575701 -4936.0,0.4888512463571355 -4937.0,0.48868243227309016 -4938.0,0.48851367648529587 -4939.0,0.4883449789736213 -4940.0,0.48817633971794194 -4941.0,0.48800775869814056 -4942.0,0.4878392358941065 -4943.0,0.4876707712857363 -4944.0,0.48750236485293336 -4945.0,0.487334016575608 -4946.0,0.4871657264336775 -4947.0,0.4869974944070661 -4948.0,0.4868293204757049 -4949.0,0.486661204619532 -4950.0,0.48649314681849243 -4951.0,0.48632514705253804 -4952.0,0.48615720530162776 -4953.0,0.4859893215457273 -4954.0,0.4858214957648095 -4955.0,0.4856537279388538 -4956.0,0.4854860180478468 -4957.0,0.4853183660717819 -4958.0,0.4851507719906595 -4959.0,0.4849832357844867 -4960.0,0.48481575743327787 -4961.0,0.4846483369170539 -4962.0,0.4844809742158428 -4963.0,0.4843136693096794 -4964.0,0.4841464221786055 -4965.0,0.48397923280266963 -4966.0,0.48381210116192747 -4967.0,0.48364502723644126 -4968.0,0.4834780110062804 -4969.0,0.4833110524515211 -4970.0,0.4831441515522463 -4971.0,0.48297730828854607 -4972.0,0.4828105226405172 -4973.0,0.4826437945882633 -4974.0,0.48247712411189503 -4975.0,0.48231051119152973 -4976.0,0.48214395580729175 -4977.0,0.48197745793931224 -4978.0,0.48181101756772915 -4979.0,0.4816446346726875 -4980.0,0.4814783092343389 -4981.0,0.48131204123284194 -4982.0,0.4811458306483621 -4983.0,0.4809796774610717 -4984.0,0.4808135816511498 -4985.0,0.48064754319878245 -4986.0,0.48048156208416243 -4987.0,0.48031563828748947 -4988.0,0.48014977178896995 -4989.0,0.47998396256881726 -4990.0,0.4798182106072516 -4991.0,0.4796525158845 -4992.0,0.47948687838079623 -4993.0,0.4793212980763809 -4994.0,0.47915577495150163 -4995.0,0.47899030898641254 -4996.0,0.4788249001613749 -4997.0,0.47865954845665654 -4998.0,0.47849425385253225 -4999.0,0.47832901632928365 -5000.0,0.47816383586719896 -5001.0,0.4779987124465735 -5002.0,0.47783364604770917 -5003.0,0.47766863665091475 -5004.0,0.4775036842365059 -5005.0,0.4773387887848049 -5006.0,0.47717395027614096 -5007.0,0.4770091686908501 -5008.0,0.4768444440092749 -5009.0,0.47667977621176516 -5010.0,0.4765151652786771 -5011.0,0.4763506111903738 -5012.0,0.47618611392722515 -5013.0,0.47602167346960794 -5014.0,0.4758572897979055 -5015.0,0.4756929628925081 -5016.0,0.47552869273381276 -5017.0,0.4753644793022232 -5018.0,0.47520032257815004 -5019.0,0.47503622254201044 -5020.0,0.4748721791742286 -5021.0,0.47470819245523527 -5022.0,0.47454426236546804 -5023.0,0.47438038888537126 -5024.0,0.474216571995396 -5025.0,0.47405281167600016 -5026.0,0.4738891079076482 -5027.0,0.47372546067081156 -5028.0,0.4735618699459683 -5029.0,0.47339833571360324 -5030.0,0.4732348579542079 -5031.0,0.4730714366482806 -5032.0,0.47290807177632643 -5033.0,0.47274476331885706 -5034.0,0.47258151125639103 -5035.0,0.4724183155694535 -5036.0,0.47225517623857655 -5037.0,0.4720920932442987 -5038.0,0.4719290665671654 -5039.0,0.47176609618772875 -5040.0,0.47160318208654756 -5041.0,0.4714403242441874 -5042.0,0.47127752264122047 -5043.0,0.47111477725822576 -5044.0,0.470952088075789 -5045.0,0.47078945507450237 -5046.0,0.4706268782349651 -5047.0,0.4704643575377829 -5048.0,0.4703018929635682 -5049.0,0.47013948449294024 -5050.0,0.46997713210652486 -5051.0,0.4698148357849546 -5052.0,0.4696525955088686 -5053.0,0.46949041125891294 -5054.0,0.4693282830157401 -5055.0,0.4691662107600094 -5056.0,0.4690041944723868 -5057.0,0.4688422341335449 -5058.0,0.4686803297241631 -5059.0,0.46851848122492734 -5060.0,0.46835668861653024 -5061.0,0.46819495187967114 -5062.0,0.46803327099505604 -5063.0,0.4678716459433976 -5064.0,0.4677100767054151 -5065.0,0.46754856326183447 -5066.0,0.4673871055933885 -5067.0,0.4672257036808163 -5068.0,0.4670643575048638 -5069.0,0.4669030670462837 -5070.0,0.46674183228583516 -5071.0,0.466580653204284 -5072.0,0.4664195297824028 -5073.0,0.4662584620009707 -5074.0,0.46609744984077345 -5075.0,0.4659364932826035 -5076.0,0.4657755923072599 -5077.0,0.4656147468955484 -5078.0,0.4654539570282812 -5079.0,0.46529322268627726 -5080.0,0.46513254385036223 -5081.0,0.4649719205013682 -5082.0,0.46481135262013407 -5083.0,0.4646508401875052 -5084.0,0.4644903831843336 -5085.0,0.46432998159147804 -5086.0,0.46416963538980366 -5087.0,0.4640093445601824 -5088.0,0.46384910908349264 -5089.0,0.4636889289406196 -5090.0,0.4635288041124548 -5091.0,0.46336873457989664 -5092.0,0.4632087203238499 -5093.0,0.4630487613252261 -5094.0,0.4628888575649433 -5095.0,0.46272900902392616 -5096.0,0.4625692156831058 -5097.0,0.4624094775234202 -5098.0,0.4622497945258137 -5099.0,0.46209016667123726 -5100.0,0.46193059394064845 -5101.0,0.46177107631501135 -5102.0,0.4616116137752968 -5103.0,0.46145220630248196 -5104.0,0.46129285387755076 -5105.0,0.46113355648149357 -5106.0,0.4609743140953074 -5107.0,0.4608151266999958 -5108.0,0.4606559942765689 -5109.0,0.46049691680604327 -5110.0,0.46033789426944216 -5111.0,0.4601789266477954 -5112.0,0.4600200139221393 -5113.0,0.4598611560735167 -5114.0,0.45970235308297697 -5115.0,0.45954360493157614 -5116.0,0.4593849116003767 -5117.0,0.45922627307044767 -5118.0,0.4590676893228647 -5119.0,0.4589091603387098 -5120.0,0.4587506860990717 -5121.0,0.45859226658504554 -5122.0,0.45843390177773297 -5123.0,0.4582755916582424 -5124.0,0.4581173362076884 -5125.0,0.4579591354071924 -5126.0,0.4578009892378821 -5127.0,0.4576428976808918 -5128.0,0.4574848607173624 -5129.0,0.4573268783284412 -5130.0,0.45716895049528206 -5131.0,0.4570110771990454 -5132.0,0.4568532584208979 -5133.0,0.45669549414201316 -5134.0,0.45653778434357095 -5135.0,0.4563801290067577 -5136.0,0.4562225281127661 -5137.0,0.4560649816427957 -5138.0,0.45590748957805227 -5139.0,0.4557500518997482 -5140.0,0.4555926685891023 -5141.0,0.45543533962733984 -5142.0,0.4552780649956927 -5143.0,0.4551208446753991 -5144.0,0.4549636786477039 -5145.0,0.45480656689385823 -5146.0,0.4546495093951199 -5147.0,0.45449250613275294 -5148.0,0.4543355570880282 -5149.0,0.4541786622422227 -5150.0,0.45402182157662 -5151.0,0.4538650350725102 -5152.0,0.45370830271118984 -5153.0,0.4535516244739618 -5154.0,0.45339500034213565 -5155.0,0.4532384302970271 -5156.0,0.45308191431995865 -5157.0,0.45292545239225895 -5158.0,0.45276904449526334 -5159.0,0.4526126906103134 -5160.0,0.4524563907187573 -5161.0,0.45230014480194963 -5162.0,0.45214395284125136 -5163.0,0.45198781481802996 -5164.0,0.45183173071365923 -5165.0,0.45167570050951955 -5166.0,0.45151972418699765 -5167.0,0.45136380172748664 -5168.0,0.45120793311238616 -5169.0,0.45105211832310216 -5170.0,0.4508963573410471 -5171.0,0.45074065014763987 -5172.0,0.4505849967243057 -5173.0,0.45042939705247625 -5174.0,0.45027385111358964 -5175.0,0.4501183588890904 -5176.0,0.4499629203604294 -5177.0,0.449807535509064 -5178.0,0.44965220431645786 -5179.0,0.4494969267640811 -5180.0,0.4493417028334103 -5181.0,0.4491865325059284 -5182.0,0.4490314157631246 -5183.0,0.44887635258649466 -5184.0,0.44872134295754074 -5185.0,0.4485663868577712 -5186.0,0.44841148426870103 -5187.0,0.4482566351718514 -5188.0,0.44810183954874994 -5189.0,0.4479470973809307 -5190.0,0.447792408649934 -5191.0,0.4476377733373067 -5192.0,0.44748319142460186 -5193.0,0.447328662893379 -5194.0,0.447174187725204 -5195.0,0.44701976590164916 -5196.0,0.446865397404293 -5197.0,0.4467110822147205 -5198.0,0.44655682031452293 -5199.0,0.4464026116852981 -5200.0,0.44624845630864995 -5201.0,0.4460943541661889 -5202.0,0.4459403052395317 -5203.0,0.4457863095103014 -5204.0,0.4456323669601274 -5205.0,0.4454784775706456 -5206.0,0.4453246413234981 -5207.0,0.4451708582003332 -5208.0,0.4450171281828058 -5209.0,0.4448634512525771 -5210.0,0.4447098273913144 -5211.0,0.44455625658069164 -5212.0,0.44440273880238884 -5213.0,0.44424927403809256 -5214.0,0.44409586226949543 -5215.0,0.44394250347829667 -5216.0,0.4437891976462016 -5217.0,0.443635944754922 -5218.0,0.44348274478617594 -5219.0,0.4433295977216878 -5220.0,0.44317650354318816 -5221.0,0.443023462232414 -5222.0,0.4428704737711087 -5223.0,0.4427175381410218 -5224.0,0.44256465532390926 -5225.0,0.44241182530153317 -5226.0,0.4422590480556621 -5227.0,0.4421063235680707 -5228.0,0.44195365182054025 -5229.0,0.44180103279485805 -5230.0,0.4416484664728177 -5231.0,0.44149595283621923 -5232.0,0.44134349186686883 -5233.0,0.441191083546579 -5234.0,0.4410387278571686 -5235.0,0.44088642478046264 -5236.0,0.4407341742982925 -5237.0,0.44058197639249586 -5238.0,0.44042983104491656 -5239.0,0.4402777382374048 -5240.0,0.44012569795181694 -5241.0,0.4399737101700158 -5242.0,0.4398217748738703 -5243.0,0.43966989204525564 -5244.0,0.43951806166605334 -5245.0,0.4393662837181511 -5246.0,0.43921455818344296 -5247.0,0.4390628850438291 -5248.0,0.4389112642812162 -5249.0,0.4387596958775168 -5250.0,0.43860817981465 -5251.0,0.43845671607454095 -5252.0,0.43830530463912126 -5253.0,0.4381539454903286 -5254.0,0.43800263861010685 -5255.0,0.4378513839804063 -5256.0,0.4377001815831833 -5257.0,0.4375490314004006 -5258.0,0.43739793341402705 -5259.0,0.4372468876060377 -5260.0,0.4370958939584139 -5261.0,0.4369449524531433 -5262.0,0.43679406307221963 -5263.0,0.43664322579764286 -5264.0,0.4364924406114192 -5265.0,0.43634170749556106 -5266.0,0.4361910264320872 -5267.0,0.4360403974030223 -5268.0,0.43588982039039753 -5269.0,0.4357392953762501 -5270.0,0.4355888223426235 -5271.0,0.43543840127156747 -5272.0,0.43528803214513767 -5273.0,0.4351377149453963 -5274.0,0.4349874496544116 -5275.0,0.434837236254258 -5276.0,0.4346870747270162 -5277.0,0.4345369650547729 -5278.0,0.4343869072196212 -5279.0,0.4342369012036603 -5280.0,0.4340869469889955 -5281.0,0.43393704455773846 -5282.0,0.4337871938920069 -5283.0,0.43363739497392456 -5284.0,0.4334876477856217 -5285.0,0.43333795230923455 -5286.0,0.4331883085269055 -5287.0,0.4330387164207831 -5288.0,0.4328891759730222 -5289.0,0.4327396871657836 -5290.0,0.43259024998123446 -5291.0,0.43244086440154794 -5292.0,0.43229153040890356 -5293.0,0.43214224798548667 -5294.0,0.43199301711348914 -5295.0,0.4318438377751087 -5296.0,0.43169470995254944 -5297.0,0.43154563362802145 -5298.0,0.43139660878374103 -5299.0,0.43124763540193056 -5300.0,0.4310987134648186 -5301.0,0.4309498429546399 -5302.0,0.4308010238536353 -5303.0,0.43065225614405167 -5304.0,0.4305035398081422 -5305.0,0.4303548748281661 -5306.0,0.43020626118638866 -5307.0,0.43005769886508144 -5308.0,0.42990918784652205 -5309.0,0.4297607281129941 -5310.0,0.4296123196467875 -5311.0,0.4294639624301982 -5312.0,0.42931565644552816 -5313.0,0.42916740167508577 -5314.0,0.42901919810118516 -5315.0,0.42887104570614676 -5316.0,0.4287229444722971 -5317.0,0.4285748943819687 -5318.0,0.42842689541750034 -5319.0,0.42827894756123686 -5320.0,0.42813105079552904 -5321.0,0.42798320510273397 -5322.0,0.42783541046521467 -5323.0,0.4276876668653404 -5324.0,0.42753997428548635 -5325.0,0.4273923327080339 -5326.0,0.42724474211537045 -5327.0,0.4270972024898896 -5328.0,0.4269497138139909 -5329.0,0.42680227607008 -5330.0,0.42665488924056866 -5331.0,0.4265075533078747 -5332.0,0.42636026825442214 -5333.0,0.42621303406264077 -5334.0,0.4260658507149668 -5335.0,0.42591871819384214 -5336.0,0.42577163648171507 -5337.0,0.4256246055610398 -5338.0,0.42547762541427664 -5339.0,0.42533069602389184 -5340.0,0.4251838173723579 -5341.0,0.4250369894421532 -5342.0,0.42489021221576223 -5343.0,0.4247434856756756 -5344.0,0.42459680980438985 -5345.0,0.4244501845844076 -5346.0,0.42430360999823763 -5347.0,0.4241570860283945 -5348.0,0.4240106126573992 -5349.0,0.4238641898677783 -5350.0,0.4237178176420647 -5351.0,0.4235714959627973 -5352.0,0.423425224812521 -5353.0,0.42327900417378667 -5354.0,0.42313283402915125 -5355.0,0.4229867143611778 -5356.0,0.4228406451524352 -5357.0,0.42269462638549843 -5358.0,0.42254865804294867 -5359.0,0.42240274010737283 -5360.0,0.422256872561364 -5361.0,0.4221110553875213 -5362.0,0.4219652885684497 -5363.0,0.4218195720867604 -5364.0,0.4216739059250704 -5365.0,0.42152829006600284 -5366.0,0.4213827244921867 -5367.0,0.42123720918625723 -5368.0,0.4210917441308554 -5369.0,0.42094632930862835 -5370.0,0.4208009647022291 -5371.0,0.4206556502943168 -5372.0,0.42051038606755636 -5373.0,0.420365172004619 -5374.0,0.42022000808818155 -5375.0,0.42007489430092715 -5376.0,0.4199298306255447 -5377.0,0.4197848170447292 -5378.0,0.4196398535411816 -5379.0,0.41949494009760885 -5380.0,0.4193500766967237 -5381.0,0.4192052633212451 -5382.0,0.4190604999538979 -5383.0,0.41891578657741274 -5384.0,0.4187711231745265 -5385.0,0.41862650972798193 -5386.0,0.41848194622052753 -5387.0,0.41833743263491807 -5388.0,0.41819296895391406 -5389.0,0.4180485551602821 -5390.0,0.4179041912367946 -5391.0,0.4177598771662301 -5392.0,0.4176156129313729 -5393.0,0.4174713985150133 -5394.0,0.4173272338999477 -5395.0,0.4171831190689782 -5396.0,0.417039054004913 -5397.0,0.4168950386905661 -5398.0,0.4167510731087577 -5399.0,0.41660715724231356 -5400.0,0.4164632910740657 -5401.0,0.4163194745868519 -5402.0,0.4161757077635159 -5403.0,0.4160319905869074 -5404.0,0.4158883230398819 -5405.0,0.415744705105301 -5406.0,0.41560113676603205 -5407.0,0.4154576180049484 -5408.0,0.41531414880492934 -5409.0,0.4151707291488601 -5410.0,0.41502735901963167 -5411.0,0.4148840384001411 -5412.0,0.41474076727329123 -5413.0,0.4145975456219909 -5414.0,0.4144543734291548 -5415.0,0.4143112506777035 -5416.0,0.41416817735056355 -5417.0,0.4140251534306673 -5418.0,0.4138821789009531 -5419.0,0.4137392537443651 -5420.0,0.4135963779438533 -5421.0,0.4134535514823738 -5422.0,0.41331077434288827 -5423.0,0.4131680465083646 -5424.0,0.4130253679617763 -5425.0,0.41288273868610287 -5426.0,0.4127401586643298 -5427.0,0.41259762787944815 -5428.0,0.4124551463144551 -5429.0,0.41231271395235375 -5430.0,0.41217033077615284 -5431.0,0.4120279967688671 -5432.0,0.41188571191351714 -5433.0,0.41174347619312945 -5434.0,0.4116012895907363 -5435.0,0.41145915208937583 -5436.0,0.4113170636720922 -5437.0,0.41117502432193515 -5438.0,0.4110330340219605 -5439.0,0.4108910927552299 -5440.0,0.4107492005048107 -5441.0,0.4106073572537761 -5442.0,0.4104655629852055 -5443.0,0.4103238176821836 -5444.0,0.4101821213278014 -5445.0,0.41004047390515547 -5446.0,0.4098988753973484 -5447.0,0.4097573257874884 -5448.0,0.40961582505868976 -5449.0,0.40947437319407237 -5450.0,0.40933297017676207 -5451.0,0.40919161598989057 -5452.0,0.40905031061659525 -5453.0,0.40890905404001954 -5454.0,0.4087678462433124 -5455.0,0.4086266872096289 -5456.0,0.4084855769221298 -5457.0,0.4083445153639816 -5458.0,0.4082035025183567 -5459.0,0.40806253836843326 -5460.0,0.40792162289739536 -5461.0,0.4077807560884328 -5462.0,0.4076399379247411 -5463.0,0.4074991683895218 -5464.0,0.40735844746598215 -5465.0,0.40721777513733504 -5466.0,0.40707715138679934 -5467.0,0.4069365761975997 -5468.0,0.40679604955296644 -5469.0,0.40665557143613584 -5470.0,0.40651514183034987 -5471.0,0.40637476071885625 -5472.0,0.4062344280849086 -5473.0,0.40609414391176624 -5474.0,0.4059539081826943 -5475.0,0.4058137208809636 -5476.0,0.40567358198985093 -5477.0,0.4055334914926387 -5478.0,0.40539344937261507 -5479.0,0.40525345561307413 -5480.0,0.40511351019731556 -5481.0,0.404973613108645 -5482.0,0.4048337643303736 -5483.0,0.4046939638458186 -5484.0,0.40455421163830274 -5485.0,0.40441450769115456 -5486.0,0.4042748519877084 -5487.0,0.4041352445113044 -5488.0,0.4039956852452884 -5489.0,0.403856174173012 -5490.0,0.40371671127783254 -5491.0,0.40357729654311303 -5492.0,0.40343792995222244 -5493.0,0.4032986114885353 -5494.0,0.4031593411354319 -5495.0,0.40302011887629835 -5496.0,0.40288094469452645 -5497.0,0.40274181857351365 -5498.0,0.40260274049666334 -5499.0,0.40246371044738444 -5500.0,0.4023247284090917 -5501.0,0.4021857943652056 -5502.0,0.40204690829915224 -5503.0,0.40190807019436364 -5504.0,0.40176928003427737 -5505.0,0.4016305378023367 -5506.0,0.40149184348199085 -5507.0,0.40135319705669453 -5508.0,0.4012145985099082 -5509.0,0.40107604782509804 -5510.0,0.4009375449857361 -5511.0,0.40079908997529984 -5512.0,0.4006606827772726 -5513.0,0.4005223233751436 -5514.0,0.40038401175240734 -5515.0,0.4002457478925644 -5516.0,0.40010753177912084 -5517.0,0.39996936339558853 -5518.0,0.3998312427254849 -5519.0,0.3996931697523333 -5520.0,0.3995551444596625 -5521.0,0.3994171668310072 -5522.0,0.39927923684990757 -5523.0,0.3991413544999097 -5524.0,0.39900351976456505 -5525.0,0.3988657326274311 -5526.0,0.3987279930720708 -5527.0,0.3985903010820528 -5528.0,0.3984526566409515 -5529.0,0.3983150597323468 -5530.0,0.39817751033982457 -5531.0,0.398040008446976 -5532.0,0.39790255403739827 -5533.0,0.39776514709469396 -5534.0,0.39762778760247147 -5535.0,0.39749047554434486 -5536.0,0.39735321090393366 -5537.0,0.3972159936648633 -5538.0,0.3970788238107648 -5539.0,0.39694170132527473 -5540.0,0.3968046261920354 -5541.0,0.39666759839469473 -5542.0,0.3965306179169063 -5543.0,0.3963936847423294 -5544.0,0.3962567988546288 -5545.0,0.3961199602374751 -5546.0,0.3959831688745444 -5547.0,0.39584642474951853 -5548.0,0.3957097278460849 -5549.0,0.39557307814793646 -5550.0,0.39543647563877204 -5551.0,0.39529992030229594 -5552.0,0.39516341212221806 -5553.0,0.39502695108225394 -5554.0,0.3948905371661249 -5555.0,0.39475417035755755 -5556.0,0.39461785064028454 -5557.0,0.39448157799804373 -5558.0,0.3943453524145789 -5559.0,0.39420917387363935 -5560.0,0.39407304235897994 -5561.0,0.39393695785436117 -5562.0,0.39380092034354913 -5563.0,0.39366492981031553 -5564.0,0.39352898623843774 -5565.0,0.39339308961169867 -5566.0,0.39325723991388684 -5567.0,0.3931214371287963 -5568.0,0.3929856812402269 -5569.0,0.3928499722319839 -5570.0,0.39271431008787816 -5571.0,0.3925786947917262 -5572.0,0.3924431263273501 -5573.0,0.39230760467857756 -5574.0,0.3921721298292418 -5575.0,0.39203670176318167 -5576.0,0.3919013204642416 -5577.0,0.39176598591627154 -5578.0,0.3916306981031271 -5579.0,0.3914954570086695 -5580.0,0.3913602626167654 -5581.0,0.3912251149112871 -5582.0,0.3910900138761124 -5583.0,0.3909549594951248 -5584.0,0.39081995175221335 -5585.0,0.3906849906312725 -5586.0,0.3905500761162024 -5587.0,0.3904152081909088 -5588.0,0.39028038683930283 -5589.0,0.3901456120453014 -5590.0,0.3900108837928268 -5591.0,0.3898762020658069 -5592.0,0.38974156684817524 -5593.0,0.3896069781238708 -5594.0,0.389472435876838 -5595.0,0.3893379400910271 -5596.0,0.3892034907503936 -5597.0,0.38906908783889876 -5598.0,0.3889347313405093 -5599.0,0.38880042123919745 -5600.0,0.38866615751894096 -5601.0,0.38853194016372317 -5602.0,0.3883977691575329 -5603.0,0.38826364448436457 -5604.0,0.3881295661282181 -5605.0,0.38799553407309884 -5606.0,0.38786154830301783 -5607.0,0.38772760880199153 -5608.0,0.3875937155540419 -5609.0,0.3874598685431964 -5610.0,0.38732606775348816 -5611.0,0.3871923131689557 -5612.0,0.387058604773643 -5613.0,0.3869249425515997 -5614.0,0.3867913264868809 -5615.0,0.38665775656354706 -5616.0,0.38652423276566433 -5617.0,0.38639075507730436 -5618.0,0.3862573234825441 -5619.0,0.38612393796546624 -5620.0,0.3859905985101588 -5621.0,0.3858573051007154 -5622.0,0.3857240577212351 -5623.0,0.3855908563558224 -5624.0,0.3854577009885875 -5625.0,0.38532459160364574 -5626.0,0.38519152818511826 -5627.0,0.3850585107171315 -5628.0,0.3849255391838175 -5629.0,0.3847926135693137 -5630.0,0.3846597338577631 -5631.0,0.38452690003331397 -5632.0,0.38439411208012036 -5633.0,0.38426136998234156 -5634.0,0.3841286737241424 -5635.0,0.38399602328969323 -5636.0,0.3838634186631698 -5637.0,0.3837308598287534 -5638.0,0.3835983467706306 -5639.0,0.38346587947299365 -5640.0,0.38333345792004014 -5641.0,0.38320108209597314 -5642.0,0.38306875198500123 -5643.0,0.3829364675713383 -5644.0,0.3828042288392039 -5645.0,0.38267203577282277 -5646.0,0.3825398883564254 -5647.0,0.3824077865742474 -5648.0,0.38227573041053015 -5649.0,0.3821437198495202 -5650.0,0.38201175487546973 -5651.0,0.3818798354726362 -5652.0,0.38174796162528263 -5653.0,0.3816161333176774 -5654.0,0.38148435053409446 -5655.0,0.38135261325881303 -5656.0,0.38122092147611775 -5657.0,0.3810892751702988 -5658.0,0.3809576743256517 -5659.0,0.3808261189264775 -5660.0,0.38069460895708257 -5661.0,0.3805631444017787 -5662.0,0.3804317252448831 -5663.0,0.38030035147071856 -5664.0,0.380169023063613 -5665.0,0.38003774000789997 -5666.0,0.37990650228791834 -5667.0,0.3797753098880124 -5668.0,0.3796441627925319 -5669.0,0.3795130609858319 -5670.0,0.3793820044522729 -5671.0,0.3792509931762208 -5672.0,0.37912002714204696 -5673.0,0.3789891063341281 -5674.0,0.37885823073684627 -5675.0,0.37872740033458896 -5676.0,0.37859661511174914 -5677.0,0.378465875052725 -5678.0,0.37833518014192025 -5679.0,0.3782045303637439 -5680.0,0.37807392570261045 -5681.0,0.37794336614293966 -5682.0,0.37781285166915674 -5683.0,0.3776823822656923 -5684.0,0.3775519579169822 -5685.0,0.37742157860746783 -5686.0,0.3772912443215959 -5687.0,0.37716095504381847 -5688.0,0.37703071075859296 -5689.0,0.37690051145038217 -5690.0,0.37677035710365436 -5691.0,0.3766402477028829 -5692.0,0.3765101832325468 -5693.0,0.37638016367713034 -5694.0,0.3762501890211231 -5695.0,0.37612025924902004 -5696.0,0.3759903743453215 -5697.0,0.37586053429453314 -5698.0,0.375730739081166 -5699.0,0.3756009886897364 -5700.0,0.3754712831047662 -5701.0,0.3753416223107824 -5702.0,0.3752120062923173 -5703.0,0.37508243503390887 -5704.0,0.37495290852010005 -5705.0,0.3748234267354393 -5706.0,0.37469398966448036 -5707.0,0.37456459729178243 -5708.0,0.3744352496019099 -5709.0,0.37430594657943245 -5710.0,0.37417668820892525 -5711.0,0.3740474744749687 -5712.0,0.3739183053621486 -5713.0,0.37378918085505597 -5714.0,0.37366010093828717 -5715.0,0.37353106559644395 -5716.0,0.3734020748141333 -5717.0,0.3732731285759676 -5718.0,0.37314422686656445 -5719.0,0.3730153696705469 -5720.0,0.37288655697254314 -5721.0,0.3727577887571868 -5722.0,0.37262906500911674 -5723.0,0.37250038571297717 -5724.0,0.3723717508534176 -5725.0,0.37224316041509287 -5726.0,0.37211461438266297 -5727.0,0.37198611274079335 -5728.0,0.3718576554741548 -5729.0,0.37172924256742307 -5730.0,0.37160087400527964 -5731.0,0.371472549772411 -5732.0,0.3713442698535091 -5733.0,0.37121603423327093 -5734.0,0.371087842896399 -5735.0,0.370959695827601 -5736.0,0.37083159301158997 -5737.0,0.37070353443308407 -5738.0,0.37057552007680694 -5739.0,0.37044754992748735 -5740.0,0.3703196239698594 -5741.0,0.3701917421886625 -5742.0,0.37006390456864124 -5743.0,0.36993611109454555 -5744.0,0.3698083617511306 -5745.0,0.36968065652315674 -5746.0,0.3695529953953898 -5747.0,0.3694253783526007 -5748.0,0.3692978053795655 -5749.0,0.369170276461066 -5750.0,0.36904279158188863 -5751.0,0.3689153507268255 -5752.0,0.36878795388067387 -5753.0,0.3686606010282361 -5754.0,0.36853329215432007 -5755.0,0.3684060272437387 -5756.0,0.3682788062813102 -5757.0,0.36815162925185807 -5758.0,0.36802449614021093 -5759.0,0.3678974069312028 -5760.0,0.3677703616096729 -5761.0,0.36764336016046556 -5762.0,0.36751640256843054 -5763.0,0.3673894888184226 -5764.0,0.36726261889530204 -5765.0,0.36713579278393393 -5766.0,0.3670090104691891 -5767.0,0.36688227193594314 -5768.0,0.36675557716907725 -5769.0,0.36662892615347753 -5770.0,0.3665023188740355 -5771.0,0.3663757553156478 -5772.0,0.3662492354632164 -5773.0,0.3661227593016483 -5774.0,0.3659963268158559 -5775.0,0.3658699379907566 -5776.0,0.3657435928112733 -5777.0,0.3656172912623339 -5778.0,0.36549103332887145 -5779.0,0.3653648189958244 -5780.0,0.36523864824813623 -5781.0,0.36511252107075576 -5782.0,0.36498643744863685 -5783.0,0.36486039736673875 -5784.0,0.36473440081002567 -5785.0,0.36460844776346724 -5786.0,0.36448253821203813 -5787.0,0.3643566721407183 -5788.0,0.3642308495344928 -5789.0,0.36410507037835194 -5790.0,0.36397933465729115 -5791.0,0.3638536423563111 -5792.0,0.36372799346041756 -5793.0,0.3636023879546217 -5794.0,0.3634768258239394 -5795.0,0.3633513070533923 -5796.0,0.3632258316280068 -5797.0,0.3631003995328146 -5798.0,0.36297501075285266 -5799.0,0.3628496652731628 -5800.0,0.36272436307879247 -5801.0,0.36259910415479385 -5802.0,0.3624738884862246 -5803.0,0.3623487160581472 -5804.0,0.3622235868556298 -5805.0,0.362098500863745 -5806.0,0.36197345806757136 -5807.0,0.3618484584521919 -5808.0,0.36172350200269526 -5809.0,0.36159858870417483 -5810.0,0.36147371854172966 -5811.0,0.36134889150046334 -5812.0,0.3612241075654852 -5813.0,0.3610993667219092 -5814.0,0.3609746689548547 -5815.0,0.36085001424944635 -5816.0,0.36072540259081354 -5817.0,0.36060083396409115 -5818.0,0.3604763083544189 -5819.0,0.360351825746942 -5820.0,0.3602273861268104 -5821.0,0.3601029894791795 -5822.0,0.3599786357892095 -5823.0,0.35985432504206616 -5824.0,0.35973005722291984 -5825.0,0.3596058323169466 -5826.0,0.359481650309327 -5827.0,0.3593575111852473 -5828.0,0.35923341492989835 -5829.0,0.35910936152847667 -5830.0,0.35898535096618334 -5831.0,0.3588613832282249 -5832.0,0.3587374582998129 -5833.0,0.358613576166164 -5834.0,0.35848973681250007 -5835.0,0.3583659402240478 -5836.0,0.3582421863860392 -5837.0,0.3581184752837114 -5838.0,0.3579948069023066 -5839.0,0.3578711812270719 -5840.0,0.35774759824325986 -5841.0,0.3576240579361278 -5842.0,0.3575005602909383 -5843.0,0.35737710529295896 -5844.0,0.3572536929274626 -5845.0,0.35713032317972687 -5846.0,0.35700699603503483 -5847.0,0.35688371147867426 -5848.0,0.35676046949593837 -5849.0,0.3566372700721252 -5850.0,0.35651411319253806 -5851.0,0.3563909988424851 -5852.0,0.3562679270072797 -5853.0,0.3561448976722404 -5854.0,0.3560219108226906 -5855.0,0.3558989664439589 -5856.0,0.3557760645213789 -5857.0,0.35565320504028936 -5858.0,0.3555303879860339 -5859.0,0.35540761334396154 -5860.0,0.355284881099426 -5861.0,0.35516219123778636 -5862.0,0.35503954374440644 -5863.0,0.3549169386046554 -5864.0,0.3547943758039073 -5865.0,0.3546718553275414 -5866.0,0.3545493771609417 -5867.0,0.35442694128949764 -5868.0,0.35430454769860337 -5869.0,0.3541821963736584 -5870.0,0.3540598873000669 -5871.0,0.35393762046323834 -5872.0,0.35381539584858734 -5873.0,0.35369321344153315 -5874.0,0.3535710732275006 -5875.0,0.3534489751919189 -5876.0,0.353326919320223 -5877.0,0.3532049055978522 -5878.0,0.3530829340102514 -5879.0,0.35296100454287016 -5880.0,0.3528391171811633 -5881.0,0.3527172719105903 -5882.0,0.3525954687166162 -5883.0,0.35247370758471047 -5884.0,0.3523519885003482 -5885.0,0.35223031144900896 -5886.0,0.3521086764161777 -5887.0,0.35198708338734414 -5888.0,0.3518655323480032 -5889.0,0.3517440232836547 -5890.0,0.3516225561798035 -5891.0,0.35150113102195946 -5892.0,0.3513797477956374 -5893.0,0.3512584064863573 -5894.0,0.3511371070796439 -5895.0,0.3510158495610272 -5896.0,0.35089463391604186 -5897.0,0.350773460130228 -5898.0,0.35065232818913017 -5899.0,0.3505312380782985 -5900.0,0.3504101897832876 -5901.0,0.35028918328965747 -5902.0,0.35016821858297276 -5903.0,0.35004729564880344 -5904.0,0.34992641447272405 -5905.0,0.34980557504031456 -5906.0,0.3496847773371596 -5907.0,0.34956402134884895 -5908.0,0.34944330706097715 -5909.0,0.349322634459144 -5910.0,0.34920200352895425 -5911.0,0.34908141425601724 -5912.0,0.3489608666259478 -5913.0,0.34884036062436524 -5914.0,0.3487198962368943 -5915.0,0.34859947344916425 -5916.0,0.34847909224680973 -5917.0,0.34835875261546995 -5918.0,0.3482384545407894 -5919.0,0.3481181980084173 -5920.0,0.3479979830040081 -5921.0,0.3478778095132208 -5922.0,0.34775767752171977 -5923.0,0.34763758701517394 -5924.0,0.3475175379792576 -5925.0,0.3473975303996496 -5926.0,0.34727756426203404 -5927.0,0.3471576395520998 -5928.0,0.3470377562555406 -5929.0,0.34691791435805547 -5930.0,0.346798113845348 -5931.0,0.3466783547031269 -5932.0,0.34655863691710576 -5933.0,0.34643896047300315 -5934.0,0.3463193253565425 -5935.0,0.34619973155345224 -5936.0,0.3460801790494657 -5937.0,0.34596066783032114 -5938.0,0.3458411978817617 -5939.0,0.3457217691895356 -5940.0,0.3456023817393958 -5941.0,0.3454830355171002 -5942.0,0.3453637305084117 -5943.0,0.3452444666990981 -5944.0,0.34512524407493206 -5945.0,0.34500606262169126 -5946.0,0.3448869223251581 -5947.0,0.34476782317112015 -5948.0,0.34464876514536974 -5949.0,0.34452974823370397 -5950.0,0.34441077242192514 -5951.0,0.3442918376958402 -5952.0,0.34417294404126125 -5953.0,0.3440540914440049 -5954.0,0.3439352798898932 -5955.0,0.34381650936475255 -5956.0,0.34369777985441463 -5957.0,0.34357909134471576 -5958.0,0.34346044382149743 -5959.0,0.34334183727060574 -5960.0,0.34322327167789185 -5961.0,0.3431047470292116 -5962.0,0.34298626331042614 -5963.0,0.34286782050740094 -5964.0,0.34274941860600683 -5965.0,0.3426310575921192 -5966.0,0.34251273745161853 -5967.0,0.3423944581703901 -5968.0,0.342276219734324 -5969.0,0.3421580221293153 -5970.0,0.3420398653412638 -5971.0,0.34192174935607433 -5972.0,0.34180367415965646 -5973.0,0.3416856397379248 -5974.0,0.3415676460767985 -5975.0,0.34144969316220203 -5976.0,0.3413317809800642 -5977.0,0.34121390951631925 -5978.0,0.3410960787569056 -5979.0,0.34097828868776725 -5980.0,0.3408605392948525 -5981.0,0.3407428305641148 -5982.0,0.34062516248151226 -5983.0,0.34050753503300807 -5984.0,0.34038994820456997 -5985.0,0.3402724019821708 -5986.0,0.3401548963517882 -5987.0,0.3400374312994045 -5988.0,0.3399200068110071 -5989.0,0.339802622872588 -5990.0,0.3396852794701442 -5991.0,0.33956797658967747 -5992.0,0.3394507142171945 -5993.0,0.33933349233870663 -5994.0,0.33921631094023025 -5995.0,0.3390991700077864 -5996.0,0.33898206952740106 -5997.0,0.33886500948510495 -5998.0,0.3387479898669338 -5999.0,0.33863101065892776 -6000.0,0.3385140718471324 -6001.0,0.33839717341759745 -6002.0,0.33828031535637804 -6003.0,0.33816349764953363 -6004.0,0.3380467202831288 -6005.0,0.33792998324323303 -6006.0,0.3378132865159202 -6007.0,0.3376966300872694 -6008.0,0.3375800139433643 -6009.0,0.33746343807029344 -6010.0,0.33734690245415017 -6011.0,0.3372304070810327 -6012.0,0.3371139519370439 -6013.0,0.3369975370082916 -6014.0,0.3368811622808882 -6015.0,0.3367648277409513 -6016.0,0.33664853337460277 -6017.0,0.33653227916796974 -6018.0,0.33641606510718375 -6019.0,0.3362998911783815 -6020.0,0.3361837573677041 -6021.0,0.33606766366129787 -6022.0,0.33595161004531343 -6023.0,0.3358355965059065 -6024.0,0.33571962302923763 -6025.0,0.3356036896014719 -6026.0,0.3354877962087794 -6027.0,0.33537194283733474 -6028.0,0.3352561294733177 -6029.0,0.33514035610291226 -6030.0,0.3350246227123078 -6031.0,0.33490892928769805 -6032.0,0.3347932758152816 -6033.0,0.3346776622812619 -6034.0,0.33456208867184706 -6035.0,0.33444655497325 -6036.0,0.33433106117168837 -6037.0,0.3342156072533846 -6038.0,0.33410019320456597 -6039.0,0.33398481901146426 -6040.0,0.33386948466031635 -6041.0,0.3337541901373635 -6042.0,0.3336389354288521 -6043.0,0.3335237205210331 -6044.0,0.33340854540016196 -6045.0,0.3332934100524994 -6046.0,0.3331783144643105 -6047.0,0.3330632586218652 -6048.0,0.3329482425114382 -6049.0,0.33283326611930886 -6050.0,0.33271832943176133 -6051.0,0.33260343243508467 -6052.0,0.3324885751155722 -6053.0,0.33237375745952263 -6054.0,0.3322589794532388 -6055.0,0.33214424108302865 -6056.0,0.3320295423352046 -6057.0,0.33191488319608414 -6058.0,0.331800263651989 -6059.0,0.33168568368924617 -6060.0,0.3315711432941869 -6061.0,0.33145664245314743 -6062.0,0.3313421811524687 -6063.0,0.33122775937849624 -6064.0,0.3311133771175804 -6065.0,0.33099903435607614 -6066.0,0.33088473108034333 -6067.0,0.33077046727674625 -6068.0,0.33065624293165424 -6069.0,0.33054205803144104 -6070.0,0.3304279125624853 -6071.0,0.33031380651117026 -6072.0,0.33019973986388396 -6073.0,0.33008571260701897 -6074.0,0.3299717247269728 -6075.0,0.32985777621014734 -6076.0,0.32974386704294956 -6077.0,0.3296299972117908 -6078.0,0.32951616670308737 -6079.0,0.3294023755032599 -6080.0,0.32928862359873406 -6081.0,0.32917491097594015 -6082.0,0.3290612376213129 -6083.0,0.3289476035212921 -6084.0,0.3288340086623218 -6085.0,0.32872045303085123 -6086.0,0.32860693661333384 -6087.0,0.32849345939622804 -6088.0,0.32838002136599675 -6089.0,0.32826662250910776 -6090.0,0.3281532628120332 -6091.0,0.32803994226125033 -6092.0,0.3279266608432407 -6093.0,0.3278134185444907 -6094.0,0.3277002153514913 -6095.0,0.3275870512507383 -6096.0,0.32747392622873184 -6097.0,0.32736084027197715 -6098.0,0.32724779336698373 -6099.0,0.32713478550026603 -6100.0,0.32702181665834307 -6101.0,0.3269088868277383 -6102.0,0.3267959959949802 -6103.0,0.3266831441466016 -6104.0,0.3265703312691402 -6105.0,0.3264575573491381 -6106.0,0.3263448223731424 -6107.0,0.32623212632770443 -6108.0,0.3261194691993805 -6109.0,0.32600685097473137 -6110.0,0.32589427164032264 -6111.0,0.3257817311827242 -6112.0,0.32566922958851097 -6113.0,0.3255567668442622 -6114.0,0.3254443429365621 -6115.0,0.32533195785199903 -6116.0,0.32521961157716656 -6117.0,0.3251073040986624 -6118.0,0.32499503540308916 -6119.0,0.324882805477054 -6120.0,0.3247706143071687 -6121.0,0.32465846188004976 -6122.0,0.32454634818231803 -6123.0,0.3244342732005993 -6124.0,0.3243222369215238 -6125.0,0.32421023933172644 -6126.0,0.32409828041784666 -6127.0,0.3239863601665287 -6128.0,0.3238744785644212 -6129.0,0.32376263559817753 -6130.0,0.32365083125445554 -6131.0,0.323539065519918 -6132.0,0.32342733838123183 -6133.0,0.323315649825069 -6134.0,0.3232039998381057 -6135.0,0.32309238840702315 -6136.0,0.3229808155185066 -6137.0,0.3228692811592464 -6138.0,0.3227577853159374 -6139.0,0.32264632797527876 -6140.0,0.3225349091239746 -6141.0,0.3224235287487333 -6142.0,0.3223121868362682 -6143.0,0.32220088337329683 -6144.0,0.3220896183465416 -6145.0,0.32197839174272935 -6146.0,0.32186720354859166 -6147.0,0.3217560537508644 -6148.0,0.32164494233628843 -6149.0,0.32153386929160876 -6150.0,0.3214228346035754 -6151.0,0.3213118382589425 -6152.0,0.3212008802444692 -6153.0,0.32108996054691885 -6154.0,0.32097907915305973 -6155.0,0.32086823604966425 -6156.0,0.32075743122350986 -6157.0,0.32064666466137826 -6158.0,0.3205359363500558 -6159.0,0.32042524627633345 -6160.0,0.3203145944270066 -6161.0,0.3202039807888754 -6162.0,0.32009340534874436 -6163.0,0.3199828680934227 -6164.0,0.31987236900972404 -6165.0,0.3197619080844668 -6166.0,0.3196514853044736 -6167.0,0.31954110065657204 -6168.0,0.3194307541275938 -6169.0,0.31932044570437557 -6170.0,0.3192101753737581 -6171.0,0.3190999431225872 -6172.0,0.3189897489377128 -6173.0,0.3188795928059896 -6174.0,0.31876947471427675 -6175.0,0.318659394649438 -6176.0,0.31854935259834155 -6177.0,0.3184393485478602 -6178.0,0.3183293824848714 -6179.0,0.31821945439625676 -6180.0,0.3181095642689029 -6181.0,0.3179997120897005 -6182.0,0.3178898978455452 -6183.0,0.31778012152333684 -6184.0,0.31767038310997997 -6185.0,0.3175606825923835 -6186.0,0.3174510199574611 -6187.0,0.31734139519213067 -6188.0,0.3172318082833149 -6189.0,0.31712225921794074 -6190.0,0.31701274798294 -6191.0,0.3169032745652485 -6192.0,0.3167938389518071 -6193.0,0.3166844411295608 -6194.0,0.3165750810854593 -6195.0,0.3164657588064567 -6196.0,0.31635647427951163 -6197.0,0.3162472274915874 -6198.0,0.31613801842965145 -6199.0,0.3160288470806761 -6200.0,0.3159197134316379 -6201.0,0.31581061746951805 -6202.0,0.31570155918130216 -6203.0,0.31559253855398045 -6204.0,0.3154835555745474 -6205.0,0.31537461023000235 -6206.0,0.3152657025073487 -6207.0,0.31515683239359477 -6208.0,0.3150479998757529 -6209.0,0.3149392049408404 -6210.0,0.31483044757587864 -6211.0,0.3147217277678938 -6212.0,0.31461304550391633 -6213.0,0.31450440077098124 -6214.0,0.314395793556128 -6215.0,0.31428722384640057 -6216.0,0.31417869162884743 -6217.0,0.31407019689052135 -6218.0,0.31396173961847984 -6219.0,0.31385331979978454 -6220.0,0.313744937421502 -6221.0,0.31363659247070286 -6222.0,0.3135282849344624 -6223.0,0.3134200147998602 -6224.0,0.3133117820539806 -6225.0,0.31320358668391207 -6226.0,0.31309542867674783 -6227.0,0.3129873080195853 -6228.0,0.3128792246995266 -6229.0,0.312771178703678 -6230.0,0.3126631700191506 -6231.0,0.3125551986330596 -6232.0,0.3124472645325248 -6233.0,0.3123393677046706 -6234.0,0.3122315081366255 -6235.0,0.31212368581552286 -6236.0,0.31201590072850005 -6237.0,0.31190815286269924 -6238.0,0.31180044220526676 -6239.0,0.3116927687433537 -6240.0,0.31158513246411523 -6241.0,0.31147753335471123 -6242.0,0.3113699714023058 -6243.0,0.31126244659406777 -6244.0,0.31115495891717004 -6245.0,0.3110475083587902 -6246.0,0.3109400949061101 -6247.0,0.3108327185463162 -6248.0,0.3107253792665992 -6249.0,0.31061807705415445 -6250.0,0.31051081189618135 -6251.0,0.31040358377988414 -6252.0,0.3102963926924712 -6253.0,0.31018923862115544 -6254.0,0.3100821215531542 -6255.0,0.3099750414756891 -6256.0,0.30986799837598633 -6257.0,0.3097609922412764 -6258.0,0.3096540230587943 -6259.0,0.30954709081577936 -6260.0,0.3094401954994754 -6261.0,0.3093333370971304 -6262.0,0.3092265155959972 -6263.0,0.3091197309833325 -6264.0,0.3090129832463979 -6265.0,0.30890627237245905 -6266.0,0.30879959834878623 -6267.0,0.3086929611626538 -6268.0,0.308586360801341 -6269.0,0.308479797252131 -6270.0,0.3083732705023115 -6271.0,0.30826678053917483 -6272.0,0.3081603273500173 -6273.0,0.30805391092214 -6274.0,0.3079475312428481 -6275.0,0.3078411882994514 -6276.0,0.30773488207926386 -6277.0,0.30762861256960394 -6278.0,0.3075223797577945 -6279.0,0.30741618363116274 -6280.0,0.3073100241770401 -6281.0,0.3072039013827628 -6282.0,0.3070978152356709 -6283.0,0.30699176572310927 -6284.0,0.30688575283242686 -6285.0,0.3067797765509772 -6286.0,0.30667383686611804 -6287.0,0.3065679337652116 -6288.0,0.3064620672356243 -6289.0,0.3063562372647271 -6290.0,0.3062504438398953 -6291.0,0.30614468694850844 -6292.0,0.3060389665779506 -6293.0,0.30593328271561 -6294.0,0.3058276353488794 -6295.0,0.30572202446515573 -6296.0,0.30561645005184057 -6297.0,0.30551091209633946 -6298.0,0.30540541058606263 -6299.0,0.30529994550842443 -6300.0,0.30519451685084376 -6301.0,0.3050891246007436 -6302.0,0.30498376874555155 -6303.0,0.30487844927269936 -6304.0,0.3047731661696232 -6305.0,0.30466791942376353 -6306.0,0.30456270902256527 -6307.0,0.3044575349534775 -6308.0,0.3043523972039537 -6309.0,0.3042472957614518 -6310.0,0.30414223061343393 -6311.0,0.3040372017473666 -6312.0,0.3039322091507205 -6313.0,0.303827252810971 -6314.0,0.30372233271559734 -6315.0,0.3036174488520836 -6316.0,0.30351260120791757 -6317.0,0.30340778977059196 -6318.0,0.30330301452760333 -6319.0,0.30319827546645295 -6320.0,0.30309357257464603 -6321.0,0.3029889058396924 -6322.0,0.302884275249106 -6323.0,0.3027796807904053 -6324.0,0.3026751224511128 -6325.0,0.30257060021875554 -6326.0,0.30246611408086466 -6327.0,0.30236166402497583 -6328.0,0.30225725003862897 -6329.0,0.3021528721093681 -6330.0,0.3020485302247419 -6331.0,0.3019442243723029 -6332.0,0.3018399545396084 -6333.0,0.3017357207142195 -6334.0,0.3016315228837022 -6335.0,0.30152736103562616 -6336.0,0.30142323515756586 -6337.0,0.30131914523709963 -6338.0,0.3012150912618105 -6339.0,0.30111107321928543 -6340.0,0.301007091097116 -6341.0,0.30090314488289766 -6342.0,0.30079923456423063 -6343.0,0.300695360128719 -6344.0,0.3005915215639714 -6345.0,0.30048771885760056 -6346.0,0.3003839519972236 -6347.0,0.30028022097046203 -6348.0,0.3001765257649413 -6349.0,0.30007286636829145 -6350.0,0.29996924276814657 -6351.0,0.2998656549521453 -6352.0,0.2997621029079301 -6353.0,0.2996585866231482 -6354.0,0.2995551060854507 -6355.0,0.29945166128249334 -6356.0,0.2993482522019356 -6357.0,0.29924487883144185 -6358.0,0.29914154115868014 -6359.0,0.2990382391713233 -6360.0,0.29893497285704784 -6361.0,0.2988317422035351 -6362.0,0.29872854719847025 -6363.0,0.29862538782954307 -6364.0,0.29852226408444715 -6365.0,0.29841917595088074 -6366.0,0.29831612341654623 -6367.0,0.29821310646915006 -6368.0,0.29811012509640317 -6369.0,0.2980071792860205 -6370.0,0.29790426902572154 -6371.0,0.2978013943032297 -6372.0,0.29769855510627286 -6373.0,0.297595751422583 -6374.0,0.2974929832398965 -6375.0,0.2973902505459537 -6376.0,0.29728755332849943 -6377.0,0.2971848915752826 -6378.0,0.29708226527405657 -6379.0,0.2969796744125786 -6380.0,0.29687711897861047 -6381.0,0.2967745989599179 -6382.0,0.2966721143442712 -6383.0,0.29656966511944455 -6384.0,0.29646725127321655 -6385.0,0.2963648727933701 -6386.0,0.29626252966769195 -6387.0,0.2961602218839735 -6388.0,0.2960579494300101 -6389.0,0.29595571229360146 -6390.0,0.2958535104625513 -6391.0,0.2957513439246679 -6392.0,0.2956492126677633 -6393.0,0.29554711667965416 -6394.0,0.29544505594816106 -6395.0,0.295343030461109 -6396.0,0.29524104020632697 -6397.0,0.2951390851716484 -6398.0,0.29503716534491065 -6399.0,0.2949352807139556 -6400.0,0.294833431266629 -6401.0,0.2947316169907811 -6402.0,0.294629837874266 -6403.0,0.2945280939049424 -6404.0,0.2944263850706729 -6405.0,0.29432471135932436 -6406.0,0.2942230727587679 -6407.0,0.2941214692568787 -6408.0,0.2940199008415363 -6409.0,0.2939183675006242 -6410.0,0.2938168692220304 -6411.0,0.29371540599364665 -6412.0,0.2936139778033694 -6413.0,0.29351258463909874 -6414.0,0.2934112264887394 -6415.0,0.29330990334019996 -6416.0,0.29320861518139346 -6417.0,0.2931073620002368 -6418.0,0.29300614378465134 -6419.0,0.2929049605225624 -6420.0,0.2928038122018996 -6421.0,0.29270269881059663 -6422.0,0.29260162033659143 -6423.0,0.29250057676782615 -6424.0,0.2923995680922469 -6425.0,0.29229859429780414 -6426.0,0.29219765537245246 -6427.0,0.2920967513041506 -6428.0,0.2919958820808613 -6429.0,0.29189504769055175 -6430.0,0.2917942481211931 -6431.0,0.2916934833607607 -6432.0,0.29159275339723395 -6433.0,0.29149205821859664 -6434.0,0.29139139781283646 -6435.0,0.29129077216794547 -6436.0,0.29119018127191965 -6437.0,0.2910896251127594 -6438.0,0.29098910367846886 -6439.0,0.2908886169570568 -6440.0,0.2907881649365357 -6441.0,0.29068774760492244 -6442.0,0.290587364950238 -6443.0,0.29048701696050744 -6444.0,0.29038670362376 -6445.0,0.2902864249280289 -6446.0,0.29018618086135184 -6447.0,0.2900859714117702 -6448.0,0.2899857965673299 -6449.0,0.28988565631608076 -6450.0,0.28978555064607675 -6451.0,0.289685479545376 -6452.0,0.2895854430020408 -6453.0,0.2894854410041374 -6454.0,0.2893854735397365 -6455.0,0.2892855405969125 -6456.0,0.28918564216374426 -6457.0,0.28908577822831455 -6458.0,0.2889859487787104 -6459.0,0.28888615380302285 -6460.0,0.288786393289347 -6461.0,0.28868666722578235 -6462.0,0.2885869756004321 -6463.0,0.28848731840140396 -6464.0,0.2883876956168093 -6465.0,0.28828810723476417 -6466.0,0.2881885532433881 -6467.0,0.28808903363080524 -6468.0,0.28798954838514346 -6469.0,0.28789009749453504 -6470.0,0.2877906809471161 -6471.0,0.28769129873102706 -6472.0,0.2875919508344123 -6473.0,0.28749263724542035 -6474.0,0.2873933579522038 -6475.0,0.2872941129429194 -6476.0,0.28719490220572785 -6477.0,0.2870957257287942 -6478.0,0.28699658350028723 -6479.0,0.28689747550838013 -6480.0,0.28679840174125 -6481.0,0.28669936218707803 -6482.0,0.2866003568340496 -6483.0,0.286501385670354 -6484.0,0.28640244868418474 -6485.0,0.28630354586373935 -6486.0,0.2862046771972195 -6487.0,0.28610584267283073 -6488.0,0.286007042278783 -6489.0,0.28590827600329 -6490.0,0.2858095438345697 -6491.0,0.285710845760844 -6492.0,0.28561218177033904 -6493.0,0.2855135518512848 -6494.0,0.2854149559919156 -6495.0,0.2853163941804695 -6496.0,0.28521786640518904 -6497.0,0.2851193726543203 -6498.0,0.2850209129161138 -6499.0,0.2849224871788241 -6500.0,0.28482409543070963 -6501.0,0.28472573766003306 -6502.0,0.2846274138550609 -6503.0,0.28452912400406394 -6504.0,0.28443086809531687 -6505.0,0.28433264611709846 -6506.0,0.28423445805769154 -6507.0,0.28413630390538314 -6508.0,0.28403818364846395 -6509.0,0.2839400972752291 -6510.0,0.2838420447739775 -6511.0,0.28374402613301236 -6512.0,0.28364604134064053 -6513.0,0.2835480903851734 -6514.0,0.28345017325492594 -6515.0,0.2833522899382175 -6516.0,0.2832544404233711 -6517.0,0.2831566246987142 -6518.0,0.2830588427525781 -6519.0,0.282961094573298 -6520.0,0.28286338014921336 -6521.0,0.2827656994686675 -6522.0,0.2826680525200079 -6523.0,0.2825704392915858 -6524.0,0.28247285977175696 -6525.0,0.28237531394888055 -6526.0,0.2822778018113203 -6527.0,0.2821803233474436 -6528.0,0.28208287854562203 -6529.0,0.281985467394231 -6530.0,0.2818880898816503 -6531.0,0.28179074599626336 -6532.0,0.2816934357264578 -6533.0,0.28159615906062513 -6534.0,0.2814989159871611 -6535.0,0.2814017064944652 -6536.0,0.28130453057094107 -6537.0,0.28120738820499647 -6538.0,0.2811102793850428 -6539.0,0.2810132040994959 -6540.0,0.28091616233677513 -6541.0,0.2808191540853044 -6542.0,0.2807221793335111 -6543.0,0.2806252380698271 -6544.0,0.28052833028268775 -6545.0,0.28043145596053287 -6546.0,0.2803346150918059 -6547.0,0.28023780766495454 -6548.0,0.2801410336684303 -6549.0,0.28004429309068885 -6550.0,0.27994758592018953 -6551.0,0.27985091214539615 -6552.0,0.279754271754776 -6553.0,0.2796576647368008 -6554.0,0.27956109107994587 -6555.0,0.27946455077269067 -6556.0,0.2793680438035188 -6557.0,0.2792715701609175 -6558.0,0.2791751298333784 -6559.0,0.27907872280939666 -6560.0,0.2789823490774717 -6561.0,0.2788860086261068 -6562.0,0.2787897014438093 -6563.0,0.27869342751909043 -6564.0,0.27859718684046547 -6565.0,0.2785009793964535 -6566.0,0.27840480517557775 -6567.0,0.2783086641663653 -6568.0,0.2782125563573473 -6569.0,0.27811648173705866 -6570.0,0.2780204402940385 -6571.0,0.2779244320168297 -6572.0,0.2778284568939792 -6573.0,0.2777325149140379 -6574.0,0.27763660606556056 -6575.0,0.277540730337106 -6576.0,0.2774448877172369 -6577.0,0.27734907819452004 -6578.0,0.2772533017575259 -6579.0,0.27715755839482914 -6580.0,0.2770618480950082 -6581.0,0.27696617084664565 -6582.0,0.2768705266383278 -6583.0,0.2767749154586451 -6584.0,0.2766793372961916 -6585.0,0.2765837921395658 -6586.0,0.2764882799773697 -6587.0,0.2763928007982095 -6588.0,0.27629735459069504 -6589.0,0.2762019413434405 -6590.0,0.27610656104506365 -6591.0,0.2760112136841864 -6592.0,0.2759158992494344 -6593.0,0.27582061772943733 -6594.0,0.27572536911282897 -6595.0,0.27563015338824665 -6596.0,0.275534970544332 -6597.0,0.27543982056973026 -6598.0,0.27534470345309087 -6599.0,0.2752496191830669 -6600.0,0.2751545677483156 -6601.0,0.2750595491374979 -6602.0,0.274964563339279 -6603.0,0.27486961034232754 -6604.0,0.2747746901353165 -6605.0,0.2746798027069225 -6606.0,0.2745849480458262 -6607.0,0.27449012614071205 -6608.0,0.27439533698026863 -6609.0,0.2743005805531882 -6610.0,0.27420585684816695 -6611.0,0.2741111658539051 -6612.0,0.2740165075591067 -6613.0,0.2739218819524798 -6614.0,0.27382728902273606 -6615.0,0.2737327287585914 -6616.0,0.27363820114876536 -6617.0,0.2735437061819816 -6618.0,0.2734492438469674 -6619.0,0.27335481413245427 -6620.0,0.27326041702717724 -6621.0,0.27316605251987564 -6622.0,0.2730717205992923 -6623.0,0.27297742125417424 -6624.0,0.27288315447327205 -6625.0,0.2727889202453406 -6626.0,0.2726947185591383 -6627.0,0.27260054940342765 -6628.0,0.27250641276697485 -6629.0,0.27241230863855026 -6630.0,0.27231823700692775 -6631.0,0.2722241978608854 -6632.0,0.272130191189205 -6633.0,0.27203621698067215 -6634.0,0.2719422752240766 -6635.0,0.27184836590821154 -6636.0,0.2717544890218745 -6637.0,0.27166064455386646 -6638.0,0.2715668324929926 -6639.0,0.2714730528280617 -6640.0,0.27137930554788675 -6641.0,0.2712855906412841 -6642.0,0.2711919080970745 -6643.0,0.27109825790408204 -6644.0,0.2710046400511352 -6645.0,0.2709110545270659 -6646.0,0.2708175013207101 -6647.0,0.27072398042090756 -6648.0,0.270630491816502 -6649.0,0.2705370354963408 -6650.0,0.27044361144927537 -6651.0,0.27035021966416095 -6652.0,0.27025686012985645 -6653.0,0.2701635328352249 -6654.0,0.2700702377691329 -6655.0,0.26997697492045114 -6656.0,0.269883744278054 -6657.0,0.26979054583081974 -6658.0,0.2696973795676304 -6659.0,0.2696042454773721 -6660.0,0.2695111435489344 -6661.0,0.26941807377121113 -6662.0,0.2693250361330996 -6663.0,0.26923203062350115 -6664.0,0.26913905723132087 -6665.0,0.2690461159454678 -6666.0,0.2689532067548546 -6667.0,0.268860329648398 -6668.0,0.2687674846150183 -6669.0,0.26867467164363984 -6670.0,0.2685818907231908 -6671.0,0.2684891418426029 -6672.0,0.26839642499081207 -6673.0,0.26830374015675773 -6674.0,0.2682110873293833 -6675.0,0.268118466497636 -6676.0,0.2680258776504668 -6677.0,0.2679333207768305 -6678.0,0.2678407958656859 -6679.0,0.26774830290599516 -6680.0,0.26765584188672487 -6681.0,0.2675634127968448 -6682.0,0.2674710156253291 -6683.0,0.2673786503611553 -6684.0,0.26728631699330496 -6685.0,0.2671940155107633 -6686.0,0.2671017459025196 -6687.0,0.26700950815756663 -6688.0,0.26691730226490107 -6689.0,0.26682512821352355 -6690.0,0.2667329859924383 -6691.0,0.2666408755906534 -6692.0,0.2665487969971808 -6693.0,0.26645675020103626 -6694.0,0.2663647351912391 -6695.0,0.26627275195681277 -6696.0,0.2661808004867842 -6697.0,0.26608888077018444 -6698.0,0.2659969927960479 -6699.0,0.2659051365534132 -6700.0,0.2658133120313224 -6701.0,0.26572151921882164 -6702.0,0.26562975810496064 -6703.0,0.26553802867879306 -6704.0,0.2654463309293761 -6705.0,0.26535466484577097 -6706.0,0.2652630304170426 -6707.0,0.2651714276322596 -6708.0,0.26507985648049454 -6709.0,0.2649883169508235 -6710.0,0.2648968090323266 -6711.0,0.2648053327140875 -6712.0,0.2647138879851939 -6713.0,0.26462247483473694 -6714.0,0.26453109325181184 -6715.0,0.26443974322551733 -6716.0,0.2643484247449561 -6717.0,0.2642571377992345 -6718.0,0.2641658823774627 -6719.0,0.26407465846875444 -6720.0,0.26398346606222756 -6721.0,0.26389230514700335 -6722.0,0.26380117571220707 -6723.0,0.26371007774696753 -6724.0,0.2636190112404174 -6725.0,0.2635279761816933 -6726.0,0.26343697255993526 -6727.0,0.2633460003642873 -6728.0,0.26325505958389694 -6729.0,0.2631641502079158 -6730.0,0.26307327222549887 -6731.0,0.26298242562580526 -6732.0,0.2628916103979974 -6733.0,0.262800826531242 -6734.0,0.2627100740147089 -6735.0,0.2626193528375722 -6736.0,0.2625286629890094 -6737.0,0.262438004458202 -6738.0,0.2623473772343349 -6739.0,0.26225678130659713 -6740.0,0.2621662166641811 -6741.0,0.2620756832962832 -6742.0,0.26198518119210346 -6743.0,0.26189471034084555 -6744.0,0.26180427073171714 -6745.0,0.26171386235392924 -6746.0,0.2616234851966969 -6747.0,0.26153313924923877 -6748.0,0.2614428245007772 -6749.0,0.26135254094053834 -6750.0,0.2612622885577521 -6751.0,0.26117206734165177 -6752.0,0.2610818772814749 -6753.0,0.26099171836646234 -6754.0,0.2609015905858588 -6755.0,0.2608114939289127 -6756.0,0.2607214283848761 -6757.0,0.26063139394300494 -6758.0,0.26054139059255876 -6759.0,0.2604514183228008 -6760.0,0.26036147712299795 -6761.0,0.26027156698242093 -6762.0,0.2601816878903441 -6763.0,0.26009183983604567 -6764.0,0.26000202280880724 -6765.0,0.2599122367979144 -6766.0,0.2598224817926563 -6767.0,0.25973275778232585 -6768.0,0.25964306475621957 -6769.0,0.2595534027036378 -6770.0,0.25946377161388445 -6771.0,0.2593741714762673 -6772.0,0.25928460228009753 -6773.0,0.25919506401469034 -6774.0,0.25910555666936436 -6775.0,0.25901608023344214 -6776.0,0.2589266346962496 -6777.0,0.2588372200471168 -6778.0,0.258747836275377 -6779.0,0.2586584833703675 -6780.0,0.25856916132142904 -6781.0,0.25847987011790624 -6782.0,0.2583906097491473 -6783.0,0.25830138020450405 -6784.0,0.25821218147333214 -6785.0,0.25812301354499073 -6786.0,0.25803387640884284 -6787.0,0.257944770054255 -6788.0,0.2578556944705974 -6789.0,0.25776664964724405 -6790.0,0.2576776355735726 -6791.0,0.2575886522389642 -6792.0,0.2574996996328039 -6793.0,0.2574107777444802 -6794.0,0.2573218865633855 -6795.0,0.2572330260789155 -6796.0,0.2571441962804701 -6797.0,0.2570553971574523 -6798.0,0.2569666286992692 -6799.0,0.25687789089533114 -6800.0,0.25678918373505255 -6801.0,0.25670050720785126 -6802.0,0.2566118613031487 -6803.0,0.2565232460103703 -6804.0,0.25643466131894466 -6805.0,0.2563461072183044 -6806.0,0.2562575836978856 -6807.0,0.2561690907471281 -6808.0,0.2560806283554753 -6809.0,0.25599219651237437 -6810.0,0.25590379520727585 -6811.0,0.2558154244296343 -6812.0,0.25572708416890755 -6813.0,0.25563877441455746 -6814.0,0.25555049515604916 -6815.0,0.25546224638285164 -6816.0,0.25537402808443743 -6817.0,0.2552858402502828 -6818.0,0.2551976828698675 -6819.0,0.255109555932675 -6820.0,0.25502145942819254 -6821.0,0.25493339334591064 -6822.0,0.25484535767532385 -6823.0,0.25475735240593 -6824.0,0.25466937752723084 -6825.0,0.2545814330287315 -6826.0,0.2544935188999409 -6827.0,0.25440563513037145 -6828.0,0.2543177817095394 -6829.0,0.25422995862696435 -6830.0,0.2541421658721697 -6831.0,0.2540544034346824 -6832.0,0.25396667130403305 -6833.0,0.2538789694697558 -6834.0,0.25379129792138855 -6835.0,0.25370365664847255 -6836.0,0.25361604564055307 -6837.0,0.25352846488717856 -6838.0,0.2534409143779014 -6839.0,0.2533533941022774 -6840.0,0.253265904049866 -6841.0,0.2531784442102304 -6842.0,0.2530910145729371 -6843.0,0.2530036151275565 -6844.0,0.2529162458636624 -6845.0,0.2528289067708324 -6846.0,0.25274159783864747 -6847.0,0.2526543190566924 -6848.0,0.25256707041455534 -6849.0,0.2524798519018283 -6850.0,0.25239266350810663 -6851.0,0.2523055052229895 -6852.0,0.2522183770360794 -6853.0,0.2521312789369828 -6854.0,0.25204421091530926 -6855.0,0.2519571729606725 -6856.0,0.2518701650626892 -6857.0,0.25178318721098025 -6858.0,0.25169623939516966 -6859.0,0.2516093216048852 -6860.0,0.2515224338297583 -6861.0,0.2514355760594238 -6862.0,0.2513487482835203 -6863.0,0.25126195049168965 -6864.0,0.25117518267357775 -6865.0,0.25108844481883374 -6866.0,0.2510017369171104 -6867.0,0.25091505895806415 -6868.0,0.250828410931355 -6869.0,0.25074179282664627 -6870.0,0.2506552046336053 -6871.0,0.25056864634190257 -6872.0,0.2504821179412124 -6873.0,0.2503956194212125 -6874.0,0.2503091507715844 -6875.0,0.25022271198201274 -6876.0,0.25013630304218626 -6877.0,0.2500499239417969 -6878.0,0.24996357467054026 -6879.0,0.24987725521811555 -6880.0,0.24979096557422537 -6881.0,0.24970470572857614 -6882.0,0.24961847567087758 -6883.0,0.2495322753908432 -6884.0,0.24944610487818974 -6885.0,0.2493599641226379 -6886.0,0.24927385311391154 -6887.0,0.24918777184173835 -6888.0,0.2491017202958494 -6889.0,0.24901569846597946 -6890.0,0.24892970634186662 -6891.0,0.24884374391325279 -6892.0,0.24875781116988313 -6893.0,0.24867190810150666 -6894.0,0.2485860346978756 -6895.0,0.24850019094874595 -6896.0,0.24841437684387724 -6897.0,0.24832859237303237 -6898.0,0.24824283752597798 -6899.0,0.24815711229248402 -6900.0,0.24807141666232424 -6901.0,0.2479857506252756 -6902.0,0.24790011417111896 -6903.0,0.24781450728963836 -6904.0,0.24772892997062163 -6905.0,0.24764338220385992 -6906.0,0.2475578639791481 -6907.0,0.24747237528628438 -6908.0,0.2473869161150707 -6909.0,0.24730148645531227 -6910.0,0.24721608629681807 -6911.0,0.24713071562940037 -6912.0,0.2470453744428752 -6913.0,0.24696006272706184 -6914.0,0.2468747804717833 -6915.0,0.2467895276668661 -6916.0,0.24670430430214005 -6917.0,0.24661911036743878 -6918.0,0.2465339458525991 -6919.0,0.2464488107474617 -6920.0,0.2463637050418704 -6921.0,0.24627862872567285 -6922.0,0.24619358178871997 -6923.0,0.24610856422086635 -6924.0,0.24602357601196995 -6925.0,0.24593861715189239 -6926.0,0.24585368763049856 -6927.0,0.24576878743765715 -6928.0,0.24568391656324 -6929.0,0.24559907499712283 -6930.0,0.24551426272918447 -6931.0,0.24542947974930762 -6932.0,0.24534472604737814 -6933.0,0.24526000161328557 -6934.0,0.24517530643692298 -6935.0,0.24509064050818674 -6936.0,0.24500600381697693 -6937.0,0.2449213963531969 -6938.0,0.24483681810675373 -6939.0,0.24475226906755768 -6940.0,0.24466774922552284 -6941.0,0.24458325857056648 -6942.0,0.24449879709260958 -6943.0,0.24441436478157638 -6944.0,0.24432996162739487 -6945.0,0.24424558761999624 -6946.0,0.24416124274931536 -6947.0,0.24407692700529046 -6948.0,0.24399264037786333 -6949.0,0.24390838285697916 -6950.0,0.24382415443258668 -6951.0,0.24373995509463794 -6952.0,0.24365578483308867 -6953.0,0.24357164363789802 -6954.0,0.24348753149902844 -6955.0,0.24340344840644607 -6956.0,0.24331939435012032 -6957.0,0.24323536932002424 -6958.0,0.24315137330613415 -6959.0,0.24306740629843004 -6960.0,0.2429834682868952 -6961.0,0.2428995592615165 -6962.0,0.24281567921228409 -6963.0,0.2427318281291918 -6964.0,0.24264800600223674 -6965.0,0.24256421282141963 -6966.0,0.24248044857674442 -6967.0,0.2423967132582188 -6968.0,0.24231300685585358 -6969.0,0.24222932935966338 -6970.0,0.24214568075966594 -6971.0,0.24206206104588265 -6972.0,0.24197847020833835 -6973.0,0.24189490823706114 -6974.0,0.24181137512208278 -6975.0,0.24172787085343833 -6976.0,0.2416443954211664 -6977.0,0.24156094881530887 -6978.0,0.2414775310259113 -6979.0,0.24139414204302242 -6980.0,0.24131078185669466 -6981.0,0.24122745045698366 -6982.0,0.24114414783394866 -6983.0,0.2410608739776522 -6984.0,0.2409776288781604 -6985.0,0.24089441252554264 -6986.0,0.2408112249098719 -6987.0,0.24072806602122437 -6988.0,0.24064493584967997 -6989.0,0.24056183438532175 -6990.0,0.24047876161823634 -6991.0,0.24039571753851385 -6992.0,0.24031270213624759 -6993.0,0.24022971540153457 -6994.0,0.24014675732447494 -6995.0,0.24006382789517253 -6996.0,0.23998092710373434 -6997.0,0.23989805494027103 -6998.0,0.23981521139489642 -6999.0,0.23973239645772804 -7000.0,0.23964961011888652 -7001.0,0.2395668523684962 -7002.0,0.23948412319668455 -7003.0,0.23940142259358269 -7004.0,0.23931875054932492 -7005.0,0.2392361070540492 -7006.0,0.23915349209789666 -7007.0,0.23907090567101202 -7008.0,0.23898834776354325 -7009.0,0.23890581836564181 -7010.0,0.23882331746746263 -7011.0,0.23874084505916382 -7012.0,0.23865840113090714 -7013.0,0.2385759856728575 -7014.0,0.2384935986751835 -7015.0,0.23841124012805684 -7016.0,0.23832891002165282 -7017.0,0.23824660834615 -7018.0,0.23816433509173046 -7019.0,0.23808209024857951 -7020.0,0.23799987380688603 -7021.0,0.23791768575684213 -7022.0,0.23783552608864345 -7023.0,0.23775339479248886 -7024.0,0.23767129185858077 -7025.0,0.2375892172771248 -7026.0,0.23750717103833016 -7027.0,0.23742515313240925 -7028.0,0.23734316354957793 -7029.0,0.23726120228005557 -7030.0,0.2371792693140646 -7031.0,0.23709736464183118 -7032.0,0.23701548825358457 -7033.0,0.2369336401395576 -7034.0,0.23685182028998625 -7035.0,0.23677002869511016 -7036.0,0.2366882653451721 -7037.0,0.23660653023041836 -7038.0,0.23652482334109845 -7039.0,0.23644314466746544 -7040.0,0.23636149419977553 -7041.0,0.23627987192828856 -7042.0,0.23619827784326747 -7043.0,0.23611671193497877 -7044.0,0.23603517419369213 -7045.0,0.23595366460968084 -7046.0,0.23587218317322128 -7047.0,0.23579072987459332 -7048.0,0.23570930470408027 -7049.0,0.2356279076519686 -7050.0,0.2355465387085483 -7051.0,0.2354651978641126 -7052.0,0.23538388510895816 -7053.0,0.23530260043338494 -7054.0,0.23522134382769633 -7055.0,0.23514011528219889 -7056.0,0.23505891478720278 -7057.0,0.23497774233302127 -7058.0,0.23489659790997117 -7059.0,0.23481548150837242 -7060.0,0.23473439311854857 -7061.0,0.23465333273082623 -7062.0,0.2345723003355356 -7063.0,0.23449129592301002 -7064.0,0.23441031948358634 -7065.0,0.23432937100760456 -7066.0,0.23424845048540816 -7067.0,0.23416755790734398 -7068.0,0.234086693263762 -7069.0,0.2340058565450158 -7070.0,0.233925047741462 -7071.0,0.23384426684346082 -7072.0,0.2337635138413756 -7073.0,0.2336827887255732 -7074.0,0.23360209148642355 -7075.0,0.23352142211430021 -7076.0,0.2334407805995798 -7077.0,0.23336016693264247 -7078.0,0.2332795811038715 -7079.0,0.2331990231036537 -7080.0,0.23311849292237896 -7081.0,0.23303799055044072 -7082.0,0.23295751597823558 -7083.0,0.23287706919616355 -7084.0,0.23279665019462786 -7085.0,0.23271625896403514 -7086.0,0.23263589549479533 -7087.0,0.2325555597773216 -7088.0,0.23247525180203055 -7089.0,0.23239497155934194 -7090.0,0.23231471903967904 -7091.0,0.23223449423346817 -7092.0,0.23215429713113922 -7093.0,0.23207412772312513 -7094.0,0.23199398599986243 -7095.0,0.23191387195179064 -7096.0,0.23183378556935288 -7097.0,0.23175372684299533 -7098.0,0.23167369576316763 -7099.0,0.23159369232032256 -7100.0,0.23151371650491642 -7101.0,0.23143376830740858 -7102.0,0.23135384771826187 -7103.0,0.2312739547279423 -7104.0,0.2311940893269192 -7105.0,0.2311142515056653 -7106.0,0.23103444125465644 -7107.0,0.2309546585643719 -7108.0,0.23087490342529413 -7109.0,0.23079517582790898 -7110.0,0.23071547576270549 -7111.0,0.23063580322017607 -7112.0,0.23055615819081626 -7113.0,0.23047654066512513 -7114.0,0.2303969506336048 -7115.0,0.23031738808676078 -7116.0,0.23023785301510183 -7117.0,0.23015834540914 -7118.0,0.23007886525939064 -7119.0,0.22999941255637232 -7120.0,0.2299199872906069 -7121.0,0.22984058945261956 -7122.0,0.22976121903293867 -7123.0,0.22968187602209594 -7124.0,0.2296025604106264 -7125.0,0.22952327218906815 -7126.0,0.22944401134796277 -7127.0,0.22936477787785498 -7128.0,0.22928557176929285 -7129.0,0.22920639301282758 -7130.0,0.22912724159901382 -7131.0,0.2290481175184093 -7132.0,0.2289690207615752 -7133.0,0.22888995131907572 -7134.0,0.22881090918147856 -7135.0,0.2287318943393545 -7136.0,0.22865290678327774 -7137.0,0.22857394650382548 -7138.0,0.22849501349157852 -7139.0,0.22841610773712057 -7140.0,0.22833722923103889 -7141.0,0.22825837796392368 -7142.0,0.22817955392636868 -7143.0,0.2281007571089708 -7144.0,0.22802198750233 -7145.0,0.2279432450970498 -7146.0,0.22786452988373665 -7147.0,0.22778584185300058 -7148.0,0.22770718099545448 -7149.0,0.22762854730171486 -7150.0,0.22754994076240118 -7151.0,0.22747136136813634 -7152.0,0.22739280910954626 -7153.0,0.2273142839772604 -7154.0,0.22723578596191113 -7155.0,0.2271573150541343 -7156.0,0.22707887124456885 -7157.0,0.2270004545238571 -7158.0,0.22692206488264438 -7159.0,0.22684370231157946 -7160.0,0.22676536680131423 -7161.0,0.2266870583425038 -7162.0,0.22660877692580664 -7163.0,0.22653052254188424 -7164.0,0.22645229518140153 -7165.0,0.22637409483502643 -7166.0,0.22629592149343036 -7167.0,0.22621777514728764 -7168.0,0.22613965578727613 -7169.0,0.22606156340407665 -7170.0,0.22598349798837344 -7171.0,0.22590545953085378 -7172.0,0.22582744802220833 -7173.0,0.2257494634531308 -7174.0,0.2256715058143183 -7175.0,0.22559357509647093 -7176.0,0.22551567129029226 -7177.0,0.2254377943864888 -7178.0,0.22535994437577056 -7179.0,0.22528212124885044 -7180.0,0.22520432499644477 -7181.0,0.22512655560927308 -7182.0,0.22504881307805796 -7183.0,0.2249710973935254 -7184.0,0.22489340854640433 -7185.0,0.2248157465274272 -7186.0,0.22473811132732938 -7187.0,0.22466050293684967 -7188.0,0.2245829213467298 -7189.0,0.224505366547715 -7190.0,0.22442783853055345 -7191.0,0.2243503372859967 -7192.0,0.22427286280479933 -7193.0,0.22419541507771928 -7194.0,0.22411799409551755 -7195.0,0.2240405998489584 -7196.0,0.22396323232880927 -7197.0,0.22388589152584076 -7198.0,0.22380857743082666 -7199.0,0.223731290034544 -7200.0,0.22365402932777298 -7201.0,0.22357679530129687 -7202.0,0.2234995879459023 -7203.0,0.22342240725237894 -7204.0,0.22334525321151977 -7205.0,0.22326812581412075 -7206.0,0.2231910250509813 -7207.0,0.2231139509129037 -7208.0,0.2230369033906937 -7209.0,0.22295988247516 -7210.0,0.22288288815711466 -7211.0,0.2228059204273727 -7212.0,0.22272897927675256 -7213.0,0.2226520646960756 -7214.0,0.22257517667616658 -7215.0,0.2224983152078532 -7216.0,0.2224214802819666 -7217.0,0.2223446718893408 -7218.0,0.22226789002081312 -7219.0,0.22219113466722418 -7220.0,0.2221144058194175 -7221.0,0.22203770346823995 -7222.0,0.22196102760454142 -7223.0,0.22188437821917517 -7224.0,0.22180775530299734 -7225.0,0.2217311588468675 -7226.0,0.22165458884164815 -7227.0,0.22157804527820513 -7228.0,0.22150152814740726 -7229.0,0.22142503744012673 -7230.0,0.2213485731472386 -7231.0,0.22127213525962142 -7232.0,0.22119572376815652 -7233.0,0.2211193386637287 -7234.0,0.22104297993722571 -7235.0,0.22096664757953857 -7236.0,0.2208903415815613 -7237.0,0.22081406193419117 -7238.0,0.22073780862832867 -7239.0,0.2206615816548772 -7240.0,0.2205853810047436 -7241.0,0.2205092066688375 -7242.0,0.220433058638072 -7243.0,0.22035693690336314 -7244.0,0.22028084145563015 -7245.0,0.2202047722857954 -7246.0,0.22012872938478442 -7247.0,0.2200527127435258 -7248.0,0.21997672235295138 -7249.0,0.21990075820399593 -7250.0,0.21982482028759764 -7251.0,0.21974890859469756 -7252.0,0.21967302311624004 -7253.0,0.21959716384317243 -7254.0,0.21952133076644537 -7255.0,0.2194455238770124 -7256.0,0.21936974316583038 -7257.0,0.2192939886238593 -7258.0,0.21921826024206204 -7259.0,0.2191425580114049 -7260.0,0.21906688192285703 -7261.0,0.21899123196739095 -7262.0,0.21891560813598204 -7263.0,0.21884001041960904 -7264.0,0.21876443880925361 -7265.0,0.21868889329590072 -7266.0,0.21861337387053817 -7267.0,0.21853788052415724 -7268.0,0.21846241324775192 -7269.0,0.21838697203231971 -7270.0,0.21831155686886086 -7271.0,0.21823616774837903 -7272.0,0.21816080466188073 -7273.0,0.21808546760037578 -7274.0,0.21801015655487696 -7275.0,0.2179348715164002 -7276.0,0.21785961247596464 -7277.0,0.2177843794245923 -7278.0,0.21770917235330856 -7279.0,0.21763399125314165 -7280.0,0.21755883611512308 -7281.0,0.21748370693028732 -7282.0,0.2174086036896721 -7283.0,0.21733352638431808 -7284.0,0.21725847500526912 -7285.0,0.2171834495435721 -7286.0,0.21710844999027712 -7287.0,0.21703347633643713 -7288.0,0.21695852857310846 -7289.0,0.2168836066913503 -7290.0,0.2168087106822251 -7291.0,0.2167338405367982 -7292.0,0.21665899624613824 -7293.0,0.21658417780131675 -7294.0,0.2165093851934085 -7295.0,0.21643461841349132 -7296.0,0.21635987745264595 -7297.0,0.21628516230195646 -7298.0,0.21621047295250978 -7299.0,0.21613580939539612 -7300.0,0.21606117162170854 -7301.0,0.21598655962254343 -7302.0,0.215911973389 -7303.0,0.21583741291218075 -7304.0,0.21576287818319106 -7305.0,0.2156883691931396 -7306.0,0.2156138859331379 -7307.0,0.2155394283943007 -7308.0,0.2154649965677457 -7309.0,0.21539059044459383 -7310.0,0.21531621001596885 -7311.0,0.21524185527299783 -7312.0,0.2151675262068107 -7313.0,0.2150932228085406 -7314.0,0.2150189450693237 -7315.0,0.21494469298029914 -7316.0,0.21487046653260924 -7317.0,0.2147962657173993 -7318.0,0.21472209052581773 -7319.0,0.2146479409490159 -7320.0,0.21457381697814842 -7321.0,0.21449971860437272 -7322.0,0.21442564581884951 -7323.0,0.21435159861274236 -7324.0,0.21427757697721805 -7325.0,0.21420358090344627 -7326.0,0.2141296103825999 -7327.0,0.21405566540585472 -7328.0,0.2139817459643897 -7329.0,0.21390785204938673 -7330.0,0.21383398365203088 -7331.0,0.2137601407635101 -7332.0,0.21368632337501553 -7333.0,0.2136125314777413 -7334.0,0.21353876506288455 -7335.0,0.21346502412164553 -7336.0,0.21339130864522737 -7337.0,0.2133176186248365 -7338.0,0.2132439540516821 -7339.0,0.21317031491697663 -7340.0,0.21309670121193539 -7341.0,0.2130231129277769 -7342.0,0.21294955005572253 -7343.0,0.21287601258699682 -7344.0,0.2128025005128272 -7345.0,0.21272901382444437 -7346.0,0.21265555251308174 -7347.0,0.21258211656997603 -7348.0,0.21250870598636676 -7349.0,0.21243532075349672 -7350.0,0.21236196086261144 -7351.0,0.2122886263049597 -7352.0,0.21221531707179325 -7353.0,0.21214203315436678 -7354.0,0.21206877454393808 -7355.0,0.2119955412317679 -7356.0,0.21192233320912007 -7357.0,0.21184915046726138 -7358.0,0.21177599299746172 -7359.0,0.21170286079099385 -7360.0,0.2116297538391337 -7361.0,0.21155667213316012 -7362.0,0.211483615664355 -7363.0,0.2114105844240032 -7364.0,0.21133757840339273 -7365.0,0.21126459759381436 -7366.0,0.21119164198656212 -7367.0,0.21111871157293288 -7368.0,0.21104580634422662 -7369.0,0.21097292629174622 -7370.0,0.21090007140679765 -7371.0,0.2108272416806899 -7372.0,0.21075443710473482 -7373.0,0.21068165767024746 -7374.0,0.21060890336854568 -7375.0,0.21053617419095047 -7376.0,0.21046347012878575 -7377.0,0.21039079117337847 -7378.0,0.2103181373160585 -7379.0,0.21024550854815888 -7380.0,0.2101729048610154 -7381.0,0.21010032624596708 -7382.0,0.21002777269435574 -7383.0,0.20995524419752631 -7384.0,0.20988274074682664 -7385.0,0.20981026233360767 -7386.0,0.20973780894922314 -7387.0,0.20966538058503 -7388.0,0.20959297723238798 -7389.0,0.20952059888265992 -7390.0,0.2094482455272117 -7391.0,0.20937591715741194 -7392.0,0.20930361376463252 -7393.0,0.20923133534024807 -7394.0,0.20915908187563642 -7395.0,0.2090868533621781 -7396.0,0.20901464979125697 -7397.0,0.20894247115425948 -7398.0,0.2088703174425754 -7399.0,0.20879818864759717 -7400.0,0.2087260847607205 -7401.0,0.2086540057733438 -7402.0,0.2085819516768687 -7403.0,0.2085099224626995 -7404.0,0.2084379181222438 -7405.0,0.20836593864691189 -7406.0,0.20829398402811725 -7407.0,0.20822205425727613 -7408.0,0.20815014932580786 -7409.0,0.20807826922513475 -7410.0,0.20800641394668196 -7411.0,0.20793458348187774 -7412.0,0.20786277782215318 -7413.0,0.20779099695894246 -7414.0,0.20771924088368254 -7415.0,0.20764750958781358 -7416.0,0.20757580306277842 -7417.0,0.20750412130002313 -7418.0,0.2074324642909965 -7419.0,0.20736083202715042 -7420.0,0.2072892244999396 -7421.0,0.20721764170082194 -7422.0,0.20714608362125797 -7423.0,0.20707455025271143 -7424.0,0.20700304158664887 -7425.0,0.2069315576145399 -7426.0,0.20686009832785687 -7427.0,0.20678866371807533 -7428.0,0.2067172537766736 -7429.0,0.206645868495133 -7430.0,0.2065745078649378 -7431.0,0.20650317187757516 -7432.0,0.2064318605245353 -7433.0,0.20636057379731118 -7434.0,0.20628931168739892 -7435.0,0.20621807418629737 -7436.0,0.20614686128550852 -7437.0,0.2060756729765371 -7438.0,0.2060045092508909 -7439.0,0.2059333701000806 -7440.0,0.20586225551561987 -7441.0,0.20579116548902515 -7442.0,0.20572010001181604 -7443.0,0.20564905907551484 -7444.0,0.20557804267164698 -7445.0,0.20550705079174064 -7446.0,0.20543608342732703 -7447.0,0.2053651405699403 -7448.0,0.20529422221111743 -7449.0,0.20522332834239845 -7450.0,0.20515245895532613 -7451.0,0.20508161404144637 -7452.0,0.20501079359230784 -7453.0,0.2049399975994622 -7454.0,0.20486922605446395 -7455.0,0.20479847894887063 -7456.0,0.20472775627424256 -7457.0,0.20465705802214312 -7458.0,0.20458638418413844 -7459.0,0.20451573475179774 -7460.0,0.20444510971669294 -7461.0,0.2043745090703991 -7462.0,0.20430393280449402 -7463.0,0.20423338091055848 -7464.0,0.20416285338017612 -7465.0,0.20409235020493355 -7466.0,0.2040218713764203 -7467.0,0.20395141688622867 -7468.0,0.20388098672595406 -7469.0,0.20381058088719453 -7470.0,0.2037401993615513 -7471.0,0.20366984214062828 -7472.0,0.20359950921603245 -7473.0,0.20352920057937351 -7474.0,0.20345891622226425 -7475.0,0.20338865613632018 -7476.0,0.20331842031315983 -7477.0,0.20324820874440452 -7478.0,0.20317802142167862 -7479.0,0.2031078583366092 -7480.0,0.20303771948082638 -7481.0,0.20296760484596305 -7482.0,0.20289751442365508 -7483.0,0.2028274482055412 -7484.0,0.202757406183263 -7485.0,0.202687388348465 -7486.0,0.20261739469279452 -7487.0,0.20254742520790195 -7488.0,0.20247747988544032 -7489.0,0.20240755871706576 -7490.0,0.20233766169443707 -7491.0,0.20226778880921617 -7492.0,0.20219794005306763 -7493.0,0.20212811541765907 -7494.0,0.20205831489466086 -7495.0,0.2019885384757464 -7496.0,0.2019187861525918 -7497.0,0.20184905791687613 -7498.0,0.20177935376028128 -7499.0,0.20170967367449216 -7500.0,0.20164001765119632 -7501.0,0.2015703856820844 -7502.0,0.20150077775884975 -7503.0,0.20143119387318867 -7504.0,0.20136163401680035 -7505.0,0.20129209818138674 -7506.0,0.2012225863586528 -7507.0,0.2011530985403062 -7508.0,0.20108363471805762 -7509.0,0.20101419488362043 -7510.0,0.2009447790287111 -7511.0,0.2008753871450487 -7512.0,0.2008060192243554 -7513.0,0.20073667525835598 -7514.0,0.20066735523877835 -7515.0,0.200598059157353 -7516.0,0.20052878700581353 -7517.0,0.2004595387758962 -7518.0,0.20039031445934025 -7519.0,0.2003211140478877 -7520.0,0.20025193753328344 -7521.0,0.2001827849072752 -7522.0,0.2001136561616136 -7523.0,0.20004455128805215 -7524.0,0.19997547027834703 -7525.0,0.19990641312425744 -7526.0,0.19983737981754535 -7527.0,0.1997683703499756 -7528.0,0.19969938471331583 -7529.0,0.19963042289933663 -7530.0,0.19956148489981126 -7531.0,0.19949257070651602 -7532.0,0.19942368031122987 -7533.0,0.19935481370573474 -7534.0,0.19928597088181527 -7535.0,0.19921715183125913 -7536.0,0.1991483565458566 -7537.0,0.199079585017401 -7538.0,0.19901083723768828 -7539.0,0.19894211319851743 -7540.0,0.19887341289169008 -7541.0,0.19880473630901088 -7542.0,0.1987360834422872 -7543.0,0.19866745428332913 -7544.0,0.1985988488239499 -7545.0,0.19853026705596524 -7546.0,0.19846170897119392 -7547.0,0.19839317456145739 -7548.0,0.19832466381858008 -7549.0,0.19825617673438906 -7550.0,0.19818771330071444 -7551.0,0.1981192735093889 -7552.0,0.1980508573522482 -7553.0,0.19798246482113066 -7554.0,0.19791409590787767 -7555.0,0.19784575060433324 -7556.0,0.19777742890234434 -7557.0,0.1977091307937606 -7558.0,0.19764085627043462 -7559.0,0.19757260532422172 -7560.0,0.19750437794698003 -7561.0,0.19743617413057063 -7562.0,0.1973679938668572 -7563.0,0.19729983714770638 -7564.0,0.19723170396498751 -7565.0,0.1971635943105729 -7566.0,0.19709550817633747 -7567.0,0.1970274455541591 -7568.0,0.19695940643591836 -7569.0,0.19689139081349877 -7570.0,0.19682339867878643 -7571.0,0.19675543002367052 -7572.0,0.19668748484004275 -7573.0,0.19661956311979784 -7574.0,0.19655166485483316 -7575.0,0.19648379003704902 -7576.0,0.19641593865834836 -7577.0,0.1963481107106371 -7578.0,0.19628030618582373 -7579.0,0.1962125250758198 -7580.0,0.19614476737253944 -7581.0,0.19607703306789967 -7582.0,0.19600932215382033 -7583.0,0.1959416346222239 -7584.0,0.19587397046503585 -7585.0,0.19580632967418424 -7586.0,0.19573871224160014 -7587.0,0.19567111815921714 -7588.0,0.1956035474189719 -7589.0,0.1955360000128036 -7590.0,0.19546847593265446 -7591.0,0.1954009751704692 -7592.0,0.19533349771819558 -7593.0,0.195266043567784 -7594.0,0.19519861271118766 -7595.0,0.19513120514036253 -7596.0,0.19506382084726748 -7597.0,0.1949964598238639 -7598.0,0.1949291220621162 -7599.0,0.19486180755399155 -7600.0,0.19479451629145966 -7601.0,0.19472724826649332 -7602.0,0.19466000347106782 -7603.0,0.19459278189716145 -7604.0,0.19452558353675506 -7605.0,0.1944584083818325 -7606.0,0.19439125642438015 -7607.0,0.19432412765638737 -7608.0,0.1942570220698461 -7609.0,0.1941899396567512 -7610.0,0.19412288040910017 -7611.0,0.1940558443188934 -7612.0,0.19398883137813386 -7613.0,0.19392184157882753 -7614.0,0.19385487491298292 -7615.0,0.19378793137261147 -7616.0,0.1937210109497272 -7617.0,0.19365411363634707 -7618.0,0.19358723942449074 -7619.0,0.1935203883061805 -7620.0,0.19345356027344165 -7621.0,0.19338675531830193 -7622.0,0.19331997343279214 -7623.0,0.19325321460894557 -7624.0,0.19318647883879847 -7625.0,0.19311976611438966 -7626.0,0.1930530764277609 -7627.0,0.1929864097709565 -7628.0,0.19291976613602368 -7629.0,0.19285314551501231 -7630.0,0.19278654789997507 -7631.0,0.1927199732829673 -7632.0,0.19265342165604718 -7633.0,0.19258689301127555 -7634.0,0.19252038734071605 -7635.0,0.192453904636435 -7636.0,0.19238744489050152 -7637.0,0.1923210080949875 -7638.0,0.19225459424196745 -7639.0,0.1921882033235187 -7640.0,0.1921218353317213 -7641.0,0.19205549025865806 -7642.0,0.19198916809641442 -7643.0,0.19192286883707874 -7644.0,0.19185659247274187 -7645.0,0.19179033899549766 -7646.0,0.19172410839744242 -7647.0,0.19165790067067542 -7648.0,0.19159171580729853 -7649.0,0.19152555379941638 -7650.0,0.19145941463913632 -7651.0,0.19139329831856844 -7652.0,0.19132720482982551 -7653.0,0.19126113416502313 -7654.0,0.19119508631627946 -7655.0,0.19112906127571552 -7656.0,0.19106305903545506 -7657.0,0.19099707958762438 -7658.0,0.19093112292435274 -7659.0,0.19086518903777186 -7660.0,0.1907992779200164 -7661.0,0.1907333895632236 -7662.0,0.1906675239595335 -7663.0,0.19060168110108877 -7664.0,0.1905358609800349 -7665.0,0.19047006358851992 -7666.0,0.1904042889186948 -7667.0,0.190338536962713 -7668.0,0.1902728077127309 -7669.0,0.19020710116090733 -7670.0,0.19014141729940415 -7671.0,0.19007575612038563 -7672.0,0.19001011761601894 -7673.0,0.1899445017784738 -7674.0,0.1898789085999228 -7675.0,0.18981333807254114 -7676.0,0.18974779018850668 -7677.0,0.18968226494000015 -7678.0,0.18961676231920474 -7679.0,0.18955128231830654 -7680.0,0.1894858249294942 -7681.0,0.18942039014495923 -7682.0,0.18935497795689563 -7683.0,0.1892895883575003 -7684.0,0.18922422133897263 -7685.0,0.1891588768935149 -7686.0,0.18909355501333194 -7687.0,0.1890282556906314 -7688.0,0.18896297891762345 -7689.0,0.18889772468652113 -7690.0,0.18883249298954002 -7691.0,0.1887672838188985 -7692.0,0.18870209716681755 -7693.0,0.1886369330255209 -7694.0,0.188571791387235 -7695.0,0.18850667224418882 -7696.0,0.1884415755886142 -7697.0,0.18837650141274556 -7698.0,0.18831144970882005 -7699.0,0.18824642046907739 -7700.0,0.18818141368576016 -7701.0,0.18811642935111347 -7702.0,0.1880514674573852 -7703.0,0.18798652799682586 -7704.0,0.18792161096168863 -7705.0,0.18785671634422937 -7706.0,0.1877918441367067 -7707.0,0.18772699433138174 -7708.0,0.18766216692051843 -7709.0,0.18759736189638332 -7710.0,0.18753257925124567 -7711.0,0.18746781897737733 -7712.0,0.18740308106705292 -7713.0,0.18733836551254968 -7714.0,0.18727367230614747 -7715.0,0.18720900144012895 -7716.0,0.18714435290677922 -7717.0,0.18707972669838632 -7718.0,0.18701512280724072 -7719.0,0.18695054122563573 -7720.0,0.18688598194586714 -7721.0,0.1868214449602336 -7722.0,0.1867569302610362 -7723.0,0.18669243784057896 -7724.0,0.18662796769116824 -7725.0,0.18656351980511335 -7726.0,0.18649909417472604 -7727.0,0.18643469079232086 -7728.0,0.18637030965021492 -7729.0,0.18630595074072803 -7730.0,0.18624161405618267 -7731.0,0.1861772995889039 -7732.0,0.18611300733121952 -7733.0,0.18604873727545987 -7734.0,0.18598448941395807 -7735.0,0.18592026373904974 -7736.0,0.1858560602430733 -7737.0,0.18579187891836968 -7738.0,0.18572771975728258 -7739.0,0.18566358275215822 -7740.0,0.18559946789534557 -7741.0,0.18553537517919613 -7742.0,0.1854713045960642 -7743.0,0.18540725613830655 -7744.0,0.18534322979828272 -7745.0,0.18527922556835477 -7746.0,0.18521524344088752 -7747.0,0.18515128340824832 -7748.0,0.18508734546280725 -7749.0,0.185023429596937 -7750.0,0.18495953580301275 -7751.0,0.1848956640734126 -7752.0,0.184831814400517 -7753.0,0.1847679867767092 -7754.0,0.18470418119437498 -7755.0,0.1846403976459029 -7756.0,0.18457663612368397 -7757.0,0.18451289662011192 -7758.0,0.18444917912758307 -7759.0,0.18438548363849644 -7760.0,0.18432181014525356 -7761.0,0.1842581586402587 -7762.0,0.18419452911591866 -7763.0,0.18413092156464295 -7764.0,0.1840673359788436 -7765.0,0.18400377235093535 -7766.0,0.18394023067333548 -7767.0,0.18387671093846397 -7768.0,0.1838132131387434 -7769.0,0.18374973726659888 -7770.0,0.1836862833144583 -7771.0,0.18362285127475192 -7772.0,0.1835594411399129 -7773.0,0.18349605290237678 -7774.0,0.18343268655458186 -7775.0,0.18336934208896896 -7776.0,0.18330601949798161 -7777.0,0.18324271877406578 -7778.0,0.18317943990967028 -7779.0,0.1831161828972463 -7780.0,0.1830529477292478 -7781.0,0.18298973439813124 -7782.0,0.1829265428963558 -7783.0,0.18286337321638307 -7784.0,0.18280022535067753 -7785.0,0.18273709929170598 -7786.0,0.18267399503193796 -7787.0,0.18261091256384565 -7788.0,0.1825478518799037 -7789.0,0.1824848129725895 -7790.0,0.1824217958343829 -7791.0,0.18235880045776648 -7792.0,0.18229582683522527 -7793.0,0.18223287495924706 -7794.0,0.18216994482232207 -7795.0,0.18210703641694329 -7796.0,0.18204414973560612 -7797.0,0.1819812847708087 -7798.0,0.18191844151505163 -7799.0,0.18185561996083824 -7800.0,0.1817928201006743 -7801.0,0.18173004192706835 -7802.0,0.18166728543253127 -7803.0,0.1816045506095768 -7804.0,0.18154183745072106 -7805.0,0.18147914594848283 -7806.0,0.18141647609538353 -7807.0,0.18135382788394702 -7808.0,0.1812912013066999 -7809.0,0.18122859635617122 -7810.0,0.1811660130248927 -7811.0,0.1811034513053986 -7812.0,0.18104091119022575 -7813.0,0.18097839267191357 -7814.0,0.18091589574300407 -7815.0,0.1808534203960418 -7816.0,0.18079096662357394 -7817.0,0.18072853441815018 -7818.0,0.18066612377232283 -7819.0,0.18060373467864674 -7820.0,0.1805413671296794 -7821.0,0.1804790211179807 -7822.0,0.18041669663611334 -7823.0,0.18035439367664238 -7824.0,0.18029211223213557 -7825.0,0.1802298522951632 -7826.0,0.18016761385829808 -7827.0,0.18010539691411565 -7828.0,0.1800432014551938 -7829.0,0.1799810274741132 -7830.0,0.17991887496345685 -7831.0,0.17985674391581047 -7832.0,0.1797946343237622 -7833.0,0.1797325461799029 -7834.0,0.17967047947682582 -7835.0,0.17960843420712697 -7836.0,0.17954641036340466 -7837.0,0.17948440793826004 -7838.0,0.17942242692429655 -7839.0,0.17936046731412042 -7840.0,0.17929852910034022 -7841.0,0.17923661227556728 -7842.0,0.17917471683241523 -7843.0,0.1791128427635005 -7844.0,0.17905099006144198 -7845.0,0.178989158718861 -7846.0,0.17892734872838165 -7847.0,0.17886556008263035 -7848.0,0.17880379277423622 -7849.0,0.1787420467958308 -7850.0,0.17868032214004836 -7851.0,0.17861861879952548 -7852.0,0.17855693676690151 -7853.0,0.17849527603481813 -7854.0,0.17843363659591976 -7855.0,0.17837201844285316 -7856.0,0.17831042156826785 -7857.0,0.17824884596481566 -7858.0,0.17818729162515118 -7859.0,0.1781257585419313 -7860.0,0.1780642467078157 -7861.0,0.17800275611546637 -7862.0,0.17794128675754797 -7863.0,0.17787983862672768 -7864.0,0.17781841171567514 -7865.0,0.1777570060170626 -7866.0,0.17769562152356477 -7867.0,0.17763425822785897 -7868.0,0.17757291612262496 -7869.0,0.17751159520054516 -7870.0,0.1774502954543043 -7871.0,0.1773890168765899 -7872.0,0.17732775946009174 -7873.0,0.1772665231975024 -7874.0,0.17720530808151672 -7875.0,0.17714411410483227 -7876.0,0.17708294126014898 -7877.0,0.17702178954016945 -7878.0,0.17696065893759866 -7879.0,0.17689954944514424 -7880.0,0.17683846105551618 -7881.0,0.17677739376142715 -7882.0,0.17671634755559226 -7883.0,0.17665532243072915 -7884.0,0.17659431837955797 -7885.0,0.17653333539480132 -7886.0,0.17647237346918446 -7887.0,0.176411432595435 -7888.0,0.17635051276628325 -7889.0,0.17628961397446175 -7890.0,0.17622873621270588 -7891.0,0.17616787947375326 -7892.0,0.1761070437503442 -7893.0,0.17604622903522135 -7894.0,0.17598543532113006 -7895.0,0.175924662600818 -7896.0,0.1758639108670355 -7897.0,0.17580318011253523 -7898.0,0.1757424703300726 -7899.0,0.17568178151240518 -7900.0,0.17562111365229338 -7901.0,0.17556046674249998 -7902.0,0.17549984077579012 -7903.0,0.1754392357449317 -7904.0,0.17537865164269487 -7905.0,0.17531808846185246 -7906.0,0.1752575461951797 -7907.0,0.17519702483545435 -7908.0,0.17513652437545663 -7909.0,0.1750760448079693 -7910.0,0.17501558612577756 -7911.0,0.17495514832166917 -7912.0,0.17489473138843428 -7913.0,0.1748343353188657 -7914.0,0.1747739601057585 -7915.0,0.17471360574191042 -7916.0,0.17465327222012159 -7917.0,0.1745929595331947 -7918.0,0.17453266767393485 -7919.0,0.17447239663514968 -7920.0,0.17441214640964933 -7921.0,0.1743519169902463 -7922.0,0.17429170836975577 -7923.0,0.17423152054099517 -7924.0,0.17417135349678464 -7925.0,0.1741112072299466 -7926.0,0.17405108173330613 -7927.0,0.1739909769996906 -7928.0,0.17393089302193004 -7929.0,0.17387082979285678 -7930.0,0.17381078730530583 -7931.0,0.17375076555211444 -7932.0,0.17369076452612253 -7933.0,0.17363078422017236 -7934.0,0.17357082462710882 -7935.0,0.17351088573977902 -7936.0,0.17345096755103281 -7937.0,0.1733910700537223 -7938.0,0.17333119324070223 -7939.0,0.1732713371048297 -7940.0,0.1732115016389643 -7941.0,0.1731516868359681 -7942.0,0.17309189268870562 -7943.0,0.1730321191900439 -7944.0,0.17297236633285235 -7945.0,0.1729126341100029 -7946.0,0.17285292251436993 -7947.0,0.17279323153883033 -7948.0,0.17273356117626332 -7949.0,0.1726739114195507 -7950.0,0.1726142822615767 -7951.0,0.172554673695228 -7952.0,0.1724950857133937 -7953.0,0.17243551830896542 -7954.0,0.1723759714748372 -7955.0,0.17231644520390552 -7956.0,0.1722569394890693 -7957.0,0.17219745432323 -7958.0,0.17213798969929148 -7959.0,0.17207854561015998 -7960.0,0.1720191220487443 -7961.0,0.17195971900795565 -7962.0,0.17190033648070766 -7963.0,0.17184097445991642 -7964.0,0.1717816329385005 -7965.0,0.17172231190938084 -7966.0,0.17166301136548096 -7967.0,0.17160373129972661 -7968.0,0.17154447170504625 -7969.0,0.17148523257437054 -7970.0,0.17142601390063275 -7971.0,0.17136681567676845 -7972.0,0.17130763789571585 -7973.0,0.1712484805504153 -7974.0,0.17118934363380992 -7975.0,0.171130227138845 -7976.0,0.17107113105846838 -7977.0,0.1710120553856304 -7978.0,0.17095300011328374 -7979.0,0.17089396523438352 -7980.0,0.17083495074188726 -7981.0,0.17077595662875505 -7982.0,0.17071698288794926 -7983.0,0.1706580295124348 -7984.0,0.1705990964951789 -7985.0,0.17054018382915137 -7986.0,0.17048129150732425 -7987.0,0.17042241952267223 -7988.0,0.1703635678681722 -7989.0,0.17030473653680367 -7990.0,0.17024592552154844 -7991.0,0.17018713481539086 -7992.0,0.1701283644113175 -7993.0,0.1700696143023176 -7994.0,0.17001088448138263 -7995.0,0.16995217494150655 -7996.0,0.16989348567568582 -7997.0,0.16983481667691913 -7998.0,0.1697761679382078 -7999.0,0.16971753945255535 -8000.0,0.16965893121296796 -8001.0,0.16960034321245399 -8002.0,0.16954177544402435 -8003.0,0.16948322790069234 -8004.0,0.16942470057547368 -8005.0,0.16936619346138643 -8006.0,0.1693077065514512 -8007.0,0.16924923983869083 -8008.0,0.16919079331613077 -8009.0,0.16913236697679868 -8010.0,0.16907396081372483 -8011.0,0.16901557481994167 -8012.0,0.1689572089884843 -8013.0,0.16889886331238999 -8014.0,0.16884053778469857 -8015.0,0.16878223239845228 -8016.0,0.1687239471466956 -8017.0,0.16866568202247567 -8018.0,0.16860743701884176 -8019.0,0.16854921212884574 -8020.0,0.16849100734554176 -8021.0,0.16843282266198645 -8022.0,0.16837465807123878 -8023.0,0.16831651356636015 -8024.0,0.1682583891404143 -8025.0,0.1682002847864675 -8026.0,0.16814220049758824 -8027.0,0.16808413626684754 -8028.0,0.1680260920873187 -8029.0,0.16796806795207755 -8030.0,0.16791006385420218 -8031.0,0.16785207978677316 -8032.0,0.16779411574287337 -8033.0,0.16773617171558813 -8034.0,0.1676782476980052 -8035.0,0.1676203436832146 -8036.0,0.16756245966430883 -8037.0,0.16750459563438275 -8038.0,0.1674467515865336 -8039.0,0.16738892751386097 -8040.0,0.16733112340946696 -8041.0,0.16727333926645588 -8042.0,0.16721557507793455 -8043.0,0.16715783083701205 -8044.0,0.16710010653680002 -8045.0,0.1670424021704123 -8046.0,0.1669847177309652 -8047.0,0.16692705321157736 -8048.0,0.1668694086053699 -8049.0,0.16681178390546614 -8050.0,0.16675417910499196 -8051.0,0.16669659419707544 -8052.0,0.1666390291748472 -8053.0,0.1665814840314401 -8054.0,0.16652395875998946 -8055.0,0.16646645335363291 -8056.0,0.16640896780551048 -8057.0,0.1663515021087646 -8058.0,0.16629405625653995 -8059.0,0.16623663024198376 -8060.0,0.16617922405824542 -8061.0,0.1661218376984769 -8062.0,0.1660644711558323 -8063.0,0.16600712442346835 -8064.0,0.1659497974945439 -8065.0,0.16589249036222029 -8066.0,0.16583520301966118 -8067.0,0.1657779354600327 -8068.0,0.1657206876765031 -8069.0,0.16566345966224327 -8070.0,0.16560625141042623 -8071.0,0.1655490629142275 -8072.0,0.16549189416682494 -8073.0,0.16543474516139867 -8074.0,0.16537761589113129 -8075.0,0.1653205063492076 -8076.0,0.165263416528815 -8077.0,0.1652063464231429 -8078.0,0.16514929602538345 -8079.0,0.16509226532873078 -8080.0,0.1650352543263817 -8081.0,0.16497826301153506 -8082.0,0.16492129137739234 -8083.0,0.16486433941715714 -8084.0,0.1648074071240356 -8085.0,0.16475049449123602 -8086.0,0.16469360151196924 -8087.0,0.16463672817944822 -8088.0,0.16457987448688852 -8089.0,0.1645230404275078 -8090.0,0.16446622599452618 -8091.0,0.1644094311811662 -8092.0,0.16435265598065255 -8093.0,0.16429590038621245 -8094.0,0.1642391643910753 -8095.0,0.16418244798847298 -8096.0,0.16412575117163955 -8097.0,0.16406907393381157 -8098.0,0.1640124162682278 -8099.0,0.16395577816812948 -8100.0,0.16389915962675997 -8101.0,0.16384256063736521 -8102.0,0.1637859811931933 -8103.0,0.1637294212874947 -8104.0,0.16367288091352228 -8105.0,0.16361636006453117 -8106.0,0.1635598587337788 -8107.0,0.16350337691452504 -8108.0,0.16344691460003197 -8109.0,0.16339047178356403 -8110.0,0.16333404845838811 -8111.0,0.1632776446177732 -8112.0,0.1632212602549908 -8113.0,0.16316489536331466 -8114.0,0.16310854993602086 -8115.0,0.16305222396638774 -8116.0,0.16299591744769612 -8117.0,0.16293963037322895 -8118.0,0.1628833627362717 -8119.0,0.16282711453011192 -8120.0,0.16277088574803975 -8121.0,0.16271467638334736 -8122.0,0.1626584864293295 -8123.0,0.16260231587928306 -8124.0,0.16254616472650732 -8125.0,0.16249003296430384 -8126.0,0.16243392058597655 -8127.0,0.1623778275848316 -8128.0,0.16232175395417756 -8129.0,0.1622656996873252 -8130.0,0.1622096647775877 -8131.0,0.1621536492182805 -8132.0,0.16209765300272128 -8133.0,0.1620416761242302 -8134.0,0.16198571857612956 -8135.0,0.1619297803517441 -8136.0,0.1618738614444007 -8137.0,0.16181796184742872 -8138.0,0.16176208155415972 -8139.0,0.16170622055792758 -8140.0,0.16165037885206848 -8141.0,0.161594556429921 -8142.0,0.16153875328482578 -8143.0,0.16148296941012605 -8144.0,0.1614272047991671 -8145.0,0.16137145944529674 -8146.0,0.1613157333418648 -8147.0,0.16126002648222365 -8148.0,0.1612043388597279 -8149.0,0.16114867046773435 -8150.0,0.16109302129960223 -8151.0,0.16103739134869294 -8152.0,0.1609817806083703 -8153.0,0.16092618907200026 -8154.0,0.16087061673295125 -8155.0,0.16081506358459383 -8156.0,0.160759529620301 -8157.0,0.16070401483344782 -8158.0,0.1606485192174119 -8159.0,0.16059304276557299 -8160.0,0.16053758547131317 -8161.0,0.1604821473280167 -8162.0,0.16042672832907034 -8163.0,0.1603713284678629 -8164.0,0.16031594773778565 -8165.0,0.16026058613223204 -8166.0,0.16020524364459782 -8167.0,0.1601499202682811 -8168.0,0.16009461599668212 -8169.0,0.1600393308232036 -8170.0,0.15998406474125026 -8171.0,0.1599288177442294 -8172.0,0.1598735898255504 -8173.0,0.15981838097862497 -8174.0,0.15976319119686708 -8175.0,0.15970802047369306 -8176.0,0.15965286880252136 -8177.0,0.15959773617677284 -8178.0,0.15954262258987056 -8179.0,0.15948752803523988 -8180.0,0.15943245250630841 -8181.0,0.15937739599650608 -8182.0,0.159322358499265 -8183.0,0.15926734000801962 -8184.0,0.1592123405162066 -8185.0,0.15915736001726496 -8186.0,0.15910239850463592 -8187.0,0.15904745597176292 -8188.0,0.1589925324120918 -8189.0,0.15893762781907048 -8190.0,0.15888274218614934 -8191.0,0.15882787550678082 -8192.0,0.15877302777441982 -8193.0,0.15871819898252335 -8194.0,0.15866338912455077 -8195.0,0.1586085981939636 -8196.0,0.1585538261842258 -8197.0,0.15849907308880334 -8198.0,0.15844433890116466 -8199.0,0.15838962361478032 -8200.0,0.15833492722312323 -8201.0,0.15828024971966845 -8202.0,0.15822559109789344 -8203.0,0.15817095135127773 -8204.0,0.15811633047330323 -8205.0,0.15806172845745411 -8206.0,0.15800714529721668 -8207.0,0.15795258098607967 -8208.0,0.1578980355175338 -8209.0,0.15784350888507237 -8210.0,0.1577890010821906 -8211.0,0.1577345121023862 -8212.0,0.15768004193915897 -8213.0,0.15762559058601108 -8214.0,0.1575711580364468 -8215.0,0.1575167442839728 -8216.0,0.15746234932209788 -8217.0,0.15740797314433316 -8218.0,0.15735361574419188 -8219.0,0.15729927711518965 -8220.0,0.15724495725084425 -8221.0,0.15719065614467576 -8222.0,0.1571363737902064 -8223.0,0.15708211018096066 -8224.0,0.1570278653104654 -8225.0,0.15697363917224946 -8226.0,0.15691943175984419 -8227.0,0.15686524306678293 -8228.0,0.15681107308660144 -8229.0,0.1567569218128376 -8230.0,0.15670278923903158 -8231.0,0.1566486753587257 -8232.0,0.15659458016546468 -8233.0,0.15654050365279523 -8234.0,0.15648644581426652 -8235.0,0.15643240664342978 -8236.0,0.15637838613383856 -8237.0,0.1563243842790486 -8238.0,0.1562704010726179 -8239.0,0.15621643650810657 -8240.0,0.15616249057907713 -8241.0,0.15610856327909414 -8242.0,0.15605465460172455 -8243.0,0.1560007645405374 -8244.0,0.155946893089104 -8245.0,0.1558930402409979 -8246.0,0.1558392059897948 -8247.0,0.15578539032907276 -8248.0,0.15573159325241184 -8249.0,0.15567781475339457 -8250.0,0.15562405482560546 -8251.0,0.1555703134626314 -8252.0,0.1555165906580614 -8253.0,0.15546288640548678 -8254.0,0.15540920069850092 -8255.0,0.1553555335306996 -8256.0,0.1553018848956807 -8257.0,0.1552482547870443 -8258.0,0.1551946431983927 -8259.0,0.1551410501233305 -8260.0,0.15508747555546437 -8261.0,0.15503391948840325 -8262.0,0.1549803819157584 -8263.0,0.15492686283114301 -8264.0,0.1548733622281728 -8265.0,0.15481988010046543 -8266.0,0.15476641644164096 -8267.0,0.1547129712453215 -8268.0,0.15465954450513145 -8269.0,0.15460613621469735 -8270.0,0.15455274636764807 -8271.0,0.15449937495761448 -8272.0,0.15444602197822987 -8273.0,0.1543926874231295 -8274.0,0.15433937128595107 -8275.0,0.15428607356033427 -8276.0,0.15423279423992112 -8277.0,0.15417953331835574 -8278.0,0.15412629078928453 -8279.0,0.15407306664635598 -8280.0,0.1540198608832209 -8281.0,0.15396667349353224 -8282.0,0.1539135044709451 -8283.0,0.1538603538091168 -8284.0,0.15380722150170686 -8285.0,0.153754107542377 -8286.0,0.15370101192479108 -8287.0,0.15364793464261522 -8288.0,0.15359487568951766 -8289.0,0.15354183505916885 -8290.0,0.15348881274524145 -8291.0,0.15343580874141027 -8292.0,0.1533828230413523 -8293.0,0.1533298556387468 -8294.0,0.15327690652727505 -8295.0,0.15322397570062068 -8296.0,0.1531710631524694 -8297.0,0.15311816887650917 -8298.0,0.15306529286643 -8299.0,0.15301243511592422 -8300.0,0.15295959561868633 -8301.0,0.15290677436841285 -8302.0,0.15285397135880274 -8303.0,0.15280118658355685 -8304.0,0.15274842003637842 -8305.0,0.15269567171097273 -8306.0,0.15264294160104735 -8307.0,0.1525902297003119 -8308.0,0.15253753600247835 -8309.0,0.15248486050126056 -8310.0,0.15243220319037487 -8311.0,0.15237956406353953 -8312.0,0.15232694311447517 -8313.0,0.15227434033690443 -8314.0,0.15222175572455227 -8315.0,0.1521691892711456 -8316.0,0.15211664097041372 -8317.0,0.15206411081608798 -8318.0,0.15201159880190188 -8319.0,0.1519591049215912 -8320.0,0.15190662916889372 -8321.0,0.15185417153754951 -8322.0,0.15180173202130073 -8323.0,0.1517493106138918 -8324.0,0.1516969073090691 -8325.0,0.15164452210058144 -8326.0,0.1515921549821795 -8327.0,0.1515398059476164 -8328.0,0.1514874749906472 -8329.0,0.15143516210502922 -8330.0,0.1513828672845219 -8331.0,0.15133059052288692 -8332.0,0.15127833181388795 -8333.0,0.15122609115129096 -8334.0,0.15117386852886397 -8335.0,0.15112166394037727 -8336.0,0.1510694773796032 -8337.0,0.15101730884031625 -8338.0,0.15096515831629317 -8339.0,0.1509130258013127 -8340.0,0.1508609112891559 -8341.0,0.1508088147736058 -8342.0,0.15075673624844774 -8343.0,0.15070467570746907 -8344.0,0.1506526331444594 -8345.0,0.15060060855321036 -8346.0,0.1505486019275159 -8347.0,0.1504966132611719 -8348.0,0.15044464254797657 -8349.0,0.15039268978173015 -8350.0,0.15034075495623508 -8351.0,0.15028883806529586 -8352.0,0.15023693910271924 -8353.0,0.150185058062314 -8354.0,0.15013319493789115 -8355.0,0.15008134972326378 -8356.0,0.15002952241224712 -8357.0,0.14997771299865864 -8358.0,0.14992592147631773 -8359.0,0.14987414783904612 -8360.0,0.14982239208066753 -8361.0,0.14977065419500793 -8362.0,0.14971893417589535 -8363.0,0.14966723201715998 -8364.0,0.14961554771263408 -8365.0,0.14956388125615216 -8366.0,0.14951223264155075 -8367.0,0.14946060186266855 -8368.0,0.14940898891334636 -8369.0,0.1493573937874272 -8370.0,0.14930581647875607 -8371.0,0.14925425698118025 -8372.0,0.14920271528854898 -8373.0,0.14915119139471378 -8374.0,0.14909968529352818 -8375.0,0.1490481969788479 -8376.0,0.14899672644453082 -8377.0,0.14894527368443675 -8378.0,0.14889383869242787 -8379.0,0.14884242146236829 -8380.0,0.14879102198812436 -8381.0,0.14873964026356443 -8382.0,0.1486882762825591 -8383.0,0.14863693003898096 -8384.0,0.14858560152670486 -8385.0,0.14853429073960758 -8386.0,0.14848299767156825 -8387.0,0.14843172231646784 -8388.0,0.14838046466818966 -8389.0,0.14832922472061902 -8390.0,0.1482780024676434 -8391.0,0.14822679790315227 -8392.0,0.1481756110210374 -8393.0,0.14812444181519252 -8394.0,0.14807329027951352 -8395.0,0.14802215640789843 -8396.0,0.14797104019424728 -8397.0,0.14791994163246233 -8398.0,0.1478688607164479 -8399.0,0.1478177974401104 -8400.0,0.1477667517973583 -8401.0,0.14771572378210232 -8402.0,0.14766471338825513 -8403.0,0.14761372060973157 -8404.0,0.14756274544044856 -8405.0,0.1475117878743252 -8406.0,0.14746084790528255 -8407.0,0.14740992552724388 -8408.0,0.14735902073413448 -8409.0,0.14730813351988184 -8410.0,0.14725726387841545 -8411.0,0.14720641180366695 -8412.0,0.14715557728957002 -8413.0,0.1471047603300605 -8414.0,0.14705396091907633 -8415.0,0.14700317905055746 -8416.0,0.14695241471844603 -8417.0,0.14690166791668616 -8418.0,0.1468509386392242 -8419.0,0.14680022688000843 -8420.0,0.1467495326329894 -8421.0,0.1466988558921196 -8422.0,0.1466481966513537 -8423.0,0.14659755490464835 -8424.0,0.14654693064596247 -8425.0,0.14649632386925684 -8426.0,0.14644573456849455 -8427.0,0.14639516273764056 -8428.0,0.1463446083706621 -8429.0,0.14629407146152834 -8430.0,0.1462435520042107 -8431.0,0.1461930499926824 -8432.0,0.14614256542091908 -8433.0,0.14609209828289824 -8434.0,0.14604164857259952 -8435.0,0.14599121628400463 -8436.0,0.14594080141109736 -8437.0,0.14589040394786365 -8438.0,0.14584002388829134 -8439.0,0.14578966122637055 -8440.0,0.1457393159560933 -8441.0,0.14568898807145386 -8442.0,0.14563867756644838 -8443.0,0.14558838443507527 -8444.0,0.14553810867133488 -8445.0,0.1454878502692297 -8446.0,0.14543760922276422 -8447.0,0.14538738552594513 -8448.0,0.14533717917278105 -8449.0,0.14528699015728275 -8450.0,0.145236818473463 -8451.0,0.14518666411533676 -8452.0,0.14513652707692096 -8453.0,0.14508640735223458 -8454.0,0.14503630493529873 -8455.0,0.14498621982013654 -8456.0,0.14493615200077328 -8457.0,0.14488610147123612 -8458.0,0.14483606822555448 -8459.0,0.14478605225775973 -8460.0,0.14473605356188532 -8461.0,0.1446860721319668 -8462.0,0.14463610796204174 -8463.0,0.1445861610461497 -8464.0,0.14453623137833255 -8465.0,0.14448631895263386 -8466.0,0.14443642376309956 -8467.0,0.14438654580377747 -8468.0,0.14433668506871755 -8469.0,0.14428684155197172 -8470.0,0.14423701524759405 -8471.0,0.14418720614964065 -8472.0,0.14413741425216958 -8473.0,0.14408763954924111 -8474.0,0.14403788203491744 -8475.0,0.14398814170326288 -8476.0,0.14393841854834374 -8477.0,0.14388871256422847 -8478.0,0.14383902374498742 -8479.0,0.14378935208469315 -8480.0,0.14373969757742017 -8481.0,0.14369006021724506 -8482.0,0.1436404399982464 -8483.0,0.14359083691450497 -8484.0,0.14354125096010337 -8485.0,0.14349168212912644 -8486.0,0.1434421304156609 -8487.0,0.14339259581379565 -8488.0,0.14334307831762155 -8489.0,0.14329357792123154 -8490.0,0.1432440946187206 -8491.0,0.14319462840418568 -8492.0,0.14314517927172585 -8493.0,0.1430957472154422 -8494.0,0.14304633222943783 -8495.0,0.14299693430781787 -8496.0,0.1429475534446896 -8497.0,0.14289818963416212 -8498.0,0.1428488428703468 -8499.0,0.1427995131473568 -8500.0,0.14275020045930759 -8501.0,0.1427009048003164 -8502.0,0.14265162616450275 -8503.0,0.1426023645459879 -8504.0,0.14255311993889544 -8505.0,0.14250389233735075 -8506.0,0.1424546817354814 -8507.0,0.14240548812741685 -8508.0,0.14235631150728875 -8509.0,0.14230715186923065 -8510.0,0.14225800920737813 -8511.0,0.1422088835158689 -8512.0,0.14215977478884254 -8513.0,0.14211068302044083 -8514.0,0.14206160820480737 -8515.0,0.142012550336088 -8516.0,0.1419635094084304 -8517.0,0.14191448541598436 -8518.0,0.1418654783529017 -8519.0,0.14181648821333623 -8520.0,0.14176751499144372 -8521.0,0.14171855868138214 -8522.0,0.14166961927731125 -8523.0,0.141620696773393 -8524.0,0.14157179116379126 -8525.0,0.141522902442672 -8526.0,0.14147403060420305 -8527.0,0.14142517564255444 -8528.0,0.14137633755189813 -8529.0,0.14132751632640803 -8530.0,0.1412787119602602 -8531.0,0.14122992444763258 -8532.0,0.1411811537827052 -8533.0,0.14113239995966007 -8534.0,0.1410836629726812 -8535.0,0.14103494281595463 -8536.0,0.14098623948366845 -8537.0,0.14093755297001262 -8538.0,0.14088888326917925 -8539.0,0.14084023037536236 -8540.0,0.1407915942827581 -8541.0,0.14074297498556443 -8542.0,0.1406943724779815 -8543.0,0.14064578675421133 -8544.0,0.14059721780845807 -8545.0,0.1405486656349277 -8546.0,0.14050013022782837 -8547.0,0.14045161158137018 -8548.0,0.14040310968976513 -8549.0,0.14035462454722736 -8550.0,0.14030615614797293 -8551.0,0.1402577044862199 -8552.0,0.14020926955618834 -8553.0,0.14016085135210038 -8554.0,0.14011244986817997 -8555.0,0.14006406509865324 -8556.0,0.14001569703774822 -8557.0,0.139967345679695 -8558.0,0.1399190110187255 -8559.0,0.13987069304907387 -8560.0,0.13982239176497605 -8561.0,0.1397741071606701 -8562.0,0.13972583923039597 -8563.0,0.1396775879683957 -8564.0,0.1396293533689132 -8565.0,0.1395811354261945 -8566.0,0.13953293413448753 -8567.0,0.13948474948804218 -8568.0,0.1394365814811105 -8569.0,0.13938843010794622 -8570.0,0.13934029536280537 -8571.0,0.13929217723994577 -8572.0,0.13924407573362732 -8573.0,0.1391959908381118 -8574.0,0.1391479225476631 -8575.0,0.13909987085654693 -8576.0,0.13905183575903118 -8577.0,0.13900381724938551 -8578.0,0.13895581532188178 -8579.0,0.1389078299707936 -8580.0,0.13885986119039673 -8581.0,0.1388119089749688 -8582.0,0.13876397331878954 -8583.0,0.13871605421614047 -8584.0,0.13866815166130525 -8585.0,0.1386202656485695 -8586.0,0.13857239617222064 -8587.0,0.13852454322654834 -8588.0,0.13847670680584398 -8589.0,0.13842888690440108 -8590.0,0.13838108351651504 -8591.0,0.1383332966364833 -8592.0,0.13828552625860518 -8593.0,0.1382377723771821 -8594.0,0.1381900349865173 -8595.0,0.1381423140809161 -8596.0,0.1380946096546857 -8597.0,0.1380469217021354 -8598.0,0.13799925021757625 -8599.0,0.1379515951953215 -8600.0,0.13790395662968616 -8601.0,0.13785633451498738 -8602.0,0.13780872884554413 -8603.0,0.13776113961567743 -8604.0,0.13771356681971023 -8605.0,0.1376660104519674 -8606.0,0.13761847050677592 -8607.0,0.1375709469784645 -8608.0,0.137523439861364 -8609.0,0.13747594914980713 -8610.0,0.13742847483812864 -8611.0,0.13738101692066512 -8612.0,0.13733357539175528 -8613.0,0.1372861502457396 -8614.0,0.13723874147696066 -8615.0,0.1371913490797629 -8616.0,0.13714397304849282 -8617.0,0.13709661337749873 -8618.0,0.13704927006113102 -8619.0,0.13700194309374195 -8620.0,0.13695463246968578 -8621.0,0.13690733818331866 -8622.0,0.13686006022899871 -8623.0,0.13681279860108614 -8624.0,0.13676555329394283 -8625.0,0.13671832430193287 -8626.0,0.1366711116194221 -8627.0,0.13662391524077847 -8628.0,0.13657673516037175 -8629.0,0.1365295713725737 -8630.0,0.13648242387175802 -8631.0,0.1364352926523004 -8632.0,0.13638817770857836 -8633.0,0.13634107903497153 -8634.0,0.13629399662586125 -8635.0,0.13624693047563105 -8636.0,0.1361998805786662 -8637.0,0.13615284692935406 -8638.0,0.1361058295220838 -8639.0,0.13605882835124664 -8640.0,0.13601184341123562 -8641.0,0.1359648746964458 -8642.0,0.13591792220127422 -8643.0,0.1358709859201197 -8644.0,0.13582406584738313 -8645.0,0.13577716197746725 -8646.0,0.13573027430477685 -8647.0,0.1356834028237185 -8648.0,0.1356365475287008 -8649.0,0.1355897084141342 -8650.0,0.13554288547443125 -8651.0,0.1354960787040062 -8652.0,0.13544928809727544 -8653.0,0.1354025136486571 -8654.0,0.1353557553525714 -8655.0,0.1353090132034404 -8656.0,0.13526228719568809 -8657.0,0.13521557732374037 -8658.0,0.1351688835820251 -8659.0,0.13512220596497213 -8660.0,0.13507554446701314 -8661.0,0.13502889908258167 -8662.0,0.13498226980611333 -8663.0,0.13493565663204557 -8664.0,0.13488905955481786 -8665.0,0.13484247856887135 -8666.0,0.13479591366864938 -8667.0,0.13474936484859704 -8668.0,0.1347028321031615 -8669.0,0.13465631542679163 -8670.0,0.13460981481393833 -8671.0,0.13456333025905445 -8672.0,0.13451686175659483 -8673.0,0.13447040930101592 -8674.0,0.13442397288677638 -8675.0,0.13437755250833666 -8676.0,0.13433114816015923 -8677.0,0.13428475983670826 -8678.0,0.13423838753245004 -8679.0,0.13419203124185267 -8680.0,0.1341456909593862 -8681.0,0.13409936667952257 -8682.0,0.13405305839673562 -8683.0,0.13400676610550108 -8684.0,0.13396048980029668 -8685.0,0.133914229475602 -8686.0,0.13386798512589843 -8687.0,0.1338217567456694 -8688.0,0.13377554432940023 -8689.0,0.13372934787157814 -8690.0,0.1336831673666921 -8691.0,0.13363700280923327 -8692.0,0.13359085419369443 -8693.0,0.13354472151457053 -8694.0,0.1334986047663581 -8695.0,0.13345250394355584 -8696.0,0.13340641904066428 -8697.0,0.1333603500521858 -8698.0,0.13331429697262473 -8699.0,0.13326825979648724 -8700.0,0.1332222385182814 -8701.0,0.13317623313251725 -8702.0,0.13313024363370676 -8703.0,0.13308427001636358 -8704.0,0.13303831227500346 -8705.0,0.13299237040414394 -8706.0,0.13294644439830458 -8707.0,0.13290053425200665 -8708.0,0.13285463995977342 -8709.0,0.13280876151613005 -8710.0,0.1327628989156036 -8711.0,0.13271705215272298 -8712.0,0.13267122122201896 -8713.0,0.13262540611802429 -8714.0,0.13257960683527362 -8715.0,0.13253382336830327 -8716.0,0.13248805571165173 -8717.0,0.13244230385985922 -8718.0,0.1323965678074679 -8719.0,0.1323508475490218 -8720.0,0.13230514307906674 -8721.0,0.1322594543921506 -8722.0,0.132213781482823 -8723.0,0.13216812434563557 -8724.0,0.13212248297514165 -8725.0,0.13207685736589658 -8726.0,0.1320312475124576 -8727.0,0.1319856534093838 -8728.0,0.13194007505123606 -8729.0,0.13189451243257727 -8730.0,0.1318489655479721 -8731.0,0.13180343439198725 -8732.0,0.131757918959191 -8733.0,0.13171241924415383 -8734.0,0.1316669352414479 -8735.0,0.13162146694564733 -8736.0,0.13157601435132812 -8737.0,0.131530577453068 -8738.0,0.13148515624544674 -8739.0,0.13143975072304592 -8740.0,0.13139436088044903 -8741.0,0.13134898671224132 -8742.0,0.13130362821301 -8743.0,0.13125828537734416 -8744.0,0.13121295819983478 -8745.0,0.13116764667507452 -8746.0,0.13112235079765816 -8747.0,0.13107707056218215 -8748.0,0.131031805963245 -8749.0,0.13098655699544687 -8750.0,0.1309413236533899 -8751.0,0.1308961059316781 -8752.0,0.13085090382491743 -8753.0,0.13080571732771543 -8754.0,0.13076054643468174 -8755.0,0.13071539114042785 -8756.0,0.130670251439567 -8757.0,0.13062512732671447 -8758.0,0.13058001879648715 -8759.0,0.13053492584350396 -8760.0,0.13048984846238565 -8761.0,0.13044478664775488 -8762.0,0.13039974039423596 -8763.0,0.1303547096964553 -8764.0,0.13030969454904107 -8765.0,0.1302646949466233 -8766.0,0.13021971088383377 -8767.0,0.13017474235530627 -8768.0,0.1301297893556764 -8769.0,0.13008485187958163 -8770.0,0.13003992992166116 -8771.0,0.12999502347655614 -8772.0,0.1299501325389096 -8773.0,0.12990525710336637 -8774.0,0.12986039716457318 -8775.0,0.12981555271717846 -8776.0,0.12977072375583265 -8777.0,0.12972591027518798 -8778.0,0.1296811122698986 -8779.0,0.1296363297346203 -8780.0,0.1295915626640109 -8781.0,0.12954681105273005 -8782.0,0.12950207489543925 -8783.0,0.12945735418680168 -8784.0,0.12941264892148255 -8785.0,0.12936795909414886 -8786.0,0.12932328469946947 -8787.0,0.12927862573211493 -8788.0,0.12923398218675786 -8789.0,0.12918935405807255 -8790.0,0.12914474134073528 -8791.0,0.12910014402942396 -8792.0,0.12905556211881852 -8793.0,0.12901099560360066 -8794.0,0.1289664444784539 -8795.0,0.1289219087380637 -8796.0,0.12887738837711712 -8797.0,0.1288328833903033 -8798.0,0.1287883937723131 -8799.0,0.1287439195178393 -8800.0,0.12869946062157633 -8801.0,0.12865501707822063 -8802.0,0.1286105888824704 -8803.0,0.12856617602902573 -8804.0,0.1285217785125884 -8805.0,0.12847739632786212 -8806.0,0.12843302946955248 -8807.0,0.12838867793236686 -8808.0,0.12834434171101433 -8809.0,0.12830002080020594 -8810.0,0.1282557151946546 -8811.0,0.12821142488907492 -8812.0,0.12816714987818342 -8813.0,0.12812289015669837 -8814.0,0.1280786457193399 -8815.0,0.12803441656083003 -8816.0,0.12799020267589256 -8817.0,0.127946004059253 -8818.0,0.12790182070563882 -8819.0,0.12785765260977927 -8820.0,0.1278134997664055 -8821.0,0.12776936217025026 -8822.0,0.1277252398160483 -8823.0,0.12768113269853618 -8824.0,0.12763704081245228 -8825.0,0.12759296415253663 -8826.0,0.1275489027135313 -8827.0,0.12750485649018006 -8828.0,0.1274608254772286 -8829.0,0.12741680966942417 -8830.0,0.1273728090615161 -8831.0,0.12732882364825543 -8832.0,0.12728485342439505 -8833.0,0.12724089838468963 -8834.0,0.12719695852389562 -8835.0,0.1271530338367713 -8836.0,0.1271091243180768 -8837.0,0.1270652299625741 -8838.0,0.1270213507650268 -8839.0,0.12697748672020048 -8840.0,0.12693363782286252 -8841.0,0.12688980406778208 -8842.0,0.12684598544973 -8843.0,0.12680218196347914 -8844.0,0.126758393603804 -8845.0,0.12671462036548106 -8846.0,0.12667086224328833 -8847.0,0.1266271192320059 -8848.0,0.1265833913264155 -8849.0,0.1265396785213007 -8850.0,0.12649598081144697 -8851.0,0.1264522981916414 -8852.0,0.126408630656673 -8853.0,0.12636497820133252 -8854.0,0.12632134082041263 -8855.0,0.12627771850870761 -8856.0,0.12623411126101367 -8857.0,0.12619051907212878 -8858.0,0.12614694193685277 -8859.0,0.12610337984998712 -8860.0,0.1260598328063352 -8861.0,0.12601630080070222 -8862.0,0.12597278382789515 -8863.0,0.12592928188272262 -8864.0,0.12588579495999522 -8865.0,0.12584232305452528 -8866.0,0.12579886616112698 -8867.0,0.12575542427461614 -8868.0,0.12571199738981045 -8869.0,0.12566858550152948 -8870.0,0.12562518860459446 -8871.0,0.1255818066938285 -8872.0,0.1255384397640564 -8873.0,0.1254950878101048 -8874.0,0.12545175082680216 -8875.0,0.12540842880897873 -8876.0,0.1253651217514664 -8877.0,0.12532182964909902 -8878.0,0.12527855249671216 -8879.0,0.12523529028914324 -8880.0,0.12519204302123124 -8881.0,0.12514881068781716 -8882.0,0.12510559328374368 -8883.0,0.12506239080385537 -8884.0,0.12501920324299837 -8885.0,0.12497603059602073 -8886.0,0.12493287285777233 -8887.0,0.12488973002310472 -8888.0,0.12484660208687133 -8889.0,0.12480348904392723 -8890.0,0.1247603908891294 -8891.0,0.12471730761733651 -8892.0,0.12467423922340913 -8893.0,0.1246311857022094 -8894.0,0.12458814704860138 -8895.0,0.1245451232574509 -8896.0,0.1245021143236256 -8897.0,0.12445912024199467 -8898.0,0.12441614100742932 -8899.0,0.12437317661480243 -8900.0,0.12433022705898873 -8901.0,0.12428729233486452 -8902.0,0.12424437243730807 -8903.0,0.12420146736119934 -8904.0,0.12415857710142014 -8905.0,0.12411570165285385 -8906.0,0.12407284101038579 -8907.0,0.12402999516890302 -8908.0,0.12398716412329432 -8909.0,0.12394434786845032 -8910.0,0.12390154639926326 -8911.0,0.12385875971062726 -8912.0,0.12381598779743822 -8913.0,0.12377323065459378 -8914.0,0.12373048827699325 -8915.0,0.1236877606595378 -8916.0,0.12364504779713034 -8917.0,0.12360234968467561 -8918.0,0.12355966631707992 -8919.0,0.12351699768925149 -8920.0,0.1234743437961003 -8921.0,0.12343170463253808 -8922.0,0.12338908019347819 -8923.0,0.12334647047383589 -8924.0,0.12330387546852817 -8925.0,0.12326129517247374 -8926.0,0.12321872958059313 -8927.0,0.12317617868780849 -8928.0,0.12313364248904383 -8929.0,0.12309112097922494 -8930.0,0.12304861415327932 -8931.0,0.12300612200613613 -8932.0,0.12296364453272642 -8933.0,0.12292118172798293 -8934.0,0.12287873358684022 -8935.0,0.12283630010423442 -8936.0,0.12279388127510359 -8937.0,0.12275147709438745 -8938.0,0.12270908755702757 -8939.0,0.12266671265796707 -8940.0,0.12262435239215098 -8941.0,0.12258200675452605 -8942.0,0.12253967574004078 -8943.0,0.1224973593436453 -8944.0,0.12245505756029162 -8945.0,0.12241277038493345 -8946.0,0.12237049781252624 -8947.0,0.12232823983802722 -8948.0,0.12228599645639522 -8949.0,0.12224376766259099 -8950.0,0.1222015534515769 -8951.0,0.12215935381831719 -8952.0,0.12211716875777763 -8953.0,0.1220749982649259 -8954.0,0.12203284233473138 -8955.0,0.12199070096216523 -8956.0,0.12194857414220017 -8957.0,0.12190646186981084 -8958.0,0.12186436413997355 -8959.0,0.12182228094766641 -8960.0,0.12178021228786907 -8961.0,0.12173815815556313 -8962.0,0.12169611854573183 -8963.0,0.12165409345336013 -8964.0,0.12161208287343482 -8965.0,0.12157008680094424 -8966.0,0.12152810523087859 -8967.0,0.1214861381582298 -8968.0,0.12144418557799155 -8969.0,0.1214022474851591 -8970.0,0.12136032387472959 -8971.0,0.12131841474170184 -8972.0,0.12127652008107644 -8973.0,0.12123463988785557 -8974.0,0.12119277415704328 -8975.0,0.12115092288364529 -8976.0,0.12110908606266911 -8977.0,0.1210672636891238 -8978.0,0.12102545575802029 -8979.0,0.12098366226437123 -8980.0,0.12094188320319099 -8981.0,0.12090011856949553 -8982.0,0.12085836835830271 -8983.0,0.12081663256463201 -8984.0,0.12077491118350467 -8985.0,0.12073320420994367 -8986.0,0.12069151163897357 -8987.0,0.1206498334656208 -8988.0,0.12060816968491347 -8989.0,0.12056652029188146 -8990.0,0.12052488528155617 -8991.0,0.1204832646489709 -8992.0,0.12044165838916061 -8993.0,0.12040006649716206 -8994.0,0.1203584889680135 -8995.0,0.12031692579675511 -8996.0,0.12027537697842869 -8997.0,0.12023384250807784 -8998.0,0.12019232238074767 -8999.0,0.1201508165914852 -9000.0,0.1201093251353391 -9001.0,0.12006784800735973 -9002.0,0.12002638520259923 -9003.0,0.11998493671611127 -9004.0,0.11994350254295141 -9005.0,0.11990208267817686 -9006.0,0.11986067711684657 -9007.0,0.11981928585402109 -9008.0,0.11977790888476275 -9009.0,0.1197365462041356 -9010.0,0.11969519780720542 -9011.0,0.11965386368903956 -9012.0,0.11961254384470721 -9013.0,0.11957123826927919 -9014.0,0.11952994695782813 -9015.0,0.11948866990542815 -9016.0,0.11944740710715526 -9017.0,0.11940615855808712 -9018.0,0.1193649242533031 -9019.0,0.11932370418788417 -9020.0,0.11928249835691311 -9021.0,0.1192413067554744 -9022.0,0.11920012937865414 -9023.0,0.11915896622154024 -9024.0,0.11911781727922213 -9025.0,0.1190766825467911 -9026.0,0.11903556201934007 -9027.0,0.11899445569196371 -9028.0,0.11895336355975825 -9029.0,0.11891228561782172 -9030.0,0.11887122186125383 -9031.0,0.11883017228515604 -9032.0,0.11878913688463132 -9033.0,0.1187481156547845 -9034.0,0.11870710859072205 -9035.0,0.11866611568755217 -9036.0,0.11862513694038461 -9037.0,0.11858417234433094 -9038.0,0.1185432218945044 -9039.0,0.1185022855860199 -9040.0,0.11846136341399409 -9041.0,0.11842045537354513 -9042.0,0.11837956145979306 -9043.0,0.11833868166785952 -9044.0,0.11829781599286791 -9045.0,0.11825696442994316 -9046.0,0.11821612697421201 -9047.0,0.11817530362080285 -9048.0,0.11813449436484581 -9049.0,0.11809369920147254 -9050.0,0.11805291812581653 -9051.0,0.11801215113301289 -9052.0,0.11797139821819846 -9053.0,0.11793065937651162 -9054.0,0.11788993460309258 -9055.0,0.11784922389308315 -9056.0,0.11780852724162691 -9057.0,0.11776784464386894 -9058.0,0.11772717609495616 -9059.0,0.11768652159003708 -9060.0,0.11764588112426194 -9061.0,0.11760525469278268 -9062.0,0.11756464229075277 -9063.0,0.11752404391332746 -9064.0,0.1174834595556637 -9065.0,0.11744288921292009 -9066.0,0.11740233288025681 -9067.0,0.11736179055283581 -9068.0,0.1173212622258207 -9069.0,0.11728074789437681 -9070.0,0.11724024755367096 -9071.0,0.1171997611988718 -9072.0,0.1171592888251496 -9073.0,0.11711883042767637 -9074.0,0.11707838600162561 -9075.0,0.11703795554217264 -9076.0,0.1169975390444944 -9077.0,0.11695713650376952 -9078.0,0.11691674791517828 -9079.0,0.11687637327390255 -9080.0,0.11683601257512596 -9081.0,0.11679566581403378 -9082.0,0.11675533298581299 -9083.0,0.11671501408565207 -9084.0,0.11667470910874134 -9085.0,0.11663441805027266 -9086.0,0.11659414090543971 -9087.0,0.11655387766943759 -9088.0,0.11651362833746325 -9089.0,0.11647339290471521 -9090.0,0.11643317136639376 -9091.0,0.11639296371770065 -9092.0,0.11635276995383946 -9093.0,0.11631259007001535 -9094.0,0.11627242406143522 -9095.0,0.11623227192330743 -9096.0,0.11619213365084222 -9097.0,0.11615200923925134 -9098.0,0.11611189868374826 -9099.0,0.11607180197954814 -9100.0,0.11603171912186763 -9101.0,0.11599165010592519 -9102.0,0.11595159492694086 -9103.0,0.11591155358013643 -9104.0,0.11587152606073513 -9105.0,0.11583151236396204 -9106.0,0.11579151248504381 -9107.0,0.11575152641920879 -9108.0,0.11571155416168684 -9109.0,0.1156715957077096 -9110.0,0.11563165105251035 -9111.0,0.11559172019132401 -9112.0,0.11555180311938701 -9113.0,0.11551189983193759 -9114.0,0.1154720103242156 -9115.0,0.1154321345914625 -9116.0,0.11539227262892143 -9117.0,0.11535242443183709 -9118.0,0.1153125899954559 -9119.0,0.11527276931502593 -9120.0,0.1152329623857969 -9121.0,0.11519316920302002 -9122.0,0.11515338976194832 -9123.0,0.11511362405783639 -9124.0,0.11507387208594054 -9125.0,0.11503413384151853 -9126.0,0.11499440931982993 -9127.0,0.1149546985161359 -9128.0,0.1149150014256993 -9129.0,0.11487531804378442 -9130.0,0.11483564836565739 -9131.0,0.11479599238658592 -9132.0,0.11475635010183936 -9133.0,0.1147167215066886 -9134.0,0.11467710659640627 -9135.0,0.11463750536626661 -9136.0,0.11459791781154549 -9137.0,0.11455834392752044 -9138.0,0.1145187837094705 -9139.0,0.11447923715267644 -9140.0,0.11443970425242067 -9141.0,0.11440018500398727 -9142.0,0.11436067940266174 -9143.0,0.11432118744373143 -9144.0,0.11428170912248523 -9145.0,0.11424224443421371 -9146.0,0.11420279337420892 -9147.0,0.1141633559377647 -9148.0,0.11412393212017642 -9149.0,0.11408452191674119 -9150.0,0.11404512532275755 -9151.0,0.11400574233352583 -9152.0,0.1139663729443479 -9153.0,0.11392701715052729 -9154.0,0.11388767494736922 -9155.0,0.11384834633018032 -9156.0,0.11380903129426902 -9157.0,0.11376972983494534 -9158.0,0.11373044194752095 -9159.0,0.11369116762730899 -9160.0,0.11365190686962437 -9161.0,0.11361265966978355 -9162.0,0.1135734260231047 -9163.0,0.11353420592490744 -9164.0,0.11349499937051312 -9165.0,0.11345580635524469 -9166.0,0.11341662687442677 -9167.0,0.11337746092338542 -9168.0,0.1133383084974485 -9169.0,0.11329916959194539 -9170.0,0.11326004420220716 -9171.0,0.11322093232356634 -9172.0,0.11318183395135721 -9173.0,0.11314274908091562 -9174.0,0.11310367770757905 -9175.0,0.1130646198266866 -9176.0,0.11302557543357884 -9177.0,0.11298654452359815 -9178.0,0.11294752709208837 -9179.0,0.1129085231343951 -9180.0,0.11286953264586534 -9181.0,0.11283055562184785 -9182.0,0.11279159205769296 -9183.0,0.11275264194875266 -9184.0,0.11271370529038037 -9185.0,0.11267478207793129 -9186.0,0.11263587230676216 -9187.0,0.11259697597223138 -9188.0,0.11255809306969881 -9189.0,0.11251922359452604 -9190.0,0.11248036754207623 -9191.0,0.11244152490771414 -9192.0,0.11240269568680616 -9193.0,0.11236387987472019 -9194.0,0.11232507746682578 -9195.0,0.11228628845849412 -9196.0,0.11224751284509801 -9197.0,0.1122087506220117 -9198.0,0.11217000178461119 -9199.0,0.11213126632827401 -9200.0,0.11209254424837937 -9201.0,0.11205383554030793 -9202.0,0.11201514019944203 -9203.0,0.11197645822116561 -9204.0,0.11193778960086426 -9205.0,0.11189913433392498 -9206.0,0.11186049241573653 -9207.0,0.11182186384168923 -9208.0,0.11178324860717498 -9209.0,0.11174464670758721 -9210.0,0.11170605813832102 -9211.0,0.11166748289477307 -9212.0,0.11162892097234164 -9213.0,0.1115903723664266 -9214.0,0.1115518370724293 -9215.0,0.1115133150857528 -9216.0,0.1114748064018017 -9217.0,0.11143631101598227 -9218.0,0.11139782892370216 -9219.0,0.1113593601203708 -9220.0,0.11132090460139916 -9221.0,0.11128246236219981 -9222.0,0.11124403339818677 -9223.0,0.11120561770477579 -9224.0,0.11116721527738417 -9225.0,0.11112882611143082 -9226.0,0.11109045020233611 -9227.0,0.11105208754552211 -9228.0,0.11101373813641244 -9229.0,0.11097540197043228 -9230.0,0.11093707904300847 -9231.0,0.11089876934956927 -9232.0,0.11086047288554464 -9233.0,0.11082218964636611 -9234.0,0.11078391962746682 -9235.0,0.11074566282428133 -9236.0,0.11070741923224593 -9237.0,0.11066918884679844 -9238.0,0.1106309716633783 -9239.0,0.11059276767742639 -9240.0,0.11055457688438529 -9241.0,0.11051639927969913 -9242.0,0.11047823485881363 -9243.0,0.11044008361717597 -9244.0,0.11040194555023504 -9245.0,0.11036382065344123 -9246.0,0.11032570892224658 -9247.0,0.11028761035210452 -9248.0,0.11024952493847025 -9249.0,0.11021145267680042 -9250.0,0.11017339356255332 -9251.0,0.11013534759118881 -9252.0,0.11009731475816818 -9253.0,0.11005929505895445 -9254.0,0.11002128848901215 -9255.0,0.1099832950438074 -9256.0,0.10994531471880778 -9257.0,0.10990734750948256 -9258.0,0.10986939341130252 -9259.0,0.10983145241974007 -9260.0,0.10979352453026904 -9261.0,0.10975560973836494 -9262.0,0.10971770803950481 -9263.0,0.10967981942916732 -9264.0,0.10964194390283252 -9265.0,0.1096040814559822 -9266.0,0.10956623208409964 -9267.0,0.10952839578266968 -9268.0,0.10949057254717877 -9269.0,0.1094527623731148 -9270.0,0.1094149652559673 -9271.0,0.1093771811912274 -9272.0,0.10933941017438775 -9273.0,0.10930165220094246 -9274.0,0.10926390726638732 -9275.0,0.10922617536621963 -9276.0,0.10918845649593832 -9277.0,0.10915075065104368 -9278.0,0.10911305782703774 -9279.0,0.10907537801942403 -9280.0,0.10903771122370766 -9281.0,0.10900005743539516 -9282.0,0.10896241664999474 -9283.0,0.10892478886301617 -9284.0,0.1088871740699707 -9285.0,0.1088495722663712 -9286.0,0.10881198344773198 -9287.0,0.10877440760956898 -9288.0,0.10873684474739971 -9289.0,0.10869929485674323 -9290.0,0.10866175793312002 -9291.0,0.10862423397205224 -9292.0,0.10858672296906356 -9293.0,0.10854922491967924 -9294.0,0.10851173981942594 -9295.0,0.10847426766383199 -9296.0,0.10843680844842726 -9297.0,0.10839936216874319 -9298.0,0.10836192882031258 -9299.0,0.10832450839866999 -9300.0,0.10828710089935141 -9301.0,0.10824970631789448 -9302.0,0.10821232464983815 -9303.0,0.10817495589072317 -9304.0,0.10813760003609167 -9305.0,0.10810025708148739 -9306.0,0.10806292702245564 -9307.0,0.10802560985454311 -9308.0,0.1079883055732982 -9309.0,0.10795101417427075 -9310.0,0.10791373565301222 -9311.0,0.1078764700050755 -9312.0,0.10783921722601507 -9313.0,0.10780197731138697 -9314.0,0.1077647502567488 -9315.0,0.10772753605765951 -9316.0,0.10769033470967983 -9317.0,0.10765314620837185 -9318.0,0.10761597054929935 -9319.0,0.1075788077280274 -9320.0,0.10754165774012284 -9321.0,0.10750452058115391 -9322.0,0.10746739624669044 -9323.0,0.10743028473230382 -9324.0,0.1073931860335668 -9325.0,0.10735610014605385 -9326.0,0.10731902706534086 -9327.0,0.10728196678700536 -9328.0,0.1072449193066262 -9329.0,0.10720788461978398 -9330.0,0.10717086272206071 -9331.0,0.10713385360903997 -9332.0,0.10709685727630679 -9333.0,0.10705987371944779 -9334.0,0.10702290293405113 -9335.0,0.1069859449157065 -9336.0,0.10694899966000497 -9337.0,0.1069120671625393 -9338.0,0.10687514741890371 -9339.0,0.106838240424694 -9340.0,0.10680134617550732 -9341.0,0.10676446466694253 -9342.0,0.10672759589459992 -9343.0,0.1066907398540813 -9344.0,0.10665389654099008 -9345.0,0.10661706595093103 -9346.0,0.10658024807951057 -9347.0,0.10654344292233658 -9348.0,0.10650665047501855 -9349.0,0.10646987073316729 -9350.0,0.1064331036923953 -9351.0,0.10639634934831654 -9352.0,0.10635960769654654 -9353.0,0.10632287873270219 -9354.0,0.10628616245240202 -9355.0,0.10624945885126609 -9356.0,0.10621276792491594 -9357.0,0.10617608966897452 -9358.0,0.10613942407906643 -9359.0,0.10610277115081773 -9360.0,0.106066130879856 -9361.0,0.10602950326181038 -9362.0,0.10599288829231135 -9363.0,0.10595628596699107 -9364.0,0.10591969628148314 -9365.0,0.10588311923142273 -9366.0,0.10584655481244636 -9367.0,0.10581000302019222 -9368.0,0.10577346385029995 -9369.0,0.10573693729841073 -9370.0,0.10570042336016712 -9371.0,0.10566392203121333 -9372.0,0.105627433307195 -9373.0,0.10559095718375934 -9374.0,0.10555449365655493 -9375.0,0.105518042721232 -9376.0,0.10548160437344217 -9377.0,0.1054451786088387 -9378.0,0.10540876542307617 -9379.0,0.10537236481181077 -9380.0,0.1053359767707002 -9381.0,0.1052996012954036 -9382.0,0.10526323838158172 -9383.0,0.10522688802489662 -9384.0,0.10519055022101202 -9385.0,0.10515422496559308 -9386.0,0.10511791225430651 -9387.0,0.10508161208282038 -9388.0,0.1050453244468044 -9389.0,0.10500904934192969 -9390.0,0.10497278676386895 -9391.0,0.10493653670829624 -9392.0,0.10490029917088724 -9393.0,0.10486407414731906 -9394.0,0.10482786163327037 -9395.0,0.1047916616244212 -9396.0,0.1047554741164532 -9397.0,0.10471929910504944 -9398.0,0.10468313658589454 -9399.0,0.10464698655467458 -9400.0,0.10461084900707707 -9401.0,0.10457472393879108 -9402.0,0.10453861134550718 -9403.0,0.10450251122291743 -9404.0,0.10446642356671526 -9405.0,0.10443034837259571 -9406.0,0.1043942856362553 -9407.0,0.10435823535339205 -9408.0,0.1043221975197053 -9409.0,0.10428617213089607 -9410.0,0.1042501591826668 -9411.0,0.10421415867072144 -9412.0,0.1041781705907653 -9413.0,0.10414219493850531 -9414.0,0.10410623170964986 -9415.0,0.1040702808999088 -9416.0,0.10403434250499342 -9417.0,0.10399841652061655 -9418.0,0.10396250294249247 -9419.0,0.10392660176633697 -9420.0,0.10389071298786734 -9421.0,0.10385483660280223 -9422.0,0.10381897260686189 -9423.0,0.103783120995768 -9424.0,0.10374728176524377 -9425.0,0.10371145491101376 -9426.0,0.10367564042880412 -9427.0,0.10363983831434245 -9428.0,0.10360404856335788 -9429.0,0.10356827117158082 -9430.0,0.10353250613474338 -9431.0,0.10349675344857903 -9432.0,0.10346101310882277 -9433.0,0.10342528511121098 -9434.0,0.10338956945148159 -9435.0,0.10335386612537398 -9436.0,0.10331817512862902 -9437.0,0.10328249645698907 -9438.0,0.10324683010619783 -9439.0,0.10321117607200062 -9440.0,0.10317553435014416 -9441.0,0.10313990493637672 -9442.0,0.10310428782644787 -9443.0,0.10306868301610878 -9444.0,0.10303309050111206 -9445.0,0.10299751027721185 -9446.0,0.10296194234016356 -9447.0,0.10292638668572428 -9448.0,0.10289084330965247 -9449.0,0.10285531220770808 -9450.0,0.10281979337565245 -9451.0,0.10278428680924848 -9452.0,0.10274879250426047 -9453.0,0.1027133104564543 -9454.0,0.1026778406615971 -9455.0,0.10264238311545763 -9456.0,0.10260693781380606 -9457.0,0.10257150475241404 -9458.0,0.1025360839270547 -9459.0,0.1025006753335025 -9460.0,0.1024652789675335 -9461.0,0.10242989482492518 -9462.0,0.1023945229014565 -9463.0,0.10235916319290776 -9464.0,0.10232381569506087 -9465.0,0.1022884804036991 -9466.0,0.10225315731460728 -9467.0,0.10221784642357153 -9468.0,0.10218254772637954 -9469.0,0.10214726121882044 -9470.0,0.10211198689668487 -9471.0,0.10207672475576476 -9472.0,0.10204147479185363 -9473.0,0.10200623700074643 -9474.0,0.10197101137823955 -9475.0,0.10193579792013087 -9476.0,0.10190059662221958 -9477.0,0.10186540748030648 -9478.0,0.10183023049019375 -9479.0,0.10179506564768509 -9480.0,0.1017599129485855 -9481.0,0.10172477238870156 -9482.0,0.10168964396384125 -9483.0,0.10165452766981406 -9484.0,0.10161942350243078 -9485.0,0.10158433145750378 -9486.0,0.10154925153084685 -9487.0,0.10151418371827524 -9488.0,0.10147912801560552 -9489.0,0.10144408441865586 -9490.0,0.10140905292324581 -9491.0,0.10137403352519642 -9492.0,0.10133902622033002 -9493.0,0.10130403100447055 -9494.0,0.10126904787344335 -9495.0,0.10123407682307517 -9496.0,0.10119911784919426 -9497.0,0.10116417094763021 -9498.0,0.10112923611421412 -9499.0,0.10109431334477853 -9500.0,0.10105940263515746 -9501.0,0.10102450398118622 -9502.0,0.1009896173787017 -9503.0,0.10095474282354218 -9504.0,0.10091988031154744 -9505.0,0.10088502983855853 -9506.0,0.1008501914004181 -9507.0,0.10081536499297017 -9508.0,0.10078055061206025 -9509.0,0.10074574825353515 -9510.0,0.10071095791324323 -9511.0,0.10067617958703429 -9512.0,0.10064141327075951 -9513.0,0.10060665896027156 -9514.0,0.10057191665142444 -9515.0,0.10053718634007366 -9516.0,0.10050246802207617 -9517.0,0.10046776169329036 -9518.0,0.10043306734957592 -9519.0,0.10039838498679414 -9520.0,0.10036371460080765 -9521.0,0.10032905618748056 -9522.0,0.1002944097426783 -9523.0,0.10025977526226784 -9524.0,0.10022515274211756 -9525.0,0.10019054217809725 -9526.0,0.10015594356607807 -9527.0,0.10012135690193268 -9528.0,0.10008678218153515 -9529.0,0.10005221940076102 -9530.0,0.1000176685554871 -9531.0,0.09998312964159178 -9532.0,0.09994860265495482 -9533.0,0.0999140875914574 -9534.0,0.09987958444698215 -9535.0,0.09984509321741304 -9536.0,0.09981061389863555 -9537.0,0.09977614648653654 -9538.0,0.09974169097700435 -9539.0,0.0997072473659286 -9540.0,0.09967281564920047 -9541.0,0.09963839582271249 -9542.0,0.09960398788235868 -9543.0,0.09956959182403434 -9544.0,0.09953520764363631 -9545.0,0.0995008353370628 -9546.0,0.0994664749002135 -9547.0,0.09943212632898937 -9548.0,0.09939778961929292 -9549.0,0.09936346476702804 -9550.0,0.0993291517681 -9551.0,0.09929485061841557 -9552.0,0.09926056131388279 -9553.0,0.09922628385041123 -9554.0,0.09919201822391184 -9555.0,0.09915776443029703 -9556.0,0.09912352246548048 -9557.0,0.09908929232537741 -9558.0,0.09905507400590444 -9559.0,0.09902086750297959 -9560.0,0.09898667281252219 -9561.0,0.09895248993045312 -9562.0,0.0989183188526946 -9563.0,0.09888415957517031 -9564.0,0.09885001209380523 -9565.0,0.09881587640452584 -9566.0,0.09878175250326 -9567.0,0.09874764038593703 -9568.0,0.09871354004848752 -9569.0,0.09867945148684358 -9570.0,0.0986453746969387 -9571.0,0.09861130967470776 -9572.0,0.0985772564160871 -9573.0,0.09854321491701433 -9574.0,0.09850918517342859 -9575.0,0.09847516718127038 -9576.0,0.09844116093648164 -9577.0,0.09840716643500559 -9578.0,0.09837318367278698 -9579.0,0.0983392126457719 -9580.0,0.09830525334990793 -9581.0,0.09827130578114385 -9582.0,0.09823736993543002 -9583.0,0.09820344580871815 -9584.0,0.09816953339696137 -9585.0,0.0981356326961141 -9586.0,0.09810174370213226 -9587.0,0.09806786641097316 -9588.0,0.09803400081859548 -9589.0,0.09800014692095933 -9590.0,0.09796630471402613 -9591.0,0.09793247419375878 -9592.0,0.09789865535612152 -9593.0,0.09786484819708009 -9594.0,0.09783105271260145 -9595.0,0.09779726889865407 -9596.0,0.0977634967512078 -9597.0,0.09772973626623391 -9598.0,0.09769598743970494 -9599.0,0.09766225026759492 -9600.0,0.09762852474587928 -9601.0,0.09759481087053486 -9602.0,0.09756110863753971 -9603.0,0.09752741804287349 -9604.0,0.09749373908251713 -9605.0,0.09746007175245303 -9606.0,0.09742641604866482 -9607.0,0.09739277196713769 -9608.0,0.09735913950385813 -9609.0,0.09732551865481405 -9610.0,0.09729190941599473 -9611.0,0.0972583117833908 -9612.0,0.0972247257529943 -9613.0,0.0971911513207987 -9614.0,0.09715758848279883 -9615.0,0.09712403723499083 -9616.0,0.0970904975733723 -9617.0,0.09705696949394221 -9618.0,0.09702345299270096 -9619.0,0.09698994806565017 -9620.0,0.096956454708793 -9621.0,0.09692297291813394 -9622.0,0.09688950268967889 -9623.0,0.09685604401943501 -9624.0,0.09682259690341098 -9625.0,0.0967891613376168 -9626.0,0.09675573731806383 -9627.0,0.0967223248407649 -9628.0,0.09668892390173403 -9629.0,0.09665553449698681 -9630.0,0.0966221566225401 -9631.0,0.09658879027441222 -9632.0,0.0965554354486227 -9633.0,0.09652209214119263 -9634.0,0.09648876034814438 -9635.0,0.09645544006550173 -9636.0,0.09642213128928977 -9637.0,0.09638883401553502 -9638.0,0.09635554824026538 -9639.0,0.09632227395951011 -9640.0,0.09628901116929976 -9641.0,0.09625575986566637 -9642.0,0.09622252004464331 -9643.0,0.09618929170226534 -9644.0,0.09615607483456846 -9645.0,0.09612286943759023 -9646.0,0.09608967550736945 -9647.0,0.09605649303994633 -9648.0,0.0960233220313625 -9649.0,0.0959901624776608 -9650.0,0.0959570143748856 -9651.0,0.09592387771908256 -9652.0,0.09589075250629876 -9653.0,0.09585763873258252 -9654.0,0.09582453639398364 -9655.0,0.09579144548655327 -9656.0,0.09575836600634395 -9657.0,0.09572529794940944 -9658.0,0.09569224131180501 -9659.0,0.09565919608958726 -9660.0,0.09562616227881414 -9661.0,0.09559313987554491 -9662.0,0.09556012887584026 -9663.0,0.09552712927576222 -9664.0,0.0954941410713742 -9665.0,0.09546116425874096 -9666.0,0.09542819883392854 -9667.0,0.09539524479300444 -9668.0,0.09536230213203749 -9669.0,0.0953293708470979 -9670.0,0.09529645093425713 -9671.0,0.09526354238958813 -9672.0,0.09523064520916513 -9673.0,0.0951977593890638 -9674.0,0.095164884925361 -9675.0,0.09513202181413509 -9676.0,0.09509917005146575 -9677.0,0.09506632963343403 -9678.0,0.09503350055612224 -9679.0,0.09500068281561415 -9680.0,0.09496787640799483 -9681.0,0.09493508132935076 -9682.0,0.09490229757576966 -9683.0,0.0948695251433407 -9684.0,0.09483676402815434 -9685.0,0.09480401422630247 -9686.0,0.09477127573387828 -9687.0,0.09473854854697623 -9688.0,0.09470583266169227 -9689.0,0.0946731280741236 -9690.0,0.09464043478036886 -9691.0,0.0946077527765279 -9692.0,0.09457508205870202 -9693.0,0.09454242262299387 -9694.0,0.09450977446550742 -9695.0,0.09447713758234792 -9696.0,0.09444451196962209 -9697.0,0.0944118976234379 -9698.0,0.09437929453990475 -9699.0,0.09434670271513323 -9700.0,0.09431412214523545 -9701.0,0.09428155282632476 -9702.0,0.0942489947545159 -9703.0,0.09421644792592494 -9704.0,0.09418391233666921 -9705.0,0.09415138798286751 -9706.0,0.0941188748606399 -9707.0,0.09408637296610785 -9708.0,0.09405388229539403 -9709.0,0.09402140284462261 -9710.0,0.093988934609919 -9711.0,0.09395647758741002 -9712.0,0.09392403177322371 -9713.0,0.09389159716348956 -9714.0,0.09385917375433836 -9715.0,0.09382676154190227 -9716.0,0.09379436052231467 -9717.0,0.0937619706917104 -9718.0,0.09372959204622558 -9719.0,0.09369722458199771 -9720.0,0.09366486829516553 -9721.0,0.09363252318186918 -9722.0,0.09360018923825016 -9723.0,0.09356786646045123 -9724.0,0.09353555484461658 -9725.0,0.09350325438689158 -9726.0,0.09347096508342308 -9727.0,0.09343868693035917 -9728.0,0.09340641992384936 -9729.0,0.09337416406004435 -9730.0,0.09334191933509631 -9731.0,0.09330968574515863 -9732.0,0.09327746328638617 -9733.0,0.09324525195493492 -9734.0,0.09321305174696234 -9735.0,0.0931808626586272 -9736.0,0.09314868468608958 -9737.0,0.09311651782551085 -9738.0,0.09308436207305373 -9739.0,0.09305221742488232 -9740.0,0.09302008387716196 -9741.0,0.0929879614260594 -9742.0,0.09295585006774261 -9743.0,0.09292374979838096 -9744.0,0.09289166061414511 -9745.0,0.09285958251120711 -9746.0,0.09282751548574021 -9747.0,0.09279545953391906 -9748.0,0.09276341465191963 -9749.0,0.09273138083591924 -9750.0,0.09269935808209641 -9751.0,0.09266734638663109 -9752.0,0.09263534574570453 -9753.0,0.09260335615549933 -9754.0,0.09257137761219927 -9755.0,0.0925394101119896 -9756.0,0.09250745365105681 -9757.0,0.09247550822558878 -9758.0,0.09244357383177458 -9759.0,0.0924116504658047 -9760.0,0.0923797381238709 -9761.0,0.09234783680216631 -9762.0,0.09231594649688535 -9763.0,0.09228406720422365 -9764.0,0.0922521989203783 -9765.0,0.09222034164154765 -9766.0,0.09218849536393137 -9767.0,0.09215666008373037 -9768.0,0.09212483579714699 -9769.0,0.0920930225003848 -9770.0,0.09206122018964875 -9771.0,0.09202942886114499 -9772.0,0.09199764851108107 -9773.0,0.09196587913566583 -9774.0,0.09193412073110946 -9775.0,0.09190237329362333 -9776.0,0.09187063681942025 -9777.0,0.09183891130471426 -9778.0,0.09180719674572078 -9779.0,0.09177549313865652 -9780.0,0.09174380047973937 -9781.0,0.0917121187651887 -9782.0,0.09168044799122509 -9783.0,0.0916487881540705 -9784.0,0.09161713924994803 -9785.0,0.09158550127508229 -9786.0,0.09155387422569906 -9787.0,0.09152225809802551 -9788.0,0.09149065288829 -9789.0,0.0914590585927223 -9790.0,0.09142747520755343 -9791.0,0.09139590272901575 -9792.0,0.09136434115334284 -9793.0,0.09133279047676965 -9794.0,0.09130125069553244 -9795.0,0.09126972180586876 -9796.0,0.09123820380401738 -9797.0,0.09120669668621846 -9798.0,0.09117520044871344 -9799.0,0.09114371508774505 -9800.0,0.09111224059955735 -9801.0,0.09108077698039559 -9802.0,0.09104932422650641 -9803.0,0.09101788233413774 -9804.0,0.09098645129953883 -9805.0,0.09095503111896013 -9806.0,0.09092362178865344 -9807.0,0.09089222330487189 -9808.0,0.09086083566386988 -9809.0,0.09082945886190302 -9810.0,0.09079809289522836 -9811.0,0.09076673776010413 -9812.0,0.09073539345278994 -9813.0,0.09070405996954659 -9814.0,0.09067273730663622 -9815.0,0.09064142546032229 -9816.0,0.09061012442686953 -9817.0,0.09057883420254396 -9818.0,0.09054755478361286 -9819.0,0.09051628616634481 -9820.0,0.09048502834700974 -9821.0,0.09045378132187883 -9822.0,0.09042254508722444 -9823.0,0.0903913196393204 -9824.0,0.09036010497444172 -9825.0,0.09032890108886475 -9826.0,0.09029770797886703 -9827.0,0.09026652564072749 -9828.0,0.09023535407072628 -9829.0,0.09020419326514491 -9830.0,0.09017304322026606 -9831.0,0.09014190393237378 -9832.0,0.09011077539775339 -9833.0,0.09007965761269152 -9834.0,0.09004855057347595 -9835.0,0.0900174542763959 -9836.0,0.0899863687177418 -9837.0,0.08995529389380535 -9838.0,0.08992422980087963 -9839.0,0.0898931764352588 -9840.0,0.0898621337932385 -9841.0,0.08983110187111554 -9842.0,0.08980008066518808 -9843.0,0.08976907017175544 -9844.0,0.08973807038711833 -9845.0,0.08970708130757872 -9846.0,0.08967610292943985 -9847.0,0.08964513524900618 -9848.0,0.0896141782625835 -9849.0,0.0895832319664789 -9850.0,0.08955229635700071 -9851.0,0.08952137143045849 -9852.0,0.08949045718316315 -9853.0,0.08945955361142685 -9854.0,0.08942866071156301 -9855.0,0.08939777847988639 -9856.0,0.08936690691271287 -9857.0,0.08933604600635973 -9858.0,0.08930519575714552 -9859.0,0.08927435616139004 -9860.0,0.08924352721541429 -9861.0,0.08921270891554062 -9862.0,0.08918190125809265 -9863.0,0.08915110423939528 -9864.0,0.08912031785577458 -9865.0,0.089089542103558 -9866.0,0.0890587769790742 -9867.0,0.08902802247865318 -9868.0,0.08899727859862608 -9869.0,0.0889665453353254 -9870.0,0.0889358226850849 -9871.0,0.08890511064423962 -9872.0,0.08887440920912576 -9873.0,0.08884371837608092 -9874.0,0.08881303814144388 -9875.0,0.08878236850155473 -9876.0,0.08875170945275485 -9877.0,0.08872106099138674 -9878.0,0.08869042311379431 -9879.0,0.08865979581632269 -9880.0,0.0886291790953183 -9881.0,0.08859857294712871 -9882.0,0.08856797736810289 -9883.0,0.08853739235459097 -9884.0,0.08850681790294444 -9885.0,0.08847625400951593 -9886.0,0.0884457006706594 -9887.0,0.08841515788273009 -9888.0,0.08838462564208448 -9889.0,0.08835410394508023 -9890.0,0.08832359278807636 -9891.0,0.08829309216743311 -9892.0,0.08826260207951199 -9893.0,0.08823212252067579 -9894.0,0.08820165348728842 -9895.0,0.08817119497571523 -9896.0,0.08814074698232269 -9897.0,0.08811030950347865 -9898.0,0.08807988253555206 -9899.0,0.08804946607491322 -9900.0,0.0880190601179337 -9901.0,0.08798866466098632 -9902.0,0.08795827970044504 -9903.0,0.08792790523268518 -9904.0,0.0878975412540833 -9905.0,0.08786718776101726 -9906.0,0.087836844749866 -9907.0,0.08780651221700989 -9908.0,0.08777619015883044 -9909.0,0.08774587857171051 -9910.0,0.08771557745203408 -9911.0,0.08768528679618648 -9912.0,0.08765500660055425 -9913.0,0.08762473686152518 -9914.0,0.08759447757548836 -9915.0,0.08756422873883399 -9916.0,0.08753399034795366 -9917.0,0.08750376239924014 -9918.0,0.08747354488908748 -9919.0,0.0874433378138909 -9920.0,0.08741314117004693 -9921.0,0.08738295495395336 -9922.0,0.0873527791620092 -9923.0,0.08732261379061465 -9924.0,0.08729245883617123 -9925.0,0.08726231429508166 -9926.0,0.08723218016374998 -9927.0,0.08720205643858131 -9928.0,0.08717194311598216 -9929.0,0.08714184019236021 -9930.0,0.08711174766412443 -9931.0,0.08708166552768501 -9932.0,0.08705159377945332 -9933.0,0.08702153241584203 -9934.0,0.08699148143326507 -9935.0,0.08696144082813759 -9936.0,0.08693141059687591 -9937.0,0.08690139073589766 -9938.0,0.0868713812416217 -9939.0,0.08684138211046816 -9940.0,0.08681139333885826 -9941.0,0.08678141492321463 -9942.0,0.08675144685996104 -9943.0,0.08672148914552258 -9944.0,0.0866915417763254 -9945.0,0.08666160474879708 -9946.0,0.08663167805936632 -9947.0,0.08660176170446313 -9948.0,0.08657185568051863 -9949.0,0.08654195998396529 -9950.0,0.08651207461123676 -9951.0,0.08648219955876796 -9952.0,0.08645233482299503 -9953.0,0.08642248040035524 -9954.0,0.08639263628728724 -9955.0,0.08636280248023083 -9956.0,0.0863329789756271 -9957.0,0.08630316576991824 -9958.0,0.08627336285954779 -9959.0,0.08624357024096048 -9960.0,0.0862137879106023 -9961.0,0.08618401586492037 -9962.0,0.08615425410036315 -9963.0,0.08612450261338025 -9964.0,0.08609476140042259 -9965.0,0.0860650304579422 -9966.0,0.08603530978239239 -9967.0,0.08600559937022774 -9968.0,0.085975899217904 -9969.0,0.08594620932187819 -9970.0,0.08591652967860845 -9971.0,0.08588686028455426 -9972.0,0.08585720113617627 -9973.0,0.0858275522299364 -9974.0,0.08579791356229768 -9975.0,0.08576828512972447 -9976.0,0.0857386669286823 -9977.0,0.085709058955638 -9978.0,0.08567946120705945 -9979.0,0.08564987367941591 -9980.0,0.0856202963691778 -9981.0,0.0855907292728168 -9982.0,0.08556117238680569 -9983.0,0.08553162570761859 -9984.0,0.0855020892317308 -9985.0,0.08547256295561886 -9986.0,0.08544304687576044 -9987.0,0.08541354098863453 -9988.0,0.08538404529072127 -9989.0,0.08535455977850206 -9990.0,0.08532508444845952 -9991.0,0.08529561929707738 -9992.0,0.08526616432084069 -9993.0,0.08523671951623572 -9994.0,0.08520728487974993 -9995.0,0.08517786040787191 -9996.0,0.08514844609709159 -9997.0,0.08511904194390003 -9998.0,0.08508964794478958 -9999.0,0.08506026409625368 -10000.0,0.08503089039478709 -10001.0,0.08500152683688574 -10002.0,0.0849721734190468 -10003.0,0.08494283013776853 -10004.0,0.08491349698955057 -10005.0,0.08488417397089366 -10006.0,0.0848548610782998 -10007.0,0.0848255583082722 -10008.0,0.08479626565731516 -10009.0,0.08476698312193434 -10010.0,0.08473771069863656 -10011.0,0.08470844838392984 -10012.0,0.08467919617432333 -10013.0,0.08464995406632751 -10014.0,0.084620722056454 -10015.0,0.08459150014121568 -10016.0,0.08456228831712649 -10017.0,0.08453308658070173 -10018.0,0.08450389492845783 -10019.0,0.0844747133569125 -10020.0,0.0844455418625845 -10021.0,0.08441638044199393 -10022.0,0.08438722909166203 -10023.0,0.08435808780811131 -10024.0,0.08432895658786534 -10025.0,0.08429983542744902 -10026.0,0.0842707243233884 -10027.0,0.08424162327221077 -10028.0,0.08421253227044459 -10029.0,0.08418345131461945 -10030.0,0.08415438040126623 -10031.0,0.08412531952691701 -10032.0,0.08409626868810506 -10033.0,0.08406722788136475 -10034.0,0.08403819710323177 -10035.0,0.08400917635024295 -10036.0,0.08398016561893636 -10037.0,0.08395116490585117 -10038.0,0.08392217420752784 -10039.0,0.08389319352050799 -10040.0,0.08386422284133446 -10041.0,0.08383526216655121 -10042.0,0.08380631149270347 -10043.0,0.08377737081633763 -10044.0,0.08374844013400126 -10045.0,0.08371951944224322 -10046.0,0.08369060873761337 -10047.0,0.08366170801666294 -10048.0,0.08363281727594427 -10049.0,0.08360393651201094 -10050.0,0.08357506572141761 -10051.0,0.08354620490072025 -10052.0,0.08351735404647596 -10053.0,0.08348851315524311 -10054.0,0.0834596822235811 -10055.0,0.08343086124805064 -10056.0,0.08340205022521362 -10057.0,0.0833732491516331 -10058.0,0.08334445802387327 -10059.0,0.0833156768384996 -10060.0,0.08328690559207867 -10061.0,0.08325814428117836 -10062.0,0.08322939290236757 -10063.0,0.08320065145221649 -10064.0,0.08317191992729649 -10065.0,0.0831431983241801 -10066.0,0.08311448663944107 -10067.0,0.08308578486965426 -10068.0,0.08305709301139579 -10069.0,0.0830284110612429 -10070.0,0.08299973901577411 -10071.0,0.08297107687156896 -10072.0,0.08294242462520832 -10073.0,0.08291378227327416 -10074.0,0.08288514981234972 -10075.0,0.08285652723901929 -10076.0,0.0828279145498684 -10077.0,0.0827993117414838 -10078.0,0.08277071881045342 -10079.0,0.08274213575336624 -10080.0,0.08271356256681256 -10081.0,0.0826849992473838 -10082.0,0.08265644579167256 -10083.0,0.08262790219627267 -10084.0,0.08259936845777902 -10085.0,0.08257084457278775 -10086.0,0.0825423305378962 -10087.0,0.08251382634970286 -10088.0,0.08248533200480734 -10089.0,0.0824568474998105 -10090.0,0.08242837283131435 -10091.0,0.0823999079959221 -10092.0,0.08237145299023803 -10093.0,0.08234300781086772 -10094.0,0.08231457245441783 -10095.0,0.0822861469174963 -10096.0,0.08225773119671208 -10097.0,0.08222932528867544 -10098.0,0.08220092918999772 -10099.0,0.08217254289729155 -10100.0,0.08214416640717057 -10101.0,0.08211579971624969 -10102.0,0.08208744282114498 -10103.0,0.08205909571847368 -10104.0,0.08203075840485421 -10105.0,0.08200243087690608 -10106.0,0.08197411313125004 -10107.0,0.081945805164508 -10108.0,0.08191750697330305 -10109.0,0.08188921855425936 -10110.0,0.08186093990400237 -10111.0,0.08183267101915863 -10112.0,0.08180441189635591 -10113.0,0.08177616253222303 -10114.0,0.08174792292339009 -10115.0,0.0817196930664883 -10116.0,0.08169147295815009 -10117.0,0.08166326259500892 -10118.0,0.08163506197369953 -10119.0,0.08160687109085783 -10120.0,0.08157868994312081 -10121.0,0.08155051852712673 -10122.0,0.08152235683951486 -10123.0,0.08149420487692575 -10124.0,0.08146606263600109 -10125.0,0.08143793011338374 -10126.0,0.08140980730571763 -10127.0,0.08138169420964794 -10128.0,0.08135359082182099 -10129.0,0.08132549713888429 -10130.0,0.08129741315748638 -10131.0,0.08126933887427709 -10132.0,0.08124127428590738 -10133.0,0.08121321938902937 -10134.0,0.08118517418029625 -10135.0,0.08115713865636245 -10136.0,0.08112911281388355 -10137.0,0.08110109664951631 -10138.0,0.08107309015991852 -10139.0,0.08104509334174927 -10140.0,0.08101710619166873 -10141.0,0.08098912870633822 -10142.0,0.0809611608824203 -10143.0,0.08093320271657851 -10144.0,0.0809052542054777 -10145.0,0.08087731534578381 -10146.0,0.08084938613416397 -10147.0,0.08082146656728637 -10148.0,0.08079355664182042 -10149.0,0.0807656563544367 -10150.0,0.08073776570180691 -10151.0,0.08070988468060386 -10152.0,0.08068201328750157 -10153.0,0.08065415151917518 -10154.0,0.08062629937230104 -10155.0,0.0805984568435565 -10156.0,0.08057062392962018 -10157.0,0.08054280062717184 -10158.0,0.08051498693289236 -10159.0,0.08048718284346378 -10160.0,0.08045938835556922 -10161.0,0.08043160346589304 -10162.0,0.0804038281711207 -10163.0,0.08037606246793884 -10164.0,0.08034830635303515 -10165.0,0.08032055982309856 -10166.0,0.08029282287481912 -10167.0,0.08026509550488804 -10168.0,0.08023737770999759 -10169.0,0.08020966948684125 -10170.0,0.08018197083211365 -10171.0,0.08015428174251057 -10172.0,0.08012660221472884 -10173.0,0.08009893224546652 -10174.0,0.08007127183142279 -10175.0,0.080043620969298 -10176.0,0.08001597965579353 -10177.0,0.07998834788761201 -10178.0,0.07996072566145718 -10179.0,0.0799331129740339 -10180.0,0.0799055098220482 -10181.0,0.07987791620220719 -10182.0,0.07985033211121915 -10183.0,0.07982275754579352 -10184.0,0.07979519250264089 -10185.0,0.07976763697847288 -10186.0,0.07974009097000234 -10187.0,0.07971255447394325 -10188.0,0.07968502748701073 -10189.0,0.07965751000592095 -10190.0,0.07963000202739129 -10191.0,0.07960250354814027 -10192.0,0.07957501456488755 -10193.0,0.07954753507435383 -10194.0,0.07952006507326104 -10195.0,0.0794926045583322 -10196.0,0.07946515352629148 -10197.0,0.0794377119738642 -10198.0,0.07941027989777671 -10199.0,0.07938285729475662 -10200.0,0.0793554441615326 -10201.0,0.0793280404948345 -10202.0,0.07930064629139318 -10203.0,0.07927326154794075 -10204.0,0.07924588626121042 -10205.0,0.07921852042793655 -10206.0,0.07919116404485452 -10207.0,0.07916381710870095 -10208.0,0.07913647961621356 -10209.0,0.0791091515641312 -10210.0,0.0790818329491938 -10211.0,0.07905452376814244 -10212.0,0.07902722401771935 -10213.0,0.07899993369466791 -10214.0,0.07897265279573253 -10215.0,0.07894538131765878 -10216.0,0.07891811925719343 -10217.0,0.07889086661108428 -10218.0,0.07886362337608034 -10219.0,0.0788363895489316 -10220.0,0.07880916512638932 -10221.0,0.07878195010520582 -10222.0,0.07875474448213457 -10223.0,0.07872754825393008 -10224.0,0.07870036141734806 -10225.0,0.07867318396914533 -10226.0,0.07864601590607985 -10227.0,0.0786188572249106 -10228.0,0.0785917079223978 -10229.0,0.07856456799530269 -10230.0,0.07853743744038774 -10231.0,0.07851031625441642 -10232.0,0.07848320443415337 -10233.0,0.07845610197636435 -10234.0,0.07842900887781626 -10235.0,0.07840192513527712 -10236.0,0.07837485074551595 -10237.0,0.07834778570530301 -10238.0,0.07832073001140966 -10239.0,0.07829368366060836 -10240.0,0.07826664664967263 -10241.0,0.07823961897537718 -10242.0,0.0782126006344978 -10243.0,0.07818559162381143 -10244.0,0.07815859194009603 -10245.0,0.07813160158013077 -10246.0,0.0781046205406959 -10247.0,0.0780776488185728 -10248.0,0.0780506864105439 -10249.0,0.07802373331339278 -10250.0,0.07799678952390415 -10251.0,0.07796985503886385 -10252.0,0.0779429298550587 -10253.0,0.07791601396927679 -10254.0,0.07788910737830723 -10255.0,0.07786221007894027 -10256.0,0.07783532206796728 -10257.0,0.07780844334218066 -10258.0,0.077781573898374 -10259.0,0.07775471373334199 -10260.0,0.0777278628438804 -10261.0,0.0777010212267861 -10262.0,0.07767418887885708 -10263.0,0.07764736579689244 -10264.0,0.07762055197769242 -10265.0,0.07759374741805827 -10266.0,0.07756695211479242 -10267.0,0.0775401660646984 -10268.0,0.07751338926458085 -10269.0,0.07748662171124542 -10270.0,0.07745986340149899 -10271.0,0.07743311433214947 -10272.0,0.0774063745000059 -10273.0,0.07737964390187846 -10274.0,0.07735292253457829 -10275.0,0.07732621039491777 -10276.0,0.07729950747971034 -10277.0,0.07727281378577058 -10278.0,0.07724612930991405 -10279.0,0.07721945404895751 -10280.0,0.0771927879997188 -10281.0,0.07716613115901692 -10282.0,0.0771394835236718 -10283.0,0.0771128450905046 -10284.0,0.07708621585633757 -10285.0,0.07705959581799407 -10286.0,0.07703298497229845 -10287.0,0.07700638331607626 -10288.0,0.07697979084615413 -10289.0,0.07695320755935975 -10290.0,0.07692663345252199 -10291.0,0.07690006852247065 -10292.0,0.0768735127660368 -10293.0,0.0768469661800525 -10294.0,0.07682042876135099 -10295.0,0.07679390050676647 -10296.0,0.07676738141313436 -10297.0,0.07674087147729111 -10298.0,0.07671437069607431 -10299.0,0.07668787906632256 -10300.0,0.07666139658487563 -10301.0,0.07663492324857435 -10302.0,0.07660845905426067 -10303.0,0.07658200399877754 -10304.0,0.0765555580789691 -10305.0,0.07652912129168056 -10306.0,0.07650269363375822 -10307.0,0.07647627510204939 -10308.0,0.07644986569340256 -10309.0,0.0764234654046673 -10310.0,0.07639707423269422 -10311.0,0.0763706921743351 -10312.0,0.07634431922644268 -10313.0,0.0763179553858709 -10314.0,0.07629160064947473 -10315.0,0.07626525501411027 -10316.0,0.07623891847663464 -10317.0,0.0762125910339061 -10318.0,0.07618627268278398 -10319.0,0.07615996342012872 -10320.0,0.07613366324280177 -10321.0,0.0761073721476657 -10322.0,0.07608109013158423 -10323.0,0.07605481719142211 -10324.0,0.0760285533240451 -10325.0,0.07600229852632015 -10326.0,0.07597605279511527 -10327.0,0.07594981612729951 -10328.0,0.07592358851974308 -10329.0,0.07589736996931713 -10330.0,0.07587116047289404 -10331.0,0.07584496002734718 -10332.0,0.07581876862955109 -10333.0,0.07579258627638123 -10334.0,0.07576641296471429 -10335.0,0.07574024869142798 -10336.0,0.07571409345340112 -10337.0,0.07568794724751353 -10338.0,0.07566181007064617 -10339.0,0.07563568191968108 -10340.0,0.07560956279150138 -10341.0,0.07558345268299121 -10342.0,0.07555735159103584 -10343.0,0.0755312595125216 -10344.0,0.07550517644433592 -10345.0,0.07547910238336723 -10346.0,0.07545303732650512 -10347.0,0.07542698127064021 -10348.0,0.0754009342126642 -10349.0,0.07537489614946989 -10350.0,0.07534886707795108 -10351.0,0.07532284699500272 -10352.0,0.0752968358975208 -10353.0,0.07527083378240243 -10354.0,0.07524484064654567 -10355.0,0.07521885648684976 -10356.0,0.07519288130021498 -10357.0,0.07516691508354273 -10358.0,0.07514095783373534 -10359.0,0.07511500954769634 -10360.0,0.0750890702223303 -10361.0,0.07506313985454287 -10362.0,0.07503721844124067 -10363.0,0.07501130597933152 -10364.0,0.07498540246572424 -10365.0,0.07495950789732873 -10366.0,0.07493362227105599 -10367.0,0.07490774558381799 -10368.0,0.07488187783252787 -10369.0,0.07485601901409977 -10370.0,0.07483016912544897 -10371.0,0.07480432816349172 -10372.0,0.07477849612514538 -10373.0,0.07475267300732841 -10374.0,0.0747268588069603 -10375.0,0.07470105352096157 -10376.0,0.07467525714625384 -10377.0,0.07464946967975981 -10378.0,0.07462369111840327 -10379.0,0.07459792145910892 -10380.0,0.07457216069880268 -10381.0,0.07454640883441149 -10382.0,0.07452066586286336 -10383.0,0.07449493178108729 -10384.0,0.07446920658601341 -10385.0,0.0744434902745729 -10386.0,0.07441778284369797 -10387.0,0.07439208429032199 -10388.0,0.0743663946113792 -10389.0,0.07434071380380505 -10390.0,0.07431504186453602 -10391.0,0.07428937879050966 -10392.0,0.0742637245786645 -10393.0,0.0742380792259402 -10394.0,0.07421244272927745 -10395.0,0.07418681508561804 -10396.0,0.07416119629190472 -10397.0,0.07413558634508138 -10398.0,0.07410998524209296 -10399.0,0.07408439297988544 -10400.0,0.0740588095554058 -10401.0,0.07403323496560214 -10402.0,0.07400766920742362 -10403.0,0.07398211227782042 -10404.0,0.07395656417374383 -10405.0,0.07393102489214606 -10406.0,0.07390549442998051 -10407.0,0.07387997278420157 -10408.0,0.07385445995176473 -10409.0,0.07382895592962645 -10410.0,0.07380346071474428 -10411.0,0.07377797430407687 -10412.0,0.07375249669458386 -10413.0,0.07372702788322595 -10414.0,0.07370156786696488 -10415.0,0.07367611664276348 -10416.0,0.07365067420758563 -10417.0,0.07362524055839617 -10418.0,0.07359981569216108 -10419.0,0.07357439960584736 -10420.0,0.07354899229642309 -10421.0,0.0735235937608573 -10422.0,0.07349820399612017 -10423.0,0.07347282299918287 -10424.0,0.07344745076701764 -10425.0,0.07342208729659778 -10426.0,0.07339673258489758 -10427.0,0.07337138662889241 -10428.0,0.07334604942555868 -10429.0,0.07332072097187389 -10430.0,0.07329540126481647 -10431.0,0.07327009030136601 -10432.0,0.07324478807850308 -10433.0,0.07321949459320937 -10434.0,0.07319420984246744 -10435.0,0.07316893382326106 -10436.0,0.07314366653257501 -10437.0,0.07311840796739508 -10438.0,0.07309315812470805 -10439.0,0.07306791700150185 -10440.0,0.07304268459476539 -10441.0,0.07301746090148861 -10442.0,0.07299224591866256 -10443.0,0.0729670396432792 -10444.0,0.07294184207233165 -10445.0,0.07291665320281401 -10446.0,0.07289147303172148 -10447.0,0.07286630155605017 -10448.0,0.07284113877279734 -10449.0,0.07281598467896126 -10450.0,0.07279083927154126 -10451.0,0.07276570254753761 -10452.0,0.07274057450395172 -10453.0,0.07271545513778599 -10454.0,0.07269034444604389 -10455.0,0.07266524242572985 -10456.0,0.0726401490738494 -10457.0,0.0726150643874091 -10458.0,0.07258998836341654 -10459.0,0.07256492099888029 -10460.0,0.07253986229081001 -10461.0,0.0725148122362164 -10462.0,0.07248977083211117 -10463.0,0.07246473807550707 -10464.0,0.07243971396341783 -10465.0,0.07241469849285828 -10466.0,0.07238969166084427 -10467.0,0.07236469346439268 -10468.0,0.07233970390052137 -10469.0,0.07231472296624927 -10470.0,0.07228975065859636 -10471.0,0.07226478697458363 -10472.0,0.07223983191123307 -10473.0,0.07221488546556772 -10474.0,0.07218994763461166 -10475.0,0.07216501841539003 -10476.0,0.07214009780492887 -10477.0,0.0721151858002554 -10478.0,0.07209028239839778 -10479.0,0.0720653875963852 -10480.0,0.07204050139124796 -10481.0,0.07201562378001722 -10482.0,0.07199075475972531 -10483.0,0.07196589432740554 -10484.0,0.07194104248009227 -10485.0,0.07191619921482077 -10486.0,0.07189136452862749 -10487.0,0.07186653841854981 -10488.0,0.0718417208816262 -10489.0,0.07181691191489603 -10490.0,0.07179211151539981 -10491.0,0.07176731968017903 -10492.0,0.07174253640627626 -10493.0,0.07171776169073493 -10494.0,0.07169299553059967 -10495.0,0.07166823792291603 -10496.0,0.07164348886473065 -10497.0,0.07161874835309108 -10498.0,0.071594016385046 -10499.0,0.07156929295764505 -10500.0,0.07154457806793893 -10501.0,0.07151987171297934 -10502.0,0.07149517388981894 -10503.0,0.07147048459551149 -10504.0,0.07144580382711174 -10505.0,0.07142113158167548 -10506.0,0.07139646785625943 -10507.0,0.07137181264792142 -10508.0,0.07134716595372027 -10509.0,0.07132252777071584 -10510.0,0.07129789809596888 -10511.0,0.07127327692654133 -10512.0,0.07124866425949603 -10513.0,0.07122406009189691 -10514.0,0.07119946442080882 -10515.0,0.07117487724329769 -10516.0,0.07115029855643046 -10517.0,0.07112572835727506 -10518.0,0.07110116664290049 -10519.0,0.07107661341037665 -10520.0,0.07105206865677453 -10521.0,0.07102753237916615 -10522.0,0.07100300457462452 -10523.0,0.07097848524022361 -10524.0,0.07095397437303845 -10525.0,0.0709294719701451 -10526.0,0.0709049780286206 -10527.0,0.07088049254554296 -10528.0,0.07085601551799127 -10529.0,0.07083154694304561 -10530.0,0.07080708681778705 -10531.0,0.07078263513929765 -10532.0,0.07075819190466053 -10533.0,0.07073375711095978 -10534.0,0.07070933075528053 -10535.0,0.07068491283470886 -10536.0,0.0706605033463319 -10537.0,0.07063610228723777 -10538.0,0.07061170965451562 -10539.0,0.0705873254452556 -10540.0,0.07056294965654882 -10541.0,0.07053858228548741 -10542.0,0.07051422332916457 -10543.0,0.07048987278467445 -10544.0,0.07046553064911215 -10545.0,0.07044119691957389 -10546.0,0.0704168715931568 -10547.0,0.07039255466695908 -10548.0,0.07036824613807986 -10549.0,0.07034394600361933 -10550.0,0.07031965426067864 -10551.0,0.07029537090636002 -10552.0,0.07027109593776658 -10553.0,0.07024682935200251 -10554.0,0.07022257114617299 -10555.0,0.07019832131738418 -10556.0,0.07017407986274331 -10557.0,0.07014984677935847 -10558.0,0.07012562206433885 -10559.0,0.07010140571479466 -10560.0,0.07007719772783705 -10561.0,0.07005299810057815 -10562.0,0.07002880683013114 -10563.0,0.07000462391361019 -10564.0,0.06998044934813047 -10565.0,0.06995628313080808 -10566.0,0.06993212525876019 -10567.0,0.06990797572910495 -10568.0,0.06988383453896152 -10569.0,0.06985970168544997 -10570.0,0.06983557716569147 -10571.0,0.06981146097680813 -10572.0,0.06978735311592309 -10573.0,0.0697632535801604 -10574.0,0.06973916236664521 -10575.0,0.06971507947250359 -10576.0,0.06969100489486263 -10577.0,0.06966693863085045 -10578.0,0.06964288067759607 -10579.0,0.06961883103222954 -10580.0,0.06959478969188194 -10581.0,0.06957075665368537 -10582.0,0.06954673191477274 -10583.0,0.06952271547227816 -10584.0,0.06949870732333663 -10585.0,0.06947470746508416 -10586.0,0.0694507158946577 -10587.0,0.06942673260919525 -10588.0,0.06940275760583581 -10589.0,0.06937879088171933 -10590.0,0.06935483243398671 -10591.0,0.06933088225977992 -10592.0,0.06930694035624185 -10593.0,0.06928300672051643 -10594.0,0.06925908134974859 -10595.0,0.06923516424108413 -10596.0,0.06921125539166993 -10597.0,0.06918735479865387 -10598.0,0.06916346245918481 -10599.0,0.06913957837041249 -10600.0,0.06911570252948775 -10601.0,0.06909183493356237 -10602.0,0.06906797557978916 -10603.0,0.06904412446532181 -10604.0,0.06902028158731509 -10605.0,0.0689964469429247 -10606.0,0.0689726205293074 -10607.0,0.06894880234362079 -10608.0,0.06892499238302358 -10609.0,0.06890119064467538 -10610.0,0.0688773971257369 -10611.0,0.06885361182336965 -10612.0,0.06882983473473626 -10613.0,0.06880606585700029 -10614.0,0.06878230518732628 -10615.0,0.06875855272287981 -10616.0,0.0687348084608273 -10617.0,0.06871107239833628 -10618.0,0.06868734453257519 -10619.0,0.06866362486071352 -10620.0,0.06863991337992162 -10621.0,0.0686162100873709 -10622.0,0.06859251498023373 -10623.0,0.06856882805568353 -10624.0,0.0685451493108945 -10625.0,0.068521478743042 -10626.0,0.06849781634930231 -10627.0,0.0684741621268527 -10628.0,0.06845051607287134 -10629.0,0.06842687818453744 -10630.0,0.06840324845903119 -10631.0,0.06837962689353373 -10632.0,0.06835601348522721 -10633.0,0.06833240823129466 -10634.0,0.06830881112892019 -10635.0,0.06828522217528882 -10636.0,0.06826164136758658 -10637.0,0.06823806870300042 -10638.0,0.06821450417871831 -10639.0,0.06819094779192918 -10640.0,0.06816739953982294 -10641.0,0.0681438594195904 -10642.0,0.06812032742842344 -10643.0,0.06809680356351484 -10644.0,0.06807328782205845 -10645.0,0.0680497802012489 -10646.0,0.06802628069828195 -10647.0,0.06800278931035429 -10648.0,0.0679793060346636 -10649.0,0.06795583086840842 -10650.0,0.06793236380878839 -10651.0,0.06790890485300403 -10652.0,0.06788545399825688 -10653.0,0.06786201124174945 -10654.0,0.06783857658068512 -10655.0,0.06781515001226834 -10656.0,0.0677917315337045 -10657.0,0.06776832114219998 -10658.0,0.067744918834962 -10659.0,0.0677215246091989 -10660.0,0.0676981384621199 -10661.0,0.06767476039093526 -10662.0,0.06765139039285605 -10663.0,0.06762802846509443 -10664.0,0.06760467460486352 -10665.0,0.0675813288093774 -10666.0,0.06755799107585102 -10667.0,0.06753466140150037 -10668.0,0.06751133978354243 -10669.0,0.06748802621919506 -10670.0,0.06746472070567718 -10671.0,0.06744142324020855 -10672.0,0.06741813382000995 -10673.0,0.06739485244230317 -10674.0,0.06737157910431091 -10675.0,0.06734831380325679 -10676.0,0.06732505653636543 -10677.0,0.06730180730086244 -10678.0,0.06727856609397437 -10679.0,0.06725533291292865 -10680.0,0.06723210775495377 -10681.0,0.06720889061727912 -10682.0,0.06718568149713512 -10683.0,0.06716248039175302 -10684.0,0.06713928729836513 -10685.0,0.06711610221420466 -10686.0,0.06709292513650587 -10687.0,0.06706975606250382 -10688.0,0.06704659498943465 -10689.0,0.06702344191453538 -10690.0,0.06700029683504405 -10691.0,0.06697715974819965 -10692.0,0.06695403065124202 -10693.0,0.06693090954141205 -10694.0,0.06690779641595158 -10695.0,0.06688469127210342 -10696.0,0.0668615941071112 -10697.0,0.06683850491821966 -10698.0,0.06681542370267442 -10699.0,0.06679235045772207 -10700.0,0.06676928518061011 -10701.0,0.06674622786858703 -10702.0,0.06672317851890226 -10703.0,0.06670013712880622 -10704.0,0.06667710369555017 -10705.0,0.06665407821638644 -10706.0,0.06663106068856824 -10707.0,0.06660805110934974 -10708.0,0.06658504947598612 -10709.0,0.06656205578573338 -10710.0,0.06653907003584855 -10711.0,0.06651609222358963 -10712.0,0.06649312234621556 -10713.0,0.06647016040098612 -10714.0,0.06644720638516216 -10715.0,0.06642426029600544 -10716.0,0.06640132213077868 -10717.0,0.06637839188674546 -10718.0,0.06635546956117042 -10719.0,0.06633255515131907 -10720.0,0.06630964865445793 -10721.0,0.06628675006785435 -10722.0,0.06626385938877674 -10723.0,0.0662409766144944 -10724.0,0.06621810174227763 -10725.0,0.06619523476939754 -10726.0,0.06617237569312631 -10727.0,0.06614952451073701 -10728.0,0.06612668121950367 -10729.0,0.06610384581670128 -10730.0,0.06608101829960568 -10731.0,0.06605819866549374 -10732.0,0.06603538691164326 -10733.0,0.06601258303533297 -10734.0,0.06598978703384249 -10735.0,0.06596699890445246 -10736.0,0.0659442186444444 -10737.0,0.06592144625110083 -10738.0,0.06589868172170513 -10739.0,0.06587592505354166 -10740.0,0.06585317624389572 -10741.0,0.06583043529005358 -10742.0,0.06580770218930236 -10743.0,0.06578497693893018 -10744.0,0.0657622595362261 -10745.0,0.06573954997848007 -10746.0,0.06571684826298306 -10747.0,0.06569415438702686 -10748.0,0.06567146834790427 -10749.0,0.06564879014290903 -10750.0,0.06562611976933581 -10751.0,0.06560345722448016 -10752.0,0.06558080250563861 -10753.0,0.06555815561010862 -10754.0,0.06553551653518863 -10755.0,0.0655128852781779 -10756.0,0.0654902618363767 -10757.0,0.06546764620708621 -10758.0,0.06544503838760862 -10759.0,0.06542243837524689 -10760.0,0.06539984616730504 -10761.0,0.06537726176108799 -10762.0,0.0653546851539016 -10763.0,0.06533211634305261 -10764.0,0.06530955532584873 -10765.0,0.06528700209959862 -10766.0,0.06526445666161182 -10767.0,0.06524191900919887 -10768.0,0.06521938913967114 -10769.0,0.06519686705034097 -10770.0,0.0651743527385217 -10771.0,0.0651518462015275 -10772.0,0.06512934743667351 -10773.0,0.06510685644127577 -10774.0,0.06508437321265129 -10775.0,0.06506189774811802 -10776.0,0.06503943004499473 -10777.0,0.06501697010060122 -10778.0,0.06499451791225817 -10779.0,0.06497207347728726 -10780.0,0.06494963679301094 -10781.0,0.06492720785675274 -10782.0,0.06490478666583702 -10783.0,0.06488237321758909 -10784.0,0.06485996750933526 -10785.0,0.0648375695384026 -10786.0,0.06481517930211923 -10787.0,0.06479279679781416 -10788.0,0.06477042202281737 -10789.0,0.06474805497445962 -10790.0,0.06472569565007273 -10791.0,0.0647033440469894 -10792.0,0.06468100016254327 -10793.0,0.06465866399406882 -10794.0,0.06463633553890152 -10795.0,0.06461401479437778 -10796.0,0.06459170175783492 -10797.0,0.06456939642661108 -10798.0,0.06454709879804545 -10799.0,0.06452480886947806 -10800.0,0.06450252663824993 -10801.0,0.06448025210170288 -10802.0,0.06445798525717977 -10803.0,0.06443572610202432 -10804.0,0.06441347463358116 -10805.0,0.0643912308491959 -10806.0,0.06436899474621495 -10807.0,0.06434676632198574 -10808.0,0.06432454557385658 -10809.0,0.06430233249917673 -10810.0,0.06428012709529626 -10811.0,0.06425792935956627 -10812.0,0.06423573928933872 -10813.0,0.06421355688196655 -10814.0,0.06419138213480347 -10815.0,0.06416921504520423 -10816.0,0.06414705561052447 -10817.0,0.06412490382812078 -10818.0,0.06410275969535051 -10819.0,0.06408062320957207 -10820.0,0.06405849436814476 -10821.0,0.06403637316842876 -10822.0,0.06401425960778519 -10823.0,0.06399215368357601 -10824.0,0.0639700553931642 -10825.0,0.06394796473391354 -10826.0,0.06392588170318884 -10827.0,0.06390380629835571 -10828.0,0.06388173851678072 -10829.0,0.06385967835583135 -10830.0,0.06383762581287603 -10831.0,0.06381558088528397 -10832.0,0.0637935435704254 -10833.0,0.06377151386567145 -10834.0,0.06374949176839415 -10835.0,0.06372747727596637 -10836.0,0.06370547038576196 -10837.0,0.0636834710951557 -10838.0,0.0636614794015232 -10839.0,0.063639495302241 -10840.0,0.06361751879468658 -10841.0,0.06359554987623829 -10842.0,0.0635735885442754 -10843.0,0.06355163479617812 -10844.0,0.06352968862932747 -10845.0,0.06350775004110545 -10846.0,0.06348581902889495 -10847.0,0.06346389559007981 -10848.0,0.06344197972204464 -10849.0,0.06342007142217508 -10850.0,0.06339817068785762 -10851.0,0.06337627751647969 -10852.0,0.06335439190542955 -10853.0,0.06333251385209641 -10854.0,0.06331064335387042 -10855.0,0.06328878040814258 -10856.0,0.06326692501230476 -10857.0,0.06324507716374977 -10858.0,0.06322323685987137 -10859.0,0.06320140409806414 -10860.0,0.06317957887572362 -10861.0,0.06315776119024617 -10862.0,0.06313595103902914 -10863.0,0.0631141484194707 -10864.0,0.06309235332897004 -10865.0,0.06307056576492705 -10866.0,0.06304878572474269 -10867.0,0.06302701320581877 -10868.0,0.06300524820555799 -10869.0,0.06298349072136392 -10870.0,0.06296174075064104 -10871.0,0.06293999829079476 -10872.0,0.0629182633392314 -10873.0,0.06289653589335806 -10874.0,0.06287481595058285 -10875.0,0.06285310350831474 -10876.0,0.06283139856396364 -10877.0,0.06280970111494022 -10878.0,0.06278801115865619 -10879.0,0.06276632869252408 -10880.0,0.06274465371395732 -10881.0,0.0627229862203703 -10882.0,0.06270132620917818 -10883.0,0.06267967367779707 -10884.0,0.06265802862364404 -10885.0,0.06263639104413699 -10886.0,0.06261476093669464 -10887.0,0.06259313829873675 -10888.0,0.06257152312768387 -10889.0,0.06254991542095747 -10890.0,0.06252831517597991 -10891.0,0.06250672239017442 -10892.0,0.06248513706096517 -10893.0,0.06246355918577719 -10894.0,0.06244198876203635 -10895.0,0.062420425787169484 -10896.0,0.062398870258604286 -10897.0,0.06237732217376934 -10898.0,0.06235578153009414 -10899.0,0.062334248325009 -10900.0,0.06231272255594518 -10901.0,0.06229120422033482 -10902.0,0.06226969331561096 -10903.0,0.06224818983920747 -10904.0,0.06222669378855914 -10905.0,0.06220520516110167 -10906.0,0.06218372395427165 -10907.0,0.062162250165506465 -10908.0,0.062140783792244476 -10909.0,0.06211932483192491 -10910.0,0.06209787328198788 -10911.0,0.062076429139874344 -10912.0,0.06205499240302618 -10913.0,0.06203356306888614 -10914.0,0.0620121411348979 -10915.0,0.061990726598505914 -10916.0,0.06196931945715562 -10917.0,0.0619479197082933 -10918.0,0.06192652734936612 -10919.0,0.06190514237782215 -10920.0,0.06188376479111027 -10921.0,0.06186239458668032 -10922.0,0.061841031761982974 -10923.0,0.06181967631446984 -10924.0,0.06179832824159333 -10925.0,0.06177698754080677 -10926.0,0.0617556542095644 -10927.0,0.061734328245321324 -10928.0,0.061713009645533445 -10929.0,0.061691698407657654 -10930.0,0.06167039452915167 -10931.0,0.06164909800747412 -10932.0,0.061627808840084425 -10933.0,0.061606527024442984 -10934.0,0.06158525255801102 -10935.0,0.06156398543825065 -10936.0,0.061542725662624885 -10937.0,0.06152147322859754 -10938.0,0.06150022813363337 -10939.0,0.061478990375198 -10940.0,0.06145775995075795 -10941.0,0.06143653685778053 -10942.0,0.061415321093733995 -10943.0,0.06139411265608747 -10944.0,0.06137291154231096 -10945.0,0.061351717749875294 -10946.0,0.06133053127625221 -10947.0,0.06130935211891433 -10948.0,0.061288180275335155 -10949.0,0.06126701574298899 -10950.0,0.06124585851935108 -10951.0,0.06122470860189754 -10952.0,0.06120356598810534 -10953.0,0.061182430675452294 -10954.0,0.061161302661417116 -10955.0,0.0611401819434794 -10956.0,0.0611190685191196 -10957.0,0.06109796238581906 -10958.0,0.06107686354105992 -10959.0,0.06105577198232527 -10960.0,0.061034687707099036 -10961.0,0.061013610712866054 -10962.0,0.06099254099711193 -10963.0,0.06097147855732323 -10964.0,0.060950423390987364 -10965.0,0.060929375495592616 -10966.0,0.06090833486862809 -10967.0,0.060887301507583806 -10968.0,0.06086627540995065 -10969.0,0.060845256573220374 -10970.0,0.06082424499488554 -10971.0,0.06080324067243964 -10972.0,0.06078224360337702 -10973.0,0.060761253785192884 -10974.0,0.060740271215383314 -10975.0,0.060719295891445195 -10976.0,0.060698327810876355 -10977.0,0.06067736697117545 -10978.0,0.06065641336984203 -10979.0,0.06063546700437644 -10980.0,0.060614527872279944 -10981.0,0.06059359597105467 -10982.0,0.06057267129820361 -10983.0,0.06055175385123055 -10984.0,0.060530843627640225 -10985.0,0.0605099406249382 -10986.0,0.06048904484063091 -10987.0,0.0604681562722256 -10988.0,0.06044727491723045 -10989.0,0.06042640077315444 -10990.0,0.06040553383750749 -10991.0,0.06038467410780026 -10992.0,0.06036382158154437 -10993.0,0.06034297625625226 -10994.0,0.06032213812943724 -10995.0,0.0603013071986135 -10996.0,0.060280483461296 -10997.0,0.060259666915000655 -10998.0,0.060238857557244195 -10999.0,0.06021805538554425 -11000.0,0.06019726039741922 -11001.0,0.060176472590388434 -11002.0,0.06015569196197206 -11003.0,0.060134918509691146 -11004.0,0.06011415223106753 -11005.0,0.06009339312362395 -11006.0,0.06007264118488402 -11007.0,0.0600518964123722 -11008.0,0.06003115880361373 -11009.0,0.06001042835613481 -11010.0,0.05998970506746242 -11011.0,0.05996898893512445 -11012.0,0.059948279956649635 -11013.0,0.05992757812956749 -11014.0,0.05990688345140846 -11015.0,0.05988619591970382 -11016.0,0.05986551553198574 -11017.0,0.05984484228578713 -11018.0,0.059824176178641865 -11019.0,0.05980351720808461 -11020.0,0.05978286537165095 -11021.0,0.0597622206668772 -11022.0,0.05974158309130063 -11023.0,0.05972095264245932 -11024.0,0.05970032931789225 -11025.0,0.059679713115139144 -11026.0,0.05965910403174066 -11027.0,0.059638502065238304 -11028.0,0.05961790721317443 -11029.0,0.05959731947309215 -11030.0,0.05957673884253555 -11031.0,0.0595561653190495 -11032.0,0.05953559890017973 -11033.0,0.059515039583472845 -11034.0,0.0594944873664762 -11035.0,0.05947394224673812 -11036.0,0.05945340422180769 -11037.0,0.059432873289234925 -11038.0,0.059412349446570575 -11039.0,0.05939183269136631 -11040.0,0.05937132302117465 -11041.0,0.059350820433548945 -11042.0,0.05933032492604336 -11043.0,0.05930983649621293 -11044.0,0.05928935514161355 -11045.0,0.05926888085980196 -11046.0,0.05924841364833569 -11047.0,0.05922795350477317 -11048.0,0.059207500426673644 -11049.0,0.059187054411597224 -11050.0,0.05916661545710487 -11051.0,0.059146183560758306 -11052.0,0.05912575872012019 -11053.0,0.059105340932753984 -11054.0,0.059084930196224024 -11055.0,0.0590645265080954 -11056.0,0.05904412986593415 -11057.0,0.059023740267307064 -11058.0,0.05900335770978182 -11059.0,0.05898298219092698 -11060.0,0.058962613708311816 -11061.0,0.05894225225950655 -11062.0,0.05892189784208221 -11063.0,0.058901550453610695 -11064.0,0.05888121009166465 -11065.0,0.05886087675381765 -11066.0,0.05884055043764407 -11067.0,0.05882023114071913 -11068.0,0.058799918860618916 -11069.0,0.05877961359492027 -11070.0,0.058759315341200935 -11071.0,0.058739024097039495 -11072.0,0.05871873986001536 -11073.0,0.05869846262770874 -11074.0,0.05867819239770072 -11075.0,0.0586579291675732 -11076.0,0.05863767293490897 -11077.0,0.058617423697291546 -11078.0,0.05859718145230537 -11079.0,0.058576946197535694 -11080.0,0.058556717930568616 -11081.0,0.05853649664899101 -11082.0,0.05851628235039064 -11083.0,0.0584960750323561 -11084.0,0.05847587469247679 -11085.0,0.058455681328342994 -11086.0,0.05843549493754573 -11087.0,0.058415315517676945 -11088.0,0.058395143066329376 -11089.0,0.05837497758109662 -11090.0,0.05835481905957303 -11091.0,0.05833466749935388 -11092.0,0.058314522898035216 -11093.0,0.05829438525321397 -11094.0,0.05827425456248782 -11095.0,0.05825413082345533 -11096.0,0.05823401403371591 -11097.0,0.05821390419086979 -11098.0,0.05819380129251795 -11099.0,0.058173705336262295 -11100.0,0.058153616319705524 -11101.0,0.05813353424045119 -11102.0,0.05811345909610359 -11103.0,0.05809339088426794 -11104.0,0.05807332960255024 -11105.0,0.05805327524855733 -11106.0,0.0580332278198969 -11107.0,0.058013187314177386 -11108.0,0.05799315372900812 -11109.0,0.05797312706199925 -11110.0,0.05795310731076177 -11111.0,0.0579330944729074 -11112.0,0.0579130885460488 -11113.0,0.05789308952779939 -11114.0,0.057873097415773476 -11115.0,0.057853112207586085 -11116.0,0.05783313390085316 -11117.0,0.05781316249319142 -11118.0,0.05779319798221846 -11119.0,0.057773240365552606 -11120.0,0.05775328964081308 -11121.0,0.05773334580561991 -11122.0,0.05771340885759395 -11123.0,0.05769347879435688 -11124.0,0.05767355561353114 -11125.0,0.05765363931274006 -11126.0,0.05763372988960779 -11127.0,0.057613827341759294 -11128.0,0.057593931666820294 -11129.0,0.0575740428624174 -11130.0,0.05755416092617804 -11131.0,0.05753428585573044 -11132.0,0.05751441764870363 -11133.0,0.057494556302727484 -11134.0,0.05747470181543269 -11135.0,0.05745485418445079 -11136.0,0.05743501340741403 -11137.0,0.05741517948195561 -11138.0,0.05739535240570946 -11139.0,0.05737553217631039 -11140.0,0.05735571879139394 -11141.0,0.05733591224859654 -11142.0,0.05731611254555542 -11143.0,0.05729631967990862 -11144.0,0.05727653364929501 -11145.0,0.057256754451354225 -11146.0,0.05723698208372676 -11147.0,0.05721721654405393 -11148.0,0.057197457829977864 -11149.0,0.05717770593914145 -11150.0,0.05715796086918845 -11151.0,0.057138222617763426 -11152.0,0.05711849118251177 -11153.0,0.057098766561079616 -11154.0,0.05707904875111399 -11155.0,0.0570593377502627 -11156.0,0.05703963355617439 -11157.0,0.05701993616649844 -11158.0,0.057000245578885125 -11159.0,0.0569805617909855 -11160.0,0.05696088480045143 -11161.0,0.056941214604935626 -11162.0,0.05692155120209152 -11163.0,0.05690189458957343 -11164.0,0.05688224476503649 -11165.0,0.05686260172613662 -11166.0,0.056842965470530506 -11167.0,0.05682333599587572 -11168.0,0.05680371329983059 -11169.0,0.05678409738005431 -11170.0,0.056764488234206795 -11171.0,0.056744885859948836 -11172.0,0.05672529025494202 -11173.0,0.05670570141684875 -11174.0,0.05668611934333217 -11175.0,0.05666654403205631 -11176.0,0.05664697548068598 -11177.0,0.05662741368688682 -11178.0,0.056607858648325196 -11179.0,0.05658831036266837 -11180.0,0.05656876882758436 -11181.0,0.05654923404074201 -11182.0,0.056529705999810984 -11183.0,0.05651018470246169 -11184.0,0.05649067014636539 -11185.0,0.05647116232919415 -11186.0,0.05645166124862085 -11187.0,0.05643216690231911 -11188.0,0.0564126792879634 -11189.0,0.05639319840322902 -11190.0,0.05637372424579205 -11191.0,0.05635425681332932 -11192.0,0.05633479610351853 -11193.0,0.05631534211403815 -11194.0,0.05629589484256751 -11195.0,0.05627645428678662 -11196.0,0.056257020444376395 -11197.0,0.05623759331301852 -11198.0,0.05621817289039548 -11199.0,0.05619875917419059 -11200.0,0.05617935216208789 -11201.0,0.05615995185177226 -11202.0,0.05614055824092942 -11203.0,0.05612117132724586 -11204.0,0.056101791108408815 -11205.0,0.05608241758210639 -11206.0,0.05606305074602748 -11207.0,0.05604369059786176 -11208.0,0.05602433713529968 -11209.0,0.05600499035603253 -11210.0,0.055985650257752366 -11211.0,0.055966316838152105 -11212.0,0.05594699009492534 -11213.0,0.055927670025766575 -11214.0,0.05590835662837105 -11215.0,0.05588904990043483 -11216.0,0.05586974983965477 -11217.0,0.05585045644372849 -11218.0,0.055831169710354435 -11219.0,0.05581188963723185 -11220.0,0.05579261622206077 -11221.0,0.05577334946254198 -11222.0,0.05575408935637712 -11223.0,0.0557348359012686 -11224.0,0.05571558909491965 -11225.0,0.05569634893503421 -11226.0,0.055677115419317094 -11227.0,0.05565788854547389 -11228.0,0.055638668311211 -11229.0,0.05561945471423553 -11230.0,0.05560024775225547 -11231.0,0.05558104742297956 -11232.0,0.055561853724117385 -11233.0,0.05554266665337921 -11234.0,0.055523486208476185 -11235.0,0.055504312387120225 -11236.0,0.05548514518702403 -11237.0,0.055465984605901124 -11238.0,0.05544683064146573 -11239.0,0.05542768329143296 -11240.0,0.05540854255351866 -11241.0,0.055389408425439504 -11242.0,0.055370280904912896 -11243.0,0.055351159989657076 -11244.0,0.05533204567739105 -11245.0,0.05531293796583466 -11246.0,0.055293836852708445 -11247.0,0.0552747423357338 -11248.0,0.05525565441263288 -11249.0,0.05523657308112867 -11250.0,0.05521749833894486 -11251.0,0.055198430183806 -11252.0,0.055179368613437384 -11253.0,0.05516031362556511 -11254.0,0.05514126521791609 -11255.0,0.05512222338821793 -11256.0,0.0551031881341991 -11257.0,0.05508415945358885 -11258.0,0.0550651373441172 -11259.0,0.05504612180351492 -11260.0,0.055027112829513614 -11261.0,0.05500811041984564 -11262.0,0.05498911457224419 -11263.0,0.05497012528444313 -11264.0,0.05495114255417722 -11265.0,0.05493216637918195 -11266.0,0.05491319675719362 -11267.0,0.05489423368594925 -11268.0,0.0548752771631867 -11269.0,0.05485632718664461 -11270.0,0.054837383754062406 -11271.0,0.054818446863180215 -11272.0,0.05479951651173904 -11273.0,0.05478059269748062 -11274.0,0.054761675418147485 -11275.0,0.05474276467148297 -11276.0,0.05472386045523111 -11277.0,0.05470496276713679 -11278.0,0.05468607160494565 -11279.0,0.05466718696640415 -11280.0,0.05464830884925943 -11281.0,0.0546294372512595 -11282.0,0.05461057217015312 -11283.0,0.05459171360368983 -11284.0,0.054572861549619905 -11285.0,0.054554016005694456 -11286.0,0.05453517696966534 -11287.0,0.054516344439285234 -11288.0,0.054497518412307495 -11289.0,0.05447869888648634 -11290.0,0.05445988585957674 -11291.0,0.054441079329334445 -11292.0,0.05442227929351599 -11293.0,0.05440348574987862 -11294.0,0.05438469869618042 -11295.0,0.05436591813018024 -11296.0,0.054347144049637724 -11297.0,0.0543283764523132 -11298.0,0.05430961533596786 -11299.0,0.05429086069836364 -11300.0,0.05427211253726328 -11301.0,0.0542533708504302 -11302.0,0.054234635635628685 -11303.0,0.054215906890623757 -11304.0,0.05419718461318124 -11305.0,0.05417846880106765 -11306.0,0.054159759452050364 -11307.0,0.05414105656389748 -11308.0,0.054122360134377906 -11309.0,0.05410367016126125 -11310.0,0.05408498664231795 -11311.0,0.054066309575319216 -11312.0,0.05404763895803699 -11313.0,0.05402897478824404 -11314.0,0.054010317063713814 -11315.0,0.05399166578222061 -11316.0,0.05397302094153946 -11317.0,0.0539543825394462 -11318.0,0.053935750573717356 -11319.0,0.05391712504213029 -11320.0,0.05389850594246311 -11321.0,0.05387989327249472 -11322.0,0.05386128703000472 -11323.0,0.05384268721277355 -11324.0,0.05382409381858237 -11325.0,0.05380550684521316 -11326.0,0.05378692629044858 -11327.0,0.05376835215207213 -11328.0,0.05374978442786805 -11329.0,0.05373122311562134 -11330.0,0.0537126682131178 -11331.0,0.05369411971814392 -11332.0,0.053675577628487015 -11333.0,0.053657041941935164 -11334.0,0.053638512656277205 -11335.0,0.053619989769302684 -11336.0,0.053601473278801985 -11337.0,0.053582963182566216 -11338.0,0.0535644594783873 -11339.0,0.053545962164057805 -11340.0,0.053527471237371185 -11341.0,0.05350898669612159 -11342.0,0.05349050853810399 -11343.0,0.05347203676111401 -11344.0,0.053453571362948135 -11345.0,0.05343511234140358 -11346.0,0.053416659694278334 -11347.0,0.053398213419371086 -11348.0,0.05337977351448136 -11349.0,0.053361339977409404 -11350.0,0.053342912805956225 -11351.0,0.053324491997923634 -11352.0,0.053306077551114106 -11353.0,0.05328766946333096 -11354.0,0.053269267732378243 -11355.0,0.05325087235606078 -11356.0,0.053232483332184104 -11357.0,0.05321410065855455 -11358.0,0.053195724332979206 -11359.0,0.053177354353265927 -11360.0,0.05315899071722326 -11361.0,0.0531406334226606 -11362.0,0.05312228246738803 -11363.0,0.05310393784921646 -11364.0,0.053085599565957445 -11365.0,0.053067267615423394 -11366.0,0.053048941995427444 -11367.0,0.053030622703783475 -11368.0,0.05301230973830615 -11369.0,0.05299400309681083 -11370.0,0.05297570277711368 -11371.0,0.0529574087770316 -11372.0,0.05293912109438229 -11373.0,0.05292083972698411 -11374.0,0.05290256467265624 -11375.0,0.05288429592921861 -11376.0,0.052866033494491906 -11377.0,0.05284777736629751 -11378.0,0.05282952754245763 -11379.0,0.05281128402079518 -11380.0,0.05279304679913387 -11381.0,0.0527748158752981 -11382.0,0.052756591247113065 -11383.0,0.05273837291240469 -11384.0,0.0527201608689997 -11385.0,0.05270195511472548 -11386.0,0.052683755647410235 -11387.0,0.0526655624648829 -11388.0,0.052647375564973176 -11389.0,0.05262919494551151 -11390.0,0.05261102060432903 -11391.0,0.05259285253925771 -11392.0,0.052574690748130225 -11393.0,0.05255653522878003 -11394.0,0.052538385979041265 -11395.0,0.052520242996748866 -11396.0,0.05250210627973852 -11397.0,0.05248397582584666 -11398.0,0.05246585163291041 -11399.0,0.05244773369876772 -11400.0,0.05242962202125725 -11401.0,0.052411516598218424 -11402.0,0.05239341742749136 -11403.0,0.05237532450691697 -11404.0,0.05235723783433691 -11405.0,0.052339157407593574 -11406.0,0.052321083224530114 -11407.0,0.052303015282990376 -11408.0,0.05228495358081899 -11409.0,0.052266898115861354 -11410.0,0.05224884888596358 -11411.0,0.0522308058889725 -11412.0,0.052212769122735724 -11413.0,0.05219473858510161 -11414.0,0.052176714273919254 -11415.0,0.05215869618703846 -11416.0,0.05214068432230981 -11417.0,0.052122678677584626 -11418.0,0.05210467925071499 -11419.0,0.052086686039553645 -11420.0,0.05206869904195417 -11421.0,0.052050718255770845 -11422.0,0.052032743678858705 -11423.0,0.052014775309073474 -11424.0,0.05199681314427169 -11425.0,0.05197885718231058 -11426.0,0.051960907421048134 -11427.0,0.051942963858343114 -11428.0,0.05192502649205492 -11429.0,0.051907095320043777 -11430.0,0.05188917034017064 -11431.0,0.05187125155029721 -11432.0,0.05185333894828585 -11433.0,0.05183543253199976 -11434.0,0.051817532299302804 -11435.0,0.051799638248059665 -11436.0,0.05178175037613566 -11437.0,0.051763868681396916 -11438.0,0.051745993161710274 -11439.0,0.05172812381494334 -11440.0,0.051710260638964396 -11441.0,0.05169240363164251 -11442.0,0.05167455279084746 -11443.0,0.05165670811444979 -11444.0,0.051638869600320776 -11445.0,0.05162103724633236 -11446.0,0.051603211050357305 -11447.0,0.05158539101026907 -11448.0,0.05156757712394189 -11449.0,0.05154976938925063 -11450.0,0.051531967804070995 -11451.0,0.051514172366279386 -11452.0,0.051496383073752955 -11453.0,0.05147859992436952 -11454.0,0.05146082291600771 -11455.0,0.05144305204654686 -11456.0,0.05142528731386705 -11457.0,0.05140752871584904 -11458.0,0.05138977625037437 -11459.0,0.051372029915325315 -11460.0,0.051354289708584876 -11461.0,0.05133655562803674 -11462.0,0.05131882767156537 -11463.0,0.051301105837055966 -11464.0,0.05128339012239443 -11465.0,0.05126568052546744 -11466.0,0.05124797704416232 -11467.0,0.05123027967636719 -11468.0,0.05121258841997089 -11469.0,0.051194903272863 -11470.0,0.05117722423293378 -11471.0,0.05115955129807425 -11472.0,0.05114188446617617 -11473.0,0.05112422373513204 -11474.0,0.051106569102835016 -11475.0,0.05108892056717906 -11476.0,0.05107127812605881 -11477.0,0.051053641777369686 -11478.0,0.05103601151900775 -11479.0,0.051018387348869876 -11480.0,0.05100076926485362 -11481.0,0.050983157264857276 -11482.0,0.050965551346779873 -11483.0,0.050947951508521126 -11484.0,0.05093035774798151 -11485.0,0.050912770063062225 -11486.0,0.05089518845166521 -11487.0,0.050877612911693064 -11488.0,0.05086004344104917 -11489.0,0.05084248003763762 -11490.0,0.05082492269936325 -11491.0,0.05080737142413156 -11492.0,0.05078982620984882 -11493.0,0.05077228705442203 -11494.0,0.05075475395575891 -11495.0,0.05073722691176784 -11496.0,0.050719705920357995 -11497.0,0.05070219097943926 -11498.0,0.05068468208692224 -11499.0,0.050667179240718216 -11500.0,0.05064968243873925 -11501.0,0.050632191678898084 -11502.0,0.05061470695910821 -11503.0,0.05059722827728386 -11504.0,0.050579755631339894 -11505.0,0.05056228901919198 -11506.0,0.05054482843875648 -11507.0,0.0505273738879505 -11508.0,0.05050992536469179 -11509.0,0.050492482866898884 -11510.0,0.050475046392491035 -11511.0,0.05045761593938821 -11512.0,0.05044019150551104 -11513.0,0.050422773088780945 -11514.0,0.050405360687120024 -11515.0,0.05038795429845114 -11516.0,0.05037055392069778 -11517.0,0.05035315955178424 -11518.0,0.05033577118963549 -11519.0,0.05031838883217723 -11520.0,0.05030101247733589 -11521.0,0.050283642123038555 -11522.0,0.05026627776721309 -11523.0,0.050248919407788056 -11524.0,0.05023156704269275 -11525.0,0.05021422066985712 -11526.0,0.05019688028721188 -11527.0,0.05017954589268846 -11528.0,0.05016221748421901 -11529.0,0.05014489505973633 -11530.0,0.05012757861717401 -11531.0,0.05011026815446633 -11532.0,0.05009296366954828 -11533.0,0.05007566516035554 -11534.0,0.05005837262482453 -11535.0,0.05004108606089238 -11536.0,0.05002380546649696 -11537.0,0.05000653083957676 -11538.0,0.049989262178071085 -11539.0,0.0499719994799199 -11540.0,0.049954742743063885 -11541.0,0.04993749196544447 -11542.0,0.04992024714500371 -11543.0,0.04990300827968445 -11544.0,0.04988577536743022 -11545.0,0.04986854840618528 -11546.0,0.04985132739389453 -11547.0,0.04983411232850366 -11548.0,0.049816903207959035 -11549.0,0.04979970003020775 -11550.0,0.049782502793197556 -11551.0,0.04976531149487696 -11552.0,0.04974812613319517 -11553.0,0.04973094670610212 -11554.0,0.049713773211548386 -11555.0,0.04969660564748532 -11556.0,0.04967944401186495 -11557.0,0.049662288302640016 -11558.0,0.049645138517764004 -11559.0,0.049627994655191014 -11560.0,0.04961085671287593 -11561.0,0.04959372468877432 -11562.0,0.04957659858084249 -11563.0,0.049559478387037365 -11564.0,0.049542364105316664 -11565.0,0.049525255733638765 -11566.0,0.04950815326996279 -11567.0,0.0494910567122485 -11568.0,0.04947396605845642 -11569.0,0.04945688130654776 -11570.0,0.04943980245448446 -11571.0,0.049422729500229086 -11572.0,0.049405662441744984 -11573.0,0.04938860127699617 -11574.0,0.049371546003947414 -11575.0,0.049354496620564084 -11576.0,0.049337453124812344 -11577.0,0.04932041551465902 -11578.0,0.04930338378807166 -11579.0,0.04928635794301853 -11580.0,0.049269337977468505 -11581.0,0.04925232388939126 -11582.0,0.04923531567675715 -11583.0,0.04921831333753723 -11584.0,0.0492013168697032 -11585.0,0.04918432627122753 -11586.0,0.04916734154008336 -11587.0,0.049150362674244566 -11588.0,0.049133389671685644 -11589.0,0.04911642253038187 -11590.0,0.04909946124830917 -11591.0,0.04908250582344422 -11592.0,0.049065556253764325 -11593.0,0.04904861253724753 -11594.0,0.04903167467187258 -11595.0,0.04901474265561892 -11596.0,0.04899781648646669 -11597.0,0.04898089616239669 -11598.0,0.04896398168139047 -11599.0,0.04894707304143024 -11600.0,0.04893017024049897 -11601.0,0.04891327327658022 -11602.0,0.04889638214765832 -11603.0,0.048879496851718295 -11604.0,0.04886261738674587 -11605.0,0.04884574375072741 -11606.0,0.04882887594165002 -11607.0,0.0488120139575015 -11608.0,0.048795157796270375 -11609.0,0.04877830745594577 -11610.0,0.04876146293451758 -11611.0,0.04874462422997638 -11612.0,0.048727791340313464 -11613.0,0.04871096426352074 -11614.0,0.04869414299759089 -11615.0,0.04867732754051725 -11616.0,0.04866051789029387 -11617.0,0.048643714044915486 -11618.0,0.04862691600237749 -11619.0,0.04861012376067603 -11620.0,0.04859333731780789 -11621.0,0.048576556671770604 -11622.0,0.04855978182056233 -11623.0,0.04854301276218195 -11624.0,0.04852624949462906 -11625.0,0.048509492015903925 -11626.0,0.04849274032400747 -11627.0,0.048475994416941365 -11628.0,0.04845925429270794 -11629.0,0.04844251994931024 -11630.0,0.048425791384751934 -11631.0,0.048409068597037454 -11632.0,0.048392351584171885 -11633.0,0.048375640344161024 -11634.0,0.048358934875011354 -11635.0,0.04834223517472999 -11636.0,0.0483255412413248 -11637.0,0.04830885307280433 -11638.0,0.048292170667177815 -11639.0,0.04827549402245512 -11640.0,0.048258823136646874 -11641.0,0.04824215800776436 -11642.0,0.04822549863381956 -11643.0,0.0482088450128251 -11644.0,0.04819219714279435 -11645.0,0.04817555502174133 -11646.0,0.048158918647680786 -11647.0,0.04814228801862807 -11648.0,0.04812566313259929 -11649.0,0.048109043987611226 -11650.0,0.04809243058168135 -11651.0,0.04807582291282776 -11652.0,0.04805922097906931 -11653.0,0.04804262477842551 -11654.0,0.04802603430891655 -11655.0,0.048009449568563324 -11656.0,0.04799287055538737 -11657.0,0.04797629726741093 -11658.0,0.047959729702656946 -11659.0,0.04794316785914905 -11660.0,0.04792661173491149 -11661.0,0.04791006132796925 -11662.0,0.04789351663634801 -11663.0,0.04787697765807412 -11664.0,0.047860444391174546 -11665.0,0.04784391683367703 -11666.0,0.047827394983609946 -11667.0,0.047810878839002376 -11668.0,0.04779436839788403 -11669.0,0.04777786365828535 -11670.0,0.047761364618237434 -11671.0,0.04774487127577207 -11672.0,0.047728383628921754 -11673.0,0.047711901675719585 -11674.0,0.0476954254141994 -11675.0,0.0476789548423957 -11676.0,0.04766248995834369 -11677.0,0.047646030760079186 -11678.0,0.04762957724563876 -11679.0,0.047613129413059604 -11680.0,0.047596687260379654 -11681.0,0.04758025078563743 -11682.0,0.047563819986872195 -11683.0,0.047547394862123886 -11684.0,0.047530975409433115 -11685.0,0.04751456162684113 -11686.0,0.0474981535123899 -11687.0,0.047481751064122064 -11688.0,0.047465354280080946 -11689.0,0.047448963158310486 -11690.0,0.04743257769685536 -11691.0,0.04741619789376091 -11692.0,0.04739982374707315 -11693.0,0.047383455254838766 -11694.0,0.04736709241510509 -11695.0,0.04735073522592017 -11696.0,0.04733438368533271 -11697.0,0.04731803779139211 -11698.0,0.04730169754214839 -11699.0,0.047285362935652296 -11700.0,0.04726903396995523 -11701.0,0.04725271064310928 -11702.0,0.04723639295316715 -11703.0,0.04722008089818228 -11704.0,0.04720377447620878 -11705.0,0.047187473685301407 -11706.0,0.047171178523515565 -11707.0,0.04715488898890738 -11708.0,0.04713860507953363 -11709.0,0.04712232679345176 -11710.0,0.047106054128719925 -11711.0,0.047089787083396846 -11712.0,0.04707352565554203 -11713.0,0.04705726984321559 -11714.0,0.047041019644478356 -11715.0,0.04702477505739175 -11716.0,0.04700853608001794 -11717.0,0.04699230271041972 -11718.0,0.04697607494666061 -11719.0,0.0469598527868047 -11720.0,0.04694363622891682 -11721.0,0.046927425271062466 -11722.0,0.046911219911307804 -11723.0,0.04689502014771962 -11724.0,0.0468788259783654 -11725.0,0.046862637401313315 -11726.0,0.0468464544146322 -11727.0,0.0468302770163915 -11728.0,0.0468141052046614 -11729.0,0.046797938977512714 -11730.0,0.04678177833301692 -11731.0,0.046765623269246215 -11732.0,0.04674947378427335 -11733.0,0.04673332987617185 -11734.0,0.046717191543015846 -11735.0,0.04670105878288019 -11736.0,0.04668493159384031 -11737.0,0.04666880997397238 -11738.0,0.0466526939213532 -11739.0,0.04663658343406026 -11740.0,0.04662047851017166 -11741.0,0.04660437914776623 -11742.0,0.04658828534492342 -11743.0,0.046572197099723385 -11744.0,0.04655611441024687 -11745.0,0.04654003727457534 -11746.0,0.046523965690790925 -11747.0,0.04650789965697639 -11748.0,0.0464918391712152 -11749.0,0.046475784231591426 -11750.0,0.046459734836189835 -11751.0,0.04644369098309585 -11752.0,0.04642765267039559 -11753.0,0.04641161989617575 -11754.0,0.04639559265852377 -11755.0,0.0463795709555277 -11756.0,0.046363554785276304 -11757.0,0.04634754414585891 -11758.0,0.04633153903536561 -11759.0,0.04631553945188709 -11760.0,0.04629954539351475 -11761.0,0.04628355685834057 -11762.0,0.04626757384445725 -11763.0,0.046251596349958145 -11764.0,0.04623562437293726 -11765.0,0.04621965791148923 -11766.0,0.046203696963709386 -11767.0,0.0461877415276937 -11768.0,0.04617179160153881 -11769.0,0.04615584718334202 -11770.0,0.04613990827120125 -11771.0,0.046123974863215116 -11772.0,0.04610804695748287 -11773.0,0.046092124552104465 -11774.0,0.04607620764518042 -11775.0,0.04606029623481199 -11776.0,0.04604439031910106 -11777.0,0.046028489896150195 -11778.0,0.04601259496406255 -11779.0,0.04599670552094198 -11780.0,0.045980821564893005 -11781.0,0.045964943094020806 -11782.0,0.04594907010643115 -11783.0,0.045933202600230524 -11784.0,0.045917340573526054 -11785.0,0.04590148402442552 -11786.0,0.04588563295103737 -11787.0,0.04586978735147064 -11788.0,0.04585394722383509 -11789.0,0.0458381125662411 -11790.0,0.04582228337679975 -11791.0,0.04580645965362268 -11792.0,0.04579064139482225 -11793.0,0.04577482859851147 -11794.0,0.045759021262804 -11795.0,0.045743219385814105 -11796.0,0.04572742296565675 -11797.0,0.04571163200044754 -11798.0,0.04569584648830276 -11799.0,0.04568006642733925 -11800.0,0.0456642918156746 -11801.0,0.04564852265142701 -11802.0,0.04563275893271536 -11803.0,0.0456170006576591 -11804.0,0.04560124782437842 -11805.0,0.045585500430994096 -11806.0,0.04556975847562761 -11807.0,0.045554021956401056 -11808.0,0.045538290871437154 -11809.0,0.04552256521885932 -11810.0,0.0455068449967916 -11811.0,0.045491130203358696 -11812.0,0.04547542083668592 -11813.0,0.04545971689489927 -11814.0,0.045444018376125384 -11815.0,0.04542832527849156 -11816.0,0.04541263760012569 -11817.0,0.04539695533915637 -11818.0,0.045381278493712825 -11819.0,0.045365607061924926 -11820.0,0.04534994104192316 -11821.0,0.04533428043183869 -11822.0,0.04531862522980333 -11823.0,0.04530297543394953 -11824.0,0.0452873310424104 -11825.0,0.045271692053319636 -11826.0,0.04525605846481165 -11827.0,0.045240430275021455 -11828.0,0.04522480748208475 -11829.0,0.04520919008413781 -11830.0,0.04519357807931761 -11831.0,0.04517797146576176 -11832.0,0.04516237024160852 -11833.0,0.045146774404996724 -11834.0,0.04513118395406594 -11835.0,0.04511559888695634 -11836.0,0.045100019201808755 -11837.0,0.045084444896764594 -11838.0,0.04506887596996599 -11839.0,0.04505331241955567 -11840.0,0.04503775424367705 -11841.0,0.045022201440474106 -11842.0,0.04500665400809152 -11843.0,0.0449911119446746 -11844.0,0.04497557524836929 -11845.0,0.044960043917322196 -11846.0,0.0449445179496805 -11847.0,0.04492899734359209 -11848.0,0.04491348209720548 -11849.0,0.04489797220866981 -11850.0,0.04488246767613485 -11851.0,0.04486696849775103 -11852.0,0.0448514746716694 -11853.0,0.044835986196041705 -11854.0,0.044820503069020225 -11855.0,0.04480502528875796 -11856.0,0.04478955285340853 -11857.0,0.044774085761126195 -11858.0,0.044758624010065806 -11859.0,0.04474316759838291 -11860.0,0.04472771652423368 -11861.0,0.0447122707857749 -11862.0,0.04469683038116404 -11863.0,0.044681395308559115 -11864.0,0.04466596556611887 -11865.0,0.04465054115200264 -11866.0,0.04463512206437043 -11867.0,0.044619708301382816 -11868.0,0.04460429986120106 -11869.0,0.04458889674198705 -11870.0,0.044573498941903336 -11871.0,0.044558106459113025 -11872.0,0.04454271929177992 -11873.0,0.04452733743806846 -11874.0,0.04451196089614371 -11875.0,0.04449658966417132 -11876.0,0.04448122374031764 -11877.0,0.044465863122749624 -11878.0,0.04445050780963489 -11879.0,0.0444351577991416 -11880.0,0.04441981308943866 -11881.0,0.04440447367869554 -11882.0,0.04438913956508235 -11883.0,0.04437381074676988 -11884.0,0.04435848722192948 -11885.0,0.04434316898873315 -11886.0,0.04432785604535358 -11887.0,0.04431254838996404 -11888.0,0.0442972460207384 -11889.0,0.04428194893585124 -11890.0,0.0442666571334777 -11891.0,0.044251370611793614 -11892.0,0.04423608936897538 -11893.0,0.04422081340320006 -11894.0,0.04420554271264535 -11895.0,0.044190277295489584 -11896.0,0.044175017149911684 -11897.0,0.044159762274091234 -11898.0,0.04414451266620844 -11899.0,0.04412926832444413 -11900.0,0.04411402924697979 -11901.0,0.044098795431997476 -11902.0,0.04408356687767991 -11903.0,0.044068343582210456 -11904.0,0.04405312554377309 -11905.0,0.04403791276055237 -11906.0,0.044022705230733546 -11907.0,0.04400750295250248 -11908.0,0.04399230592404566 -11909.0,0.043977114143550156 -11910.0,0.04396192760920371 -11911.0,0.04394674631919469 -11912.0,0.04393157027171211 -11913.0,0.04391639946494551 -11914.0,0.043901233897085154 -11915.0,0.04388607356632191 -11916.0,0.04387091847084728 -11917.0,0.04385576860885332 -11918.0,0.043840623978532785 -11919.0,0.04382548457807904 -11920.0,0.04381035040568606 -11921.0,0.043795221459548464 -11922.0,0.04378009773786144 -11923.0,0.04376497923882087 -11924.0,0.043749865960623205 -11925.0,0.04373475790146559 -11926.0,0.04371965505954568 -11927.0,0.04370455743306184 -11928.0,0.04368946502021304 -11929.0,0.04367437781919889 -11930.0,0.04365929582821954 -11931.0,0.04364421904547586 -11932.0,0.04362914746916928 -11933.0,0.043614081097501894 -11934.0,0.04359901992867637 -11935.0,0.04358396396089602 -11936.0,0.043568913192364785 -11937.0,0.043553867621287226 -11938.0,0.04353882724586852 -11939.0,0.043523792064314434 -11940.0,0.0435087620748314 -11941.0,0.043493737275626436 -11942.0,0.04347871766490722 -11943.0,0.04346370324088199 -11944.0,0.043448694001759644 -11945.0,0.0434336899457497 -11946.0,0.04341869107106229 -11947.0,0.04340369737590813 -11948.0,0.0433887088584986 -11949.0,0.043373725517045665 -11950.0,0.04335874734976196 -11951.0,0.04334377435486065 -11952.0,0.04332880653055558 -11953.0,0.043313843875061216 -11954.0,0.04329888638659262 -11955.0,0.04328393406336545 -11956.0,0.04326898690359601 -11957.0,0.04325404490550123 -11958.0,0.043239108067298616 -11959.0,0.04322417638720635 -11960.0,0.04320924986344315 -11961.0,0.0431943284942284 -11962.0,0.043179412277782096 -11963.0,0.04316450121232486 -11964.0,0.04314959529607787 -11965.0,0.043134694527262984 -11966.0,0.04311979890410265 -11967.0,0.04310490842481994 -11968.0,0.04309002308763849 -11969.0,0.04307514289078262 -11970.0,0.04306026783247722 -11971.0,0.043045397910947816 -11972.0,0.04303053312442051 -11973.0,0.04301567347112206 -11974.0,0.04300081894927981 -11975.0,0.04298596955712173 -11976.0,0.04297112529287641 -11977.0,0.042956286154773 -11978.0,0.04294145214104133 -11979.0,0.04292662324991179 -11980.0,0.04291179947961544 -11981.0,0.042896980828383856 -11982.0,0.04288216729444931 -11983.0,0.042867358876044655 -11984.0,0.042852555571403377 -11985.0,0.0428377573787595 -11986.0,0.042822964296347736 -11987.0,0.04280817632240338 -11988.0,0.04279339345516235 -11989.0,0.042778615692861115 -11990.0,0.04276384303373682 -11991.0,0.0427490754760272 -11992.0,0.0427343130179706 -11993.0,0.04271955565780594 -11994.0,0.042704803393772785 -11995.0,0.042690056224111296 -11996.0,0.04267531414706225 -11997.0,0.04266057716086704 -11998.0,0.042645845263767614 -11999.0,0.042631118454006585 -12000.0,0.04261639672982715 -12001.0,0.04260168008947313 -12002.0,0.04258696853118891 -12003.0,0.04257226205321951 -12004.0,0.042557560653810576 -12005.0,0.04254286433120834 -12006.0,0.0425281730836596 -12007.0,0.042513486909411834 -12008.0,0.04249880580671307 -12009.0,0.04248412977381198 -12010.0,0.0424694588089578 -12011.0,0.042454792910400385 -12012.0,0.04244013207639022 -12013.0,0.042425476305178365 -12014.0,0.042410825595016514 -12015.0,0.042396179944156905 -12016.0,0.04238153935085244 -12017.0,0.0423669038133566 -12018.0,0.042352273329923494 -12019.0,0.04233764789880777 -12020.0,0.04232302751826475 -12021.0,0.042308412186550313 -12022.0,0.042293801901920995 -12023.0,0.04227919666263384 -12024.0,0.04226459646694657 -12025.0,0.042250001313117506 -12026.0,0.042235411199405555 -12027.0,0.04222082612407018 -12028.0,0.042206246085371525 -12029.0,0.042191671081570285 -12030.0,0.04217710111092779 -12031.0,0.042162536171705914 -12032.0,0.04214797626216718 -12033.0,0.0421334213805747 -12034.0,0.042118871525192184 -12035.0,0.042104326694283954 -12036.0,0.04208978688611489 -12037.0,0.0420752520989505 -12038.0,0.04206072233105691 -12039.0,0.04204619758070083 -12040.0,0.042031677846149536 -12041.0,0.042017163125670935 -12042.0,0.042002653417533536 -12043.0,0.04198814872000645 -12044.0,0.04197364903135935 -12045.0,0.041959154349862526 -12046.0,0.04194466467378688 -12047.0,0.041930180001403916 -12048.0,0.04191570033098568 -12049.0,0.04190122566080487 -12050.0,0.04188675598913477 -12051.0,0.04187229131424925 -12052.0,0.04185783163442279 -12053.0,0.04184337694793044 -12054.0,0.041828927253047855 -12055.0,0.041814482548051306 -12056.0,0.04180004283121766 -12057.0,0.04178560810082433 -12058.0,0.04177117835514937 -12059.0,0.04175675359247142 -12060.0,0.04174233381106973 -12061.0,0.041727919009224096 -12062.0,0.041713509185214936 -12063.0,0.04169910433732328 -12064.0,0.041684704463830755 -12065.0,0.04167030956301951 -12066.0,0.04165591963317236 -12067.0,0.04164153467257271 -12068.0,0.04162715467950453 -12069.0,0.041612779652252366 -12070.0,0.04159840958910141 -12071.0,0.041584044488337406 -12072.0,0.041569684348246705 -12073.0,0.041555329167116274 -12074.0,0.041540978943233595 -12075.0,0.04152663367488681 -12076.0,0.04151229336036465 -12077.0,0.04149795799795642 -12078.0,0.04148362758595199 -12079.0,0.041469302122641855 -12080.0,0.041454981606317096 -12081.0,0.0414406660352694 -12082.0,0.04142635540779099 -12083.0,0.04141204972217472 -12084.0,0.04139774897671404 -12085.0,0.04138345316970299 -12086.0,0.04136916229943614 -12087.0,0.04135487636420871 -12088.0,0.041340595362316504 -12089.0,0.041326319292055894 -12090.0,0.041312048151723874 -12091.0,0.04129778193961796 -12092.0,0.041283520654036315 -12093.0,0.04126926429327767 -12094.0,0.04125501285564137 -12095.0,0.041240766339427276 -12096.0,0.041226524742935915 -12097.0,0.041212288064468354 -12098.0,0.04119805630232628 -12099.0,0.04118382945481192 -12100.0,0.041169607520228135 -12101.0,0.04115539049687834 -12102.0,0.04114117838306657 -12103.0,0.0411269711770974 -12104.0,0.04111276887727601 -12105.0,0.04109857148190818 -12106.0,0.04108437898930029 -12107.0,0.041070191397759234 -12108.0,0.041056008705592555 -12109.0,0.04104183091110836 -12110.0,0.04102765801261534 -12111.0,0.0410134900084228 -12112.0,0.04099932689684055 -12113.0,0.040985168676179067 -12114.0,0.04097101534474937 -12115.0,0.04095686690086308 -12116.0,0.04094272334283237 -12117.0,0.04092858466897002 -12118.0,0.04091445087758941 -12119.0,0.04090032196700448 -12120.0,0.04088619793552973 -12121.0,0.04087207878148027 -12122.0,0.0408579645031718 -12123.0,0.040843855098920606 -12124.0,0.04082975056704351 -12125.0,0.04081565090585794 -12126.0,0.04080155611368193 -12127.0,0.04078746618883406 -12128.0,0.04077338112963354 -12129.0,0.04075930093440007 -12130.0,0.040745225601454015 -12131.0,0.040731155129116285 -12132.0,0.0407170895157084 -12133.0,0.04070302875955239 -12134.0,0.04068897285897093 -12135.0,0.04067492181228727 -12136.0,0.040660875617825214 -12137.0,0.04064683427390913 -12138.0,0.040632797778864006 -12139.0,0.04061876613101539 -12140.0,0.040604739328689424 -12141.0,0.04059071737021278 -12142.0,0.040576700253912766 -12143.0,0.040562687978117226 -12144.0,0.04054868054115463 -12145.0,0.040534677941353944 -12146.0,0.04052068017704479 -12147.0,0.04050668724655733 -12148.0,0.040492699148222316 -12149.0,0.04047871588037107 -12150.0,0.04046473744133548 -12151.0,0.04045076382944802 -12152.0,0.04043679504304175 -12153.0,0.0404228310804503 -12154.0,0.04040887194000785 -12155.0,0.04039491762004918 -12156.0,0.040380968118909656 -12157.0,0.040367023434925216 -12158.0,0.04035308356643232 -12159.0,0.04033914851176807 -12160.0,0.04032521826927011 -12161.0,0.040311292837276684 -12162.0,0.040297372214126555 -12163.0,0.040283456398159105 -12164.0,0.04026954538771428 -12165.0,0.04025563918113261 -12166.0,0.040241737776755195 -12167.0,0.040227841172923655 -12168.0,0.040213949367980256 -12169.0,0.04020006236026781 -12170.0,0.040186180148129705 -12171.0,0.04017230272990986 -12172.0,0.04015843010395282 -12173.0,0.04014456226860369 -12174.0,0.04013069922220815 -12175.0,0.040116840963112396 -12176.0,0.04010298748966327 -12177.0,0.04008913880020814 -12178.0,0.04007529489309499 -12179.0,0.0400614557666723 -12180.0,0.04004762141928918 -12181.0,0.0400337918492953 -12182.0,0.0400199670550409 -12183.0,0.04000614703487675 -12184.0,0.03999233178715425 -12185.0,0.039978521310225335 -12186.0,0.03996471560244252 -12187.0,0.03995091466215889 -12188.0,0.03993711848772807 -12189.0,0.03992332707750429 -12190.0,0.03990954042984233 -12191.0,0.03989575854309758 -12192.0,0.0398819814156259 -12193.0,0.039868209045783816 -12194.0,0.03985444143192838 -12195.0,0.039840678572417236 -12196.0,0.03982692046560853 -12197.0,0.03981316710986105 -12198.0,0.03979941850353411 -12199.0,0.03978567464498763 -12200.0,0.03977193553258202 -12201.0,0.03975820116467834 -12202.0,0.03974447153963816 -12203.0,0.03973074665582365 -12204.0,0.03971702651159754 -12205.0,0.03970331110532308 -12206.0,0.03968960043536415 -12207.0,0.039675894500085164 -12208.0,0.039662193297851124 -12209.0,0.03964849682702753 -12210.0,0.039634805085980516 -12211.0,0.039621118073076764 -12212.0,0.03960743578668352 -12213.0,0.03959375822516856 -12214.0,0.03958008538690026 -12215.0,0.03956641727024756 -12216.0,0.03955275387357997 -12217.0,0.0395390951952675 -12218.0,0.0395254412336808 -12219.0,0.03951179198719104 -12220.0,0.03949814745416997 -12221.0,0.03948450763298992 -12222.0,0.03947087252202372 -12223.0,0.03945724211964481 -12224.0,0.039443616424227196 -12225.0,0.03942999543414544 -12226.0,0.03941637914777463 -12227.0,0.03940276756349045 -12228.0,0.03938916067966913 -12229.0,0.03937555849468751 -12230.0,0.0393619610069229 -12231.0,0.03934836821475324 -12232.0,0.039334780116557 -12233.0,0.03932119671071325 -12234.0,0.039307617995601535 -12235.0,0.03929404396960205 -12236.0,0.039280474631095505 -12237.0,0.03926690997846319 -12238.0,0.03925335001008692 -12239.0,0.03923979472434908 -12240.0,0.03922624411963265 -12241.0,0.03921269819432113 -12242.0,0.03919915694679862 -12243.0,0.03918562037544969 -12244.0,0.03917208847865956 -12245.0,0.03915856125481397 -12246.0,0.03914503870229923 -12247.0,0.03913152081950218 -12248.0,0.03911800760481024 -12249.0,0.03910449905661138 -12250.0,0.03909099517329415 -12251.0,0.03907749595324762 -12252.0,0.03906400139486141 -12253.0,0.03905051149652575 -12254.0,0.039037026256631385 -12255.0,0.039023545673569617 -12256.0,0.03901006974573231 -12257.0,0.038996598471511885 -12258.0,0.03898313184930132 -12259.0,0.03896966987749417 -12260.0,0.038956212554484476 -12261.0,0.0389427598786669 -12262.0,0.03892931184843663 -12263.0,0.038915868462189425 -12264.0,0.03890242971832157 -12265.0,0.03888899561522993 -12266.0,0.03887556615131192 -12267.0,0.03886214132496551 -12268.0,0.03884872113458918 -12269.0,0.03883530557858203 -12270.0,0.03882189465534368 -12271.0,0.0388084883632743 -12272.0,0.03879508670077461 -12273.0,0.0387816896662459 -12274.0,0.03876829725808999 -12275.0,0.03875490947470929 -12276.0,0.0387415263145067 -12277.0,0.038728147775885714 -12278.0,0.03871477385725038 -12279.0,0.03870140455700529 -12280.0,0.038688039873555596 -12281.0,0.03867467980530696 -12282.0,0.038661324350665625 -12283.0,0.03864797350803839 -12284.0,0.038634627275832625 -12285.0,0.03862128565245618 -12286.0,0.03860794863631751 -12287.0,0.038594616225825606 -12288.0,0.03858128841939003 -12289.0,0.03856796521542084 -12290.0,0.038554646612328686 -12291.0,0.038541332608524756 -12292.0,0.03852802320242081 -12293.0,0.03851471839242909 -12294.0,0.038501418176962454 -12295.0,0.03848812255443428 -12296.0,0.0384748315232585 -12297.0,0.0384615450818496 -12298.0,0.038448263228622576 -12299.0,0.03843498596199302 -12300.0,0.038421713280377044 -12301.0,0.03840844518219134 -12302.0,0.03839518166585307 -12303.0,0.03838192272978003 -12304.0,0.03836866837239051 -12305.0,0.03835541859210339 -12306.0,0.03834217338733802 -12307.0,0.03832893275651438 -12308.0,0.038315696698052945 -12309.0,0.038302465210374774 -12310.0,0.03828923829190141 -12311.0,0.03827601594105499 -12312.0,0.038262798156258195 -12313.0,0.03824958493593424 -12314.0,0.03823637627850687 -12315.0,0.03822317218240039 -12316.0,0.03820997264603966 -12317.0,0.03819677766785006 -12318.0,0.038183587246257554 -12319.0,0.03817040137968857 -12320.0,0.038157220066570165 -12321.0,0.038144043305329896 -12322.0,0.03813087109439589 -12323.0,0.03811770343219677 -12324.0,0.03810454031716173 -12325.0,0.03809138174772052 -12326.0,0.03807822772230343 -12327.0,0.03806507823934126 -12328.0,0.03805193329726537 -12329.0,0.03803879289450767 -12330.0,0.038025657029500635 -12331.0,0.03801252570067721 -12332.0,0.03799939890647093 -12333.0,0.037986276645315876 -12334.0,0.03797315891564666 -12335.0,0.03796004571589844 -12336.0,0.037946937044506884 -12337.0,0.03793383289990823 -12338.0,0.03792073328053925 -12339.0,0.03790763818483728 -12340.0,0.03789454761124013 -12341.0,0.037881461558186204 -12342.0,0.03786838002411444 -12343.0,0.03785530300746432 -12344.0,0.03784223050667582 -12345.0,0.03782916252018949 -12346.0,0.03781609904644643 -12347.0,0.03780304008388827 -12348.0,0.03778998563095714 -12349.0,0.03777693568609576 -12350.0,0.03776389024774736 -12351.0,0.03775084931435574 -12352.0,0.03773781288436517 -12353.0,0.03772478095622051 -12354.0,0.03771175352836716 -12355.0,0.037698730599251044 -12356.0,0.03768571216731863 -12357.0,0.03767269823101688 -12358.0,0.03765968878879334 -12359.0,0.037646683839096085 -12360.0,0.037633683380373734 -12361.0,0.037620687411075396 -12362.0,0.03760769592965076 -12363.0,0.03759470893455004 -12364.0,0.037581726424224 -12365.0,0.03756874839712388 -12366.0,0.03755577485170152 -12367.0,0.03754280578640927 -12368.0,0.03752984119970003 -12369.0,0.03751688109002718 -12370.0,0.0375039254558447 -12371.0,0.03749097429560708 -12372.0,0.037478027607769325 -12373.0,0.037465085390787016 -12374.0,0.03745214764311621 -12375.0,0.03743921436321354 -12376.0,0.03742628554953616 -12377.0,0.037413361200541784 -12378.0,0.03740044131468859 -12379.0,0.037387525890435334 -12380.0,0.03737461492624132 -12381.0,0.037361708420566374 -12382.0,0.0373488063718708 -12383.0,0.03733590877861551 -12384.0,0.037323015639261915 -12385.0,0.03731012695227196 -12386.0,0.0372972427161081 -12387.0,0.037284362929233344 -12388.0,0.03727148759011124 -12389.0,0.03725861669720585 -12390.0,0.03724575024898176 -12391.0,0.037232888243904104 -12392.0,0.03722003068043853 -12393.0,0.037207177557051246 -12394.0,0.037194328872208963 -12395.0,0.037181484624378904 -12396.0,0.037168644812028855 -12397.0,0.037155809433627125 -12398.0,0.037142978487642565 -12399.0,0.037130151972544496 -12400.0,0.03711732988680284 -12401.0,0.03710451222888799 -12402.0,0.03709169899727093 -12403.0,0.0370788901904231 -12404.0,0.03706608580681651 -12405.0,0.0370532858449237 -12406.0,0.03704049030321773 -12407.0,0.03702769918017217 -12408.0,0.03701491247426115 -12409.0,0.037002130183959286 -12410.0,0.036989352307741766 -12411.0,0.036976578844084285 -12412.0,0.03696380979146304 -12413.0,0.03695104514835479 -12414.0,0.0369382849132368 -12415.0,0.036925529084586885 -12416.0,0.03691277766088334 -12417.0,0.03690003064060503 -12418.0,0.036887288022231325 -12419.0,0.03687454980424214 -12420.0,0.03686181598511786 -12421.0,0.036849086563339455 -12422.0,0.0368363615373884 -12423.0,0.03682364090574671 -12424.0,0.03681092466689687 -12425.0,0.03679821281932195 -12426.0,0.036785505361505495 -12427.0,0.03677280229193164 -12428.0,0.03676010360908496 -12429.0,0.03674740931145061 -12430.0,0.03673471939751425 -12431.0,0.036722033865762074 -12432.0,0.0367093527146808 -12433.0,0.03669667594275763 -12434.0,0.03668400354848033 -12435.0,0.036671335530337176 -12436.0,0.03665867188681699 -12437.0,0.03664601261640905 -12438.0,0.03663335771760322 -12439.0,0.03662070718888986 -12440.0,0.03660806102875986 -12441.0,0.03659541923570461 -12442.0,0.03658278180821605 -12443.0,0.03657014874478662 -12444.0,0.0365575200439093 -12445.0,0.03654489570407756 -12446.0,0.036532275723785416 -12447.0,0.0365196601015274 -12448.0,0.03650704883579855 -12449.0,0.03649444192509446 -12450.0,0.03648183936791118 -12451.0,0.036469241162745344 -12452.0,0.03645664730809406 -12453.0,0.03644405780245501 -12454.0,0.0364314726443263 -12455.0,0.03641889183220665 -12456.0,0.03640631536459525 -12457.0,0.036393743239991845 -12458.0,0.036381175456896626 -12459.0,0.03636861201381038 -12460.0,0.03635605290923437 -12461.0,0.0363434981416704 -12462.0,0.03633094770962075 -12463.0,0.036318401611588266 -12464.0,0.03630585984607628 -12465.0,0.03629332241158867 -12466.0,0.036280789306629785 -12467.0,0.03626826052970453 -12468.0,0.03625573607931831 -12469.0,0.03624321595397705 -12470.0,0.03623070015218721 -12471.0,0.036218188672455714 -12472.0,0.03620568151329005 -12473.0,0.0361931786731982 -12474.0,0.036180680150688684 -12475.0,0.036168185944270494 -12476.0,0.03615569605245317 -12477.0,0.03614321047374676 -12478.0,0.03613072920666184 -12479.0,0.036118252249709465 -12480.0,0.03610577960140123 -12481.0,0.03609331126024924 -12482.0,0.036080847224766135 -12483.0,0.03606838749346501 -12484.0,0.036055932064859526 -12485.0,0.036043480937463845 -12486.0,0.03603103410979263 -12487.0,0.03601859158036109 -12488.0,0.03600615334768488 -12489.0,0.03599371941028024 -12490.0,0.03598128976666388 -12491.0,0.035968864415353054 -12492.0,0.035956443354865475 -12493.0,0.03594402658371942 -12494.0,0.03593161410043365 -12495.0,0.03591920590352748 -12496.0,0.035906801991520645 -12497.0,0.03589440236293349 -12498.0,0.03588200701628682 -12499.0,0.03586961595010197 -12500.0,0.03585722916290075 -12501.0,0.035844846653205524 -12502.0,0.03583246841953915 -12503.0,0.03582009446042501 -12504.0,0.035807724774386936 -12505.0,0.035795359359949354 -12506.0,0.035782998215637137 -12507.0,0.035770641339975706 -12508.0,0.03575828873149099 -12509.0,0.03574594038870938 -12510.0,0.035733596310157816 -12511.0,0.03572125649436375 -12512.0,0.03570892093985514 -12513.0,0.035696589645160426 -12514.0,0.035684262608808574 -12515.0,0.03567193982932907 -12516.0,0.0356596213052519 -12517.0,0.03564730703510754 -12518.0,0.03563499701742699 -12519.0,0.03562269125074175 -12520.0,0.035610389733583867 -12521.0,0.03559809246448581 -12522.0,0.03558579944198063 -12523.0,0.035573510664601855 -12524.0,0.03556122613088352 -12525.0,0.03554894583936019 -12526.0,0.03553666978856689 -12527.0,0.03552439797703918 -12528.0,0.03551213040331313 -12529.0,0.035499867065925325 -12530.0,0.0354876079634128 -12531.0,0.035475353094313156 -12532.0,0.03546310245716447 -12533.0,0.03545085605050535 -12534.0,0.03543861387287486 -12535.0,0.035426375922812614 -12536.0,0.0354141421988587 -12537.0,0.03540191269955376 -12538.0,0.03538968742343886 -12539.0,0.03537746636905563 -12540.0,0.03536524953494619 -12541.0,0.03535303691965318 -12542.0,0.03534082852171968 -12543.0,0.03532862433968934 -12544.0,0.035316424372106296 -12545.0,0.03530422861751518 -12546.0,0.03529203707446113 -12547.0,0.03527984974148977 -12548.0,0.03526766661714724 -12549.0,0.035255487699980194 -12550.0,0.03524331298853579 -12551.0,0.03523114248136163 -12552.0,0.03521897617700589 -12553.0,0.03520681407401721 -12554.0,0.03519465617094477 -12555.0,0.035182502466338174 -12556.0,0.0351703529587476 -12557.0,0.03515820764672369 -12558.0,0.03514606652881762 -12559.0,0.03513392960358101 -12560.0,0.03512179686956603 -12561.0,0.03510966832532533 -12562.0,0.035097543969412066 -12563.0,0.035085423800379906 -12564.0,0.035073307816782966 -12565.0,0.03506119601717592 -12566.0,0.03504908840011392 -12567.0,0.035036984964152626 -12568.0,0.035024885707848154 -12569.0,0.03501279062975717 -12570.0,0.035000699728436814 -12571.0,0.034988613002444754 -12572.0,0.0349765304503391 -12573.0,0.0349644520706785 -12574.0,0.03495237786202209 -12575.0,0.034940307822929534 -12576.0,0.03492824195196092 -12577.0,0.0349161802476769 -12578.0,0.03490412270863859 -12579.0,0.034892069333407646 -12580.0,0.03488002012054614 -12581.0,0.03486797506861672 -12582.0,0.03485593417618249 -12583.0,0.03484389744180706 -12584.0,0.034831864864054554 -12585.0,0.03481983644148954 -12586.0,0.03480781217267713 -12587.0,0.03479579205618292 -12588.0,0.034783776090573 -12589.0,0.03477176427441394 -12590.0,0.034759756606272826 -12591.0,0.034747753084717226 -12592.0,0.034735753708315234 -12593.0,0.03472375847563537 -12594.0,0.03471176738524671 -12595.0,0.0346997804357188 -12596.0,0.034687797625621714 -12597.0,0.03467581895352594 -12598.0,0.03466384441800254 -12599.0,0.034651874017623034 -12600.0,0.03463990775095944 -12601.0,0.03462794561658428 -12602.0,0.03461598761307053 -12603.0,0.034604033738991714 -12604.0,0.03459208399292181 -12605.0,0.03458013837343532 -12606.0,0.03456819687910719 -12607.0,0.0345562595085129 -12608.0,0.0345443262602284 -12609.0,0.03453239713283018 -12610.0,0.03452047212489512 -12611.0,0.03450855123500069 -12612.0,0.03449663446172481 -12613.0,0.03448472180364591 -12614.0,0.034472813259342865 -12615.0,0.03446090882739509 -12616.0,0.034449008506382474 -12617.0,0.03443711229488541 -12618.0,0.03442522019148473 -12619.0,0.034413332194761816 -12620.0,0.03440144830329851 -12621.0,0.03438956851567716 -12622.0,0.0343776928304806 -12623.0,0.03436582124629212 -12624.0,0.034353953761695546 -12625.0,0.03434209037527517 -12626.0,0.034330231085615795 -12627.0,0.034318375891302655 -12628.0,0.03430652479092153 -12629.0,0.034294677783058676 -12630.0,0.03428283486630084 -12631.0,0.034270996039235224 -12632.0,0.03425916130044955 -12633.0,0.03424733064853203 -12634.0,0.034235504082071364 -12635.0,0.03422368159965669 -12636.0,0.0342118631998777 -12637.0,0.03420004888132454 -12638.0,0.03418823864258785 -12639.0,0.03417643248225876 -12640.0,0.03416463039892886 -12641.0,0.03415283239119026 -12642.0,0.03414103845763555 -12643.0,0.03412924859685781 -12644.0,0.03411746280745056 -12645.0,0.034105681088007864 -12646.0,0.03409390343712425 -12647.0,0.03408212985339473 -12648.0,0.034070360335414794 -12649.0,0.034058594881780424 -12650.0,0.034046833491088085 -12651.0,0.03403507616193476 -12652.0,0.03402332289291784 -12653.0,0.034011573682635264 -12654.0,0.033999828529685444 -12655.0,0.03398808743266728 -12656.0,0.033976350390180106 -12657.0,0.0339646174008238 -12658.0,0.03395288846319871 -12659.0,0.033941163575905646 -12660.0,0.03392944273754594 -12661.0,0.03391772594672135 -12662.0,0.03390601320203415 -12663.0,0.033894304502087115 -12664.0,0.03388259984548348 -12665.0,0.033870899230826944 -12666.0,0.033859202656721724 -12667.0,0.033847510121772506 -12668.0,0.03383582162458446 -12669.0,0.033824137163763215 -12670.0,0.03381245673791491 -12671.0,0.03380078034564615 -12672.0,0.03378910798556406 -12673.0,0.033777439656276165 -12674.0,0.03376577535639054 -12675.0,0.033754115084515715 -12676.0,0.033742458839260706 -12677.0,0.033730806619235026 -12678.0,0.033719158423048616 -12679.0,0.033707514249311954 -12680.0,0.033695874096635964 -12681.0,0.03368423796363208 -12682.0,0.03367260584891217 -12683.0,0.033660977751088623 -12684.0,0.033649353668774286 -12685.0,0.0336377336005825 -12686.0,0.033626117545127066 -12687.0,0.03361450550102227 -12688.0,0.033602897466882886 -12689.0,0.03359129344132418 -12690.0,0.03357969342296184 -12691.0,0.03356809741041208 -12692.0,0.03355650540229159 -12693.0,0.03354491739721753 -12694.0,0.03353333339380752 -12695.0,0.033521753390679684 -12696.0,0.0335101773864526 -12697.0,0.033498605379745354 -12698.0,0.03348703736917749 -12699.0,0.033475473353369006 -12700.0,0.03346391333094041 -12701.0,0.033452357300512686 -12702.0,0.03344080526070728 -12703.0,0.033429257210146106 -12704.0,0.03341771314745157 -12705.0,0.033406173071246555 -12706.0,0.03339463698015443 -12707.0,0.03338310487279898 -12708.0,0.03337157674780455 -12709.0,0.03336005260379589 -12710.0,0.03334853243939828 -12711.0,0.03333701625323743 -12712.0,0.03332550404393954 -12713.0,0.0333139958101313 -12714.0,0.03330249155043986 -12715.0,0.033290991263492845 -12716.0,0.03327949494791835 -12717.0,0.03326800260234494 -12718.0,0.03325651422540168 -12719.0,0.0332450298157181 -12720.0,0.03323354937192415 -12721.0,0.033222072892650334 -12722.0,0.03321060037652758 -12723.0,0.03319913182218731 -12724.0,0.03318766722826139 -12725.0,0.03317620659338219 -12726.0,0.03316474991618254 -12727.0,0.03315329719529575 -12728.0,0.033141848429355567 -12729.0,0.033130403616996255 -12730.0,0.033118962756852534 -12731.0,0.0331075258475596 -12732.0,0.03309609288775309 -12733.0,0.03308466387606914 -12734.0,0.033073238811144365 -12735.0,0.033061817691615834 -12736.0,0.033050400516121105 -12737.0,0.033038987283298155 -12738.0,0.03302757799178549 -12739.0,0.033016172640222066 -12740.0,0.03300477122724733 -12741.0,0.032993373751501125 -12742.0,0.032981980211623844 -12743.0,0.03297059060625633 -12744.0,0.03295920493403988 -12745.0,0.032947823193616256 -12746.0,0.0329364453836277 -12747.0,0.03292507150271693 -12748.0,0.032913701549527136 -12749.0,0.03290233552270194 -12750.0,0.03289097342088547 -12751.0,0.03287961524272231 -12752.0,0.03286826098685751 -12753.0,0.032856910651936605 -12754.0,0.03284556423660556 -12755.0,0.03283422173951084 -12756.0,0.03282288315929937 -12757.0,0.03281154849461855 -12758.0,0.03280021774411621 -12759.0,0.032788890906440694 -12760.0,0.032777567980240785 -12761.0,0.03276624896416576 -12762.0,0.032754933856865315 -12763.0,0.03274362265698965 -12764.0,0.03273231536318942 -12765.0,0.03272101197411577 -12766.0,0.03270971248842025 -12767.0,0.03269841690475494 -12768.0,0.03268712522177234 -12769.0,0.03267583743812547 -12770.0,0.032664553552467744 -12771.0,0.03265327356345308 -12772.0,0.032641997469735874 -12773.0,0.03263072526997096 -12774.0,0.03261945696281367 -12775.0,0.03260819254691973 -12776.0,0.03259693202094541 -12777.0,0.032585675383547404 -12778.0,0.03257442263338289 -12779.0,0.03256317376910948 -12780.0,0.032551928789385266 -12781.0,0.03254068769286881 -12782.0,0.032529450478219146 -12783.0,0.032518217144095724 -12784.0,0.03250698768915851 -12785.0,0.0324957621120679 -12786.0,0.0324845404114848 -12787.0,0.03247332258607049 -12788.0,0.03246210863448679 -12789.0,0.03245089855539597 -12790.0,0.03243969234746073 -12791.0,0.03242849000934427 -12792.0,0.032417291539710215 -12793.0,0.03240609693722267 -12794.0,0.03239490620054621 -12795.0,0.03238371932834587 -12796.0,0.03237253631928711 -12797.0,0.03236135717203589 -12798.0,0.032350181885258636 -12799.0,0.03233901045762221 -12800.0,0.032327842887793924 -12801.0,0.03231667917444159 -12802.0,0.03230551931623344 -12803.0,0.03229436331183821 -12804.0,0.03228321115992504 -12805.0,0.03227206285916358 -12806.0,0.032260918408223906 -12807.0,0.032249777805776585 -12808.0,0.0322386410504926 -12809.0,0.032227508141043436 -12810.0,0.03221637907610101 -12811.0,0.03220525385433771 -12812.0,0.03219413247442638 -12813.0,0.032183014935040305 -12814.0,0.032171901234853265 -12815.0,0.03216079137253946 -12816.0,0.03214968534677358 -12817.0,0.032138583156230735 -12818.0,0.032127484799586534 -12819.0,0.032116390275517014 -12820.0,0.0321052995826987 -12821.0,0.032094212719808515 -12822.0,0.0320831296855239 -12823.0,0.03207205047852273 -12824.0,0.032060975097483346 -12825.0,0.032049903541084515 -12826.0,0.03203883580800549 -12827.0,0.03202777189692597 -12828.0,0.032016711806526106 -12829.0,0.03200565553548654 -12830.0,0.03199460308248829 -12831.0,0.03198355444621291 -12832.0,0.03197250962534238 -12833.0,0.03196146861855913 -12834.0,0.03195043142454603 -12835.0,0.03193939804198645 -12836.0,0.031928368469564164 -12837.0,0.031917342705963456 -12838.0,0.031906320749868995 -12839.0,0.031895302599965966 -12840.0,0.031884288254939976 -12841.0,0.0318732777134771 -12842.0,0.031862270974263855 -12843.0,0.031851268035987215 -12844.0,0.031840268897334614 -12845.0,0.03182927355699395 -12846.0,0.031818282013653526 -12847.0,0.03180729426600215 -12848.0,0.031796310312729066 -12849.0,0.03178533015252396 -12850.0,0.031774353784077 -12851.0,0.03176338120607876 -12852.0,0.031752412417220294 -12853.0,0.031741447416193114 -12854.0,0.03173048620168919 -12855.0,0.03171952877240089 -12856.0,0.031708575127021105 -12857.0,0.03169762526424313 -12858.0,0.031686679182760746 -12859.0,0.03167573688126814 -12860.0,0.03166479835845998 -12861.0,0.03165386361303139 -12862.0,0.03164293264367794 -12863.0,0.031632005449095627 -12864.0,0.03162108202798092 -12865.0,0.03161016237903074 -12866.0,0.03159924650094245 -12867.0,0.03158833439241389 -12868.0,0.03157742605214328 -12869.0,0.03156652147882936 -12870.0,0.031555620671171285 -12871.0,0.03154472362786869 -12872.0,0.03153383034762161 -12873.0,0.03152294082913057 -12874.0,0.03151205507109652 -12875.0,0.03150117307222089 -12876.0,0.03149029483120551 -12877.0,0.0314794203467527 -12878.0,0.031468549617565206 -12879.0,0.031457682642346246 -12880.0,0.031446819419799446 -12881.0,0.03143595994862892 -12882.0,0.0314251042275392 -12883.0,0.031414252255235295 -12884.0,0.03140340403042262 -12885.0,0.03139255955180707 -12886.0,0.03138171881809499 -12887.0,0.03137088182799315 -12888.0,0.031360048580208785 -12889.0,0.03134921907344954 -12890.0,0.031338393306423566 -12891.0,0.03132757127783941 -12892.0,0.0313167529864061 -12893.0,0.03130593843083307 -12894.0,0.03129512760983023 -12895.0,0.031284320522107924 -12896.0,0.031273517166376975 -12897.0,0.031262717541348586 -12898.0,0.03125192164573445 -12899.0,0.031241129478246695 -12900.0,0.031230341037597916 -12901.0,0.031219556322501098 -12902.0,0.031208775331669714 -12903.0,0.031197998063817674 -12904.0,0.03118722451765933 -12905.0,0.031176454691909487 -12906.0,0.03116568858528336 -12907.0,0.03115492619649664 -12908.0,0.031144167524265454 -12909.0,0.031133412567306385 -12910.0,0.031122661324336418 -12911.0,0.03111191379407302 -12912.0,0.031101169975234093 -12913.0,0.03109042986653799 -12914.0,0.031079693466703463 -12915.0,0.031068960774449754 -12916.0,0.03105823178849653 -12917.0,0.03104750650756392 -12918.0,0.031036784930372444 -12919.0,0.031026067055643113 -12920.0,0.031015352882097356 -12921.0,0.031004642408457073 -12922.0,0.030993935633444547 -12923.0,0.030983232555782555 -12924.0,0.030972533174194298 -12925.0,0.03096183748740342 -12926.0,0.030951145494134014 -12927.0,0.030940457193110577 -12928.0,0.030929772583058086 -12929.0,0.030919091662701945 -12930.0,0.03090841443076801 -12931.0,0.030897740885982544 -12932.0,0.030887071027072277 -12933.0,0.030876404852764376 -12934.0,0.030865742361786457 -12935.0,0.030855083552866536 -12936.0,0.03084442842473311 -12937.0,0.030833776976115095 -12938.0,0.030823129205741873 -12939.0,0.030812485112343205 -12940.0,0.03080184469464935 -12941.0,0.030791207951390977 -12942.0,0.03078057488129921 -12943.0,0.030769945483105604 -12944.0,0.03075931975554213 -12945.0,0.03074869769734122 -12946.0,0.030738079307235752 -12947.0,0.030727464583959037 -12948.0,0.03071685352624479 -12949.0,0.0307062461328272 -12950.0,0.030695642402440885 -12951.0,0.030685042333820908 -12952.0,0.030674445925702735 -12953.0,0.030663853176822305 -12954.0,0.030653264085915975 -12955.0,0.030642678651720566 -12956.0,0.030632096872973278 -12957.0,0.030621518748411798 -12958.0,0.030610944276774233 -12959.0,0.03060037345679914 -12960.0,0.03058980628722547 -12961.0,0.03057924276679265 -12962.0,0.030568682894240525 -12963.0,0.03055812666830939 -12964.0,0.030547574087739966 -12965.0,0.03053702515127338 -12966.0,0.030526479857651247 -12967.0,0.03051593820561558 -12968.0,0.030505400193908853 -12969.0,0.03049486582127393 -12970.0,0.03048433508645415 -12971.0,0.03047380798819328 -12972.0,0.030463284525235515 -12973.0,0.030452764696325466 -12974.0,0.030442248500208203 -12975.0,0.030431735935629225 -12976.0,0.030421227001334466 -12977.0,0.030410721696070266 -12978.0,0.03040022001858343 -12979.0,0.030389721967621183 -12980.0,0.030379227541931182 -12981.0,0.03036873674026154 -12982.0,0.030358249561360746 -12983.0,0.030347766003977775 -12984.0,0.030337286066862014 -12985.0,0.030326809748763294 -12986.0,0.030316337048431837 -12987.0,0.030305867964618347 -12988.0,0.030295402496073938 -12989.0,0.03028494064155016 -12990.0,0.030274482399798974 -12991.0,0.030264027769572797 -12992.0,0.030253576749624467 -12993.0,0.030243129338707268 -12994.0,0.03023268553557487 -12995.0,0.030222245338981425 -12996.0,0.03021180874768149 -12997.0,0.03020137576043006 -12998.0,0.030190946375982543 -12999.0,0.030180520593094794 -13000.0,0.030170098410523098 -13001.0,0.03015967982702416 -13002.0,0.030149264841355133 -13003.0,0.030138853452273566 -13004.0,0.030128445658537457 -13005.0,0.030118041458905242 -13006.0,0.030107640852135787 -13007.0,0.030097243836988346 -13008.0,0.030086850412222643 -13009.0,0.030076460576598827 -13010.0,0.03006607432887747 -13011.0,0.030055691667819545 -13012.0,0.030045312592186492 -13013.0,0.03003493710074016 -13014.0,0.030024565192242843 -13015.0,0.03001419686545722 -13016.0,0.030003832119146444 -13017.0,0.029993470952074067 -13018.0,0.029983113363004084 -13019.0,0.02997275935070092 -13020.0,0.029962408913929397 -13021.0,0.02995206205145479 -13022.0,0.029941718762042793 -13023.0,0.029931379044459545 -13024.0,0.02992104289747156 -13025.0,0.02991071031984583 -13026.0,0.029900381310349756 -13027.0,0.02989005586775117 -13028.0,0.029879733990818298 -13029.0,0.029869415678319827 -13030.0,0.02985910092902486 -13031.0,0.029848789741702936 -13032.0,0.029838482115123972 -13033.0,0.029828178048058367 -13034.0,0.029817877539276914 -13035.0,0.029807580587550855 -13036.0,0.029797287191651808 -13037.0,0.02978699735035186 -13038.0,0.02977671106242351 -13039.0,0.02976642832663968 -13040.0,0.029756149141773727 -13041.0,0.02974587350659939 -13042.0,0.029735601419890872 -13043.0,0.029725332880422794 -13044.0,0.029715067886970207 -13045.0,0.02970480643830854 -13046.0,0.029694548533213693 -13047.0,0.029684294170461974 -13048.0,0.02967404334883013 -13049.0,0.029663796067095273 -13050.0,0.029653552324035003 -13051.0,0.02964331211842731 -13052.0,0.02963307544905063 -13053.0,0.02962284231468377 -13054.0,0.02961261271410601 -13055.0,0.029602386646097028 -13056.0,0.029592164109436936 -13057.0,0.02958194510290627 -13058.0,0.029571729625285946 -13059.0,0.029561517675357352 -13060.0,0.02955130925190227 -13061.0,0.029541104353702934 -13062.0,0.029530902979541935 -13063.0,0.029520705128202342 -13064.0,0.029510510798467626 -13065.0,0.02950031998912169 -13066.0,0.02949013269894882 -13067.0,0.02947994892673376 -13068.0,0.029469768671261658 -13069.0,0.0294595919313181 -13070.0,0.029449418705689043 -13071.0,0.029439248993160916 -13072.0,0.029429082792520538 -13073.0,0.029418920102555177 -13074.0,0.029408760922052465 -13075.0,0.029398605249800504 -13076.0,0.029388453084587794 -13077.0,0.02937830442520326 -13078.0,0.029368159270436244 -13079.0,0.029358017619076485 -13080.0,0.02934787946991417 -13081.0,0.02933774482173989 -13082.0,0.02932761367334467 -13083.0,0.02931748602351991 -13084.0,0.02930736187105747 -13085.0,0.02929724121474961 -13086.0,0.029287124053389024 -13087.0,0.029277010385768784 -13088.0,0.029266900210682414 -13089.0,0.029256793526923845 -13090.0,0.029246690333287438 -13091.0,0.029236590628567923 -13092.0,0.0292264944115605 -13093.0,0.02921640168106076 -13094.0,0.029206312435864714 -13095.0,0.0291962266747688 -13096.0,0.029186144396569837 -13097.0,0.029176065600065096 -13098.0,0.029165990284052246 -13099.0,0.02915591844732939 -13100.0,0.02914585008869501 -13101.0,0.029135785206948036 -13102.0,0.029125723800887793 -13103.0,0.02911566586931405 -13104.0,0.02910561141102694 -13105.0,0.02909556042482705 -13106.0,0.02908551290951538 -13107.0,0.029075468863893335 -13108.0,0.02906542828676272 -13109.0,0.029055391176925766 -13110.0,0.029045357533185132 -13111.0,0.029035327354343884 -13112.0,0.02902530063920547 -13113.0,0.02901527738657379 -13114.0,0.02900525759525314 -13115.0,0.02899524126404824 -13116.0,0.028985228391764217 -13117.0,0.02897521897720659 -13118.0,0.028965213019181316 -13119.0,0.028955210516494762 -13120.0,0.028945211467953716 -13121.0,0.028935215872365333 -13122.0,0.028925223728537227 -13123.0,0.02891523503527741 -13124.0,0.028905249791394316 -13125.0,0.02889526799569675 -13126.0,0.028885289646993974 -13127.0,0.02887531474409564 -13128.0,0.028865343285811824 -13129.0,0.028855375270952985 -13130.0,0.02884541069833002 -13131.0,0.028835449566754233 -13132.0,0.02882549187503733 -13133.0,0.028815537621991443 -13134.0,0.02880558680642908 -13135.0,0.02879563942716319 -13136.0,0.028785695483007127 -13137.0,0.02877575497277466 -13138.0,0.028765817895279936 -13139.0,0.028755884249337546 -13140.0,0.02874595403376248 -13141.0,0.028736027247370146 -13142.0,0.028726103888976322 -13143.0,0.028716183957397244 -13144.0,0.028706267451449535 -13145.0,0.028696354369950237 -13146.0,0.028686444711716767 -13147.0,0.02867653847556699 -13148.0,0.02866663566031916 -13149.0,0.02865673626479196 -13150.0,0.028646840287804443 -13151.0,0.028636947728176095 -13152.0,0.028627058584726812 -13153.0,0.028617172856276886 -13154.0,0.028607290541647037 -13155.0,0.028597411639658354 -13156.0,0.028587536149132366 -13157.0,0.028577664068891 -13158.0,0.0285677953977566 -13159.0,0.02855793013455188 -13160.0,0.0285480682781 -13161.0,0.028538209827224513 -13162.0,0.02852835478074939 -13163.0,0.028518503137498968 -13164.0,0.028508654896298034 -13165.0,0.028498810055971765 -13166.0,0.028488968615345753 -13167.0,0.02847913057324596 -13168.0,0.028469295928498794 -13169.0,0.028459464679931056 -13170.0,0.028449636826369945 -13171.0,0.028439812366643082 -13172.0,0.02842999129957846 -13173.0,0.02842017362400451 -13174.0,0.028410359338750052 -13175.0,0.02840054844264432 -13176.0,0.028390740934516934 -13177.0,0.028380936813197935 -13178.0,0.02837113607751776 -13179.0,0.02836133872630727 -13180.0,0.028351544758397684 -13181.0,0.028341754172620668 -13182.0,0.028331966967808278 -13183.0,0.02832218314279298 -13184.0,0.028312402696407613 -13185.0,0.02830262562748545 -13186.0,0.028292851934860166 -13187.0,0.028283081617365834 -13188.0,0.028273314673836904 -13189.0,0.028263551103108266 -13190.0,0.028253790904015197 -13191.0,0.028244034075393373 -13192.0,0.028234280616078893 -13193.0,0.028224530524908212 -13194.0,0.028214783800718228 -13195.0,0.028205040442346226 -13196.0,0.02819530044862991 -13197.0,0.028185563818407346 -13198.0,0.028175830550517034 -13199.0,0.028166100643797865 -13200.0,0.02815637409708915 -13201.0,0.028146650909230554 -13202.0,0.028136931079062184 -13203.0,0.028127214605424538 -13204.0,0.02811750148715852 -13205.0,0.028107791723105405 -13206.0,0.0280980853121069 -13207.0,0.0280883822530051 -13208.0,0.028078682544642502 -13209.0,0.02806898618586201 -13210.0,0.0280592931755069 -13211.0,0.028049603512420872 -13212.0,0.02803991719544803 -13213.0,0.02803023422343287 -13214.0,0.028020554595220265 -13215.0,0.028010878309655513 -13216.0,0.02800120536558431 -13217.0,0.027991535761852752 -13218.0,0.027981869497307302 -13219.0,0.02797220657079486 -13220.0,0.027962546981162704 -13221.0,0.027952890727258536 -13222.0,0.027943237807930402 -13223.0,0.027933588222026795 -13224.0,0.027923941968396593 -13225.0,0.027914299045889074 -13226.0,0.027904659453353887 -13227.0,0.027895023189641113 -13228.0,0.027885390253601212 -13229.0,0.02787576064408505 -13230.0,0.027866134359943888 -13231.0,0.027856511400029364 -13232.0,0.02784689176319354 -13233.0,0.027837275448288862 -13234.0,0.02782766245416819 -13235.0,0.027818052779684733 -13236.0,0.02780844642369214 -13237.0,0.027798843385044448 -13238.0,0.02778924366259609 -13239.0,0.02777964725520187 -13240.0,0.02777005416171702 -13241.0,0.02776046438099715 -13242.0,0.02775087791189828 -13243.0,0.02774129475327679 -13244.0,0.027731714903989495 -13245.0,0.02772213836289359 -13246.0,0.027712565128846657 -13247.0,0.027702995200706695 -13248.0,0.02769342857733206 -13249.0,0.027683865257581527 -13250.0,0.02767430524031427 -13251.0,0.02766474852438986 -13252.0,0.02765519510866822 -13253.0,0.027645644992009718 -13254.0,0.027636098173275087 -13255.0,0.027626554651325477 -13256.0,0.027617014425022388 -13257.0,0.02760747749322776 -13258.0,0.027597943854803898 -13259.0,0.027588413508613525 -13260.0,0.027578886453519715 -13261.0,0.027569362688385973 -13262.0,0.027559842212076184 -13263.0,0.02755032502345462 -13264.0,0.027540811121385966 -13265.0,0.02753130050473526 -13266.0,0.02752179317236796 -13267.0,0.02751228912314992 -13268.0,0.02750278835594738 -13269.0,0.027493290869626947 -13270.0,0.027483796663055653 -13271.0,0.027474305735100908 -13272.0,0.027464818084630523 -13273.0,0.02745533371051267 -13274.0,0.02744585261161594 -13275.0,0.027436374786809315 -13276.0,0.027426900234962165 -13277.0,0.02741742895494422 -13278.0,0.027407960945625642 -13279.0,0.027398496205876963 -13280.0,0.027389034734569124 -13281.0,0.027379576530573414 -13282.0,0.02737012159276155 -13283.0,0.027360669920005624 -13284.0,0.02735122151117813 -13285.0,0.027341776365151945 -13286.0,0.02733233448080031 -13287.0,0.027322895856996886 -13288.0,0.027313460492615724 -13289.0,0.027304028386531256 -13290.0,0.02729459953761828 -13291.0,0.027285173944752016 -13292.0,0.027275751606808056 -13293.0,0.0272663325226624 -13294.0,0.027256916691191395 -13295.0,0.02724750411127181 -13296.0,0.027238094781780797 -13297.0,0.0272286887015959 -13298.0,0.02721928586959502 -13299.0,0.027209886284656478 -13300.0,0.027200489945658976 -13301.0,0.0271910968514816 -13302.0,0.027181707001003825 -13303.0,0.027172320393105496 -13304.0,0.027162937026666865 -13305.0,0.02715355690056857 -13306.0,0.02714418001369164 -13307.0,0.027134806364917455 -13308.0,0.02712543595312782 -13309.0,0.027116068777204915 -13310.0,0.027106704836031312 -13311.0,0.027097344128489943 -13312.0,0.027087986653464152 -13313.0,0.027078632409837662 -13314.0,0.02706928139649459 -13315.0,0.02705993361231941 -13316.0,0.027050589056197002 -13317.0,0.027041247727012635 -13318.0,0.02703190962365197 -13319.0,0.02702257474500101 -13320.0,0.027013243089946185 -13321.0,0.0270039146573743 -13322.0,0.02699458944617254 -13323.0,0.026985267455228487 -13324.0,0.02697594868343007 -13325.0,0.02696663312966564 -13326.0,0.02695732079282392 -13327.0,0.026948011671794028 -13328.0,0.026938705765465427 -13329.0,0.02692940307272801 -13330.0,0.026920103592472027 -13331.0,0.026910807323588127 -13332.0,0.026901514264967317 -13333.0,0.02689222441550101 -13334.0,0.026882937774080996 -13335.0,0.02687365433959946 -13336.0,0.026864374110948927 -13337.0,0.02685509708702235 -13338.0,0.026845823266713045 -13339.0,0.026836552648914717 -13340.0,0.026827285232521456 -13341.0,0.026818021016427704 -13342.0,0.02680875999952832 -13343.0,0.026799502180718533 -13344.0,0.026790247558893966 -13345.0,0.026780996132950582 -13346.0,0.026771747901784767 -13347.0,0.026762502864293276 -13348.0,0.026753261019373257 -13349.0,0.026744022365922195 -13350.0,0.026734786902838006 -13351.0,0.026725554629018957 -13352.0,0.026716325543363725 -13353.0,0.02670709964477132 -13354.0,0.026697876932141176 -13355.0,0.026688657404373085 -13356.0,0.026679441060367237 -13357.0,0.02667022789902417 -13358.0,0.026661017919244828 -13359.0,0.026651811119930528 -13360.0,0.02664260749998297 -13361.0,0.026633407058304238 -13362.0,0.026624209793796764 -13363.0,0.026615015705363388 -13364.0,0.02660582479190733 -13365.0,0.026596637052332193 -13366.0,0.026587452485541917 -13367.0,0.026578271090440864 -13368.0,0.02656909286593376 -13369.0,0.026559917810925725 -13370.0,0.026550745924322217 -13371.0,0.026541577205029105 -13372.0,0.02653241165195263 -13373.0,0.026523249263999422 -13374.0,0.02651409004007645 -13375.0,0.026504933979091094 -13376.0,0.026495781079951108 -13377.0,0.026486631341564617 -13378.0,0.02647748476284013 -13379.0,0.02646834134268651 -13380.0,0.026459201080013022 -13381.0,0.0264500639737293 -13382.0,0.026440930022745366 -13383.0,0.026431799225971584 -13384.0,0.026422671582318726 -13385.0,0.02641354709069793 -13386.0,0.026404425750020725 -13387.0,0.026395307559198975 -13388.0,0.02638619251714496 -13389.0,0.026377080622771325 -13390.0,0.026367971874991094 -13391.0,0.02635886627271764 -13392.0,0.02634976381486474 -13393.0,0.026340664500346538 -13394.0,0.026331568328077565 -13395.0,0.026322475296972687 -13396.0,0.02631338540594719 -13397.0,0.02630429865391671 -13398.0,0.026295215039797266 -13399.0,0.026286134562505264 -13400.0,0.02627705722095744 -13401.0,0.02626798301407095 -13402.0,0.026258911940763303 -13403.0,0.0262498439999524 -13404.0,0.02624077919055648 -13405.0,0.026231717511494185 -13406.0,0.026222658961684527 -13407.0,0.026213603540046895 -13408.0,0.026204551245501022 -13409.0,0.026195502076967046 -13410.0,0.02618645603336547 -13411.0,0.026177413113617175 -13412.0,0.026168373316643383 -13413.0,0.02615933664136573 -13414.0,0.026150303086706198 -13415.0,0.026141272651587156 -13416.0,0.026132245334931345 -13417.0,0.026123221135661855 -13418.0,0.026114200052702173 -13419.0,0.026105182084976152 -13420.0,0.02609616723140802 -13421.0,0.026087155490922352 -13422.0,0.026078146862444126 -13423.0,0.026069141344898676 -13424.0,0.02606013893721172 -13425.0,0.026051139638309316 -13426.0,0.026042143447117926 -13427.0,0.026033150362564362 -13428.0,0.026024160383575835 -13429.0,0.026015173509079878 -13430.0,0.026006189738004438 -13431.0,0.025997209069277813 -13432.0,0.025988231501828683 -13433.0,0.025979257034586076 -13434.0,0.02597028566647941 -13435.0,0.025961317396438463 -13436.0,0.02595235222339339 -13437.0,0.02594339014627472 -13438.0,0.025934431164013325 -13439.0,0.02592547527554047 -13440.0,0.025916522479787783 -13441.0,0.025907572775687275 -13442.0,0.025898626162171288 -13443.0,0.025889682638172564 -13444.0,0.02588074220262421 -13445.0,0.025871804854459706 -13446.0,0.02586287059261287 -13447.0,0.025853939416017924 -13448.0,0.02584501132360944 -13449.0,0.02583608631432237 -13450.0,0.025827164387092007 -13451.0,0.025818245540854046 -13452.0,0.025809329774544525 -13453.0,0.02580041708709986 -13454.0,0.02579150747745685 -13455.0,0.025782600944552616 -13456.0,0.025773697487324682 -13457.0,0.025764797104710937 -13458.0,0.025755899795649635 -13459.0,0.025747005559079373 -13460.0,0.025738114393939148 -13461.0,0.025729226299168302 -13462.0,0.025720341273706565 -13463.0,0.025711459316493997 -13464.0,0.025702580426471052 -13465.0,0.025693704602578547 -13466.0,0.025684831843757673 -13467.0,0.025675962148949946 -13468.0,0.025667095517097296 -13469.0,0.02565823194714199 -13470.0,0.02564937143802669 -13471.0,0.025640513988694366 -13472.0,0.02563165959808841 -13473.0,0.025622808265152557 -13474.0,0.025613959988830905 -13475.0,0.02560511476806793 -13476.0,0.02559627260180844 -13477.0,0.02558743348899764 -13478.0,0.025578597428581092 -13479.0,0.025569764419504724 -13480.0,0.025560934460714804 -13481.0,0.025552107551157992 -13482.0,0.0255432836897813 -13483.0,0.025534462875532123 -13484.0,0.02552564510735817 -13485.0,0.02551683038420757 -13486.0,0.025508018705028775 -13487.0,0.02549921006877064 -13488.0,0.025490404474382333 -13489.0,0.025481601920813418 -13490.0,0.025472802407013818 -13491.0,0.025464005931933816 -13492.0,0.025455212494524065 -13493.0,0.02544642209373555 -13494.0,0.025437634728519655 -13495.0,0.025428850397828107 -13496.0,0.025420069100613014 -13497.0,0.025411290835826807 -13498.0,0.025402515602422314 -13499.0,0.025393743399352717 -13500.0,0.025384974225571563 -13501.0,0.02537620808003273 -13502.0,0.025367444961690497 -13503.0,0.025358684869499486 -13504.0,0.02534992780241469 -13505.0,0.02534117375939144 -13506.0,0.025332422739385446 -13507.0,0.02532367474135278 -13508.0,0.025314929764249875 -13509.0,0.0253061878070335 -13510.0,0.025297448868660817 -13511.0,0.02528871294808933 -13512.0,0.025279980044276913 -13513.0,0.0252712501561818 -13514.0,0.025262523282762555 -13515.0,0.025253799422978142 -13516.0,0.02524507857578787 -13517.0,0.025236360740151408 -13518.0,0.025227645915028768 -13519.0,0.025218934099380343 -13520.0,0.025210225292166873 -13521.0,0.02520151949234948 -13522.0,0.025192816698889595 -13523.0,0.025184116910749055 -13524.0,0.025175420126890037 -13525.0,0.02516672634627509 -13526.0,0.025158035567867082 -13527.0,0.025149347790629287 -13528.0,0.025140663013525306 -13529.0,0.025131981235519116 -13530.0,0.025123302455575054 -13531.0,0.02511462667265778 -13532.0,0.025105953885732352 -13533.0,0.025097284093764164 -13534.0,0.025088617295718988 -13535.0,0.025079953490562915 -13536.0,0.025071292677262425 -13537.0,0.02506263485478435 -13538.0,0.025053980022095884 -13539.0,0.025045328178164548 -13540.0,0.02503667932195825 -13541.0,0.025028033452445243 -13542.0,0.02501939056859415 -13543.0,0.02501075066937392 -13544.0,0.025002113753753878 -13545.0,0.024993479820703712 -13546.0,0.02498484886919346 -13547.0,0.0249762208981935 -13548.0,0.024967595906674578 -13549.0,0.024958973893607805 -13550.0,0.02495035485796463 -13551.0,0.024941738798716882 -13552.0,0.0249331257148367 -13553.0,0.024924515605296623 -13554.0,0.024915908469069527 -13555.0,0.024907304305128646 -13556.0,0.024898703112447556 -13557.0,0.024890104890000198 -13558.0,0.024881509636760876 -13559.0,0.024872917351704243 -13560.0,0.024864328033805283 -13561.0,0.024855741682039363 -13562.0,0.024847158295382196 -13563.0,0.024838577872809853 -13564.0,0.024830000413298733 -13565.0,0.02482142591582562 -13566.0,0.02481285437936764 -13567.0,0.024804285802902264 -13568.0,0.024795720185407343 -13569.0,0.024787157525861032 -13570.0,0.024778597823241887 -13571.0,0.02477004107652879 -13572.0,0.024761487284700998 -13573.0,0.024752936446738084 -13574.0,0.024744388561620007 -13575.0,0.024735843628327068 -13576.0,0.024727301645839923 -13577.0,0.02471876261313956 -13578.0,0.024710226529207346 -13579.0,0.024701693393024988 -13580.0,0.02469316320357455 -13581.0,0.02468463595983843 -13582.0,0.02467611166079939 -13583.0,0.024667590305440558 -13584.0,0.024659071892745396 -13585.0,0.0246505564216977 -13586.0,0.024642043891281655 -13587.0,0.02463353430048177 -13588.0,0.024625027648282914 -13589.0,0.024616523933670323 -13590.0,0.024608023155629537 -13591.0,0.02459952531314649 -13592.0,0.024591030405207444 -13593.0,0.02458253843079904 -13594.0,0.02457404938890822 -13595.0,0.02456556327852231 -13596.0,0.02455708009862899 -13597.0,0.02454859984821628 -13598.0,0.02454012252627253 -13599.0,0.024531648131786467 -13600.0,0.024523176663747155 -13601.0,0.02451470812114403 -13602.0,0.024506242502966822 -13603.0,0.024497779808205663 -13604.0,0.024489320035851015 -13605.0,0.024480863184893686 -13606.0,0.02447240925432485 -13607.0,0.024463958243135988 -13608.0,0.024455510150318972 -13609.0,0.024447064974866 -13610.0,0.024438622715769645 -13611.0,0.024430183372022775 -13612.0,0.024421746942618654 -13613.0,0.024413313426550877 -13614.0,0.024404882822813393 -13615.0,0.02439645513040048 -13616.0,0.02438803034830678 -13617.0,0.024379608475527278 -13618.0,0.02437118951105732 -13619.0,0.02436277345389256 -13620.0,0.024354360303029038 -13621.0,0.024345950057463123 -13622.0,0.024337542716191544 -13623.0,0.02432913827821135 -13624.0,0.02432073674251996 -13625.0,0.024312338108115134 -13626.0,0.024303942373994976 -13627.0,0.024295549539157944 -13628.0,0.024287159602602814 -13629.0,0.024278772563328742 -13630.0,0.02427038842033521 -13631.0,0.024262007172622065 -13632.0,0.024253628819189462 -13633.0,0.024245253359037936 -13634.0,0.024236880791168355 -13635.0,0.024228511114581942 -13636.0,0.02422014432828024 -13637.0,0.024211780431265158 -13638.0,0.024203419422538945 -13639.0,0.024195061301104208 -13640.0,0.024186706065963855 -13641.0,0.024178353716121183 -13642.0,0.02417000425057982 -13643.0,0.02416165766834373 -13644.0,0.02415331396841724 -13645.0,0.024144973149804988 -13646.0,0.02413663521151198 -13647.0,0.02412830015254357 -13648.0,0.024119967971905448 -13649.0,0.02411163866860363 -13650.0,0.024103312241644494 -13651.0,0.02409498869003477 -13652.0,0.02408666801278152 -13653.0,0.02407835020889213 -13654.0,0.024070035277374356 -13655.0,0.024061723217236288 -13656.0,0.02405341402748637 -13657.0,0.02404510770713335 -13658.0,0.024036804255186364 -13659.0,0.02402850367065486 -13660.0,0.024020205952548657 -13661.0,0.024011911099877874 -13662.0,0.024003619111653007 -13663.0,0.023995329986884882 -13664.0,0.023987043724584666 -13665.0,0.023978760323763882 -13666.0,0.023970479783434355 -13667.0,0.02396220210260829 -13668.0,0.023953927280298215 -13669.0,0.023945655315517025 -13670.0,0.023937386207277905 -13671.0,0.023929119954594427 -13672.0,0.02392085655648048 -13673.0,0.02391259601195032 -13674.0,0.0239043383200185 -13675.0,0.02389608347969994 -13676.0,0.023887831490009913 -13677.0,0.023879582349964016 -13678.0,0.023871336058578167 -13679.0,0.02386309261486866 -13680.0,0.023854852017852105 -13681.0,0.023846614266545465 -13682.0,0.023838379359966043 -13683.0,0.023830147297131454 -13684.0,0.023821918077059683 -13685.0,0.023813691698769048 -13686.0,0.023805468161278206 -13687.0,0.023797247463606137 -13688.0,0.023789029604772173 -13689.0,0.023780814583795988 -13690.0,0.023772602399697598 -13691.0,0.023764393051497332 -13692.0,0.023756186538215884 -13693.0,0.023747982858874275 -13694.0,0.023739782012493875 -13695.0,0.023731583998096367 -13696.0,0.023723388814703792 -13697.0,0.02371519646133853 -13698.0,0.023707006937023302 -13699.0,0.023698820240781134 -13700.0,0.023690636371635425 -13701.0,0.023682455328609898 -13702.0,0.023674277110728618 -13703.0,0.023666101717015987 -13704.0,0.023657929146496726 -13705.0,0.023649759398195913 -13706.0,0.023641592471138957 -13707.0,0.023633428364351616 -13708.0,0.02362526707685995 -13709.0,0.023617108607690385 -13710.0,0.02360895295586968 -13711.0,0.02360080012042493 -13712.0,0.023592650100383545 -13713.0,0.02358450289477329 -13714.0,0.023576358502622272 -13715.0,0.02356821692295893 -13716.0,0.023560078154812016 -13717.0,0.023551942197210636 -13718.0,0.02354380904918424 -13719.0,0.023535678709762593 -13720.0,0.023527551177975822 -13721.0,0.02351942645285435 -13722.0,0.023511304533428968 -13723.0,0.023503185418730786 -13724.0,0.023495069107791266 -13725.0,0.02348695559964217 -13726.0,0.023478844893315625 -13727.0,0.023470736987844083 -13728.0,0.023462631882260342 -13729.0,0.023454529575597502 -13730.0,0.023446430066889023 -13731.0,0.023438333355168695 -13732.0,0.023430239439470653 -13733.0,0.023422148318829328 -13734.0,0.023414059992279516 -13735.0,0.023405974458856345 -13736.0,0.023397891717595275 -13737.0,0.023389811767532073 -13738.0,0.023381734607702875 -13739.0,0.02337366023714413 -13740.0,0.02336558865489263 -13741.0,0.023357519859985496 -13742.0,0.023349453851460165 -13743.0,0.02334139062835443 -13744.0,0.023333330189706406 -13745.0,0.023325272534554554 -13746.0,0.023317217661937634 -13747.0,0.02330916557089477 -13748.0,0.0233011162604654 -13749.0,0.023293069729689312 -13750.0,0.023285025977606597 -13751.0,0.023276985003257707 -13752.0,0.0232689468056834 -13753.0,0.0232609113839248 -13754.0,0.023252878737023315 -13755.0,0.023244848864020718 -13756.0,0.023236821763959106 -13757.0,0.023228797435880903 -13758.0,0.023220775878828873 -13759.0,0.023212757091846087 -13760.0,0.023204741073975972 -13761.0,0.02319672782426227 -13762.0,0.023188717341749075 -13763.0,0.023180709625480772 -13764.0,0.023172704674502106 -13765.0,0.023164702487858152 -13766.0,0.02315670306459431 -13767.0,0.023148706403756294 -13768.0,0.023140712504390166 -13769.0,0.02313272136554231 -13770.0,0.023124732986259458 -13771.0,0.023116747365588632 -13772.0,0.023108764502577213 -13773.0,0.023100784396272906 -13774.0,0.02309280704572375 -13775.0,0.02308483244997809 -13776.0,0.023076860608084622 -13777.0,0.023068891519092364 -13778.0,0.023060925182050662 -13779.0,0.023052961596009197 -13780.0,0.023045000760017954 -13781.0,0.023037042673127273 -13782.0,0.023029087334387816 -13783.0,0.02302113474285057 -13784.0,0.023013184897566836 -13785.0,0.023005237797588264 -13786.0,0.022997293441966823 -13787.0,0.02298935182975482 -13788.0,0.022981412960004853 -13789.0,0.022973476831769892 -13790.0,0.022965543444103207 -13791.0,0.022957612796058416 -13792.0,0.02294968488668943 -13793.0,0.022941759715050518 -13794.0,0.022933837280196264 -13795.0,0.02292591758118158 -13796.0,0.02291800061706171 -13797.0,0.022910086386892205 -13798.0,0.022902174889728958 -13799.0,0.02289426612462819 -13800.0,0.02288636009064645 -13801.0,0.022878456786840584 -13802.0,0.022870556212267804 -13803.0,0.02286265836598562 -13804.0,0.02285476324705189 -13805.0,0.022846870854524765 -13806.0,0.022838981187462748 -13807.0,0.02283109424492466 -13808.0,0.022823210025969657 -13809.0,0.02281532852965719 -13810.0,0.02280744975504706 -13811.0,0.02279957370119939 -13812.0,0.022791700367174636 -13813.0,0.02278382975203354 -13814.0,0.022775961854837212 -13815.0,0.022768096674647065 -13816.0,0.02276023421052484 -13817.0,0.022752374461532617 -13818.0,0.02274451742673276 -13819.0,0.022736663105187994 -13820.0,0.022728811495961357 -13821.0,0.02272096259811622 -13822.0,0.02271311641071624 -13823.0,0.022705272932825444 -13824.0,0.022697432163508155 -13825.0,0.02268959410182904 -13826.0,0.022681758746853055 -13827.0,0.022673926097645507 -13828.0,0.022666096153272017 -13829.0,0.022658268912798544 -13830.0,0.022650444375291335 -13831.0,0.022642622539816987 -13832.0,0.02263480340544241 -13833.0,0.022626986971234844 -13834.0,0.022619173236261857 -13835.0,0.022611362199591298 -13836.0,0.022603553860291385 -13837.0,0.022595748217430635 -13838.0,0.022587945270077906 -13839.0,0.022580145017302343 -13840.0,0.02257234745817344 -13841.0,0.022564552591761006 -13842.0,0.02255676041713518 -13843.0,0.022548970933366393 -13844.0,0.022541184139525428 -13845.0,0.022533400034683376 -13846.0,0.022525618617911657 -13847.0,0.02251783988828199 -13848.0,0.022510063844866438 -13849.0,0.02250229048673737 -13850.0,0.022494519812967496 -13851.0,0.022486751822629814 -13852.0,0.022478986514797666 -13853.0,0.022471223888544705 -13854.0,0.02246346394294491 -13855.0,0.022455706677072584 -13856.0,0.022447952090002325 -13857.0,0.022440200180809073 -13858.0,0.022432450948568085 -13859.0,0.02242470439235494 -13860.0,0.022416960511245518 -13861.0,0.022409219304316032 -13862.0,0.022401480770643016 -13863.0,0.02239374490930333 -13864.0,0.02238601171937412 -13865.0,0.022378281199932886 -13866.0,0.022370553350057432 -13867.0,0.022362828168825892 -13868.0,0.022355105655316686 -13869.0,0.02234738580860859 -13870.0,0.022339668627780675 -13871.0,0.022331954111912345 -13872.0,0.022324242260083317 -13873.0,0.022316533071373608 -13874.0,0.022308826544863578 -13875.0,0.022301122679633897 -13876.0,0.022293421474765554 -13877.0,0.02228572292933983 -13878.0,0.022278027042438364 -13879.0,0.022270333813143087 -13880.0,0.022262643240536267 -13881.0,0.022254955323700445 -13882.0,0.02224727006171853 -13883.0,0.02223958745367372 -13884.0,0.022231907498649544 -13885.0,0.022224230195729826 -13886.0,0.022216555543998723 -13887.0,0.02220888354254071 -13888.0,0.02220121419044058 -13889.0,0.02219354748678342 -13890.0,0.02218588343065465 -13891.0,0.022178222021140014 -13892.0,0.022170563257325554 -13893.0,0.022162907138297647 -13894.0,0.022155253663142953 -13895.0,0.022147602830948483 -13896.0,0.022139954640801544 -13897.0,0.022132309091789773 -13898.0,0.022124666183001095 -13899.0,0.022117025913523772 -13900.0,0.02210938828244638 -13901.0,0.02210175328885781 -13902.0,0.022094120931847247 -13903.0,0.022086491210504218 -13904.0,0.022078864123918553 -13905.0,0.0220712396711804 -13906.0,0.0220636178513802 -13907.0,0.02205599866360874 -13908.0,0.0220483821069571 -13909.0,0.022040768180516687 -13910.0,0.02203315688337922 -13911.0,0.022025548214636707 -13912.0,0.0220179421733815 -13913.0,0.022010338758706255 -13914.0,0.02200273796970395 -13915.0,0.021995139805467846 -13916.0,0.021987544265091544 -13917.0,0.021979951347668957 -13918.0,0.02197236105229431 -13919.0,0.021964773378062123 -13920.0,0.021957188324067244 -13921.0,0.02194960588940484 -13922.0,0.021942026073170383 -13923.0,0.02193444887445964 -13924.0,0.021926874292368715 -13925.0,0.02191930232599402 -13926.0,0.02191173297443228 -13927.0,0.021904166236780508 -13928.0,0.02189660211213606 -13929.0,0.021889040599596586 -13930.0,0.02188148169826006 -13931.0,0.02187392540722476 -13932.0,0.02186637172558926 -13933.0,0.02185882065245248 -13934.0,0.021851272186913618 -13935.0,0.021843726328072213 -13936.0,0.02183618307502808 -13937.0,0.021828642426881373 -13938.0,0.021821104382732548 -13939.0,0.021813568941682383 -13940.0,0.02180603610283193 -13941.0,0.02179850586528259 -13942.0,0.02179097822813606 -13943.0,0.021783453190494358 -13944.0,0.02177593075145978 -13945.0,0.021768410910134966 -13946.0,0.021760893665622852 -13947.0,0.02175337901702669 -13948.0,0.021745866963450038 -13949.0,0.021738357503996754 -13950.0,0.021730850637771016 -13951.0,0.02172334636387731 -13952.0,0.021715844681420446 -13953.0,0.021708345589505504 -13954.0,0.02170084908723791 -13955.0,0.021693355173723384 -13956.0,0.021685863848067966 -13957.0,0.021678375109377975 -13958.0,0.021670888956760073 -13959.0,0.02166340538932121 -13960.0,0.021655924406168668 -13961.0,0.021648446006409996 -13962.0,0.021640970189153088 -13963.0,0.02163349695350613 -13964.0,0.021626026298577634 -13965.0,0.021618558223476383 -13966.0,0.021611092727311498 -13967.0,0.021603629809192403 -13968.0,0.021596169468228826 -13969.0,0.02158871170353081 -13970.0,0.021581256514208683 -13971.0,0.0215738038993731 -13972.0,0.021566353858135018 -13973.0,0.021558906389605715 -13974.0,0.02155146149289674 -13975.0,0.02154401916711999 -13976.0,0.021536579411387636 -13977.0,0.021529142224812184 -13978.0,0.021521707606506416 -13979.0,0.021514275555583443 -13980.0,0.021506846071156677 -13981.0,0.021499419152339844 -13982.0,0.021491994798246945 -13983.0,0.021484573007992322 -13984.0,0.021477153780690605 -13985.0,0.02146973711545674 -13986.0,0.02146232301140598 -13987.0,0.021454911467653853 -13988.0,0.02144750248331623 -13989.0,0.021440096057509277 -13990.0,0.021432692189349463 -13991.0,0.021425290877953546 -13992.0,0.02141789212243861 -13993.0,0.02141049592192204 -13994.0,0.021403102275521533 -13995.0,0.021395711182355063 -13996.0,0.02138832264154093 -13997.0,0.02138093665219774 -13998.0,0.021373553213444408 -13999.0,0.02136617232440012 -14000.0,0.021358793984184405 -14001.0,0.02135141819191708 -14002.0,0.021344044946718273 -14003.0,0.021336674247708392 -14004.0,0.021329306094008176 -14005.0,0.021321940484738656 -14006.0,0.021314577419021173 -14007.0,0.021307216895977373 -14008.0,0.021299858914729183 -14009.0,0.021292503474398858 -14010.0,0.021285150574108944 -14011.0,0.021277800212982305 -14012.0,0.02127045239014208 -14013.0,0.021263107104711736 -14014.0,0.021255764355815034 -14015.0,0.021248424142576047 -14016.0,0.021241086464119117 -14017.0,0.021233751319568932 -14018.0,0.021226418708050452 -14019.0,0.02121908862868897 -14020.0,0.02121176108061003 -14021.0,0.021204436062939532 -14022.0,0.021197113574803642 -14023.0,0.02118979361532885 -14024.0,0.021182476183641944 -14025.0,0.021175161278869988 -14026.0,0.021167848900140375 -14027.0,0.021160539046580797 -14028.0,0.021153231717319247 -14029.0,0.021145926911484 -14030.0,0.021138624628203647 -14031.0,0.021131324866607085 -14032.0,0.021124027625823515 -14033.0,0.021116732904982408 -14034.0,0.021109440703213567 -14035.0,0.021102151019647086 -14036.0,0.021094863853413366 -14037.0,0.02108757920364309 -14038.0,0.021080297069467253 -14039.0,0.021073017450017155 -14040.0,0.021065740344424395 -14041.0,0.021058465751820854 -14042.0,0.02105119367133873 -14043.0,0.021043924102110523 -14044.0,0.021036657043269024 -14045.0,0.021029392493947332 -14046.0,0.021022130453278824 -14047.0,0.021014870920397197 -14048.0,0.02100761389443645 -14049.0,0.02100035937453087 -14050.0,0.02099310735981504 -14051.0,0.020985857849423847 -14052.0,0.02097861084249248 -14053.0,0.020971366338156435 -14054.0,0.020964124335551476 -14055.0,0.020956884833813694 -14056.0,0.020949647832079466 -14057.0,0.020942413329485488 -14058.0,0.02093518132516871 -14059.0,0.02092795181826642 -14060.0,0.020920724807916187 -14061.0,0.020913500293255886 -14062.0,0.020906278273423694 -14063.0,0.020899058747558052 -14064.0,0.02089184171479774 -14065.0,0.02088462717428181 -14066.0,0.02087741512514964 -14067.0,0.02087020556654086 -14068.0,0.02086299849759543 -14069.0,0.020855793917453604 -14070.0,0.020848591825255936 -14071.0,0.020841392220143248 -14072.0,0.02083419510125669 -14073.0,0.0208270004677377 -14074.0,0.02081980831872802 -14075.0,0.020812618653369655 -14076.0,0.020805431470804946 -14077.0,0.020798246770176512 -14078.0,0.02079106455062728 -14079.0,0.020783884811300446 -14080.0,0.020776707551339528 -14081.0,0.020769532769888327 -14082.0,0.02076236046609095 -14083.0,0.020755190639091804 -14084.0,0.020748023288035558 -14085.0,0.020740858412067208 -14086.0,0.02073369601033204 -14087.0,0.020726536081975635 -14088.0,0.020719378626143856 -14089.0,0.02071222364198287 -14090.0,0.02070507112863915 -14091.0,0.020697921085259457 -14092.0,0.020690773510990825 -14093.0,0.020683628404980607 -14094.0,0.020676485766376446 -14095.0,0.02066934559432629 -14096.0,0.020662207887978346 -14097.0,0.02065507264648115 -14098.0,0.020647939868983514 -14099.0,0.020640809554634557 -14100.0,0.020633681702583687 -14101.0,0.02062655631198059 -14102.0,0.020619433381975267 -14103.0,0.020612312911718 -14104.0,0.020605194900359385 -14105.0,0.020598079347050272 -14106.0,0.020590966250941835 -14107.0,0.02058385561118554 -14108.0,0.020576747426933144 -14109.0,0.020569641697336674 -14110.0,0.02056253842154848 -14111.0,0.02055543759872119 -14112.0,0.02054833922800774 -14113.0,0.020541243308561323 -14114.0,0.020534149839535464 -14115.0,0.020527058820083956 -14116.0,0.020519970249360905 -14117.0,0.020512884126520678 -14118.0,0.020505800450717964 -14119.0,0.020498719221107728 -14120.0,0.02049164043684523 -14121.0,0.020484564097086034 -14122.0,0.02047749020098597 -14123.0,0.020470418747701176 -14124.0,0.02046334973638808 -14125.0,0.020456283166203414 -14126.0,0.02044921903630417 -14127.0,0.02044215734584765 -14128.0,0.020435098093991452 -14129.0,0.02042804127989347 -14130.0,0.020420986902711852 -14131.0,0.02041393496160508 -14132.0,0.0204068854557319 -14133.0,0.02039983838425137 -14134.0,0.020392793746322812 -14135.0,0.020385751541105855 -14136.0,0.02037871176776042 -14137.0,0.02037167442544671 -14138.0,0.02036463951332523 -14139.0,0.020357607030556748 -14140.0,0.020350576976302354 -14141.0,0.02034354934972341 -14142.0,0.02033652414998158 -14143.0,0.020329501376238793 -14144.0,0.02032248102765729 -14145.0,0.020315463103399597 -14146.0,0.020308447602628534 -14147.0,0.020301434524507184 -14148.0,0.02029442386819895 -14149.0,0.020287415632867508 -14150.0,0.020280409817676842 -14151.0,0.020273406421791183 -14152.0,0.020266405444375094 -14153.0,0.020259406884593403 -14154.0,0.020252410741611243 -14155.0,0.02024541701459401 -14156.0,0.02023842570270741 -14157.0,0.020231436805117433 -14158.0,0.020224450320990354 -14159.0,0.020217466249492742 -14160.0,0.020210484589791432 -14161.0,0.02020350534105357 -14162.0,0.02019652850244659 -14163.0,0.02018955407313821 -14164.0,0.020182582052296408 -14165.0,0.02017561243908949 -14166.0,0.02016864523268603 -14167.0,0.020161680432254896 -14168.0,0.020154718036965225 -14169.0,0.02014775804598646 -14170.0,0.020140800458488328 -14171.0,0.020133845273640847 -14172.0,0.020126892490614293 -14173.0,0.020119942108579262 -14174.0,0.020112994126706623 -14175.0,0.020106048544167535 -14176.0,0.020099105360133446 -14177.0,0.020092164573776067 -14178.0,0.020085226184267425 -14179.0,0.02007829019077982 -14180.0,0.020071356592485844 -14181.0,0.020064425388558356 -14182.0,0.02005749657817052 -14183.0,0.020050570160495777 -14184.0,0.02004364613470787 -14185.0,0.02003672449998079 -14186.0,0.020029805255488854 -14187.0,0.02002288840040664 -14188.0,0.020015973933909026 -14189.0,0.02000906185517115 -14190.0,0.02000215216336846 -14191.0,0.019995244857676682 -14192.0,0.019988339937271834 -14193.0,0.01998143740133019 -14194.0,0.019974537249028333 -14195.0,0.019967639479543133 -14196.0,0.01996074409205173 -14197.0,0.019953851085731566 -14198.0,0.019946960459760337 -14199.0,0.019940072213316055 -14200.0,0.019933186345576993 -14201.0,0.019926302855721736 -14202.0,0.01991942174292911 -14203.0,0.019912543006378257 -14204.0,0.019905666645248597 -14205.0,0.019898792658719838 -14206.0,0.019891921045971945 -14207.0,0.019885051806185196 -14208.0,0.019878184938540138 -14209.0,0.019871320442217615 -14210.0,0.01986445831639872 -14211.0,0.019857598560264866 -14212.0,0.019850741172997732 -14213.0,0.019843886153779283 -14214.0,0.019837033501791772 -14215.0,0.019830183216217708 -14216.0,0.019823335296239915 -14217.0,0.019816489741041485 -14218.0,0.019809646549805802 -14219.0,0.019802805721716506 -14220.0,0.01979596725595754 -14221.0,0.01978913115171313 -14222.0,0.01978229740816779 -14223.0,0.019775466024506277 -14224.0,0.019768636999913675 -14225.0,0.019761810333575325 -14226.0,0.01975498602467687 -14227.0,0.019748164072404196 -14228.0,0.019741344475943508 -14229.0,0.019734527234481273 -14230.0,0.019727712347204256 -14231.0,0.01972089981329947 -14232.0,0.019714089631954243 -14233.0,0.019707281802356164 -14234.0,0.019700476323693115 -14235.0,0.019693673195153256 -14236.0,0.019686872415925007 -14237.0,0.019680073985197097 -14238.0,0.019673277902158517 -14239.0,0.019666484165998553 -14240.0,0.01965969277590675 -14241.0,0.019652903731072948 -14242.0,0.019646117030687266 -14243.0,0.019639332673940108 -14244.0,0.019632550660022133 -14245.0,0.019625770988124305 -14246.0,0.019618993657437855 -14247.0,0.01961221866715431 -14248.0,0.019605446016465446 -14249.0,0.01959867570456334 -14250.0,0.019591907730640346 -14251.0,0.019585142093889094 -14252.0,0.0195783787935025 -14253.0,0.019571617828673733 -14254.0,0.019564859198596272 -14255.0,0.01955810290246386 -14256.0,0.01955134893947053 -14257.0,0.01954459730881056 -14258.0,0.019537848009678546 -14259.0,0.01953110104126934 -14260.0,0.019524356402778092 -14261.0,0.019517614093400196 -14262.0,0.01951087411233135 -14263.0,0.019504136458767526 -14264.0,0.019497401131904978 -14265.0,0.019490668130940216 -14266.0,0.019483937455070047 -14267.0,0.019477209103491558 -14268.0,0.019470483075402095 -14269.0,0.019463759369999306 -14270.0,0.019457037986481088 -14271.0,0.019450318924045633 -14272.0,0.019443602181891406 -14273.0,0.019436887759217158 -14274.0,0.01943017565522189 -14275.0,0.019423465869104907 -14276.0,0.01941675840006578 -14277.0,0.01941005324730436 -14278.0,0.019403350410020764 -14279.0,0.019396649887415397 -14280.0,0.01938995167868893 -14281.0,0.01938325578304233 -14282.0,0.019376562199676806 -14283.0,0.019369870927793874 -14284.0,0.019363181966595307 -14285.0,0.01935649531528318 -14286.0,0.019349810973059794 -14287.0,0.019343128939127777 -14288.0,0.019336449212690003 -14289.0,0.019329771792949632 -14290.0,0.019323096679110103 -14291.0,0.019316423870375108 -14292.0,0.019309753365948642 -14293.0,0.019303085165034956 -14294.0,0.019296419266838595 -14295.0,0.019289755670564346 -14296.0,0.019283094375417302 -14297.0,0.019276435380602815 -14298.0,0.01926977868532653 -14299.0,0.019263124288794328 -14300.0,0.019256472190212405 -14301.0,0.019249822388787204 -14302.0,0.01924317488372547 -14303.0,0.019236529674234178 -14304.0,0.019229886759520618 -14305.0,0.019223246138792338 -14306.0,0.01921660781125716 -14307.0,0.019209971776123186 -14308.0,0.01920333803259877 -14309.0,0.019196706579892565 -14310.0,0.019190077417213486 -14311.0,0.01918345054377073 -14312.0,0.019176825958773742 -14313.0,0.019170203661432267 -14314.0,0.01916358365095631 -14315.0,0.019156965926556163 -14316.0,0.019150350487442368 -14317.0,0.01914373733282575 -14318.0,0.019137126461917415 -14319.0,0.019130517873928738 -14320.0,0.019123911568071347 -14321.0,0.01911730754355717 -14322.0,0.019110705799598393 -14323.0,0.019104106335407482 -14324.0,0.019097509150197155 -14325.0,0.019090914243180424 -14326.0,0.019084321613570564 -14327.0,0.01907773126058112 -14328.0,0.019071143183425922 -14329.0,0.019064557381319045 -14330.0,0.01905797385347486 -14331.0,0.019051392599107993 -14332.0,0.019044813617433366 -14333.0,0.01903823690766613 -14334.0,0.019031662469021743 -14335.0,0.019025090300715926 -14336.0,0.019018520401964667 -14337.0,0.019011952771984218 -14338.0,0.01900538740999111 -14339.0,0.018998824315202147 -14340.0,0.018992263486834405 -14341.0,0.018985704924105208 -14342.0,0.01897914862623218 -14343.0,0.0189725945924332 -14344.0,0.018966042821926418 -14345.0,0.018959493313930265 -14346.0,0.01895294606766342 -14347.0,0.018946401082344844 -14348.0,0.018939858357193775 -14349.0,0.01893331789142972 -14350.0,0.01892677968427243 -14351.0,0.018920243734941958 -14352.0,0.018913710042658606 -14353.0,0.01890717860664297 -14354.0,0.01890064942611587 -14355.0,0.018894122500298437 -14356.0,0.018887597828412053 -14357.0,0.018881075409678386 -14358.0,0.018874555243319338 -14359.0,0.01886803732855711 -14360.0,0.01886152166461416 -14361.0,0.01885500825071323 -14362.0,0.018848497086077297 -14363.0,0.018841988169929637 -14364.0,0.01883548150149378 -14365.0,0.018828977079993533 -14366.0,0.01882247490465297 -14367.0,0.018815974974696417 -14368.0,0.01880947728934848 -14369.0,0.018802981847834042 -14370.0,0.018796488649378246 -14371.0,0.018789997693206488 -14372.0,0.018783508978544448 -14373.0,0.018777022504618074 -14374.0,0.018770538270653583 -14375.0,0.018764056275877437 -14376.0,0.01875757651951639 -14377.0,0.018751099000797456 -14378.0,0.018744623718947917 -14379.0,0.01873815067319531 -14380.0,0.018731679862767452 -14381.0,0.01872521128689242 -14382.0,0.018718744944798565 -14383.0,0.018712280835714506 -14384.0,0.0187058189588691 -14385.0,0.018699359313491513 -14386.0,0.018692901898811145 -14387.0,0.018686446714057687 -14388.0,0.018679993758461064 -14389.0,0.018673543031251492 -14390.0,0.01866709453165945 -14391.0,0.01866064825891569 -14392.0,0.018654204212251193 -14393.0,0.018647762390897247 -14394.0,0.01864132279408539 -14395.0,0.018634885421047426 -14396.0,0.018628450271015413 -14397.0,0.018622017343221692 -14398.0,0.01861558663689886 -14399.0,0.018609158151279788 -14400.0,0.018602731885597593 -14401.0,0.018596307839085672 -14402.0,0.018589886010977684 -14403.0,0.01858346640050755 -14404.0,0.01857704900690947 -14405.0,0.018570633829417878 -14406.0,0.018564220867267497 -14407.0,0.018557810119693305 -14408.0,0.01855140158593056 -14409.0,0.01854499526521475 -14410.0,0.018538591156781657 -14411.0,0.01853218925986732 -14412.0,0.018525789573708047 -14413.0,0.01851939209754038 -14414.0,0.01851299683060116 -14415.0,0.018506603772127483 -14416.0,0.0185002129213567 -14417.0,0.018493824277526424 -14418.0,0.018487437839874537 -14419.0,0.018481053607639186 -14420.0,0.01847467158005878 -14421.0,0.018468291756371998 -14422.0,0.018461914135817752 -14423.0,0.018455538717635254 -14424.0,0.018449165501063958 -14425.0,0.018442794485343597 -14426.0,0.018436425669714138 -14427.0,0.018430059053415833 -14428.0,0.018423694635689193 -14429.0,0.018417332415775 -14430.0,0.018410972392914268 -14431.0,0.018404614566348305 -14432.0,0.018398258935318663 -14433.0,0.018391905499067173 -14434.0,0.018385554256835898 -14435.0,0.018379205207867195 -14436.0,0.01837285835140366 -14437.0,0.018366513686688173 -14438.0,0.018360171212963846 -14439.0,0.018353830929474072 -14440.0,0.018347492835462505 -14441.0,0.018341156930173057 -14442.0,0.018334823212849908 -14443.0,0.018328491682737473 -14444.0,0.018322162339080458 -14445.0,0.018315835181123816 -14446.0,0.018309510208112764 -14447.0,0.018303187419292783 -14448.0,0.01829686681390962 -14449.0,0.018290548391209242 -14450.0,0.018284232150437927 -14451.0,0.01827791809084219 -14452.0,0.01827160621166881 -14453.0,0.018265296512164828 -14454.0,0.01825898899157754 -14455.0,0.018252683649154507 -14456.0,0.018246380484143565 -14457.0,0.018240079495792757 -14458.0,0.01823378068335044 -14459.0,0.01822748404606521 -14460.0,0.018221189583185922 -14461.0,0.018214897293961693 -14462.0,0.018208607177641903 -14463.0,0.018202319233476184 -14464.0,0.018196033460714432 -14465.0,0.018189749858606812 -14466.0,0.01818346842640371 -14467.0,0.018177189163355808 -14468.0,0.018170912068714035 -14469.0,0.018164637141729584 -14470.0,0.0181583643816539 -14471.0,0.018152093787738688 -14472.0,0.01814582535923591 -14473.0,0.018139559095397807 -14474.0,0.018133294995476827 -14475.0,0.018127033058725726 -14476.0,0.018120773284397495 -14477.0,0.018114515671745397 -14478.0,0.018108260220022935 -14479.0,0.018102006928483887 -14480.0,0.018095755796382278 -14481.0,0.01808950682297239 -14482.0,0.01808326000750879 -14483.0,0.018077015349246238 -14484.0,0.018070772847439815 -14485.0,0.01806453250134483 -14486.0,0.018058294310216858 -14487.0,0.01805205827331173 -14488.0,0.018045824389885532 -14489.0,0.018039592659194602 -14490.0,0.018033363080495562 -14491.0,0.018027135653045236 -14492.0,0.01802091037610075 -14493.0,0.018014687248919473 -14494.0,0.018008466270759034 -14495.0,0.018002247440877316 -14496.0,0.01799603075853246 -14497.0,0.017989816222982857 -14498.0,0.01798360383348716 -14499.0,0.01797739358930429 -14500.0,0.017971185489693384 -14501.0,0.01796497953391387 -14502.0,0.017958775721225426 -14503.0,0.017952574050887984 -14504.0,0.017946374522161728 -14505.0,0.0179401771343071 -14506.0,0.017933981886584793 -14507.0,0.017927788778255783 -14508.0,0.017921597808581238 -14509.0,0.017915408976822637 -14510.0,0.017909222282241705 -14511.0,0.017903037724100405 -14512.0,0.01789685530166097 -14513.0,0.017890675014185883 -14514.0,0.017884496860937876 -14515.0,0.017878320841179945 -14516.0,0.017872146954175345 -14517.0,0.017865975199187555 -14518.0,0.017859805575480336 -14519.0,0.0178536380823177 -14520.0,0.017847472718963912 -14521.0,0.017841309484683487 -14522.0,0.017835148378741197 -14523.0,0.017828989400402066 -14524.0,0.01782283254893139 -14525.0,0.017816677823594668 -14526.0,0.017810525223657704 -14527.0,0.017804374748386535 -14528.0,0.017798226397047458 -14529.0,0.01779208016890702 -14530.0,0.017785936063232016 -14531.0,0.0177797940792895 -14532.0,0.017773654216346794 -14533.0,0.01776751647367143 -14534.0,0.017761380850531232 -14535.0,0.017755247346194263 -14536.0,0.017749115959928844 -14537.0,0.017742986691003545 -14538.0,0.01773685953868719 -14539.0,0.017730734502248848 -14540.0,0.017724611580957856 -14541.0,0.017718490774083804 -14542.0,0.01771237208089649 -14543.0,0.017706255500666023 -14544.0,0.017700141032662736 -14545.0,0.017694028676157214 -14546.0,0.017687918430420304 -14547.0,0.01768181029472309 -14548.0,0.017675704268336923 -14549.0,0.01766960035053341 -14550.0,0.01766349854058437 -14551.0,0.017657398837761913 -14552.0,0.01765130124133839 -14553.0,0.017645205750586406 -14554.0,0.017639112364778813 -14555.0,0.01763302108318871 -14556.0,0.017626931905089457 -14557.0,0.017620844829754654 -14558.0,0.017614759856458176 -14559.0,0.017608676984474096 -14560.0,0.017602596213076794 -14561.0,0.01759651754154087 -14562.0,0.01759044096914119 -14563.0,0.017584366495152857 -14564.0,0.017578294118851236 -14565.0,0.017572223839511934 -14566.0,0.017566155656410825 -14567.0,0.017560089568823992 -14568.0,0.017554025576027806 -14569.0,0.01754796367729888 -14570.0,0.017541903871914073 -14571.0,0.017535846159150492 -14572.0,0.0175297905382855 -14573.0,0.017523737008596704 -14574.0,0.017517685569361962 -14575.0,0.017511636219859395 -14576.0,0.01750558895936733 -14577.0,0.017499543787164392 -14578.0,0.017493500702529433 -14579.0,0.017487459704741554 -14580.0,0.017481420793080113 -14581.0,0.017475383966824708 -14582.0,0.017469349225255195 -14583.0,0.017463316567651682 -14584.0,0.01745728599329449 -14585.0,0.01745125750146423 -14586.0,0.01744523109144175 -14587.0,0.017439206762508135 -14588.0,0.017433184513944735 -14589.0,0.017427164345033136 -14590.0,0.017421146255055177 -14591.0,0.017415130243292942 -14592.0,0.01740911630902878 -14593.0,0.017403104451545245 -14594.0,0.017397094670125176 -14595.0,0.017391086964051655 -14596.0,0.017385081332608007 -14597.0,0.0173790777750778 -14598.0,0.017373076290744853 -14599.0,0.017367076878893238 -14600.0,0.017361079538807278 -14601.0,0.017355084269771507 -14602.0,0.017349091071070747 -14603.0,0.017343099941990056 -14604.0,0.017337110881814735 -14605.0,0.017331123889830328 -14606.0,0.017325138965322635 -14607.0,0.0173191561075777 -14608.0,0.01731317531588182 -14609.0,0.01730719658952151 -14610.0,0.017301219927783554 -14611.0,0.01729524532995499 -14612.0,0.017289272795323087 -14613.0,0.01728330232317537 -14614.0,0.0172773339127996 -14615.0,0.01727136756348379 -14616.0,0.017265403274516197 -14617.0,0.017259441045185345 -14618.0,0.01725348087477995 -14619.0,0.017247522762589024 -14620.0,0.017241566707901806 -14621.0,0.01723561271000778 -14622.0,0.01722966076819668 -14623.0,0.017223710881758485 -14624.0,0.017217763049983414 -14625.0,0.017211817272161947 -14626.0,0.01720587354758477 -14627.0,0.017199931875542855 -14628.0,0.0171939922553274 -14629.0,0.017188054686229855 -14630.0,0.01718211916754191 -14631.0,0.0171761856985555 -14632.0,0.01717025427856281 -14633.0,0.017164324906856262 -14634.0,0.017158397582728538 -14635.0,0.01715247230547252 -14636.0,0.017146549074381387 -14637.0,0.017140627888748535 -14638.0,0.017134708747867617 -14639.0,0.017128791651032513 -14640.0,0.017122876597537362 -14641.0,0.017116963586676543 -14642.0,0.017111052617744687 -14643.0,0.017105143690036632 -14644.0,0.0170992368028475 -14645.0,0.017093331955472645 -14646.0,0.017087429147207657 -14647.0,0.017081528377348373 -14648.0,0.017075629645190882 -14649.0,0.017069732950031502 -14650.0,0.0170638382911668 -14651.0,0.017057945667893606 -14652.0,0.017052055079508938 -14653.0,0.017046166525310113 -14654.0,0.01704028000459466 -14655.0,0.017034395516660365 -14656.0,0.017028513060805255 -14657.0,0.017022632636327594 -14658.0,0.017016754242525887 -14659.0,0.0170108778786989 -14660.0,0.017005003544145598 -14661.0,0.01699913123816523 -14662.0,0.016993260960057273 -14663.0,0.016987392709121443 -14664.0,0.016981526484657707 -14665.0,0.016975662285966257 -14666.0,0.016969800112347545 -14667.0,0.016963939963102255 -14668.0,0.01695808183753133 -14669.0,0.0169522257349359 -14670.0,0.0169463716546174 -14671.0,0.016940519595877477 -14672.0,0.016934669558018024 -14673.0,0.01692882154034117 -14674.0,0.016922975542149294 -14675.0,0.01691713156274501 -14676.0,0.016911289601431186 -14677.0,0.01690544965751089 -14678.0,0.016899611730287475 -14679.0,0.01689377581906452 -14680.0,0.016887941923145845 -14681.0,0.016882110041835503 -14682.0,0.016876280174437795 -14683.0,0.016870452320257263 -14684.0,0.0168646264785987 -14685.0,0.016858802648767095 -14686.0,0.016852980830067723 -14687.0,0.01684716102180608 -14688.0,0.016841343223287914 -14689.0,0.016835527433819195 -14690.0,0.01682971365270615 -14691.0,0.01682390187925523 -14692.0,0.016818092112773134 -14693.0,0.016812284352566816 -14694.0,0.016806478597943424 -14695.0,0.01680067484821039 -14696.0,0.01679487310267536 -14697.0,0.016789073360646237 -14698.0,0.016783275621431153 -14699.0,0.016777479884338475 -14700.0,0.016771686148676822 -14701.0,0.016765894413755048 -14702.0,0.01676010467888222 -14703.0,0.016754316943367677 -14704.0,0.01674853120652098 -14705.0,0.016742747467651944 -14706.0,0.0167369657260706 -14707.0,0.01673118598108723 -14708.0,0.016725408232012358 -14709.0,0.016719632478156738 -14710.0,0.016713858718831378 -14711.0,0.016708086953347485 -14712.0,0.016702317181016536 -14713.0,0.01669654940115025 -14714.0,0.016690783613060565 -14715.0,0.016685019816059667 -14716.0,0.016679258009459977 -14717.0,0.016673498192574153 -14718.0,0.016667740364715106 -14719.0,0.016661984525195944 -14720.0,0.016656230673330042 -14721.0,0.016650478808431016 -14722.0,0.016644728929812707 -14723.0,0.016638981036789197 -14724.0,0.016633235128674807 -14725.0,0.016627491204784087 -14726.0,0.016621749264431832 -14727.0,0.016616009306933084 -14728.0,0.01661027133160308 -14729.0,0.016604535337757333 -14730.0,0.016598801324711584 -14731.0,0.016593069291781806 -14732.0,0.016587339238284208 -14733.0,0.016581611163535237 -14734.0,0.01657588506685158 -14735.0,0.01657016094755016 -14736.0,0.01656443880494811 -14737.0,0.016558718638362835 -14738.0,0.016553000447111953 -14739.0,0.016547284230513336 -14740.0,0.016541569987885075 -14741.0,0.016535857718545502 -14742.0,0.016530147421813187 -14743.0,0.016524439097006936 -14744.0,0.016518732743445796 -14745.0,0.016513028360449013 -14746.0,0.016507325947336112 -14747.0,0.016501625503426837 -14748.0,0.016495927028041167 -14749.0,0.016490230520499312 -14750.0,0.016484535980121725 -14751.0,0.016478843406229085 -14752.0,0.016473152798142324 -14753.0,0.016467464155182566 -14754.0,0.016461777476671213 -14755.0,0.016456092761929886 -14756.0,0.016450410010280435 -14757.0,0.01644472922104496 -14758.0,0.01643905039354577 -14759.0,0.01643337352710543 -14760.0,0.01642769862104675 -14761.0,0.016422025674692718 -14762.0,0.01641635468736661 -14763.0,0.01641068565839192 -14764.0,0.01640501858709237 -14765.0,0.01639935347279193 -14766.0,0.01639369031481478 -14767.0,0.016388029112485356 -14768.0,0.016382369865128317 -14769.0,0.016376712572068564 -14770.0,0.0163710572326312 -14771.0,0.0163654038461416 -14772.0,0.016359752411925346 -14773.0,0.016354102929308275 -14774.0,0.01634845539761644 -14775.0,0.016342809816176133 -14776.0,0.016337166184313873 -14777.0,0.016331524501356436 -14778.0,0.01632588476663078 -14779.0,0.01632024697946414 -14780.0,0.016314611139183966 -14781.0,0.016308977245117946 -14782.0,0.016303345296593996 -14783.0,0.01629771529294027 -14784.0,0.016292087233485145 -14785.0,0.016286461117557237 -14786.0,0.016280836944485403 -14787.0,0.016275214713598694 -14788.0,0.01626959442422643 -14789.0,0.016263976075698156 -14790.0,0.016258359667343642 -14791.0,0.01625274519849289 -14792.0,0.016247132668476136 -14793.0,0.016241522076623847 -14794.0,0.016235913422266737 -14795.0,0.016230306704735697 -14796.0,0.01622470192336191 -14797.0,0.016219099077476762 -14798.0,0.016213498166411874 -14799.0,0.016207899189499102 -14800.0,0.016202302146070522 -14801.0,0.016196707035458457 -14802.0,0.01619111385699544 -14803.0,0.01618552261001427 -14804.0,0.01617993329384792 -14805.0,0.016174345907829634 -14806.0,0.016168760451292886 -14807.0,0.016163176923571367 -14808.0,0.016157595323999005 -14809.0,0.016152015651909952 -14810.0,0.016146437906638597 -14811.0,0.016140862087519574 -14812.0,0.01613528819388769 -14813.0,0.016129716225078042 -14814.0,0.016124146180425934 -14815.0,0.0161185780592669 -14816.0,0.016113011860936697 -14817.0,0.01610744758477133 -14818.0,0.01610188523010701 -14819.0,0.016096324796280197 -14820.0,0.01609076628262758 -14821.0,0.016085209688486046 -14822.0,0.016079655013192747 -14823.0,0.016074102256085045 -14824.0,0.016068551416500543 -14825.0,0.01606300249377706 -14826.0,0.01605745548725266 -14827.0,0.016051910396265617 -14828.0,0.016046367220154456 -14829.0,0.016040825958257895 -14830.0,0.01603528660991491 -14831.0,0.016029749174464696 -14832.0,0.016024213651246684 -14833.0,0.01601868003960052 -14834.0,0.016013148338866093 -14835.0,0.0160076185483835 -14836.0,0.0160020906674931 -14837.0,0.015996564695535426 -14838.0,0.01599104063185128 -14839.0,0.01598551847578169 -14840.0,0.0159799982266679 -14841.0,0.015974479883851377 -14842.0,0.015968963446673833 -14843.0,0.01596344891447719 -14844.0,0.01595793628660361 -14845.0,0.01595242556239549 -14846.0,0.01594691674119541 -14847.0,0.015941409822346223 -14848.0,0.015935904805190994 -14849.0,0.01593040168907301 -14850.0,0.0159249004733358 -14851.0,0.0159194011573231 -14852.0,0.015913903740378883 -14853.0,0.015908408221847366 -14854.0,0.015902914601072942 -14855.0,0.015897422877400275 -14856.0,0.015891933050174244 -14857.0,0.015886445118739954 -14858.0,0.015880959082442733 -14859.0,0.015875474940628135 -14860.0,0.015869992692641947 -14861.0,0.01586451233783017 -14862.0,0.01585903387553906 -14863.0,0.01585355730511504 -14864.0,0.015848082625904817 -14865.0,0.015842609837255297 -14866.0,0.015837138938513615 -14867.0,0.015831669929027136 -14868.0,0.015826202808143442 -14869.0,0.015820737575210353 -14870.0,0.015815274229575915 -14871.0,0.015809812770588367 -14872.0,0.015804353197596203 -14873.0,0.015798895509948143 -14874.0,0.015793439706993123 -14875.0,0.015787985788080307 -14876.0,0.015782533752559075 -14877.0,0.01577708359977905 -14878.0,0.01577163532909006 -14879.0,0.01576618893984218 -14880.0,0.015760744431385674 -14881.0,0.015755301803071057 -14882.0,0.01574986105424907 -14883.0,0.015744422184270673 -14884.0,0.01573898519248704 -14885.0,0.015733550078249586 -14886.0,0.015728116840909936 -14887.0,0.01572268547981996 -14888.0,0.01571725599433171 -14889.0,0.0157118283837975 -14890.0,0.015706402647569857 -14891.0,0.015700978785001526 -14892.0,0.015695556795445487 -14893.0,0.01569013667825493 -14894.0,0.015684718432783278 -14895.0,0.01567930205838417 -14896.0,0.01567388755441149 -14897.0,0.0156684749202193 -14898.0,0.015663064155161922 -14899.0,0.015657655258593892 -14900.0,0.01565224822986997 -14901.0,0.01564684306834514 -14902.0,0.015641439773374597 -14903.0,0.015636038344313773 -14904.0,0.01563063878051833 -14905.0,0.01562524108134411 -14906.0,0.015619845246147226 -14907.0,0.01561445127428399 -14908.0,0.015609059165110939 -14909.0,0.015603668917984837 -14910.0,0.015598280532262664 -14911.0,0.015592894007301628 -14912.0,0.015587509342459166 -14913.0,0.015582126537092901 -14914.0,0.01557674559056072 -14915.0,0.015571366502220711 -14916.0,0.01556598927143119 -14917.0,0.015560613897550693 -14918.0,0.015555240379937975 -14919.0,0.015549868717952017 -14920.0,0.015544498910952017 -14921.0,0.015539130958297412 -14922.0,0.015533764859347814 -14923.0,0.015528400613463103 -14924.0,0.015523038220003362 -14925.0,0.015517677678328899 -14926.0,0.015512318987800236 -14927.0,0.015506962147778124 -14928.0,0.015501607157623531 -14929.0,0.015496254016697656 -14930.0,0.015490902724361886 -14931.0,0.01548555327997786 -14932.0,0.015480205682907429 -14933.0,0.015474859932512667 -14934.0,0.01546951602815586 -14935.0,0.015464173969199524 -14936.0,0.015458833755006387 -14937.0,0.015453495384939403 -14938.0,0.015448158858361753 -14939.0,0.015442824174636806 -14940.0,0.015437491333128184 -14941.0,0.015432160333199718 -14942.0,0.015426831174215458 -14943.0,0.015421503855539675 -14944.0,0.01541617837653686 -14945.0,0.01541085473657172 -14946.0,0.015405532935009198 -14947.0,0.015400212971214416 -14948.0,0.015394894844552752 -14949.0,0.015389578554389794 -14950.0,0.015384264100091348 -14951.0,0.015378951481023436 -14952.0,0.015373640696552303 -14953.0,0.015368331746044413 -14954.0,0.015363024628866441 -14955.0,0.015357719344385307 -14956.0,0.015352415891968098 -14957.0,0.015347114270982166 -14958.0,0.015341814480795064 -14959.0,0.015336516520774569 -14960.0,0.01533122039028867 -14961.0,0.01532592608870558 -14962.0,0.015320633615393726 -14963.0,0.015315342969721767 -14964.0,0.01531005415105854 -14965.0,0.015304767158773146 -14966.0,0.015299481992234881 -14967.0,0.015294198650813263 -14968.0,0.01528891713387803 -14969.0,0.015283637440799134 -14970.0,0.015278359570946747 -14971.0,0.015273083523691257 -14972.0,0.015267809298403285 -14973.0,0.015262536894453624 -14974.0,0.015257266311213331 -14975.0,0.015251997548053665 -14976.0,0.015246730604346097 -14977.0,0.015241465479462323 -14978.0,0.015236202172774249 -14979.0,0.015230940683654002 -14980.0,0.01522568101147394 -14981.0,0.01522042315560659 -14982.0,0.015215167115424748 -14983.0,0.015209912890301405 -14984.0,0.015204660479609767 -14985.0,0.015199409882723263 -14986.0,0.015194161099015535 -14987.0,0.015188914127860439 -14988.0,0.015183668968632066 -14989.0,0.015178425620704677 -14990.0,0.015173184083452794 -14991.0,0.01516794435625114 -14992.0,0.015162706438474654 -14993.0,0.015157470329498489 -14994.0,0.015152236028698016 -14995.0,0.015147003535448822 -14996.0,0.015141772849126706 -14997.0,0.015136543969107703 -14998.0,0.015131316894768015 -14999.0,0.015126091625484107 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516203500_theo_VPR_VPR.png b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516203500_theo_VPR_VPR.png deleted file mode 100644 index 7a3d6cf..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516203500_theo_VPR_VPR.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516204000_theo_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516204000_theo_VPR_VPR.csv deleted file mode 100644 index bd13893..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516204000_theo_VPR_VPR.csv +++ /dev/null @@ -1,15008 +0,0 @@ -# Height Profile -# ============== -# -# Datatype (Unit) : normalized reflectivity (-) -# Fill value : -9999.0 -# Time : 2020-05-16 20:40:00 -# Sector specification: None -Altitude [m MSL],Znorm -0.0,1.0 -1.0,1.0 -2.0,1.0 -3.0,1.0 -4.0,1.0 -5.0,1.0 -6.0,1.0 -7.0,1.0 -8.0,1.0 -9.0,1.0 -10.0,1.0 -11.0,1.0 -12.0,1.0 -13.0,1.0 -14.0,1.0 -15.0,1.0 -16.0,1.0 -17.0,1.0 -18.0,1.0 -19.0,1.0 -20.0,1.0 -21.0,1.0 -22.0,1.0 -23.0,1.0 -24.0,1.0 -25.0,1.0 -26.0,1.0 -27.0,1.0 -28.0,1.0 -29.0,1.0 -30.0,1.0 -31.0,1.0 -32.0,1.0 -33.0,1.0 -34.0,1.0 -35.0,1.0 -36.0,1.0 -37.0,1.0 -38.0,1.0 -39.0,1.0 -40.0,1.0 -41.0,1.0 -42.0,1.0 -43.0,1.0 -44.0,1.0 -45.0,1.0 -46.0,1.0 -47.0,1.0 -48.0,1.0 -49.0,1.0 -50.0,1.0 -51.0,1.0 -52.0,1.0 -53.0,1.0 -54.0,1.0 -55.0,1.0 -56.0,1.0 -57.0,1.0 -58.0,1.0 -59.0,1.0 -60.0,1.0 -61.0,1.0 -62.0,1.0 -63.0,1.0 -64.0,1.0 -65.0,1.0 -66.0,1.0 -67.0,1.0 -68.0,1.0 -69.0,1.0 -70.0,1.0 -71.0,1.0 -72.0,1.0 -73.0,1.0 -74.0,1.0 -75.0,1.0 -76.0,1.0 -77.0,1.0 -78.0,1.0 -79.0,1.0 -80.0,1.0 -81.0,1.0 -82.0,1.0 -83.0,1.0 -84.0,1.0 -85.0,1.0 -86.0,1.0 -87.0,1.0 -88.0,1.0 -89.0,1.0 -90.0,1.0 -91.0,1.0 -92.0,1.0 -93.0,1.0 -94.0,1.0 -95.0,1.0 -96.0,1.0 -97.0,1.0 -98.0,1.0 -99.0,1.0 -100.0,1.0 -101.0,1.0 -102.0,1.0 -103.0,1.0 -104.0,1.0 -105.0,1.0 -106.0,1.0 -107.0,1.0 -108.0,1.0 -109.0,1.0 -110.0,1.0 -111.0,1.0 -112.0,1.0 -113.0,1.0 -114.0,1.0 -115.0,1.0 -116.0,1.0 -117.0,1.0 -118.0,1.0 -119.0,1.0 -120.0,1.0 -121.0,1.0 -122.0,1.0 -123.0,1.0 -124.0,1.0 -125.0,1.0 -126.0,1.0 -127.0,1.0 -128.0,1.0 -129.0,1.0 -130.0,1.0 -131.0,1.0 -132.0,1.0 -133.0,1.0 -134.0,1.0 -135.0,1.0 -136.0,1.0 -137.0,1.0 -138.0,1.0 -139.0,1.0 -140.0,1.0 -141.0,1.0 -142.0,1.0 -143.0,1.0 -144.0,1.0 -145.0,1.0 -146.0,1.0 -147.0,1.0 -148.0,1.0 -149.0,1.0 -150.0,1.0 -151.0,1.0 -152.0,1.0 -153.0,1.0 -154.0,1.0 -155.0,1.0 -156.0,1.0 -157.0,1.0 -158.0,1.0 -159.0,1.0 -160.0,1.0 -161.0,1.0 -162.0,1.0 -163.0,1.0 -164.0,1.0 -165.0,1.0 -166.0,1.0 -167.0,1.0 -168.0,1.0 -169.0,1.0 -170.0,1.0 -171.0,1.0 -172.0,1.0 -173.0,1.0 -174.0,1.0 -175.0,1.0 -176.0,1.0 -177.0,1.0 -178.0,1.0 -179.0,1.0 -180.0,1.0 -181.0,1.0 -182.0,1.0 -183.0,1.0 -184.0,1.0 -185.0,1.0 -186.0,1.0 -187.0,1.0 -188.0,1.0 -189.0,1.0 -190.0,1.0 -191.0,1.0 -192.0,1.0 -193.0,1.0 -194.0,1.0 -195.0,1.0 -196.0,1.0 -197.0,1.0 -198.0,1.0 -199.0,1.0 -200.0,1.0 -201.0,1.0 -202.0,1.0 -203.0,1.0 -204.0,1.0 -205.0,1.0 -206.0,1.0 -207.0,1.0 -208.0,1.0 -209.0,1.0 -210.0,1.0 -211.0,1.0 -212.0,1.0 -213.0,1.0 -214.0,1.0 -215.0,1.0 -216.0,1.0 -217.0,1.0 -218.0,1.0 -219.0,1.0 -220.0,1.0 -221.0,1.0 -222.0,1.0 -223.0,1.0 -224.0,1.0 -225.0,1.0 -226.0,1.0 -227.0,1.0 -228.0,1.0 -229.0,1.0 -230.0,1.0 -231.0,1.0 -232.0,1.0 -233.0,1.0 -234.0,1.0 -235.0,1.0 -236.0,1.0 -237.0,1.0 -238.0,1.0 -239.0,1.0 -240.0,1.0 -241.0,1.0 -242.0,1.0 -243.0,1.0 -244.0,1.0 -245.0,1.0 -246.0,1.0 -247.0,1.0 -248.0,1.0 -249.0,1.0 -250.0,1.0 -251.0,1.0 -252.0,1.0 -253.0,1.0 -254.0,1.0 -255.0,1.0 -256.0,1.0 -257.0,1.0 -258.0,1.0 -259.0,1.0 -260.0,1.0 -261.0,1.0 -262.0,1.0 -263.0,1.0 -264.0,1.0 -265.0,1.0 -266.0,1.0 -267.0,1.0 -268.0,1.0 -269.0,1.0 -270.0,1.0 -271.0,1.0 -272.0,1.0 -273.0,1.0 -274.0,1.0 -275.0,1.0 -276.0,1.0 -277.0,1.0 -278.0,1.0 -279.0,1.0 -280.0,1.0 -281.0,1.0 -282.0,1.0 -283.0,1.0 -284.0,1.0 -285.0,1.0 -286.0,1.0 -287.0,1.0 -288.0,1.0 -289.0,1.0 -290.0,1.0 -291.0,1.0 -292.0,1.0 -293.0,1.0 -294.0,1.0 -295.0,1.0 -296.0,1.0 -297.0,1.0 -298.0,1.0 -299.0,1.0 -300.0,1.0 -301.0,1.0 -302.0,1.0 -303.0,1.0 -304.0,1.0 -305.0,1.0 -306.0,1.0 -307.0,1.0 -308.0,1.0 -309.0,1.0 -310.0,1.0 -311.0,1.0 -312.0,1.0 -313.0,1.0 -314.0,1.0 -315.0,1.0 -316.0,1.0 -317.0,1.0 -318.0,1.0 -319.0,1.0 -320.0,1.0 -321.0,1.0 -322.0,1.0 -323.0,1.0 -324.0,1.0 -325.0,1.0 -326.0,1.0 -327.0,1.0 -328.0,1.0 -329.0,1.0 -330.0,1.0 -331.0,1.0 -332.0,1.0 -333.0,1.0 -334.0,1.0 -335.0,1.0 -336.0,1.0 -337.0,1.0 -338.0,1.0 -339.0,1.0 -340.0,1.0 -341.0,1.0 -342.0,1.0 -343.0,1.0 -344.0,1.0 -345.0,1.0 -346.0,1.0 -347.0,1.0 -348.0,1.0 -349.0,1.0 -350.0,1.0 -351.0,1.0 -352.0,1.0 -353.0,1.0 -354.0,1.0 -355.0,1.0 -356.0,1.0 -357.0,1.0 -358.0,1.0 -359.0,1.0 -360.0,1.0 -361.0,1.0 -362.0,1.0 -363.0,1.0 -364.0,1.0 -365.0,1.0 -366.0,1.0 -367.0,1.0 -368.0,1.0 -369.0,1.0 -370.0,1.0 -371.0,1.0 -372.0,1.0 -373.0,1.0 -374.0,1.0 -375.0,1.0 -376.0,1.0 -377.0,1.0 -378.0,1.0 -379.0,1.0 -380.0,1.0 -381.0,1.0 -382.0,1.0 -383.0,1.0 -384.0,1.0 -385.0,1.0 -386.0,1.0 -387.0,1.0 -388.0,1.0 -389.0,1.0 -390.0,1.0 -391.0,1.0 -392.0,1.0 -393.0,1.0 -394.0,1.0 -395.0,1.0 -396.0,1.0 -397.0,1.0 -398.0,1.0 -399.0,1.0 -400.0,1.0 -401.0,1.0 -402.0,1.0 -403.0,1.0 -404.0,1.0 -405.0,1.0 -406.0,1.0 -407.0,1.0 -408.0,1.0 -409.0,1.0 -410.0,1.0 -411.0,1.0 -412.0,1.0 -413.0,1.0 -414.0,1.0 -415.0,1.0 -416.0,1.0 -417.0,1.0 -418.0,1.0 -419.0,1.0 -420.0,1.0 -421.0,1.0 -422.0,1.0 -423.0,1.0 -424.0,1.0 -425.0,1.0 -426.0,1.0 -427.0,1.0 -428.0,1.0 -429.0,1.0 -430.0,1.0 -431.0,1.0 -432.0,1.0 -433.0,1.0 -434.0,1.0 -435.0,1.0 -436.0,1.0 -437.0,1.0 -438.0,1.0 -439.0,1.0 -440.0,1.0 -441.0,1.0 -442.0,1.0 -443.0,1.0 -444.0,1.0 -445.0,1.0 -446.0,1.0 -447.0,1.0 -448.0,1.0 -449.0,1.0 -450.0,1.0 -451.0,1.0 -452.0,1.0 -453.0,1.0 -454.0,1.0 -455.0,1.0 -456.0,1.0 -457.0,1.0 -458.0,1.0 -459.0,1.0 -460.0,1.0 -461.0,1.0 -462.0,1.0 -463.0,1.0 -464.0,1.0 -465.0,1.0 -466.0,1.0 -467.0,1.0 -468.0,1.0 -469.0,1.0 -470.0,1.0 -471.0,1.0 -472.0,1.0 -473.0,1.0 -474.0,1.0 -475.0,1.0 -476.0,1.0 -477.0,1.0 -478.0,1.0 -479.0,1.0 -480.0,1.0 -481.0,1.0 -482.0,1.0 -483.0,1.0 -484.0,1.0 -485.0,1.0 -486.0,1.0 -487.0,1.0 -488.0,1.0 -489.0,1.0 -490.0,1.0 -491.0,1.0 -492.0,1.0 -493.0,1.0 -494.0,1.0 -495.0,1.0 -496.0,1.0 -497.0,1.0 -498.0,1.0 -499.0,1.0 -500.0,1.0 -501.0,1.0 -502.0,1.0 -503.0,1.0 -504.0,1.0 -505.0,1.0 -506.0,1.0 -507.0,1.0 -508.0,1.0 -509.0,1.0 -510.0,1.0 -511.0,1.0 -512.0,1.0 -513.0,1.0 -514.0,1.0 -515.0,1.0 -516.0,1.0 -517.0,1.0 -518.0,1.0 -519.0,1.0 -520.0,1.0 -521.0,1.0 -522.0,1.0 -523.0,1.0 -524.0,1.0 -525.0,1.0 -526.0,1.0 -527.0,1.0 -528.0,1.0 -529.0,1.0 -530.0,1.0 -531.0,1.0 -532.0,1.0 -533.0,1.0 -534.0,1.0 -535.0,1.0 -536.0,1.0 -537.0,1.0 -538.0,1.0 -539.0,1.0 -540.0,1.0 -541.0,1.0 -542.0,1.0 -543.0,1.0 -544.0,1.0 -545.0,1.0 -546.0,1.0 -547.0,1.0 -548.0,1.0 -549.0,1.0 -550.0,1.0 -551.0,1.0 -552.0,1.0 -553.0,1.0 -554.0,1.0 -555.0,1.0 -556.0,1.0 -557.0,1.0 -558.0,1.0 -559.0,1.0 -560.0,1.0 -561.0,1.0 -562.0,1.0 -563.0,1.0 -564.0,1.0 -565.0,1.0 -566.0,1.0 -567.0,1.0 -568.0,1.0 -569.0,1.0 -570.0,1.0 -571.0,1.0 -572.0,1.0 -573.0,1.0 -574.0,1.0 -575.0,1.0 -576.0,1.0 -577.0,1.0 -578.0,1.0 -579.0,1.0 -580.0,1.0 -581.0,1.0 -582.0,1.0 -583.0,1.0 -584.0,1.0 -585.0,1.0 -586.0,1.0 -587.0,1.0 -588.0,1.0 -589.0,1.0 -590.0,1.0 -591.0,1.0 -592.0,1.0 -593.0,1.0 -594.0,1.0 -595.0,1.0 -596.0,1.0 -597.0,1.0 -598.0,1.0 -599.0,1.0 -600.0,1.0 -601.0,1.0 -602.0,1.0 -603.0,1.0 -604.0,1.0 -605.0,1.0 -606.0,1.0 -607.0,1.0 -608.0,1.0 -609.0,1.0 -610.0,1.0 -611.0,1.0 -612.0,1.0 -613.0,1.0 -614.0,1.0 -615.0,1.0 -616.0,1.0 -617.0,1.0 -618.0,1.0 -619.0,1.0 -620.0,1.0 -621.0,1.0 -622.0,1.0 -623.0,1.0 -624.0,1.0 -625.0,1.0 -626.0,1.0 -627.0,1.0 -628.0,1.0 -629.0,1.0 -630.0,1.0 -631.0,1.0 -632.0,1.0 -633.0,1.0 -634.0,1.0 -635.0,1.0 -636.0,1.0 -637.0,1.0 -638.0,1.0 -639.0,1.0 -640.0,1.0 -641.0,1.0 -642.0,1.0 -643.0,1.0 -644.0,1.0 -645.0,1.0 -646.0,1.0 -647.0,1.0 -648.0,1.0 -649.0,1.0 -650.0,1.0 -651.0,1.0 -652.0,1.0 -653.0,1.0 -654.0,1.0 -655.0,1.0 -656.0,1.0 -657.0,1.0 -658.0,1.0 -659.0,1.0 -660.0,1.0 -661.0,1.0 -662.0,1.0 -663.0,1.0 -664.0,1.0 -665.0,1.0 -666.0,1.0 -667.0,1.0 -668.0,1.0 -669.0,1.0 -670.0,1.0 -671.0,1.0 -672.0,1.0 -673.0,1.0 -674.0,1.0 -675.0,1.0 -676.0,1.0 -677.0,1.0 -678.0,1.0 -679.0,1.0 -680.0,1.0 -681.0,1.0 -682.0,1.0 -683.0,1.0 -684.0,1.0 -685.0,1.0 -686.0,1.0 -687.0,1.0 -688.0,1.0 -689.0,1.0 -690.0,1.0 -691.0,1.0 -692.0,1.0 -693.0,1.0 -694.0,1.0 -695.0,1.0 -696.0,1.0 -697.0,1.0 -698.0,1.0 -699.0,1.0 -700.0,1.0 -701.0,1.0 -702.0,1.0 -703.0,1.0 -704.0,1.0 -705.0,1.0 -706.0,1.0 -707.0,1.0 -708.0,1.0 -709.0,1.0 -710.0,1.0 -711.0,1.0 -712.0,1.0 -713.0,1.0 -714.0,1.0 -715.0,1.0 -716.0,1.0 -717.0,1.0 -718.0,1.0 -719.0,1.0 -720.0,1.0 -721.0,1.0 -722.0,1.0 -723.0,1.0 -724.0,1.0 -725.0,1.0 -726.0,1.0 -727.0,1.0 -728.0,1.0 -729.0,1.0 -730.0,1.0 -731.0,1.0 -732.0,1.0 -733.0,1.0 -734.0,1.0 -735.0,1.0 -736.0,1.0 -737.0,1.0 -738.0,1.0 -739.0,1.0 -740.0,1.0 -741.0,1.0 -742.0,1.0 -743.0,1.0 -744.0,1.0 -745.0,1.0 -746.0,1.0 -747.0,1.0 -748.0,1.0 -749.0,1.0 -750.0,1.0 -751.0,1.0 -752.0,1.0 -753.0,1.0 -754.0,1.0 -755.0,1.0 -756.0,1.0 -757.0,1.0 -758.0,1.0 -759.0,1.0 -760.0,1.0 -761.0,1.0 -762.0,1.0 -763.0,1.0 -764.0,1.0 -765.0,1.0 -766.0,1.0 -767.0,1.0 -768.0,1.0 -769.0,1.0 -770.0,1.0 -771.0,1.0 -772.0,1.0 -773.0,1.0 -774.0,1.0 -775.0,1.0 -776.0,1.0 -777.0,1.0 -778.0,1.0 -779.0,1.0 -780.0,1.0 -781.0,1.0 -782.0,1.0 -783.0,1.0 -784.0,1.0 -785.0,1.0 -786.0,1.0 -787.0,1.0 -788.0,1.0 -789.0,1.0 -790.0,1.0 -791.0,1.0 -792.0,1.0 -793.0,1.0 -794.0,1.0 -795.0,1.0 -796.0,1.0 -797.0,1.0 -798.0,1.0 -799.0,1.0 -800.0,1.0 -801.0,1.0 -802.0,1.0 -803.0,1.0 -804.0,1.0 -805.0,1.0 -806.0,1.0 -807.0,1.0 -808.0,1.0 -809.0,1.0 -810.0,1.0 -811.0,1.0 -812.0,1.0 -813.0,1.0 -814.0,1.0 -815.0,1.0 -816.0,1.0 -817.0,1.0 -818.0,1.0 -819.0,1.0 -820.0,1.0 -821.0,1.0 -822.0,1.0 -823.0,1.0 -824.0,1.0 -825.0,1.0 -826.0,1.0 -827.0,1.0 -828.0,1.0 -829.0,1.0 -830.0,1.0 -831.0,1.0 -832.0,1.0 -833.0,1.0 -834.0,1.0 -835.0,1.0 -836.0,1.0 -837.0,1.0 -838.0,1.0 -839.0,1.0 -840.0,1.0 -841.0,1.0 -842.0,1.0 -843.0,1.0 -844.0,1.0 -845.0,1.0 -846.0,1.0 -847.0,1.0 -848.0,1.0 -849.0,1.0 -850.0,1.0 -851.0,1.0 -852.0,1.0 -853.0,1.0 -854.0,1.0 -855.0,1.0 -856.0,1.0 -857.0,1.0 -858.0,1.0 -859.0,1.0 -860.0,1.0 -861.0,1.0 -862.0,1.0 -863.0,1.0 -864.0,1.0 -865.0,1.0 -866.0,1.0 -867.0,1.0 -868.0,1.0 -869.0,1.0 -870.0,1.0 -871.0,1.0 -872.0,1.0 -873.0,1.0 -874.0,1.0 -875.0,1.0 -876.0,1.0 -877.0,1.0 -878.0,1.0 -879.0,1.0 -880.0,1.0 -881.0,1.0 -882.0,1.0 -883.0,1.0 -884.0,1.0 -885.0,1.0 -886.0,1.0 -887.0,1.0 -888.0,1.0 -889.0,1.0 -890.0,1.0 -891.0,1.0 -892.0,1.0 -893.0,1.0 -894.0,1.0 -895.0,1.0 -896.0,1.0 -897.0,1.0 -898.0,1.0 -899.0,1.0 -900.0,1.0 -901.0,1.0 -902.0,1.0 -903.0,1.0 -904.0,1.0 -905.0,1.0 -906.0,1.0 -907.0,1.0 -908.0,1.0 -909.0,1.0 -910.0,1.0 -911.0,1.0 -912.0,1.0 -913.0,1.0 -914.0,1.0 -915.0,1.0 -916.0,1.0 -917.0,1.0 -918.0,1.0 -919.0,1.0 -920.0,1.0 -921.0,1.0 -922.0,1.0 -923.0,1.0 -924.0,1.0 -925.0,1.0 -926.0,1.0 -927.0,1.0 -928.0,1.0 -929.0,1.0 -930.0,1.0 -931.0,1.0 -932.0,1.0 -933.0,1.0 -934.0,1.0 -935.0,1.0 -936.0,1.0 -937.0,1.0 -938.0,1.0 -939.0,1.0 -940.0,1.0 -941.0,1.0 -942.0,1.0 -943.0,1.0 -944.0,1.0 -945.0,1.0 -946.0,1.0 -947.0,1.0 -948.0,1.0 -949.0,1.0 -950.0,1.0 -951.0,1.0 -952.0,1.0 -953.0,1.0 -954.0,1.0 -955.0,1.0 -956.0,1.0 -957.0,1.0 -958.0,1.0 -959.0,1.0 -960.0,1.0 -961.0,1.0 -962.0,1.0 -963.0,1.0 -964.0,1.0 -965.0,1.0 -966.0,1.0 -967.0,1.0 -968.0,1.0 -969.0,1.0 -970.0,1.0 -971.0,1.0 -972.0,1.0 -973.0,1.0 -974.0,1.0 -975.0,1.0 -976.0,1.0 -977.0,1.0 -978.0,1.0 -979.0,1.0 -980.0,1.0 -981.0,1.0 -982.0,1.0 -983.0,1.0 -984.0,1.0 -985.0,1.0 -986.0,1.0 -987.0,1.0 -988.0,1.0 -989.0,1.0 -990.0,1.0 -991.0,1.0 -992.0,1.0 -993.0,1.0 -994.0,1.0 -995.0,1.0 -996.0,1.0 -997.0,1.0 -998.0,1.0 -999.0,1.0 -1000.0,1.0 -1001.0,1.0 -1002.0,1.0 -1003.0,1.0 -1004.0,1.0 -1005.0,1.0 -1006.0,1.0 -1007.0,1.0 -1008.0,1.0 -1009.0,1.0 -1010.0,1.0 -1011.0,1.0 -1012.0,1.0 -1013.0,1.0 -1014.0,1.0 -1015.0,1.0 -1016.0,1.0 -1017.0,1.0 -1018.0,1.0 -1019.0,1.0 -1020.0,1.0 -1021.0,1.0 -1022.0,1.0 -1023.0,1.0 -1024.0,1.0 -1025.0,1.0 -1026.0,1.0 -1027.0,1.0 -1028.0,1.0 -1029.0,1.0 -1030.0,1.0 -1031.0,1.0 -1032.0,1.0 -1033.0,1.0 -1034.0,1.0 -1035.0,1.0 -1036.0,1.0 -1037.0,1.0 -1038.0,1.0 -1039.0,1.0 -1040.0,1.0 -1041.0,1.0 -1042.0,1.0 -1043.0,1.0 -1044.0,1.0 -1045.0,1.0 -1046.0,1.0 -1047.0,1.0 -1048.0,1.0 -1049.0,1.0 -1050.0,1.0 -1051.0,1.0 -1052.0,1.0 -1053.0,1.0 -1054.0,1.0 -1055.0,1.0 -1056.0,1.0 -1057.0,1.0 -1058.0,1.0 -1059.0,1.0 -1060.0,1.0 -1061.0,1.0 -1062.0,1.0 -1063.0,1.0 -1064.0,1.0 -1065.0,1.0 -1066.0,1.0 -1067.0,1.0 -1068.0,1.0 -1069.0,1.0 -1070.0,1.0 -1071.0,1.0 -1072.0,1.0 -1073.0,1.0 -1074.0,1.0 -1075.0,1.0 -1076.0,1.0 -1077.0,1.0 -1078.0,1.0 -1079.0,1.0 -1080.0,1.0 -1081.0,1.0 -1082.0,1.0 -1083.0,1.0 -1084.0,1.0 -1085.0,1.0 -1086.0,1.0 -1087.0,1.0 -1088.0,1.0 -1089.0,1.0 -1090.0,1.0 -1091.0,1.0 -1092.0,1.0 -1093.0,1.0 -1094.0,1.0 -1095.0,1.0 -1096.0,1.0 -1097.0,1.0 -1098.0,1.0 -1099.0,1.0 -1100.0,1.0 -1101.0,1.0 -1102.0,1.0 -1103.0,1.0 -1104.0,1.0 -1105.0,1.0 -1106.0,1.0 -1107.0,1.0 -1108.0,1.0 -1109.0,1.0 -1110.0,1.0 -1111.0,1.0 -1112.0,1.0 -1113.0,1.0 -1114.0,1.0 -1115.0,1.0 -1116.0,1.0 -1117.0,1.0 -1118.0,1.0 -1119.0,1.0 -1120.0,1.0 -1121.0,1.0 -1122.0,1.0 -1123.0,1.0 -1124.0,1.0 -1125.0,1.0 -1126.0,1.0 -1127.0,1.0 -1128.0,1.0 -1129.0,1.0 -1130.0,1.0 -1131.0,1.0 -1132.0,1.0 -1133.0,1.0 -1134.0,1.0 -1135.0,1.0 -1136.0,1.0 -1137.0,1.0 -1138.0,1.0 -1139.0,1.0 -1140.0,1.0 -1141.0,1.0 -1142.0,1.0 -1143.0,1.0 -1144.0,1.0 -1145.0,1.0 -1146.0,1.0 -1147.0,1.0 -1148.0,1.0 -1149.0,1.0 -1150.0,1.0 -1151.0,1.0 -1152.0,1.0 -1153.0,1.0 -1154.0,1.0 -1155.0,1.0 -1156.0,1.0 -1157.0,1.0 -1158.0,1.0 -1159.0,1.0 -1160.0,1.0 -1161.0,1.0 -1162.0,1.0 -1163.0,1.0 -1164.0,1.0 -1165.0,1.0 -1166.0,1.0 -1167.0,1.0 -1168.0,1.0 -1169.0,1.0 -1170.0,1.0 -1171.0,1.0 -1172.0,1.0 -1173.0,1.0 -1174.0,1.0 -1175.0,1.0 -1176.0,1.0 -1177.0,1.0 -1178.0,1.0 -1179.0,1.0 -1180.0,1.0 -1181.0,1.0 -1182.0,1.0 -1183.0,1.0 -1184.0,1.0 -1185.0,1.0 -1186.0,1.0 -1187.0,1.0 -1188.0,1.0 -1189.0,1.0 -1190.0,1.0 -1191.0,1.0 -1192.0,1.0 -1193.0,1.0 -1194.0,1.0 -1195.0,1.0 -1196.0,1.0 -1197.0,1.0 -1198.0,1.0 -1199.0,1.0 -1200.0,1.0 -1201.0,1.0 -1202.0,1.0 -1203.0,1.0 -1204.0,1.0 -1205.0,1.0 -1206.0,1.0 -1207.0,1.0 -1208.0,1.0 -1209.0,1.0 -1210.0,1.0 -1211.0,1.0 -1212.0,1.0 -1213.0,1.0 -1214.0,1.0 -1215.0,1.0 -1216.0,1.0 -1217.0,1.0 -1218.0,1.0 -1219.0,1.0 -1220.0,1.0 -1221.0,1.0 -1222.0,1.0 -1223.0,1.0 -1224.0,1.0 -1225.0,1.0 -1226.0,1.0 -1227.0,1.0 -1228.0,1.0 -1229.0,1.0 -1230.0,1.0 -1231.0,1.0 -1232.0,1.0 -1233.0,1.0 -1234.0,1.0 -1235.0,1.0 -1236.0,1.0 -1237.0,1.0 -1238.0,1.0 -1239.0,1.0 -1240.0,1.0 -1241.0,1.0 -1242.0,1.0 -1243.0,1.0 -1244.0,1.0 -1245.0,1.0 -1246.0,1.0 -1247.0,1.0 -1248.0,1.0 -1249.0,1.0 -1250.0,1.0 -1251.0,1.0 -1252.0,1.0 -1253.0,1.0 -1254.0,1.0 -1255.0,1.0 -1256.0,1.0 -1257.0,1.0 -1258.0,1.0 -1259.0,1.0 -1260.0,1.0 -1261.0,1.0 -1262.0,1.0 -1263.0,1.0 -1264.0,1.0 -1265.0,1.0 -1266.0,1.0 -1267.0,1.0 -1268.0,1.0 -1269.0,1.0 -1270.0,1.0 -1271.0,1.0 -1272.0,1.0 -1273.0,1.0 -1274.0,1.0 -1275.0,1.0 -1276.0,1.0 -1277.0,1.0 -1278.0,1.0 -1279.0,1.0 -1280.0,1.0 -1281.0,1.0 -1282.0,1.0 -1283.0,1.0 -1284.0,1.0 -1285.0,1.0 -1286.0,1.0 -1287.0,1.0 -1288.0,1.0 -1289.0,1.0 -1290.0,1.0 -1291.0,1.0 -1292.0,1.0 -1293.0,1.0 -1294.0,1.0 -1295.0,1.0 -1296.0,1.0 -1297.0,1.0 -1298.0,1.0 -1299.0,1.0 -1300.0,1.0 -1301.0,1.0 -1302.0,1.0 -1303.0,1.0 -1304.0,1.0 -1305.0,1.0 -1306.0,1.0 -1307.0,1.0 -1308.0,1.0 -1309.0,1.0 -1310.0,1.0 -1311.0,1.0 -1312.0,1.0 -1313.0,1.0 -1314.0,1.0 -1315.0,1.0 -1316.0,1.0 -1317.0,1.0 -1318.0,1.0 -1319.0,1.0 -1320.0,1.0 -1321.0,1.0 -1322.0,1.0 -1323.0,1.0 -1324.0,1.0 -1325.0,1.0 -1326.0,1.0 -1327.0,1.0 -1328.0,1.0 -1329.0,1.0 -1330.0,1.0 -1331.0,1.0 -1332.0,1.0 -1333.0,1.0 -1334.0,1.0 -1335.0,1.0 -1336.0,1.0 -1337.0,1.0 -1338.0,1.0 -1339.0,1.0 -1340.0,1.0 -1341.0,1.0 -1342.0,1.0 -1343.0,1.0 -1344.0,1.0 -1345.0,1.0 -1346.0,1.0 -1347.0,1.0 -1348.0,1.0 -1349.0,1.0 -1350.0,1.0 -1351.0,1.0 -1352.0,1.0 -1353.0,1.0 -1354.0,1.0 -1355.0,1.0 -1356.0,1.0 -1357.0,1.0 -1358.0,1.0 -1359.0,1.0 -1360.0,1.0 -1361.0,1.0 -1362.0,1.0 -1363.0,1.0 -1364.0,1.0 -1365.0,1.0 -1366.0,1.0 -1367.0,1.0 -1368.0,1.0 -1369.0,1.0 -1370.0,1.0 -1371.0,1.0 -1372.0,1.0 -1373.0,1.0 -1374.0,1.0 -1375.0,1.0 -1376.0,1.0 -1377.0,1.0 -1378.0,1.0 -1379.0,1.0 -1380.0,1.0 -1381.0,1.0 -1382.0,1.0 -1383.0,1.0 -1384.0,1.0 -1385.0,1.0 -1386.0,1.0 -1387.0,1.0 -1388.0,1.0 -1389.0,1.0 -1390.0,1.0 -1391.0,1.0 -1392.0,1.0 -1393.0,1.0 -1394.0,1.0 -1395.0,1.0 -1396.0,1.0 -1397.0,1.0 -1398.0,1.0 -1399.0,1.0 -1400.0,1.0 -1401.0,1.0 -1402.0,1.0 -1403.0,1.0 -1404.0,1.0 -1405.0,1.0 -1406.0,1.0 -1407.0,1.0 -1408.0,1.0 -1409.0,1.0 -1410.0,1.0 -1411.0,1.0 -1412.0,1.0 -1413.0,1.0 -1414.0,1.0 -1415.0,1.0 -1416.0,1.0 -1417.0,1.0 -1418.0,1.0 -1419.0,1.0 -1420.0,1.0 -1421.0,1.0 -1422.0,1.0 -1423.0,1.0 -1424.0,1.0 -1425.0,1.0 -1426.0,1.0 -1427.0,1.0 -1428.0,1.0 -1429.0,1.0 -1430.0,1.0 -1431.0,1.0 -1432.0,1.0 -1433.0,1.0 -1434.0,1.0 -1435.0,1.0 -1436.0,1.0 -1437.0,1.0 -1438.0,1.0 -1439.0,1.0 -1440.0,1.0 -1441.0,1.0 -1442.0,1.0 -1443.0,1.0 -1444.0,1.0 -1445.0,1.0 -1446.0,1.0 -1447.0,1.0 -1448.0,1.0 -1449.0,1.0 -1450.0,1.0 -1451.0,1.0 -1452.0,1.0 -1453.0,1.0 -1454.0,1.0 -1455.0,1.0 -1456.0,1.0 -1457.0,1.0 -1458.0,1.0 -1459.0,1.0 -1460.0,1.0 -1461.0,1.0 -1462.0,1.0 -1463.0,1.0 -1464.0,1.0 -1465.0,1.0 -1466.0,1.0 -1467.0,1.0 -1468.0,1.0 -1469.0,1.0 -1470.0,1.0 -1471.0,1.0 -1472.0,1.0 -1473.0,1.0 -1474.0,1.0 -1475.0,1.0 -1476.0,1.0 -1477.0,1.0 -1478.0,1.0 -1479.0,1.0 -1480.0,1.0 -1481.0,1.0 -1482.0,1.0 -1483.0,1.0 -1484.0,1.0 -1485.0,1.0 -1486.0,1.0 -1487.0,1.0 -1488.0,1.0 -1489.0,1.0 -1490.0,1.0 -1491.0,1.0 -1492.0,1.0 -1493.0,1.0 -1494.0,1.0 -1495.0,1.0 -1496.0,1.0 -1497.0,1.0 -1498.0,1.0 -1499.0,1.0 -1500.0,1.0 -1501.0,1.0 -1502.0,1.0 -1503.0,1.0 -1504.0,1.0 -1505.0,1.0 -1506.0,1.0 -1507.0,1.0 -1508.0,1.0 -1509.0,1.0 -1510.0,1.0 -1511.0,1.0 -1512.0,1.0 -1513.0,1.0 -1514.0,1.0 -1515.0,1.0 -1516.0,1.0 -1517.0,1.0 -1518.0,1.0 -1519.0,1.0 -1520.0,1.0 -1521.0,1.0 -1522.0,1.0 -1523.0,1.0 -1524.0,1.0 -1525.0,1.0 -1526.0,1.0 -1527.0,1.0 -1528.0,1.0 -1529.0,1.0 -1530.0,1.0 -1531.0,1.0 -1532.0,1.0 -1533.0,1.0 -1534.0,1.0 -1535.0,1.0 -1536.0,1.0 -1537.0,1.0 -1538.0,1.0 -1539.0,1.0 -1540.0,1.0 -1541.0,1.0 -1542.0,1.0 -1543.0,1.0 -1544.0,1.0 -1545.0,1.0 -1546.0,1.0 -1547.0,1.0 -1548.0,1.0 -1549.0,1.0 -1550.0,1.0 -1551.0,1.0 -1552.0,1.0 -1553.0,1.0 -1554.0,1.0 -1555.0,1.0 -1556.0,1.0 -1557.0,1.0 -1558.0,1.0 -1559.0,1.0 -1560.0,1.0 -1561.0,1.0 -1562.0,1.0 -1563.0,1.0 -1564.0,1.0 -1565.0,1.0 -1566.0,1.0 -1567.0,1.0 -1568.0,1.0 -1569.0,1.0 -1570.0,1.0 -1571.0,1.0 -1572.0,1.0 -1573.0,1.0 -1574.0,1.0 -1575.0,1.0 -1576.0,1.0 -1577.0,1.0 -1578.0,1.0 -1579.0,1.0 -1580.0,1.0 -1581.0,1.0 -1582.0,1.0 -1583.0,1.0 -1584.0,1.0 -1585.0,1.0 -1586.0,1.0 -1587.0,1.0 -1588.0,1.0 -1589.0,1.0 -1590.0,1.0 -1591.0,1.0 -1592.0,1.0 -1593.0,1.0 -1594.0,1.0 -1595.0,1.0 -1596.0,1.0 -1597.0,1.0 -1598.0,1.0 -1599.0,1.0 -1600.0,1.0 -1601.0,1.0 -1602.0,1.0 -1603.0,1.0 -1604.0,1.0 -1605.0,1.0 -1606.0,1.0 -1607.0,1.0 -1608.0,1.0 -1609.0,1.0 -1610.0,1.0 -1611.0,1.0 -1612.0,1.0 -1613.0,1.0 -1614.0,1.0 -1615.0,1.0 -1616.0,1.0 -1617.0,1.0 -1618.0,1.0 -1619.0,1.0 -1620.0,1.0 -1621.0,1.0 -1622.0,1.0 -1623.0,1.0 -1624.0,1.0 -1625.0,1.0 -1626.0,1.0 -1627.0,1.0 -1628.0,1.0 -1629.0,1.0 -1630.0,1.0 -1631.0,1.0 -1632.0,1.0 -1633.0,1.0 -1634.0,1.0 -1635.0,1.0 -1636.0,1.0 -1637.0,1.0 -1638.0,1.0 -1639.0,1.0 -1640.0,1.0 -1641.0,1.0 -1642.0,1.0 -1643.0,1.0 -1644.0,1.0 -1645.0,1.0 -1646.0,1.0 -1647.0,1.0 -1648.0,1.0 -1649.0,1.0 -1650.0,1.0 -1651.0,1.0 -1652.0,1.0 -1653.0,1.0 -1654.0,1.0 -1655.0,1.0 -1656.0,1.0 -1657.0,1.0 -1658.0,1.0 -1659.0,1.0 -1660.0,1.0 -1661.0,1.0 -1662.0,1.0 -1663.0,1.0 -1664.0,1.0 -1665.0,1.0 -1666.0,1.0 -1667.0,1.0 -1668.0,1.0 -1669.0,1.0 -1670.0,1.0 -1671.0,1.0 -1672.0,1.0 -1673.0,1.0 -1674.0,1.0 -1675.0,1.0 -1676.0,1.0 -1677.0,1.0 -1678.0,1.0 -1679.0,1.0 -1680.0,1.0 -1681.0,1.0 -1682.0,1.0 -1683.0,1.0 -1684.0,1.0 -1685.0,1.0 -1686.0,1.0 -1687.0,1.0 -1688.0,1.0 -1689.0,1.0 -1690.0,1.0 -1691.0,1.0 -1692.0,1.0 -1693.0,1.0 -1694.0,1.0 -1695.0,1.0 -1696.0,1.0 -1697.0,1.0 -1698.0,1.0 -1699.0,1.0 -1700.0,1.0 -1701.0,1.0 -1702.0,1.0 -1703.0,1.0 -1704.0,1.0 -1705.0,1.0 -1706.0,1.0 -1707.0,1.0 -1708.0,1.0 -1709.0,1.0 -1710.0,1.0 -1711.0,1.0 -1712.0,1.0 -1713.0,1.0 -1714.0,1.0 -1715.0,1.0 -1716.0,1.0 -1717.0,1.0 -1718.0,1.0 -1719.0,1.0 -1720.0,1.0 -1721.0,1.0 -1722.0,1.0 -1723.0,1.0 -1724.0,1.0 -1725.0,1.0 -1726.0,1.0 -1727.0,1.0 -1728.0,1.0 -1729.0,1.0 -1730.0,1.0 -1731.0,1.0 -1732.0,1.0 -1733.0,1.0 -1734.0,1.0 -1735.0,1.0 -1736.0,1.0 -1737.0,1.0 -1738.0,1.0 -1739.0,1.0 -1740.0,1.0 -1741.0,1.0 -1742.0,1.0 -1743.0,1.0 -1744.0,1.0 -1745.0,1.0 -1746.0,1.0 -1747.0,1.0 -1748.0,1.0 -1749.0,1.0 -1750.0,1.0 -1751.0,1.0 -1752.0,1.0 -1753.0,1.0 -1754.0,1.0 -1755.0,1.0 -1756.0,1.0 -1757.0,1.0 -1758.0,1.0 -1759.0,1.0 -1760.0,1.0 -1761.0,1.0 -1762.0,1.0 -1763.0,1.0 -1764.0,1.0 -1765.0,1.0 -1766.0,1.0 -1767.0,1.0 -1768.0,1.0 -1769.0,1.0 -1770.0,1.0 -1771.0,1.0 -1772.0,1.0 -1773.0,1.0 -1774.0,1.0 -1775.0,1.0 -1776.0,1.0 -1777.0,1.0 -1778.0,1.0 -1779.0,1.0 -1780.0,1.0 -1781.0,1.0 -1782.0,1.0 -1783.0,1.0 -1784.0,1.0 -1785.0,1.0 -1786.0,1.0 -1787.0,1.0 -1788.0,1.0 -1789.0,1.0 -1790.0,1.0 -1791.0,1.0 -1792.0,1.0 -1793.0,1.0 -1794.0,1.0 -1795.0,1.0 -1796.0,1.0 -1797.0,1.0 -1798.0,1.0 -1799.0,1.0 -1800.0,1.0 -1801.0,1.0 -1802.0,1.0 -1803.0,1.0 -1804.0,1.0 -1805.0,1.0 -1806.0,1.0 -1807.0,1.0 -1808.0,1.0 -1809.0,1.0 -1810.0,1.0 -1811.0,1.0 -1812.0,1.0 -1813.0,1.0 -1814.0,1.0 -1815.0,1.0 -1816.0,1.0 -1817.0,1.0 -1818.0,1.0 -1819.0,1.0 -1820.0,1.0 -1821.0,1.0 -1822.0,1.0 -1823.0,1.0 -1824.0,1.0 -1825.0,1.0 -1826.0,1.0 -1827.0,1.0 -1828.0,1.0 -1829.0,1.0 -1830.0,1.0 -1831.0,1.0 -1832.0,1.0 -1833.0,1.0 -1834.0,1.0 -1835.0,1.0 -1836.0,1.0 -1837.0,1.0 -1838.0,1.0 -1839.0,1.0 -1840.0,1.0 -1841.0,1.0 -1842.0,1.0 -1843.0,1.0 -1844.0,1.0 -1845.0,1.0 -1846.0,1.0 -1847.0,1.0 -1848.0,1.0 -1849.0,1.0 -1850.0,1.0 -1851.0,1.0 -1852.0,1.0 -1853.0,1.0 -1854.0,1.0 -1855.0,1.0 -1856.0,1.0 -1857.0,1.0 -1858.0,1.0 -1859.0,1.0 -1860.0,1.0 -1861.0,1.0 -1862.0,1.0 -1863.0,1.0 -1864.0,1.0 -1865.0,1.0 -1866.0,1.0 -1867.0,1.0 -1868.0,1.0 -1869.0,1.0 -1870.0,1.0 -1871.0,1.0 -1872.0,1.0 -1873.0,1.0 -1874.0,1.0 -1875.0,1.0 -1876.0,1.0 -1877.0,1.0 -1878.0,1.0 -1879.0,1.0 -1880.0,1.0 -1881.0,1.0 -1882.0,1.0 -1883.0,1.0 -1884.0,1.0 -1885.0,1.0 -1886.0,1.0 -1887.0,1.0 -1888.0,1.0 -1889.0,1.0 -1890.0,1.0 -1891.0,1.0 -1892.0,1.0 -1893.0,1.0 -1894.0,1.0 -1895.0,1.0 -1896.0,1.0 -1897.0,1.0 -1898.0,1.0 -1899.0,1.0 -1900.0,1.0 -1901.0,1.0 -1902.0,1.0 -1903.0,1.0 -1904.0,1.0 -1905.0,1.0 -1906.0,1.0 -1907.0,1.0 -1908.0,1.0 -1909.0,1.0 -1910.0,1.0 -1911.0,1.0 -1912.0,1.0 -1913.0,1.0 -1914.0,1.0 -1915.0,1.0 -1916.0,1.0 -1917.0,1.0 -1918.0,1.0 -1919.0,1.0 -1920.0,1.0 -1921.0,1.0 -1922.0,1.0 -1923.0,1.0 -1924.0,1.0 -1925.0,1.0 -1926.0,1.0 -1927.0,1.0 -1928.0,1.0 -1929.0,1.0 -1930.0,1.0 -1931.0,1.0 -1932.0,1.0 -1933.0,1.0 -1934.0,1.0 -1935.0,1.0 -1936.0,1.0 -1937.0,1.0 -1938.0,1.0 -1939.0,1.0 -1940.0,1.0 -1941.0,1.0 -1942.0,1.0 -1943.0,1.0 -1944.0,1.0 -1945.0,1.0 -1946.0,1.0 -1947.0,1.0 -1948.0,1.0 -1949.0,1.0 -1950.0,1.0 -1951.0,1.0 -1952.0,1.0 -1953.0,1.0 -1954.0,1.0 -1955.0,1.0 -1956.0,1.0 -1957.0,1.0 -1958.0,1.0 -1959.0,1.0 -1960.0,1.0 -1961.0,1.0 -1962.0,1.0 -1963.0,1.0 -1964.0,1.0 -1965.0,1.0 -1966.0,1.0 -1967.0,1.0 -1968.0,1.0 -1969.0,1.0 -1970.0,1.0 -1971.0,1.0 -1972.0,1.0 -1973.0,1.0 -1974.0,1.0 -1975.0,1.0 -1976.0,1.0 -1977.0,1.0 -1978.0,1.0 -1979.0,1.0 -1980.0,1.0 -1981.0,1.0 -1982.0,1.0 -1983.0,1.0 -1984.0,1.0 -1985.0,1.0 -1986.0,1.0 -1987.0,1.0 -1988.0,1.0 -1989.0,1.0 -1990.0,1.0 -1991.0,1.0 -1992.0,1.0 -1993.0,1.0 -1994.0,1.0 -1995.0,1.0 -1996.0,1.0 -1997.0,1.0 -1998.0,1.0 -1999.0,1.0 -2000.0,1.0 -2001.0,1.0 -2002.0,1.0 -2003.0,1.0 -2004.0,1.0 -2005.0,1.0 -2006.0,1.0 -2007.0,1.0 -2008.0,1.0 -2009.0,1.0 -2010.0,1.0 -2011.0,1.0 -2012.0,1.0 -2013.0,1.0 -2014.0,1.0 -2015.0,1.0 -2016.0,1.0 -2017.0,1.0 -2018.0,1.0 -2019.0,1.0 -2020.0,1.0 -2021.0,1.0 -2022.0,1.0 -2023.0,1.0 -2024.0,1.0 -2025.0,1.0 -2026.0,1.0 -2027.0,1.0 -2028.0,1.0 -2029.0,1.0 -2030.0,1.0 -2031.0,1.0 -2032.0,1.0 -2033.0,1.0 -2034.0,1.0 -2035.0,1.0 -2036.0,1.0 -2037.0,1.0 -2038.0,1.0 -2039.0,1.0 -2040.0,1.0 -2041.0,1.0 -2042.0,1.0 -2043.0,1.0 -2044.0,1.0 -2045.0,1.0 -2046.0,1.0 -2047.0,1.0 -2048.0,1.0 -2049.0,1.0 -2050.0,1.0 -2051.0,1.0 -2052.0,1.0 -2053.0,1.0 -2054.0,1.0 -2055.0,1.0 -2056.0,1.0 -2057.0,1.0 -2058.0,1.0 -2059.0,1.0 -2060.0,1.0 -2061.0,1.0 -2062.0,1.0 -2063.0,1.0 -2064.0,1.0 -2065.0,1.0 -2066.0,1.0 -2067.0,1.0 -2068.0,1.0 -2069.0,1.0 -2070.0,1.0 -2071.0,1.0 -2072.0,1.0 -2073.0,1.0 -2074.0,1.0 -2075.0,1.0 -2076.0,1.0 -2077.0,1.0 -2078.0,1.0 -2079.0,1.0 -2080.0,1.0 -2081.0,1.0 -2082.0,1.0 -2083.0,1.0 -2084.0,1.0 -2085.0,1.0 -2086.0,1.0 -2087.0,1.0 -2088.0,1.0 -2089.0,1.0 -2090.0,1.0 -2091.0,1.0 -2092.0,1.0 -2093.0,1.0 -2094.0,1.0 -2095.0,1.0 -2096.0,1.0 -2097.0,1.0 -2098.0,1.0 -2099.0,1.0 -2100.0,1.0 -2101.0,1.0 -2102.0,1.0 -2103.0,1.0 -2104.0,1.0 -2105.0,1.0 -2106.0,1.0 -2107.0,1.0 -2108.0,1.0 -2109.0,1.0 -2110.0,1.0 -2111.0,1.0 -2112.0,1.0 -2113.0,1.0 -2114.0,1.0 -2115.0,1.0 -2116.0,1.0 -2117.0,1.0 -2118.0,1.0 -2119.0,1.0 -2120.0,1.0 -2121.0,1.0 -2122.0,1.0 -2123.0,1.0 -2124.0,1.0 -2125.0,1.0 -2126.0,1.0 -2127.0,1.0 -2128.0,1.0 -2129.0,1.0 -2130.0,1.0 -2131.0,1.0 -2132.0,1.0 -2133.0,1.0 -2134.0,1.0 -2135.0,1.0 -2136.0,1.0 -2137.0,1.0 -2138.0,1.0 -2139.0,1.0 -2140.0,1.0 -2141.0,1.0 -2142.0,1.0 -2143.0,1.0 -2144.0,1.0 -2145.0,1.0 -2146.0,1.0 -2147.0,1.0 -2148.0,1.0 -2149.0,1.0 -2150.0,1.0 -2151.0,1.0 -2152.0,1.0 -2153.0,1.0 -2154.0,1.0 -2155.0,1.0 -2156.0,1.0 -2157.0,1.0 -2158.0,1.0 -2159.0,1.0 -2160.0,1.0 -2161.0,1.0 -2162.0,1.0 -2163.0,1.0 -2164.0,1.0 -2165.0,1.0 -2166.0,1.0 -2167.0,1.0 -2168.0,1.0 -2169.0,1.0 -2170.0,1.0 -2171.0,1.0 -2172.0,1.0 -2173.0,1.0 -2174.0,1.0 -2175.0,1.0 -2176.0,1.0 -2177.0,1.0 -2178.0,1.0 -2179.0,1.0 -2180.0,1.0 -2181.0,1.0 -2182.0,1.0 -2183.0,1.0 -2184.0,1.0 -2185.0,1.0 -2186.0,1.0 -2187.0,1.0 -2188.0,1.0 -2189.0,1.0 -2190.0,1.0 -2191.0,1.0 -2192.0,1.0 -2193.0,1.0 -2194.0,1.0 -2195.0,1.0 -2196.0,1.0 -2197.0,1.0 -2198.0,1.0 -2199.0,1.0 -2200.0,1.0 -2201.0,1.0 -2202.0,1.0 -2203.0,1.0 -2204.0,1.0 -2205.0,1.0 -2206.0,1.0 -2207.0,1.0 -2208.0,1.0 -2209.0,1.0 -2210.0,1.0 -2211.0,1.0 -2212.0,1.0 -2213.0,1.0 -2214.0,1.0 -2215.0,1.0 -2216.0,1.0 -2217.0,1.0 -2218.0,1.0 -2219.0,1.0 -2220.0,1.0 -2221.0,1.0 -2222.0,1.0 -2223.0,1.0 -2224.0,1.0 -2225.0,1.0 -2226.0,1.0 -2227.0,1.0 -2228.0,1.0 -2229.0,1.0 -2230.0,1.0 -2231.0,1.0 -2232.0,1.0 -2233.0,1.0 -2234.0,1.0 -2235.0,1.0 -2236.0,1.0 -2237.0,1.0 -2238.0,1.0 -2239.0,1.0 -2240.0,1.0 -2241.0,1.0 -2242.0,1.0 -2243.0,1.0 -2244.0,1.0 -2245.0,1.0 -2246.0,1.0 -2247.0,1.0 -2248.0,1.0 -2249.0,1.0 -2250.0,1.0 -2251.0,1.0 -2252.0,1.0 -2253.0,1.0 -2254.0,1.0 -2255.0,1.0 -2256.0,1.0 -2257.0,1.0 -2258.0,1.0 -2259.0,1.0 -2260.0,1.0 -2261.0,1.0 -2262.0,1.0 -2263.0,1.0 -2264.0,1.0 -2265.0,1.0 -2266.0,1.0 -2267.0,1.0 -2268.0,1.0 -2269.0,1.0 -2270.0,1.0 -2271.0,1.0 -2272.0,1.0 -2273.0,1.0 -2274.0,1.0 -2275.0,1.0 -2276.0,1.0 -2277.0,1.0 -2278.0,1.0 -2279.0,1.0 -2280.0,1.0 -2281.0,1.0 -2282.0,1.0 -2283.0,1.0 -2284.0,1.0 -2285.0,1.0 -2286.0,1.0 -2287.0,1.0 -2288.0,1.0 -2289.0,1.0 -2290.0,1.0 -2291.0,1.0 -2292.0,1.0 -2293.0,1.0 -2294.0,1.0 -2295.0,1.0 -2296.0,1.0 -2297.0,1.0 -2298.0,1.0 -2299.0,1.0 -2300.0,1.0 -2301.0,1.0 -2302.0,1.0 -2303.0,1.0 -2304.0,1.0 -2305.0,1.0 -2306.0,1.0 -2307.0,1.0 -2308.0,1.0 -2309.0,1.0 -2310.0,1.0 -2311.0,1.0 -2312.0,1.0 -2313.0,1.0 -2314.0,1.0 -2315.0,1.0 -2316.0,1.0 -2317.0,1.0 -2318.0,1.0 -2319.0,1.0 -2320.0,1.0 -2321.0,1.0 -2322.0,1.0 -2323.0,1.0 -2324.0,1.0 -2325.0,1.0 -2326.0,1.0 -2327.0,1.0 -2328.0,1.0 -2329.0,1.0 -2330.0,1.0 -2331.0,1.0 -2332.0,1.0 -2333.0,1.0 -2334.0,1.0 -2335.0,1.0 -2336.0,1.0 -2337.0,1.0 -2338.0,1.0 -2339.0,1.0 -2340.0,1.0 -2341.0,1.0 -2342.0,1.0 -2343.0,1.0 -2344.0,1.0 -2345.0,1.0 -2346.0,1.0 -2347.0,1.0 -2348.0,1.0 -2349.0,1.0 -2350.0,1.0 -2351.0,1.0 -2352.0,1.0 -2353.0,1.0 -2354.0,1.0 -2355.0,1.0 -2356.0,1.0 -2357.0,1.0 -2358.0,1.0 -2359.0,1.0 -2360.0,1.0 -2361.0,1.0 -2362.0,1.0 -2363.0,1.0 -2364.0,1.0 -2365.0,1.0 -2366.0,1.0 -2367.0,1.0 -2368.0,1.0 -2369.0,1.0 -2370.0,1.0 -2371.0,1.0 -2372.0,1.0 -2373.0,1.0 -2374.0,1.0 -2375.0,1.0 -2376.0,1.0 -2377.0,1.0 -2378.0,1.0 -2379.0,1.0 -2380.0,1.0 -2381.0,1.0 -2382.0,1.0 -2383.0,1.0 -2384.0,1.0 -2385.0,1.0 -2386.0,1.0 -2387.0,1.0 -2388.0,1.0 -2389.0,1.0 -2390.0,1.0 -2391.0,1.0 -2392.0,1.0 -2393.0,1.0 -2394.0,1.0 -2395.0,1.0 -2396.0,1.0 -2397.0,1.0 -2398.0,1.0 -2399.0,1.0 -2400.0,1.0 -2401.0,1.0 -2402.0,1.0 -2403.0,1.0 -2404.0,1.0 -2405.0,1.0 -2406.0,1.0 -2407.0,1.0 -2408.0,1.0 -2409.0,1.0 -2410.0,1.0 -2411.0,1.0 -2412.0,1.0 -2413.0,1.0 -2414.0,1.0 -2415.0,1.0 -2416.0,1.0 -2417.0,1.0 -2418.0,1.0 -2419.0,1.0 -2420.0,1.0 -2421.0,1.0 -2422.0,1.0 -2423.0,1.0 -2424.0,1.0 -2425.0,1.0 -2426.0,1.0 -2427.0,1.0 -2428.0,1.0 -2429.0,1.0 -2430.0,1.0 -2431.0,1.0 -2432.0,1.0 -2433.0,1.0 -2434.0,1.0 -2435.0,1.0 -2436.0,1.0 -2437.0,1.0 -2438.0,1.0 -2439.0,1.0 -2440.0,1.0 -2441.0,1.0 -2442.0,1.0 -2443.0,1.0 -2444.0,1.0 -2445.0,1.0 -2446.0,1.0 -2447.0,1.0 -2448.0,1.0 -2449.0,1.0 -2450.0,1.0 -2451.0,1.0 -2452.0,1.0 -2453.0,1.0 -2454.0,1.0 -2455.0,1.0 -2456.0,1.0 -2457.0,1.0 -2458.0,1.0 -2459.0,1.0 -2460.0,1.0 -2461.0,1.0 -2462.0,1.0 -2463.0,1.0 -2464.0,1.0 -2465.0,1.0 -2466.0,1.0 -2467.0,1.0 -2468.0,1.0 -2469.0,1.0 -2470.0,1.0 -2471.0,1.0 -2472.0,1.0 -2473.0,1.0 -2474.0,1.0 -2475.0,1.0 -2476.0,1.0 -2477.0,1.0 -2478.0,1.0 -2479.0,1.0 -2480.0,1.0 -2481.0,1.0 -2482.0,1.0 -2483.0,1.0 -2484.0,1.0 -2485.0,1.0 -2486.0,1.0 -2487.0,1.0 -2488.0,1.0 -2489.0,1.0 -2490.0,1.0 -2491.0,1.0 -2492.0,1.0 -2493.0,1.0 -2494.0,1.0 -2495.0,1.0 -2496.0,1.0 -2497.0,1.0 -2498.0,1.0 -2499.0,1.0 -2500.0,1.0 -2501.0,1.0 -2502.0,1.0 -2503.0,1.0 -2504.0,1.0 -2505.0,1.0 -2506.0,1.0 -2507.0,1.0 -2508.0,1.0 -2509.0,1.0 -2510.0,1.0 -2511.0,1.0 -2512.0,1.0 -2513.0,1.0 -2514.0,1.0 -2515.0,1.0 -2516.0,1.0 -2517.0,1.0 -2518.0,1.0 -2519.0,1.0 -2520.0,1.0 -2521.0,1.0 -2522.0,1.0 -2523.0,1.0 -2524.0,1.0 -2525.0,1.0 -2526.0,1.0 -2527.0,1.0 -2528.0,1.0 -2529.0,1.0 -2530.0,1.0 -2531.0,1.0 -2532.0,1.0 -2533.0,1.0 -2534.0,1.0 -2535.0,1.0 -2536.0,1.0 -2537.0,1.0 -2538.0,1.0 -2539.0,1.0 -2540.0,1.0 -2541.0,1.0 -2542.0,1.0 -2543.0,1.0 -2544.0,1.0 -2545.0,1.0 -2546.0,1.0 -2547.0,1.0 -2548.0,1.0 -2549.0,1.0 -2550.0,1.0 -2551.0,1.0 -2552.0,1.0 -2553.0,1.0 -2554.0,1.0 -2555.0,1.0 -2556.0,1.0 -2557.0,1.0 -2558.0,1.0 -2559.0,1.0 -2560.0,1.0 -2561.0,1.0 -2562.0,1.0 -2563.0,1.0 -2564.0,1.0 -2565.0,1.0 -2566.0,1.0 -2567.0,1.0 -2568.0,1.0 -2569.0,1.0 -2570.0,1.0 -2571.0,1.0 -2572.0,1.0 -2573.0,1.0 -2574.0,1.0 -2575.0,1.0 -2576.0,1.0 -2577.0,1.0 -2578.0,1.0 -2579.0,1.0 -2580.0,1.0 -2581.0,1.0 -2582.0,1.0 -2583.0,1.0 -2584.0,1.0 -2585.0,1.0 -2586.0,1.0 -2587.0,1.0 -2588.0,1.0 -2589.0,1.0 -2590.0,1.0 -2591.0,1.0 -2592.0,1.0 -2593.0,1.0 -2594.0,1.0 -2595.0,1.0 -2596.0,1.0 -2597.0,1.0 -2598.0,1.0 -2599.0,1.0 -2600.0,1.0 -2601.0,1.0 -2602.0,1.0 -2603.0,1.0 -2604.0,1.0 -2605.0,1.0 -2606.0,1.0 -2607.0,1.0 -2608.0,1.0 -2609.0,1.0 -2610.0,1.0 -2611.0,1.0 -2612.0,1.0 -2613.0,1.0 -2614.0,1.0 -2615.0,1.0 -2616.0,1.0 -2617.0,1.0 -2618.0,1.0 -2619.0,1.0 -2620.0,1.0 -2621.0,1.0 -2622.0,1.0 -2623.0,1.0 -2624.0,1.0 -2625.0,1.0 -2626.0,1.0 -2627.0,1.0 -2628.0,1.0 -2629.0,1.0 -2630.0,1.0 -2631.0,1.0 -2632.0,1.0 -2633.0,1.0 -2634.0,1.0 -2635.0,1.0 -2636.0,1.0 -2637.0,1.0 -2638.0,1.0 -2639.0,1.0 -2640.0,1.0 -2641.0,1.0 -2642.0,1.0 -2643.0,1.0 -2644.0,1.0 -2645.0,1.0 -2646.0,1.0 -2647.0,1.0 -2648.0,1.0 -2649.0,1.0 -2650.0,1.0 -2651.0,1.0 -2652.0,1.0 -2653.0,1.0 -2654.0,1.0 -2655.0,1.0 -2656.0,1.0 -2657.0,1.0 -2658.0,1.0 -2659.0,1.0 -2660.0,1.0 -2661.0,1.0 -2662.0,1.0 -2663.0,1.0 -2664.0,1.0 -2665.0,1.0 -2666.0,1.0 -2667.0,1.0 -2668.0,1.0 -2669.0,1.0 -2670.0,1.0 -2671.0,1.0 -2672.0,1.0 -2673.0,1.0 -2674.0,1.0 -2675.0,1.0 -2676.0,1.0 -2677.0,1.0 -2678.0,1.0 -2679.0,1.0 -2680.0,1.0 -2681.0,1.0 -2682.0,1.0 -2683.0,1.0 -2684.0,1.0 -2685.0,1.0 -2686.0,1.0 -2687.0,1.0 -2688.0,1.0 -2689.0,1.0 -2690.0,1.0 -2691.0,1.0 -2692.0,1.0 -2693.0,1.0 -2694.0,1.0 -2695.0,1.0 -2696.0,1.0 -2697.0,1.0 -2698.0,1.0 -2699.0,1.0 -2700.0,1.0 -2701.0,1.0 -2702.0,1.0 -2703.0,1.0 -2704.0,1.0 -2705.0,1.0 -2706.0,1.0 -2707.0,1.0 -2708.0,1.0 -2709.0,1.0 -2710.0,1.0 -2711.0,1.0 -2712.0,1.0 -2713.0,1.0 -2714.0,1.0 -2715.0,1.0 -2716.0,1.0 -2717.0,1.0 -2718.0,1.0 -2719.0,1.0 -2720.0,1.0 -2721.0,1.0 -2722.0,1.0 -2723.0,1.0 -2724.0,1.0 -2725.0,1.0 -2726.0,1.0 -2727.0,1.0 -2728.0,1.0 -2729.0,1.0 -2730.0,1.0 -2731.0,1.0 -2732.0,1.0 -2733.0,1.0 -2734.0,1.0 -2735.0,1.0 -2736.0,1.0 -2737.0,1.0 -2738.0,1.0 -2739.0,1.0 -2740.0,1.0 -2741.0,1.0 -2742.0,1.0 -2743.0,1.0 -2744.0,1.0 -2745.0,1.0 -2746.0,1.0 -2747.0,1.0 -2748.0,1.0 -2749.0,1.0 -2750.0,1.0 -2751.0,1.0 -2752.0,1.0 -2753.0,1.0 -2754.0,1.0 -2755.0,1.0 -2756.0,1.0 -2757.0,1.0 -2758.0,1.0 -2759.0,1.0 -2760.0,1.0 -2761.0,1.0 -2762.0,1.0 -2763.0,1.0 -2764.0,1.0 -2765.0,1.0 -2766.0,1.0 -2767.0,1.0 -2768.0,1.0 -2769.0,1.0 -2770.0,1.0 -2771.0,1.0 -2772.0,1.0 -2773.0,1.0 -2774.0,1.0 -2775.0,1.0 -2776.0,1.0 -2777.0,1.0 -2778.0,1.0 -2779.0,1.0 -2780.0,1.0 -2781.0,1.0 -2782.0,1.0 -2783.0,1.0 -2784.0,1.0 -2785.0,1.0352078618136829 -2786.0,1.085207861813683 -2787.0,1.135207861813683 -2788.0,1.185207861813683 -2789.0,1.235207861813683 -2790.0,1.2852078618136829 -2791.0,1.335207861813683 -2792.0,1.385207861813683 -2793.0,1.435207861813683 -2794.0,1.485207861813683 -2795.0,1.5352078618136829 -2796.0,1.5852078618136831 -2797.0,1.635207861813683 -2798.0,1.685207861813683 -2799.0,1.735207861813683 -2800.0,1.7852078618136829 -2801.0,1.8352078618136831 -2802.0,1.885207861813683 -2803.0,1.935207861813683 -2804.0,1.985207861813683 -2805.0,2.0352078618136833 -2806.0,2.085207861813683 -2807.0,2.135207861813683 -2808.0,2.1852078618136828 -2809.0,2.235207861813683 -2810.0,2.2852078618136833 -2811.0,2.335207861813683 -2812.0,2.385207861813683 -2813.0,2.4352078618136828 -2814.0,2.485207861813683 -2815.0,2.5352078618136833 -2816.0,2.585207861813683 -2817.0,2.635207861813683 -2818.0,2.6852078618136828 -2819.0,2.735207861813683 -2820.0,2.7852078618136833 -2821.0,2.835207861813683 -2822.0,2.885207861813683 -2823.0,2.9352078618136828 -2824.0,2.985207861813683 -2825.0,3.035207861813683 -2826.0,3.085207861813683 -2827.0,3.135207861813683 -2828.0,3.185207861813683 -2829.0,3.235207861813683 -2830.0,3.285207861813683 -2831.0,3.335207861813683 -2832.0,3.385207861813683 -2833.0,3.435207861813683 -2834.0,3.485207861813683 -2835.0,3.5352078618136833 -2836.0,3.585207861813683 -2837.0,3.635207861813683 -2838.0,3.685207861813683 -2839.0,3.735207861813683 -2840.0,3.7852078618136833 -2841.0,3.835207861813683 -2842.0,3.885207861813683 -2843.0,3.935207861813683 -2844.0,3.985207861813683 -2845.0,4.035207861813683 -2846.0,4.085207861813683 -2847.0,4.135207861813683 -2848.0,4.185207861813684 -2849.0,4.235207861813683 -2850.0,4.285207861813683 -2851.0,4.335207861813683 -2852.0,4.385207861813683 -2853.0,4.435207861813684 -2854.0,4.485207861813683 -2855.0,4.535207861813683 -2856.0,4.585207861813683 -2857.0,4.635207861813683 -2858.0,4.685207861813684 -2859.0,4.735207861813683 -2860.0,4.785207861813683 -2861.0,4.835207861813683 -2862.0,4.885207861813683 -2863.0,4.935207861813684 -2864.0,4.985207861813683 -2865.0,5.035207861813683 -2866.0,5.085207861813683 -2867.0,5.135207861813683 -2868.0,5.185207861813683 -2869.0,5.2352078618136835 -2870.0,5.285207861813683 -2871.0,5.335207861813683 -2872.0,5.385207861813683 -2873.0,5.435207861813683 -2874.0,5.4852078618136835 -2875.0,5.535207861813683 -2876.0,5.585207861813683 -2877.0,5.635207861813683 -2878.0,5.685207861813683 -2879.0,5.7352078618136835 -2880.0,5.785207861813683 -2881.0,5.835207861813683 -2882.0,5.885207861813683 -2883.0,5.935207861813684 -2884.0,5.9852078618136835 -2885.0,5.964792138186317 -2886.0,5.914792138186317 -2887.0,5.864792138186317 -2888.0,5.814792138186317 -2889.0,5.764792138186317 -2890.0,5.714792138186317 -2891.0,5.664792138186317 -2892.0,5.614792138186317 -2893.0,5.564792138186317 -2894.0,5.514792138186317 -2895.0,5.464792138186317 -2896.0,5.414792138186317 -2897.0,5.364792138186317 -2898.0,5.314792138186317 -2899.0,5.264792138186317 -2900.0,5.214792138186317 -2901.0,5.164792138186317 -2902.0,5.114792138186317 -2903.0,5.064792138186317 -2904.0,5.014792138186317 -2905.0,4.964792138186317 -2906.0,4.914792138186317 -2907.0,4.864792138186317 -2908.0,4.814792138186317 -2909.0,4.764792138186317 -2910.0,4.714792138186317 -2911.0,4.664792138186317 -2912.0,4.614792138186317 -2913.0,4.564792138186317 -2914.0,4.514792138186317 -2915.0,4.464792138186317 -2916.0,4.414792138186317 -2917.0,4.364792138186317 -2918.0,4.314792138186317 -2919.0,4.264792138186317 -2920.0,4.214792138186317 -2921.0,4.164792138186317 -2922.0,4.114792138186317 -2923.0,4.064792138186317 -2924.0,4.014792138186317 -2925.0,3.964792138186317 -2926.0,3.914792138186317 -2927.0,3.864792138186317 -2928.0,3.814792138186317 -2929.0,3.764792138186317 -2930.0,3.714792138186317 -2931.0,3.664792138186317 -2932.0,3.614792138186317 -2933.0,3.564792138186317 -2934.0,3.514792138186317 -2935.0,3.4647921381863167 -2936.0,3.414792138186317 -2937.0,3.364792138186317 -2938.0,3.314792138186317 -2939.0,3.264792138186317 -2940.0,3.2147921381863167 -2941.0,3.164792138186317 -2942.0,3.114792138186317 -2943.0,3.064792138186317 -2944.0,3.014792138186317 -2945.0,2.9647921381863167 -2946.0,2.914792138186317 -2947.0,2.864792138186317 -2948.0,2.814792138186317 -2949.0,2.764792138186317 -2950.0,2.7147921381863167 -2951.0,2.664792138186317 -2952.0,2.614792138186317 -2953.0,2.564792138186317 -2954.0,2.514792138186317 -2955.0,2.4647921381863167 -2956.0,2.414792138186317 -2957.0,2.364792138186317 -2958.0,2.314792138186317 -2959.0,2.264792138186317 -2960.0,2.2147921381863167 -2961.0,2.164792138186317 -2962.0,2.114792138186317 -2963.0,2.064792138186317 -2964.0,2.014792138186317 -2965.0,1.9647921381863167 -2966.0,1.9147921381863169 -2967.0,1.864792138186317 -2968.0,1.8147921381863172 -2969.0,1.7647921381863165 -2970.0,1.7147921381863167 -2971.0,1.6647921381863169 -2972.0,1.614792138186317 -2973.0,1.5647921381863172 -2974.0,1.5147921381863165 -2975.0,1.4647921381863167 -2976.0,1.4147921381863169 -2977.0,1.364792138186317 -2978.0,1.3147921381863172 -2979.0,1.2647921381863165 -2980.0,1.2147921381863167 -2981.0,1.1647921381863169 -2982.0,1.114792138186317 -2983.0,1.0647921381863164 -2984.0,1.0147921381863165 -2985.0,0.9997568222791913 -2986.0,0.9994115781308357 -2987.0,0.9990664532049943 -2988.0,0.9987214474604963 -2989.0,0.998376560856185 -2990.0,0.998031793350918 -2991.0,0.9976871449035668 -2992.0,0.9973426154730176 -2993.0,0.9969982050181705 -2994.0,0.9966539134979397 -2995.0,0.996309740871254 -2996.0,0.9959656870970559 -2997.0,0.9956217521343023 -2998.0,0.9952779359419643 -2999.0,0.9949342384790273 -3000.0,0.9945906597044906 -3001.0,0.9942471995773675 -3002.0,0.993903858056686 -3003.0,0.993560635101488 -3004.0,0.9932175306708293 -3005.0,0.9928745447237801 -3006.0,0.9925316772194248 -3007.0,0.9921889281168617 -3008.0,0.9918462973752034 -3009.0,0.9915037849535764 -3010.0,0.9911613908111215 -3011.0,0.9908191149069938 -3012.0,0.990476957200362 -3013.0,0.9901349176504094 -3014.0,0.989792996216333 -3015.0,0.9894511928573442 -3016.0,0.9891095075326682 -3017.0,0.9887679402015447 -3018.0,0.9884264908232269 -3019.0,0.9880851593569825 -3020.0,0.9877439457620932 -3021.0,0.9874028499978547 -3022.0,0.9870618720235768 -3023.0,0.9867210117985831 -3024.0,0.9863802692822116 -3025.0,0.9860396444338142 -3026.0,0.9856991372127569 -3027.0,0.9853587475784196 -3028.0,0.9850184754901963 -3029.0,0.9846783209074951 -3030.0,0.9843382837897379 -3031.0,0.9839983640963608 -3032.0,0.9836585617868139 -3033.0,0.9833188768205613 -3034.0,0.9829793091570809 -3035.0,0.9826398587558649 -3036.0,0.9823005255764193 -3037.0,0.9819613095782642 -3038.0,0.9816222107209335 -3039.0,0.9812832289639751 -3040.0,0.9809443642669512 -3041.0,0.9806056165894375 -3042.0,0.980266985891024 -3043.0,0.9799284721313144 -3044.0,0.9795900752699266 -3045.0,0.9792517952664922 -3046.0,0.978913632080657 -3047.0,0.9785755856720805 -3048.0,0.9782376560004362 -3049.0,0.9778998430254117 -3050.0,0.9775621467067082 -3051.0,0.977224567004041 -3052.0,0.9768871038771395 -3053.0,0.9765497572857467 -3054.0,0.9762125271896196 -3055.0,0.975875413548529 -3056.0,0.97553841632226 -3057.0,0.975201535470611 -3058.0,0.9748647709533946 -3059.0,0.9745281227304374 -3060.0,0.9741915907615796 -3061.0,0.9738551750066754 -3062.0,0.9735188754255929 -3063.0,0.973182691978214 -3064.0,0.9728466246244345 -3065.0,0.972510673324164 -3066.0,0.9721748380373259 -3067.0,0.9718391187238574 -3068.0,0.9715035153437099 -3069.0,0.9711680278568482 -3070.0,0.9708326562232511 -3071.0,0.9704974004029112 -3072.0,0.9701622603558351 -3073.0,0.9698272360420428 -3074.0,0.9694923274215683 -3075.0,0.9691575344544597 -3076.0,0.9688228571007785 -3077.0,0.9684882953206002 -3078.0,0.9681538490740139 -3079.0,0.9678195183211227 -3080.0,0.9674853030220434 -3081.0,0.9671512031369064 -3082.0,0.9668172186258561 -3083.0,0.9664833494490507 -3084.0,0.9661495955666619 -3085.0,0.9658159569388753 -3086.0,0.9654824335258904 -3087.0,0.96514902528792 -3088.0,0.9648157321851911 -3089.0,0.9644825541779444 -3090.0,0.964149491226434 -3091.0,0.9638165432909279 -3092.0,0.9634837103317081 -3093.0,0.9631509923090696 -3094.0,0.9628183891833221 -3095.0,0.962485900914788 -3096.0,0.9621535274638042 -3097.0,0.9618212687907208 -3098.0,0.9614891248559019 -3099.0,0.961157095619725 -3100.0,0.9608251810425814 -3101.0,0.9604933810848763 -3102.0,0.9601616957070283 -3103.0,0.9598301248694697 -3104.0,0.9594986685326465 -3105.0,0.9591673266570185 -3106.0,0.958836099203059 -3107.0,0.958504986131255 -3108.0,0.958173987402107 -3109.0,0.9578431029761293 -3110.0,0.9575123328138498 -3111.0,0.9571816768758101 -3112.0,0.9568511351225655 -3113.0,0.9565207075146844 -3114.0,0.9561903940127495 -3115.0,0.9558601945773567 -3116.0,0.9555301091691156 -3117.0,0.9552001377486494 -3118.0,0.954870280276595 -3119.0,0.9545405367136027 -3120.0,0.9542109070203367 -3121.0,0.9538813911574744 -3122.0,0.9535519890857069 -3123.0,0.9532227007657391 -3124.0,0.9528935261582893 -3125.0,0.9525644652240892 -3126.0,0.9522355179238844 -3127.0,0.9519066842184338 -3128.0,0.95157796406851 -3129.0,0.951249357434899 -3130.0,0.9509208642784005 -3131.0,0.9505924845598277 -3132.0,0.9502642182400072 -3133.0,0.9499360652797791 -3134.0,0.9496080256399975 -3135.0,0.9492800992815293 -3136.0,0.9489522861652555 -3137.0,0.9486245862520702 -3138.0,0.9482969995028815 -3139.0,0.9479695258786104 -3140.0,0.9476421653401917 -3141.0,0.9473149178485739 -3142.0,0.9469877833647186 -3143.0,0.946660761849601 -3144.0,0.9463338532642099 -3145.0,0.9460070575695474 -3146.0,0.9456803747266294 -3147.0,0.9453538046964847 -3148.0,0.9450273474401559 -3149.0,0.9447010029186993 -3150.0,0.9443747710931842 -3151.0,0.9440486519246936 -3152.0,0.9437226453743237 -3153.0,0.9433967514031845 -3154.0,0.943070969972399 -3155.0,0.9427453010431041 -3156.0,0.9424197445764497 -3157.0,0.9420943005335993 -3158.0,0.9417689688757299 -3159.0,0.9414437495640317 -3160.0,0.9411186425597085 -3161.0,0.9407936478239772 -3162.0,0.9404687653180687 -3163.0,0.9401439950032264 -3164.0,0.939819336840708 -3165.0,0.9394947907917838 -3166.0,0.939170356817738 -3167.0,0.9388460348798681 -3168.0,0.9385218249394846 -3169.0,0.9381977269579117 -3170.0,0.937873740896487 -3171.0,0.9375498667165613 -3172.0,0.9372261043794986 -3173.0,0.9369024538466766 -3174.0,0.936578915079486 -3175.0,0.9362554880393311 -3176.0,0.9359321726876294 -3177.0,0.9356089689858118 -3178.0,0.9352858768953223 -3179.0,0.9349628963776183 -3180.0,0.9346400273941708 -3181.0,0.9343172699064639 -3182.0,0.9339946238759949 -3183.0,0.9336720892642744 -3184.0,0.9333496660328263 -3185.0,0.9330273541431882 -3186.0,0.9327051535569103 -3187.0,0.9323830642355567 -3188.0,0.9320610861407043 -3189.0,0.9317392192339434 -3190.0,0.9314174634768778 -3191.0,0.9310958188311245 -3192.0,0.9307742852583132 -3193.0,0.9304528627200876 -3194.0,0.9301315511781044 -3195.0,0.9298103505940334 -3196.0,0.9294892609295575 -3197.0,0.9291682821463734 -3198.0,0.9288474142061903 -3199.0,0.9285266570707313 -3200.0,0.9282060107017323 -3201.0,0.9278854750609424 -3202.0,0.9275650501101242 -3203.0,0.9272447358110535 -3204.0,0.9269245321255187 -3205.0,0.9266044390153222 -3206.0,0.9262844564422791 -3207.0,0.9259645843682177 -3208.0,0.9256448227549797 -3209.0,0.92532517156442 -3210.0,0.9250056307584064 -3211.0,0.9246862002988199 -3212.0,0.924366880147555 -3213.0,0.924047670266519 -3214.0,0.9237285706176326 -3215.0,0.9234095811628295 -3216.0,0.9230907018640564 -3217.0,0.9227719326832735 -3218.0,0.922453273582454 -3219.0,0.9221347245235841 -3220.0,0.9218162854686633 -3221.0,0.9214979563797041 -3222.0,0.921179737218732 -3223.0,0.9208616279477861 -3224.0,0.920543628528918 -3225.0,0.9202257389241929 -3226.0,0.9199079590956887 -3227.0,0.9195902890054967 -3228.0,0.9192727286157212 -3229.0,0.9189552778884794 -3230.0,0.9186379367859019 -3231.0,0.9183207052701321 -3232.0,0.9180035833033268 -3233.0,0.9176865708476554 -3234.0,0.9173696678653007 -3235.0,0.9170528743184587 -3236.0,0.9167361901693379 -3237.0,0.9164196153801606 -3238.0,0.9161031499131613 -3239.0,0.9157867937305882 -3240.0,0.9154705467947024 -3241.0,0.9151544090677778 -3242.0,0.9148383805121014 -3243.0,0.9145224610899735 -3244.0,0.9142066507637071 -3245.0,0.9138909494956283 -3246.0,0.9135753572480764 -3247.0,0.9132598739834034 -3248.0,0.9129444996639745 -3249.0,0.9126292342521678 -3250.0,0.9123140777103744 -3251.0,0.9119990300009986 -3252.0,0.9116840910864574 -3253.0,0.9113692609291808 -3254.0,0.911054539491612 -3255.0,0.910739926736207 -3256.0,0.9104254226254346 -3257.0,0.910111027121777 -3258.0,0.909796740187729 -3259.0,0.9094825617857986 -3260.0,0.9091684918785063 -3261.0,0.9088545304283862 -3262.0,0.9085406773979847 -3263.0,0.9082269327498615 -3264.0,0.9079132964465894 -3265.0,0.9075997684507535 -3266.0,0.9072863487249525 -3267.0,0.9069730372317975 -3268.0,0.9066598339339128 -3269.0,0.9063467387939356 -3270.0,0.9060337517745157 -3271.0,0.9057208728383164 -3272.0,0.9054081019480131 -3273.0,0.905095439066295 -3274.0,0.9047828841558633 -3275.0,0.9044704371794325 -3276.0,0.9041580980997302 -3277.0,0.9038458668794965 -3278.0,0.9035337434814844 -3279.0,0.90322172786846 -3280.0,0.9029098200032021 -3281.0,0.9025980198485022 -3282.0,0.902286327367165 -3283.0,0.9019747425220077 -3284.0,0.9016632652758607 -3285.0,0.9013518955915668 -3286.0,0.9010406334319822 -3287.0,0.9007294787599751 -3288.0,0.9004184315384275 -3289.0,0.9001074917302335 -3290.0,0.8997966592983002 -3291.0,0.8994859342055478 -3292.0,0.8991753164149088 -3293.0,0.8988648058893289 -3294.0,0.8985544025917664 -3295.0,0.8982441064851925 -3296.0,0.8979339175325911 -3297.0,0.8976238356969589 -3298.0,0.8973138609413055 -3299.0,0.897003993228653 -3300.0,0.8966942325220366 -3301.0,0.8963845787845041 -3302.0,0.8960750319791159 -3303.0,0.8957655920689455 -3304.0,0.8954562590170789 -3305.0,0.8951470327866149 -3306.0,0.8948379133406652 -3307.0,0.8945289006423539 -3308.0,0.8942199946548182 -3309.0,0.8939111953412078 -3310.0,0.8936025026646852 -3311.0,0.8932939165884256 -3312.0,0.8929854370756171 -3313.0,0.89267706408946 -3314.0,0.8923687975931679 -3315.0,0.8920606375499668 -3316.0,0.8917525839230954 -3317.0,0.8914446366758053 -3318.0,0.8911367957713605 -3319.0,0.8908290611730378 -3320.0,0.8905214328441269 -3321.0,0.8902139107479298 -3322.0,0.8899064948477614 -3323.0,0.8895991851069492 -3324.0,0.8892919814888335 -3325.0,0.888984883956767 -3326.0,0.8886778924741153 -3327.0,0.8883710070042566 -3328.0,0.8880642275105816 -3329.0,0.8877575539564937 -3330.0,0.8874509863054091 -3331.0,0.8871445245207564 -3332.0,0.8868381685659772 -3333.0,0.8865319184045252 -3334.0,0.8862257739998669 -3335.0,0.8859197353154818 -3336.0,0.8856138023148616 -3337.0,0.8853079749615108 -3338.0,0.8850022532189462 -3339.0,0.8846966370506977 -3340.0,0.8843911264203073 -3341.0,0.8840857212913299 -3342.0,0.8837804216273328 -3343.0,0.8834752273918962 -3344.0,0.8831701385486125 -3345.0,0.8828651550610869 -3346.0,0.8825602768929369 -3347.0,0.882255504007793 -3348.0,0.8819508363692978 -3349.0,0.881646273941107 -3350.0,0.881341816686888 -3351.0,0.8810374645703218 -3352.0,0.8807332175551013 -3353.0,0.8804290756049317 -3354.0,0.8801250386835314 -3355.0,0.8798211067546309 -3356.0,0.8795172797819735 -3357.0,0.8792135577293145 -3358.0,0.8789099405604225 -3359.0,0.878606428239078 -3360.0,0.8783030207290741 -3361.0,0.8779997179942165 -3362.0,0.8776965199983235 -3363.0,0.8773934267052259 -3364.0,0.8770904380787666 -3365.0,0.8767875540828015 -3366.0,0.8764847746811987 -3367.0,0.8761820998378387 -3368.0,0.8758795295166146 -3369.0,0.8755770636814322 -3370.0,0.8752747022962093 -3371.0,0.8749724453248765 -3372.0,0.8746702927313768 -3373.0,0.8743682444796653 -3374.0,0.8740663005337101 -3375.0,0.8737644608574916 -3376.0,0.8734627254150023 -3377.0,0.8731610941702475 -3378.0,0.8728595670872445 -3379.0,0.8725581441300237 -3380.0,0.8722568252626275 -3381.0,0.8719556104491105 -3382.0,0.8716544996535401 -3383.0,0.8713534928399961 -3384.0,0.8710525899725704 -3385.0,0.8707517910153676 -3386.0,0.8704510959325045 -3387.0,0.8701505046881104 -3388.0,0.8698500172463269 -3389.0,0.8695496335713082 -3390.0,0.8692493536272206 -3391.0,0.8689491773782428 -3392.0,0.8686491047885662 -3393.0,0.8683491358223941 -3394.0,0.8680492704439425 -3395.0,0.8677495086174397 -3396.0,0.8674498503071262 -3397.0,0.867150295477255 -3398.0,0.8668508440920912 -3399.0,0.8665514961159128 -3400.0,0.8662522515130096 -3401.0,0.8659531102476837 -3402.0,0.86565407228425 -3403.0,0.8653551375870353 -3404.0,0.865056306120379 -3405.0,0.8647575778486326 -3406.0,0.86445895273616 -3407.0,0.8641604307473374 -3408.0,0.8638620118465533 -3409.0,0.8635636959982086 -3410.0,0.8632654831667161 -3411.0,0.8629673733165016 -3412.0,0.8626693664120024 -3413.0,0.8623714624176687 -3414.0,0.8620736612979627 -3415.0,0.8617759630173587 -3416.0,0.8614783675403437 -3417.0,0.8611808748314166 -3418.0,0.8608834848550886 -3419.0,0.8605861975758835 -3420.0,0.8602890129583369 -3421.0,0.8599919309669969 -3422.0,0.8596949515664237 -3423.0,0.85939807472119 -3424.0,0.8591013003958805 -3425.0,0.8588046285550921 -3426.0,0.858508059163434 -3427.0,0.8582115921855278 -3428.0,0.8579152275860069 -3429.0,0.8576189653295174 -3430.0,0.8573228053807173 -3431.0,0.8570267477042768 -3432.0,0.8567307922648785 -3433.0,0.856434939027217 -3434.0,0.8561391879559992 -3435.0,0.855843539015944 -3436.0,0.8555479921717829 -3437.0,0.8552525473882592 -3438.0,0.8549572046301284 -3439.0,0.8546619638621583 -3440.0,0.854366825049129 -3441.0,0.8540717881558324 -3442.0,0.8537768531470727 -3443.0,0.8534820199876666 -3444.0,0.8531872886424424 -3445.0,0.8528926590762408 -3446.0,0.8525981312539148 -3447.0,0.8523037051403292 -3448.0,0.8520093807003613 -3449.0,0.8517151578989002 -3450.0,0.8514210367008472 -3451.0,0.8511270170711159 -3452.0,0.850833098974632 -3453.0,0.8505392823763331 -3454.0,0.850245567241169 -3455.0,0.8499519535341016 -3456.0,0.849658441220105 -3457.0,0.8493650302641653 -3458.0,0.8490717206312808 -3459.0,0.8487785122864616 -3460.0,0.8484854051947303 -3461.0,0.8481923993211211 -3462.0,0.8478994946306808 -3463.0,0.8476066910884679 -3464.0,0.847313988659553 -3465.0,0.8470213873090189 -3466.0,0.8467288870019605 -3467.0,0.8464364877034845 -3468.0,0.8461441893787097 -3469.0,0.8458519919927674 -3470.0,0.8455598955108002 -3471.0,0.8452678998979634 -3472.0,0.8449760051194238 -3473.0,0.8446842111403606 -3474.0,0.844392517925965 -3475.0,0.8441009254414401 -3476.0,0.8438094336520009 -3477.0,0.8435180425228747 -3478.0,0.8432267520193005 -3479.0,0.8429355621065298 -3480.0,0.8426444727498253 -3481.0,0.8423534839144625 -3482.0,0.8420625955657285 -3483.0,0.8417718076689222 -3484.0,0.8414811201893552 -3485.0,0.8411905330923501 -3486.0,0.8409000463432423 -3487.0,0.8406096599073788 -3488.0,0.8403193737501186 -3489.0,0.8400291878368324 -3490.0,0.8397391021329036 -3491.0,0.8394491166037268 -3492.0,0.8391592312147089 -3493.0,0.8388694459312688 -3494.0,0.838579760718837 -3495.0,0.8382901755428563 -3496.0,0.8380006903687813 -3497.0,0.8377113051620786 -3498.0,0.8374220198882265 -3499.0,0.8371328345127155 -3500.0,0.8368437490010477 -3501.0,0.8365547633187377 -3502.0,0.8362658774313112 -3503.0,0.8359770913043064 -3504.0,0.8356884049032732 -3505.0,0.8353998181937735 -3506.0,0.8351113311413809 -3507.0,0.8348229437116811 -3508.0,0.8345346558702714 -3509.0,0.8342464675827613 -3510.0,0.8339583788147721 -3511.0,0.8336703895319368 -3512.0,0.8333824996999004 -3513.0,0.8330947092843197 -3514.0,0.8328070182508636 -3515.0,0.8325194265652123 -3516.0,0.8322319341930585 -3517.0,0.8319445411001064 -3518.0,0.831657247252072 -3519.0,0.8313700526146834 -3520.0,0.8310829571536803 -3521.0,0.8307959608348142 -3522.0,0.8305090636238487 -3523.0,0.830222265486559 -3524.0,0.829935566388732 -3525.0,0.8296489662961669 -3526.0,0.8293624651746742 -3527.0,0.8290760629900763 -3528.0,0.8287897597082078 -3529.0,0.8285035552949146 -3530.0,0.8282174497160547 -3531.0,0.8279314429374977 -3532.0,0.8276455349251252 -3533.0,0.8273597256448302 -3534.0,0.8270740150625181 -3535.0,0.8267884031441054 -3536.0,0.8265028898555209 -3537.0,0.8262174751627048 -3538.0,0.8259321590316093 -3539.0,0.8256469414281983 -3540.0,0.8253618223184472 -3541.0,0.8250768016683436 -3542.0,0.8247918794438865 -3543.0,0.8245070556110868 -3544.0,0.8242223301359671 -3545.0,0.8239377029845617 -3546.0,0.8236531741229167 -3547.0,0.8233687435170898 -3548.0,0.8230844111331506 -3549.0,0.8228001769371802 -3550.0,0.8225160408952716 -3551.0,0.8222320029735295 -3552.0,0.8219480631380702 -3553.0,0.8216642213550217 -3554.0,0.8213804775905238 -3555.0,0.8210968318107279 -3556.0,0.8208132839817972 -3557.0,0.8205298340699064 -3558.0,0.8202464820412421 -3559.0,0.8199632278620024 -3560.0,0.8196800714983972 -3561.0,0.8193970129166479 -3562.0,0.8191140520829877 -3563.0,0.8188311889636616 -3564.0,0.818548423524926 -3565.0,0.8182657557330489 -3566.0,0.8179831855543103 -3567.0,0.8177007129550016 -3568.0,0.8174183379014257 -3569.0,0.8171360603598975 -3570.0,0.8168538802967433 -3571.0,0.8165717976783011 -3572.0,0.8162898124709205 -3573.0,0.8160079246409625 -3574.0,0.8157261341548003 -3575.0,0.8154444409788182 -3576.0,0.8151628450794122 -3577.0,0.8148813464229899 -3578.0,0.8145999449759708 -3579.0,0.8143186407047854 -3580.0,0.8140374335758767 -3581.0,0.8137563235556982 -3582.0,0.8134753106107158 -3583.0,0.8131943947074065 -3584.0,0.8129135758122593 -3585.0,0.8126328538917745 -3586.0,0.8123522289124641 -3587.0,0.8120717008408513 -3588.0,0.8117912696434715 -3589.0,0.811510935286871 -3590.0,0.8112306977376081 -3591.0,0.8109505569622526 -3592.0,0.8106705129273856 -3593.0,0.8103905655995999 -3594.0,0.8101107149454998 -3595.0,0.8098309609317013 -3596.0,0.8095513035248316 -3597.0,0.8092717426915298 -3598.0,0.8089922783984461 -3599.0,0.8087129106122427 -3600.0,0.808433639299593 -3601.0,0.8081544644271818 -3602.0,0.8078753859617057 -3603.0,0.8075964038698726 -3604.0,0.8073175181184022 -3605.0,0.8070387286740253 -3606.0,0.8067600355034842 -3607.0,0.8064814385735329 -3608.0,0.8062029378509371 -3609.0,0.8059245333024735 -3610.0,0.8056462248949303 -3611.0,0.8053680125951076 -3612.0,0.8050898963698166 -3613.0,0.8048118761858801 -3614.0,0.8045339520101322 -3615.0,0.8042561238094188 -3616.0,0.8039783915505967 -3617.0,0.8037007552005347 -3618.0,0.8034232147261128 -3619.0,0.8031457700942224 -3620.0,0.8028684212717663 -3621.0,0.8025911682256589 -3622.0,0.8023140109228258 -3623.0,0.8020369493302045 -3624.0,0.8017599834147432 -3625.0,0.801483113143402 -3626.0,0.8012063384831524 -3627.0,0.8009296594009772 -3628.0,0.8006530758638704 -3629.0,0.8003765878388377 -3630.0,0.8001001952928961 -3631.0,0.7998238981930741 -3632.0,0.7995476965064113 -3633.0,0.7992715901999591 -3634.0,0.7989955792407797 -3635.0,0.7987196635959471 -3636.0,0.7984438432325468 -3637.0,0.7981681181176753 -3638.0,0.7978924882184405 -3639.0,0.7976169535019618 -3640.0,0.79734151393537 -3641.0,0.7970661694858072 -3642.0,0.7967909201204267 -3643.0,0.7965157658063933 -3644.0,0.7962407065108831 -3645.0,0.7959657422010835 -3646.0,0.7956908728441934 -3647.0,0.7954160984074228 -3648.0,0.795141418857993 -3649.0,0.7948668341631369 -3650.0,0.7945923442900984 -3651.0,0.794317949206133 -3652.0,0.7940436488785073 -3653.0,0.7937694432744993 -3654.0,0.7934953323613981 -3655.0,0.7932213161065046 -3656.0,0.7929473944771305 -3657.0,0.7926735674405988 -3658.0,0.792399834964244 -3659.0,0.792126197015412 -3660.0,0.7918526535614596 -3661.0,0.7915792045697552 -3662.0,0.7913058500076781 -3663.0,0.7910325898426193 -3664.0,0.7907594240419807 -3665.0,0.7904863525731758 -3666.0,0.7902133754036291 -3667.0,0.7899404925007764 -3668.0,0.7896677038320645 -3669.0,0.7893950093649522 -3670.0,0.7891224090669087 -3671.0,0.7888499029054148 -3672.0,0.7885774908479626 -3673.0,0.7883051728620553 -3674.0,0.7880329489152073 -3675.0,0.7877608189749443 -3676.0,0.7874887830088032 -3677.0,0.787216840984332 -3678.0,0.7869449928690901 -3679.0,0.7866732386306481 -3680.0,0.7864015782365874 -3681.0,0.7861300116545011 -3682.0,0.7858585388519934 -3683.0,0.7855871597966793 -3684.0,0.7853158744561854 -3685.0,0.7850446827981494 -3686.0,0.78477358479022 -3687.0,0.7845025804000572 -3688.0,0.7842316695953322 -3689.0,0.7839608523437273 -3690.0,0.783690128612936 -3691.0,0.7834194983706628 -3692.0,0.7831489615846237 -3693.0,0.7828785182225454 -3694.0,0.7826081682521662 -3695.0,0.7823379116412352 -3696.0,0.7820677483575127 -3697.0,0.7817976783687703 -3698.0,0.7815277016427907 -3699.0,0.7812578181473674 -3700.0,0.7809880278503055 -3701.0,0.7807183307194208 -3702.0,0.7804487267225405 -3703.0,0.7801792158275028 -3704.0,0.779909798002157 -3705.0,0.7796404732143636 -3706.0,0.7793712414319939 -3707.0,0.7791021026229307 -3708.0,0.7788330567550676 -3709.0,0.7785641037963096 -3710.0,0.7782952437145723 -3711.0,0.7780264764777828 -3712.0,0.7777578020538791 -3713.0,0.7774892204108103 -3714.0,0.7772207315165366 -3715.0,0.7769523353390292 -3716.0,0.7766840318462703 -3717.0,0.7764158210062534 -3718.0,0.7761477027869828 -3719.0,0.775879677156474 -3720.0,0.7756117440827536 -3721.0,0.7753439035338588 -3722.0,0.7750761554778386 -3723.0,0.7748084998827525 -3724.0,0.7745409367166708 -3725.0,0.7742734659476755 -3726.0,0.7740060875438594 -3727.0,0.7737388014733257 -3728.0,0.7734716077041897 -3729.0,0.7732045062045767 -3730.0,0.7729374969426236 -3731.0,0.7726705798864782 -3732.0,0.7724037550042993 -3733.0,0.7721370222642563 -3734.0,0.7718703816345303 -3735.0,0.7716038330833128 -3736.0,0.7713373765788066 -3737.0,0.7710710120892253 -3738.0,0.7708047395827937 -3739.0,0.7705385590277474 -3740.0,0.7702724703923328 -3741.0,0.7700064736448077 -3742.0,0.7697405687534404 -3743.0,0.7694747556865107 -3744.0,0.7692090344123088 -3745.0,0.768943404899136 -3746.0,0.768677867115305 -3747.0,0.7684124210291388 -3748.0,0.7681470666089716 -3749.0,0.7678818038231486 -3750.0,0.7676166326400261 -3751.0,0.7673515530279708 -3752.0,0.7670865649553608 -3753.0,0.7668216683905849 -3754.0,0.7665568633020429 -3755.0,0.7662921496581454 -3756.0,0.7660275274273142 -3757.0,0.7657629965779816 -3758.0,0.765498557078591 -3759.0,0.7652342088975969 -3760.0,0.7649699520034643 -3761.0,0.7647057863646692 -3762.0,0.7644417119496989 -3763.0,0.7641777287270509 -3764.0,0.7639138366652342 -3765.0,0.763650035732768 -3766.0,0.7633863258981832 -3767.0,0.7631227071300211 -3768.0,0.7628591793968337 -3769.0,0.762595742667184 -3770.0,0.7623323969096463 -3771.0,0.762069142092805 -3772.0,0.7618059781852559 -3773.0,0.7615429051556053 -3774.0,0.7612799229724707 -3775.0,0.7610170316044802 -3776.0,0.7607542310202727 -3777.0,0.7604915211884982 -3778.0,0.760228902077817 -3779.0,0.7599663736569008 -3780.0,0.7597039358944319 -3781.0,0.7594415887591032 -3782.0,0.7591793322196186 -3783.0,0.7589171662446931 -3784.0,0.7586550908030519 -3785.0,0.7583931058634314 -3786.0,0.758131211394579 -3787.0,0.7578694073652521 -3788.0,0.7576076937442197 -3789.0,0.7573460705002611 -3790.0,0.7570845376021668 -3791.0,0.7568230950187376 -3792.0,0.7565617427187854 -3793.0,0.7563004806711326 -3794.0,0.756039308844613 -3795.0,0.7557782272080703 -3796.0,0.7555172357303594 -3797.0,0.7552563343803461 -3798.0,0.7549955231269067 -3799.0,0.7547348019389282 -3800.0,0.7544741707853085 -3801.0,0.7542136296349564 -3802.0,0.753953178456791 -3803.0,0.7536928172197425 -3804.0,0.7534325458927517 -3805.0,0.75317236444477 -3806.0,0.7529122728447598 -3807.0,0.7526522710616941 -3808.0,0.7523923590645564 -3809.0,0.7521325368223413 -3810.0,0.7518728043040537 -3811.0,0.7516131614787095 -3812.0,0.7513536083153353 -3813.0,0.7510941447829681 -3814.0,0.750834770850656 -3815.0,0.7505754864874574 -3816.0,0.7503162916624416 -3817.0,0.7500571863446888 -3818.0,0.7497981705032892 -3819.0,0.7495392441073444 -3820.0,0.7492804071259663 -3821.0,0.7490216595282775 -3822.0,0.7487630012834113 -3823.0,0.7485044323605117 -3824.0,0.7482459527287333 -3825.0,0.7479875623572414 -3826.0,0.7477292612152118 -3827.0,0.7474710492718312 -3828.0,0.7472129264962966 -3829.0,0.746954892857816 -3830.0,0.7466969483256078 -3831.0,0.7464390928689012 -3832.0,0.7461813264569358 -3833.0,0.745923649058962 -3834.0,0.7456660606442408 -3835.0,0.7454085611820437 -3836.0,0.7451511506416528 -3837.0,0.7448938289923612 -3838.0,0.7446365962034721 -3839.0,0.7443794522442996 -3840.0,0.7441223970841682 -3841.0,0.743865430692413 -3842.0,0.74360855303838 -3843.0,0.7433517640914256 -3844.0,0.7430950638209164 -3845.0,0.7428384521962303 -3846.0,0.7425819291867554 -3847.0,0.74232549476189 -3848.0,0.7420691488910437 -3849.0,0.7418128915436362 -3850.0,0.7415567226890978 -3851.0,0.7413006422968695 -3852.0,0.7410446503364029 -3853.0,0.7407887467771597 -3854.0,0.7405329315886128 -3855.0,0.740277204740245 -3856.0,0.7400215662015502 -3857.0,0.7397660159420326 -3858.0,0.7395105539312068 -3859.0,0.7392551801385979 -3860.0,0.738999894533742 -3861.0,0.7387446970861852 -3862.0,0.7384895877654843 -3863.0,0.7382345665412067 -3864.0,0.7379796333829302 -3865.0,0.737724788260243 -3866.0,0.7374700311427441 -3867.0,0.7372153620000429 -3868.0,0.736960780801759 -3869.0,0.7367062875175228 -3870.0,0.7364518821169751 -3871.0,0.7361975645697673 -3872.0,0.7359433348455611 -3873.0,0.7356891929140287 -3874.0,0.7354351387448528 -3875.0,0.7351811723077267 -3876.0,0.7349272935723541 -3877.0,0.734673502508449 -3878.0,0.734419799085736 -3879.0,0.73416618327395 -3880.0,0.7339126550428368 -3881.0,0.733659214362152 -3882.0,0.7334058612016622 -3883.0,0.7331525955311441 -3884.0,0.732899417320385 -3885.0,0.7326463265391826 -3886.0,0.7323933231573451 -3887.0,0.7321404071446908 -3888.0,0.7318875784710487 -3889.0,0.7316348371062584 -3890.0,0.7313821830201697 -3891.0,0.7311296161826425 -3892.0,0.7308771365635477 -3893.0,0.7306247441327661 -3894.0,0.7303724388601894 -3895.0,0.7301202207157192 -3896.0,0.7298680896692677 -3897.0,0.7296160456907578 -3898.0,0.7293640887501222 -3899.0,0.7291122188173043 -3900.0,0.7288604358622579 -3901.0,0.7286087398549471 -3902.0,0.7283571307653466 -3903.0,0.728105608563441 -3904.0,0.7278541732192256 -3905.0,0.7276028247027062 -3906.0,0.7273515629838985 -3907.0,0.7271003880328288 -3908.0,0.7268492998195341 -3909.0,0.726598298314061 -3910.0,0.726347383486467 -3911.0,0.7260965553068199 -3912.0,0.7258458137451976 -3913.0,0.7255951587716886 -3914.0,0.7253445903563913 -3915.0,0.725094108469415 -3916.0,0.724843713080879 -3917.0,0.7245934041609128 -3918.0,0.7243431816796565 -3919.0,0.7240930456072604 -3920.0,0.723842995913885 -3921.0,0.7235930325697013 -3922.0,0.7233431555448904 -3923.0,0.7230933648096437 -3924.0,0.7228436603341633 -3925.0,0.722594042088661 -3926.0,0.7223445100433592 -3927.0,0.7220950641684906 -3928.0,0.7218457044342982 -3929.0,0.7215964308110351 -3930.0,0.7213472432689647 -3931.0,0.721098141778361 -3932.0,0.7208491263095078 -3933.0,0.7206001968326994 -3934.0,0.7203513533182403 -3935.0,0.7201025957364454 -3936.0,0.7198539240576396 -3937.0,0.7196053382521583 -3938.0,0.719356838290347 -3939.0,0.7191084241425614 -3940.0,0.7188600957791675 -3941.0,0.7186118531705418 -3942.0,0.7183636962870703 -3943.0,0.7181156250991501 -3944.0,0.7178676395771879 -3945.0,0.7176197396916008 -3946.0,0.7173719254128164 -3947.0,0.7171241967112719 -3948.0,0.7168765535574155 -3949.0,0.7166289959217048 -3950.0,0.7163815237746083 -3951.0,0.7161341370866041 -3952.0,0.7158868358281809 -3953.0,0.7156396199698375 -3954.0,0.7153924894820827 -3955.0,0.7151454443354358 -3956.0,0.714898484500426 -3957.0,0.7146516099475929 -3958.0,0.7144048206474861 -3959.0,0.7141581165706654 -3960.0,0.7139114976877009 -3961.0,0.7136649639691727 -3962.0,0.7134185153856711 -3963.0,0.7131721519077966 -3964.0,0.7129258735061599 -3965.0,0.7126796801513817 -3966.0,0.712433571814093 -3967.0,0.7121875484649348 -3968.0,0.7119416100745584 -3969.0,0.711695756613625 -3970.0,0.7114499880528062 -3971.0,0.7112043043627836 -3972.0,0.7109587055142488 -3973.0,0.7107131914779038 -3974.0,0.7104677622244604 -3975.0,0.7102224177246408 -3976.0,0.7099771579491773 -3977.0,0.7097319828688119 -3978.0,0.7094868924542973 -3979.0,0.7092418866763959 -3980.0,0.7089969655058801 -3981.0,0.7087521289135329 -3982.0,0.7085073768701469 -3983.0,0.7082627093465249 -3984.0,0.70801812631348 -3985.0,0.7077736277418352 -3986.0,0.7075292136024236 -3987.0,0.7072848838660883 -3988.0,0.7070406385036826 -3989.0,0.7067964774860698 -3990.0,0.7065524007841234 -3991.0,0.7063084083687265 -3992.0,0.7060645002107729 -3993.0,0.7058206762811662 -3994.0,0.7055769365508197 -3995.0,0.7053332809906571 -3996.0,0.705089709571612 -3997.0,0.7048462222646283 -3998.0,0.7046028190406597 -3999.0,0.7043594998706699 -4000.0,0.7041162647256327 -4001.0,0.7038731135765319 -4002.0,0.7036300463943614 -4003.0,0.7033870631501251 -4004.0,0.7031441638148367 -4005.0,0.7029013483595203 -4006.0,0.7026586167552096 -4007.0,0.7024159689729487 -4008.0,0.7021734049837912 -4009.0,0.7019309247588011 -4010.0,0.7016885282690525 -4011.0,0.7014462154856289 -4012.0,0.7012039863796244 -4013.0,0.7009618409221428 -4014.0,0.7007197790842978 -4015.0,0.7004778008372133 -4016.0,0.7002359061520231 -4017.0,0.6999940949998709 -4018.0,0.6997523673519102 -4019.0,0.6995107231793048 -4020.0,0.6992691624532285 -4021.0,0.6990276851448645 -4022.0,0.6987862912254065 -4023.0,0.698544980666058 -4024.0,0.6983037534380324 -4025.0,0.698062609512553 -4026.0,0.6978215488608531 -4027.0,0.697580571454176 -4028.0,0.6973396772637747 -4029.0,0.6970988662609123 -4030.0,0.6968581384168621 -4031.0,0.6966174937029066 -4032.0,0.6963769320903389 -4033.0,0.6961364535504616 -4034.0,0.6958960580545875 -4035.0,0.6956557455740392 -4036.0,0.6954155160801491 -4037.0,0.6951753695442595 -4038.0,0.6949353059377227 -4039.0,0.6946953252319009 -4040.0,0.6944554273981662 -4041.0,0.6942156124079004 -4042.0,0.6939758802324956 -4043.0,0.6937362308433531 -4044.0,0.6934966642118848 -4045.0,0.693257180309512 -4046.0,0.693017779107666 -4047.0,0.692778460577788 -4048.0,0.6925392246913292 -4049.0,0.6923000714197503 -4050.0,0.6920610007345221 -4051.0,0.6918220126071253 -4052.0,0.6915831070090503 -4053.0,0.6913442839117974 -4054.0,0.6911055432868768 -4055.0,0.6908668851058083 -4056.0,0.690628309340122 -4057.0,0.6903898159613573 -4058.0,0.6901514049410639 -4059.0,0.6899130762508008 -4060.0,0.6896748298621375 -4061.0,0.6894366657466526 -4062.0,0.6891985838759351 -4063.0,0.6889605842215836 -4064.0,0.6887226667552062 -4065.0,0.6884848314484213 -4066.0,0.6882470782728568 -4067.0,0.6880094072001506 -4068.0,0.68777181820195 -4069.0,0.6875343112499126 -4070.0,0.6872968863157055 -4071.0,0.6870595433710057 -4072.0,0.6868222823874998 -4073.0,0.6865851033368844 -4074.0,0.6863480061908657 -4075.0,0.6861109909211596 -4076.0,0.6858740574994922 -4077.0,0.6856372058975989 -4078.0,0.685400436087225 -4079.0,0.6851637480401257 -4080.0,0.6849271417280658 -4081.0,0.6846906171228199 -4082.0,0.6844541741961722 -4083.0,0.684217812919917 -4084.0,0.683981533265858 -4085.0,0.6837453352058088 -4086.0,0.6835092187115926 -4087.0,0.6832731837550426 -4088.0,0.6830372303080015 -4089.0,0.6828013583423216 -4090.0,0.6825655678298652 -4091.0,0.6823298587425044 -4092.0,0.6820942310521205 -4093.0,0.6818586847306051 -4094.0,0.6816232197498591 -4095.0,0.6813878360817932 -4096.0,0.681152533698328 -4097.0,0.6809173125713935 -4098.0,0.6806821726729296 -4099.0,0.6804471139748859 -4100.0,0.6802121364492215 -4101.0,0.6799772400679054 -4102.0,0.679742424802916 -4103.0,0.6795076906262417 -4104.0,0.6792730375098803 -4105.0,0.6790384654258396 -4106.0,0.6788039743461366 -4107.0,0.6785695642427985 -4108.0,0.6783352350878616 -4109.0,0.6781009868533724 -4110.0,0.6778668195113866 -4111.0,0.6776327330339699 -4112.0,0.6773987273931973 -4113.0,0.6771648025611537 -4114.0,0.6769309585099338 -4115.0,0.6766971952116415 -4116.0,0.6764635126383904 -4117.0,0.6762299107623042 -4118.0,0.6759963895555157 -4119.0,0.6757629489901675 -4120.0,0.675529589038412 -4121.0,0.6752963096724108 -4122.0,0.6750631108643357 -4123.0,0.6748299925863676 -4124.0,0.6745969548106971 -4125.0,0.6743639975095247 -4126.0,0.6741311206550602 -4127.0,0.673898324219523 -4128.0,0.6736656081751423 -4129.0,0.6734329724941568 -4130.0,0.6732004171488146 -4131.0,0.6729679421113738 -4132.0,0.6727355473541015 -4133.0,0.6725032328492749 -4134.0,0.6722709985691806 -4135.0,0.6720388444861146 -4136.0,0.6718067705723827 -4137.0,0.6715747768003002 -4138.0,0.6713428631421919 -4139.0,0.6711110295703921 -4140.0,0.670879276057245 -4141.0,0.6706476025751038 -4142.0,0.6704160090963318 -4143.0,0.6701844955933014 -4144.0,0.6699530620383948 -4145.0,0.6697217084040036 -4146.0,0.6694904346625291 -4147.0,0.6692592407863819 -4148.0,0.6690281267479824 -4149.0,0.6687970925197604 -4150.0,0.668566138074155 -4151.0,0.6683352633836152 -4152.0,0.6681044684205992 -4153.0,0.667873753157575 -4154.0,0.6676431175670198 -4155.0,0.6674125616214205 -4156.0,0.6671820852932736 -4157.0,0.6669516885550847 -4158.0,0.6667213713793694 -4159.0,0.6664911337386523 -4160.0,0.6662609756054679 -4161.0,0.6660308969523601 -4162.0,0.6658008977518818 -4163.0,0.6655709779765961 -4164.0,0.6653411375990753 -4165.0,0.6651113765919009 -4166.0,0.6648816949276642 -4167.0,0.6646520925789658 -4168.0,0.6644225695184159 -4169.0,0.6641931257186341 -4170.0,0.6639637611522492 -4171.0,0.6637344757918999 -4172.0,0.663505269610234 -4173.0,0.663276142579909 -4174.0,0.6630470946735916 -4175.0,0.6628181258639582 -4176.0,0.6625892361236942 -4177.0,0.6623604254254951 -4178.0,0.6621316937420652 -4179.0,0.6619030410461185 -4180.0,0.6616744673103785 -4181.0,0.661445972507578 -4182.0,0.661217556610459 -4183.0,0.6609892195917735 -4184.0,0.6607609614242824 -4185.0,0.6605327820807562 -4186.0,0.6603046815339747 -4187.0,0.6600766597567272 -4188.0,0.6598487167218124 -4189.0,0.6596208524020384 -4190.0,0.6593930667702225 -4191.0,0.6591653597991916 -4192.0,0.6589377314617819 -4193.0,0.6587101817308391 -4194.0,0.658482710579218 -4195.0,0.6582553179797832 -4196.0,0.6580280039054083 -4197.0,0.6578007683289763 -4198.0,0.6575736112233797 -4199.0,0.6573465325615203 -4200.0,0.6571195323163094 -4201.0,0.6568926104606674 -4202.0,0.6566657669675241 -4203.0,0.656439001809819 -4204.0,0.6562123149605004 -4205.0,0.6559857063925264 -4206.0,0.655759176078864 -4207.0,0.6555327239924902 -4208.0,0.6553063501063905 -4209.0,0.6550800543935603 -4210.0,0.6548538368270043 -4211.0,0.6546276973797361 -4212.0,0.6544016360247792 -4213.0,0.6541756527351661 -4214.0,0.6539497474839384 -4215.0,0.6537239202441476 -4216.0,0.6534981709888538 -4217.0,0.653272499691127 -4218.0,0.6530469063240462 -4219.0,0.6528213908606998 -4220.0,0.6525959532741852 -4221.0,0.6523705935376097 -4222.0,0.6521453116240893 -4223.0,0.6519201075067496 -4224.0,0.6516949811587254 -4225.0,0.6514699325531607 -4226.0,0.6512449616632088 -4227.0,0.6510200684620324 -4228.0,0.6507952529228035 -4229.0,0.650570515018703 -4230.0,0.6503458547229214 -4231.0,0.6501212720086584 -4232.0,0.6498967668491229 -4233.0,0.6496723392175331 -4234.0,0.6494479890871164 -4235.0,0.6492237164311095 -4236.0,0.6489995212227582 -4237.0,0.6487754034353177 -4238.0,0.6485513630420525 -4239.0,0.648327400016236 -4240.0,0.6481035143311512 -4241.0,0.6478797059600901 -4242.0,0.6476559748763541 -4243.0,0.6474323210532535 -4244.0,0.6472087444641083 -4245.0,0.6469852450822472 -4246.0,0.6467618228810085 -4247.0,0.6465384778337394 -4248.0,0.6463152099137968 -4249.0,0.646092019094546 -4250.0,0.6458689053493624 -4251.0,0.6456458686516299 -4252.0,0.6454229089747419 -4253.0,0.6452000262921009 -4254.0,0.6449772205771188 -4255.0,0.6447544918032163 -4256.0,0.6445318399438236 -4257.0,0.6443092649723798 -4258.0,0.6440867668623336 -4259.0,0.6438643455871423 -4260.0,0.6436420011202729 -4261.0,0.6434197334352012 -4262.0,0.6431975425054123 -4263.0,0.6429754283044005 -4264.0,0.6427533908056691 -4265.0,0.6425314299827306 -4266.0,0.6423095458091069 -4267.0,0.6420877382583288 -4268.0,0.6418660073039361 -4269.0,0.6416443529194781 -4270.0,0.6414227750785129 -4271.0,0.6412012737546079 -4272.0,0.6409798489213396 -4273.0,0.6407585005522939 -4274.0,0.6405372286210652 -4275.0,0.6403160331012575 -4276.0,0.6400949139664839 -4277.0,0.6398738711903662 -4278.0,0.6396529047465359 -4279.0,0.6394320146086333 -4280.0,0.6392112007503077 -4281.0,0.6389904631452176 -4282.0,0.6387698017670307 -4283.0,0.6385492165894235 -4284.0,0.6383287075860822 -4285.0,0.6381082747307014 -4286.0,0.6378879179969851 -4287.0,0.6376676373586463 -4288.0,0.6374474327894072 -4289.0,0.6372273042629991 -4290.0,0.6370072517531621 -4291.0,0.6367872752336456 -4292.0,0.636567374678208 -4293.0,0.6363475500606168 -4294.0,0.6361278013546485 -4295.0,0.6359081285340887 -4296.0,0.635688531572732 -4297.0,0.6354690104443821 -4298.0,0.6352495651228517 -4299.0,0.6350301955819627 -4300.0,0.6348109017955458 -4301.0,0.6345916837374408 -4302.0,0.6343725413814967 -4303.0,0.6341534747015714 -4304.0,0.6339344836715317 -4305.0,0.6337155682652537 -4306.0,0.6334967284566224 -4307.0,0.6332779642195318 -4308.0,0.6330592755278849 -4309.0,0.6328406623555937 -4310.0,0.6326221246765793 -4311.0,0.6324036624647716 -4312.0,0.6321852756941099 -4313.0,0.6319669643385422 -4314.0,0.6317487283720252 -4315.0,0.6315305677685253 -4316.0,0.6313124825020175 -4317.0,0.6310944725464859 -4318.0,0.6308765378759231 -4319.0,0.6306586784643314 -4320.0,0.6304408942857218 -4321.0,0.6302231853141141 -4322.0,0.6300055515235372 -4323.0,0.6297879928880291 -4324.0,0.6295705093816365 -4325.0,0.6293531009784152 -4326.0,0.6291357676524302 -4327.0,0.628918509377755 -4328.0,0.6287013261284722 -4329.0,0.6284842178786736 -4330.0,0.6282671846024597 -4331.0,0.62805022627394 -4332.0,0.627833342867233 -4333.0,0.6276165343564661 -4334.0,0.6273998007157755 -4335.0,0.6271831419193067 -4336.0,0.6269665579412136 -4337.0,0.6267500487556594 -4338.0,0.6265336143368163 -4339.0,0.6263172546588651 -4340.0,0.6261009696959957 -4341.0,0.6258847594224068 -4342.0,0.6256686238123063 -4343.0,0.6254525628399106 -4344.0,0.6252365764794452 -4345.0,0.6250206647051447 -4346.0,0.6248048274912522 -4347.0,0.6245890648120199 -4348.0,0.624373376641709 -4349.0,0.6241577629545895 -4350.0,0.6239422237249401 -4351.0,0.6237267589270487 -4352.0,0.6235113685352117 -4353.0,0.6232960525237348 -4354.0,0.6230808108669323 -4355.0,0.6228656435391275 -4356.0,0.6226505505146525 -4357.0,0.6224355317678482 -4358.0,0.6222205872730644 -4359.0,0.6220057170046598 -4360.0,0.6217909209370021 -4361.0,0.6215761990444675 -4362.0,0.6213615513014413 -4363.0,0.6211469776823177 -4364.0,0.6209324781614995 -4365.0,0.6207180527133986 -4366.0,0.6205037013124356 -4367.0,0.6202894239330398 -4368.0,0.6200752205496495 -4369.0,0.6198610911367118 -4370.0,0.6196470356686827 -4371.0,0.6194330541200269 -4372.0,0.619219146465218 -4373.0,0.6190053126787384 -4374.0,0.6187915527350791 -4375.0,0.6185778666087403 -4376.0,0.6183642542742307 -4377.0,0.6181507157060679 -4378.0,0.6179372508787785 -4379.0,0.6177238597668974 -4380.0,0.6175105423449688 -4381.0,0.6172972985875453 -4382.0,0.6170841284691888 -4383.0,0.6168710319644694 -4384.0,0.6166580090479663 -4385.0,0.6164450596942673 -4386.0,0.6162321838779694 -4387.0,0.6160193815736779 -4388.0,0.6158066527560069 -4389.0,0.6155939973995795 -4390.0,0.6153814154790276 -4391.0,0.6151689069689915 -4392.0,0.6149564718441207 -4393.0,0.6147441100790731 -4394.0,0.6145318216485156 -4395.0,0.6143196065271236 -4396.0,0.6141074646895814 -4397.0,0.6138953961105822 -4398.0,0.6136834007648276 -4399.0,0.6134714786270281 -4400.0,0.6132596296719031 -4401.0,0.6130478538741803 -4402.0,0.6128361512085966 -4403.0,0.6126245216498973 -4404.0,0.6124129651728367 -4405.0,0.6122014817521775 -4406.0,0.6119900713626912 -4407.0,0.6117787339791583 -4408.0,0.6115674695763677 -4409.0,0.611356278129117 -4410.0,0.6111451596122127 -4411.0,0.6109341140004699 -4412.0,0.6107231412687124 -4413.0,0.6105122413917726 -4414.0,0.6103014143444918 -4415.0,0.6100906601017199 -4416.0,0.6098799786383153 -4417.0,0.6096693699291453 -4418.0,0.6094588339490858 -4419.0,0.6092483706730215 -4420.0,0.6090379800758456 -4421.0,0.60882766213246 -4422.0,0.6086174168177754 -4423.0,0.6084072441067109 -4424.0,0.6081971439741946 -4425.0,0.6079871163951629 -4426.0,0.6077771613445612 -4427.0,0.6075672787973434 -4428.0,0.6073574687284718 -4429.0,0.607147731112918 -4430.0,0.6069380659256616 -4431.0,0.606728473141691 -4432.0,0.6065189527360033 -4433.0,0.6063095046836044 -4434.0,0.6061001289595087 -4435.0,0.6058908255387391 -4436.0,0.6056815943963272 -4437.0,0.6054724355073132 -4438.0,0.6052633488467462 -4439.0,0.6050543343896835 -4440.0,0.6048453921111911 -4441.0,0.6046365219863441 -4442.0,0.6044277239902254 -4443.0,0.6042189980979271 -4444.0,0.6040103442845497 -4445.0,0.6038017625252025 -4446.0,0.6035932527950029 -4447.0,0.6033848150690774 -4448.0,0.6031764493225609 -4449.0,0.6029681555305967 -4450.0,0.6027599336683371 -4451.0,0.6025517837109428 -4452.0,0.6023437056335827 -4453.0,0.602135699411435 -4454.0,0.6019277650196857 -4455.0,0.6017199024335299 -4456.0,0.6015121116281712 -4457.0,0.6013043925788216 -4458.0,0.6010967452607017 -4459.0,0.6008891696490407 -4460.0,0.6006816657190764 -4461.0,0.6004742334460551 -4462.0,0.6002668728052314 -4463.0,0.6000595837718691 -4464.0,0.5998523663212397 -4465.0,0.5996452204286241 -4466.0,0.599438146069311 -4467.0,0.599231143218598 -4468.0,0.5990242118517912 -4469.0,0.5988173519442053 -4470.0,0.5986105634711631 -4471.0,0.5984038464079966 -4472.0,0.5981972007300458 -4473.0,0.5979906264126594 -4474.0,0.5977841234311946 -4475.0,0.597577691761017 -4476.0,0.597371331377501 -4477.0,0.5971650422560292 -4478.0,0.5969588243719928 -4479.0,0.5967526777007914 -4480.0,0.5965466022178335 -4481.0,0.5963405978985354 -4482.0,0.5961346647183227 -4483.0,0.5959288026526288 -4484.0,0.5957230116768961 -4485.0,0.595517291766575 -4486.0,0.5953116428971246 -4487.0,0.5951060650440126 -4488.0,0.5949005581827151 -4489.0,0.5946951222887167 -4490.0,0.5944897573375101 -4491.0,0.5942844633045969 -4492.0,0.5940792401654872 -4493.0,0.5938740878956992 -4494.0,0.5936690064707597 -4495.0,0.593463995866204 -4496.0,0.593259056057576 -4497.0,0.5930541870204277 -4498.0,0.5928493887303197 -4499.0,0.5926446611628211 -4500.0,0.5924400042935094 -4501.0,0.5922354180979705 -4502.0,0.5920309025517989 -4503.0,0.5918264576305973 -4504.0,0.5916220833099768 -4505.0,0.5914177795655572 -4506.0,0.5912135463729664 -4507.0,0.5910093837078411 -4508.0,0.5908052915458258 -4509.0,0.5906012698625742 -4510.0,0.5903973186337479 -4511.0,0.5901934378350168 -4512.0,0.5899896274420595 -4513.0,0.589785887430563 -4514.0,0.5895822177762227 -4515.0,0.5893786184547419 -4516.0,0.589175089441833 -4517.0,0.5889716307132165 -4518.0,0.5887682422446211 -4519.0,0.5885649240117841 -4520.0,0.588361675990451 -4521.0,0.588158498156376 -4522.0,0.5879553904853214 -4523.0,0.5877523529530579 -4524.0,0.5875493855353646 -4525.0,0.587346488208029 -4526.0,0.5871436609468469 -4527.0,0.5869409037276225 -4528.0,0.5867382165261683 -4529.0,0.5865355993183052 -4530.0,0.5863330520798626 -4531.0,0.5861305747866778 -4532.0,0.5859281674145971 -4533.0,0.5857258299394744 -4534.0,0.5855235623371726 -4535.0,0.5853213645835625 -4536.0,0.5851192366545235 -4537.0,0.584917178525943 -4538.0,0.5847151901737171 -4539.0,0.5845132715737501 -4540.0,0.5843114227019545 -4541.0,0.5841096435342512 -4542.0,0.5839079340465695 -4543.0,0.5837062942148469 -4544.0,0.5835047240150291 -4545.0,0.5833032234230704 -4546.0,0.5831017924149331 -4547.0,0.5829004309665882 -4548.0,0.5826991390540145 -4549.0,0.5824979166531995 -4550.0,0.5822967637401387 -4551.0,0.5820956802908361 -4552.0,0.581894666281304 -4553.0,0.5816937216875627 -4554.0,0.5814928464856411 -4555.0,0.5812920406515764 -4556.0,0.5810913041614135 -4557.0,0.5808906369912064 -4558.0,0.5806900391170168 -4559.0,0.5804895105149148 -4560.0,0.580289051160979 -4561.0,0.5800886610312959 -4562.0,0.5798883401019603 -4563.0,0.5796880883490756 -4564.0,0.5794879057487532 -4565.0,0.5792877922771127 -4566.0,0.5790877479102821 -4567.0,0.5788877726243974 -4568.0,0.5786878663956031 -4569.0,0.5784880292000519 -4570.0,0.5782882610139046 -4571.0,0.5780885618133305 -4572.0,0.5778889315745066 -4573.0,0.5776893702736188 -4574.0,0.5774898778868607 -4575.0,0.5772904543904342 -4576.0,0.5770910997605498 -4577.0,0.5768918139734259 -4578.0,0.5766925970052892 -4579.0,0.5764934488323743 -4580.0,0.5762943694309245 -4581.0,0.576095358777191 -4582.0,0.5758964168474333 -4583.0,0.5756975436179191 -4584.0,0.5754987390649243 -4585.0,0.5753000031647328 -4586.0,0.5751013358936371 -4587.0,0.5749027372279375 -4588.0,0.5747042071439427 -4589.0,0.5745057456179693 -4590.0,0.5743073526263425 -4591.0,0.5741090281453954 -4592.0,0.5739107721514694 -4593.0,0.5737125846209139 -4594.0,0.5735144655300866 -4595.0,0.5733164148553533 -4596.0,0.5731184325730881 -4597.0,0.5729205186596732 -4598.0,0.5727226730914988 -4599.0,0.5725248958449634 -4600.0,0.5723271868964735 -4601.0,0.572129546222444 -4602.0,0.5719319737992978 -4603.0,0.571734469603466 -4604.0,0.5715370336113876 -4605.0,0.5713396657995102 -4606.0,0.571142366144289 -4607.0,0.5709451346221878 -4608.0,0.570747971209678 -4609.0,0.5705508758832398 -4610.0,0.570353848619361 -4611.0,0.5701568893945378 -4612.0,0.5699599981852742 -4613.0,0.5697631749680826 -4614.0,0.5695664197194834 -4615.0,0.5693697324160053 -4616.0,0.5691731130341847 -4617.0,0.5689765615505666 -4618.0,0.5687800779417036 -4619.0,0.5685836621841568 -4620.0,0.5683873142544951 -4621.0,0.5681910341292957 -4622.0,0.5679948217851438 -4623.0,0.5677986771986328 -4624.0,0.5676026003463639 -4625.0,0.5674065912049466 -4626.0,0.5672106497509986 -4627.0,0.5670147759611452 -4628.0,0.5668189698120204 -4629.0,0.5666232312802659 -4630.0,0.5664275603425314 -4631.0,0.5662319569754748 -4632.0,0.566036421155762 -4633.0,0.5658409528600673 -4634.0,0.5656455520650724 -4635.0,0.5654502187474676 -4636.0,0.565254952883951 -4637.0,0.5650597544512289 -4638.0,0.5648646234260154 -4639.0,0.5646695597850329 -4640.0,0.5644745635050116 -4641.0,0.56427963456269 -4642.0,0.5640847729348145 -4643.0,0.5638899785981395 -4644.0,0.5636952515294273 -4645.0,0.5635005917054486 -4646.0,0.563305999102982 -4647.0,0.5631114736988136 -4648.0,0.5629170154697383 -4649.0,0.5627226243925585 -4650.0,0.5625283004440848 -4651.0,0.5623340436011357 -4652.0,0.5621398538405379 -4653.0,0.5619457311391258 -4654.0,0.5617516754737423 -4655.0,0.5615576868212376 -4656.0,0.5613637651584705 -4657.0,0.5611699104623076 -4658.0,0.5609761227096233 -4659.0,0.5607824018773001 -4660.0,0.5605887479422286 -4661.0,0.5603951608813073 -4662.0,0.5602016406714427 -4663.0,0.5600081872895492 -4664.0,0.5598148007125493 -4665.0,0.5596214809173732 -4666.0,0.5594282278809595 -4667.0,0.5592350415802544 -4668.0,0.5590419219922121 -4669.0,0.558848869093795 -4670.0,0.5586558828619732 -4671.0,0.5584629632737249 -4672.0,0.5582701103060362 -4673.0,0.5580773239359011 -4674.0,0.5578846041403217 -4675.0,0.5576919508963079 -4676.0,0.5574993641808774 -4677.0,0.5573068439710561 -4678.0,0.5571143902438779 -4679.0,0.5569220029763843 -4680.0,0.5567296821456249 -4681.0,0.5565374277286573 -4682.0,0.556345239702547 -4683.0,0.5561531180443673 -4684.0,0.5559610627311995 -4685.0,0.5557690737401327 -4686.0,0.5555771510482641 -4687.0,0.5553852946326988 -4688.0,0.5551935044705496 -4689.0,0.5550017805389373 -4690.0,0.5548101228149909 -4691.0,0.5546185312758468 -4692.0,0.5544270058986496 -4693.0,0.5542355466605515 -4694.0,0.5540441535387132 -4695.0,0.5538528265103027 -4696.0,0.553661565552496 -4697.0,0.5534703706424772 -4698.0,0.553279241757438 -4699.0,0.5530881788745783 -4700.0,0.5528971819711055 -4701.0,0.5527062510242352 -4702.0,0.5525153860111907 -4703.0,0.5523245869092032 -4704.0,0.5521338536955117 -4705.0,0.5519431863473632 -4706.0,0.5517525848420123 -4707.0,0.5515620491567219 -4708.0,0.5513715792687622 -4709.0,0.5511811751554118 -4710.0,0.5509908367939567 -4711.0,0.550800564161691 -4712.0,0.5506103572359166 -4713.0,0.550420215993943 -4714.0,0.5502301404130879 -4715.0,0.5500401304706768 -4716.0,0.5498501861440426 -4717.0,0.5496603074105265 -4718.0,0.5494704942474773 -4719.0,0.5492807466322518 -4720.0,0.5490910645422142 -4721.0,0.5489014479547372 -4722.0,0.5487118968472006 -4723.0,0.5485224111969924 -4724.0,0.5483329909815086 -4725.0,0.5481436361781523 -4726.0,0.5479543467643353 -4727.0,0.5477651227174763 -4728.0,0.5475759640150027 -4729.0,0.5473868706343491 -4730.0,0.5471978425529579 -4731.0,0.5470088797482796 -4732.0,0.5468199821977722 -4733.0,0.5466311498789016 -4734.0,0.5464423827691415 -4735.0,0.5462536808459734 -4736.0,0.5460650440868865 -4737.0,0.5458764724693778 -4738.0,0.5456879659709521 -4739.0,0.545499524569122 -4740.0,0.5453111482414077 -4741.0,0.5451228369653374 -4742.0,0.5449345907184469 -4743.0,0.5447464094782797 -4744.0,0.5445582932223872 -4745.0,0.5443702419283286 -4746.0,0.5441822555736706 -4747.0,0.543994334135988 -4748.0,0.5438064775928629 -4749.0,0.5436186859218857 -4750.0,0.5434309591006539 -4751.0,0.5432432971067731 -4752.0,0.5430556999178567 -4753.0,0.5428681675115259 -4754.0,0.5426806998654091 -4755.0,0.542493296957143 -4756.0,0.5423059587643716 -4757.0,0.542118685264747 -4758.0,0.5419314764359289 -4759.0,0.5417443322555845 -4760.0,0.5415572527013888 -4761.0,0.5413702377510248 -4762.0,0.5411832873821828 -4763.0,0.540996401572561 -4764.0,0.5408095802998654 -4765.0,0.5406228235418093 -4766.0,0.5404361312761145 -4767.0,0.5402495034805095 -4768.0,0.5400629401327312 -4769.0,0.5398764412105237 -4770.0,0.5396900066916394 -4771.0,0.5395036365538378 -4772.0,0.5393173307748863 -4773.0,0.53913108933256 -4774.0,0.5389449122046418 -4775.0,0.538758799368922 -4776.0,0.5385727508031986 -4777.0,0.5383867664852775 -4778.0,0.538200846392972 -4779.0,0.5380149905041034 -4780.0,0.5378291987965004 -4781.0,0.5376434712479992 -4782.0,0.5374578078364439 -4783.0,0.5372722085396864 -4784.0,0.5370866733355859 -4785.0,0.5369012022020095 -4786.0,0.5367157951168318 -4787.0,0.536530452057935 -4788.0,0.5363451730032093 -4789.0,0.5361599579305519 -4790.0,0.5359748068178682 -4791.0,0.5357897196430711 -4792.0,0.5356046963840808 -4793.0,0.5354197370188255 -4794.0,0.535234841525241 -4795.0,0.5350500098812705 -4796.0,0.5348652420648649 -4797.0,0.5346805380539829 -4798.0,0.5344958978265905 -4799.0,0.5343113213606614 -4800.0,0.5341268086341773 -4801.0,0.5339423596251268 -4802.0,0.5337579743115067 -4803.0,0.5335736526713212 -4804.0,0.533389394682582 -4805.0,0.5332052003233084 -4806.0,0.5330210695715275 -4807.0,0.5328370024052738 -4808.0,0.5326529988025893 -4809.0,0.5324690587415238 -4810.0,0.5322851822001347 -4811.0,0.5321013691564866 -4812.0,0.5319176195886524 -4813.0,0.5317339334747115 -4814.0,0.5315503107927521 -4815.0,0.5313667515208689 -4816.0,0.5311832556371648 -4817.0,0.5309998231197501 -4818.0,0.5308164539467426 -4819.0,0.5306331480962677 -4820.0,0.5304499055464584 -4821.0,0.5302667262754551 -4822.0,0.5300836102614058 -4823.0,0.5299005574824663 -4824.0,0.5297175679167996 -4825.0,0.5295346415425765 -4826.0,0.529351778337975 -4827.0,0.529168978281181 -4828.0,0.5289862413503879 -4829.0,0.5288035675237962 -4830.0,0.5286209567796145 -4831.0,0.5284384090960585 -4832.0,0.5282559244513518 -4833.0,0.5280735028237252 -4834.0,0.5278911441914171 -4835.0,0.5277088485326735 -4836.0,0.5275266158257478 -4837.0,0.5273444460489011 -4838.0,0.5271623391804016 -4839.0,0.5269802951985255 -4840.0,0.5267983140815563 -4841.0,0.5266163958077849 -4842.0,0.5264345403555097 -4843.0,0.5262527477030368 -4844.0,0.5260710178286796 -4845.0,0.5258893507107592 -4846.0,0.5257077463276038 -4847.0,0.5255262046575494 -4848.0,0.5253447256789395 -4849.0,0.5251633093701249 -4850.0,0.5249819557094639 -4851.0,0.5248006646753225 -4852.0,0.5246194362460739 -4853.0,0.5244382704000988 -4854.0,0.5242571671157855 -4855.0,0.5240761263715298 -4856.0,0.5238951481457347 -4857.0,0.5237142324168109 -4858.0,0.5235333791631764 -4859.0,0.5233525883632569 -4860.0,0.5231718599954851 -4861.0,0.5229911940383016 -4862.0,0.5228105904701544 -4863.0,0.5226300492694985 -4864.0,0.5224495704147969 -4865.0,0.5222691538845197 -4866.0,0.5220887996571446 -4867.0,0.5219085077111565 -4868.0,0.521728278025048 -4869.0,0.5215481105773189 -4870.0,0.5213680053464765 -4871.0,0.5211879623110359 -4872.0,0.521007981449519 -4873.0,0.5208280627404553 -4874.0,0.5206482061623822 -4875.0,0.5204684116938436 -4876.0,0.5202886793133918 -4877.0,0.5201090089995858 -4878.0,0.5199294007309923 -4879.0,0.5197498544861853 -4880.0,0.5195703702437462 -4881.0,0.519390947982264 -4882.0,0.5192115876803349 -4883.0,0.5190322893165624 -4884.0,0.5188530528695576 -4885.0,0.5186738783179389 -4886.0,0.518494765640332 -4887.0,0.5183157148153701 -4888.0,0.5181367258216939 -4889.0,0.5179577986379511 -4890.0,0.5177789332427971 -4891.0,0.5176001296148945 -4892.0,0.5174213877329134 -4893.0,0.5172427075755311 -4894.0,0.5170640891214325 -4895.0,0.5168855323493097 -4896.0,0.516707037237862 -4897.0,0.5165286037657966 -4898.0,0.5163502319118272 -4899.0,0.5161719216546756 -4900.0,0.5159936729730707 -4901.0,0.5158154858457488 -4902.0,0.5156373602514533 -4903.0,0.5154592961689353 -4904.0,0.5152812935769528 -4905.0,0.5151033524542716 -4906.0,0.5149254727796646 -4907.0,0.5147476545319121 -4908.0,0.5145698976898014 -4909.0,0.5143922022321277 -4910.0,0.5142145681376931 -4911.0,0.5140369953853072 -4912.0,0.5138594839537868 -4913.0,0.5136820338219561 -4914.0,0.5135046449686467 -4915.0,0.5133273173726972 -4916.0,0.5131500510129539 -4917.0,0.5129728458682701 -4918.0,0.5127957019175066 -4919.0,0.5126186191395312 -4920.0,0.5124415975132196 -4921.0,0.5122646370174542 -4922.0,0.5120877376311248 -4923.0,0.5119108993331287 -4924.0,0.5117341221023705 -4925.0,0.5115574059177618 -4926.0,0.5113807507582216 -4927.0,0.5112041566026765 -4928.0,0.5110276234300598 -4929.0,0.5108511512193125 -4930.0,0.5106747399493827 -4931.0,0.510498389599226 -4932.0,0.510322100147805 -4933.0,0.5101458715740895 -4934.0,0.5099697038570569 -4935.0,0.5097935969756916 -4936.0,0.5096175509089853 -4937.0,0.5094415656359371 -4938.0,0.5092656411355532 -4939.0,0.5090897773868469 -4940.0,0.5089139743688392 -4941.0,0.5087382320605581 -4942.0,0.5085625504410386 -4943.0,0.5083869294893233 -4944.0,0.5082113691844619 -4945.0,0.5080358695055112 -4946.0,0.5078604304315355 -4947.0,0.5076850519416063 -4948.0,0.5075097340148019 -4949.0,0.5073344766302085 -4950.0,0.507159279766919 -4951.0,0.5069841434040336 -4952.0,0.5068090675206601 -4953.0,0.506634052095913 -4954.0,0.5064590971089141 -4955.0,0.5062842025387929 -4956.0,0.5061093683646856 -4957.0,0.5059345945657355 -4958.0,0.5057598811210938 -4959.0,0.5055852280099182 -4960.0,0.505410635211374 -4961.0,0.5052361027046335 -4962.0,0.5050616304688761 -4963.0,0.5048872184832887 -4964.0,0.5047128667270651 -4965.0,0.5045385751794065 -4966.0,0.5043643438195211 -4967.0,0.5041901726266245 -4968.0,0.5040160615799393 -4969.0,0.5038420106586953 -4970.0,0.5036680198421294 -4971.0,0.5034940891094859 -4972.0,0.5033202184400162 -4973.0,0.5031464078129786 -4974.0,0.5029726572076387 -4975.0,0.5027989666032696 -4976.0,0.5026253359791513 -4977.0,0.5024517653145706 -4978.0,0.5022782545888219 -4979.0,0.5021048037812068 -4980.0,0.5019314128710338 -4981.0,0.5017580818376186 -4982.0,0.501584810660284 -4983.0,0.5014115993183602 -4984.0,0.5012384477911842 -4985.0,0.5010653560581003 -4986.0,0.50089232409846 -4987.0,0.5007193518916218 -4988.0,0.5005464394169513 -4989.0,0.5003735866538214 -4990.0,0.5002007935816121 -4991.0,0.5000280601797101 -4992.0,0.4998553864275101 -4993.0,0.4996827723044129 -4994.0,0.4995102177898271 -4995.0,0.4993377228631683 -4996.0,0.4991652875038589 -4997.0,0.49899291169132876 -4998.0,0.49882059540501467 -4999.0,0.49864833862436053 -5000.0,0.4984761413288174 -5001.0,0.4983040034978433 -5002.0,0.4981319251109036 -5003.0,0.49795990614747054 -5004.0,0.49778794658702347 -5005.0,0.49761604640904883 -5006.0,0.4974442055930403 -5007.0,0.4972724241184985 -5008.0,0.49710070196493106 -5009.0,0.4969290391118529 -5010.0,0.49675743553878576 -5011.0,0.4965858912252587 -5012.0,0.4964144061508076 -5013.0,0.4962429802949757 -5014.0,0.4960716136373131 -5015.0,0.495900306157377 -5016.0,0.49572905783473165 -5017.0,0.49555786864894835 -5018.0,0.4953867385796055 -5019.0,0.4952156676062886 -5020.0,0.49504465570859 -5021.0,0.4948737028661093 -5022.0,0.4947028090584531 -5023.0,0.49453197426523493 -5024.0,0.49436119846607557 -5025.0,0.4941904816406026 -5026.0,0.4940198237684507 -5027.0,0.49384922482926186 -5028.0,0.4936786848026846 -5029.0,0.49350820366837495 -5030.0,0.49333778140599566 -5031.0,0.4931674179952165 -5032.0,0.49299711341571456 -5033.0,0.4928268676471736 -5034.0,0.49265668066928464 -5035.0,0.4924865524617455 -5036.0,0.49231648300426123 -5037.0,0.49214647227654373 -5038.0,0.491976520258312 -5039.0,0.49180662692929195 -5040.0,0.4916367922692166 -5041.0,0.49146701625782585 -5042.0,0.4912972988748667 -5043.0,0.4911276401000931 -5044.0,0.490958039913266 -5045.0,0.4907884982941533 -5046.0,0.49061901522252993 -5047.0,0.49044959067817784 -5048.0,0.4902802246408859 -5049.0,0.4901109170904499 -5050.0,0.48994166800667277 -5051.0,0.4897724773693643 -5052.0,0.48960334515834136 -5053.0,0.4894342713534276 -5054.0,0.4892652559344538 -5055.0,0.4890962988812576 -5056.0,0.48892740017368375 -5057.0,0.4887585597915838 -5058.0,0.48858977771481626 -5059.0,0.4884210539232468 -5060.0,0.48825238839674784 -5061.0,0.4880837811151988 -5062.0,0.4879152320584861 -5063.0,0.48774674120650297 -5064.0,0.48757830853914974 -5065.0,0.4874099340363337 -5066.0,0.48724161767796886 -5067.0,0.4870733594439764 -5068.0,0.4869051593142843 -5069.0,0.48673701726882745 -5070.0,0.48656893328754786 -5071.0,0.4864009073503943 -5072.0,0.4862329394373225 -5073.0,0.48606502952829506 -5074.0,0.48589717760328155 -5075.0,0.48572938364225854 -5076.0,0.48556164762520937 -5077.0,0.4853939695321244 -5078.0,0.48522634934300074 -5079.0,0.48505878703784266 -5080.0,0.4848912825966612 -5081.0,0.4847238359994742 -5082.0,0.4845564472263066 -5083.0,0.48438911625719006 -5084.0,0.48422184307216326 -5085.0,0.48405462765127166 -5086.0,0.48388746997456783 -5087.0,0.48372037002211093 -5088.0,0.48355332777396715 -5089.0,0.48338634321020973 -5090.0,0.48321941631091847 -5091.0,0.48305254705618034 -5092.0,0.4828857354260889 -5093.0,0.4827189814007449 -5094.0,0.4825522849602556 -5095.0,0.48238564608473555 -5096.0,0.4822190647543058 -5097.0,0.48205254094909444 -5098.0,0.4818860746492365 -5099.0,0.4817196658348736 -5100.0,0.48155331448615446 -5101.0,0.48138702058323457 -5102.0,0.48122078410627633 -5103.0,0.4810546050354489 -5104.0,0.48088848335092826 -5105.0,0.4807224190328974 -5106.0,0.48055641206154603 -5107.0,0.4803904624170707 -5108.0,0.48022457007967484 -5109.0,0.48005873502956875 -5110.0,0.4798929572469695 -5111.0,0.47972723671210094 -5112.0,0.4795615734051939 -5113.0,0.479395967306486 -5114.0,0.47923041839622144 -5115.0,0.4790649266546516 -5116.0,0.4788994920620346 -5117.0,0.478734114598635 -5118.0,0.4785687942447248 -5119.0,0.47840353098058236 -5120.0,0.4782383247864929 -5121.0,0.47807317564274865 -5122.0,0.4779080835296484 -5123.0,0.477743048427498 -5124.0,0.47757807031660987 -5125.0,0.4774131491773033 -5126.0,0.47724828498990446 -5127.0,0.4770834777347463 -5128.0,0.47691872739216845 -5129.0,0.4767540339425174 -5130.0,0.4765893973661464 -5131.0,0.4764248176434156 -5132.0,0.4762602947546917 -5133.0,0.47609582868034844 -5134.0,0.4759314194007662 -5135.0,0.4757670668963321 -5136.0,0.4756027711474401 -5137.0,0.4754385321344909 -5138.0,0.475274349837892 -5139.0,0.4751102242380577 -5140.0,0.47494615531540896 -5141.0,0.47478214305037353 -5142.0,0.47461818742338596 -5143.0,0.47445428841488757 -5144.0,0.4742904460053264 -5145.0,0.4741266601751572 -5146.0,0.47396293090484154 -5147.0,0.47379925817484775 -5148.0,0.47363564196565083 -5149.0,0.4734720822577326 -5150.0,0.4733085790315815 -5151.0,0.47314513226769284 -5152.0,0.4729817419465686 -5153.0,0.47281840804871755 -5154.0,0.4726551305546551 -5155.0,0.4724919094449034 -5156.0,0.47232874469999137 -5157.0,0.4721656363004547 -5158.0,0.4720025842268358 -5159.0,0.4718395884596836 -5160.0,0.47167664897955397 -5161.0,0.47151376576700943 -5162.0,0.4713509388026192 -5163.0,0.4711881680669591 -5164.0,0.471025453540612 -5165.0,0.470862795204167 -5166.0,0.47070019303822036 -5167.0,0.47053764702337464 -5168.0,0.47037515714023936 -5169.0,0.4702127233694307 -5170.0,0.4700503456915715 -5171.0,0.4698880240872912 -5172.0,0.46972575853722603 -5173.0,0.469563549022019 -5174.0,0.4694013955223196 -5175.0,0.4692392980187841 -5176.0,0.46907725649207554 -5177.0,0.4689152709228634 -5178.0,0.4687533412918241 -5179.0,0.4685914675796406 -5180.0,0.4684296497670025 -5181.0,0.4682678878346062 -5182.0,0.46810618176315455 -5183.0,0.4679445315333573 -5184.0,0.4677829371259307 -5185.0,0.4676213985215978 -5186.0,0.4674599157010881 -5187.0,0.46729848864513795 -5188.0,0.4671371173344903 -5189.0,0.46697580174989467 -5190.0,0.46681454187210736 -5191.0,0.46665333768189116 -5192.0,0.4664921891600156 -5193.0,0.46633109628725694 -5194.0,0.46617005904439784 -5195.0,0.4660090774122278 -5196.0,0.46584815137154284 -5197.0,0.4656872809031457 -5198.0,0.4655264659878457 -5199.0,0.46536570660645876 -5200.0,0.4652050027398075 -5201.0,0.4650443543687211 -5202.0,0.4648837614740354 -5203.0,0.46472322403659283 -5204.0,0.4645627420372424 -5205.0,0.46440231545683985 -5206.0,0.46424194427624743 -5207.0,0.464081628476334 -5208.0,0.46392136803797507 -5209.0,0.4637611629420528 -5210.0,0.4636010131694558 -5211.0,0.4634409187010794 -5212.0,0.4632808795178255 -5213.0,0.46312089560060254 -5214.0,0.46296096693032573 -5215.0,0.46280109348791665 -5216.0,0.4626412752543036 -5217.0,0.46248151221042144 -5218.0,0.46232180433721154 -5219.0,0.46216215161562196 -5220.0,0.4620025540266073 -5221.0,0.4618430115511287 -5222.0,0.46168352417015396 -5223.0,0.46152409186465737 -5224.0,0.4613647146156198 -5225.0,0.46120539240402875 -5226.0,0.4610461252108782 -5227.0,0.4608869130171687 -5228.0,0.4607277558039075 -5229.0,0.46056865355210824 -5230.0,0.4604096062427912 -5231.0,0.4602506138569832 -5232.0,0.4600916763757176 -5233.0,0.45993279378003427 -5234.0,0.4597739660509797 -5235.0,0.459615193169607 -5236.0,0.4594564751169755 -5237.0,0.4592978118741516 -5238.0,0.45913920342220765 -5239.0,0.4589806497422229 -5240.0,0.45882215081528316 -5241.0,0.4586637066224806 -5242.0,0.458505317144914 -5243.0,0.45834698236368854 -5244.0,0.4581887022599162 -5245.0,0.4580304768147152 -5246.0,0.4578723060092104 -5247.0,0.45771418982453327 -5248.0,0.45755612824182157 -5249.0,0.45739812124221985 -5250.0,0.4572401688068789 -5251.0,0.45708227091695625 -5252.0,0.45692442755361573 -5253.0,0.45676663869802786 -5254.0,0.4566089043313695 -5255.0,0.4564512244348242 -5256.0,0.4562935989895819 -5257.0,0.45613602797683883 -5258.0,0.4559785113777981 -5259.0,0.4558210491736691 -5260.0,0.4556636413456678 -5261.0,0.4555062878750164 -5262.0,0.455348988742944 -5263.0,0.4551917439306858 -5264.0,0.45503455341948373 -5265.0,0.45487741719058605 -5266.0,0.4547203352252476 -5267.0,0.4545633075047296 -5268.0,0.45440633401029984 -5269.0,0.4542494147232325 -5270.0,0.4540925496248083 -5271.0,0.45393573869631426 -5272.0,0.4537789819190441 -5273.0,0.45362227927429777 -5274.0,0.4534656307433819 -5275.0,0.4533090363076094 -5276.0,0.4531524959482997 -5277.0,0.45299600964677866 -5278.0,0.45283957738437863 -5279.0,0.45268319914243843 -5280.0,0.4525268749023032 -5281.0,0.4523706046453246 -5282.0,0.45221438835286076 -5283.0,0.45205822600627626 -5284.0,0.451902117586942 -5285.0,0.4517460630762353 -5286.0,0.45159006245554023 -5287.0,0.45143411570624686 -5288.0,0.45127822280975194 -5289.0,0.4511223837474586 -5290.0,0.45096659850077636 -5291.0,0.45081086705112117 -5292.0,0.4506551893799154 -5293.0,0.4504995654685879 -5294.0,0.4503439952985737 -5295.0,0.45018847885131463 -5296.0,0.4500330161082586 -5297.0,0.44987760705086 -5298.0,0.4497222516605798 -5299.0,0.4495669499188851 -5300.0,0.4494117018072496 -5301.0,0.4492565073071533 -5302.0,0.44910136640008264 -5303.0,0.4489462790675305 -5304.0,0.44879124529099595 -5305.0,0.4486362650519848 -5306.0,0.4484813383320088 -5307.0,0.4483264651125865 -5308.0,0.44817164537524257 -5309.0,0.44801687910150817 -5310.0,0.4478621662729208 -5311.0,0.4477075068710244 -5312.0,0.44755290087736915 -5313.0,0.4473983482735117 -5314.0,0.4472438490410151 -5315.0,0.4470894031614487 -5316.0,0.4469350106163882 -5317.0,0.44678067138741573 -5318.0,0.4466263854561197 -5319.0,0.44647215280409497 -5320.0,0.4463179734129427 -5321.0,0.44616384726427044 -5322.0,0.446009774339692 -5323.0,0.44585575462082766 -5324.0,0.44570178808930394 -5325.0,0.4455478747267538 -5326.0,0.4453940145148164 -5327.0,0.44524020743513754 -5328.0,0.445086453469369 -5329.0,0.44493275259916903 -5330.0,0.4447791048062023 -5331.0,0.4446255100721398 -5332.0,0.4444719683786587 -5333.0,0.44431847970744265 -5334.0,0.44416504404018153 -5335.0,0.4440116613585716 -5336.0,0.4438583316443155 -5337.0,0.44370505487912204 -5338.0,0.4435518310447064 -5339.0,0.4433986601227901 -5340.0,0.44324554209510103 -5341.0,0.4430924769433733 -5342.0,0.4429394646493473 -5343.0,0.4427865051947698 -5344.0,0.4426335985613939 -5345.0,0.4424807447309789 -5346.0,0.44232794368529055 -5347.0,0.4421751954061006 -5348.0,0.4420224998751875 -5349.0,0.4418698570743357 -5350.0,0.44171726698533603 -5351.0,0.44156472958998555 -5352.0,0.4414122448700878 -5353.0,0.44125981280745225 -5354.0,0.4411074333838951 -5355.0,0.4409551065812385 -5356.0,0.4408028323813109 -5357.0,0.44065061076594725 -5358.0,0.4404984417169885 -5359.0,0.440346325216282 -5360.0,0.4401942612456814 -5361.0,0.4400422497870466 -5362.0,0.4398902908222437 -5363.0,0.43973838433314505 -5364.0,0.4395865303016294 -5365.0,0.4394347287095817 -5366.0,0.43928297953889306 -5367.0,0.4391312827714609 -5368.0,0.4389796383891889 -5369.0,0.43882804637398704 -5370.0,0.4386765067077715 -5371.0,0.43852501937246463 -5372.0,0.4383735843499951 -5373.0,0.4382222016222979 -5374.0,0.4380708711713142 -5375.0,0.43791959297899125 -5376.0,0.4377683670272827 -5377.0,0.4376171932981485 -5378.0,0.4374660717735546 -5379.0,0.4373150024354734 -5380.0,0.43716398526588335 -5381.0,0.4370130202467692 -5382.0,0.436862107360122 -5383.0,0.4367112465879389 -5384.0,0.4365604379122233 -5385.0,0.43640968131498487 -5386.0,0.4362589767782394 -5387.0,0.4361083242840089 -5388.0,0.43595772381432174 -5389.0,0.4358071753512123 -5390.0,0.43565667887672127 -5391.0,0.43550623437289543 -5392.0,0.43535584182178805 -5393.0,0.4352055012054582 -5394.0,0.4350552125059715 -5395.0,0.4349049757053995 -5396.0,0.43475479078582 -5397.0,0.43460465772931717 -5398.0,0.43445457651798114 -5399.0,0.4343045471339083 -5400.0,0.43415456955920134 -5401.0,0.4340046437759689 -5402.0,0.4338547697663261 -5403.0,0.43370494751239386 -5404.0,0.4335551769962996 -5405.0,0.4334054582001768 -5406.0,0.43325579110616497 -5407.0,0.4331061756964101 -5408.0,0.432956611953064 -5409.0,0.4328070998582849 -5410.0,0.43265763939423707 -5411.0,0.43250823054309095 -5412.0,0.4323588732870232 -5413.0,0.4322095676082166 -5414.0,0.43206031348886004 -5415.0,0.43191111091114853 -5416.0,0.4317619598572834 -5417.0,0.4316128603094719 -5418.0,0.43146381224992764 -5419.0,0.4313148156608702 -5420.0,0.4311658705245255 -5421.0,0.4310169768231253 -5422.0,0.43086813453890777 -5423.0,0.43071934365411707 -5424.0,0.4305706041510036 -5425.0,0.4304219160118237 -5426.0,0.4302732792188401 -5427.0,0.43012469375432144 -5428.0,0.4299761596005426 -5429.0,0.4298276767397844 -5430.0,0.42967924515433403 -5431.0,0.4295308648264847 -5432.0,0.42938253573853574 -5433.0,0.4292342578727925 -5434.0,0.4290860312115665 -5435.0,0.42893785573717547 -5436.0,0.4287897314319431 -5437.0,0.4286416582781992 -5438.0,0.4284936362582798 -5439.0,0.42834566535452695 -5440.0,0.4281977455492887 -5441.0,0.4280498768249194 -5442.0,0.4279020591637793 -5443.0,0.42775429254823494 -5444.0,0.4276065769606588 -5445.0,0.4274589123834294 -5446.0,0.4273112987989316 -5447.0,0.427163736189556 -5448.0,0.4270162245376995 -5449.0,0.42686876382576516 -5450.0,0.4267213540361619 -5451.0,0.4265739951513048 -5452.0,0.426426687153615 -5453.0,0.42627943002551977 -5454.0,0.4261322237494524 -5455.0,0.42598506830785227 -5456.0,0.4258379636831648 -5457.0,0.4256909098578414 -5458.0,0.4255439068143398 -5459.0,0.42539695453512344 -5460.0,0.42525005300266205 -5461.0,0.4251032021994314 -5462.0,0.42495640210791313 -5463.0,0.4248096527105952 -5464.0,0.42466295398997134 -5465.0,0.4245163059285416 -5466.0,0.42436970850881184 -5467.0,0.42422316171329405 -5468.0,0.42407666552450635 -5469.0,0.4239302199249727 -5470.0,0.4237838248972234 -5471.0,0.42363748042379434 -5472.0,0.4234911864872279 -5473.0,0.42334494307007214 -5474.0,0.42319875015488134 -5475.0,0.4230526077242158 -5476.0,0.4229065157606417 -5477.0,0.4227604742467314 -5478.0,0.4226144831650632 -5479.0,0.4224685424982214 -5480.0,0.4223226522287964 -5481.0,0.4221768123393845 -5482.0,0.4220310228125881 -5483.0,0.4218852836310155 -5484.0,0.4217395947772812 -5485.0,0.4215939562340055 -5486.0,0.4214483679838147 -5487.0,0.4213028300093413 -5488.0,0.42115734229322377 -5489.0,0.42101190481810635 -5490.0,0.4208665175666394 -5491.0,0.42072118052147933 -5492.0,0.4205758936652885 -5493.0,0.42043065698073523 -5494.0,0.42028547045049386 -5495.0,0.4201403340572446 -5496.0,0.41999524778367386 -5497.0,0.4198502116124739 -5498.0,0.4197052255263429 -5499.0,0.419560289507985 -5500.0,0.4194154035401106 -5501.0,0.4192705676054357 -5502.0,0.41912578168668246 -5503.0,0.418981045766579 -5504.0,0.4188363598278594 -5505.0,0.4186917238532636 -5506.0,0.41854713782553765 -5507.0,0.4184026017274335 -5508.0,0.418258115541709 -5509.0,0.4181136792511281 -5510.0,0.41796929283846046 -5511.0,0.4178249562864819 -5512.0,0.4176806695779742 -5513.0,0.4175364326957249 -5514.0,0.4173922456225276 -5515.0,0.4172481083411818 -5516.0,0.41710402083449316 -5517.0,0.4169599830852729 -5518.0,0.41681599507633843 -5519.0,0.416672056790513 -5520.0,0.41652816821062594 -5521.0,0.41638432931951225 -5522.0,0.41624054010001305 -5523.0,0.41609680053497533 -5524.0,0.415953110607252 -5525.0,0.41580947029970194 -5526.0,0.41566587959518986 -5527.0,0.4155223384765865 -5528.0,0.4153788469267684 -5529.0,0.41523540492861805 -5530.0,0.4150920124650239 -5531.0,0.4149486695188803 -5532.0,0.41480537607308743 -5533.0,0.4146621321105514 -5534.0,0.41451893761418435 -5535.0,0.41437579256690416 -5536.0,0.41423269695163467 -5537.0,0.4140896507513056 -5538.0,0.4139466539488526 -5539.0,0.4138037065272172 -5540.0,0.41366080846934683 -5541.0,0.4135179597581948 -5542.0,0.4133751603767202 -5543.0,0.41323241030788815 -5544.0,0.41308970953466967 -5545.0,0.4129470580400416 -5546.0,0.4128044558069866 -5547.0,0.4126619028184933 -5548.0,0.4125193990575562 -5549.0,0.4123769445071755 -5550.0,0.41223453915035757 -5551.0,0.4120921829701144 -5552.0,0.411949875949464 -5553.0,0.41180761807143007 -5554.0,0.4116654093190424 -5555.0,0.41152324967533643 -5556.0,0.4113811391233536 -5557.0,0.41123907764614115 -5558.0,0.4110970652267522 -5559.0,0.41095510184824574 -5560.0,0.41081318749368645 -5561.0,0.4106713221461451 -5562.0,0.41052950578869807 -5563.0,0.4103877384044278 -5564.0,0.4102460199764225 -5565.0,0.4101043504877761 -5566.0,0.40996272992158855 -5567.0,0.4098211582609655 -5568.0,0.4096796354890185 -5569.0,0.40953816158886486 -5570.0,0.4093967365436278 -5571.0,0.40925536033643645 -5572.0,0.4091140329504255 -5573.0,0.4089727543687357 -5574.0,0.4088315245745136 -5575.0,0.40869034355091144 -5576.0,0.40854921128108734 -5577.0,0.4084081277482053 -5578.0,0.408267092935435 -5579.0,0.4081261068259522 -5580.0,0.40798516940293805 -5581.0,0.40784428064957984 -5582.0,0.40770344054907065 -5583.0,0.4075626490846092 -5584.0,0.40742190623940017 -5585.0,0.40728121199665385 -5586.0,0.4071405663395865 -5587.0,0.4069999692514202 -5588.0,0.40685942071538256 -5589.0,0.4067189207147073 -5590.0,0.40657846923263374 -5591.0,0.4064380662524071 -5592.0,0.40629771175727825 -5593.0,0.406157405730504 -5594.0,0.4060171481553468 -5595.0,0.405876939015075 -5596.0,0.4057367782929626 -5597.0,0.40559666597228955 -5598.0,0.4054566020363414 -5599.0,0.4053165864684095 -5600.0,0.40517661925179105 -5601.0,0.40503670036978906 -5602.0,0.4048968298057122 -5603.0,0.4047570075428748 -5604.0,0.4046172335645973 -5605.0,0.4044775078542055 -5606.0,0.4043378303950312 -5607.0,0.40419820117041194 -5608.0,0.40405862016369093 -5609.0,0.4039190873582172 -5610.0,0.4037796027373454 -5611.0,0.4036401662844362 -5612.0,0.4035007779828558 -5613.0,0.40336143781597605 -5614.0,0.40322214576717486 -5615.0,0.4030829018198356 -5616.0,0.4029437059573475 -5617.0,0.4028045581631056 -5618.0,0.4026654584205105 -5619.0,0.4025264067129685 -5620.0,0.402387403023892 -5621.0,0.4022484473366987 -5622.0,0.4021095396348122 -5623.0,0.40197067990166196 -5624.0,0.4018318681206829 -5625.0,0.40169310427531574 -5626.0,0.40155438834900714 -5627.0,0.40141572032520917 -5628.0,0.4012771001873798 -5629.0,0.4011385279189826 -5630.0,0.40100000350348697 -5631.0,0.40086152692436794 -5632.0,0.4007230981651062 -5633.0,0.40058471720918837 -5634.0,0.40044638404010646 -5635.0,0.40030809864135836 -5636.0,0.40016986099644763 -5637.0,0.4000316710888836 -5638.0,0.3998935289021811 -5639.0,0.39975543441986094 -5640.0,0.3996173876254493 -5641.0,0.39947938850247827 -5642.0,0.39934143703448555 -5643.0,0.39920353320501456 -5644.0,0.39906567699761436 -5645.0,0.39892786839583966 -5646.0,0.398790107383251 -5647.0,0.3986523939434144 -5648.0,0.39851472805990173 -5649.0,0.39837710971629037 -5650.0,0.39823953889616354 -5651.0,0.39810201558311 -5652.0,0.3979645397607242 -5653.0,0.39782711141260635 -5654.0,0.3976897305223622 -5655.0,0.3975523970736032 -5656.0,0.3974151110499464 -5657.0,0.3972778724350147 -5658.0,0.39714068121243656 -5659.0,0.397003537365846 -5660.0,0.39686644087888273 -5661.0,0.3967293917351922 -5662.0,0.39659238991842544 -5663.0,0.3964554354122391 -5664.0,0.3963185282002955 -5665.0,0.3961816682662626 -5666.0,0.3960448555938141 -5667.0,0.39590809016662915 -5668.0,0.3957713719683926 -5669.0,0.39563470098279513 -5670.0,0.3954980771935327 -5671.0,0.3953615005843072 -5672.0,0.39522497113882604 -5673.0,0.39508848884080217 -5674.0,0.39495205367395436 -5675.0,0.39481566562200676 -5676.0,0.3946793246686893 -5677.0,0.39454303079773767 -5678.0,0.3944067839928928 -5679.0,0.3942705842379015 -5680.0,0.39413443151651617 -5681.0,0.3939983258124948 -5682.0,0.39386226710960087 -5683.0,0.3937262553916036 -5684.0,0.39359029064227785 -5685.0,0.39345437284540397 -5686.0,0.393318501984768 -5687.0,0.39318267804416146 -5688.0,0.3930469010073816 -5689.0,0.3929111708582312 -5690.0,0.3927754875805186 -5691.0,0.3926398511580579 -5692.0,0.3925042615746685 -5693.0,0.3923687188141757 -5694.0,0.39223322286041 -5695.0,0.39209777369720805 -5696.0,0.39196237130841155 -5697.0,0.391827015677868 -5698.0,0.3916917067894305 -5699.0,0.39155644462695766 -5700.0,0.3914212291743137 -5701.0,0.3912860604153684 -5702.0,0.3911509383339971 -5703.0,0.39101586291408075 -5704.0,0.3908808341395058 -5705.0,0.39074585199416434 -5706.0,0.39061091646195395 -5707.0,0.39047602752677785 -5708.0,0.39034118517254474 -5709.0,0.39020638938316893 -5710.0,0.39007164014257023 -5711.0,0.38993693743467406 -5712.0,0.3898022812434113 -5713.0,0.3896676715527186 -5714.0,0.38953310834653787 -5715.0,0.3893985916088168 -5716.0,0.38926412132350846 -5717.0,0.38912969747457155 -5718.0,0.38899532004597026 -5719.0,0.3888609890216744 -5720.0,0.38872670438565915 -5721.0,0.3885924661219054 -5722.0,0.38845827421439955 -5723.0,0.3883241286471334 -5724.0,0.38819002940410446 -5725.0,0.38805597646931556 -5726.0,0.3879219698267752 -5727.0,0.3877880094604974 -5728.0,0.3876540953545016 -5729.0,0.3875202274928129 -5730.0,0.3873864058594618 -5731.0,0.38725263043848435 -5732.0,0.3871189012139221 -5733.0,0.3869852181698222 -5734.0,0.38685158129023717 -5735.0,0.3867179905592251 -5736.0,0.3865844459608497 -5737.0,0.3864509474791799 -5738.0,0.38631749509829044 -5739.0,0.38618408880226135 -5740.0,0.38605072857517825 -5741.0,0.3859174144011323 -5742.0,0.38578414626422 -5743.0,0.38565092414854346 -5744.0,0.3855177480382103 -5745.0,0.3853846179173335 -5746.0,0.38525153377003174 -5747.0,0.3851184955804289 -5748.0,0.3849855033326546 -5749.0,0.3848525570108437 -5750.0,0.3847196565991368 -5751.0,0.38458680208167983 -5752.0,0.3844539934426242 -5753.0,0.3843212306661268 -5754.0,0.38418851373635 -5755.0,0.3840558426374617 -5756.0,0.38392321735363505 -5757.0,0.383790637869049 -5758.0,0.38365810416788765 -5759.0,0.3835256162343408 -5760.0,0.38339317405260354 -5761.0,0.3832607776068765 -5762.0,0.3831284268813657 -5763.0,0.3829961218602828 -5764.0,0.38286386252784466 -5765.0,0.3827316488682737 -5766.0,0.3825994808657978 -5767.0,0.3824673585046504 -5768.0,0.3823352817690701 -5769.0,0.38220325064330124 -5770.0,0.38207126511159334 -5771.0,0.3819393251582016 -5772.0,0.3818074307673865 -5773.0,0.381675581923414 -5774.0,0.38154377861055555 -5775.0,0.3814120208130879 -5776.0,0.3812803085152933 -5777.0,0.3811486417014595 -5778.0,0.3810170203558796 -5779.0,0.38088544446285205 -5780.0,0.3807539140066809 -5781.0,0.3806224289716755 -5782.0,0.3804909893421506 -5783.0,0.38035959510242645 -5784.0,0.38022824623682866 -5785.0,0.3800969427296883 -5786.0,0.3799656845653418 -5787.0,0.379834471728131 -5788.0,0.3797033042024032 -5789.0,0.37957218197251097 -5790.0,0.37944110502281253 -5791.0,0.3793100733376713 -5792.0,0.37917908690145613 -5793.0,0.37904814569854134 -5794.0,0.37891724971330654 -5795.0,0.37878639893013677 -5796.0,0.37865559333342264 -5797.0,0.3785248329075598 -5798.0,0.37839411763694963 -5799.0,0.37826344750599866 -5800.0,0.37813282249911895 -5801.0,0.3780022426007279 -5802.0,0.37787170779524826 -5803.0,0.37774121806710814 -5804.0,0.3776107734007411 -5805.0,0.377480373780586 -5806.0,0.37735001919108724 -5807.0,0.3772197096166944 -5808.0,0.37708944504186237 -5809.0,0.3769592254510517 -5810.0,0.37682905082872814 -5811.0,0.3766989211593627 -5812.0,0.376568836427432 -5813.0,0.37643879661741775 -5814.0,0.37630880171380715 -5815.0,0.3761788517010929 -5816.0,0.37604894656377275 -5817.0,0.37591908628635 -5818.0,0.37578927085333336 -5819.0,0.3756595002492367 -5820.0,0.3755297744585794 -5821.0,0.37540009346588604 -5822.0,0.3752704572556867 -5823.0,0.37514086581251666 -5824.0,0.3750113191209166 -5825.0,0.3748818171654327 -5826.0,0.37475235993061606 -5827.0,0.3746229474010236 -5828.0,0.3744935795612172 -5829.0,0.37436425639576437 -5830.0,0.37423497788923765 -5831.0,0.37410574402621516 -5832.0,0.3739765547912802 -5833.0,0.37384741016902145 -5834.0,0.3737183101440329 -5835.0,0.3735892547009138 -5836.0,0.37346024382426884 -5837.0,0.373331277498708 -5838.0,0.3732023557088464 -5839.0,0.3730734784393048 -5840.0,0.37294464567470886 -5841.0,0.3728158573996899 -5842.0,0.3726871135988845 -5843.0,0.3725584142569343 -5844.0,0.3724297593584865 -5845.0,0.3723011488881935 -5846.0,0.37217258283071286 -5847.0,0.3720440611707079 -5848.0,0.3719155838928466 -5849.0,0.37178715098180276 -5850.0,0.37165876242225526 -5851.0,0.37153041819888816 -5852.0,0.371402118296391 -5853.0,0.3712738626994586 -5854.0,0.37114565139279093 -5855.0,0.3710174843610933 -5856.0,0.3708893615890763 -5857.0,0.37076128306145595 -5858.0,0.3706332487629533 -5859.0,0.37050525867829476 -5860.0,0.37037731279221214 -5861.0,0.3702494110894424 -5862.0,0.3701215535547278 -5863.0,0.3699937401728159 -5864.0,0.3698659709284594 -5865.0,0.3697382458064164 -5866.0,0.36961056479145027 -5867.0,0.36948292786832954 -5868.0,0.3693553350218281 -5869.0,0.3692277862367251 -5870.0,0.36910028149780477 -5871.0,0.3689728207898568 -5872.0,0.3688454040976761 -5873.0,0.3687180314060627 -5874.0,0.36859070269982197 -5875.0,0.3684634179637646 -5876.0,0.3683361771827064 -5877.0,0.36820898034146843 -5878.0,0.3680818274248771 -5879.0,0.367954718417764 -5880.0,0.3678276533049659 -5881.0,0.367700632071325 -5882.0,0.3675736547016883 -5883.0,0.36744672118090865 -5884.0,0.36731983149384356 -5885.0,0.3671929856253562 -5886.0,0.3670661835603146 -5887.0,0.3669394252835924 -5888.0,0.3668127107800681 -5889.0,0.3666860400346257 -5890.0,0.36655941303215417 -5891.0,0.366432829757548 -5892.0,0.36630629019570654 -5893.0,0.36617979433153475 -5894.0,0.3660533421499424 -5895.0,0.3659269336358447 -5896.0,0.3658005687741622 -5897.0,0.36567424754982036 -5898.0,0.36554796994775 -5899.0,0.36542173595288713 -5900.0,0.36529554555017296 -5901.0,0.36516939872455384 -5902.0,0.36504329546098147 -5903.0,0.36491723574441254 -5904.0,0.3647912195598092 -5905.0,0.3646652468921384 -5906.0,0.3645393177263728 -5907.0,0.3644134320474897 -5908.0,0.3642875898404721 -5909.0,0.3641617910903078 -5910.0,0.36403603578198995 -5911.0,0.3639103239005168 -5912.0,0.3637846554308919 -5913.0,0.363659030358124 -5914.0,0.3635334486672268 -5915.0,0.36340791034321945 -5916.0,0.363282415371126 -5917.0,0.36315696373597595 -5918.0,0.36303155542280374 -5919.0,0.3629061904166492 -5920.0,0.362780868702557 -5921.0,0.36265559026557737 -5922.0,0.3625303550907653 -5923.0,0.3624051631631814 -5924.0,0.36228001446789093 -5925.0,0.3621549089899648 -5926.0,0.3620298467144786 -5927.0,0.3619048276265135 -5928.0,0.36177985171115556 -5929.0,0.3616549189534961 -5930.0,0.3615300293386315 -5931.0,0.3614051828516633 -5932.0,0.36128037947769837 -5933.0,0.36115561920184847 -5934.0,0.3610309020092307 -5935.0,0.36090622788496707 -5936.0,0.360781596814185 -5937.0,0.3606570087820168 -5938.0,0.3605324637736001 -5939.0,0.3604079617740775 -5940.0,0.36028350276859705 -5941.0,0.3601590867423114 -5942.0,0.3600347136803788 -5943.0,0.3599103835679624 -5944.0,0.35978609639023057 -5945.0,0.3596618521323567 -5946.0,0.3595376507795194 -5947.0,0.35941349231690223 -5948.0,0.35928937672969424 -5949.0,0.35916530400308905 -5950.0,0.35904127412228587 -5951.0,0.3589172870724889 -5952.0,0.3587933428389072 -5953.0,0.3586694414067553 -5954.0,0.3585455827612525 -5955.0,0.3584217668876235 -5956.0,0.3582979937710979 -5957.0,0.35817426339691055 -5958.0,0.35805057575030114 -5959.0,0.3579269308165149 -5960.0,0.3578033285808016 -5961.0,0.35767976902841664 -5962.0,0.35755625214462006 -5963.0,0.3574327779146774 -5964.0,0.3573093463238589 -5965.0,0.3571859573574403 -5966.0,0.3570626110007019 -5967.0,0.35693930723892964 -5968.0,0.35681604605741407 -5969.0,0.35669282744145114 -5970.0,0.3565696513763419 -5971.0,0.356446517847392 -5972.0,0.3563234268399129 -5973.0,0.3562003783392204 -5974.0,0.35607737233063597 -5975.0,0.3559544087994857 -5976.0,0.3558314877311011 -5977.0,0.3557086091108185 -5978.0,0.35558577292397936 -5979.0,0.35546297915593017 -5980.0,0.3553402277920227 -5981.0,0.3552175188176134 -5982.0,0.35509485221806414 -5983.0,0.3549722279787416 -5984.0,0.35484964608501773 -5985.0,0.35472710652226924 -5986.0,0.35460460927587817 -5987.0,0.35448215433123137 -5988.0,0.3543597416737209 -5989.0,0.35423737128874405 -5990.0,0.35411504316170256 -5991.0,0.35399275727800383 -5992.0,0.35387051362305993 -5993.0,0.3537483121822882 -5994.0,0.3536261529411107 -5995.0,0.35350403588495494 -5996.0,0.35338196099925306 -5997.0,0.3532599282694426 -5998.0,0.35313793768096574 -5999.0,0.35301598921927013 -6000.0,0.35289408286980795 -6001.0,0.3527722186180369 -6002.0,0.35265039644941926 -6003.0,0.35252861634942273 -6004.0,0.35240687830351963 -6005.0,0.35228518229718764 -6006.0,0.35216352831590925 -6007.0,0.352041916345172 -6008.0,0.35192034637046865 -6009.0,0.35179881837729654 -6010.0,0.35167733235115844 -6011.0,0.35155588827756185 -6012.0,0.3514344861420195 -6013.0,0.3513131259300489 -6014.0,0.35119180762717267 -6015.0,0.35107053121891835 -6016.0,0.35094929669081876 -6017.0,0.3508281040284113 -6018.0,0.3507069532172387 -6019.0,0.35058584424284844 -6020.0,0.35046477709079327 -6021.0,0.3503437517466305 -6022.0,0.35022276819592296 -6023.0,0.35010182642423804 -6024.0,0.34998092641714834 -6025.0,0.34986006816023124 -6026.0,0.3497392516390694 -6027.0,0.3496184768392502 -6028.0,0.34949774374636605 -6029.0,0.3493770523460145 -6030.0,0.34925640262379787 -6031.0,0.34913579456532357 -6032.0,0.3490152281562038 -6033.0,0.348894703382056 -6034.0,0.3487742202285024 -6035.0,0.3486537786811703 -6036.0,0.3485333787256918 -6037.0,0.34841302034770416 -6038.0,0.34829270353284936 -6039.0,0.3481724282667747 -6040.0,0.348052194535132 -6041.0,0.34793200232357835 -6042.0,0.34781185161777567 -6043.0,0.34769174240339096 -6044.0,0.3475716746660959 -6045.0,0.3474516483915674 -6046.0,0.34733166356548717 -6047.0,0.3472117201735419 -6048.0,0.34709181820142326 -6049.0,0.3469719576348277 -6050.0,0.34685213845945684 -6051.0,0.34673236066101704 -6052.0,0.34661262422521977 -6053.0,0.34649292913778124 -6054.0,0.34637327538442286 -6055.0,0.3462536629508706 -6056.0,0.3461340918228558 -6057.0,0.3460145619861143 -6058.0,0.3458950734263872 -6059.0,0.34577562612942025 -6060.0,0.3456562200809644 -6061.0,0.34553685526677524 -6062.0,0.3454175316726136 -6063.0,0.3452982492842448 -6064.0,0.3451790080874395 -6065.0,0.3450598080679731 -6066.0,0.3449406492116258 -6067.0,0.344821531504183 -6068.0,0.34470245493143453 -6069.0,0.3445834194791757 -6070.0,0.3444644251332063 -6071.0,0.3443454718793313 -6072.0,0.34422655970336025 -6073.0,0.34410768859110796 -6074.0,0.3439888585283939 -6075.0,0.34387006950104254 -6076.0,0.3437513214948832 -6077.0,0.3436326144957501 -6078.0,0.34351394848948236 -6079.0,0.34339532346192403 -6080.0,0.34327673939892395 -6081.0,0.343158196286336 -6082.0,0.3430396941100187 -6083.0,0.3429212328558357 -6084.0,0.3428028125096555 -6085.0,0.34268443305735125 -6086.0,0.34256609448480135 -6087.0,0.34244779677788867 -6088.0,0.3423295399225013 -6089.0,0.34221132390453196 -6090.0,0.34209314870987845 -6091.0,0.3419750143244432 -6092.0,0.3418569207341338 -6093.0,0.34173886792486236 -6094.0,0.3416208558825462 -6095.0,0.3415028845931072 -6096.0,0.3413849540424724 -6097.0,0.3412670642165734 -6098.0,0.34114921510134694 -6099.0,0.34103140668273435 -6100.0,0.3409136389466821 -6101.0,0.3407959118791411 -6102.0,0.3406782254660676 -6103.0,0.34056057969342246 -6104.0,0.34044297454717126 -6105.0,0.34032541001328476 -6106.0,0.3402078860777381 -6107.0,0.3400904027265118 -6108.0,0.3399729599455908 -6109.0,0.3398555577209651 -6110.0,0.3397381960386293 -6111.0,0.3396208748845833 -6112.0,0.3395035942448313 -6113.0,0.3393863541053827 -6114.0,0.33926915445225153 -6115.0,0.33915199527145684 -6116.0,0.33903487654902226 -6117.0,0.33891779827097646 -6118.0,0.3388007604233528 -6119.0,0.3386837629921896 -6120.0,0.3385668059635298 -6121.0,0.33844988932342135 -6122.0,0.338333013057917 -6123.0,0.3382161771530742 -6124.0,0.33809938159495534 -6125.0,0.3379826263696274 -6126.0,0.3378659114631625 -6127.0,0.3377492368616374 -6128.0,0.3376326025511336 -6129.0,0.3375160085177374 -6130.0,0.3373994547475402 -6131.0,0.3372829412266377 -6132.0,0.337166467941131 -6133.0,0.3370500348771254 -6134.0,0.33693364202073156 -6135.0,0.33681728935806443 -6136.0,0.33670097687524414 -6137.0,0.3365847045583953 -6138.0,0.3364684723936477 -6139.0,0.3363522803671354 -6140.0,0.33623612846499773 -6141.0,0.33612001667337865 -6142.0,0.3360039449784267 -6143.0,0.3358879133662956 -6144.0,0.33577192182314336 -6145.0,0.3356559703351333 -6146.0,0.335540058888433 -6147.0,0.3354241874692153 -6148.0,0.3353083560636574 -6149.0,0.3351925646579416 -6150.0,0.33507681323825467 -6151.0,0.33496110179078853 -6152.0,0.3348454303017394 -6153.0,0.33472979875730874 -6154.0,0.3346142071437024 -6155.0,0.3344986554471312 -6156.0,0.3343831436538106 -6157.0,0.334267671749961 -6158.0,0.33415223972180735 -6159.0,0.3340368475555795 -6160.0,0.333921495237512 -6161.0,0.33380618275384416 -6162.0,0.33369091009082 -6163.0,0.3335756772346884 -6164.0,0.3334604841717029 -6165.0,0.33334533088812174 -6166.0,0.3332302173702081 -6167.0,0.33311514360422956 -6168.0,0.3330001095764589 -6169.0,0.33288511527317327 -6170.0,0.3327701606806548 -6171.0,0.33265524578519 -6172.0,0.3325403705730707 -6173.0,0.3324255350305928 -6174.0,0.33231073914405757 -6175.0,0.33219598289977037 -6176.0,0.3320812662840419 -6177.0,0.33196658928318706 -6178.0,0.3318519518835259 -6179.0,0.331737354071383 -6180.0,0.33162279583308757 -6181.0,0.3315082771549738 -6182.0,0.33139379802338026 -6183.0,0.3312793584246506 -6184.0,0.3311649583451329 -6185.0,0.3310505977711801 -6186.0,0.3309362766891498 -6187.0,0.3308219950854044 -6188.0,0.33070775294631083 -6189.0,0.3305935502582409 -6190.0,0.330479387007571 -6191.0,0.33036526318068243 -6192.0,0.33025117876396093 -6193.0,0.3301371337437971 -6194.0,0.3300231281065861 -6195.0,0.3299091618387281 -6196.0,0.3297952349266275 -6197.0,0.3296813473566938 -6198.0,0.3295674991153411 -6199.0,0.329453690188988 -6200.0,0.3293399205640581 -6201.0,0.32922619022697924 -6202.0,0.3291124991641845 -6203.0,0.32899884736211116 -6204.0,0.32888523480720155 -6205.0,0.32877166148590237 -6206.0,0.32865812738466527 -6207.0,0.32854463248994636 -6208.0,0.32843117678820666 -6209.0,0.32831776026591153 -6210.0,0.32820438290953147 -6211.0,0.3280910447055411 -6212.0,0.32797774564042026 -6213.0,0.327864485700653 -6214.0,0.32775126487272843 -6215.0,0.3276380831431399 -6216.0,0.32752494049838576 -6217.0,0.32741183692496906 -6218.0,0.32729877240939714 -6219.0,0.32718574693818236 -6220.0,0.3270727604978415 -6221.0,0.3269598130748963 -6222.0,0.32684690465587274 -6223.0,0.3267340352273018 -6224.0,0.3266212047757189 -6225.0,0.3265084132876643 -6226.0,0.3263956607496826 -6227.0,0.3262829471483235 -6228.0,0.32617027247014085 -6229.0,0.3260576367016936 -6230.0,0.32594503982954487 -6231.0,0.325832481840263 -6232.0,0.3257199627204203 -6233.0,0.3256074824565943 -6234.0,0.3254950410353668 -6235.0,0.32538263844332443 -6236.0,0.3252702746670584 -6237.0,0.3251579496931644 -6238.0,0.32504566350824304 -6239.0,0.32493341609889925 -6240.0,0.3248212074517429 -6241.0,0.32470903755338815 -6242.0,0.3245969063904541 -6243.0,0.32448481394956413 -6244.0,0.3243727602173466 -6245.0,0.32426074518043424 -6246.0,0.3241487688254645 -6247.0,0.3240368311390794 -6248.0,0.3239249321079256 -6249.0,0.3238130717186543 -6250.0,0.32370124995792154 -6251.0,0.3235894668123876 -6252.0,0.32347772226871774 -6253.0,0.3233660163135815 -6254.0,0.3232543489336532 -6255.0,0.3231427201156118 -6256.0,0.32303112984614074 -6257.0,0.32291957811192823 -6258.0,0.32280806489966685 -6259.0,0.3226965901960539 -6260.0,0.32258515398779125 -6261.0,0.3224737562615855 -6262.0,0.3223623970041475 -6263.0,0.32225107620219307 -6264.0,0.3221397938424423 -6265.0,0.3220285499116202 -6266.0,0.32191734439645603 -6267.0,0.32180617728368394 -6268.0,0.3216950485600423 -6269.0,0.3215839582122744 -6270.0,0.32147290622712793 -6271.0,0.3213618925913553 -6272.0,0.3212509172917132 -6273.0,0.32113998031496316 -6274.0,0.3210290816478713 -6275.0,0.32091822127720815 -6276.0,0.3208073991897489 -6277.0,0.3206966153722732 -6278.0,0.32058586981156545 -6279.0,0.32047516249441443 -6280.0,0.3203644934076137 -6281.0,0.32025386253796106 -6282.0,0.3201432698722592 -6283.0,0.3200327153973151 -6284.0,0.3199221990999406 -6285.0,0.31981172096695165 -6286.0,0.31970128098516926 -6287.0,0.3195908791414186 -6288.0,0.31948051542252964 -6289.0,0.31937018981533666 -6290.0,0.3192599023066787 -6291.0,0.3191496528833993 -6292.0,0.31903944153234637 -6293.0,0.3189292682403727 -6294.0,0.31881913299433523 -6295.0,0.31870903578109583 -6296.0,0.31859897658752045 -6297.0,0.3184889554004801 -6298.0,0.3183789722068498 -6299.0,0.31826902699350956 -6300.0,0.31815911974734357 -6301.0,0.31804925045524085 -6302.0,0.3179394191040946 -6303.0,0.317829625680803 -6304.0,0.31771987017226816 -6305.0,0.3176101525653974 -6306.0,0.3175004728471019 -6307.0,0.31739083100429794 -6308.0,0.31728122702390577 -6309.0,0.3171716608928507 -6310.0,0.3170621325980621 -6311.0,0.3169526421264741 -6312.0,0.31684318946502543 -6313.0,0.31673377460065893 -6314.0,0.3166243975203224 -6315.0,0.3165150582109678 -6316.0,0.31640575665955195 -6317.0,0.31629649285303574 -6318.0,0.316187266778385 -6319.0,0.3160780784225697 -6320.0,0.3159689277725646 -6321.0,0.31585981481534864 -6322.0,0.3157507395379056 -6323.0,0.3156417019272235 -6324.0,0.3155327019702951 -6325.0,0.3154237396541173 -6326.0,0.31531481496569186 -6327.0,0.3152059278920247 -6328.0,0.3150970784201265 -6329.0,0.3149882665370123 -6330.0,0.3148794922297015 -6331.0,0.31477075548521843 -6332.0,0.31466205629059124 -6333.0,0.31455339463285314 -6334.0,0.31444477049904146 -6335.0,0.3143361838761982 -6336.0,0.3142276347513698 -6337.0,0.314119123111607 -6338.0,0.3140106489439653 -6339.0,0.31390221223550446 -6340.0,0.31379381297328873 -6341.0,0.31368545114438695 -6342.0,0.3135771267358723 -6343.0,0.3134688397348225 -6344.0,0.3133605901283196 -6345.0,0.3132523779034504 -6346.0,0.3131442030473058 -6347.0,0.3130360655469814 -6348.0,0.3129279653895771 -6349.0,0.31281990256219744 -6350.0,0.31271187705195136 -6351.0,0.312603888845952 -6352.0,0.3124959379313174 -6353.0,0.31238802429516965 -6354.0,0.3122801479246355 -6355.0,0.312172308806846 -6356.0,0.31206450692893684 -6357.0,0.3119567422780479 -6358.0,0.3118490148413239 -6359.0,0.3117413246059134 -6360.0,0.3116336715589701 -6361.0,0.31152605568765146 -6362.0,0.3114184769791199 -6363.0,0.3113109354205419 -6364.0,0.3112034309990887 -6365.0,0.31109596370193565 -6366.0,0.3109885335162629 -6367.0,0.3108811404292545 -6368.0,0.3107737844280995 -6369.0,0.3106664654999911 -6370.0,0.31055918363212676 -6371.0,0.31045193881170874 -6372.0,0.31034473102594334 -6373.0,0.3102375602620416 -6374.0,0.31013042650721867 -6375.0,0.3100233297486944 -6376.0,0.30991626997369287 -6377.0,0.3098092471694427 -6378.0,0.3097022613231767 -6379.0,0.3095953124221324 -6380.0,0.30948840045355147 -6381.0,0.3093815254046802 -6382.0,0.309274687262769 -6383.0,0.3091678860150731 -6384.0,0.3090611216488517 -6385.0,0.30895439415136866 -6386.0,0.3088477035098921 -6387.0,0.30874104971169464 -6388.0,0.3086344327440534 -6389.0,0.3085278525942495 -6390.0,0.3084213092495689 -6391.0,0.30831480269730166 -6392.0,0.3082083329247424 -6393.0,0.30810189991919 -6394.0,0.3079955036679478 -6395.0,0.30788914415832347 -6396.0,0.30778282137762913 -6397.0,0.30767653531318123 -6398.0,0.3075702859523006 -6399.0,0.3074640732823125 -6400.0,0.3073578972905466 -6401.0,0.3072517579643367 -6402.0,0.30714565529102134 -6403.0,0.30703958925794306 -6404.0,0.3069335598524491 -6405.0,0.30682756706189085 -6406.0,0.30672161087362415 -6407.0,0.30661569127500926 -6408.0,0.3065098082534107 -6409.0,0.30640396179619744 -6410.0,0.30629815189074266 -6411.0,0.3061923785244241 -6412.0,0.30608664168462374 -6413.0,0.30598094135872805 -6414.0,0.3058752775341275 -6415.0,0.30576965019821745 -6416.0,0.30566405933839713 -6417.0,0.3055585049420705 -6418.0,0.3054529869966454 -6419.0,0.30534750548953465 -6420.0,0.3052420604081548 -6421.0,0.30513665173992727 -6422.0,0.3050312794722773 -6423.0,0.30492594359263503 -6424.0,0.3048206440884344 -6425.0,0.30471538094711403 -6426.0,0.304610154156117 -6427.0,0.30450496370289015 -6428.0,0.3043998095748854 -6429.0,0.3042946917595583 -6430.0,0.30418961024436936 -6431.0,0.3040845650167828 -6432.0,0.30397955606426785 -6433.0,0.3038745833742974 -6434.0,0.3037696469343492 -6435.0,0.3036647467319049 -6436.0,0.30355988275445084 -6437.0,0.30345505498947734 -6438.0,0.3033502634244794 -6439.0,0.303245508046956 -6440.0,0.3031407888444107 -6441.0,0.3030361058043512 -6442.0,0.3029314589142896 -6443.0,0.3028268481617422 -6444.0,0.3027222735342298 -6445.0,0.3026177350192774 -6446.0,0.3025132326044143 -6447.0,0.30240876627717417 -6448.0,0.3023043360250949 -6449.0,0.3021999418357187 -6450.0,0.30209558369659206 -6451.0,0.30199126159526596 -6452.0,0.30188697551929533 -6453.0,0.30178272545623985 -6454.0,0.30167851139366303 -6455.0,0.3015743333191331 -6456.0,0.3014701912202221 -6457.0,0.30136608508450696 -6458.0,0.3012620148995683 -6459.0,0.30115798065299143 -6460.0,0.3010539823323658 -6461.0,0.30095001992528525 -6462.0,0.3008460934193477 -6463.0,0.30074220280215547 -6464.0,0.30063834806131534 -6465.0,0.300534529184438 -6466.0,0.3004307461591388 -6467.0,0.30032699897303694 -6468.0,0.3002232876137564 -6469.0,0.3001196120689249 -6470.0,0.300015972326175 -6471.0,0.29991236837314295 -6472.0,0.2998088001974698 -6473.0,0.29970526778680046 -6474.0,0.29960177112878433 -6475.0,0.299498310211075 -6476.0,0.2993948850213303 -6477.0,0.2992914955472124 -6478.0,0.29918814177638775 -6479.0,0.2990848236965269 -6480.0,0.2989815412953048 -6481.0,0.29887829456040055 -6482.0,0.2987750834794976 -6483.0,0.29867190804028376 -6484.0,0.29856876823045075 -6485.0,0.2984656640376949 -6486.0,0.2983625954497165 -6487.0,0.2982595624542203 -6488.0,0.29815656503891513 -6489.0,0.2980536031915143 -6490.0,0.2979506768997351 -6491.0,0.2978477861512992 -6492.0,0.29774493093393245 -6493.0,0.29764211123536505 -6494.0,0.29753932704333125 -6495.0,0.2974365783455698 -6496.0,0.29733386512982335 -6497.0,0.29723118738383913 -6498.0,0.2971285450953683 -6499.0,0.29702593825216644 -6500.0,0.2969233668419933 -6501.0,0.29682083085261285 -6502.0,0.29671833027179334 -6503.0,0.2966158650873071 -6504.0,0.2965134352869309 -6505.0,0.29641104085844555 -6506.0,0.29630868178963615 -6507.0,0.29620635806829193 -6508.0,0.2961040696822066 -6509.0,0.2960018166191777 -6510.0,0.29589959886700734 -6511.0,0.29579741641350155 -6512.0,0.2956952692464709 -6513.0,0.2955931573537297 -6514.0,0.29549108072309704 -6515.0,0.2953890393423957 -6516.0,0.29528703319945304 -6517.0,0.2951850622821004 -6518.0,0.29508312657817337 -6519.0,0.2949812260755118 -6520.0,0.29487936076195964 -6521.0,0.29477753062536527 -6522.0,0.2946757356535809 -6523.0,0.29457397583446326 -6524.0,0.29447225115587305 -6525.0,0.2943705616056754 -6526.0,0.2942689071717393 -6527.0,0.2941672878419383 -6528.0,0.2940657036041498 -6529.0,0.2939641544462557 -6530.0,0.2938626403561417 -6531.0,0.29376116132169816 -6532.0,0.2936597173308192 -6533.0,0.29355830837140334 -6534.0,0.29345693443135323 -6535.0,0.2933555954985758 -6536.0,0.2932542915609819 -6537.0,0.2931530226064868 -6538.0,0.29305178862300973 -6539.0,0.29295058959847436 -6540.0,0.29284942552080834 -6541.0,0.29274829637794353 -6542.0,0.292647202157816 -6543.0,0.2925461428483658 -6544.0,0.29244511843753745 -6545.0,0.2923441289132794 -6546.0,0.29224317426354435 -6547.0,0.2921422544762891 -6548.0,0.2920413695394748 -6549.0,0.29194051944106647 -6550.0,0.2918397041690335 -6551.0,0.2917389237113493 -6552.0,0.29163817805599157 -6553.0,0.29153746719094203 -6554.0,0.29143679110418663 -6555.0,0.29133614978371547 -6556.0,0.29123554321752276 -6557.0,0.2911349713936068 -6558.0,0.29103443429997017 -6559.0,0.2909339319246196 -6560.0,0.2908334642555657 -6561.0,0.2907330312808237 -6562.0,0.2906326329884123 -6563.0,0.29053226936635507 -6564.0,0.2904319404026791 -6565.0,0.29033164608541606 -6566.0,0.2902313864026015 -6567.0,0.2901311613422751 -6568.0,0.29003097089248087 -6569.0,0.2899308150412667 -6570.0,0.28983069377668486 -6571.0,0.2897306070867915 -6572.0,0.289630554959647 -6573.0,0.28953053738331597 -6574.0,0.28943055434586695 -6575.0,0.2893306058353728 -6576.0,0.28923069183991024 -6577.0,0.28913081234756033 -6578.0,0.28903096734640826 -6579.0,0.2889311568245431 -6580.0,0.2888313807700583 -6581.0,0.28873163917105127 -6582.0,0.2886319320156236 -6583.0,0.2885322592918808 -6584.0,0.2884326209879329 -6585.0,0.28833301709189346 -6586.0,0.28823344759188074 -6587.0,0.2881339124760166 -6588.0,0.2880344117324275 -6589.0,0.2879349453492434 -6590.0,0.287835513314599 -6591.0,0.28773611561663254 -6592.0,0.2876367522434867 -6593.0,0.28753742318330816 -6594.0,0.28743812842424776 -6595.0,0.2873388679544602 -6596.0,0.2872396417621044 -6597.0,0.28714044983534365 -6598.0,0.28704129216234486 -6599.0,0.2869421687312794 -6600.0,0.2868430795303224 -6601.0,0.28674402454765335 -6602.0,0.2866450037714557 -6603.0,0.28654601718991696 -6604.0,0.2864470647912287 -6605.0,0.2863481465635868 -6606.0,0.2862492624951909 -6607.0,0.28615041257424484 -6608.0,0.2860515967889566 -6609.0,0.2859528151275382 -6610.0,0.2858540675782056 -6611.0,0.2857553541291791 -6612.0,0.2856566747686827 -6613.0,0.28555802948494485 -6614.0,0.28545941826619775 -6615.0,0.28536084110067794 -6616.0,0.28526229797662583 -6617.0,0.28516378888228583 -6618.0,0.2850653138059067 -6619.0,0.284966872735741 -6620.0,0.2848684656600454 -6621.0,0.2847700925670807 -6622.0,0.28467175344511175 -6623.0,0.28457344828240727 -6624.0,0.28447517706724035 -6625.0,0.28437693978788775 -6626.0,0.28427873643263063 -6627.0,0.28418056698975397 -6628.0,0.2840824314475469 -6629.0,0.28398432979430255 -6630.0,0.2838862620183182 -6631.0,0.2837882281078949 -6632.0,0.2836902280513381 -6633.0,0.28359226183695696 -6634.0,0.28349432945306485 -6635.0,0.28339643088797933 -6636.0,0.2832985661300216 -6637.0,0.2832007351675172 -6638.0,0.28310293798879554 -6639.0,0.28300517458219027 -6640.0,0.2829074449360388 -6641.0,0.2828097490386828 -6642.0,0.2827120868784677 -6643.0,0.28261445844374333 -6644.0,0.2825168637228631 -6645.0,0.2824193027041849 -6646.0,0.2823217753760702 -6647.0,0.2822242817268849 -6648.0,0.28212682174499853 -6649.0,0.282029395418785 -6650.0,0.28193200273662194 -6651.0,0.28183464368689115 -6652.0,0.2817373182579784 -6653.0,0.2816400264382734 -6654.0,0.28154276821617014 -6655.0,0.28144554358006624 -6656.0,0.2813483525183636 -6657.0,0.281251195019468 -6658.0,0.2811540710717893 -6659.0,0.2810569806637413 -6660.0,0.2809599237837418 -6661.0,0.2808629004202126 -6662.0,0.2807659105615796 -6663.0,0.2806689541962725 -6664.0,0.2805720313127253 -6665.0,0.2804751418993756 -6666.0,0.2803782859446654 -6667.0,0.28028146343704025 -6668.0,0.2801846743649502 -6669.0,0.28008791871684874 -6670.0,0.27999119648119386 -6671.0,0.2798945076464472 -6672.0,0.27979785220107445 -6673.0,0.2797012301335454 -6674.0,0.2796046414323337 -6675.0,0.2795080860859171 -6676.0,0.2794115640827771 -6677.0,0.2793150754113995 -6678.0,0.27921862006027376 -6679.0,0.27912219801789356 -6680.0,0.27902580927275633 -6681.0,0.2789294538133638 -6682.0,0.2788331316282212 -6683.0,0.27873684270583826 -6684.0,0.2786405870347282 -6685.0,0.27854436460340865 -6686.0,0.2784481754004007 -6687.0,0.2783520194142299 -6688.0,0.27825589663342537 -6689.0,0.27815980704652055 -6690.0,0.2780637506420525 -6691.0,0.27796772740856246 -6692.0,0.2778717373345956 -6693.0,0.2777757804087008 -6694.0,0.2776798566194314 -6695.0,0.2775839659553442 -6696.0,0.27748810840500016 -6697.0,0.2773922839569642 -6698.0,0.27729649259980516 -6699.0,0.2772007343220958 -6700.0,0.277105009112413 -6701.0,0.27700931695933717 -6702.0,0.27691365785145317 -6703.0,0.2768180317773495 -6704.0,0.2767224387256186 -6705.0,0.27662687868485697 -6706.0,0.27653135164366505 -6707.0,0.276435857590647 -6708.0,0.2763403965144113 -6709.0,0.2762449684035699 -6710.0,0.27614957324673906 -6711.0,0.27605421103253885 -6712.0,0.27595888174959315 -6713.0,0.27586358538653 -6714.0,0.27576832193198114 -6715.0,0.27567309137458246 -6716.0,0.2755778937029734 -6717.0,0.2754827289057979 -6718.0,0.2753875969717032 -6719.0,0.27529249788934096 -6720.0,0.2751974316473664 -6721.0,0.27510239823443894 -6722.0,0.27500739763922166 -6723.0,0.2749124298503818 -6724.0,0.2748174948565903 -6725.0,0.2747225926465222 -6726.0,0.27462772320885626 -6727.0,0.27453288653227537 -6728.0,0.27443808260546604 -6729.0,0.274343311417119 -6730.0,0.2742485729559287 -6731.0,0.2741538672105935 -6732.0,0.2740591941698157 -6733.0,0.2739645538223015 -6734.0,0.2738699461567611 -6735.0,0.27377537116190825 -6736.0,0.2736808288264611 -6737.0,0.27358631913914133 -6738.0,0.2734918420886746 -6739.0,0.2733973976637905 -6740.0,0.27330298585322255 -6741.0,0.273208606645708 -6742.0,0.27311426002998823 -6743.0,0.2730199459948083 -6744.0,0.27292566452891726 -6745.0,0.272831415621068 -6746.0,0.2727371992600173 -6747.0,0.27264301543452585 -6748.0,0.2725488641333582 -6749.0,0.27245474534528286 -6750.0,0.27236065905907203 -6751.0,0.272266605263502 -6752.0,0.2721725839473528 -6753.0,0.27207859509940835 -6754.0,0.2719846387084564 -6755.0,0.27189071476328885 -6756.0,0.271796823252701 -6757.0,0.2717029641654925 -6758.0,0.2716091374904665 -6759.0,0.2715153432164303 -6760.0,0.2714215813321947 -6761.0,0.2713278518265748 -6762.0,0.27123415468838924 -6763.0,0.2711404899064608 -6764.0,0.2710468574696157 -6765.0,0.27095325736668446 -6766.0,0.2708596895865012 -6767.0,0.27076615411790395 -6768.0,0.2706726509497347 -6769.0,0.2705791800708391 -6770.0,0.2704857414700668 -6771.0,0.2703923351362713 -6772.0,0.27029896105830986 -6773.0,0.2702056192250436 -6774.0,0.2701123096253376 -6775.0,0.2700190322480606 -6776.0,0.2699257870820854 -6777.0,0.26983257411628847 -6778.0,0.2697393933395502 -6779.0,0.26964624474075477 -6780.0,0.2695531283087903 -6781.0,0.2694600440325486 -6782.0,0.26936699190092545 -6783.0,0.2692739719028204 -6784.0,0.2691809840271368 -6785.0,0.2690880282627819 -6786.0,0.26899510459866677 -6787.0,0.2689022130237063 -6788.0,0.2688093535268192 -6789.0,0.26871652609692803 -6790.0,0.26862373072295903 -6791.0,0.2685309673938426 -6792.0,0.26843823609851253 -6793.0,0.26834553682590684 -6794.0,0.268252869564967 -6795.0,0.26816023430463864 -6796.0,0.268067631033871 -6797.0,0.26797505974161717 -6798.0,0.267882520416834 -6799.0,0.2677900130484824 -6800.0,0.2676975376255267 -6801.0,0.2676050941369355 -6802.0,0.26751268257168076 -6803.0,0.26742030291873853 -6804.0,0.26732795516708857 -6805.0,0.2672356393057145 -6806.0,0.2671433553236037 -6807.0,0.26705110320974734 -6808.0,0.2669588829531405 -6809.0,0.26686669454278183 -6810.0,0.2667745379676741 -6811.0,0.2666824132168235 -6812.0,0.26659032027924046 -6813.0,0.2664982591439387 -6814.0,0.2664062297999362 -6815.0,0.26631423223625444 -6816.0,0.2662222664419189 -6817.0,0.26613033240595846 -6818.0,0.26603843011740635 -6819.0,0.2659465595652991 -6820.0,0.2658547207386774 -6821.0,0.26576291362658533 -6822.0,0.2656711382180712 -6823.0,0.2655793945021867 -6824.0,0.26548768246798754 -6825.0,0.2653960021045332 -6826.0,0.2653043534008867 -6827.0,0.26521273634611525 -6828.0,0.26512115092928945 -6829.0,0.26502959713948393 -6830.0,0.2649380749657768 -6831.0,0.2648465843972504 -6832.0,0.26475512542299035 -6833.0,0.26466369803208645 -6834.0,0.26457230221363187 -6835.0,0.2644809379567239 -6836.0,0.2643896052504634 -6837.0,0.26429830408395505 -6838.0,0.2642070344463073 -6839.0,0.26411579632663235 -6840.0,0.26402458971404613 -6841.0,0.2639334145976684 -6842.0,0.26384227096662255 -6843.0,0.26375115881003586 -6844.0,0.2636600781170394 -6845.0,0.26356902887676775 -6846.0,0.26347801107835955 -6847.0,0.26338702471095693 -6848.0,0.26329606976370595 -6849.0,0.26320514622575625 -6850.0,0.26311425408626143 -6851.0,0.26302339333437863 -6852.0,0.26293256395926895 -6853.0,0.2628417659500969 -6854.0,0.2627509992960312 -6855.0,0.26266026398624376 -6856.0,0.2625695600099108 -6857.0,0.2624788873562118 -6858.0,0.26238824601433025 -6859.0,0.2622976359734533 -6860.0,0.2622070572227718 -6861.0,0.26211650975148043 -6862.0,0.2620259935487774 -6863.0,0.261935508603865 -6864.0,0.2618450549059489 -6865.0,0.26175463244423863 -6866.0,0.26166424120794746 -6867.0,0.26157388118629243 -6868.0,0.26148355236849413 -6869.0,0.2613932547437771 -6870.0,0.26130298830136944 -6871.0,0.2612127530305031 -6872.0,0.26112254892041353 -6873.0,0.26103237596034023 -6874.0,0.260942234139526 -6875.0,0.26085212344721775 -6876.0,0.2607620438726658 -6877.0,0.2606719954051245 -6878.0,0.2605819780338515 -6879.0,0.26049199174810855 -6880.0,0.2604020365371608 -6881.0,0.2603121123902774 -6882.0,0.260222219296731 -6883.0,0.2601323572457979 -6884.0,0.26004252622675844 -6885.0,0.2599527262288962 -6886.0,0.2598629572414989 -6887.0,0.25977321925385755 -6888.0,0.25968351225526726 -6889.0,0.25959383623502646 -6890.0,0.25950419118243756 -6891.0,0.25941457708680654 -6892.0,0.2593249939374431 -6893.0,0.25923544172366064 -6894.0,0.2591459204347762 -6895.0,0.2590564300601105 -6896.0,0.2589669705889881 -6897.0,0.258877542010737 -6898.0,0.25878814431468916 -6899.0,0.25869877749018 -6900.0,0.25860944152654874 -6901.0,0.2585201364131383 -6902.0,0.2584308621392951 -6903.0,0.2583416186943695 -6904.0,0.2582524060677153 -6905.0,0.25816322424869026 -6906.0,0.25807407322665543 -6907.0,0.25798495299097585 -6908.0,0.2578958635310201 -6909.0,0.2578068048361605 -6910.0,0.2577177768957729 -6911.0,0.25762877969923703 -6912.0,0.2575398132359361 -6913.0,0.25745087749525714 -6914.0,0.2573619724665906 -6915.0,0.25727309813933097 -6916.0,0.257184254502876 -6917.0,0.25709544154662745 -6918.0,0.25700665925999044 -6919.0,0.256917907632374 -6920.0,0.25682918665319066 -6921.0,0.25674049631185664 -6922.0,0.2566518365977919 -6923.0,0.2565632075004199 -6924.0,0.25647460900916785 -6925.0,0.25638604111346663 -6926.0,0.25629750380275074 -6927.0,0.2562089970664583 -6928.0,0.2561205208940311 -6929.0,0.25603207527491456 -6930.0,0.25594366019855785 -6931.0,0.25585527565441357 -6932.0,0.2557669216319382 -6933.0,0.2556785981205916 -6934.0,0.25559030510983766 -6935.0,0.25550204258914344 -6936.0,0.25541381054797996 -6937.0,0.2553256089758218 -6938.0,0.2552374378621471 -6939.0,0.25514929719643775 -6940.0,0.2550611869681791 -6941.0,0.2549731071668604 -6942.0,0.25488505778197423 -6943.0,0.2547970388030171 -6944.0,0.2547090502194888 -6945.0,0.25462109202089306 -6946.0,0.25453316419673705 -6947.0,0.2544452667365317 -6948.0,0.25435739962979137 -6949.0,0.25426956286603425 -6950.0,0.25418175643478197 -6951.0,0.25409398032555996 -6952.0,0.25400623452789706 -6953.0,0.253918519031326 -6954.0,0.25383083382538274 -6955.0,0.25374317889960724 -6956.0,0.25365555424354286 -6957.0,0.2535679598467366 -6958.0,0.25348039569873915 -6959.0,0.25339286178910464 -6960.0,0.253305358107391 -6961.0,0.25321788464315964 -6962.0,0.2531304413859757 -6963.0,0.25304302832540765 -6964.0,0.2529556454510279 -6965.0,0.25286829275241224 -6966.0,0.25278097021914026 -6967.0,0.2526936778407948 -6968.0,0.2526064156069627 -6969.0,0.2525191835072341 -6970.0,0.25243198153120294 -6971.0,0.25234480966846656 -6972.0,0.25225766790862614 -6973.0,0.2521705562412861 -6974.0,0.2520834746560548 -6975.0,0.251996423142544 -6976.0,0.2519094016903691 -6977.0,0.2518224102891491 -6978.0,0.25173544892850647 -6979.0,0.25164851759806744 -6980.0,0.2515616162874617 -6981.0,0.2514747449863226 -6982.0,0.25138790368428693 -6983.0,0.2513010923709953 -6984.0,0.25121431103609154 -6985.0,0.2511275596692235 -6986.0,0.25104083826004225 -6987.0,0.2509541467982026 -6988.0,0.2508674852733629 -6989.0,0.250780853675185 -6990.0,0.2506942519933344 -6991.0,0.2506076802174802 -6992.0,0.25052113833729495 -6993.0,0.25043462634245484 -6994.0,0.25034814422263973 -6995.0,0.25026169196753284 -6996.0,0.25017526956682107 -6997.0,0.25008887701019483 -6998.0,0.25000251428734815 -6999.0,0.24991618138797855 -7000.0,0.2498298783017872 -7001.0,0.2497436050184787 -7002.0,0.24965736152776138 -7003.0,0.2495711478193469 -7004.0,0.2494849638829507 -7005.0,0.24939880970829154 -7006.0,0.24931268528509198 -7007.0,0.24922659060307792 -7008.0,0.24914052565197897 -7009.0,0.24905449042152814 -7010.0,0.2489684849014621 -7011.0,0.24888250908152096 -7012.0,0.24879656295144845 -7013.0,0.2487106465009919 -7014.0,0.248624759719902 -7015.0,0.24853890259793318 -7016.0,0.24845307512484321 -7017.0,0.24836727729039362 -7018.0,0.2482815090843492 -7019.0,0.2481957704964786 -7020.0,0.24811006151655368 -7021.0,0.24802438213435007 -7022.0,0.2479387323396468 -7023.0,0.24785311212222655 -7024.0,0.24776752147187533 -7025.0,0.24768196037838291 -7026.0,0.2475964288315424 -7027.0,0.24751092682115058 -7028.0,0.2474254543370076 -7029.0,0.24734001136891734 -7030.0,0.2472545979066869 -7031.0,0.2471692139401272 -7032.0,0.2470838594590526 -7033.0,0.2469985344532808 -7034.0,0.24691323891263325 -7035.0,0.24682797282693472 -7036.0,0.24674273618601372 -7037.0,0.246657528979702 -7038.0,0.2465723511978351 -7039.0,0.24648720283025177 -7040.0,0.2464020838667946 -7041.0,0.24631699429730938 -7042.0,0.24623193411164565 -7043.0,0.24614690329965624 -7044.0,0.24606190185119772 -7045.0,0.24597692975612992 -7046.0,0.2458919870043164 -7047.0,0.24580707358562395 -7048.0,0.24572218948992322 -7049.0,0.24563733470708798 -7050.0,0.24555250922699576 -7051.0,0.24546771303952755 -7052.0,0.24538294613456765 -7053.0,0.24529820850200412 -7054.0,0.24521350013172824 -7055.0,0.24512882101363506 -7056.0,0.24504417113762286 -7057.0,0.24495955049359364 -7058.0,0.24487495907145265 -7059.0,0.24479039686110887 -7060.0,0.24470586385247456 -7061.0,0.24462136003546558 -7062.0,0.24453688540000124 -7063.0,0.24445243993600435 -7064.0,0.2443680236334011 -7065.0,0.24428363648212137 -7066.0,0.24419927847209827 -7067.0,0.2441149495932686 -7068.0,0.24403064983557243 -7069.0,0.24394637918895348 -7070.0,0.24386213764335896 -7071.0,0.24377792518873928 -7072.0,0.2436937418150487 -7073.0,0.2436095875122446 -7074.0,0.24352546227028812 -7075.0,0.2434413660791436 -7076.0,0.24335729892877908 -7077.0,0.2432732608091659 -7078.0,0.24318925171027897 -7079.0,0.24310527162209658 -7080.0,0.24302132053460057 -7081.0,0.24293739843777604 -7082.0,0.24285350532161193 -7083.0,0.2427696411761002 -7084.0,0.24268580599123663 -7085.0,0.24260199975702013 -7086.0,0.2425182224634534 -7087.0,0.24243447410054225 -7088.0,0.24235075465829625 -7089.0,0.24226706412672816 -7090.0,0.24218340249585446 -7091.0,0.24209976975569475 -7092.0,0.2420161658962724 -7093.0,0.241932590907614 -7094.0,0.2418490447797497 -7095.0,0.241765527502713 -7096.0,0.241682039066541 -7097.0,0.24159857946127403 -7098.0,0.24151514867695603 -7099.0,0.2414317467036343 -7100.0,0.24134837353135957 -7101.0,0.2412650291501861 -7102.0,0.2411817135501714 -7103.0,0.24109842672137669 -7104.0,0.24101516865386627 -7105.0,0.2409319393377082 -7106.0,0.24084873876297375 -7107.0,0.24076556691973777 -7108.0,0.24068242379807836 -7109.0,0.24059930938807728 -7110.0,0.24051622367981945 -7111.0,0.24043316666339348 -7112.0,0.24035013832889118 -7113.0,0.24026713866640795 -7114.0,0.24018416766604245 -7115.0,0.24010122531789696 -7116.0,0.2400183116120769 -7117.0,0.23993542653869146 -7118.0,0.23985257008785288 -7119.0,0.23976974224967706 -7120.0,0.2396869430142833 -7121.0,0.23960417237179418 -7122.0,0.23952143031233583 -7123.0,0.23943871682603765 -7124.0,0.2393560319030326 -7125.0,0.23927337553345687 -7126.0,0.23919074770745027 -7127.0,0.23910814841515582 -7128.0,0.2390255776467201 -7129.0,0.23894303539229295 -7130.0,0.23886052164202773 -7131.0,0.2387780363860811 -7132.0,0.23869557961461324 -7133.0,0.23861315131778757 -7134.0,0.2385307514857711 -7135.0,0.23844838010873404 -7136.0,0.23836603717685018 -7137.0,0.23828372268029646 -7138.0,0.23820143660925347 -7139.0,0.2381191789539051 -7140.0,0.23803694970443856 -7141.0,0.23795474885104453 -7142.0,0.23787257638391698 -7143.0,0.23779043229325347 -7144.0,0.23770831656925465 -7145.0,0.23762622920212484 -7146.0,0.23754417018207152 -7147.0,0.23746213949930572 -7148.0,0.23738013714404171 -7149.0,0.23729816310649732 -7150.0,0.23721621737689347 -7151.0,0.23713429994545482 -7152.0,0.23705241080240907 -7153.0,0.23697054993798755 -7154.0,0.23688871734242475 -7155.0,0.23680691300595877 -7156.0,0.2367251369188308 -7157.0,0.23664338907128563 -7158.0,0.23656166945357138 -7159.0,0.2364799780559394 -7160.0,0.2363983148686446 -7161.0,0.23631667988194505 -7162.0,0.2362350730861024 -7163.0,0.23615349447138145 -7164.0,0.23607194402805057 -7165.0,0.2359904217463813 -7166.0,0.2359089276166487 -7167.0,0.235827461629131 -7168.0,0.23574602377411005 -7169.0,0.2356646140418708 -7170.0,0.23558323242270174 -7171.0,0.23550187890689453 -7172.0,0.2354205534847444 -7173.0,0.2353392561465497 -7174.0,0.23525798688261243 -7175.0,0.23517674568323757 -7176.0,0.23509553253873372 -7177.0,0.2350143474394128 -7178.0,0.2349331903755899 -7179.0,0.23485206133758368 -7180.0,0.23477096031571598 -7181.0,0.23468988730031207 -7182.0,0.23460884228170048 -7183.0,0.2345278252502132 -7184.0,0.23444683619618542 -7185.0,0.23436587510995582 -7186.0,0.23428494198186622 -7187.0,0.234204036802262 -7188.0,0.23412315956149168 -7189.0,0.23404231024990726 -7190.0,0.23396148885786391 -7191.0,0.23388069537572037 -7192.0,0.23379992979383843 -7193.0,0.23371919210258343 -7194.0,0.2336384822923239 -7195.0,0.23355780035343177 -7196.0,0.2334771462762823 -7197.0,0.233396520051254 -7198.0,0.2333159216687288 -7199.0,0.23323535111909185 -7200.0,0.23315480839273173 -7201.0,0.2330742934800402 -7202.0,0.23299380637141248 -7203.0,0.232913347057247 -7204.0,0.23283291552794563 -7205.0,0.23275251177391337 -7206.0,0.23267213578555873 -7207.0,0.23259178755329335 -7208.0,0.2325114670675324 -7209.0,0.23243117431869406 -7210.0,0.23235090929720018 -7211.0,0.23227067199347554 -7212.0,0.23219046239794858 -7213.0,0.23211028050105076 -7214.0,0.23203012629321698 -7215.0,0.23194999976488553 -7216.0,0.23186990090649778 -7217.0,0.23178982970849862 -7218.0,0.23170978616133606 -7219.0,0.23162977025546153 -7220.0,0.23154978198132967 -7221.0,0.23146982132939856 -7222.0,0.23138988829012933 -7223.0,0.2313099828539867 -7224.0,0.23123010501143842 -7225.0,0.23115025475295572 -7226.0,0.231070432069013 -7227.0,0.23099063695008806 -7228.0,0.23091086938666183 -7229.0,0.2308311293692187 -7230.0,0.2307514168882462 -7231.0,0.23067173193423532 -7232.0,0.23059207449768007 -7233.0,0.23051244456907802 -7234.0,0.2304328421389299 -7235.0,0.23035326719773963 -7236.0,0.2302737197360146 -7237.0,0.2301941997442653 -7238.0,0.23011470721300564 -7239.0,0.23003524213275267 -7240.0,0.2299558044940269 -7241.0,0.22987639428735182 -7242.0,0.22979701150325457 -7243.0,0.2297176561322652 -7244.0,0.2296383281649173 -7245.0,0.22955902759174754 -7246.0,0.22947975440329604 -7247.0,0.22940050859010597 -7248.0,0.22932129014272398 -7249.0,0.22924209905169982 -7250.0,0.22916293530758663 -7251.0,0.22908379890094066 -7252.0,0.2290046898223216 -7253.0,0.2289256080622923 -7254.0,0.22884655361141887 -7255.0,0.2287675264602707 -7256.0,0.2286885265994204 -7257.0,0.2286095540194439 -7258.0,0.22853060871092032 -7259.0,0.22845169066443208 -7260.0,0.22837279987056477 -7261.0,0.2282939363199074 -7262.0,0.228215100003052 -7263.0,0.22813629091059412 -7264.0,0.22805750903313227 -7265.0,0.22797875436126847 -7266.0,0.2279000268856077 -7267.0,0.22782132659675852 -7268.0,0.22774265348533246 -7269.0,0.22766400754194444 -7270.0,0.2275853887572125 -7271.0,0.22750679712175803 -7272.0,0.22742823262620568 -7273.0,0.22734969526118318 -7274.0,0.2272711850173217 -7275.0,0.22719270188525542 -7276.0,0.227114245855622 -7277.0,0.2270358169190621 -7278.0,0.2269574150662198 -7279.0,0.22687904028774228 -7280.0,0.22680069257428004 -7281.0,0.2267223719164867 -7282.0,0.22664407830501926 -7283.0,0.2265658117305378 -7284.0,0.22648757218370574 -7285.0,0.22640935965518963 -7286.0,0.2263311741356593 -7287.0,0.22625301561578778 -7288.0,0.2261748840862514 -7289.0,0.2260967795377295 -7290.0,0.22601870196090484 -7291.0,0.22594065134646343 -7292.0,0.22586262768509424 -7293.0,0.22578463096748977 -7294.0,0.22570666118434543 -7295.0,0.22562871832636014 -7296.0,0.22555080238423575 -7297.0,0.22547291334867756 -7298.0,0.2253950512103939 -7299.0,0.22531721596009646 -7300.0,0.2252394075885 -7301.0,0.2251616260863226 -7302.0,0.2250838714442854 -7303.0,0.22500614365311297 -7304.0,0.22492844270353282 -7305.0,0.22485076858627592 -7306.0,0.22477312129207622 -7307.0,0.22469550081167103 -7308.0,0.2246179071358007 -7309.0,0.22454034025520894 -7310.0,0.2244628001606426 -7311.0,0.22438528684285167 -7312.0,0.22430780029258943 -7313.0,0.2242303405006122 -7314.0,0.2241529074576797 -7315.0,0.22407550115455468 -7316.0,0.22399812158200316 -7317.0,0.22392076873079425 -7318.0,0.22384344259170041 -7319.0,0.22376614315549714 -7320.0,0.22368887041296323 -7321.0,0.2236116243548805 -7322.0,0.2235344049720342 -7323.0,0.2234572122552125 -7324.0,0.22338004619520696 -7325.0,0.22330290678281217 -7326.0,0.223225794008826 -7327.0,0.22314870786404942 -7328.0,0.2230716483392866 -7329.0,0.22299461542534504 -7330.0,0.2229176091130351 -7331.0,0.22284062939317062 -7332.0,0.22276367625656834 -7333.0,0.22268674969404847 -7334.0,0.2226098496964341 -7335.0,0.22253297625455173 -7336.0,0.22245612935923084 -7337.0,0.2223793090013042 -7338.0,0.22230251517160765 -7339.0,0.22222574786098032 -7340.0,0.22214900706026433 -7341.0,0.22207229276030518 -7342.0,0.2219956049519513 -7343.0,0.22191894362605452 -7344.0,0.22184230877346955 -7345.0,0.22176570038505455 -7346.0,0.2216891184516706 -7347.0,0.22161256296418208 -7348.0,0.2215360339134565 -7349.0,0.22145953129036444 -7350.0,0.22138305508577977 -7351.0,0.22130660529057936 -7352.0,0.22123018189564336 -7353.0,0.22115378489185497 -7354.0,0.22107741427010066 -7355.0,0.2210010700212699 -7356.0,0.22092475213625543 -7357.0,0.22084846060595298 -7358.0,0.2207721954212617 -7359.0,0.22069595657308352 -7360.0,0.22061974405232385 -7361.0,0.220543557849891 -7362.0,0.2204673979566966 -7363.0,0.2203912643636552 -7364.0,0.22031515706168475 -7365.0,0.22023907604170612 -7366.0,0.2201630212946434 -7367.0,0.2200869928114239 -7368.0,0.22001099058297788 -7369.0,0.2199350146002389 -7370.0,0.2198590648541435 -7371.0,0.2197831413356315 -7372.0,0.21970724403564573 -7373.0,0.21963137294513224 -7374.0,0.2195555280550401 -7375.0,0.21947970935632166 -7376.0,0.2194039168399322 -7377.0,0.21932815049683033 -7378.0,0.21925241031797754 -7379.0,0.21917669629433872 -7380.0,0.21910100841688165 -7381.0,0.2190253466765774 -7382.0,0.21894971106439995 -7383.0,0.21887410157132664 -7384.0,0.21879851818833773 -7385.0,0.2187229609064167 -7386.0,0.21864742971655018 -7387.0,0.21857192460972774 -7388.0,0.21849644557694228 -7389.0,0.2184209926091896 -7390.0,0.21834556569746882 -7391.0,0.21827016483278194 -7392.0,0.2181947900061343 -7393.0,0.2181194412085341 -7394.0,0.21804411843099292 -7395.0,0.2179688216645252 -7396.0,0.21789355090014867 -7397.0,0.21781830612888395 -7398.0,0.21774308734175504 -7399.0,0.21766789452978877 -7400.0,0.21759272768401527 -7401.0,0.2175175867954676 -7402.0,0.2174424718551821 -7403.0,0.217367382854198 -7404.0,0.21729231978355773 -7405.0,0.21721728263430695 -7406.0,0.21714227139749415 -7407.0,0.21706728606417108 -7408.0,0.2169923266253925 -7409.0,0.21691739307221639 -7410.0,0.21684248539570358 -7411.0,0.21676760358691827 -7412.0,0.2166927476369275 -7413.0,0.2166179175368016 -7414.0,0.21654311327761375 -7415.0,0.2164683348504405 -7416.0,0.2163935822463612 -7417.0,0.21631885545645851 -7418.0,0.216244154471818 -7419.0,0.21616947928352845 -7420.0,0.21609482988268156 -7421.0,0.2160202062603723 -7422.0,0.21594560840769852 -7423.0,0.2158710363157613 -7424.0,0.21579648997566478 -7425.0,0.215721969378516 -7426.0,0.21564747451542535 -7427.0,0.21557300537750598 -7428.0,0.2154985619558744 -7429.0,0.21542414424164996 -7430.0,0.2153497522259552 -7431.0,0.21527538589991568 -7432.0,0.2152010452546601 -7433.0,0.21512673028132007 -7434.0,0.21505244097103043 -7435.0,0.21497817731492896 -7436.0,0.2149039393041566 -7437.0,0.21482972692985722 -7438.0,0.2147555401831779 -7439.0,0.21468137905526866 -7440.0,0.21460724353728264 -7441.0,0.21453313362037596 -7442.0,0.21445904929570792 -7443.0,0.2143849905544408 -7444.0,0.21431095738773984 -7445.0,0.21423694978677355 -7446.0,0.21416296774271323 -7447.0,0.2140890112467335 -7448.0,0.21401508029001173 -7449.0,0.21394117486372868 -7450.0,0.2138672949590678 -7451.0,0.2137934405672159 -7452.0,0.21371961167936257 -7453.0,0.21364580828670063 -7454.0,0.21357203038042585 -7455.0,0.2134982779517371 -7456.0,0.21342455099183616 -7457.0,0.2133508494919281 -7458.0,0.21327717344322067 -7459.0,0.21320352283692504 -7460.0,0.21312989766425508 -7461.0,0.21305629791642794 -7462.0,0.2129827235846637 -7463.0,0.2129091746601854 -7464.0,0.21283565113421932 -7465.0,0.21276215299799453 -7466.0,0.2126886802427433 -7467.0,0.21261523285970077 -7468.0,0.21254181084010534 -7469.0,0.2124684141751982 -7470.0,0.21239504285622374 -7471.0,0.21232169687442917 -7472.0,0.21224837622106502 -7473.0,0.21217508088738452 -7474.0,0.21210181086464416 -7475.0,0.2120285661441033 -7476.0,0.21195534671702446 -7477.0,0.21188215257467297 -7478.0,0.21180898370831747 -7479.0,0.21173584010922927 -7480.0,0.211662721768683 -7481.0,0.21158962867795617 -7482.0,0.2115165608283292 -7483.0,0.21144351821108578 -7484.0,0.2113705008175123 -7485.0,0.21129750863889846 -7486.0,0.21122454166653673 -7487.0,0.21115159989172275 -7488.0,0.211078683305755 -7489.0,0.21100579189993518 -7490.0,0.21093292566556776 -7491.0,0.21086008459396047 -7492.0,0.21078726867642375 -7493.0,0.2107144779042713 -7494.0,0.21064171226881967 -7495.0,0.21056897176138847 -7496.0,0.21049625637330024 -7497.0,0.2104235660958806 -7498.0,0.21035090092045816 -7499.0,0.21027826083836443 -7500.0,0.21020564584093404 -7501.0,0.21013305591950449 -7502.0,0.2100604910654164 -7503.0,0.20998795127001324 -7504.0,0.20991543652464162 -7505.0,0.20984294682065097 -7506.0,0.20977048214939387 -7507.0,0.20969804250222573 -7508.0,0.20962562787050518 -7509.0,0.2095532382455935 -7510.0,0.20948087361885526 -7511.0,0.20940853398165782 -7512.0,0.20933621932537166 -7513.0,0.20926392964137008 -7514.0,0.20919166492102953 -7515.0,0.2091194251557293 -7516.0,0.20904721033685172 -7517.0,0.20897502045578215 -7518.0,0.20890285550390875 -7519.0,0.20883071547262289 -7520.0,0.2087586003533187 -7521.0,0.20868651013739342 -7522.0,0.2086144448162472 -7523.0,0.20854240438128316 -7524.0,0.2084703888239074 -7525.0,0.20839839813552904 -7526.0,0.20832643230756004 -7527.0,0.20825449133141546 -7528.0,0.20818257519851321 -7529.0,0.20811068390027432 -7530.0,0.20803881742812255 -7531.0,0.20796697577348486 -7532.0,0.20789515892779098 -7533.0,0.2078233668824738 -7534.0,0.20775159962896889 -7535.0,0.20767985715871506 -7536.0,0.20760813946315398 -7537.0,0.20753644653373013 -7538.0,0.2074647783618912 -7539.0,0.20739313493908756 -7540.0,0.20732151625677284 -7541.0,0.20724992230640327 -7542.0,0.20717835307943838 -7543.0,0.20710680856734034 -7544.0,0.20703528876157454 -7545.0,0.20696379365360906 -7546.0,0.2068923232349152 -7547.0,0.20682087749696693 -7548.0,0.20674945643124137 -7549.0,0.20667806002921846 -7550.0,0.20660668828238118 -7551.0,0.20653534118221534 -7552.0,0.20646401872020984 -7553.0,0.2063927208878563 -7554.0,0.2063214476766495 -7555.0,0.20625019907808712 -7556.0,0.20617897508366959 -7557.0,0.2061077756849005 -7558.0,0.2060366008732862 -7559.0,0.20596545064033617 -7560.0,0.2058943249775626 -7561.0,0.20582322387648078 -7562.0,0.20575214732860883 -7563.0,0.20568109532546786 -7564.0,0.20561006785858185 -7565.0,0.2055390649194778 -7566.0,0.2054680864996855 -7567.0,0.20539713259073783 -7568.0,0.2053262031841704 -7569.0,0.20525529827152197 -7570.0,0.205184417844334 -7571.0,0.20511356189415106 -7572.0,0.20504273041252044 -7573.0,0.20497192339099254 -7574.0,0.20490114082112063 -7575.0,0.20483038269446077 -7576.0,0.20475964900257212 -7577.0,0.20468893973701657 -7578.0,0.20461825488935914 -7579.0,0.20454759445116752 -7580.0,0.20447695841401256 -7581.0,0.20440634676946776 -7582.0,0.2043357595091098 -7583.0,0.204265196624518 -7584.0,0.20419465810727486 -7585.0,0.20412414394896555 -7586.0,0.2040536541411783 -7587.0,0.20398318867550413 -7588.0,0.20391274754353708 -7589.0,0.203842330736874 -7590.0,0.20377193824711473 -7591.0,0.2037015700658619 -7592.0,0.2036312261847211 -7593.0,0.2035609065953009 -7594.0,0.2034906112892126 -7595.0,0.20342034025807051 -7596.0,0.20335009349349178 -7597.0,0.20327987098709657 -7598.0,0.20320967273050775 -7599.0,0.20313949871535122 -7600.0,0.20306934893325573 -7601.0,0.20299922337585294 -7602.0,0.20292912203477734 -7603.0,0.20285904490166642 -7604.0,0.2027889919681604 -7605.0,0.20271896322590255 -7606.0,0.20264895866653887 -7607.0,0.20257897828171845 -7608.0,0.202509022063093 -7609.0,0.20243909000231738 -7610.0,0.20236918209104912 -7611.0,0.20229929832094873 -7612.0,0.20222943868367962 -7613.0,0.202159603170908 -7614.0,0.20208979177430308 -7615.0,0.20202000448553675 -7616.0,0.20195024129628403 -7617.0,0.20188050219822254 -7618.0,0.20181078718303305 -7619.0,0.20174109624239894 -7620.0,0.20167142936800672 -7621.0,0.2016017865515455 -7622.0,0.20153216778470753 -7623.0,0.2014625730591877 -7624.0,0.20139300236668395 -7625.0,0.2013234556988969 -7626.0,0.20125393304753025 -7627.0,0.20118443440429037 -7628.0,0.20111495976088664 -7629.0,0.20104550910903118 -7630.0,0.20097608244043907 -7631.0,0.20090667974682824 -7632.0,0.20083730101991942 -7633.0,0.20076794625143626 -7634.0,0.2006986154331052 -7635.0,0.20062930855665562 -7636.0,0.20056002561381964 -7637.0,0.20049076659633244 -7638.0,0.20042153149593178 -7639.0,0.20035232030435857 -7640.0,0.20028313301335626 -7641.0,0.20021396961467144 -7642.0,0.20014483010005332 -7643.0,0.2000757144612542 -7644.0,0.2000066226900289 -7645.0,0.19993755477813543 -7646.0,0.19986851071733439 -7647.0,0.19979949049938941 -7648.0,0.19973049411606683 -7649.0,0.19966152155913586 -7650.0,0.19959257282036869 -7651.0,0.1995236478915401 -7652.0,0.19945474676442795 -7653.0,0.19938586943081277 -7654.0,0.19931701588247805 -7655.0,0.19924818611121 -7656.0,0.19917938010879785 -7657.0,0.1991105978670334 -7658.0,0.1990418393777115 -7659.0,0.19897310463262977 -7660.0,0.19890439362358864 -7661.0,0.1988357063423914 -7662.0,0.19876704278084414 -7663.0,0.1986984029307558 -7664.0,0.1986297867839382 -7665.0,0.19856119433220581 -7666.0,0.1984926255673762 -7667.0,0.1984240804812695 -7668.0,0.19835555906570881 -7669.0,0.1982870613125201 -7670.0,0.198218587213532 -7671.0,0.1981501367605761 -7672.0,0.1980817099454867 -7673.0,0.19801330676010107 -7674.0,0.19794492719625909 -7675.0,0.1978765712458037 -7676.0,0.19780823890058044 -7677.0,0.19773993015243782 -7678.0,0.19767164499322706 -7679.0,0.1976033834148023 -7680.0,0.1975351454090203 -7681.0,0.19746693096774096 -7682.0,0.19739874008282662 -7683.0,0.1973305727461427 -7684.0,0.19726242894955728 -7685.0,0.1971943086849414 -7686.0,0.19712621194416866 -7687.0,0.19705813871911568 -7688.0,0.1969900890016619 -7689.0,0.19692206278368937 -7690.0,0.19685406005708314 -7691.0,0.19678608081373092 -7692.0,0.19671812504552336 -7693.0,0.19665019274435372 -7694.0,0.19658228390211827 -7695.0,0.19651439851071592 -7696.0,0.1964465365620485 -7697.0,0.1963786980480205 -7698.0,0.19631088296053933 -7699.0,0.1962430912915151 -7700.0,0.19617532303286084 -7701.0,0.1961075781764922 -7702.0,0.19603985671432778 -7703.0,0.19597215863828885 -7704.0,0.19590448394029958 -7705.0,0.1958368326122868 -7706.0,0.19576920464618022 -7707.0,0.1957016000339124 -7708.0,0.19563401876741848 -7709.0,0.19556646083863663 -7710.0,0.19549892623950757 -7711.0,0.195431414961975 -7712.0,0.19536392699798524 -7713.0,0.19529646233948755 -7714.0,0.1952290209784338 -7715.0,0.19516160290677884 -7716.0,0.19509420811648007 -7717.0,0.19502683659949785 -7718.0,0.19495948834779522 -7719.0,0.19489216335333806 -7720.0,0.19482486160809492 -7721.0,0.1947575831040373 -7722.0,0.19469032783313925 -7723.0,0.1946230957873778 -7724.0,0.19455588695873258 -7725.0,0.19448870133918608 -7726.0,0.19442153892072364 -7727.0,0.19435439969533314 -7728.0,0.19428728365500547 -7729.0,0.19422019079173408 -7730.0,0.19415312109751537 -7731.0,0.19408607456434834 -7732.0,0.1940190511842349 -7733.0,0.19395205094917958 -7734.0,0.1938850738511898 -7735.0,0.1938181198822756 -7736.0,0.19375118903444996 -7737.0,0.19368428129972845 -7738.0,0.19361739667012948 -7739.0,0.1935505351376742 -7740.0,0.19348369669438656 -7741.0,0.19341688133229312 -7742.0,0.1933500890434234 -7743.0,0.1932833198198095 -7744.0,0.19321657365348635 -7745.0,0.19314985053649167 -7746.0,0.1930831504608658 -7747.0,0.193016473418652 -7748.0,0.1929498194018961 -7749.0,0.19288318840264682 -7750.0,0.1928165804129555 -7751.0,0.19274999542487636 -7752.0,0.19268343343046626 -7753.0,0.1926168944217849 -7754.0,0.19255037839089453 -7755.0,0.1924838853298604 -7756.0,0.19241741523075032 -7757.0,0.1923509680856349 -7758.0,0.19228454388658747 -7759.0,0.19221814262568412 -7760.0,0.19215176429500366 -7761.0,0.19208540888662765 -7762.0,0.19201907639264035 -7763.0,0.19195276680512877 -7764.0,0.1918864801161827 -7765.0,0.1918202163178946 -7766.0,0.1917539754023597 -7767.0,0.19168775736167587 -7768.0,0.1916215621879439 -7769.0,0.19155538987326706 -7770.0,0.1914892404097516 -7771.0,0.19142311378950627 -7772.0,0.19135701000464272 -7773.0,0.19129092904727518 -7774.0,0.19122487090952076 -7775.0,0.19115883558349908 -7776.0,0.19109282306133277 -7777.0,0.19102683333514686 -7778.0,0.19096086639706938 -7779.0,0.19089492223923085 -7780.0,0.19082900085376472 -7781.0,0.19076310223280693 -7782.0,0.19069722636849634 -7783.0,0.19063137325297447 -7784.0,0.19056554287838542 -7785.0,0.19049973523687622 -7786.0,0.19043395032059637 -7787.0,0.1903681881216983 -7788.0,0.19030244863233703 -7789.0,0.19023673184467038 -7790.0,0.1901710377508587 -7791.0,0.19010536634306524 -7792.0,0.19003971761345584 -7793.0,0.18997409155419917 -7794.0,0.1899084881574664 -7795.0,0.1898429074154316 -7796.0,0.18977734932027146 -7797.0,0.18971181386416539 -7798.0,0.1896463010392954 -7799.0,0.1895808108378464 -7800.0,0.1895153432520058 -7801.0,0.18944989827396383 -7802.0,0.18938447589591342 -7803.0,0.18931907611005008 -7804.0,0.1892536989085722 -7805.0,0.1891883442836806 -7806.0,0.1891230122275791 -7807.0,0.18905770273247396 -7808.0,0.18899241579057433 -7809.0,0.18892715139409183 -7810.0,0.188861909535241 -7811.0,0.18879669020623893 -7812.0,0.18873149339930542 -7813.0,0.18866631910666296 -7814.0,0.18860116732053675 -7815.0,0.18853603803315463 -7816.0,0.18847093123674719 -7817.0,0.18840584692354762 -7818.0,0.18834078508579188 -7819.0,0.18827574571571853 -7820.0,0.18821072880556886 -7821.0,0.18814573434758686 -7822.0,0.1880807623340191 -7823.0,0.18801581275711496 -7824.0,0.18795088560912637 -7825.0,0.18788598088230804 -7826.0,0.18782109856891727 -7827.0,0.18775623866121413 -7828.0,0.18769140115146124 -7829.0,0.187626586031924 -7830.0,0.1875617932948704 -7831.0,0.18749702293257123 -7832.0,0.18743227493729972 -7833.0,0.18736754930133204 -7834.0,0.18730284601694677 -7835.0,0.1872381650764254 -7836.0,0.1871735064720519 -7837.0,0.18710887019611297 -7838.0,0.18704425624089796 -7839.0,0.1869796645986989 -7840.0,0.18691509526181058 -7841.0,0.1868505482225302 -7842.0,0.18678602347315787 -7843.0,0.18672152100599618 -7844.0,0.18665704081335055 -7845.0,0.18659258288752886 -7846.0,0.18652814722084185 -7847.0,0.18646373380560272 -7848.0,0.1863993426341275 -7849.0,0.18633497369873472 -7850.0,0.1862706269917457 -7851.0,0.1862063025054843 -7852.0,0.18614200023227714 -7853.0,0.18607772016445334 -7854.0,0.18601346229434484 -7855.0,0.18594922661428606 -7856.0,0.18588501311661426 -7857.0,0.18582082179366913 -7858.0,0.18575665263779315 -7859.0,0.18569250564133144 -7860.0,0.1856283807966317 -7861.0,0.18556427809604434 -7862.0,0.1855001975319223 -7863.0,0.18543613909662132 -7864.0,0.18537210278249963 -7865.0,0.18530808858191822 -7866.0,0.1852440964872406 -7867.0,0.18518012649083307 -7868.0,0.18511617858506438 -7869.0,0.18505225276230608 -7870.0,0.18498834901493222 -7871.0,0.18492446733531961 -7872.0,0.18486060771584759 -7873.0,0.18479677014889823 -7874.0,0.1847329546268561 -7875.0,0.18466916114210855 -7876.0,0.18460538968704537 -7877.0,0.1845416402540592 -7878.0,0.18447791283554518 -7879.0,0.18441420742390102 -7880.0,0.18435052401152724 -7881.0,0.18428686259082677 -7882.0,0.18422322315420536 -7883.0,0.1841596056940712 -7884.0,0.18409601020283525 -7885.0,0.18403243667291097 -7886.0,0.1839688850967146 -7887.0,0.1839053554666648 -7888.0,0.18384184777518306 -7889.0,0.18377836201469322 -7890.0,0.18371489817762204 -7891.0,0.18365145625639867 -7892.0,0.183588036243455 -7893.0,0.18352463813122538 -7894.0,0.183461261912147 -7895.0,0.18339790757865948 -7896.0,0.18333457512320508 -7897.0,0.1832712645382288 -7898.0,0.18320797581617806 -7899.0,0.18314470894950305 -7900.0,0.18308146393065639 -7901.0,0.1830182407520935 -7902.0,0.18295503940627228 -7903.0,0.1828918598856533 -7904.0,0.18282870218269962 -7905.0,0.1827655662898771 -7906.0,0.182702452199654 -7907.0,0.18263935990450134 -7908.0,0.1825762893968926 -7909.0,0.182513240669304 -7910.0,0.1824502137142142 -7911.0,0.18238720852410464 -7912.0,0.18232422509145915 -7913.0,0.1822612634087644 -7914.0,0.1821983234685094 -7915.0,0.1821354052631859 -7916.0,0.1820725087852883 -7917.0,0.1820096340273134 -7918.0,0.1819467809817608 -7919.0,0.18188394964113247 -7920.0,0.1818211399979332 -7921.0,0.1817583520446702 -7922.0,0.18169558577385336 -7923.0,0.18163284117799508 -7924.0,0.18157011824961042 -7925.0,0.18150741698121695 -7926.0,0.18144473736533495 -7927.0,0.18138207939448708 -7928.0,0.18131944306119882 -7929.0,0.18125682835799803 -7930.0,0.1811942352774153 -7931.0,0.18113166381198362 -7932.0,0.1810691139542388 -7933.0,0.181006585696719 -7934.0,0.1809440790319651 -7935.0,0.18088159395252054 -7936.0,0.18081913045093123 -7937.0,0.18075668851974583 -7938.0,0.18069426815151535 -7939.0,0.1806318693387936 -7940.0,0.1805694920741368 -7941.0,0.18050713635010385 -7942.0,0.18044480215925607 -7943.0,0.18038248949415756 -7944.0,0.18032019834737475 -7945.0,0.1802579287114769 -7946.0,0.18019568057903557 -7947.0,0.18013345394262512 -7948.0,0.18007124879482225 -7949.0,0.18000906512820647 -7950.0,0.17994690293535962 -7951.0,0.17988476220886623 -7952.0,0.1798226429413134 -7953.0,0.17976054512529066 -7954.0,0.17969846875339035 -7955.0,0.17963641381820705 -7956.0,0.1795743803123382 -7957.0,0.1795123682283835 -7958.0,0.17945037755894552 -7959.0,0.1793884082966291 -7960.0,0.17932646043404188 -7961.0,0.1792645339637938 -7962.0,0.17920262887849758 -7963.0,0.17914074517076833 -7964.0,0.17907888283322382 -7965.0,0.1790170418584843 -7966.0,0.17895522223917262 -7967.0,0.1788934239679141 -7968.0,0.17883164703733673 -7969.0,0.1787698914400709 -7970.0,0.1787081571687497 -7971.0,0.17864644421600856 -7972.0,0.17858475257448564 -7973.0,0.17852308223682165 -7974.0,0.17846143319565963 -7975.0,0.17839980544364542 -7976.0,0.1783381989734272 -7977.0,0.17827661377765583 -7978.0,0.1782150498489846 -7979.0,0.1781535071800694 -7980.0,0.17809198576356858 -7981.0,0.17803048559214318 -7982.0,0.1779690066584566 -7983.0,0.17790754895517494 -7984.0,0.17784611247496662 -7985.0,0.17778469721050283 -7986.0,0.1777233031544571 -7987.0,0.17766193029950564 -7988.0,0.17760057863832704 -7989.0,0.17753924816360253 -7990.0,0.17747793886801583 -7991.0,0.17741665074425317 -7992.0,0.17735538378500337 -7993.0,0.17729413798295768 -7994.0,0.17723291333080998 -7995.0,0.17717170982125652 -7996.0,0.1771105274469963 -7997.0,0.17704936620073056 -7998.0,0.17698822607516332 -7999.0,0.17692710706300094 -8000.0,0.17686600915695244 -8001.0,0.17680493234972922 -8002.0,0.17674387663404528 -8003.0,0.1766828420026171 -8004.0,0.1766218284481638 -8005.0,0.17656083596340674 -8006.0,0.1764998645410701 -8007.0,0.17643891417388038 -8008.0,0.17637798485456666 -8009.0,0.17631707657586046 -8010.0,0.1762561893304959 -8011.0,0.17619532311120964 -8012.0,0.1761344779107407 -8013.0,0.17607365372183073 -8014.0,0.1760128505372238 -8015.0,0.17595206834966662 -8016.0,0.17589130715190823 -8017.0,0.17583056693670035 -8018.0,0.17576984769679704 -8019.0,0.17570914942495497 -8020.0,0.17564847211393325 -8021.0,0.1755878157564936 -8022.0,0.17552718034540005 -8023.0,0.1754665658734193 -8024.0,0.17540597233332048 -8025.0,0.17534539971787522 -8026.0,0.1752848480198576 -8027.0,0.17522431723204437 -8028.0,0.1751638073472145 -8029.0,0.17510331835814968 -8030.0,0.17504285025763405 -8031.0,0.1749824030384541 -8032.0,0.17492197669339904 -8033.0,0.17486157121526033 -8034.0,0.17480118659683214 -8035.0,0.17474082283091094 -8036.0,0.17468047991029587 -8037.0,0.17462015782778834 -8038.0,0.17455985657619244 -8039.0,0.17449957614831466 -8040.0,0.17443931653696398 -8041.0,0.17437907773495187 -8042.0,0.17431885973509229 -8043.0,0.17425866253020164 -8044.0,0.17419848611309888 -8045.0,0.17413833047660535 -8046.0,0.17407819561354496 -8047.0,0.17401808151674403 -8048.0,0.17395798817903138 -8049.0,0.1738979155932384 -8050.0,0.17383786375219873 -8051.0,0.17377783264874877 -8052.0,0.17371782227572713 -8053.0,0.17365783262597506 -8054.0,0.1735978636923362 -8055.0,0.1735379154676568 -8056.0,0.1734779879447853 -8057.0,0.17341808111657295 -8058.0,0.17335819497587318 -8059.0,0.1732983295155421 -8060.0,0.1732384847284381 -8061.0,0.17317866060742226 -8062.0,0.17311885714535788 -8063.0,0.17305907433511092 -8064.0,0.17299931216954964 -8065.0,0.17293957064154497 -8066.0,0.17287984974397008 -8067.0,0.17282014946970073 -8068.0,0.17276046981161516 -8069.0,0.17270081076259397 -8070.0,0.1726411723155203 -8071.0,0.1725815544632797 -8072.0,0.1725219571987602 -8073.0,0.17246238051485224 -8074.0,0.17240282440444885 -8075.0,0.17234328886044534 -8076.0,0.1722837738757396 -8077.0,0.17222427944323188 -8078.0,0.17216480555582497 -8079.0,0.17210535220642403 -8080.0,0.17204591938793676 -8081.0,0.1719865070932732 -8082.0,0.17192711531534596 -8083.0,0.17186774404706995 -8084.0,0.17180839328136271 -8085.0,0.17174906301114407 -8086.0,0.17168975322933633 -8087.0,0.17163046392886436 -8088.0,0.17157119510265526 -8089.0,0.17151194674363882 -8090.0,0.17145271884474703 -8091.0,0.1713935113989145 -8092.0,0.17133432439907817 -8093.0,0.17127515783817754 -8094.0,0.17121601170915435 -8095.0,0.17115688600495302 -8096.0,0.1710977807185202 -8097.0,0.1710386958428051 -8098.0,0.1709796313707593 -8099.0,0.17092058729533688 -8100.0,0.17086156360949425 -8101.0,0.1708025603061904 -8102.0,0.17074357737838655 -8103.0,0.1706846148190466 -8104.0,0.17062567262113665 -8105.0,0.17056675077762531 -8106.0,0.17050784928148377 -8107.0,0.17044896812568536 -8108.0,0.17039010730320608 -8109.0,0.1703312668070242 -8110.0,0.17027244663012053 -8111.0,0.17021364676547823 -8112.0,0.17015486720608292 -8113.0,0.17009610794492258 -8114.0,0.17003736897498772 -8115.0,0.16997865028927114 -8116.0,0.16991995188076822 -8117.0,0.1698612737424766 -8118.0,0.16980261586739642 -8119.0,0.1697439782485302 -8120.0,0.16968536087888297 -8121.0,0.16962676375146202 -8122.0,0.16956818685927721 -8123.0,0.1695096301953407 -8124.0,0.16945109375266712 -8125.0,0.16939257752427353 -8126.0,0.1693340815031793 -8127.0,0.16927560568240635 -8128.0,0.1692171500549789 -8129.0,0.16915871461392368 -8130.0,0.16910029935226964 -8131.0,0.1690419042630484 -8132.0,0.16898352933929378 -8133.0,0.16892517457404213 -8134.0,0.16886683996033208 -8135.0,0.1688085254912048 -8136.0,0.16875023115970375 -8137.0,0.1686919569588749 -8138.0,0.16863370288176646 -8139.0,0.16857546892142927 -8140.0,0.16851725507091636 -8141.0,0.16845906132328328 -8142.0,0.1684008876715879 -8143.0,0.16834273410889056 -8144.0,0.16828460062825396 -8145.0,0.1682264872227432 -8146.0,0.1681683938854258 -8147.0,0.16811032060937156 -8148.0,0.16805226738765286 -8149.0,0.1679942342133443 -8150.0,0.16793622107952305 -8151.0,0.16787822797926844 -8152.0,0.16782025490566238 -8153.0,0.1677623018517891 -8154.0,0.16770436881073525 -8155.0,0.16764645577558976 -8156.0,0.1675885627394441 -8157.0,0.16753068969539203 -8158.0,0.16747283663652976 -8159.0,0.16741500355595576 -8160.0,0.16735719044677103 -8161.0,0.16729939730207882 -8162.0,0.1672416241149849 -8163.0,0.16718387087859735 -8164.0,0.16712613758602654 -8165.0,0.16706842423038543 -8166.0,0.16701073080478915 -8167.0,0.16695305730235535 -8168.0,0.16689540371620395 -8169.0,0.16683777003945735 -8170.0,0.16678015626524023 -8171.0,0.1667225623866797 -8172.0,0.16666498839690524 -8173.0,0.1666074342890487 -8174.0,0.16654990005624426 -8175.0,0.16649238569162855 -8176.0,0.16643489118834048 -8177.0,0.16637741653952143 -8178.0,0.166319961738315 -8179.0,0.16626252677786738 -8180.0,0.16620511165132687 -8181.0,0.16614771635184433 -8182.0,0.16609034087257296 -8183.0,0.1660329852066682 -8184.0,0.165975649347288 -8185.0,0.16591833328759256 -8186.0,0.16586103702074453 -8187.0,0.16580376053990886 -8188.0,0.16574650383825293 -8189.0,0.16568926690894634 -8190.0,0.16563204974516124 -8191.0,0.16557485234007197 -8192.0,0.16551767468685533 -8193.0,0.16546051677869042 -8194.0,0.16540337860875878 -8195.0,0.16534626017024415 -8196.0,0.1652891614563328 -8197.0,0.1652320824602132 -8198.0,0.16517502317507632 -8199.0,0.1651179835941153 -8200.0,0.16506096371052584 -8201.0,0.16500396351750582 -8202.0,0.16494698300825555 -8203.0,0.1648900221759777 -8204.0,0.16483308101387717 -8205.0,0.16477615951516142 -8206.0,0.16471925767304 -8207.0,0.16466237548072504 -8208.0,0.16460551293143086 -8209.0,0.16454867001837417 -8210.0,0.16449184673477404 -8211.0,0.16443504307385187 -8212.0,0.16437825902883135 -8213.0,0.16432149459293866 -8214.0,0.1642647497594021 -8215.0,0.16420802452145253 -8216.0,0.16415131887232293 -8217.0,0.16409463280524883 -8218.0,0.16403796631346793 -8219.0,0.16398131939022034 -8220.0,0.16392469202874857 -8221.0,0.1638680842222973 -8222.0,0.16381149596411368 -8223.0,0.16375492724744709 -8224.0,0.16369837806554935 -8225.0,0.16364184841167453 -8226.0,0.1635853382790791 -8227.0,0.1635288476610217 -8228.0,0.16347237655076355 -8229.0,0.16341592494156792 -8230.0,0.16335949282670068 -8231.0,0.1633030801994298 -8232.0,0.1632466870530257 -8233.0,0.16319031338076107 -8234.0,0.16313395917591098 -8235.0,0.1630776244317527 -8236.0,0.163021309141566 -8237.0,0.16296501329863283 -8238.0,0.1629087368962375 -8239.0,0.16285247992766672 -8240.0,0.16279624238620932 -8241.0,0.16274002426515666 -8242.0,0.1626838255578023 -8243.0,0.16262764625744217 -8244.0,0.16257148635737442 -8245.0,0.1625153458508997 -8246.0,0.1624592247313207 -8247.0,0.16240312299194273 -8248.0,0.1623470406260732 -8249.0,0.16229097762702188 -8250.0,0.16223493398810085 -8251.0,0.16217890970262455 -8252.0,0.16212290476390967 -8253.0,0.16206691916527527 -8254.0,0.1620109529000426 -8255.0,0.1619550059615354 -8256.0,0.16189907834307948 -8257.0,0.16184317003800314 -8258.0,0.161787281039637 -8259.0,0.16173141134131377 -8260.0,0.16167556093636873 -8261.0,0.16161972981813924 -8262.0,0.16156391797996514 -8263.0,0.1615081254151884 -8264.0,0.16145235211715345 -8265.0,0.16139659807920687 -8266.0,0.16134086329469768 -8267.0,0.16128514775697705 -8268.0,0.16122945145939863 -8269.0,0.16117377439531813 -8270.0,0.16111811655809377 -8271.0,0.1610624779410859 -8272.0,0.16100685853765737 -8273.0,0.16095125834117308 -8274.0,0.16089567734500035 -8275.0,0.16084011554250877 -8276.0,0.16078457292707024 -8277.0,0.16072904949205896 -8278.0,0.1606735452308513 -8279.0,0.16061806013682614 -8280.0,0.16056259420336438 -8281.0,0.16050714742384942 -8282.0,0.1604517197916668 -8283.0,0.1603963113002045 -8284.0,0.1603409219428526 -8285.0,0.16028555171300363 -8286.0,0.16023020060405221 -8287.0,0.1601748686093955 -8288.0,0.1601195557224327 -8289.0,0.16006426193656542 -8290.0,0.1600089872451975 -8291.0,0.1599537316417351 -8292.0,0.15989849511958656 -8293.0,0.15984327767216266 -8294.0,0.1597880792928763 -8295.0,0.1597328999751427 -8296.0,0.15967773971237947 -8297.0,0.15962259849800628 -8298.0,0.15956747632544527 -8299.0,0.15951237318812067 -8300.0,0.1594572890794592 -8301.0,0.15940222399288959 -8302.0,0.1593471779218431 -8303.0,0.15929215085975307 -8304.0,0.1592371428000552 -8305.0,0.15918215373618738 -8306.0,0.15912718366158987 -8307.0,0.15907223256970512 -8308.0,0.15901730045397788 -8309.0,0.1589623873078551 -8310.0,0.15890749312478614 -8311.0,0.15885261789822241 -8312.0,0.1587977616216178 -8313.0,0.15874292428842823 -8314.0,0.15868810589211213 -8315.0,0.15863330642613002 -8316.0,0.1585785258839447 -8317.0,0.1585237642590213 -8318.0,0.1584690215448271 -8319.0,0.15841429773483173 -8320.0,0.158359592822507 -8321.0,0.15830490680132708 -8322.0,0.15825023966476826 -8323.0,0.15819559140630923 -8324.0,0.15814096201943073 -8325.0,0.158086351497616 -8326.0,0.1580317598343503 -8327.0,0.15797718702312133 -8328.0,0.15792263305741885 -8329.0,0.15786809793073509 -8330.0,0.15781358163656428 -8331.0,0.15775908416840315 -8332.0,0.15770460551975046 -8333.0,0.15765014568410732 -8334.0,0.1575957046549771 -8335.0,0.15754128242586535 -8336.0,0.15748687899027994 -8337.0,0.15743249434173087 -8338.0,0.1573781284737305 -8339.0,0.15732378137979333 -8340.0,0.15726945305343623 -8341.0,0.15721514348817814 -8342.0,0.1571608526775404 -8343.0,0.15710658061504643 -8344.0,0.15705232729422203 -8345.0,0.15699809270859513 -8346.0,0.15694387685169603 -8347.0,0.15688967971705706 -8348.0,0.15683550129821297 -8349.0,0.1567813415887006 -8350.0,0.1567272005820592 -8351.0,0.15667307827183002 -8352.0,0.15661897465155672 -8353.0,0.1565648897147852 -8354.0,0.1565108234550634 -8355.0,0.1564567758659417 -8356.0,0.15640274694097256 -8357.0,0.15634873667371077 -8358.0,0.15629474505771326 -8359.0,0.15624077208653928 -8360.0,0.15618681775375012 -8361.0,0.1561328820529096 -8362.0,0.15607896497758342 -8363.0,0.1560250665213398 -8364.0,0.15597118667774892 -8365.0,0.15591732544038345 -8366.0,0.155863482802818 -8367.0,0.15580965875862962 -8368.0,0.15575585330139746 -8369.0,0.15570206642470297 -8370.0,0.15564829812212969 -8371.0,0.15559454838726347 -8372.0,0.15554081721369242 -8373.0,0.15548710459500675 -8374.0,0.15543341052479898 -8375.0,0.15537973499666374 -8376.0,0.15532607800419798 -8377.0,0.15527243954100076 -8378.0,0.1552188196006735 -8379.0,0.15516521817681958 -8380.0,0.1551116352630449 -8381.0,0.15505807085295728 -8382.0,0.155004524940167 -8383.0,0.1549509975182863 -8384.0,0.15489748858092983 -8385.0,0.15484399812171432 -8386.0,0.1547905261342588 -8387.0,0.1547370726121844 -8388.0,0.15468363754911452 -8389.0,0.15463022093867473 -8390.0,0.15457682277449286 -8391.0,0.15452344305019888 -8392.0,0.15447008175942498 -8393.0,0.15441673889580554 -8394.0,0.15436341445297713 -8395.0,0.15431010842457857 -8396.0,0.1542568208042508 -8397.0,0.15420355158563706 -8398.0,0.15415030076238262 -8399.0,0.15409706832813513 -8400.0,0.1540438542765443 -8401.0,0.15399065860126213 -8402.0,0.1539374812959427 -8403.0,0.1538843223542424 -8404.0,0.15383118176981972 -8405.0,0.15377805953633544 -8406.0,0.15372495564745237 -8407.0,0.15367187009683567 -8408.0,0.15361880287815258 -8409.0,0.15356575398507258 -8410.0,0.15351272341126737 -8411.0,0.1534597111504107 -8412.0,0.1534067171961787 -8413.0,0.15335374154224948 -8414.0,0.15330078418230353 -8415.0,0.1532478451100233 -8416.0,0.15319492431909365 -8417.0,0.15314202180320147 -8418.0,0.1530891375560359 -8419.0,0.15303627157128818 -8420.0,0.15298342384265184 -8421.0,0.1529305943638225 -8422.0,0.15287778312849803 -8423.0,0.15282499013037837 -8424.0,0.15277221536316576 -8425.0,0.15271945882056454 -8426.0,0.15266672049628122 -8427.0,0.15261400038402448 -8428.0,0.15256129847750524 -8429.0,0.15250861477043656 -8430.0,0.1524559492565336 -8431.0,0.15240330192951382 -8432.0,0.1523506727830967 -8433.0,0.15229806181100403 -8434.0,0.15224546900695965 -8435.0,0.1521928943646897 -8436.0,0.1521403378779223 -8437.0,0.15208779954038795 -8438.0,0.15203527934581912 -8439.0,0.15198277728795062 -8440.0,0.15193029336051925 -8441.0,0.15187782755726414 -8442.0,0.15182537987192646 -8443.0,0.1517729502982496 -8444.0,0.15172053882997905 -8445.0,0.15166814546086257 -8446.0,0.15161577018464995 -8447.0,0.15156341299509324 -8448.0,0.15151107388594665 -8449.0,0.15145875285096638 -8450.0,0.15140644988391105 -8451.0,0.1513541649785412 -8452.0,0.15130189812861972 -8453.0,0.15124964932791143 -8454.0,0.1511974185701835 -8455.0,0.1511452058492052 -8456.0,0.1510930111587479 -8457.0,0.15104083449258515 -8458.0,0.15098867584449271 -8459.0,0.15093653520824835 -8460.0,0.15088441257763213 -8461.0,0.15083230794642616 -8462.0,0.15078022130841479 -8463.0,0.1507281526573844 -8464.0,0.15067610198712364 -8465.0,0.15062406929142322 -8466.0,0.15057205456407596 -8467.0,0.15052005779887703 -8468.0,0.15046807898962344 -8469.0,0.1504161181301146 -8470.0,0.15036417521415188 -8471.0,0.15031225023553896 -8472.0,0.15026034318808146 -8473.0,0.15020845406558736 -8474.0,0.15015658286186656 -8475.0,0.1501047295707313 -8476.0,0.15005289418599577 -8477.0,0.15000107670147647 -8478.0,0.14994927711099187 -8479.0,0.14989749540836275 -8480.0,0.14984573158741185 -8481.0,0.14979398564196417 -8482.0,0.14974225756584675 -8483.0,0.1496905473528889 -8484.0,0.14963885499692184 -8485.0,0.1495871804917791 -8486.0,0.14953552383129637 -8487.0,0.14948388500931128 -8488.0,0.14943226401966378 -8489.0,0.14938066085619575 -8490.0,0.14932907551275146 -8491.0,0.149277507983177 -8492.0,0.14922595826132085 -8493.0,0.14917442634103342 -8494.0,0.14912291221616744 -8495.0,0.14907141588057754 -8496.0,0.14901993732812063 -8497.0,0.1489684765526557 -8498.0,0.14891703354804384 -8499.0,0.14886560830814827 -8500.0,0.14881420082683436 -8501.0,0.14876281109796954 -8502.0,0.14871143911542342 -8503.0,0.14866008487306767 -8504.0,0.14860874836477608 -8505.0,0.1485574295844247 -8506.0,0.1485061285258914 -8507.0,0.1484548451830565 -8508.0,0.14840357954980216 -8509.0,0.14835233162001282 -8510.0,0.14830110138757494 -8511.0,0.14824988884637716 -8512.0,0.14819869399031013 -8513.0,0.1481475168132668 -8514.0,0.14809635730914197 -8515.0,0.1480452154718328 -8516.0,0.14799409129523836 -8517.0,0.14794298477325996 -8518.0,0.14789189589980092 -8519.0,0.14784082466876675 -8520.0,0.147789771074065 -8521.0,0.1477387351096053 -8522.0,0.14768771676929957 -8523.0,0.14763671604706158 -8524.0,0.14758573293680735 -8525.0,0.14753476743245494 -8526.0,0.1474838195279246 -8527.0,0.14743288921713854 -8528.0,0.1473819764940212 -8529.0,0.14733108135249906 -8530.0,0.14728020378650067 -8531.0,0.14722934378995672 -8532.0,0.1471785013568 -8533.0,0.14712767648096534 -8534.0,0.14707686915638976 -8535.0,0.14702607937701226 -8536.0,0.14697530713677404 -8537.0,0.14692455242961827 -8538.0,0.1468738152494904 -8539.0,0.1468230955903377 -8540.0,0.14677239344610982 -8541.0,0.14672170881075833 -8542.0,0.14667104167823686 -8543.0,0.14662039204250127 -8544.0,0.14656975989750934 -8545.0,0.14651914523722115 -8546.0,0.1464685480555986 -8547.0,0.14641796834660595 -8548.0,0.14636740610420929 -8549.0,0.146316861322377 -8550.0,0.14626633399507938 -8551.0,0.14621582411628897 -8552.0,0.14616533167998025 -8553.0,0.14611485668012988 -8554.0,0.1460643991107165 -8555.0,0.14601395896572097 -8556.0,0.14596353623912608 -8557.0,0.14591313092491684 -8558.0,0.14586274301708016 -8559.0,0.14581237250960521 -8560.0,0.14576201939648314 -8561.0,0.1457116836717072 -8562.0,0.14566136532927268 -8563.0,0.14561106436317697 -8564.0,0.14556078076741955 -8565.0,0.14551051453600192 -8566.0,0.14546026566292775 -8567.0,0.14541003414220263 -8568.0,0.1453598199678344 -8569.0,0.1453096231338328 -8570.0,0.14525944363420976 -8571.0,0.14520928146297918 -8572.0,0.14515913661415714 -8573.0,0.14510900908176164 -8574.0,0.14505889885981293 -8575.0,0.14500880594233317 -8576.0,0.1449587303233467 -8577.0,0.14490867199687973 -8578.0,0.1448586309569608 -8579.0,0.14480860719762034 -8580.0,0.14475860071289084 -8581.0,0.14470861149680694 -8582.0,0.14465863954340527 -8583.0,0.14460868484672457 -8584.0,0.14455874740080554 -8585.0,0.1445088271996911 -8586.0,0.14445892423742604 -8587.0,0.14440903850805736 -8588.0,0.14435917000563403 -8589.0,0.14430931872420713 -8590.0,0.14425948465782973 -8591.0,0.14420966780055702 -8592.0,0.14415986814644619 -8593.0,0.14411008568955652 -8594.0,0.1440603204239493 -8595.0,0.14401057234368797 -8596.0,0.14396084144283783 -8597.0,0.1439111277154664 -8598.0,0.14386143115564326 -8599.0,0.14381175175743988 -8600.0,0.14376208951492994 -8601.0,0.143712444422189 -8602.0,0.1436628164732949 -8603.0,0.14361320566232724 -8604.0,0.14356361198336795 -8605.0,0.14351403543050076 -8606.0,0.14346447599781162 -8607.0,0.14341493367938837 -8608.0,0.14336540846932108 -8609.0,0.14331590036170164 -8610.0,0.1432664093506242 -8611.0,0.14321693543018477 -8612.0,0.1431674785944815 -8613.0,0.14311803883761454 -8614.0,0.1430686161536861 -8615.0,0.1430192105368004 -8616.0,0.1429698219810637 -8617.0,0.14292045048058435 -8618.0,0.14287109602947262 -8619.0,0.142821758621841 -8620.0,0.14277243825180375 -8621.0,0.14272313491347743 -8622.0,0.14267384860098045 -8623.0,0.14262457930843334 -8624.0,0.14257532702995857 -8625.0,0.1425260917596808 -8626.0,0.14247687349172655 -8627.0,0.14242767222022448 -8628.0,0.14237848793930521 -8629.0,0.14232932064310144 -8630.0,0.14228017032574783 -8631.0,0.14223103698138115 -8632.0,0.1421819206041401 -8633.0,0.1421328211881655 -8634.0,0.1420837387276001 -8635.0,0.14203467321658877 -8636.0,0.14198562464927836 -8637.0,0.14193659301981768 -8638.0,0.14188757832235765 -8639.0,0.14183858055105114 -8640.0,0.14178959970005314 -8641.0,0.14174063576352053 -8642.0,0.1416916887356123 -8643.0,0.1416427586104894 -8644.0,0.14159384538231484 -8645.0,0.1415449490452536 -8646.0,0.1414960695934728 -8647.0,0.14144720702114136 -8648.0,0.1413983613224304 -8649.0,0.14134953249151294 -8650.0,0.1413007205225641 -8651.0,0.14125192540976092 -8652.0,0.14120314714728258 -8653.0,0.14115438572931008 -8654.0,0.1411056411500266 -8655.0,0.14105691340361728 -8656.0,0.14100820248426923 -8657.0,0.14095950838617163 -8658.0,0.14091083110351557 -8659.0,0.14086217063049425 -8660.0,0.14081352696130278 -8661.0,0.1407649000901384 -8662.0,0.1407162900112002 -8663.0,0.14066769671868942 -8664.0,0.1406191202068092 -8665.0,0.1405705604697647 -8666.0,0.14052201750176313 -8667.0,0.14047349129701367 -8668.0,0.14042498184972746 -8669.0,0.1403764891541177 -8670.0,0.14032801320439958 -8671.0,0.14027955399479028 -8672.0,0.1402311115195089 -8673.0,0.14018268577277665 -8674.0,0.14013427674881673 -8675.0,0.14008588444185424 -8676.0,0.14003750884611638 -8677.0,0.13998914995583223 -8678.0,0.139940807765233 -8679.0,0.13989248226855175 -8680.0,0.13984417346002365 -8681.0,0.1397958813338858 -8682.0,0.1397476058843773 -8683.0,0.13969934710573917 -8684.0,0.13965110499221464 -8685.0,0.13960287953804865 -8686.0,0.1395546707374883 -8687.0,0.13950647858478263 -8688.0,0.1394583030741827 -8689.0,0.13941014419994144 -8690.0,0.13936200195631396 -8691.0,0.13931387633755712 -8692.0,0.13926576733792995 -8693.0,0.13921767495169343 -8694.0,0.1391695991731104 -8695.0,0.13912153999644586 -8696.0,0.13907349741596664 -8697.0,0.13902547142594165 -8698.0,0.1389774620206417 -8699.0,0.13892946919433966 -8700.0,0.1388814929413103 -8701.0,0.13883353325583045 -8702.0,0.13878559013217878 -8703.0,0.13873766356463613 -8704.0,0.1386897535474851 -8705.0,0.1386418600750105 -8706.0,0.1385939831414989 -8707.0,0.13854612274123895 -8708.0,0.13849827886852126 -8709.0,0.13845045151763843 -8710.0,0.13840264068288494 -8711.0,0.13835484635855733 -8712.0,0.13830706853895414 -8713.0,0.13825930721837576 -8714.0,0.13821156239112467 -8715.0,0.1381638340515052 -8716.0,0.13811612219382374 -8717.0,0.1380684268123886 -8718.0,0.13802074790151012 -8719.0,0.13797308545550044 -8720.0,0.13792543946867392 -8721.0,0.1378778099353466 -8722.0,0.13783019684983674 -8723.0,0.13778260020646438 -8724.0,0.13773501999955162 -8725.0,0.13768745622342246 -8726.0,0.1376399088724029 -8727.0,0.13759237794082088 -8728.0,0.13754486342300637 -8729.0,0.13749736531329113 -8730.0,0.13744988360600904 -8731.0,0.1374024182954959 -8732.0,0.13735496937608938 -8733.0,0.13730753684212924 -8734.0,0.13726012068795707 -8735.0,0.1372127209079165 -8736.0,0.13716533749635307 -8737.0,0.13711797044761428 -8738.0,0.1370706197560496 -8739.0,0.13702328541601044 -8740.0,0.13697596742185011 -8741.0,0.136928665767924 -8742.0,0.13688138044858927 -8743.0,0.13683411145820526 -8744.0,0.13678685879113298 -8745.0,0.13673962244173563 -8746.0,0.1366924024043782 -8747.0,0.13664519867342773 -8748.0,0.1365980112432531 -8749.0,0.13655084010822524 -8750.0,0.136503685262717 -8751.0,0.13645654670110308 -8752.0,0.13640942441776027 -8753.0,0.13636231840706717 -8754.0,0.1363152286634044 -8755.0,0.13626815518115445 -8756.0,0.1362210979547019 -8757.0,0.13617405697843304 -8758.0,0.13612703224673636 -8759.0,0.13608002375400202 -8760.0,0.13603303149462234 -8761.0,0.13598605546299145 -8762.0,0.13593909565350545 -8763.0,0.13589215206056238 -8764.0,0.13584522467856225 -8765.0,0.13579831350190688 -8766.0,0.13575141852500022 -8767.0,0.13570453974224794 -8768.0,0.13565767714805776 -8769.0,0.1356108307368394 -8770.0,0.13556400050300432 -8771.0,0.1355171864409661 -8772.0,0.1354703885451401 -8773.0,0.1354236068099437 -8774.0,0.13537684122979615 -8775.0,0.13533009179911867 -8776.0,0.1352833585123345 -8777.0,0.13523664136386854 -8778.0,0.13518994034814782 -8779.0,0.13514325545960126 -8780.0,0.13509658669265978 -8781.0,0.135049934041756 -8782.0,0.13500329750132464 -8783.0,0.13495667706580236 -8784.0,0.13491007272962766 -8785.0,0.13486348448724092 -8786.0,0.13481691233308454 -8787.0,0.1347703562616028 -8788.0,0.13472381626724192 -8789.0,0.13467729234445008 -8790.0,0.13463078448767715 -8791.0,0.13458429269137517 -8792.0,0.13453781694999803 -8793.0,0.13449135725800157 -8794.0,0.13444491360984331 -8795.0,0.13439848599998297 -8796.0,0.13435207442288208 -8797.0,0.13430567887300413 -8798.0,0.13425929934481431 -8799.0,0.13421293583278002 -8800.0,0.13416658833137035 -8801.0,0.1341202568350565 -8802.0,0.13407394133831127 -8803.0,0.1340276418356097 -8804.0,0.13398135832142857 -8805.0,0.13393509079024662 -8806.0,0.1338888392365444 -8807.0,0.13384260365480447 -8808.0,0.13379638403951125 -8809.0,0.1337501803851511 -8810.0,0.1337039926862123 -8811.0,0.1336578209371849 -8812.0,0.133611665132561 -8813.0,0.13356552526683454 -8814.0,0.13351940133450144 -8815.0,0.1334732933300593 -8816.0,0.1334272012480079 -8817.0,0.13338112508284872 -8818.0,0.13333506482908528 -8819.0,0.13328902048122285 -8820.0,0.13324299203376871 -8821.0,0.133196979481232 -8822.0,0.1331509828181238 -8823.0,0.13310500203895695 -8824.0,0.13305903713824635 -8825.0,0.1330130881105087 -8826.0,0.1329671549502626 -8827.0,0.13292123765202865 -8828.0,0.1328753362103291 -8829.0,0.13282945061968834 -8830.0,0.13278358087463255 -8831.0,0.13273772696968983 -8832.0,0.13269188889939004 -8833.0,0.13264606665826512 -8834.0,0.13260026024084876 -8835.0,0.1325544696416767 -8836.0,0.1325086948552863 -8837.0,0.13246293587621702 -8838.0,0.13241719269901014 -8839.0,0.13237146531820895 -8840.0,0.13232575372835834 -8841.0,0.13228005792400532 -8842.0,0.13223437789969872 -8843.0,0.13218871364998927 -8844.0,0.1321430651694295 -8845.0,0.13209743245257388 -8846.0,0.1320518154939788 -8847.0,0.13200621428820247 -8848.0,0.13196062882980508 -8849.0,0.13191505911334847 -8850.0,0.13186950513339657 -8851.0,0.13182396688451511 -8852.0,0.1317784443612718 -8853.0,0.13173293755823604 -8854.0,0.1316874464699792 -8855.0,0.13164197109107453 -8856.0,0.13159651141609724 -8857.0,0.1315510674396242 -8858.0,0.1315056391562343 -8859.0,0.13146022656050832 -8860.0,0.13141482964702889 -8861.0,0.1313694484103804 -8862.0,0.13132408284514926 -8863.0,0.13127873294592365 -8864.0,0.1312333987072937 -8865.0,0.1311880801238514 -8866.0,0.1311427771901905 -8867.0,0.13109748990090667 -8868.0,0.1310522182505975 -8869.0,0.13100696223386252 -8870.0,0.13096172184530286 -8871.0,0.13091649707952172 -8872.0,0.13087128793112413 -8873.0,0.130826094394717 -8874.0,0.130780916464909 -8875.0,0.13073575413631075 -8876.0,0.13069060740353475 -8877.0,0.13064547626119535 -8878.0,0.13060036070390865 -8879.0,0.13055526072629273 -8880.0,0.1305101763229675 -8881.0,0.13046510748855475 -8882.0,0.130420054217678 -8883.0,0.13037501650496278 -8884.0,0.13032999434503642 -8885.0,0.13028498773252814 -8886.0,0.13023999666206898 -8887.0,0.13019502112829173 -8888.0,0.13015006112583122 -8889.0,0.13010511664932403 -8890.0,0.13006018769340869 -8891.0,0.13001527425272535 -8892.0,0.12997037632191624 -8893.0,0.1299254938956254 -8894.0,0.1298806269684987 -8895.0,0.12983577553518372 -8896.0,0.12979093959033008 -8897.0,0.12974611912858922 -8898.0,0.1297013141446144 -8899.0,0.12965652463306057 -8900.0,0.1296117505885848 -8901.0,0.12956699200584582 -8902.0,0.12952224887950425 -8903.0,0.12947752120422268 -8904.0,0.12943280897466525 -8905.0,0.12938811218549817 -8906.0,0.1293434308313895 -8907.0,0.12929876490700906 -8908.0,0.1292541144070285 -8909.0,0.12920947932612134 -8910.0,0.12916485965896293 -8911.0,0.1291202554002306 -8912.0,0.12907566654460317 -8913.0,0.12903109308676167 -8914.0,0.12898653502138874 -8915.0,0.12894199234316903 -8916.0,0.12889746504678876 -8917.0,0.12885295312693626 -8918.0,0.12880845657830156 -8919.0,0.1287639753955766 -8920.0,0.128719509573455 -8921.0,0.12867505910663232 -8922.0,0.12863062398980601 -8923.0,0.12858620421767525 -8924.0,0.12854179978494112 -8925.0,0.12849741068630643 -8926.0,0.12845303691647592 -8927.0,0.1284086784701561 -8928.0,0.12836433534205544 -8929.0,0.12832000752688397 -8930.0,0.12827569501935376 -8931.0,0.1282313978141787 -8932.0,0.12818711590607446 -8933.0,0.12814284928975841 -8934.0,0.12809859795995 -8935.0,0.12805436191137026 -8936.0,0.12801014113874232 -8937.0,0.12796593563679076 -8938.0,0.1279217454002423 -8939.0,0.12787757042382533 -8940.0,0.12783341070227014 -8941.0,0.12778926623030878 -8942.0,0.12774513700267512 -8943.0,0.12770102301410485 -8944.0,0.12765692425933553 -8945.0,0.12761284073310653 -8946.0,0.1275687724301589 -8947.0,0.12752471934523568 -8948.0,0.12748068147308167 -8949.0,0.12743665880844351 -8950.0,0.1273926513460695 -8951.0,0.12734865908070991 -8952.0,0.12730468200711684 -8953.0,0.12726072012004416 -8954.0,0.12721677341424742 -8955.0,0.1271728418844842 -8956.0,0.12712892552551372 -8957.0,0.1270850243320972 -8958.0,0.1270411382989974 -8959.0,0.1269972674209791 -8960.0,0.12695341169280883 -8961.0,0.1269095711092549 -8962.0,0.12686574566508754 -8963.0,0.12682193535507855 -8964.0,0.12677814017400174 -8965.0,0.1267343601166327 -8966.0,0.12669059517774878 -8967.0,0.12664684535212908 -8968.0,0.12660311063455462 -8969.0,0.12655939101980815 -8970.0,0.12651568650267428 -8971.0,0.12647199707793932 -8972.0,0.12642832274039142 -8973.0,0.12638466348482064 -8974.0,0.1263410193060187 -8975.0,0.12629739019877917 -8976.0,0.1262537761578974 -8977.0,0.12621017717817054 -8978.0,0.1261665932543976 -8979.0,0.12612302438137937 -8980.0,0.12607947055391827 -8981.0,0.12603593176681874 -8982.0,0.1259924080148869 -8983.0,0.12594889929293074 -8984.0,0.12590540559575986 -8985.0,0.12586192691818587 -8986.0,0.12581846325502205 -8987.0,0.12577501460108356 -8988.0,0.1257315809511872 -8989.0,0.1256881623001517 -8990.0,0.12564475864279753 -8991.0,0.125601369973947 -8992.0,0.12555799628842404 -8993.0,0.12551463758105455 -8994.0,0.12547129384666617 -8995.0,0.12542796508008835 -8996.0,0.12538465127615217 -8997.0,0.12534135242969066 -8998.0,0.1252980685355386 -8999.0,0.12525479958853253 -9000.0,0.12521154558351083 -9001.0,0.1251683065153135 -9002.0,0.12512508237878248 -9003.0,0.12508187316876146 -9004.0,0.12503867888009598 -9005.0,0.12499549950763313 -9006.0,0.12495233504622197 -9007.0,0.12490918549071332 -9008.0,0.12486605083595981 -9009.0,0.12482293107681566 -9010.0,0.12477982620813706 -9011.0,0.12473673622478193 -9012.0,0.12469366112160997 -9013.0,0.12465060089348257 -9014.0,0.12460755553526297 -9015.0,0.12456452504181618 -9016.0,0.124521509408009 -9017.0,0.12447850862871003 -9018.0,0.12443552269878946 -9019.0,0.12439255161311945 -9020.0,0.12434959536657385 -9021.0,0.12430665395402837 -9022.0,0.12426372737036029 -9023.0,0.12422081561044884 -9024.0,0.12417791866917495 -9025.0,0.1241350365414214 -9026.0,0.12409216922207253 -9027.0,0.12404931670601467 -9028.0,0.1240064789881358 -9029.0,0.12396365606332575 -9030.0,0.12392084792647597 -9031.0,0.12387805457247977 -9032.0,0.12383527599623227 -9033.0,0.12379251219263027 -9034.0,0.12374976315657242 -9035.0,0.12370702888295895 -9036.0,0.12366430936669204 -9037.0,0.12362160460267556 -9038.0,0.1235789145858152 -9039.0,0.12353623931101824 -9040.0,0.12349357877319389 -9041.0,0.12345093296725305 -9042.0,0.12340830188810846 -9043.0,0.12336568553067441 -9044.0,0.12332308388986714 -9045.0,0.12328049696060459 -9046.0,0.12323792473780651 -9047.0,0.12319536721639422 -9048.0,0.123152824391291 -9049.0,0.12311029625742176 -9050.0,0.12306778280971328 -9051.0,0.12302528404309392 -9052.0,0.12298279995249392 -9053.0,0.12294033053284525 -9054.0,0.12289787577908162 -9055.0,0.12285543568613853 -9056.0,0.12281301024895308 -9057.0,0.1227705994624643 -9058.0,0.12272820332161286 -9059.0,0.12268582182134127 -9060.0,0.12264345495659364 -9061.0,0.12260110272231595 -9062.0,0.1225587651134559 -9063.0,0.12251644212496295 -9064.0,0.12247413375178819 -9065.0,0.12243183998888459 -9066.0,0.1223895608312068 -9067.0,0.1223472962737113 -9068.0,0.12230504631135611 -9069.0,0.12226281093910119 -9070.0,0.12222059015190814 -9071.0,0.12217838394474036 -9072.0,0.12213619231256298 -9073.0,0.12209401525034276 -9074.0,0.12205185275304833 -9075.0,0.12200970481565003 -9076.0,0.12196757143311994 -9077.0,0.12192545260043176 -9078.0,0.12188334831256109 -9079.0,0.12184125856448517 -9080.0,0.12179918335118307 -9081.0,0.12175712266763541 -9082.0,0.12171507650882472 -9083.0,0.1216730448697352 -9084.0,0.12163102774535281 -9085.0,0.12158902513066513 -9086.0,0.12154703702066161 -9087.0,0.12150506341033336 -9088.0,0.12146310429467329 -9089.0,0.1214211596686759 -9090.0,0.12137922952733751 -9091.0,0.12133731386565622 -9092.0,0.12129541267863174 -9093.0,0.12125352596126564 -9094.0,0.12121165370856105 -9095.0,0.12116979591552295 -9096.0,0.121127952577158 -9097.0,0.12108612368847467 -9098.0,0.12104430924448296 -9099.0,0.12100250924019479 -9100.0,0.12096072367062367 -9101.0,0.120918952530785 -9102.0,0.12087719581569564 -9103.0,0.12083545352037439 -9104.0,0.1207937256398417 -9105.0,0.12075201216911978 -9106.0,0.12071031310323241 -9107.0,0.12066862843720526 -9108.0,0.12062695816606565 -9109.0,0.12058530228484261 -9110.0,0.12054366078856697 -9111.0,0.12050203367227108 -9112.0,0.12046042093098919 -9113.0,0.12041882255975721 -9114.0,0.12037723855361278 -9115.0,0.12033566890759516 -9116.0,0.12029411361674543 -9117.0,0.12025257267610635 -9118.0,0.12021104608072244 -9119.0,0.12016953382563979 -9120.0,0.12012803590590632 -9121.0,0.12008655231657163 -9122.0,0.1200450830526871 -9123.0,0.12000362810930565 -9124.0,0.11996218748148203 -9125.0,0.11992076116427271 -9126.0,0.11987934915273585 -9127.0,0.11983795144193123 -9128.0,0.11979656802692042 -9129.0,0.11975519890276672 -9130.0,0.11971384406453506 -9131.0,0.11967250350729217 -9132.0,0.11963117722610633 -9133.0,0.11958986521604767 -9134.0,0.11954856747218796 -9135.0,0.11950728398960074 -9136.0,0.11946601476336108 -9137.0,0.1194247597885459 -9138.0,0.11938351906023381 -9139.0,0.11934229257350512 -9140.0,0.11930108032344174 -9141.0,0.11925988230512735 -9142.0,0.11921869851364739 -9143.0,0.11917752894408892 -9144.0,0.11913637359154065 -9145.0,0.11909523245109309 -9146.0,0.1190541055178384 -9147.0,0.11901299278687043 -9148.0,0.11897189425328479 -9149.0,0.11893080991217862 -9150.0,0.11888973975865091 -9151.0,0.11884868378780229 -9152.0,0.11880764199473515 -9153.0,0.11876661437455335 -9154.0,0.1187256009223627 -9155.0,0.11868460163327056 -9156.0,0.1186436165023861 -9157.0,0.11860264552481994 -9158.0,0.11856168869568463 -9159.0,0.11852074601009432 -9160.0,0.11847981746316488 -9161.0,0.11843890305001373 -9162.0,0.11839800276576014 -9163.0,0.118357116605525 -9164.0,0.11831624456443095 -9165.0,0.11827538663760215 -9166.0,0.11823454282016457 -9167.0,0.11819371310724587 -9168.0,0.11815289749397535 -9169.0,0.11811209597548407 -9170.0,0.11807130854690459 -9171.0,0.11803053520337133 -9172.0,0.11798977594002032 -9173.0,0.11794903075198931 -9174.0,0.11790829963441762 -9175.0,0.11786758258244638 -9176.0,0.11782687959121832 -9177.0,0.11778619065587795 -9178.0,0.11774551577157123 -9179.0,0.11770485493344604 -9180.0,0.11766420813665181 -9181.0,0.11762357537633973 -9182.0,0.11758295664766252 -9183.0,0.1175423519457747 -9184.0,0.11750176126583242 -9185.0,0.11746118460299351 -9186.0,0.11742062195241754 -9187.0,0.11738007330926556 -9188.0,0.11733953866870048 -9189.0,0.11729901802588678 -9190.0,0.11725851137599073 -9191.0,0.11721801871418007 -9192.0,0.11717754003562435 -9193.0,0.11713707533549479 -9194.0,0.11709662460896428 -9195.0,0.11705618785120725 -9196.0,0.11701576505739993 -9197.0,0.11697535622272018 -9198.0,0.11693496134234757 -9199.0,0.1168945804114632 -9200.0,0.11685421342524994 -9201.0,0.11681386037889233 -9202.0,0.11677352126757658 -9203.0,0.11673319608649044 -9204.0,0.11669288483082343 -9205.0,0.11665258749576676 -9206.0,0.11661230407651321 -9207.0,0.11657203456825735 -9208.0,0.11653177896619518 -9209.0,0.11649153726552457 -9210.0,0.11645130946144498 -9211.0,0.11641109554915759 -9212.0,0.11637089552386504 -9213.0,0.11633070938077182 -9214.0,0.11629053711508404 -9215.0,0.11625037872200947 -9216.0,0.11621023419675741 -9217.0,0.11617010353453897 -9218.0,0.11612998673056683 -9219.0,0.11608988378005543 -9220.0,0.11604979467822066 -9221.0,0.11600971942028024 -9222.0,0.11596965800145348 -9223.0,0.11592961041696136 -9224.0,0.11588957666202651 -9225.0,0.11584955673187312 -9226.0,0.11580955062172717 -9227.0,0.1157695583268162 -9228.0,0.11572957984236945 -9229.0,0.11568961516361773 -9230.0,0.11564966428579355 -9231.0,0.11560972720413108 -9232.0,0.11556980391386619 -9233.0,0.11552989441023617 -9234.0,0.1154899986884802 -9235.0,0.11545011674383901 -9236.0,0.11541024857155499 -9237.0,0.1153703941668721 -9238.0,0.11533055352503602 -9239.0,0.11529072664129407 -9240.0,0.11525091351089523 -9241.0,0.11521111412908999 -9242.0,0.11517132849113063 -9243.0,0.11513155659227099 -9244.0,0.1150917984277666 -9245.0,0.11505205399287464 -9246.0,0.1150123232828538 -9247.0,0.11497260629296452 -9248.0,0.11493290301846887 -9249.0,0.11489321345463059 -9250.0,0.11485353759671489 -9251.0,0.1148138754399888 -9252.0,0.11477422697972091 -9253.0,0.11473459221118149 -9254.0,0.1146949711296423 -9255.0,0.11465536373037688 -9256.0,0.11461577000866038 -9257.0,0.11457618995976958 -9258.0,0.11453662357898278 -9259.0,0.11449707086158005 -9260.0,0.11445753180284304 -9261.0,0.11441800639805502 -9262.0,0.11437849464250097 -9263.0,0.1143389965314673 -9264.0,0.11429951206024222 -9265.0,0.11426004122411555 -9266.0,0.11422058401837873 -9267.0,0.11418114043832472 -9268.0,0.11414171047924823 -9269.0,0.11410229413644556 -9270.0,0.11406289140521467 -9271.0,0.114023502280855 -9272.0,0.11398412675866777 -9273.0,0.11394476483395577 -9274.0,0.11390541650202346 -9275.0,0.11386608175817677 -9276.0,0.11382676059772338 -9277.0,0.1137874530159726 -9278.0,0.11374815900823534 -9279.0,0.11370887856982403 -9280.0,0.11366961169605284 -9281.0,0.11363035838223753 -9282.0,0.11359111862369546 -9283.0,0.11355189241574566 -9284.0,0.11351267975370863 -9285.0,0.11347348063290663 -9286.0,0.11343429504866351 -9287.0,0.11339512299630475 -9288.0,0.1133559644711573 -9289.0,0.1133168194685499 -9290.0,0.11327768798381284 -9291.0,0.11323857001227806 -9292.0,0.11319946554927897 -9293.0,0.11316037459015074 -9294.0,0.11312129713023011 -9295.0,0.1130822331648555 -9296.0,0.11304318268936671 -9297.0,0.11300414569910538 -9298.0,0.11296512218941468 -9299.0,0.1129261121556394 -9300.0,0.11288711559312598 -9301.0,0.11284813249722228 -9302.0,0.11280916286327798 -9303.0,0.1127702066866443 -9304.0,0.11273126396267406 -9305.0,0.11269233468672162 -9306.0,0.11265341885414301 -9307.0,0.11261451646029588 -9308.0,0.11257562750053951 -9309.0,0.11253675197023463 -9310.0,0.11249788986474371 -9311.0,0.1124590411794308 -9312.0,0.11242020590966158 -9313.0,0.11238138405080317 -9314.0,0.11234257559822447 -9315.0,0.11230378054729591 -9316.0,0.11226499889338958 -9317.0,0.112226230631879 -9318.0,0.11218747575813948 -9319.0,0.11214873426754779 -9320.0,0.1121100061554824 -9321.0,0.11207129141732337 -9322.0,0.1120325900484522 -9323.0,0.11199390204425215 -9324.0,0.11195522740010805 -9325.0,0.11191656611140631 -9326.0,0.11187791817353483 -9327.0,0.11183928358188326 -9328.0,0.11180066233184277 -9329.0,0.11176205441880617 -9330.0,0.11172345983816771 -9331.0,0.11168487858532339 -9332.0,0.11164631065567077 -9333.0,0.111607756044609 -9334.0,0.11156921474753871 -9335.0,0.11153068675986226 -9336.0,0.11149217207698353 -9337.0,0.11145367069430799 -9338.0,0.11141518260724279 -9339.0,0.11137670781119645 -9340.0,0.11133824630157926 -9341.0,0.11129979807380305 -9342.0,0.11126136312328129 -9343.0,0.11122294144542885 -9344.0,0.11118453303566236 -9345.0,0.11114613788939998 -9346.0,0.1111077560020615 -9347.0,0.11106938736906813 -9348.0,0.11103103198584284 -9349.0,0.1109926898478101 -9350.0,0.11095436095039601 -9351.0,0.11091604528902815 -9352.0,0.11087774285913575 -9353.0,0.11083945365614964 -9354.0,0.11080117767550222 -9355.0,0.11076291491262738 -9356.0,0.11072466536296066 -9357.0,0.1106864290219392 -9358.0,0.11064820588500167 -9359.0,0.11060999594758837 -9360.0,0.11057179920514106 -9361.0,0.11053361565310316 -9362.0,0.11049544528691968 -9363.0,0.11045728810203721 -9364.0,0.11041914409390378 -9365.0,0.11038101325796915 -9366.0,0.11034289558968456 -9367.0,0.11030479108450293 -9368.0,0.11026669973787856 -9369.0,0.11022862154526747 -9370.0,0.11019055650212722 -9371.0,0.11015250460391697 -9372.0,0.11011446584609733 -9373.0,0.11007644022413056 -9374.0,0.11003842773348052 -9375.0,0.11000042836961257 -9376.0,0.10996244212799375 -9377.0,0.10992446900409243 -9378.0,0.10988650899337878 -9379.0,0.10984856209132443 -9380.0,0.10981062829340264 -9381.0,0.10977270759508809 -9382.0,0.10973479999185717 -9383.0,0.10969690547918778 -9384.0,0.10965902405255942 -9385.0,0.10962115570745304 -9386.0,0.10958330043935123 -9387.0,0.10954545824373817 -9388.0,0.10950762911609958 -9389.0,0.10946981305192265 -9390.0,0.10943201004669623 -9391.0,0.10939422009591071 -9392.0,0.10935644319505806 -9393.0,0.10931867933963169 -9394.0,0.10928092852512668 -9395.0,0.10924319074703964 -9396.0,0.10920546600086872 -9397.0,0.1091677542821137 -9398.0,0.10913005558627574 -9399.0,0.1090923699088577 -9400.0,0.10905469724536397 -9401.0,0.10901703759130052 -9402.0,0.10897939094217472 -9403.0,0.10894175729349566 -9404.0,0.1089041366407739 -9405.0,0.10886652897952166 -9406.0,0.10882893430525248 -9407.0,0.10879135261348166 -9408.0,0.10875378389972597 -9409.0,0.10871622815950378 -9410.0,0.10867868538833489 -9411.0,0.10864115558174076 -9412.0,0.10860363873524434 -9413.0,0.10856613484437015 -9414.0,0.10852864390464431 -9415.0,0.10849116591159433 -9416.0,0.10845370086074939 -9417.0,0.10841624874764019 -9418.0,0.10837880956779902 -9419.0,0.10834138331675956 -9420.0,0.10830396999005718 -9421.0,0.10826656958322874 -9422.0,0.10822918209181268 -9423.0,0.10819180751134887 -9424.0,0.10815444583737882 -9425.0,0.10811709706544559 -9426.0,0.10807976119109376 -9427.0,0.10804243820986935 -9428.0,0.10800512811732003 -9429.0,0.10796783090899502 -9430.0,0.10793054658044504 -9431.0,0.10789327512722226 -9432.0,0.10785601654488053 -9433.0,0.10781877082897515 -9434.0,0.10778153797506299 -9435.0,0.10774431797870249 -9436.0,0.10770711083545348 -9437.0,0.10766991654087746 -9438.0,0.10763273509053742 -9439.0,0.10759556647999795 -9440.0,0.107558410704825 -9441.0,0.1075212677605862 -9442.0,0.10748413764285067 -9443.0,0.1074470203471891 -9444.0,0.10740991586917359 -9445.0,0.10737282420437787 -9446.0,0.10733574534837718 -9447.0,0.10729867929674836 -9448.0,0.10726162604506957 -9449.0,0.1072245855889207 -9450.0,0.10718755792388307 -9451.0,0.10715054304553956 -9452.0,0.10711354094947462 -9453.0,0.10707655163127405 -9454.0,0.10703957508652538 -9455.0,0.10700261131081755 -9456.0,0.10696566029974111 -9457.0,0.10692872204888797 -9458.0,0.10689179655385171 -9459.0,0.10685488381022741 -9460.0,0.10681798381361167 -9461.0,0.10678109655960251 -9462.0,0.1067442220437996 -9463.0,0.10670736026180407 -9464.0,0.10667051120921862 -9465.0,0.10663367488164735 -9466.0,0.106596851274696 -9467.0,0.10656004038397175 -9468.0,0.10652324220508341 -9469.0,0.10648645673364113 -9470.0,0.10644968396525671 -9471.0,0.10641292389554342 -9472.0,0.10637617652011606 -9473.0,0.10633944183459099 -9474.0,0.10630271983458593 -9475.0,0.10626601051572025 -9476.0,0.1062293138736148 -9477.0,0.106192629903892 -9478.0,0.10615595860217561 -9479.0,0.10611929996409106 -9480.0,0.10608265398526526 -9481.0,0.10604602066132662 -9482.0,0.106009399987905 -9483.0,0.10597279196063185 -9484.0,0.10593619657514008 -9485.0,0.10589961382706421 -9486.0,0.10586304371204007 -9487.0,0.10582648622570516 -9488.0,0.10578994136369844 -9489.0,0.10575340912166038 -9490.0,0.10571688949523299 -9491.0,0.10568038248005966 -9492.0,0.1056438880717854 -9493.0,0.1056074062660567 -9494.0,0.10557093705852161 -9495.0,0.1055344804448295 -9496.0,0.10549803642063142 -9497.0,0.10546160498157987 -9498.0,0.10542518612332889 -9499.0,0.10538877984153387 -9500.0,0.10535238613185187 -9501.0,0.10531600498994136 -9502.0,0.10527963641146242 -9503.0,0.10524328039207641 -9504.0,0.1052069369274464 -9505.0,0.10517060601323686 -9506.0,0.10513428764511383 -9507.0,0.1050979818187447 -9508.0,0.10506168852979851 -9509.0,0.10502540777394571 -9510.0,0.10498913954685829 -9511.0,0.10495288384420974 -9512.0,0.10491664066167496 -9513.0,0.10488040999493041 -9514.0,0.10484419183965407 -9515.0,0.1048079861915254 -9516.0,0.10477179304622525 -9517.0,0.10473561239943609 -9518.0,0.10469944424684181 -9519.0,0.1046632885841279 -9520.0,0.10462714540698112 -9521.0,0.10459101471108993 -9522.0,0.10455489649214418 -9523.0,0.10451879074583528 -9524.0,0.10448269746785599 -9525.0,0.1044466166539007 -9526.0,0.10441054829966522 -9527.0,0.10437449240084685 -9528.0,0.10433844895314445 -9529.0,0.1043024179522582 -9530.0,0.10426639939388989 -9531.0,0.10423039327374281 -9532.0,0.1041943995875217 -9533.0,0.10415841833093271 -9534.0,0.10412244949968356 -9535.0,0.10408649308948346 -9536.0,0.1040505490960431 -9537.0,0.10401461751507453 -9538.0,0.10397869834229143 -9539.0,0.10394279157340888 -9540.0,0.10390689720414355 -9541.0,0.10387101523021339 -9542.0,0.10383514564733799 -9543.0,0.10379928845123836 -9544.0,0.10376344363763707 -9545.0,0.10372761120225796 -9546.0,0.10369179114082658 -9547.0,0.10365598344906982 -9548.0,0.10362018812271609 -9549.0,0.10358440515749533 -9550.0,0.10354863454913879 -9551.0,0.10351287629337934 -9552.0,0.1034771303859513 -9553.0,0.10344139682259046 -9554.0,0.10340567559903399 -9555.0,0.10336996671102065 -9556.0,0.10333427015429066 -9557.0,0.10329858592458567 -9558.0,0.10326291401764877 -9559.0,0.10322725442922458 -9560.0,0.10319160715505919 -9561.0,0.10315597219090017 -9562.0,0.10312034953249644 -9563.0,0.10308473917559852 -9564.0,0.10304914111595836 -9565.0,0.10301355534932938 -9566.0,0.10297798187146649 -9567.0,0.10294242067812594 -9568.0,0.10290687176506559 -9569.0,0.10287133512804472 -9570.0,0.10283581076282411 -9571.0,0.10280029866516587 -9572.0,0.1027647988308337 -9573.0,0.10272931125559273 -9574.0,0.10269383593520963 -9575.0,0.10265837286545232 -9576.0,0.10262292204209038 -9577.0,0.10258748346089479 -9578.0,0.10255205711763801 -9579.0,0.10251664300809386 -9580.0,0.10248124112803775 -9581.0,0.10244585147324647 -9582.0,0.10241047403949835 -9583.0,0.10237510882257304 -9584.0,0.10233975581825176 -9585.0,0.10230441502231714 -9586.0,0.10226908643055332 -9587.0,0.10223377003874587 -9588.0,0.10219846584268172 -9589.0,0.10216317383814938 -9590.0,0.10212789402093878 -9591.0,0.10209262638684133 -9592.0,0.10205737093164977 -9593.0,0.10202212765115842 -9594.0,0.10198689654116304 -9595.0,0.10195167759746082 -9596.0,0.10191647081585035 -9597.0,0.10188127619213173 -9598.0,0.10184609372210653 -9599.0,0.10181092340157774 -9600.0,0.10177576522634973 -9601.0,0.10174061919222845 -9602.0,0.1017054852950212 -9603.0,0.10167036353053678 -9604.0,0.10163525389458546 -9605.0,0.10160015638297884 -9606.0,0.10156507099153006 -9607.0,0.10152999771605371 -9608.0,0.10149493655236586 -9609.0,0.10145988749628385 -9610.0,0.10142485054362664 -9611.0,0.10138982569021457 -9612.0,0.1013548129318695 -9613.0,0.10131981226441454 -9614.0,0.10128482368367445 -9615.0,0.1012498471854753 -9616.0,0.10121488276564473 -9617.0,0.10117993042001164 -9618.0,0.1011449901444065 -9619.0,0.10111006193466122 -9620.0,0.10107514578660914 -9621.0,0.10104024169608494 -9622.0,0.10100534965892485 -9623.0,0.10097046967096651 -9624.0,0.100935601728049 -9625.0,0.10090074582601287 -9626.0,0.10086590196069996 -9627.0,0.10083107012795371 -9628.0,0.10079625032361894 -9629.0,0.10076144254354193 -9630.0,0.1007266467835703 -9631.0,0.10069186303955319 -9632.0,0.10065709130734116 -9633.0,0.10062233158278625 -9634.0,0.10058758386174178 -9635.0,0.10055284814006264 -9636.0,0.10051812441360514 -9637.0,0.100483412678227 -9638.0,0.1004487129297873 -9639.0,0.10041402516414664 -9640.0,0.10037934937716704 -9641.0,0.1003446855647119 -9642.0,0.10031003372264617 -9643.0,0.10027539384683602 -9644.0,0.1002407659331492 -9645.0,0.10020614997745489 -9646.0,0.10017154597562367 -9647.0,0.10013695392352745 -9648.0,0.10010237381703971 -9649.0,0.10006780565203528 -9650.0,0.1000332494243905 -9651.0,0.09999870512998293 -9652.0,0.09996417276469179 -9653.0,0.09992965232439756 -9654.0,0.0998951438049823 -9655.0,0.09986064720232926 -9656.0,0.09982616251232333 -9657.0,0.09979168973085072 -9658.0,0.09975722885379912 -9659.0,0.09972277987705752 -9660.0,0.09968834279651645 -9661.0,0.09965391760806781 -9662.0,0.09961950430760494 -9663.0,0.09958510289102261 -9664.0,0.0995507133542169 -9665.0,0.09951633569308545 -9666.0,0.09948196990352723 -9667.0,0.09944761598144272 -9668.0,0.09941327392273364 -9669.0,0.09937894372330328 -9670.0,0.0993446253790563 -9671.0,0.09931031888589882 -9672.0,0.09927602423973825 -9673.0,0.0992417414364835 -9674.0,0.09920747047204491 -9675.0,0.09917321134233423 -9676.0,0.09913896404326451 -9677.0,0.09910472857075035 -9678.0,0.09907050492070771 -9679.0,0.09903629308905394 -9680.0,0.09900209307170789 -9681.0,0.09896790486458963 -9682.0,0.09893372846362082 -9683.0,0.09889956386472445 -9684.0,0.09886541106382499 -9685.0,0.09883127005684816 -9686.0,0.09879714083972124 -9687.0,0.09876302340837285 -9688.0,0.0987289177587331 -9689.0,0.09869482388673333 -9690.0,0.09866074178830642 -9691.0,0.09862667145938664 -9692.0,0.09859261289590969 -9693.0,0.09855856609381256 -9694.0,0.09852453104903372 -9695.0,0.09849050775751307 -9696.0,0.09845649621519191 -9697.0,0.09842249641801282 -9698.0,0.09838850836191992 -9699.0,0.0983545320428587 -9700.0,0.09832056745677602 -9701.0,0.09828661459962018 -9702.0,0.09825267346734078 -9703.0,0.09821874405588893 -9704.0,0.0981848263612171 -9705.0,0.09815092037927921 -9706.0,0.09811702610603043 -9707.0,0.09808314353742745 -9708.0,0.09804927266942834 -9709.0,0.09801541349799259 -9710.0,0.09798156601908098 -9711.0,0.09794773022865576 -9712.0,0.0979139061226806 -9713.0,0.09788009369712056 -9714.0,0.09784629294794198 -9715.0,0.0978125038711127 -9716.0,0.09777872646260197 -9717.0,0.09774496071838037 -9718.0,0.09771120663441993 -9719.0,0.09767746420669396 -9720.0,0.09764373343117726 -9721.0,0.09761001430384601 -9722.0,0.0975763068206778 -9723.0,0.0975426109776515 -9724.0,0.09750892677074748 -9725.0,0.09747525419594744 -9726.0,0.09744159324923454 -9727.0,0.0974079439265932 -9728.0,0.09737430622400935 -9729.0,0.09734068013747023 -9730.0,0.09730706566296454 -9731.0,0.09727346279648226 -9732.0,0.09723987153401484 -9733.0,0.09720629187155508 -9734.0,0.09717272380509723 -9735.0,0.09713916733063675 -9736.0,0.09710562244417068 -9737.0,0.09707208914169732 -9738.0,0.09703856741921642 -9739.0,0.09700505727272911 -9740.0,0.0969715586982378 -9741.0,0.09693807169174638 -9742.0,0.09690459624926012 -9743.0,0.09687113236678567 -9744.0,0.09683768004033094 -9745.0,0.09680423926590537 -9746.0,0.09677081003951972 -9747.0,0.09673739235718615 -9748.0,0.0967039862149181 -9749.0,0.09667059160873052 -9750.0,0.09663720853463965 -9751.0,0.09660383698866319 -9752.0,0.09657047696682007 -9753.0,0.09653712846513073 -9754.0,0.09650379147961692 -9755.0,0.09647046600630181 -9756.0,0.09643715204120992 -9757.0,0.09640384958036709 -9758.0,0.0963705586198006 -9759.0,0.09633727915553908 -9760.0,0.09630401118361256 -9761.0,0.09627075470005238 -9762.0,0.09623750970089127 -9763.0,0.09620427618216339 -9764.0,0.09617105413990422 -9765.0,0.09613784357015057 -9766.0,0.09610464446894067 -9767.0,0.09607145683231413 -9768.0,0.09603828065631194 -9769.0,0.09600511593697636 -9770.0,0.09597196267035109 -9771.0,0.0959388208524812 -9772.0,0.09590569047941318 -9773.0,0.0958725715471947 -9774.0,0.09583946405187496 -9775.0,0.0958063679895045 -9776.0,0.09577328335613516 -9777.0,0.09574021014782028 -9778.0,0.09570714836061434 -9779.0,0.09567409799057337 -9780.0,0.0956410590337547 -9781.0,0.09560803148621706 -9782.0,0.09557501534402042 -9783.0,0.09554201060322626 -9784.0,0.09550901725989733 -9785.0,0.09547603531009781 -9786.0,0.09544306474989311 -9787.0,0.09541010557535014 -9788.0,0.09537715778253708 -9789.0,0.09534422136752357 -9790.0,0.09531129632638044 -9791.0,0.09527838265518003 -9792.0,0.09524548034999594 -9793.0,0.0952125894069032 -9794.0,0.09517970982197821 -9795.0,0.09514684159129855 -9796.0,0.09511398471094334 -9797.0,0.09508113917699303 -9798.0,0.09504830498552937 -9799.0,0.09501548213263543 -9800.0,0.09498267061439572 -9801.0,0.09494987042689608 -9802.0,0.0949170815662237 -9803.0,0.09488430402846704 -9804.0,0.094851537809716 -9805.0,0.09481878290606185 -9806.0,0.09478603931359718 -9807.0,0.09475330702841583 -9808.0,0.09472058604661315 -9809.0,0.09468787636428574 -9810.0,0.09465517797753162 -9811.0,0.09462249088245003 -9812.0,0.09458981507514168 -9813.0,0.09455715055170859 -9814.0,0.0945244973082541 -9815.0,0.09449185534088297 -9816.0,0.09445922464570118 -9817.0,0.09442660521881616 -9818.0,0.09439399705633664 -9819.0,0.09436140015437275 -9820.0,0.09432881450903584 -9821.0,0.09429624011643872 -9822.0,0.0942636769726955 -9823.0,0.09423112507392167 -9824.0,0.09419858441623397 -9825.0,0.09416605499575054 -9826.0,0.09413353680859088 -9827.0,0.09410102985087584 -9828.0,0.09406853411872751 -9829.0,0.0940360496082694 -9830.0,0.09400357631562636 -9831.0,0.09397111423692459 -9832.0,0.09393866336829158 -9833.0,0.09390622370585616 -9834.0,0.09387379524574851 -9835.0,0.09384137798410018 -9836.0,0.09380897191704404 -9837.0,0.09377657704071424 -9838.0,0.0937441933512463 -9839.0,0.09371182084477712 -9840.0,0.09367945951744493 -9841.0,0.09364710936538917 -9842.0,0.09361477038475073 -9843.0,0.09358244257167184 -9844.0,0.09355012592229603 -9845.0,0.09351782043276811 -9846.0,0.0934855260992343 -9847.0,0.09345324291784211 -9848.0,0.09342097088474045 -9849.0,0.09338870999607941 -9850.0,0.09335646024801054 -9851.0,0.0933242216366867 -9852.0,0.09329199415826203 -9853.0,0.0932597778088921 -9854.0,0.09322757258473362 -9855.0,0.09319537848194479 -9856.0,0.0931631954966851 -9857.0,0.0931310236251154 -9858.0,0.09309886286339772 -9859.0,0.09306671320769556 -9860.0,0.09303457465417371 -9861.0,0.09300244719899832 -9862.0,0.09297033083833672 -9863.0,0.09293822556835771 -9864.0,0.09290613138523136 -9865.0,0.09287404828512914 -9866.0,0.09284197626422365 -9867.0,0.09280991531868898 -9868.0,0.09277786544470051 -9869.0,0.09274582663843492 -9870.0,0.09271379889607023 -9871.0,0.09268178221378572 -9872.0,0.09264977658776204 -9873.0,0.09261778201418118 -9874.0,0.09258579848922643 -9875.0,0.09255382600908234 -9876.0,0.09252186456993484 -9877.0,0.0924899141679712 -9878.0,0.09245797479937996 -9879.0,0.09242604646035095 -9880.0,0.09239412914707537 -9881.0,0.09236222285574572 -9882.0,0.09233032758255585 -9883.0,0.09229844332370081 -9884.0,0.09226657007537709 -9885.0,0.09223470783378243 -9886.0,0.09220285659511593 -9887.0,0.09217101635557791 -9888.0,0.09213918711137009 -9889.0,0.09210736885869548 -9890.0,0.09207556159375839 -9891.0,0.09204376531276447 -9892.0,0.0920119800119206 -9893.0,0.09198020568743506 -9894.0,0.0919484423355174 -9895.0,0.09191668995237852 -9896.0,0.09188494853423052 -9897.0,0.09185321807728691 -9898.0,0.09182149857776249 -9899.0,0.09178979003187339 -9900.0,0.09175809243583692 -9901.0,0.09172640578587185 -9902.0,0.09169473007819819 -9903.0,0.09166306530903728 -9904.0,0.09163141147461168 -9905.0,0.09159976857114535 -9906.0,0.09156813659486354 -9907.0,0.09153651554199276 -9908.0,0.09150490540876091 -9909.0,0.09147330619139703 -9910.0,0.09144171788613163 -9911.0,0.09141014048919643 -9912.0,0.09137857399682454 -9913.0,0.09134701840525021 -9914.0,0.09131547371070914 -9915.0,0.09128393990943827 -9916.0,0.09125241699767589 -9917.0,0.09122090497166147 -9918.0,0.09118940382763588 -9919.0,0.09115791356184129 -9920.0,0.09112643417052115 -9921.0,0.09109496564992015 -9922.0,0.09106350799628433 -9923.0,0.09103206120586105 -9924.0,0.09100062527489897 -9925.0,0.09096920019964792 -9926.0,0.09093778597635918 -9927.0,0.09090638260128525 -9928.0,0.09087499007067994 -9929.0,0.09084360838079837 -9930.0,0.09081223752789687 -9931.0,0.09078087750823317 -9932.0,0.09074952831806625 -9933.0,0.09071818995365641 -9934.0,0.09068686241126514 -9935.0,0.09065554568715531 -9936.0,0.0906242397775911 -9937.0,0.09059294467883795 -9938.0,0.09056166038716253 -9939.0,0.09053038689883287 -9940.0,0.09049912421011828 -9941.0,0.09046787231728941 -9942.0,0.09043663121661802 -9943.0,0.09040540090437732 -9944.0,0.09037418137684179 -9945.0,0.09034297263028715 -9946.0,0.09031177466099045 -9947.0,0.09028058746522995 -9948.0,0.09024941103928526 -9949.0,0.09021824537943726 -9950.0,0.09018709048196819 -9951.0,0.09015594634316136 -9952.0,0.0901248129593016 -9953.0,0.09009369032667487 -9954.0,0.09006257844156855 -9955.0,0.09003147730027113 -9956.0,0.09000038689907248 -9957.0,0.08996930723426377 -9958.0,0.08993823830213747 -9959.0,0.08990718009898718 -9960.0,0.08987613262110794 -9961.0,0.08984509586479601 -9962.0,0.08981406982634896 -9963.0,0.08978305450206553 -9964.0,0.08975204988824587 -9965.0,0.08972105598119134 -9966.0,0.08969007277720462 -9967.0,0.08965910027258965 -9968.0,0.08962813846365159 -9969.0,0.08959718734669692 -9970.0,0.08956624691803342 -9971.0,0.08953531717397016 -9972.0,0.08950439811081737 -9973.0,0.08947348972488667 -9974.0,0.08944259201249091 -9975.0,0.08941170496994426 -9976.0,0.08938082859356206 -9977.0,0.08934996287966099 -9978.0,0.08931910782455901 -9979.0,0.08928826342457538 -9980.0,0.08925742967603051 -9981.0,0.0892266065752462 -9982.0,0.08919579411854546 -9983.0,0.08916499230225262 -9984.0,0.08913420112269325 -9985.0,0.08910342057619415 -9986.0,0.08907265065908343 -9987.0,0.08904189136769047 -9988.0,0.08901114269834597 -9989.0,0.08898040464738174 -9990.0,0.08894967721113099 -9991.0,0.08891896038592818 -9992.0,0.08888825416810904 -9993.0,0.08885755855401048 -9994.0,0.08882687353997076 -9995.0,0.08879619912232939 -9996.0,0.08876553529742716 -9997.0,0.08873488206160604 -9998.0,0.08870423941120936 -9999.0,0.08867360734258167 -10000.0,0.08864298585206883 -10001.0,0.08861237493601783 -10002.0,0.08858177459077705 -10003.0,0.08855118481269611 -10004.0,0.08852060559812586 -10005.0,0.08849003694341846 -10006.0,0.08845947884492723 -10007.0,0.08842893129900684 -10008.0,0.08839839430201317 -10009.0,0.08836786785030344 -10010.0,0.088337351940236 -10011.0,0.08830684656817055 -10012.0,0.08827635173046801 -10013.0,0.08824586742349064 -10014.0,0.08821539364360176 -10015.0,0.08818493038716615 -10016.0,0.08815447765054975 -10017.0,0.0881240354301198 -10018.0,0.0880936037222447 -10019.0,0.0880631825232942 -10020.0,0.08803277182963928 -10021.0,0.08800237163765218 -10022.0,0.08797198194370638 -10023.0,0.08794160274417656 -10024.0,0.08791123403543874 -10025.0,0.08788087581387015 -10026.0,0.08785052807584931 -10027.0,0.0878201908177559 -10028.0,0.08778986403597092 -10029.0,0.08775954772687661 -10030.0,0.08772924188685649 -10031.0,0.08769894651229523 -10032.0,0.08766866159957887 -10033.0,0.08763838714509459 -10034.0,0.08760812314523095 -10035.0,0.08757786959637757 -10036.0,0.08754762649492549 -10037.0,0.08751739383726691 -10038.0,0.08748717161979533 -10039.0,0.08745695983890539 -10040.0,0.08742675849099307 -10041.0,0.08739656757245559 -10042.0,0.08736638707969138 -10043.0,0.08733621700910019 -10044.0,0.08730605735708283 -10045.0,0.08727590812004155 -10046.0,0.08724576929437974 -10047.0,0.08721564087650212 -10048.0,0.08718552286281449 -10049.0,0.08715541524972405 -10050.0,0.08712531803363915 -10051.0,0.08709523121096949 -10052.0,0.08706515477812583 -10053.0,0.08703508873152031 -10054.0,0.08700503306756628 -10055.0,0.08697498778267834 -10056.0,0.08694495287327225 -10057.0,0.0869149283357651 -10058.0,0.08688491416657516 -10059.0,0.08685491036212199 -10060.0,0.08682491691882638 -10061.0,0.08679493383311024 -10062.0,0.08676496110139685 -10063.0,0.08673499872011069 -10064.0,0.08670504668567751 -10065.0,0.08667510499452416 -10066.0,0.08664517364307886 -10067.0,0.08661525262777102 -10068.0,0.08658534194503131 -10069.0,0.08655544159129154 -10070.0,0.08652555156298485 -10071.0,0.08649567185654557 -10072.0,0.08646580246840932 -10073.0,0.0864359433950128 -10074.0,0.08640609463279411 -10075.0,0.08637625617819249 -10076.0,0.08634642802764843 -10077.0,0.0863166101776037 -10078.0,0.08628680262450115 -10079.0,0.08625700536478502 -10080.0,0.08622721839490069 -10081.0,0.08619744171129486 -10082.0,0.08616767531041528 -10083.0,0.08613791918871108 -10084.0,0.0861081733426326 -10085.0,0.08607843776863139 -10086.0,0.08604871246316013 -10087.0,0.08601899742267287 -10088.0,0.0859892926436248 -10089.0,0.0859595981224724 -10090.0,0.08592991385567327 -10091.0,0.08590023983968632 -10092.0,0.08587057607097165 -10093.0,0.08584092254599064 -10094.0,0.08581127926120574 -10095.0,0.08578164621308079 -10096.0,0.08575202339808077 -10097.0,0.0857224108126719 -10098.0,0.08569280845332165 -10099.0,0.08566321631649859 -10100.0,0.08563363439867264 -10101.0,0.08560406269631489 -10102.0,0.08557450120589769 -10103.0,0.08554494992389448 -10104.0,0.08551540884678008 -10105.0,0.08548587797103042 -10106.0,0.08545635729312274 -10107.0,0.08542684680953537 -10108.0,0.08539734651674794 -10109.0,0.08536785641124128 -10110.0,0.08533837648949749 -10111.0,0.08530890674799975 -10112.0,0.08527944718323256 -10113.0,0.08524999779168163 -10114.0,0.08522055856983385 -10115.0,0.08519112951417737 -10116.0,0.08516171062120145 -10117.0,0.08513230188739666 -10118.0,0.08510290330925475 -10119.0,0.08507351488326875 -10120.0,0.08504413660593273 -10121.0,0.08501476847374212 -10122.0,0.08498541048319351 -10123.0,0.08495606263078477 -10124.0,0.08492672491301481 -10125.0,0.0848973973263839 -10126.0,0.08486807986739349 -10127.0,0.08483877253254624 -10128.0,0.08480947531834591 -10129.0,0.08478018822129763 -10130.0,0.08475091123790764 -10131.0,0.08472164436468345 -10132.0,0.08469238759813368 -10133.0,0.0846631409347682 -10134.0,0.08463390437109815 -10135.0,0.0846046779036358 -10136.0,0.08457546152889465 -10137.0,0.08454625524338939 -10138.0,0.0845170590436359 -10139.0,0.08448787292615133 -10140.0,0.08445869688745401 -10141.0,0.08442953092406337 -10142.0,0.08440037503250016 -10143.0,0.0843712292092863 -10144.0,0.08434209345094495 -10145.0,0.08431296775400035 -10146.0,0.08428385211497803 -10147.0,0.08425474653040474 -10148.0,0.08422565099680843 -10149.0,0.08419656551071811 -10150.0,0.08416749006866416 -10151.0,0.08413842466717808 -10152.0,0.08410936930279259 -10153.0,0.08408032397204161 -10154.0,0.0840512886714602 -10155.0,0.08402226339758467 -10156.0,0.08399324814695254 -10157.0,0.08396424291610252 -10158.0,0.08393524770157444 -10159.0,0.08390626249990941 -10160.0,0.0838772873076497 -10161.0,0.08384832212133884 -10162.0,0.0838193669375214 -10163.0,0.08379042175274329 -10164.0,0.08376148656355153 -10165.0,0.08373256136649444 -10166.0,0.08370364615812136 -10167.0,0.08367474093498295 -10168.0,0.08364584569363104 -10169.0,0.08361696043061866 -10170.0,0.08358808514249995 -10171.0,0.08355921982583032 -10172.0,0.08353036447716637 -10173.0,0.08350151909306586 -10174.0,0.08347268367008776 -10175.0,0.08344385820479217 -10176.0,0.08341504269374043 -10177.0,0.08338623713349509 -10178.0,0.08335744152061988 -10179.0,0.08332865585167963 -10180.0,0.08329988012324044 -10181.0,0.08327111433186958 -10182.0,0.08324235847413554 -10183.0,0.08321361254660788 -10184.0,0.08318487654585745 -10185.0,0.08315615046845627 -10186.0,0.08312743431097756 -10187.0,0.08309872806999563 -10188.0,0.08307003174208605 -10189.0,0.08304134532382555 -10190.0,0.08301266881179209 -10191.0,0.08298400220256477 -10192.0,0.08295534549272382 -10193.0,0.08292669867885072 -10194.0,0.08289806175752813 -10195.0,0.08286943472533992 -10196.0,0.08284081757887099 -10197.0,0.08281221031470759 -10198.0,0.08278361292943708 -10199.0,0.082755025419648 -10200.0,0.08272644778193004 -10201.0,0.0826978800128741 -10202.0,0.08266932210907228 -10203.0,0.08264077406711785 -10204.0,0.08261223588360518 -10205.0,0.08258370755512989 -10206.0,0.08255518907828877 -10207.0,0.0825266804496798 -10208.0,0.08249818166590203 -10209.0,0.08246969272355584 -10210.0,0.08244121361924266 -10211.0,0.08241274434956516 -10212.0,0.0823842849111272 -10213.0,0.08235583530053371 -10214.0,0.08232739551439087 -10215.0,0.08229896554930606 -10216.0,0.0822705454018878 -10217.0,0.08224213506874571 -10218.0,0.08221373454649067 -10219.0,0.08218534383173472 -10220.0,0.08215696292109109 -10221.0,0.08212859181117406 -10222.0,0.08210023049859921 -10223.0,0.08207187897998323 -10224.0,0.08204353725194405 -10225.0,0.08201520531110061 -10226.0,0.08198688315407317 -10227.0,0.0819585707774831 -10228.0,0.08193026817795293 -10229.0,0.08190197535210642 -10230.0,0.08187369229656835 -10231.0,0.0818454190079648 -10232.0,0.08181715548292298 -10233.0,0.0817889017180713 -10234.0,0.08176065771003918 -10235.0,0.0817324234554574 -10236.0,0.0817041989509578 -10237.0,0.08167598419317344 -10238.0,0.08164777917873843 -10239.0,0.08161958390428815 -10240.0,0.08159139836645914 -10241.0,0.08156322256188905 -10242.0,0.08153505648721669 -10243.0,0.08150690013908206 -10244.0,0.08147875351412633 -10245.0,0.08145061660899183 -10246.0,0.08142248942032199 -10247.0,0.08139437194476144 -10248.0,0.081366264178956 -10249.0,0.08133816611955261 -10250.0,0.08131007776319941 -10251.0,0.08128199910654559 -10252.0,0.08125393014624162 -10253.0,0.08122587087893905 -10254.0,0.08119782130129068 -10255.0,0.0811697814099503 -10256.0,0.08114175120157303 -10257.0,0.08111373067281503 -10258.0,0.08108571982033372 -10259.0,0.08105771864078752 -10260.0,0.08102972713083613 -10261.0,0.08100174528714038 -10262.0,0.08097377310636227 -10263.0,0.08094581058516484 -10264.0,0.08091785772021241 -10265.0,0.08088991450817042 -10266.0,0.08086198094570543 -10267.0,0.0808340570294852 -10268.0,0.08080614275617858 -10269.0,0.08077823812245558 -10270.0,0.08075034312498741 -10271.0,0.08072245776044644 -10272.0,0.08069458202550607 -10273.0,0.08066671591684096 -10274.0,0.08063885943112689 -10275.0,0.08061101256504083 -10276.0,0.08058317531526077 -10277.0,0.08055534767846596 -10278.0,0.08052752965133678 -10279.0,0.08049972123055477 -10280.0,0.08047192241280252 -10281.0,0.08044413319476386 -10282.0,0.08041635357312374 -10283.0,0.0803885835445683 -10284.0,0.08036082310578471 -10285.0,0.08033307225346137 -10286.0,0.08030533098428783 -10287.0,0.08027759929495473 -10288.0,0.08024987718215393 -10289.0,0.08022216464257832 -10290.0,0.08019446167292202 -10291.0,0.08016676826988027 -10292.0,0.0801390844301495 -10293.0,0.08011141015042714 -10294.0,0.0800837454274119 -10295.0,0.08005609025780357 -10296.0,0.08002844463830312 -10297.0,0.08000080856561256 -10298.0,0.07997318203643516 -10299.0,0.07994556504747527 -10300.0,0.07991795759543842 -10301.0,0.07989035967703116 -10302.0,0.0798627712889613 -10303.0,0.07983519242793775 -10304.0,0.07980762309067056 -10305.0,0.07978006327387092 -10306.0,0.07975251297425111 -10307.0,0.07972497218852459 -10308.0,0.07969744091340594 -10309.0,0.07966991914561095 -10310.0,0.07964240688185635 -10311.0,0.07961490411886021 -10312.0,0.07958741085334163 -10313.0,0.07955992708202089 -10314.0,0.07953245280161934 -10315.0,0.0795049880088595 -10316.0,0.07947753270046504 -10317.0,0.07945008687316076 -10318.0,0.0794226505236725 -10319.0,0.07939522364872738 -10320.0,0.07936780624505353 -10321.0,0.0793403983093803 -10322.0,0.07931299983843806 -10323.0,0.07928561082895841 -10324.0,0.07925823127767402 -10325.0,0.07923086118131874 -10326.0,0.07920350053662753 -10327.0,0.07917614934033639 -10328.0,0.07914880758918258 -10329.0,0.0791214752799044 -10330.0,0.07909415240924138 -10331.0,0.07906683897393399 -10332.0,0.07903953497072398 -10333.0,0.0790122403963542 -10334.0,0.07898495524756863 -10335.0,0.07895767952111228 -10336.0,0.07893041321373138 -10337.0,0.07890315632217329 -10338.0,0.07887590884318646 -10339.0,0.07884867077352041 -10340.0,0.07882144210992588 -10341.0,0.07879422284915467 -10342.0,0.07876701298795974 -10343.0,0.07873981252309517 -10344.0,0.07871262145131609 -10345.0,0.07868543976937882 -10346.0,0.07865826747404081 -10347.0,0.07863110456206061 -10348.0,0.07860395103019782 -10349.0,0.07857680687521326 -10350.0,0.07854967209386884 -10351.0,0.0785225466829276 -10352.0,0.07849543063915361 -10353.0,0.07846832395931216 -10354.0,0.07844122664016963 -10355.0,0.07841413867849352 -10356.0,0.07838706007105238 -10357.0,0.07835999081461596 -10358.0,0.0783329309059551 -10359.0,0.07830588034184177 -10360.0,0.07827883911904898 -10361.0,0.07825180723435095 -10362.0,0.07822478468452296 -10363.0,0.07819777146634141 -10364.0,0.07817076757658387 -10365.0,0.0781437730120289 -10366.0,0.07811678776945628 -10367.0,0.07808981184564687 -10368.0,0.07806284523738266 -10369.0,0.07803588794144667 -10370.0,0.07800893995462313 -10371.0,0.07798200127369734 -10372.0,0.07795507189545574 -10373.0,0.07792815181668579 -10374.0,0.07790124103417614 -10375.0,0.07787433954471656 -10376.0,0.07784744734509791 -10377.0,0.07782056443211208 -10378.0,0.07779369080255216 -10379.0,0.07776682645321235 -10380.0,0.07773997138088791 -10381.0,0.07771312558237525 -10382.0,0.07768628905447182 -10383.0,0.07765946179397623 -10384.0,0.0776326437976882 -10385.0,0.07760583506240856 -10386.0,0.07757903558493916 -10387.0,0.07755224536208305 -10388.0,0.07752546439064435 -10389.0,0.07749869266742833 -10390.0,0.07747193018924123 -10391.0,0.07744517695289053 -10392.0,0.07741843295518477 -10393.0,0.07739169819293361 -10394.0,0.07736497266294773 -10395.0,0.07733825636203898 -10396.0,0.07731154928702033 -10397.0,0.07728485143470583 -10398.0,0.07725816280191056 -10399.0,0.0772314833854508 -10400.0,0.0772048131821439 -10401.0,0.07717815218880827 -10402.0,0.07715150040226351 -10403.0,0.07712485781933018 -10404.0,0.07709822443683002 -10405.0,0.07707160025158592 -10406.0,0.07704498526042179 -10407.0,0.07701837946016261 -10408.0,0.07699178284763454 -10409.0,0.07696519541966479 -10410.0,0.0769386171730817 -10411.0,0.07691204810471462 -10412.0,0.0768854882113941 -10413.0,0.07685893748995172 -10414.0,0.07683239593722022 -10415.0,0.0768058635500333 -10416.0,0.07677934032522589 -10417.0,0.07675282625963396 -10418.0,0.07672632135009456 -10419.0,0.0766998255934459 -10420.0,0.07667333898652717 -10421.0,0.07664686152617872 -10422.0,0.076620393209242 -10423.0,0.07659393403255954 -10424.0,0.07656748399297492 -10425.0,0.07654104308733285 -10426.0,0.07651461131247915 -10427.0,0.07648818866526072 -10428.0,0.07646177514252545 -10429.0,0.07643537074112246 -10430.0,0.07640897545790187 -10431.0,0.07638258928971497 -10432.0,0.076356212233414 -10433.0,0.07632984428585243 -10434.0,0.07630348544388472 -10435.0,0.07627713570436652 -10436.0,0.0762507950641544 -10437.0,0.07622446352010616 -10438.0,0.07619814106908065 -10439.0,0.07617182770793778 -10440.0,0.0761455234335386 -10441.0,0.07611922824274513 -10442.0,0.07609294213242057 -10443.0,0.07606666509942919 -10444.0,0.07604039714063636 -10445.0,0.07601413825290845 -10446.0,0.07598788843311298 -10447.0,0.07596164767811855 -10448.0,0.07593541598479486 -10449.0,0.0759091933500126 -10450.0,0.07588297977064362 -10451.0,0.07585677524356084 -10452.0,0.0758305797656383 -10453.0,0.07580439333375097 -10454.0,0.07577821594477505 -10455.0,0.07575204759558776 -10456.0,0.07572588828306744 -10457.0,0.07569973800409346 -10458.0,0.07567359675554625 -10459.0,0.07564746453430737 -10460.0,0.07562134133725944 -10461.0,0.07559522716128618 -10462.0,0.0755691220032723 -10463.0,0.07554302586010368 -10464.0,0.07551693872866723 -10465.0,0.07549086060585099 -10466.0,0.07546479148854396 -10467.0,0.0754387313736363 -10468.0,0.07541268025801925 -10469.0,0.07538663813858515 -10470.0,0.07536060501222726 -10471.0,0.07533458087584007 -10472.0,0.0753085657263191 -10473.0,0.07528255956056094 -10474.0,0.0752565623754632 -10475.0,0.07523057416792463 -10476.0,0.07520459493484502 -10477.0,0.07517862467312526 -10478.0,0.07515266337966729 -10479.0,0.07512671105137407 -10480.0,0.07510076768514971 -10481.0,0.07507483327789935 -10482.0,0.07504890782652923 -10483.0,0.07502299132794658 -10484.0,0.07499708377905978 -10485.0,0.07497118517677824 -10486.0,0.07494529551801249 -10487.0,0.07491941479967401 -10488.0,0.07489354301867546 -10489.0,0.07486768017193052 -10490.0,0.07484182625635395 -10491.0,0.07481598126886155 -10492.0,0.07479014520637019 -10493.0,0.07476431806579785 -10494.0,0.07473849984406351 -10495.0,0.0747126905380873 -10496.0,0.07468689014479027 -10497.0,0.07466109866109467 -10498.0,0.07463531608392378 -10499.0,0.07460954241020193 -10500.0,0.07458377763685445 -10501.0,0.07455802176080784 -10502.0,0.07453227477898958 -10503.0,0.07450653668832831 -10504.0,0.07448080748575357 -10505.0,0.0744550871681961 -10506.0,0.07442937573258766 -10507.0,0.0744036731758611 -10508.0,0.07437797949495019 -10509.0,0.07435229468678993 -10510.0,0.07432661874831631 -10511.0,0.07430095167646639 -10512.0,0.07427529346817821 -10513.0,0.07424964412039099 -10514.0,0.07422400363004493 -10515.0,0.07419837199408132 -10516.0,0.0741727492094425 -10517.0,0.07414713527307182 -10518.0,0.07412153018191375 -10519.0,0.07409593393291378 -10520.0,0.07407034652301851 -10521.0,0.07404476794917547 -10522.0,0.07401919820833336 -10523.0,0.0739936372974419 -10524.0,0.0739680852134519 -10525.0,0.0739425419533151 -10526.0,0.0739170075139844 -10527.0,0.07389148189241376 -10528.0,0.07386596508555818 -10529.0,0.07384045709037362 -10530.0,0.07381495790381719 -10531.0,0.07378946752284703 -10532.0,0.07376398594442232 -10533.0,0.07373851316550332 -10534.0,0.07371304918305127 -10535.0,0.07368759399402852 -10536.0,0.07366214759539845 -10537.0,0.07363670998412553 -10538.0,0.07361128115717516 -10539.0,0.07358586111151393 -10540.0,0.07356044984410937 -10541.0,0.07353504735193016 -10542.0,0.07350965363194589 -10543.0,0.07348426868112733 -10544.0,0.07345889249644622 -10545.0,0.07343352507487541 -10546.0,0.07340816641338867 -10547.0,0.07338281650896095 -10548.0,0.07335747535856818 -10549.0,0.07333214295918737 -10550.0,0.0733068193077965 -10551.0,0.07328150440137468 -10552.0,0.073256198236902 -10553.0,0.07323090081135965 -10554.0,0.07320561212172982 -10555.0,0.07318033216499575 -10556.0,0.07315506093814171 -10557.0,0.07312979843815304 -10558.0,0.07310454466201616 -10559.0,0.07307929960671837 -10560.0,0.0730540632692482 -10561.0,0.07302883564659511 -10562.0,0.07300361673574966 -10563.0,0.07297840653370337 -10564.0,0.07295320503744887 -10565.0,0.0729280122439798 -10566.0,0.07290282815029088 -10567.0,0.07287765275337778 -10568.0,0.07285248605023727 -10569.0,0.07282732803786715 -10570.0,0.07280217871326626 -10571.0,0.0727770380734345 -10572.0,0.0727519061153727 -10573.0,0.07272678283608285 -10574.0,0.07270166823256792 -10575.0,0.07267656230183195 -10576.0,0.07265146504087991 -10577.0,0.07262637644671793 -10578.0,0.07260129651635312 -10579.0,0.07257622524679366 -10580.0,0.07255116263504865 -10581.0,0.07252610867812836 -10582.0,0.07250106337304403 -10583.0,0.07247602671680795 -10584.0,0.07245099870643339 -10585.0,0.0724259793389347 -10586.0,0.07240096861132726 -10587.0,0.07237596652062753 -10588.0,0.07235097306385284 -10589.0,0.07232598823802171 -10590.0,0.07230101204015361 -10591.0,0.07227604446726908 -10592.0,0.07225108551638972 -10593.0,0.07222613518453799 -10594.0,0.07220119346873759 -10595.0,0.07217626036601311 -10596.0,0.07215133587339027 -10597.0,0.07212641998789569 -10598.0,0.07210151270655712 -10599.0,0.07207661402640331 -10600.0,0.07205172394446403 -10601.0,0.07202684245777004 -10602.0,0.07200196956335318 -10603.0,0.07197710525824631 -10604.0,0.07195224953948332 -10605.0,0.07192740240409903 -10606.0,0.07190256384912941 -10607.0,0.07187773387161138 -10608.0,0.07185291246858293 -10609.0,0.07182809963708306 -10610.0,0.07180329537415171 -10611.0,0.07177849967682998 -10612.0,0.07175371254215988 -10613.0,0.07172893396718455 -10614.0,0.07170416394894802 -10615.0,0.07167940248449542 -10616.0,0.07165464957087289 -10617.0,0.07162990520512764 -10618.0,0.07160516938430776 -10619.0,0.07158044210546251 -10620.0,0.07155572336564207 -10621.0,0.07153101316189774 -10622.0,0.07150631149128167 -10623.0,0.0714816183508472 -10624.0,0.0714569337376486 -10625.0,0.07143225764874121 -10626.0,0.07140759008118129 -10627.0,0.07138293103202621 -10628.0,0.07135828049833433 -10629.0,0.071333638477165 -10630.0,0.07130900496557868 -10631.0,0.07128437996063666 -10632.0,0.07125976345940142 -10633.0,0.0712351554589364 -10634.0,0.07121055595630604 -10635.0,0.07118596494857575 -10636.0,0.07116138243281206 -10637.0,0.07113680840608243 -10638.0,0.07111224286545538 -10639.0,0.07108768580800037 -10640.0,0.07106313723078796 -10641.0,0.07103859713088967 -10642.0,0.07101406550537809 -10643.0,0.07098954235132669 -10644.0,0.0709650276658101 -10645.0,0.07094052144590388 -10646.0,0.07091602368868462 -10647.0,0.07089153439122993 -10648.0,0.07086705355061838 -10649.0,0.07084258116392961 -10650.0,0.07081811722824423 -10651.0,0.0707936617406439 -10652.0,0.07076921469821121 -10653.0,0.07074477609802984 -10654.0,0.07072034593718443 -10655.0,0.07069592421276068 -10656.0,0.07067151092184518 -10657.0,0.07064710606152565 -10658.0,0.07062270962889076 -10659.0,0.07059832162103022 -10660.0,0.07057394203503467 -10661.0,0.07054957086799583 -10662.0,0.0705252081170064 -10663.0,0.0705008537791601 -10664.0,0.07047650785155157 -10665.0,0.07045217033127657 -10666.0,0.0704278412154318 -10667.0,0.07040352050111497 -10668.0,0.07037920818542484 -10669.0,0.07035490426546105 -10670.0,0.07033060873832436 -10671.0,0.0703063216011165 -10672.0,0.0702820428509402 -10673.0,0.07025777248489913 -10674.0,0.07023351050009805 -10675.0,0.07020925689364267 -10676.0,0.07018501166263975 -10677.0,0.07016077480419695 -10678.0,0.07013654631542303 -10679.0,0.0701123261934277 -10680.0,0.07008811443532167 -10681.0,0.07006391103821666 -10682.0,0.07003971599922536 -10683.0,0.07001552931546151 -10684.0,0.06999135098403979 -10685.0,0.06996718100207594 -10686.0,0.0699430193666866 -10687.0,0.06991886607498951 -10688.0,0.06989472112410333 -10689.0,0.06987058451114779 -10690.0,0.0698464562332435 -10691.0,0.06982233628751215 -10692.0,0.06979822467107644 -10693.0,0.06977412138106004 -10694.0,0.06975002641458754 -10695.0,0.06972593976878462 -10696.0,0.06970186144077792 -10697.0,0.0696777914276951 -10698.0,0.06965372972666473 -10699.0,0.06962967633481644 -10700.0,0.06960563124928085 -10701.0,0.06958159446718958 -10702.0,0.06955756598567515 -10703.0,0.06953354580187118 -10704.0,0.06950953391291224 -10705.0,0.06948553031593387 -10706.0,0.06946153500807266 -10707.0,0.06943754798646608 -10708.0,0.06941356924825268 -10709.0,0.06938959879057197 -10710.0,0.06936563661056448 -10711.0,0.06934168270537165 -10712.0,0.06931773707213597 -10713.0,0.06929379970800091 -10714.0,0.06926987061011093 -10715.0,0.06924594977561142 -10716.0,0.06922203720164882 -10717.0,0.06919813288537055 -10718.0,0.06917423682392501 -10719.0,0.06915034901446152 -10720.0,0.06912646945413047 -10721.0,0.0691025981400832 -10722.0,0.06907873506947204 -10723.0,0.06905488023945033 -10724.0,0.0690310336471723 -10725.0,0.06900719528979325 -10726.0,0.06898336516446944 -10727.0,0.06895954326835817 -10728.0,0.06893572959861755 -10729.0,0.06891192415240685 -10730.0,0.06888812692688623 -10731.0,0.06886433791921691 -10732.0,0.06884055712656095 -10733.0,0.06881678454608152 -10734.0,0.06879302017494272 -10735.0,0.06876926401030967 -10736.0,0.06874551604934837 -10737.0,0.06872177628922588 -10738.0,0.06869804472711023 -10739.0,0.06867432136017045 -10740.0,0.06865060618557645 -10741.0,0.0686268992004992 -10742.0,0.06860320040211065 -10743.0,0.06857950978758372 -10744.0,0.06855582735409228 -10745.0,0.06853215309881115 -10746.0,0.06850848701891621 -10747.0,0.06848482911158424 -10748.0,0.06846117937399307 -10749.0,0.0684375378033214 -10750.0,0.06841390439674899 -10751.0,0.06839027915145654 -10752.0,0.06836666206462577 -10753.0,0.06834305313343927 -10754.0,0.0683194523550807 -10755.0,0.06829585972673466 -10756.0,0.06827227524558674 -10757.0,0.06824869890882343 -10758.0,0.06822513071363229 -10759.0,0.06820157065720177 -10760.0,0.06817801873672137 -10761.0,0.06815447494938151 -10762.0,0.06813093929237356 -10763.0,0.06810741176288988 -10764.0,0.06808389235812386 -10765.0,0.0680603810752698 -10766.0,0.06803687791152291 -10767.0,0.06801338286407947 -10768.0,0.06798989593013671 -10769.0,0.06796641710689283 -10770.0,0.06794294639154691 -10771.0,0.0679194837812991 -10772.0,0.06789602927335048 -10773.0,0.06787258286490314 -10774.0,0.06784914455316 -10775.0,0.06782571433532512 -10776.0,0.06780229220860341 -10777.0,0.06777887817020083 -10778.0,0.06775547221732417 -10779.0,0.06773207434718134 -10780.0,0.0677086845569811 -10781.0,0.06768530284393326 -10782.0,0.06766192920524856 -10783.0,0.06763856363813864 -10784.0,0.06761520613981618 -10785.0,0.0675918567074948 -10786.0,0.06756851533838915 -10787.0,0.06754518202971466 -10788.0,0.0675218567786879 -10789.0,0.06749853958252633 -10790.0,0.06747523043844841 -10791.0,0.06745192934367346 -10792.0,0.06742863629542187 -10793.0,0.06740535129091495 -10794.0,0.06738207432737499 -10795.0,0.06735880540202517 -10796.0,0.06733554451208969 -10797.0,0.06731229165479372 -10798.0,0.06728904682736332 -10799.0,0.06726581002702563 -10800.0,0.06724258125100858 -10801.0,0.0672193604965412 -10802.0,0.0671961477608534 -10803.0,0.0671729430411761 -10804.0,0.0671497463347411 -10805.0,0.06712655763878124 -10806.0,0.06710337695053026 -10807.0,0.0670802042672229 -10808.0,0.06705703958609478 -10809.0,0.06703388290438254 -10810.0,0.06701073421932377 -10811.0,0.06698759352815703 -10812.0,0.06696446082812173 -10813.0,0.06694133611645835 -10814.0,0.06691821939040828 -10815.0,0.06689511064721389 -10816.0,0.06687200988411841 -10817.0,0.06684891709836613 -10818.0,0.06682583228720225 -10819.0,0.0668027554478729 -10820.0,0.06677968657762523 -10821.0,0.06675662567370722 -10822.0,0.06673357273336791 -10823.0,0.06671052775385726 -10824.0,0.06668749073242618 -10825.0,0.06666446166632649 -10826.0,0.06664144055281099 -10827.0,0.06661842738913344 -10828.0,0.06659542217254859 -10829.0,0.06657242490031198 -10830.0,0.06654943556968028 -10831.0,0.066526454177911 -10832.0,0.06650348072226267 -10833.0,0.06648051519999466 -10834.0,0.06645755760836738 -10835.0,0.06643460794464218 -10836.0,0.06641166620608129 -10837.0,0.06638873238994798 -10838.0,0.06636580649350635 -10839.0,0.06634288851402155 -10840.0,0.06631997844875961 -10841.0,0.06629707629498757 -10842.0,0.06627418204997332 -10843.0,0.06625129571098576 -10844.0,0.06622841727529472 -10845.0,0.06620554674017098 -10846.0,0.06618268410288622 -10847.0,0.06615982936071312 -10848.0,0.06613698251092526 -10849.0,0.06611414355079723 -10850.0,0.06609131247760441 -10851.0,0.0660684892886233 -10852.0,0.06604567398113123 -10853.0,0.06602286655240654 -10854.0,0.0660000669997284 -10855.0,0.06597727532037702 -10856.0,0.06595449151163352 -10857.0,0.06593171557077997 -10858.0,0.06590894749509939 -10859.0,0.06588618728187565 -10860.0,0.06586343492839364 -10861.0,0.0658406904319392 -10862.0,0.06581795378979909 -10863.0,0.06579522499926094 -10864.0,0.0657725040576134 -10865.0,0.06574979096214602 -10866.0,0.06572708571014932 -10867.0,0.06570438829891469 -10868.0,0.06568169872573451 -10869.0,0.06565901698790208 -10870.0,0.06563634308271166 -10871.0,0.06561367700745838 -10872.0,0.06559101875943833 -10873.0,0.06556836833594859 -10874.0,0.06554572573428712 -10875.0,0.06552309095175282 -10876.0,0.0655004639856455 -10877.0,0.06547784483326596 -10878.0,0.06545523349191588 -10879.0,0.06543262995889793 -10880.0,0.0654100342315156 -10881.0,0.06538744630707345 -10882.0,0.06536486618287687 -10883.0,0.06534229385623226 -10884.0,0.06531972932444685 -10885.0,0.06529717258482888 -10886.0,0.0652746236346875 -10887.0,0.06525208247133281 -10888.0,0.06522954909207575 -10889.0,0.06520702349422829 -10890.0,0.06518450567510328 -10891.0,0.06516199563201455 -10892.0,0.06513949336227676 -10893.0,0.06511699886320556 -10894.0,0.06509451213211753 -10895.0,0.06507203316633019 -10896.0,0.06504956196316197 -10897.0,0.06502709851993216 -10898.0,0.06500464283396107 -10899.0,0.0649821949025699 -10900.0,0.06495975472308081 -10901.0,0.06493732229281678 -10902.0,0.06491489760910182 -10903.0,0.06489248066926083 -10904.0,0.06487007147061967 -10905.0,0.06484767001050501 -10906.0,0.06482527628624456 -10907.0,0.06480289029516689 -10908.0,0.06478051203460158 -10909.0,0.06475814150187899 -10910.0,0.0647357786943305 -10911.0,0.06471342360928842 -10912.0,0.0646910762440859 -10913.0,0.06466873659605714 -10914.0,0.06464640466253711 -10915.0,0.06462408044086179 -10916.0,0.06460176392836807 -10917.0,0.06457945512239378 -10918.0,0.06455715402027759 -10919.0,0.06453486061935917 -10920.0,0.06451257491697908 -10921.0,0.06449029691047882 -10922.0,0.06446802659720073 -10923.0,0.06444576397448816 -10924.0,0.06442350903968533 -10925.0,0.06440126179013743 -10926.0,0.06437902222319046 -10927.0,0.06435679033619143 -10928.0,0.06433456612648825 -10929.0,0.06431234959142974 -10930.0,0.0642901407283656 -10931.0,0.06426793953464648 -10932.0,0.06424574600762395 -10933.0,0.06422356014465049 -10934.0,0.06420138194307949 -10935.0,0.06417921140026522 -10936.0,0.06415704851356292 -10937.0,0.06413489328032872 -10938.0,0.06411274569791969 -10939.0,0.06409060576369373 -10940.0,0.06406847347500973 -10941.0,0.06404634882922745 -10942.0,0.06402423182370766 -10943.0,0.06400212245581186 -10944.0,0.06398002072290261 -10945.0,0.06395792662234334 -10946.0,0.0639358401514984 -10947.0,0.06391376130773299 -10948.0,0.06389169008841328 -10949.0,0.06386962649090634 -10950.0,0.06384757051258015 -10951.0,0.06382552215080363 -10952.0,0.06380348140294649 -10953.0,0.06378144826637946 -10954.0,0.06375942273847417 -10955.0,0.06373740481660314 -10956.0,0.06371539449813976 -10957.0,0.06369339178045837 -10958.0,0.0636713966609342 -10959.0,0.06364940913694345 -10960.0,0.06362742920586308 -10961.0,0.06360545686507107 -10962.0,0.06358349211194632 -10963.0,0.06356153494386858 -10964.0,0.0635395853582185 -10965.0,0.06351764335237767 -10966.0,0.06349570892372855 -10967.0,0.06347378206965457 -10968.0,0.06345186278753995 -10969.0,0.06342995107476991 -10970.0,0.06340804692873055 -10971.0,0.06338615034680885 -10972.0,0.06336426132639275 -10973.0,0.063342379864871 -10974.0,0.0633205059596333 -10975.0,0.06329863960807029 -10976.0,0.06327678080757347 -10977.0,0.0632549295555352 -10978.0,0.06323308584934882 -10979.0,0.06321124968640852 -10980.0,0.06318942106410945 -10981.0,0.06316759997984754 -10982.0,0.06314578643101974 -10983.0,0.06312398041502384 -10984.0,0.0631021819292586 -10985.0,0.0630803909711235 -10986.0,0.06305860753801912 -10987.0,0.06303683162734683 -10988.0,0.06301506323650895 -10989.0,0.06299330236290866 -10990.0,0.06297154900395001 -10991.0,0.06294980315703802 -10992.0,0.06292806481957855 -10993.0,0.06290633398897841 -10994.0,0.06288461066264522 -10995.0,0.06286289483798757 -10996.0,0.06284118651241492 -10997.0,0.06281948568333766 -10998.0,0.06279779234816697 -10999.0,0.06277610650431503 -11000.0,0.06275442814919488 -11001.0,0.06273275728022046 -11002.0,0.06271109389480656 -11003.0,0.06268943799036891 -11004.0,0.06266778956432412 -11005.0,0.06264614861408972 -11006.0,0.06262451513708406 -11007.0,0.06260288913072644 -11008.0,0.06258127059243702 -11009.0,0.06255965951963689 -11010.0,0.06253805590974804 -11011.0,0.06251645976019322 -11012.0,0.06249487106839624 -11013.0,0.0624732898317817 -11014.0,0.062451716047775156 -11015.0,0.06243014971380295 -11016.0,0.06240859082729241 -11017.0,0.06238703938567171 -11018.0,0.06236549538636995 -11019.0,0.062343958826817036 -11020.0,0.06232242970444384 -11021.0,0.062300908016682095 -11022.0,0.06227939376096445 -11023.0,0.062257886934724345 -11024.0,0.06223638753539622 -11025.0,0.06221489556041533 -11026.0,0.06219341100721786 -11027.0,0.062171933873240874 -11028.0,0.06215046415592226 -11029.0,0.06212900185270086 -11030.0,0.06210754696101637 -11031.0,0.062086099478309426 -11032.0,0.062064659402021424 -11033.0,0.06204322672959475 -11034.0,0.06202180145847266 -11035.0,0.06200038358609928 -11036.0,0.06197897310991957 -11037.0,0.06195757002737945 -11038.0,0.06193617433592568 -11039.0,0.06191478603300593 -11040.0,0.061893405116068695 -11041.0,0.0618720315825634 -11042.0,0.061850665429940346 -11043.0,0.06182930665565073 -11044.0,0.06180795525714655 -11045.0,0.06178661123188078 -11046.0,0.06176527457730721 -11047.0,0.06174394529088056 -11048.0,0.061722623370056406 -11049.0,0.061701308812291154 -11050.0,0.06168000161504216 -11051.0,0.06165870177576763 -11052.0,0.061637409291926674 -11053.0,0.061616124160979203 -11054.0,0.06159484638038608 -11055.0,0.06157357594760902 -11056.0,0.06155231286011065 -11057.0,0.06153105711535437 -11058.0,0.06150980871080457 -11059.0,0.061488567643926455 -11060.0,0.06146733391218615 -11061.0,0.06144610751305059 -11062.0,0.06142488844398762 -11063.0,0.06140367670246597 -11064.0,0.061382472285955246 -11065.0,0.061361275191925926 -11066.0,0.061340085417849306 -11067.0,0.06131890296119763 -11068.0,0.061297727819443974 -11069.0,0.06127655999006234 -11070.0,0.061255399470527494 -11071.0,0.06123424625831517 -11072.0,0.061213100350901946 -11073.0,0.0611919617457653 -11074.0,0.06117083044038349 -11075.0,0.06114970643223573 -11076.0,0.06112858971880209 -11077.0,0.06110748029756352 -11078.0,0.06108637816600177 -11079.0,0.06106528332159954 -11080.0,0.06104419576184035 -11081.0,0.06102311548420863 -11082.0,0.06100204248618967 -11083.0,0.06098097676526957 -11084.0,0.06095991831893536 -11085.0,0.06093886714467493 -11086.0,0.060917823239977055 -11087.0,0.06089678660233129 -11088.0,0.06087575722922815 -11089.0,0.06085473511815898 -11090.0,0.06083372026661603 -11091.0,0.06081271267209232 -11092.0,0.06079171233208182 -11093.0,0.060770719244079355 -11094.0,0.060749733405580625 -11095.0,0.06072875481408211 -11096.0,0.06070778346708126 -11097.0,0.06068681936207633 -11098.0,0.06066586249656649 -11099.0,0.06064491286805169 -11100.0,0.060623970474032805 -11101.0,0.060603035312011576 -11102.0,0.06058210737949058 -11103.0,0.0605611866739733 -11104.0,0.060540273192963984 -11105.0,0.060519366933967846 -11106.0,0.06049846789449092 -11107.0,0.06047757607204012 -11108.0,0.060456691464123156 -11109.0,0.06043581406824868 -11110.0,0.06041494388192616 -11111.0,0.06039408090266597 -11112.0,0.060373225127979255 -11113.0,0.06035237655537809 -11114.0,0.060331535182375405 -11115.0,0.060310701006484994 -11116.0,0.060289874025221436 -11117.0,0.06026905423610027 -11118.0,0.06024824163663782 -11119.0,0.06022743622435131 -11120.0,0.06020663799675883 -11121.0,0.060185846951379254 -11122.0,0.060165063085732384 -11123.0,0.060144286397338854 -11124.0,0.06012351688372019 -11125.0,0.060102754542398676 -11126.0,0.06008199937089755 -11127.0,0.060061251366740884 -11128.0,0.06004051052745359 -11129.0,0.06001977685056142 -11130.0,0.059999050333590986 -11131.0,0.05997833097406979 -11132.0,0.05995761876952619 -11133.0,0.059936913717489305 -11134.0,0.059916215815489206 -11135.0,0.05989552506105679 -11136.0,0.059874841451723816 -11137.0,0.05985416498502284 -11138.0,0.05983349565848733 -11139.0,0.05981283346965158 -11140.0,0.05979217841605075 -11141.0,0.059771530495220875 -11142.0,0.05975088970469874 -11143.0,0.05973025604202208 -11144.0,0.05970962950472947 -11145.0,0.05968901009036031 -11146.0,0.05966839779645482 -11147.0,0.05964779262055412 -11148.0,0.059627194560200165 -11149.0,0.05960660361293579 -11150.0,0.059586019776304594 -11151.0,0.059565443047851094 -11152.0,0.05954487342512063 -11153.0,0.05952431090565944 -11154.0,0.059503755487014504 -11155.0,0.05948320716673373 -11156.0,0.059462665942365864 -11157.0,0.05944213181146048 -11158.0,0.059421604771568035 -11159.0,0.05940108482023975 -11160.0,0.05938057195502778 -11161.0,0.05936006617348507 -11162.0,0.059339567473165475 -11163.0,0.05931907585162358 -11164.0,0.059298591306414926 -11165.0,0.05927811383509585 -11166.0,0.059257643435223564 -11167.0,0.059237180104356045 -11168.0,0.05921672384005219 -11169.0,0.059196274639871725 -11170.0,0.05917583250137524 -11171.0,0.05915539742212406 -11172.0,0.05913496939968048 -11173.0,0.05911454843160758 -11174.0,0.059094134515469306 -11175.0,0.05907372764883038 -11176.0,0.05905332782925643 -11177.0,0.05903293505431392 -11178.0,0.05901254932157013 -11179.0,0.05899217062859322 -11180.0,0.058971798972952114 -11181.0,0.05895143435221664 -11182.0,0.05893107676395745 -11183.0,0.058910726205746056 -11184.0,0.058890382675154736 -11185.0,0.05887004616975668 -11186.0,0.058849716687125894 -11187.0,0.05882939422483724 -11188.0,0.058809078780466345 -11189.0,0.058788770351589754 -11190.0,0.058768468935784815 -11191.0,0.05874817453062975 -11192.0,0.05872788713370353 -11193.0,0.05870760674258604 -11194.0,0.05868733335485797 -11195.0,0.05866706696810087 -11196.0,0.05864680757989711 -11197.0,0.05862655518782987 -11198.0,0.058606309789483196 -11199.0,0.05858607138244196 -11200.0,0.05856583996429189 -11201.0,0.058545615532619485 -11202.0,0.058525398085012136 -11203.0,0.058505187619058055 -11204.0,0.0584849841323463 -11205.0,0.058464787622466693 -11206.0,0.05844459808700996 -11207.0,0.05842441552356764 -11208.0,0.05840423992973213 -11209.0,0.05838407130309657 -11210.0,0.05836390964125502 -11211.0,0.05834375494180234 -11212.0,0.05832360720233425 -11213.0,0.05830346642044722 -11214.0,0.058283332593738614 -11215.0,0.05826320571980663 -11216.0,0.05824308579625027 -11217.0,0.0582229728206694 -11218.0,0.058202866790664644 -11219.0,0.05818276770383751 -11220.0,0.058162675557790346 -11221.0,0.05814259035012631 -11222.0,0.058122512078449345 -11223.0,0.05810244074036428 -11224.0,0.05808237633347675 -11225.0,0.058062318855393244 -11226.0,0.058042268303721 -11227.0,0.058022224676068164 -11228.0,0.05800218797004367 -11229.0,0.05798215818325731 -11230.0,0.05796213531331963 -11231.0,0.057942119357842076 -11232.0,0.057922110314436885 -11233.0,0.05790210818071712 -11234.0,0.05788211295429671 -11235.0,0.05786212463279031 -11236.0,0.057842143213813486 -11237.0,0.057822168694982606 -11238.0,0.05780220107391487 -11239.0,0.05778224034822824 -11240.0,0.057762286515541585 -11241.0,0.05774233957347454 -11242.0,0.05772239951964762 -11243.0,0.05770246635168205 -11244.0,0.0576825400672 -11245.0,0.057662620663824396 -11246.0,0.05764270813917902 -11247.0,0.057622802490888414 -11248.0,0.057602903716577995 -11249.0,0.05758301181387399 -11250.0,0.05756312678040346 -11251.0,0.05754324861379422 -11252.0,0.05752337731167498 -11253.0,0.05750351287167522 -11254.0,0.057483655291425274 -11255.0,0.05746380456855629 -11256.0,0.05744396070070019 -11257.0,0.05742412368548975 -11258.0,0.05740429352055857 -11259.0,0.05738447020354108 -11260.0,0.05736465373207245 -11261.0,0.05734484410378875 -11262.0,0.057325041316326826 -11263.0,0.057305245367324384 -11264.0,0.05728545625441986 -11265.0,0.05726567397525257 -11266.0,0.05724589852746265 -11267.0,0.057226129908691054 -11268.0,0.05720636811657947 -11269.0,0.05718661314877049 -11270.0,0.0571668650029075 -11271.0,0.05714712367663468 -11272.0,0.057127389167597055 -11273.0,0.0571076614734404 -11274.0,0.057087940591811374 -11275.0,0.05706822652035741 -11276.0,0.05704851925672679 -11277.0,0.05702881879856854 -11278.0,0.05700912514353255 -11279.0,0.05698943828926952 -11280.0,0.05696975823343097 -11281.0,0.05695008497366917 -11282.0,0.05693041850763727 -11283.0,0.0569107588329892 -11284.0,0.05689110594737972 -11285.0,0.05687145984846435 -11286.0,0.056851820533899464 -11287.0,0.056832188001342245 -11288.0,0.0568125622484507 -11289.0,0.05679294327288357 -11290.0,0.056773331072300474 -11291.0,0.05675372564436182 -11292.0,0.056734126986728826 -11293.0,0.05671453509706354 -11294.0,0.05669494997302874 -11295.0,0.05667537161228809 -11296.0,0.05665580001250604 -11297.0,0.05663623517134785 -11298.0,0.05661667708647955 -11299.0,0.05659712575556801 -11300.0,0.0565775811762809 -11301.0,0.05655804334628673 -11302.0,0.05653851226325472 -11303.0,0.056518987924854984 -11304.0,0.05649947032875841 -11305.0,0.05647995947263672 -11306.0,0.056460455354162345 -11307.0,0.05644095797100863 -11308.0,0.05642146732084966 -11309.0,0.056401983401360364 -11310.0,0.05638250621021647 -11311.0,0.05636303574509443 -11312.0,0.0563435720036716 -11313.0,0.056324114983626085 -11314.0,0.05630466468263683 -11315.0,0.05628522109838353 -11316.0,0.056265784228546695 -11317.0,0.05624635407080767 -11318.0,0.05622693062284861 -11319.0,0.056207513882352365 -11320.0,0.05618810384700271 -11321.0,0.05616870051448415 -11322.0,0.05614930388248204 -11323.0,0.05612991394868246 -11324.0,0.056110530710772356 -11325.0,0.05609115416643944 -11326.0,0.056071784313372265 -11327.0,0.056052421149260095 -11328.0,0.05603306467179307 -11329.0,0.05601371487866211 -11330.0,0.05599437176755892 -11331.0,0.05597503533617603 -11332.0,0.055955705582206694 -11333.0,0.05593638250334505 -11334.0,0.055917066097285986 -11335.0,0.05589775636172522 -11336.0,0.0558784532943592 -11337.0,0.055859156892885224 -11338.0,0.05583986715500138 -11339.0,0.055820584078406565 -11340.0,0.0558013076608004 -11341.0,0.055782037899883376 -11342.0,0.05576277479335674 -11343.0,0.05574351833892258 -11344.0,0.055724268534283694 -11345.0,0.05570502537714374 -11346.0,0.05568578886520715 -11347.0,0.055666558996179144 -11348.0,0.05564733576776577 -11349.0,0.05562811917767378 -11350.0,0.055608909223610815 -11351.0,0.05558970590328525 -11352.0,0.0555705092144063 -11353.0,0.0555513191546839 -11354.0,0.05553213572182883 -11355.0,0.055512958913552644 -11356.0,0.055493788727567724 -11357.0,0.055474625161587146 -11358.0,0.055455468213324866 -11359.0,0.0554363178804956 -11360.0,0.055417174160814875 -11361.0,0.055398037051998944 -11362.0,0.0553789065517649 -11363.0,0.05535978265783063 -11364.0,0.05534066536791481 -11365.0,0.05532155467973683 -11366.0,0.05530245059101696 -11367.0,0.05528335309947622 -11368.0,0.05526426220283641 -11369.0,0.05524517789882016 -11370.0,0.0552261001851508 -11371.0,0.05520702905955251 -11372.0,0.05518796451975026 -11373.0,0.05516890656346981 -11374.0,0.05514985518843763 -11375.0,0.05513081039238106 -11376.0,0.05511177217302819 -11377.0,0.055092740528107934 -11378.0,0.0550737154553499 -11379.0,0.05505469695248455 -11380.0,0.05503568501724313 -11381.0,0.05501667964735767 -11382.0,0.05499768084056093 -11383.0,0.0549786885945865 -11384.0,0.054959702907168756 -11385.0,0.054940723776042845 -11386.0,0.054921751198944706 -11387.0,0.05490278517361101 -11388.0,0.05488382569777927 -11389.0,0.054864872769187764 -11390.0,0.05484592638557556 -11391.0,0.05482698654468245 -11392.0,0.05480805324424908 -11393.0,0.05478912648201684 -11394.0,0.05477020625572792 -11395.0,0.054751292563125234 -11396.0,0.05473238540195255 -11397.0,0.054713484769954364 -11398.0,0.054694590664876 -11399.0,0.05467570308446349 -11400.0,0.05465682202646369 -11401.0,0.054637947488624244 -11402.0,0.05461907946869358 -11403.0,0.054600217964420814 -11404.0,0.05458136297355595 -11405.0,0.05456251449384972 -11406.0,0.05454367252305363 -11407.0,0.05452483705892 -11408.0,0.05450600809920186 -11409.0,0.05448718564165305 -11410.0,0.05446836968402821 -11411.0,0.05444956022408275 -11412.0,0.05443075725957279 -11413.0,0.054411960788255304 -11414.0,0.054393170807888 -11415.0,0.0543743873162294 -11416.0,0.054355610311038714 -11417.0,0.05433683979007602 -11418.0,0.05431807575110213 -11419.0,0.054299318191878644 -11420.0,0.054280567110167884 -11421.0,0.054261822503733 -11422.0,0.054243084370337896 -11423.0,0.05422435270774726 -11424.0,0.05420562751372656 -11425.0,0.05418690878604196 -11426.0,0.054168196522460486 -11427.0,0.054149490720749906 -11428.0,0.05413079137867876 -11429.0,0.054112098494016325 -11430.0,0.054093412064532685 -11431.0,0.0540747320879987 -11432.0,0.05405605856218599 -11433.0,0.05403739148486691 -11434.0,0.054018730853814624 -11435.0,0.054000076666803065 -11436.0,0.05398142892160694 -11437.0,0.05396278761600167 -11438.0,0.0539441527477635 -11439.0,0.053925524314669425 -11440.0,0.05390690231449724 -11441.0,0.053888286745025424 -11442.0,0.0538696776040333 -11443.0,0.05385107488930093 -11444.0,0.053832478598609144 -11445.0,0.05381388872973958 -11446.0,0.053795305280474534 -11447.0,0.05377672824859717 -11448.0,0.05375815763189139 -11449.0,0.05373959342814186 -11450.0,0.053721035635133974 -11451.0,0.053702484250653944 -11452.0,0.05368393927248872 -11453.0,0.05366540069842605 -11454.0,0.05364686852625436 -11455.0,0.053628342753762936 -11456.0,0.053609823378741775 -11457.0,0.053591310398981684 -11458.0,0.053572803812274146 -11459.0,0.05355430361641149 -11460.0,0.05353580980918677 -11461.0,0.053517322388393816 -11462.0,0.05349884135182723 -11463.0,0.05348036669728232 -11464.0,0.05346189842255521 -11465.0,0.053443436525442777 -11466.0,0.05342498100374267 -11467.0,0.05340653185525323 -11468.0,0.05338808907777364 -11469.0,0.05336965266910381 -11470.0,0.05335122262704443 -11471.0,0.05333279894939688 -11472.0,0.053314381633963376 -11473.0,0.053295970678546876 -11474.0,0.0532775660809511 -11475.0,0.05325916783898047 -11476.0,0.05324077595044023 -11477.0,0.05322239041313637 -11478.0,0.05320401122487564 -11479.0,0.05318563838346551 -11480.0,0.05316727188671423 -11481.0,0.05314891173243084 -11482.0,0.05313055791842509 -11483.0,0.053112210442507524 -11484.0,0.05309386930248939 -11485.0,0.053075534496182734 -11486.0,0.05305720602140035 -11487.0,0.05303888387595582 -11488.0,0.05302056805766338 -11489.0,0.05300225856433812 -11490.0,0.05298395539379585 -11491.0,0.05296565854385316 -11492.0,0.05294736801232732 -11493.0,0.05292908379703643 -11494.0,0.052910805895799315 -11495.0,0.05289253430643557 -11496.0,0.052874269026765494 -11497.0,0.052856010054610186 -11498.0,0.052837757387791486 -11499.0,0.05281951102413199 -11500.0,0.05280127096145505 -11501.0,0.052783037197584724 -11502.0,0.052764809730345884 -11503.0,0.05274658855756411 -11504.0,0.05272837367706579 -11505.0,0.05271016508667796 -11506.0,0.0526919627842285 -11507.0,0.052673766767546 -11508.0,0.05265557703445985 -11509.0,0.05263739358280008 -11510.0,0.05261921641039756 -11511.0,0.052601045515083905 -11512.0,0.052582880894691465 -11513.0,0.0525647225470533 -11514.0,0.052546570470003266 -11515.0,0.05252842466137596 -11516.0,0.052510285119006725 -11517.0,0.05249215184073162 -11518.0,0.05247402482438749 -11519.0,0.05245590406781192 -11520.0,0.05243778956884323 -11521.0,0.05241968132532051 -11522.0,0.05240157933508355 -11523.0,0.05238348359597292 -11524.0,0.052365394105829945 -11525.0,0.052347310862496686 -11526.0,0.05232923386381592 -11527.0,0.052311163107631196 -11528.0,0.05229309859178682 -11529.0,0.05227504031412784 -11530.0,0.052256988272499985 -11531.0,0.05223894246474982 -11532.0,0.052220902888724594 -11533.0,0.052202869542272344 -11534.0,0.05218484242324178 -11535.0,0.05216682152948242 -11536.0,0.0521488068588445 -11537.0,0.052130798409179016 -11538.0,0.052112796178337695 -11539.0,0.052094800164172964 -11540.0,0.05207681036453805 -11541.0,0.052058826777286904 -11542.0,0.05204084940027424 -11543.0,0.052022878231355436 -11544.0,0.052004913268386695 -11545.0,0.051986954509224914 -11546.0,0.05196900195172778 -11547.0,0.05195105559375363 -11548.0,0.05193311543316163 -11549.0,0.05191518146781163 -11550.0,0.05189725369556427 -11551.0,0.051879332114280856 -11552.0,0.0518614167218235 -11553.0,0.05184350751605501 -11554.0,0.05182560449483899 -11555.0,0.05180770765603968 -11556.0,0.05178981699752215 -11557.0,0.05177193251715217 -11558.0,0.051754054212796254 -11559.0,0.05173618208232167 -11560.0,0.05171831612359636 -11561.0,0.051700456334489074 -11562.0,0.05168260271286926 -11563.0,0.05166475525660713 -11564.0,0.051646913963573585 -11565.0,0.0516290788316403 -11566.0,0.051611249858679674 -11567.0,0.051593427042564866 -11568.0,0.051575610381169694 -11569.0,0.05155779987236878 -11570.0,0.05153999551403748 -11571.0,0.05152219730405186 -11572.0,0.051504405240288695 -11573.0,0.05148661932062554 -11574.0,0.05146883954294066 -11575.0,0.051451065905113065 -11576.0,0.05143329840502251 -11577.0,0.051415537040549415 -11578.0,0.051397781809575 -11579.0,0.0513800327099812 -11580.0,0.05136228973965069 -11581.0,0.051344552896466826 -11582.0,0.051326822178313754 -11583.0,0.05130909758307633 -11584.0,0.05129137910864015 -11585.0,0.0512736667528915 -11586.0,0.05125596051371744 -11587.0,0.051238260389005745 -11588.0,0.05122056637664494 -11589.0,0.05120287847452421 -11590.0,0.051185196680533555 -11591.0,0.05116752099256365 -11592.0,0.05114985140850595 -11593.0,0.05113218792625254 -11594.0,0.051114530543696336 -11595.0,0.05109687925873093 -11596.0,0.051079234069250655 -11597.0,0.05106159497315059 -11598.0,0.05104396196832648 -11599.0,0.05102633505267485 -11600.0,0.05100871422409295 -11601.0,0.05099109948047875 -11602.0,0.050973490819730904 -11603.0,0.05095588823974885 -11604.0,0.05093829173843273 -11605.0,0.050920701313683425 -11606.0,0.05090311696340248 -11607.0,0.05088553868549225 -11608.0,0.05086796647785575 -11609.0,0.05085040033839678 -11610.0,0.05083284026501979 -11611.0,0.05081528625563 -11612.0,0.05079773830813334 -11613.0,0.05078019642043649 -11614.0,0.05076266059044683 -11615.0,0.05074513081607244 -11616.0,0.05072760709522215 -11617.0,0.050710089425805516 -11618.0,0.05069257780573283 -11619.0,0.050675072232915036 -11620.0,0.05065757270526387 -11621.0,0.05064007922069177 -11622.0,0.050622591777111904 -11623.0,0.05060511037243812 -11624.0,0.05058763500458501 -11625.0,0.050570165671467916 -11626.0,0.05055270237100288 -11627.0,0.05053524510110662 -11628.0,0.05051779385969663 -11629.0,0.05050034864469111 -11630.0,0.05048290945400899 -11631.0,0.050465476285569855 -11632.0,0.05044804913729408 -11633.0,0.05043062800710274 -11634.0,0.05041321289291761 -11635.0,0.05039580379266122 -11636.0,0.05037840070425675 -11637.0,0.050361003625628155 -11638.0,0.0503436125547001 -11639.0,0.05032622748939797 -11640.0,0.05030884842764781 -11641.0,0.05029147536737645 -11642.0,0.05027410830651142 -11643.0,0.05025674724298095 -11644.0,0.05023939217471398 -11645.0,0.05022204309964018 -11646.0,0.05020470001568993 -11647.0,0.050187362920794364 -11648.0,0.05017003181288524 -11649.0,0.0501527066898951 -11650.0,0.05013538754975719 -11651.0,0.050118074390405463 -11652.0,0.050100767209774605 -11653.0,0.050083466005799944 -11654.0,0.05006617077641761 -11655.0,0.0500488815195644 -11656.0,0.050031598233177856 -11657.0,0.05001432091519616 -11658.0,0.04999704956355828 -11659.0,0.04997978417620386 -11660.0,0.04996252475107331 -11661.0,0.04994527128610764 -11662.0,0.04992802377924866 -11663.0,0.04991078222843889 -11664.0,0.04989354663162154 -11665.0,0.049876316986740485 -11666.0,0.04985909329174038 -11667.0,0.04984187554456657 -11668.0,0.049824663743165125 -11669.0,0.049807457885482756 -11670.0,0.04979025796946695 -11671.0,0.04977306399306587 -11672.0,0.04975587595422842 -11673.0,0.049738693850904216 -11674.0,0.0497215176810435 -11675.0,0.0497043474425973 -11676.0,0.049687183133517346 -11677.0,0.049670024751756074 -11678.0,0.049652872295266576 -11679.0,0.0496357257620027 -11680.0,0.04961858514991901 -11681.0,0.04960145045697075 -11682.0,0.04958432168111385 -11683.0,0.049567198820305 -11684.0,0.04955008187250155 -11685.0,0.04953297083566161 -11686.0,0.049515865707743904 -11687.0,0.04949876648670794 -11688.0,0.049481673170513905 -11689.0,0.049464585757122696 -11690.0,0.04944750424449593 -11691.0,0.04943042863059585 -11692.0,0.0494133589133855 -11693.0,0.049396295090828574 -11694.0,0.049379237160889516 -11695.0,0.04936218512153338 -11696.0,0.049345138970726024 -11697.0,0.04932809870643395 -11698.0,0.04931106432662441 -11699.0,0.049294035829265274 -11700.0,0.049277013212325194 -11701.0,0.0492599964737735 -11702.0,0.04924298561158023 -11703.0,0.049225980623716074 -11704.0,0.04920898150815249 -11705.0,0.0491919882628616 -11706.0,0.04917500088581626 -11707.0,0.04915801937498994 -11708.0,0.04914104372835691 -11709.0,0.0491240739438921 -11710.0,0.049107110019571125 -11711.0,0.049090151953370346 -11712.0,0.04907319974326674 -11713.0,0.04905625338723805 -11714.0,0.04903931288326271 -11715.0,0.04902237822931985 -11716.0,0.049005449423389254 -11717.0,0.04898852646345146 -11718.0,0.04897160934748769 -11719.0,0.04895469807347986 -11720.0,0.048937792639410546 -11721.0,0.048920893043263074 -11722.0,0.048903999283021436 -11723.0,0.04888711135667037 -11724.0,0.04887022926219521 -11725.0,0.04885335299758207 -11726.0,0.04883648256081774 -11727.0,0.0488196179498897 -11728.0,0.04880275916278613 -11729.0,0.048785906197495885 -11730.0,0.048769059052008526 -11731.0,0.048752217724314324 -11732.0,0.04873538221240425 -11733.0,0.0487185525142699 -11734.0,0.04870172862790365 -11735.0,0.048684910551298526 -11736.0,0.04866809828244827 -11737.0,0.04865129181934726 -11738.0,0.04863449115999064 -11739.0,0.048617696302374204 -11740.0,0.048600907244494465 -11741.0,0.048584123984348575 -11742.0,0.04856734651993443 -11743.0,0.04855057484925061 -11744.0,0.048533808970296397 -11745.0,0.04851704888107169 -11746.0,0.04850029457957716 -11747.0,0.04848354606381415 -11748.0,0.048466803331784665 -11749.0,0.048450066381491456 -11750.0,0.048433335210937886 -11751.0,0.04841660981812806 -11752.0,0.048399890201066754 -11753.0,0.04838317635775948 -11754.0,0.04836646828621235 -11755.0,0.04834976598443222 -11756.0,0.04833306945042665 -11757.0,0.04831637868220386 -11758.0,0.048299693677772745 -11759.0,0.048283014435142914 -11760.0,0.04826634095232466 -11761.0,0.048249673227328975 -11762.0,0.04823301125816748 -11763.0,0.04821635504285255 -11764.0,0.04819970457939721 -11765.0,0.04818305986581519 -11766.0,0.04816642090012092 -11767.0,0.04814978768032944 -11768.0,0.04813316020445655 -11769.0,0.04811653847051872 -11770.0,0.048099922476533115 -11771.0,0.04808331222051753 -11772.0,0.048066707700490506 -11773.0,0.048050108914471236 -11774.0,0.04803351586047963 -11775.0,0.04801692853653622 -11776.0,0.048000346940662277 -11777.0,0.047983771070879734 -11778.0,0.047967200925211236 -11779.0,0.04795063650168005 -11780.0,0.047934077798310167 -11781.0,0.047917524813126264 -11782.0,0.04790097754415371 -11783.0,0.047884435989418495 -11784.0,0.047867900146947355 -11785.0,0.04785137001476768 -11786.0,0.047834845590907546 -11787.0,0.04781832687339573 -11788.0,0.04780181386026164 -11789.0,0.047785306549535396 -11790.0,0.0477688049392478 -11791.0,0.04775230902743037 -11792.0,0.0477358188121152 -11793.0,0.04771933429133516 -11794.0,0.04770285546312376 -11795.0,0.047686382325515225 -11796.0,0.04766991487654438 -11797.0,0.047653453114246805 -11798.0,0.047636997036658725 -11799.0,0.04762054664181708 -11800.0,0.04760410192775941 -11801.0,0.047587662892524 -11802.0,0.0475712295341498 -11803.0,0.047554801850676426 -11804.0,0.047538379840144196 -11805.0,0.04752196350059404 -11806.0,0.04750555283006763 -11807.0,0.0474891478266073 -11808.0,0.04747274848825606 -11809.0,0.047456354813057565 -11810.0,0.04743996679905617 -11811.0,0.047423584444296916 -11812.0,0.047407207746825525 -11813.0,0.04739083670468834 -11814.0,0.04737447131593243 -11815.0,0.04735811157860552 -11816.0,0.047341757490756045 -11817.0,0.04732540905043303 -11818.0,0.047309066255686254 -11819.0,0.04729272910456613 -11820.0,0.04727639759512379 -11821.0,0.04726007172541095 -11822.0,0.04724375149348008 -11823.0,0.04722743689738429 -11824.0,0.04721112793517737 -11825.0,0.0471948246049138 -11826.0,0.04717852690464868 -11827.0,0.047162234832437824 -11828.0,0.047145948386337705 -11829.0,0.047129667564405495 -11830.0,0.04711339236469896 -11831.0,0.04709712278527662 -11832.0,0.04708085882419763 -11833.0,0.04706460047952184 -11834.0,0.047048347749309695 -11835.0,0.047032100631622394 -11836.0,0.04701585912452177 -11837.0,0.046999623226070354 -11838.0,0.04698339293433128 -11839.0,0.04696716824736841 -11840.0,0.046950949163246256 -11841.0,0.04693473568003 -11842.0,0.04691852779578552 -11843.0,0.04690232550857929 -11844.0,0.046886128816478516 -11845.0,0.04686993771755104 -11846.0,0.04685375220986541 -11847.0,0.04683757229149078 -11848.0,0.046821397960497 -11849.0,0.04680522921495462 -11850.0,0.046789066052934834 -11851.0,0.04677290847250944 -11852.0,0.046756756471751 -11853.0,0.04674061004873269 -11854.0,0.04672446920152838 -11855.0,0.04670833392821254 -11856.0,0.046692204226860365 -11857.0,0.04667608009554771 -11858.0,0.0466599615323511 -11859.0,0.04664384853534767 -11860.0,0.04662774110261527 -11861.0,0.04661163923223241 -11862.0,0.04659554292227825 -11863.0,0.04657945217083263 -11864.0,0.04656336697597602 -11865.0,0.04654728733578957 -11866.0,0.046531213248355116 -11867.0,0.04651514471175514 -11868.0,0.04649908172407276 -11869.0,0.04648302428339178 -11870.0,0.04646697238779668 -11871.0,0.0464509260353726 -11872.0,0.04643488522420529 -11873.0,0.04641884995238121 -11874.0,0.04640282021798747 -11875.0,0.04638679601911187 -11876.0,0.0463707773538428 -11877.0,0.04635476422026935 -11878.0,0.04633875661648129 -11879.0,0.04632275454056902 -11880.0,0.04630675799062364 -11881.0,0.04629076696473683 -11882.0,0.04627478146100099 -11883.0,0.04625880147750918 -11884.0,0.04624282701235511 -11885.0,0.04622685806363312 -11886.0,0.04621089462943824 -11887.0,0.04619493670786615 -11888.0,0.046178984297013205 -11889.0,0.04616303739497636 -11890.0,0.04614709599985329 -11891.0,0.046131160109742296 -11892.0,0.04611522972274237 -11893.0,0.046099304836953084 -11894.0,0.04608338545047474 -11895.0,0.04606747156140827 -11896.0,0.04605156316785529 -11897.0,0.04603566026791799 -11898.0,0.04601976285969931 -11899.0,0.04600387094130279 -11900.0,0.045987984510832636 -11901.0,0.04597210356639375 -11902.0,0.045956228106091596 -11903.0,0.04594035812803238 -11904.0,0.045924493630322916 -11905.0,0.04590863461107071 -11906.0,0.04589278106838386 -11907.0,0.04587693300037118 -11908.0,0.045861090405142094 -11909.0,0.04584525328080673 -11910.0,0.045829421625475784 -11911.0,0.045813595437260685 -11912.0,0.04579777471427348 -11913.0,0.04578195945462689 -11914.0,0.04576614965643423 -11915.0,0.04575034531780953 -11916.0,0.045734546436867446 -11917.0,0.04571875301172328 -11918.0,0.04570296504049303 -11919.0,0.04568718252129325 -11920.0,0.04567140545224122 -11921.0,0.04565563383145486 -11922.0,0.045639867657052746 -11923.0,0.045624106927154046 -11924.0,0.04560835163987864 -11925.0,0.04559260179334704 -11926.0,0.045576857385680423 -11927.0,0.04556111841500056 -11928.0,0.04554538487942992 -11929.0,0.04552965677709161 -11930.0,0.045513934106109405 -11931.0,0.04549821686460766 -11932.0,0.04548250505071144 -11933.0,0.04546679866254645 -11934.0,0.045451097698239046 -11935.0,0.045435402155916176 -11936.0,0.0454197120337055 -11937.0,0.0454040273297353 -11938.0,0.045388348042134506 -11939.0,0.04537267416903271 -11940.0,0.0453570057085601 -11941.0,0.04534134265884755 -11942.0,0.045325685018026585 -11943.0,0.04531003278422938 -11944.0,0.0452943859555887 -11945.0,0.045278744530237995 -11946.0,0.04526310850631138 -11947.0,0.0452474778819436 -11948.0,0.045231852655269994 -11949.0,0.04521623282442661 -11950.0,0.04520061838755012 -11951.0,0.04518500934277785 -11952.0,0.04516940568824771 -11953.0,0.04515380742209833 -11954.0,0.04513821454246894 -11955.0,0.04512262704749943 -11956.0,0.04510704493533035 -11957.0,0.04509146820410281 -11958.0,0.045075896851958654 -11959.0,0.045060330877040325 -11960.0,0.045044770277490945 -11961.0,0.0450292150514542 -11962.0,0.04501366519707449 -11963.0,0.04499812071249683 -11964.0,0.04498258159586689 -11965.0,0.04496704784533093 -11966.0,0.044951519459035916 -11967.0,0.04493599643512942 -11968.0,0.04492047877175966 -11969.0,0.04490496646707548 -11970.0,0.04488945951922638 -11971.0,0.0448739579263625 -11972.0,0.04485846168663462 -11973.0,0.04484297079819413 -11974.0,0.04482748525919309 -11975.0,0.04481200506778419 -11976.0,0.04479653022212075 -11977.0,0.044781060720356765 -11978.0,0.04476559656064679 -11979.0,0.044750137741146084 -11980.0,0.04473468426001052 -11981.0,0.04471923611539663 -11982.0,0.04470379330546154 -11983.0,0.04468835582836302 -11984.0,0.04467292368225953 -11985.0,0.04465749686531013 -11986.0,0.04464207537567447 -11987.0,0.0446266592115129 -11988.0,0.04461124837098638 -11989.0,0.04459584285225655 -11990.0,0.044580442653485576 -11991.0,0.04456504777283637 -11992.0,0.04454965820847242 -11993.0,0.044534273958557864 -11994.0,0.044518895021257505 -11995.0,0.0445035213947367 -11996.0,0.0444881530771615 -11997.0,0.04447279006669859 -11998.0,0.04445743236151529 -11999.0,0.044442079959779494 -12000.0,0.0444267328596598 -12001.0,0.0444113910593254 -12002.0,0.04439605455694616 -12003.0,0.0443807233506925 -12004.0,0.04436539743873554 -12005.0,0.04435007681924701 -12006.0,0.044334761490399305 -12007.0,0.04431945145036536 -12008.0,0.04430414669731882 -12009.0,0.04428884722943395 -12010.0,0.04427355304488565 -12011.0,0.04425826414184939 -12012.0,0.04424298051850135 -12013.0,0.04422770217301829 -12014.0,0.04421242910357762 -12015.0,0.044197161308357394 -12016.0,0.04418189878553624 -12017.0,0.04416664153329346 -12018.0,0.04415138954980899 -12019.0,0.044136142833263385 -12020.0,0.04412090138183779 -12021.0,0.04410566519371403 -12022.0,0.04409043426707454 -12023.0,0.044075208600102396 -12024.0,0.04405998819098126 -12025.0,0.04404477303789545 -12026.0,0.04402956313902993 -12027.0,0.044014358492570266 -12028.0,0.043999159096702635 -12029.0,0.04398396494961387 -12030.0,0.04396877604949142 -12031.0,0.04395359239452336 -12032.0,0.04393841398289842 -12033.0,0.04392324081280587 -12034.0,0.04390807288243569 -12035.0,0.043892910189978464 -12036.0,0.0438777527336254 -12037.0,0.043862600511568296 -12038.0,0.04384745352199961 -12039.0,0.04383231176311243 -12040.0,0.04381717523310046 -12041.0,0.043802043930158 -12042.0,0.04378691785248 -12043.0,0.04377179699826204 -12044.0,0.043756681365700316 -12045.0,0.043741570952991624 -12046.0,0.04372646575833341 -12047.0,0.04371136577992373 -12048.0,0.043696271015961304 -12049.0,0.043681181464645384 -12050.0,0.043666097124175914 -12051.0,0.04365101799275345 -12052.0,0.04363594406857916 -12053.0,0.04362087534985485 -12054.0,0.0436058118347829 -12055.0,0.043590753521566356 -12056.0,0.04357570040840887 -12057.0,0.04356065249351474 -12058.0,0.04354560977508882 -12059.0,0.043530572251336636 -12060.0,0.04351553992046433 -12061.0,0.043500512780678666 -12062.0,0.04348549083018698 -12063.0,0.04347047406719729 -12064.0,0.04345546248991819 -12065.0,0.043440456096558944 -12066.0,0.04342545488532935 -12067.0,0.04341045885443989 -12068.0,0.04339546800210166 -12069.0,0.043380482326526346 -12070.0,0.04336550182592629 -12071.0,0.0433505264985144 -12072.0,0.043335556342504224 -12073.0,0.04332059135610995 -12074.0,0.04330563153754639 -12075.0,0.04329067688502889 -12076.0,0.043275727396773496 -12077.0,0.04326078307099684 -12078.0,0.0432458439059162 -12079.0,0.0432309098997494 -12080.0,0.04321598105071493 -12081.0,0.043201057357031905 -12082.0,0.04318613881692005 -12083.0,0.043171225428599656 -12084.0,0.04315631719029167 -12085.0,0.043141414100217663 -12086.0,0.04312651615659982 -12087.0,0.04311162335766089 -12088.0,0.04309673570162428 -12089.0,0.043081853186714 -12090.0,0.04306697581115469 -12091.0,0.043052103573171595 -12092.0,0.04303723647099054 -12093.0,0.04302237450283798 -12094.0,0.04300751766694102 -12095.0,0.04299266596152735 -12096.0,0.04297781938482524 -12097.0,0.042962977935063616 -12098.0,0.042948141610472 -12099.0,0.04293331040928055 -12100.0,0.04291848432971997 -12101.0,0.04290366337002164 -12102.0,0.042888847528417526 -12103.0,0.042874036803140225 -12104.0,0.04285923119242289 -12105.0,0.04284443069449933 -12106.0,0.042829635307603954 -12107.0,0.04281484502997179 -12108.0,0.04280005985983849 -12109.0,0.04278527979544023 -12110.0,0.04277050483501389 -12111.0,0.042755734976796925 -12112.0,0.04274097021902742 -12113.0,0.042726210559943995 -12114.0,0.04271145599778597 -12115.0,0.042696706530793216 -12116.0,0.04268196215720625 -12117.0,0.04266722287526615 -12118.0,0.04265248868321464 -12119.0,0.04263775957929403 -12120.0,0.04262303556174727 -12121.0,0.04260831662881786 -12122.0,0.042593602778749955 -12123.0,0.04257889400978829 -12124.0,0.042564190320178226 -12125.0,0.042549491708165736 -12126.0,0.04253479817199735 -12127.0,0.04252010970992025 -12128.0,0.042505426320182206 -12129.0,0.04249074800103162 -12130.0,0.04247607475071744 -12131.0,0.04246140656748927 -12132.0,0.042446743449597306 -12133.0,0.04243208539529236 -12134.0,0.0424174324028258 -12135.0,0.042402784470449637 -12136.0,0.0423881415964165 -12137.0,0.042373503778979596 -12138.0,0.04235887101639272 -12139.0,0.042344243306910306 -12140.0,0.04232962064878737 -12141.0,0.04231500304027956 -12142.0,0.04230039047964306 -12143.0,0.04228578296513472 -12144.0,0.04227118049501197 -12145.0,0.042256583067532834 -12146.0,0.04224199068095597 -12147.0,0.04222740333354058 -12148.0,0.04221282102354651 -12149.0,0.042198243749234206 -12150.0,0.04218367150886471 -12151.0,0.04216910430069964 -12152.0,0.04215454212300124 -12153.0,0.04213998497403235 -12154.0,0.04212543285205644 -12155.0,0.04211088575533749 -12156.0,0.042096343682140165 -12157.0,0.04208180663072971 -12158.0,0.04206727459937197 -12159.0,0.042052747586333344 -12160.0,0.042038225589880886 -12161.0,0.04202370860828222 -12162.0,0.04200919663980559 -12163.0,0.041994689682719834 -12164.0,0.04198018773529434 -12165.0,0.041965690795799156 -12166.0,0.04195119886250489 -12167.0,0.04193671193368279 -12168.0,0.04192223000760463 -12169.0,0.04190775308254285 -12170.0,0.04189328115677044 -12171.0,0.04187881422856103 -12172.0,0.041864352296188796 -12173.0,0.04184989535792854 -12174.0,0.04183544341205566 -12175.0,0.04182099645684616 -12176.0,0.04180655449057659 -12177.0,0.041792117511524146 -12178.0,0.041777685517966595 -12179.0,0.041763258508182334 -12180.0,0.04174883648045029 -12181.0,0.04173441943305003 -12182.0,0.0417200073642617 -12183.0,0.04170560027236606 -12184.0,0.04169119815564447 -12185.0,0.04167680101237881 -12186.0,0.041662408840851636 -12187.0,0.041648021639346056 -12188.0,0.04163363940614581 -12189.0,0.041619262139535165 -12190.0,0.04160488983779903 -12191.0,0.0415905224992229 -12192.0,0.041576160122092864 -12193.0,0.041561802704695575 -12194.0,0.04154745024531831 -12195.0,0.04153310274224892 -12196.0,0.04151876019377587 -12197.0,0.04150442259818817 -12198.0,0.04149008995377546 -12199.0,0.04147576225882797 -12200.0,0.0414614395116365 -12201.0,0.041447121710492474 -12202.0,0.041432808853687844 -12203.0,0.04141850093951521 -12204.0,0.04140419796626774 -12205.0,0.041389899932239224 -12206.0,0.04137560683572396 -12207.0,0.041361318675016905 -12208.0,0.04134703544841359 -12209.0,0.04133275715421014 -12210.0,0.04131848379070324 -12211.0,0.04130421535619019 -12212.0,0.04128995184896886 -12213.0,0.04127569326733775 -12214.0,0.04126143960959588 -12215.0,0.0412471908740429 -12216.0,0.04123294705897904 -12217.0,0.04121870816270515 -12218.0,0.04120447418352258 -12219.0,0.04119024511973334 -12220.0,0.041176020969640015 -12221.0,0.041161801731545766 -12222.0,0.041147587403754356 -12223.0,0.041133377984570084 -12224.0,0.04111917347229789 -12225.0,0.041104973865243276 -12226.0,0.04109077916171235 -12227.0,0.04107658936001176 -12228.0,0.041062404458448776 -12229.0,0.041048224455331246 -12230.0,0.04103404934896761 -12231.0,0.04101987913766685 -12232.0,0.04100571381973859 -12233.0,0.040991553393492995 -12234.0,0.04097739785724086 -12235.0,0.04096324720929349 -12236.0,0.040949101447962835 -12237.0,0.04093496057156141 -12238.0,0.04092082457840231 -12239.0,0.04090669346679923 -12240.0,0.0408925672350664 -12241.0,0.040878445881518684 -12242.0,0.0408643294044715 -12243.0,0.04085021780224088 -12244.0,0.04083611107314337 -12245.0,0.04082200921549616 -12246.0,0.04080791222761701 -12247.0,0.04079382010782426 -12248.0,0.040779732854436784 -12249.0,0.04076565046577411 -12250.0,0.04075157294015629 -12251.0,0.04073750027590401 -12252.0,0.040723432471338465 -12253.0,0.040709369524781484 -12254.0,0.040695311434555466 -12255.0,0.0406812581989834 -12256.0,0.04066720981638879 -12257.0,0.0406531662850958 -12258.0,0.04063912760342913 -12259.0,0.040625093769714064 -12260.0,0.0406110647822765 -12261.0,0.04059704063944283 -12262.0,0.040583021339540115 -12263.0,0.04056900688089593 -12264.0,0.040554997261838484 -12265.0,0.040540992480696494 -12266.0,0.04052699253579931 -12267.0,0.04051299742547684 -12268.0,0.04049900714805959 -12269.0,0.040485021701878586 -12270.0,0.040471041085265475 -12271.0,0.04045706529655248 -12272.0,0.04044309433407241 -12273.0,0.040429128196158584 -12274.0,0.04041516688114497 -12275.0,0.04040121038736609 -12276.0,0.04038725871315703 -12277.0,0.04037331185685348 -12278.0,0.04035936981679163 -12279.0,0.040345432591308336 -12280.0,0.04033150017874097 -12281.0,0.04031757257742753 -12282.0,0.04030364978570651 -12283.0,0.04028973180191704 -12284.0,0.040275818624398815 -12285.0,0.0402619102514921 -12286.0,0.0402480066815377 -12287.0,0.04023410791287703 -12288.0,0.04022021394385208 -12289.0,0.04020632477280541 -12290.0,0.040192440398080106 -12291.0,0.0401785608180199 -12292.0,0.04016468603096903 -12293.0,0.04015081603527237 -12294.0,0.04013695082927529 -12295.0,0.0401230904113238 -12296.0,0.04010923477976444 -12297.0,0.040095383932944345 -12298.0,0.04008153786921122 -12299.0,0.04006769658691329 -12300.0,0.04005386008439942 -12301.0,0.04004002836001902 -12302.0,0.04002620141212207 -12303.0,0.040012379239059086 -12304.0,0.039998561839181206 -12305.0,0.0399847492108401 -12306.0,0.039970941352388066 -12307.0,0.039957138262177866 -12308.0,0.03994333993856292 -12309.0,0.03992954637989719 -12310.0,0.03991575758453523 -12311.0,0.03990197355083208 -12312.0,0.03988819427714344 -12313.0,0.03987441976182555 -12314.0,0.03986065000323519 -12315.0,0.039846884999729756 -12316.0,0.03983312474966715 -12317.0,0.03981936925140589 -12318.0,0.039805618503305044 -12319.0,0.03979187250372427 -12320.0,0.03977813125102373 -12321.0,0.03976439474356421 -12322.0,0.03975066297970706 -12323.0,0.039736935957814176 -12324.0,0.039723213676247995 -12325.0,0.03970949613337158 -12326.0,0.039695783327548514 -12327.0,0.039682075257142985 -12328.0,0.039668371920519675 -12329.0,0.03965467331604391 -12330.0,0.03964097944208153 -12331.0,0.03962729029699898 -12332.0,0.03961360587916321 -12333.0,0.03959992618694178 -12334.0,0.039586251218702816 -12335.0,0.039572580972814984 -12336.0,0.03955891544764754 -12337.0,0.03954525464157026 -12338.0,0.03953159855295352 -12339.0,0.03951794718016824 -12340.0,0.03950430052158595 -12341.0,0.039490658575578645 -12342.0,0.039477021340518975 -12343.0,0.03946338881478011 -12344.0,0.03944976099673581 -12345.0,0.03943613788476034 -12346.0,0.03942251947722857 -12347.0,0.039408905772515934 -12348.0,0.03939529676899843 -12349.0,0.039381692465052576 -12350.0,0.03936809285905548 -12351.0,0.03935449794938482 -12352.0,0.03934090773441882 -12353.0,0.039327322212536285 -12354.0,0.03931374138211652 -12355.0,0.03930016524153945 -12356.0,0.039286593789185545 -12357.0,0.039273027023435846 -12358.0,0.0392594649426719 -12359.0,0.03924590754527587 -12360.0,0.03923235482963045 -12361.0,0.03921880679411893 -12362.0,0.03920526343712508 -12363.0,0.03919172475703331 -12364.0,0.03917819075222853 -12365.0,0.03916466142109627 -12366.0,0.03915113676202254 -12367.0,0.03913761677339396 -12368.0,0.03912410145359769 -12369.0,0.03911059080102148 -12370.0,0.039097084814053565 -12371.0,0.0390835834910828 -12372.0,0.03907008683049858 -12373.0,0.039056594830690836 -12374.0,0.0390431074900501 -12375.0,0.039029624806967395 -12376.0,0.03901614677983435 -12377.0,0.039002673407043144 -12378.0,0.0389892046869865 -12379.0,0.03897574061805768 -12380.0,0.038962281198650535 -12381.0,0.03894882642715945 -12382.0,0.03893537630197939 -12383.0,0.0389219308215058 -12384.0,0.03890848998413478 -12385.0,0.038895053788262905 -12386.0,0.03888162223228738 -12387.0,0.03886819531460587 -12388.0,0.03885477303361665 -12389.0,0.03884135538771856 -12390.0,0.03882794237531096 -12391.0,0.0388145339947938 -12392.0,0.038801130244567515 -12393.0,0.03878773112303315 -12394.0,0.0387743366285923 -12395.0,0.038760946759647114 -12396.0,0.03874756151460024 -12397.0,0.03873418089185493 -12398.0,0.038720804889814976 -12399.0,0.038707433506884735 -12400.0,0.03869406674146907 -12401.0,0.03868070459197344 -12402.0,0.03866734705680382 -12403.0,0.0386539941343668 -12404.0,0.03864064582306941 -12405.0,0.03862730212131934 -12406.0,0.038613963027524754 -12407.0,0.03860062854009444 -12408.0,0.03858729865743764 -12409.0,0.03857397337796421 -12410.0,0.038560652700084554 -12411.0,0.038547336622209605 -12412.0,0.03853402514275087 -12413.0,0.03852071826012036 -12414.0,0.03850741597273066 -12415.0,0.038494118278994925 -12416.0,0.038480825177326844 -12417.0,0.03846753666614061 -12418.0,0.038454252743851024 -12419.0,0.038440973408873404 -12420.0,0.038427698659623644 -12421.0,0.03841442849451813 -12422.0,0.03840116291197384 -12423.0,0.03838790191040829 -12424.0,0.03837464548823956 -12425.0,0.038361393643886216 -12426.0,0.038348146375767424 -12427.0,0.03833490368230289 -12428.0,0.038321665561912854 -12429.0,0.03830843201301812 -12430.0,0.038295203034039986 -12431.0,0.03828197862340035 -12432.0,0.03826875877952164 -12433.0,0.03825554350082684 -12434.0,0.03824233278573943 -12435.0,0.038229126632683484 -12436.0,0.0382159250400836 -12437.0,0.03820272800636495 -12438.0,0.03818953552995318 -12439.0,0.038176347609274554 -12440.0,0.038163164242755836 -12441.0,0.03814998542882437 -12442.0,0.03813681116590798 -12443.0,0.0381236414524351 -12444.0,0.03811047628683467 -12445.0,0.038097315667536207 -12446.0,0.03808415959296971 -12447.0,0.038071008061565756 -12448.0,0.03805786107175548 -12449.0,0.03804471862197054 -12450.0,0.03803158071064315 -12451.0,0.038018447336206025 -12452.0,0.038005318497092454 -12453.0,0.03799219419173628 -12454.0,0.037979074418571866 -12455.0,0.037965959176034104 -12456.0,0.03795284846255845 -12457.0,0.03793974227658088 -12458.0,0.03792664061653796 -12459.0,0.03791354348086671 -12460.0,0.037900450868004754 -12461.0,0.037887362776390245 -12462.0,0.03787427920446189 -12463.0,0.037861200150658865 -12464.0,0.037848125613420956 -12465.0,0.03783505559118847 -12466.0,0.03782199008240226 -12467.0,0.0378089290855037 -12468.0,0.03779587259893469 -12469.0,0.0377828206211377 -12470.0,0.03776977315055572 -12471.0,0.0377567301856323 -12472.0,0.037743691724811484 -12473.0,0.03773065776653789 -12474.0,0.03771762830925665 -12475.0,0.037704603351413485 -12476.0,0.03769158289145456 -12477.0,0.03767856692782665 -12478.0,0.037665555458977054 -12479.0,0.03765254848335361 -12480.0,0.03763954599940464 -12481.0,0.03762654800557907 -12482.0,0.03761355450032632 -12483.0,0.03760056548209639 -12484.0,0.037587580949339755 -12485.0,0.03757460090050746 -12486.0,0.03756162533405108 -12487.0,0.037548654248422735 -12488.0,0.03753568764207507 -12489.0,0.037522725513461246 -12490.0,0.037509767861034986 -12491.0,0.03749681468325053 -12492.0,0.03748386597856269 -12493.0,0.037470921745426725 -12494.0,0.037457981982298515 -12495.0,0.037445046687634445 -12496.0,0.03743211585989143 -12497.0,0.03741918949752689 -12498.0,0.03740626759899882 -12499.0,0.037393350162765744 -12500.0,0.0373804371872867 -12501.0,0.03736752867102125 -12502.0,0.03735462461242951 -12503.0,0.03734172500997212 -12504.0,0.03732882986211026 -12505.0,0.037315939167305634 -12506.0,0.037303052924020454 -12507.0,0.037290171130717496 -12508.0,0.03727729378586006 -12509.0,0.03726442088791199 -12510.0,0.037251552435337607 -12511.0,0.037238688426601815 -12512.0,0.03722582886017004 -12513.0,0.037212973734508235 -12514.0,0.037200123048082845 -12515.0,0.037187276799360895 -12516.0,0.037174434986809925 -12517.0,0.03716159760889801 -12518.0,0.037148764664093725 -12519.0,0.037135936150866196 -12520.0,0.037123112067685086 -12521.0,0.03711029241302058 -12522.0,0.037097477185343355 -12523.0,0.03708466638312467 -12524.0,0.03707186000483629 -12525.0,0.03705905804895051 -12526.0,0.03704626051394015 -12527.0,0.03703346739827855 -12528.0,0.037020678700439576 -12529.0,0.037007894418897645 -12530.0,0.0369951145521277 -12531.0,0.03698233909860516 -12532.0,0.036969568056806026 -12533.0,0.036956801425206805 -12534.0,0.03694403920228454 -12535.0,0.036931281386516766 -12536.0,0.036918527976381586 -12537.0,0.03690577897035761 -12538.0,0.03689303436692398 -12539.0,0.036880294164560345 -12540.0,0.03686755836174689 -12541.0,0.03685482695696434 -12542.0,0.036842099948693925 -12543.0,0.03682937733541742 -12544.0,0.03681665911561708 -12545.0,0.03680394528777573 -12546.0,0.036791235850376705 -12547.0,0.03677853080190387 -12548.0,0.03676583014084159 -12549.0,0.03675313386567476 -12550.0,0.036740441974888835 -12551.0,0.036727754466969756 -12552.0,0.036715071340403985 -12553.0,0.036702392593678516 -12554.0,0.03668971822528087 -12555.0,0.03667704823369912 -12556.0,0.036664382617421776 -12557.0,0.03665172137493795 -12558.0,0.03663906450473724 -12559.0,0.0366264120053098 -12560.0,0.036613763875146234 -12561.0,0.03660112011273774 -12562.0,0.036588480716576 -12563.0,0.036575845685153235 -12564.0,0.03656321501696219 -12565.0,0.03655058871049608 -12566.0,0.03653796676424871 -12567.0,0.03652534917671436 -12568.0,0.03651273594638786 -12569.0,0.036500127071764525 -12570.0,0.03648752255134021 -12571.0,0.036474922383611295 -12572.0,0.03646232656707468 -12573.0,0.03644973510022776 -12574.0,0.03643714798156846 -12575.0,0.03642456520959525 -12576.0,0.03641198678280709 -12577.0,0.036399412699703454 -12578.0,0.03638684295878435 -12579.0,0.0363742775585503 -12580.0,0.036361716497502354 -12581.0,0.03634915977414207 -12582.0,0.036336607386971496 -12583.0,0.036324059334493244 -12584.0,0.03631151561521042 -12585.0,0.03629897622762667 -12586.0,0.0362864411702461 -12587.0,0.036273910441573375 -12588.0,0.036261384040113684 -12589.0,0.036248861964372735 -12590.0,0.0362363442128567 -12591.0,0.03622383078407232 -12592.0,0.03621132167652683 -12593.0,0.036198816888728 -12594.0,0.03618631641918408 -12595.0,0.03617382026640386 -12596.0,0.03616132842889664 -12597.0,0.03614884090517225 -12598.0,0.036136357693740996 -12599.0,0.03612387879311373 -12600.0,0.03611140420180182 -12601.0,0.03609893391831712 -12602.0,0.03608646794117205 -12603.0,0.03607400626887947 -12604.0,0.03606154889995281 -12605.0,0.036049095832906 -12606.0,0.03603664706625349 -12607.0,0.036024202598510205 -12608.0,0.036011762428191624 -12609.0,0.03599932655381373 -12610.0,0.03598689497389302 -12611.0,0.03597446768694648 -12612.0,0.03596204469149163 -12613.0,0.0359496259860465 -12614.0,0.03593721156912965 -12615.0,0.03592480143926009 -12616.0,0.0359123955949574 -12617.0,0.035899994034741665 -12618.0,0.035887596757133454 -12619.0,0.03587520376065388 -12620.0,0.03586281504382453 -12621.0,0.035850430605167516 -12622.0,0.03583805044320548 -12623.0,0.03582567455646157 -12624.0,0.03581330294345941 -12625.0,0.03580093560272316 -12626.0,0.035788572532777486 -12627.0,0.035776213732147594 -12628.0,0.03576385919935912 -12629.0,0.03575150893293828 -12630.0,0.03573916293141179 -12631.0,0.03572682119330686 -12632.0,0.03571448371715119 -12633.0,0.035702150501473025 -12634.0,0.03568982154480109 -12635.0,0.03567749684566466 -12636.0,0.03566517640259345 -12637.0,0.03565286021411774 -12638.0,0.035640548278768294 -12639.0,0.035628240595076396 -12640.0,0.03561593716157384 -12641.0,0.035603637976792876 -12642.0,0.03559134303926633 -12643.0,0.0355790523475275 -12644.0,0.035566765900110216 -12645.0,0.035554483695548755 -12646.0,0.03554220573237796 -12647.0,0.03552993200913316 -12648.0,0.0355176625243502 -12649.0,0.0355053972765654 -12650.0,0.035493136264315606 -12651.0,0.03548087948613818 -12652.0,0.035468626940570985 -12653.0,0.035456378626152356 -12654.0,0.035444134541421174 -12655.0,0.03543189468491681 -12656.0,0.03541965905517914 -12657.0,0.035407427650748544 -12658.0,0.035395200470165894 -12659.0,0.03538297751197258 -12660.0,0.035370758774710485 -12661.0,0.03535854425692204 -12662.0,0.03534633395715009 -12663.0,0.03533412787393807 -12664.0,0.03532192600582986 -12665.0,0.0353097283513699 -12666.0,0.03529753490910306 -12667.0,0.03528534567757477 -12668.0,0.03527316065533095 -12669.0,0.03526097984091801 -12670.0,0.035248803232882854 -12671.0,0.035236630829772915 -12672.0,0.035224462630136115 -12673.0,0.035212298632520886 -12674.0,0.035200138835476125 -12675.0,0.03518798323755127 -12676.0,0.03517583183729625 -12677.0,0.03516368463326149 -12678.0,0.03515154162399793 -12679.0,0.03513940280805697 -12680.0,0.035127268183990555 -12681.0,0.035115137750351105 -12682.0,0.03510301150569157 -12683.0,0.035090889448565345 -12684.0,0.03507877157752637 -12685.0,0.035066657891129074 -12686.0,0.0350545483879284 -12687.0,0.03504244306647974 -12688.0,0.03503034192533903 -12689.0,0.03501824496306269 -12690.0,0.03500615217820766 -12691.0,0.03499406356933133 -12692.0,0.03498197913499163 -12693.0,0.034969898873746984 -12694.0,0.03495782278415629 -12695.0,0.03494575086477898 -12696.0,0.034933683114174933 -12697.0,0.034921619530904564 -12698.0,0.03490956011352879 -12699.0,0.03489750486060901 -12700.0,0.03488545377070709 -12701.0,0.03487340684238545 -12702.0,0.03486136407420697 -12703.0,0.034849325464735056 -12704.0,0.03483729101253356 -12705.0,0.034825260716166866 -12706.0,0.03481323457419985 -12707.0,0.03480121258519791 -12708.0,0.03478919474772686 -12709.0,0.03477718106035309 -12710.0,0.03476517152164345 -12711.0,0.0347531661301653 -12712.0,0.034741164884486454 -12713.0,0.03472916778317527 -12714.0,0.034717174824800585 -12715.0,0.03470518600793172 -12716.0,0.03469320133113851 -12717.0,0.03468122079299125 -12718.0,0.03466924439206076 -12719.0,0.03465727212691833 -12720.0,0.034645303996135794 -12721.0,0.0346333399982854 -12722.0,0.03462138013193994 -12723.0,0.03460942439567269 -12724.0,0.03459747278805744 -12725.0,0.03458552530766842 -12726.0,0.03457358195308039 -12727.0,0.03456164272286861 -12728.0,0.03454970761560881 -12729.0,0.034537776629877205 -12730.0,0.03452584976425052 -12731.0,0.03451392701730598 -12732.0,0.034502008387621276 -12733.0,0.03449009387377463 -12734.0,0.034478183474344684 -12735.0,0.034466277187910635 -12736.0,0.034454375013052145 -12737.0,0.0344424769483494 -12738.0,0.034430582992383 -12739.0,0.03441869314373411 -12740.0,0.034406807400984354 -12741.0,0.03439492576271587 -12742.0,0.03438304822751122 -12743.0,0.03437117479395353 -12744.0,0.034359305460626384 -12745.0,0.034347440226113864 -12746.0,0.03433557908900051 -12747.0,0.034323722047871395 -12748.0,0.03431186910131205 -12749.0,0.03430002024790853 -12750.0,0.03428817548624731 -12751.0,0.034276334814915425 -12752.0,0.034264498232500364 -12753.0,0.0342526657375901 -12754.0,0.03424083732877314 -12755.0,0.03422901300463838 -12756.0,0.034217192763775314 -12757.0,0.034205376604773845 -12758.0,0.03419356452622442 -12759.0,0.03418175652671791 -12760.0,0.034169952604845726 -12761.0,0.03415815275919974 -12762.0,0.03414635698837234 -12763.0,0.034134565290956334 -12764.0,0.03412277766554509 -12765.0,0.034110994110732415 -12766.0,0.03409921462511264 -12767.0,0.03408743920728052 -12768.0,0.03407566785583136 -12769.0,0.03406390056936092 -12770.0,0.03405213734646544 -12771.0,0.03404037818574169 -12772.0,0.03402862308578683 -12773.0,0.03401687204519859 -12774.0,0.034005125062575164 -12775.0,0.033993382136515225 -12776.0,0.03398164326561791 -12777.0,0.033969908448482855 -12778.0,0.0339581776837102 -12779.0,0.03394645096990056 -12780.0,0.033934728305654985 -12781.0,0.03392300968957507 -12782.0,0.03391129512026286 -12783.0,0.03389958459632092 -12784.0,0.03388787811635224 -12785.0,0.03387617567896032 -12786.0,0.03386447728274916 -12787.0,0.033852782926323245 -12788.0,0.03384109260828748 -12789.0,0.03382940632724732 -12790.0,0.03381772408180867 -12791.0,0.03380604587057793 -12792.0,0.033794371692161984 -12793.0,0.03378270154516816 -12794.0,0.03377103542820431 -12795.0,0.03375937333987875 -12796.0,0.03374771527880029 -12797.0,0.03373606124357819 -12798.0,0.033724411232822216 -12799.0,0.0337127652451426 -12800.0,0.033701123279150084 -12801.0,0.03368948533345584 -12802.0,0.033677851406671545 -12803.0,0.033666221497409374 -12804.0,0.03365459560428197 -12805.0,0.03364297372590242 -12806.0,0.03363135586088433 -12807.0,0.033619742007841784 -12808.0,0.03360813216538932 -12809.0,0.033596526332141996 -12810.0,0.03358492450671528 -12811.0,0.03357332668772518 -12812.0,0.033561732873788164 -12813.0,0.03355014306352118 -12814.0,0.033538557255541626 -12815.0,0.03352697544846741 -12816.0,0.03351539764091691 -12817.0,0.03350382383150899 -12818.0,0.03349225401886295 -12819.0,0.03348068820159862 -12820.0,0.03346912637833627 -12821.0,0.03345756854769667 -12822.0,0.03344601470830104 -12823.0,0.03343446485877109 -12824.0,0.03342291899772903 -12825.0,0.03341137712379751 -12826.0,0.033399839235599665 -12827.0,0.033388305331759106 -12828.0,0.03337677541089993 -12829.0,0.033365249471646694 -12830.0,0.03335372751262446 -12831.0,0.033342209532458714 -12832.0,0.03333069552977545 -12833.0,0.03331918550320114 -12834.0,0.03330767945136274 -12835.0,0.03329617737288762 -12836.0,0.03328467926640369 -12837.0,0.033273185130539305 -12838.0,0.03326169496392332 -12839.0,0.033250208765185 -12840.0,0.033238726532954156 -12841.0,0.03322724826586103 -12842.0,0.03321577396253636 -12843.0,0.03320430362161133 -12844.0,0.033192837241717614 -12845.0,0.033181374821487364 -12846.0,0.033169916359553187 -12847.0,0.0331584618545482 -12848.0,0.033147011305105924 -12849.0,0.03313556470986042 -12850.0,0.03312412206744617 -12851.0,0.03311268337649819 -12852.0,0.033101248635651885 -12853.0,0.03308981784354319 -12854.0,0.033078390998808486 -12855.0,0.033066968100084665 -12856.0,0.03305554914600902 -12857.0,0.03304413413521937 -12858.0,0.03303272306635399 -12859.0,0.03302131593805163 -12860.0,0.03300991274895148 -12861.0,0.03299851349769323 -12862.0,0.03298711818291704 -12863.0,0.03297572680326354 -12864.0,0.032964339357373806 -12865.0,0.032952955843889395 -12866.0,0.03294157626145235 -12867.0,0.03293020060870516 -12868.0,0.03291882888429082 -12869.0,0.032907461086852725 -12870.0,0.0328960972150348 -12871.0,0.032884737267481416 -12872.0,0.032873381242837424 -12873.0,0.03286202913974812 -12874.0,0.03285068095685927 -12875.0,0.03283933669281715 -12876.0,0.032827996346268457 -12877.0,0.03281665991586036 -12878.0,0.03280532740024051 -12879.0,0.03279399879805702 -12880.0,0.0327826741079585 -12881.0,0.032771353328593954 -12882.0,0.03276003645861291 -12883.0,0.032748723496665355 -12884.0,0.03273741444140173 -12885.0,0.03272610929147296 -12886.0,0.0327148080455304 -12887.0,0.03270351070222591 -12888.0,0.032692217260211785 -12889.0,0.03268092771814083 -12890.0,0.03266964207466625 -12891.0,0.032658360328441764 -12892.0,0.032647082478121536 -12893.0,0.03263580852236023 -12894.0,0.03262453845981291 -12895.0,0.032613272289135145 -12896.0,0.032602010008982975 -12897.0,0.0325907516180129 -12898.0,0.032579497114881846 -12899.0,0.03256824649824725 -12900.0,0.032556999766767 -12901.0,0.032545756919099444 -12902.0,0.03253451795390338 -12903.0,0.032523282869838084 -12904.0,0.0325120516655633 -12905.0,0.03250082433973922 -12906.0,0.03248960089102653 -12907.0,0.032478381318086315 -12908.0,0.03246716561958018 -12909.0,0.03245595379417018 -12910.0,0.032444745840518825 -12911.0,0.032433541757289075 -12912.0,0.03242234154314438 -12913.0,0.03241114519674862 -12914.0,0.03239995271676618 -12915.0,0.03238876410186184 -12916.0,0.0323775793507009 -12917.0,0.03236639846194911 -12918.0,0.03235522143427267 -12919.0,0.03234404826633822 -12920.0,0.0323328789568129 -12921.0,0.032321713504364295 -12922.0,0.03231055190766044 -12923.0,0.03229939416536985 -12924.0,0.032288240276161465 -12925.0,0.032277090238704724 -12926.0,0.03226594405166951 -12927.0,0.03225480171372616 -12928.0,0.03224366322354547 -12929.0,0.0322325285797987 -12930.0,0.032221397781157575 -12931.0,0.03221027082629428 -12932.0,0.032199147713881424 -12933.0,0.032188028442592116 -12934.0,0.032176913011099914 -12935.0,0.03216580141807883 -12936.0,0.03215469366220331 -12937.0,0.032143589742148294 -12938.0,0.032132489656589165 -12939.0,0.032121393404201774 -12940.0,0.0321103009836624 -12941.0,0.032099212393647804 -12942.0,0.0320881276328352 -12943.0,0.03207704669990226 -12944.0,0.032065969593527116 -12945.0,0.03205489631238834 -12946.0,0.03204382685516496 -12947.0,0.03203276122053648 -12948.0,0.03202169940718287 -12949.0,0.032010641413784506 -12950.0,0.031999587239022256 -12951.0,0.03198853688157745 -12952.0,0.03197749034013187 -12953.0,0.03196644761336771 -12954.0,0.03195540869996768 -12955.0,0.031944373598614906 -12956.0,0.031933342307992996 -12957.0,0.03192231482678598 -12958.0,0.03191129115367836 -12959.0,0.031900271287355106 -12960.0,0.031889255226501614 -12961.0,0.03187824296980377 -12962.0,0.03186723451594787 -12963.0,0.03185622986362069 -12964.0,0.031845229011509456 -12965.0,0.031834231958301866 -12966.0,0.031823238702686024 -12967.0,0.03181224924335052 -12968.0,0.0318012635789844 -12969.0,0.03179028170827716 -12970.0,0.03177930362991873 -12971.0,0.0317683293425995 -12972.0,0.03175735884501033 -12973.0,0.03174639213584254 -12974.0,0.03173542921378783 -12975.0,0.03172447007753844 -12976.0,0.03171351472578702 -12977.0,0.03170256315722668 -12978.0,0.03169161537055096 -12979.0,0.03168067136445388 -12980.0,0.03166973113762989 -12981.0,0.031658794688773924 -12982.0,0.03164786201658134 -12983.0,0.031636933119747926 -12984.0,0.031626007996969956 -12985.0,0.031615086646944145 -12986.0,0.03160416906836767 -12987.0,0.03159325525993811 -12988.0,0.03158234522035355 -12989.0,0.0315714389483125 -12990.0,0.03156053644251393 -12991.0,0.031549637701657224 -12992.0,0.03153874272444226 -12993.0,0.031527851509569334 -12994.0,0.031516964055739234 -12995.0,0.03150608036165314 -12996.0,0.0314952004260127 -12997.0,0.03148432424752003 -12998.0,0.031473451824877687 -12999.0,0.03146258315678867 -13000.0,0.03145171824195641 -13001.0,0.03144085707908481 -13002.0,0.03142999966687821 -13003.0,0.03141914600404143 -13004.0,0.031408296089279655 -13005.0,0.0313974499212986 -13006.0,0.03138660749880439 -13007.0,0.03137576882050362 -13008.0,0.03136493388510329 -13009.0,0.03135410269131087 -13010.0,0.0313432752378343 -13011.0,0.03133245152338193 -13012.0,0.03132163154666257 -13013.0,0.03131081530638547 -13014.0,0.03130000280126035 -13015.0,0.03128919402999735 -13016.0,0.03127838899130705 -13017.0,0.031267587683900484 -13018.0,0.03125679010648916 -13019.0,0.031245996257784986 -13020.0,0.031235206136500354 -13021.0,0.031224419741348056 -13022.0,0.031213637071041363 -13023.0,0.031202858124293985 -13024.0,0.031192082899820086 -13025.0,0.031181311396334233 -13026.0,0.031170543612551473 -13027.0,0.03115977954718729 -13028.0,0.031149019198957628 -13029.0,0.031138262566578825 -13030.0,0.031127509648767704 -13031.0,0.031116760444241526 -13032.0,0.031106014951717997 -13033.0,0.031095273169915238 -13034.0,0.031084535097551838 -13035.0,0.03107380073334683 -13036.0,0.031063070076019682 -13037.0,0.031052343124290314 -13038.0,0.031041619876879055 -13039.0,0.031030900332506713 -13040.0,0.031020184489894524 -13041.0,0.03100947234776418 -13042.0,0.030998763904837773 -13043.0,0.030988059159837877 -13044.0,0.030977358111487493 -13045.0,0.030966660758510085 -13046.0,0.030955967099629497 -13047.0,0.03094527713357008 -13048.0,0.030934590859056588 -13049.0,0.030923908274814248 -13050.0,0.030913229379568672 -13051.0,0.030902554172045966 -13052.0,0.03089188265097265 -13053.0,0.030881214815075705 -13054.0,0.03087055066308251 -13055.0,0.030859890193720922 -13056.0,0.030849233405719222 -13057.0,0.030838580297806138 -13058.0,0.030827930868710843 -13059.0,0.030817285117162908 -13060.0,0.03080664304189239 -13061.0,0.03079600464162977 -13062.0,0.030785369915105967 -13063.0,0.030774738861052316 -13064.0,0.030764111478200625 -13065.0,0.03075348776528312 -13066.0,0.030742867721032487 -13067.0,0.0307322513441818 -13068.0,0.030721638633464624 -13069.0,0.03071102958761493 -13070.0,0.030700424205367158 -13071.0,0.030689822485456136 -13072.0,0.030679224426617163 -13073.0,0.030668630027585974 -13074.0,0.03065803928709873 -13075.0,0.03064745220389205 -13076.0,0.030636868776702943 -13077.0,0.0306262890042689 -13078.0,0.030615712885327828 -13079.0,0.030605140418618084 -13080.0,0.030594571602878432 -13081.0,0.030584006436848093 -13082.0,0.030573444919266723 -13083.0,0.03056288704887443 -13084.0,0.0305523328244117 -13085.0,0.03054178224461951 -13086.0,0.03053123530823925 -13087.0,0.030520692014012765 -13088.0,0.030510152360682285 -13089.0,0.030499616346990523 -13090.0,0.030489083971680608 -13091.0,0.03047855523349612 -13092.0,0.030468030131181028 -13093.0,0.03045750866347978 -13094.0,0.030446990829137235 -13095.0,0.0304364766268987 -13096.0,0.03042596605550992 -13097.0,0.030415459113717028 -13098.0,0.03040495580026664 -13099.0,0.030394456113905784 -13100.0,0.030383960053381943 -13101.0,0.030373467617442983 -13102.0,0.030362978804837248 -13103.0,0.030352493614313497 -13104.0,0.030342012044620937 -13105.0,0.030331534094509165 -13106.0,0.030321059762728256 -13107.0,0.030310589048028694 -13108.0,0.03030012194916142 -13109.0,0.030289658464877748 -13110.0,0.03027919859392948 -13111.0,0.030268742335068828 -13112.0,0.030258289687048436 -13113.0,0.030247840648621398 -13114.0,0.030237395218541185 -13115.0,0.03022695339556175 -13116.0,0.030216515178437466 -13117.0,0.030206080565923134 -13118.0,0.03019564955677396 -13119.0,0.03018522214974561 -13120.0,0.03017479834359417 -13121.0,0.030164378137076172 -13122.0,0.030153961528948538 -13123.0,0.03014354851796865 -13124.0,0.03013313910289431 -13125.0,0.03012273328248377 -13126.0,0.030112331055495666 -13127.0,0.030101932420689096 -13128.0,0.03009153737682358 -13129.0,0.030081145922659064 -13130.0,0.030070758056955943 -13131.0,0.030060373778474984 -13132.0,0.03004999308597744 -13133.0,0.030039615978224965 -13134.0,0.03002924245397966 -13135.0,0.030018872512004018 -13136.0,0.030008506151060984 -13137.0,0.029998143369913934 -13138.0,0.029987784167326677 -13139.0,0.029977428542063405 -13140.0,0.029967076492888784 -13141.0,0.02995672801856789 -13142.0,0.029946383117866234 -13143.0,0.02993604178954972 -13144.0,0.029925704032384724 -13145.0,0.029915369845138016 -13146.0,0.029905039226576825 -13147.0,0.02989471217546875 -13148.0,0.029884388690581867 -13149.0,0.029874068770684655 -13150.0,0.02986375241454603 -13151.0,0.029853439620935333 -13152.0,0.0298431303886223 -13153.0,0.02983282471637712 -13154.0,0.029822522602970417 -13155.0,0.029812224047173222 -13156.0,0.029801929047756973 -13157.0,0.029791637603493563 -13158.0,0.0297813497131553 -13159.0,0.029771065375514924 -13160.0,0.029760784589345564 -13161.0,0.029750507353420812 -13162.0,0.029740233666514664 -13163.0,0.02972996352740156 -13164.0,0.02971969693485632 -13165.0,0.029709433887654232 -13166.0,0.02969917438457098 -13167.0,0.02968891842438269 -13168.0,0.029678666005865908 -13169.0,0.02966841712779757 -13170.0,0.029658171788955075 -13171.0,0.029647929988116228 -13172.0,0.029637691724059265 -13173.0,0.029627456995562816 -13174.0,0.02961722580140596 -13175.0,0.029606998140368195 -13176.0,0.02959677401122945 -13177.0,0.029586553412770028 -13178.0,0.029576336343770705 -13179.0,0.029566122803012653 -13180.0,0.029555912789277494 -13181.0,0.029545706301347213 -13182.0,0.029535503338004265 -13183.0,0.029525303898031513 -13184.0,0.02951510798021225 -13185.0,0.029504915583330155 -13186.0,0.029494726706169355 -13187.0,0.029484541347514395 -13188.0,0.02947435950615024 -13189.0,0.02946418118086228 -13190.0,0.029454006370436284 -13191.0,0.029443835073658494 -13192.0,0.02943366728931554 -13193.0,0.029423503016194497 -13194.0,0.029413342253082817 -13195.0,0.029403184998768404 -13196.0,0.02939303125203957 -13197.0,0.029382881011685066 -13198.0,0.029372734276494013 -13199.0,0.029362591045255994 -13200.0,0.029352451316760994 -13201.0,0.02934231508979943 -13202.0,0.0293321823631621 -13203.0,0.029322053135640253 -13204.0,0.029311927406025548 -13205.0,0.02930180517311006 -13206.0,0.029291686435686297 -13207.0,0.029281571192547134 -13208.0,0.029271459442485916 -13209.0,0.029261351184296378 -13210.0,0.029251246416772698 -13211.0,0.02924114513870942 -13212.0,0.02923104734890155 -13213.0,0.029220953046144495 -13214.0,0.029210862229234094 -13215.0,0.02920077489696656 -13216.0,0.029190691048138553 -13217.0,0.02918061068154715 -13218.0,0.029170533795989852 -13219.0,0.02916046039026453 -13220.0,0.029150390463169515 -13221.0,0.029140324013503537 -13222.0,0.029130261040065754 -13223.0,0.0291202015416557 -13224.0,0.029110145517073367 -13225.0,0.029100092965119145 -13226.0,0.02909004388459383 -13227.0,0.029079998274298663 -13228.0,0.029069956133035244 -13229.0,0.029059917459605632 -13230.0,0.029049882252812288 -13231.0,0.029039850511458097 -13232.0,0.02902982223434632 -13233.0,0.02901979742028067 -13234.0,0.029009776068065263 -13235.0,0.02899975817650463 -13236.0,0.02898974374440369 -13237.0,0.0289797327705678 -13238.0,0.028969725253802734 -13239.0,0.028959721192914675 -13240.0,0.028949720586710186 -13241.0,0.02893972343399628 -13242.0,0.02892972973358037 -13243.0,0.028919739484270283 -13244.0,0.028909752684874265 -13245.0,0.02889976933420094 -13246.0,0.028889789431059378 -13247.0,0.028879812974259053 -13248.0,0.028869839962609854 -13249.0,0.02885987039492205 -13250.0,0.028849904270006357 -13251.0,0.02883994158667389 -13252.0,0.028829982343736186 -13253.0,0.028820026540005154 -13254.0,0.02881007417429315 -13255.0,0.028800125245412932 -13256.0,0.02879017975217768 -13257.0,0.028780237693400938 -13258.0,0.02877029906789671 -13259.0,0.028760363874479382 -13260.0,0.028750432111963778 -13261.0,0.028740503779165084 -13262.0,0.028730578874898934 -13263.0,0.02872065739798136 -13264.0,0.028710739347228804 -13265.0,0.028700824721458122 -13266.0,0.02869091351948655 -13267.0,0.028681005740131767 -13268.0,0.028671101382211846 -13269.0,0.028661200444545284 -13270.0,0.02865130292595094 -13271.0,0.02864140882524813 -13272.0,0.028631518141256564 -13273.0,0.028621630872796358 -13274.0,0.028611747018688013 -13275.0,0.02860186657775247 -13276.0,0.028591989548811068 -13277.0,0.028582115930685555 -13278.0,0.028572245722198058 -13279.0,0.028562378922171144 -13280.0,0.02855251552942778 -13281.0,0.028542655542791333 -13282.0,0.02853279896108559 -13283.0,0.02852294578313471 -13284.0,0.02851309600776329 -13285.0,0.02850324963379633 -13286.0,0.028493406660059232 -13287.0,0.028483567085377783 -13288.0,0.028473730908578205 -13289.0,0.02846389812848711 -13290.0,0.02845406874393154 -13291.0,0.028444242753738885 -13292.0,0.028434420156737 -13293.0,0.02842460095175411 -13294.0,0.028414785137618876 -13295.0,0.028404972713160313 -13296.0,0.028395163677207885 -13297.0,0.028385358028591445 -13298.0,0.028375555766141265 -13299.0,0.02836575688868798 -13300.0,0.028355961395062666 -13301.0,0.028346169284096796 -13302.0,0.02833638055462224 -13303.0,0.028326595205471282 -13304.0,0.028316813235476586 -13305.0,0.02830703464347124 -13306.0,0.028297259428288733 -13307.0,0.028287487588762962 -13308.0,0.028277719123728194 -13309.0,0.028267954032019135 -13310.0,0.028258192312470884 -13311.0,0.028248433963918945 -13312.0,0.0282386789851992 -13313.0,0.02822892737514796 -13314.0,0.028219179132601926 -13315.0,0.028209434256398224 -13316.0,0.02819969274537433 -13317.0,0.028189954598368167 -13318.0,0.028180219814218047 -13319.0,0.02817048839176268 -13320.0,0.028160760329841186 -13321.0,0.028151035627293063 -13322.0,0.028141314282958227 -13323.0,0.028131596295677002 -13324.0,0.028121881664290107 -13325.0,0.02811217038763864 -13326.0,0.02810246246456412 -13327.0,0.02809275789390847 -13328.0,0.02808305667451402 -13329.0,0.02807335880522345 -13330.0,0.028063664284879896 -13331.0,0.02805397311232687 -13332.0,0.0280442852864083 -13333.0,0.028034600805968465 -13334.0,0.028024919669852103 -13335.0,0.028015241876904316 -13336.0,0.028005567425970632 -13337.0,0.02799589631589693 -13338.0,0.02798622854552953 -13339.0,0.02797656411371514 -13340.0,0.02796690301930086 -13341.0,0.02795724526113421 -13342.0,0.02794759083806306 -13343.0,0.027937939748935724 -13344.0,0.027928291992600895 -13345.0,0.027918647567907677 -13346.0,0.027909006473705537 -13347.0,0.027899368708844376 -13348.0,0.02788973427217448 -13349.0,0.027880103162546542 -13350.0,0.027870475378811616 -13351.0,0.027860850919821187 -13352.0,0.027851229784427133 -13353.0,0.02784161197148173 -13354.0,0.02783199747983762 -13355.0,0.027822386308347883 -13356.0,0.027812778455865966 -13357.0,0.027803173921245726 -13358.0,0.027793572703341426 -13359.0,0.027783974801007687 -13360.0,0.027774380213099557 -13361.0,0.027764788938472475 -13362.0,0.027755200975982282 -13363.0,0.027745616324485183 -13364.0,0.02773603498283781 -13365.0,0.027726456949897175 -13366.0,0.027716882224520706 -13367.0,0.027707310805566182 -13368.0,0.027697742691891812 -13369.0,0.027688177882356193 -13370.0,0.02767861637581832 -13371.0,0.02766905817113756 -13372.0,0.02765950326717369 -13373.0,0.02764995166278689 -13374.0,0.02764040335683773 -13375.0,0.027630858348187144 -13376.0,0.027621316635696492 -13377.0,0.027611778218227516 -13378.0,0.02760224309464236 -13379.0,0.027592711263803554 -13380.0,0.027583182724574006 -13381.0,0.02757365747581704 -13382.0,0.02756413551639636 -13383.0,0.027554616845176082 -13384.0,0.027545101461020672 -13385.0,0.027535589362795022 -13386.0,0.027526080549364416 -13387.0,0.02751657501959453 -13388.0,0.027507072772351395 -13389.0,0.02749757380650148 -13390.0,0.02748807812091163 -13391.0,0.027478585714449087 -13392.0,0.02746909658598145 -13393.0,0.02745961073437675 -13394.0,0.02745012815850339 -13395.0,0.027440648857230174 -13396.0,0.027431172829426302 -13397.0,0.027421700073961327 -13398.0,0.02741223058970523 -13399.0,0.02740276437552837 -13400.0,0.027393301430301508 -13401.0,0.027383841752895762 -13402.0,0.027374385342182672 -13403.0,0.027364932197034158 -13404.0,0.02735548231632254 -13405.0,0.027346035698920496 -13406.0,0.027336592343701116 -13407.0,0.027327152249537887 -13408.0,0.027317715415304682 -13409.0,0.027308281839875728 -13410.0,0.02729885152212569 -13411.0,0.02728942446092959 -13412.0,0.02728000065516286 -13413.0,0.027270580103701293 -13414.0,0.027261162805421096 -13415.0,0.02725174875919885 -13416.0,0.027242337963911525 -13417.0,0.027232930418436503 -13418.0,0.027223526121651503 -13419.0,0.02721412507243467 -13420.0,0.027204727269664535 -13421.0,0.027195332712220018 -13422.0,0.02718594139898039 -13423.0,0.027176553328825348 -13424.0,0.027167168500634963 -13425.0,0.02715778691328971 -13426.0,0.02714840856567041 -13427.0,0.0271390334566583 -13428.0,0.027129661585135002 -13429.0,0.027120292949982534 -13430.0,0.027110927550083257 -13431.0,0.027101565384319966 -13432.0,0.027092206451575816 -13433.0,0.02708285075073436 -13434.0,0.027073498280679537 -13435.0,0.027064149040295648 -13436.0,0.027054803028467404 -13437.0,0.027045460244079896 -13438.0,0.02703612068601861 -13439.0,0.027026784353169384 -13440.0,0.027017451244418466 -13441.0,0.02700812135865249 -13442.0,0.02699879469475848 -13443.0,0.026989471251623806 -13444.0,0.026980151028136265 -13445.0,0.02697083402318402 -13446.0,0.02696152023565563 -13447.0,0.026952209664440008 -13448.0,0.026942902308426483 -13449.0,0.026933598166504754 -13450.0,0.026924297237564915 -13451.0,0.026914999520497414 -13452.0,0.026905705014193107 -13453.0,0.02689641371754323 -13454.0,0.026887125629439398 -13455.0,0.026877840748773623 -13456.0,0.026868559074438265 -13457.0,0.026859280605326094 -13458.0,0.02685000534033026 -13459.0,0.026840733278344305 -13460.0,0.026831464418262112 -13461.0,0.026822198758977987 -13462.0,0.0268129362993866 -13463.0,0.02680367703838303 -13464.0,0.026794420974862683 -13465.0,0.02678516810772139 -13466.0,0.026775918435855355 -13467.0,0.026766671958161167 -13468.0,0.02675742867353577 -13469.0,0.026748188580876513 -13470.0,0.026738951679081125 -13471.0,0.02672971796704771 -13472.0,0.026720487443674765 -13473.0,0.02671126010786113 -13474.0,0.02670203595850607 -13475.0,0.026692814994509203 -13476.0,0.026683597214770552 -13477.0,0.026674382618190478 -13478.0,0.02666517120366976 -13479.0,0.02665596297010954 -13480.0,0.026646757916411357 -13481.0,0.026637556041477092 -13482.0,0.02662835734420904 -13483.0,0.026619161823509863 -13484.0,0.026609969478282616 -13485.0,0.02660078030743069 -13486.0,0.026591594309857903 -13487.0,0.026582411484468427 -13488.0,0.02657323183016683 -13489.0,0.02656405534585803 -13490.0,0.02655488203044734 -13491.0,0.02654571188284046 -13492.0,0.026536544901943453 -13493.0,0.026527381086662777 -13494.0,0.02651822043590523 -13495.0,0.026509062948578032 -13496.0,0.026499908623588756 -13497.0,0.026490757459845374 -13498.0,0.02648160945625619 -13499.0,0.026472464611729928 -13500.0,0.026463322925175673 -13501.0,0.026454184395502903 -13502.0,0.026445049021621436 -13503.0,0.026435916802441495 -13504.0,0.026426787736873677 -13505.0,0.026417661823828962 -13506.0,0.02640853906221867 -13507.0,0.026399419450954534 -13508.0,0.026390302988948653 -13509.0,0.0263811896751135 -13510.0,0.02637207950836193 -13511.0,0.026362972487607144 -13512.0,0.026353868611762758 -13513.0,0.026344767879742742 -13514.0,0.02633567029046146 -13515.0,0.026326575842833606 -13516.0,0.026317484535774295 -13517.0,0.026308396368199 -13518.0,0.026299311339023582 -13519.0,0.026290229447164238 -13520.0,0.026281150691537573 -13521.0,0.026272075071060566 -13522.0,0.026263002584650565 -13523.0,0.02625393323122527 -13524.0,0.026244867009702782 -13525.0,0.02623580391900157 -13526.0,0.026226743958040484 -13527.0,0.02621768712573871 -13528.0,0.02620863342101585 -13529.0,0.02619958284279186 -13530.0,0.026190535389987075 -13531.0,0.02618149106152221 -13532.0,0.026172449856318315 -13533.0,0.026163411773296858 -13534.0,0.02615437681137966 -13535.0,0.02614534496948893 -13536.0,0.026136316246547206 -13537.0,0.02612729064147744 -13538.0,0.02611826815320295 -13539.0,0.026109248780647423 -13540.0,0.02610023252273489 -13541.0,0.026091219378389794 -13542.0,0.026082209346536933 -13543.0,0.02607320242610148 -13544.0,0.02606419861600896 -13545.0,0.02605519791518529 -13546.0,0.026046200322556754 -13547.0,0.026037205837050006 -13548.0,0.02602821445759208 -13549.0,0.02601922618311035 -13550.0,0.026010241012532583 -13551.0,0.026001258944786925 -13552.0,0.025992279978801883 -13553.0,0.025983304113506314 -13554.0,0.025974331347829473 -13555.0,0.025965361680700974 -13556.0,0.025956395111050815 -13557.0,0.025947431637809323 -13558.0,0.025938471259907236 -13559.0,0.02592951397627564 -13560.0,0.025920559785846016 -13561.0,0.02591160868755017 -13562.0,0.025902660680320305 -13563.0,0.025893715763088996 -13564.0,0.02588477393478919 -13565.0,0.02587583519435417 -13566.0,0.02586689954071762 -13567.0,0.025857966972813576 -13568.0,0.025849037489576458 -13569.0,0.025840111089941047 -13570.0,0.02583118777284247 -13571.0,0.02582226753721625 -13572.0,0.025813350381998272 -13573.0,0.02580443630612479 -13574.0,0.025795525308532397 -13575.0,0.025786617388158094 -13576.0,0.02577771254393922 -13577.0,0.02576881077481352 -13578.0,0.025759912079719036 -13579.0,0.025751016457594242 -13580.0,0.025742123907377953 -13581.0,0.025733234428009365 -13582.0,0.025724348018428 -13583.0,0.025715464677573793 -13584.0,0.025706584404387018 -13585.0,0.02569770719780833 -13586.0,0.02568883305677875 -13587.0,0.025679961980239637 -13588.0,0.025671093967132748 -13589.0,0.025662229016400192 -13590.0,0.025653367126984458 -13591.0,0.025644508297828363 -13592.0,0.025635652527875127 -13593.0,0.02562679981606832 -13594.0,0.025617950161351887 -13595.0,0.025609103562670106 -13596.0,0.02560026001896766 -13597.0,0.02559141952918957 -13598.0,0.02558258209228125 -13599.0,0.02557374770718843 -13600.0,0.025564916372857245 -13601.0,0.025556088088234178 -13602.0,0.025547262852266096 -13603.0,0.025538440663900187 -13604.0,0.02552962152208404 -13605.0,0.025520805425765597 -13606.0,0.02551199237389316 -13607.0,0.02550318236541541 -13608.0,0.02549437539928135 -13609.0,0.02548557147444039 -13610.0,0.02547677058984228 -13611.0,0.025467972744437153 -13612.0,0.02545917793717547 -13613.0,0.025450386167008083 -13614.0,0.0254415974328862 -13615.0,0.025432811733761395 -13616.0,0.025424029068585582 -13617.0,0.025415249436311065 -13618.0,0.02540647283589049 -13619.0,0.025397699266276892 -13620.0,0.02538892872642362 -13621.0,0.025380161215284427 -13622.0,0.025371396731813413 -13623.0,0.025362635274965035 -13624.0,0.025353876843694133 -13625.0,0.02534512143695586 -13626.0,0.025336369053705777 -13627.0,0.025327619692899785 -13628.0,0.025318873353494163 -13629.0,0.025310130034445513 -13630.0,0.02530138973471083 -13631.0,0.025292652453247463 -13632.0,0.025283918189013127 -13633.0,0.025275186940965866 -13634.0,0.025266458708064116 -13635.0,0.025257733489266666 -13636.0,0.02524901128353267 -13637.0,0.02524029208982161 -13638.0,0.02523157590709336 -13639.0,0.025222862734308148 -13640.0,0.02521415257042656 -13641.0,0.025205445414409517 -13642.0,0.02519674126521833 -13643.0,0.02518804012181466 -13644.0,0.025179341983160523 -13645.0,0.025170646848218306 -13646.0,0.025161954715950716 -13647.0,0.025153265585320862 -13648.0,0.02514457945529219 -13649.0,0.025135896324828523 -13650.0,0.025127216192894 -13651.0,0.025118539058453158 -13652.0,0.02510986492047088 -13653.0,0.025101193777912412 -13654.0,0.02509252562974333 -13655.0,0.0250838604749296 -13656.0,0.025075198312437527 -13657.0,0.025066539141233794 -13658.0,0.0250578829602854 -13659.0,0.02504922976855974 -13660.0,0.025040579565024545 -13661.0,0.025031932348647916 -13662.0,0.025023288118398313 -13663.0,0.025014646873244516 -13664.0,0.0250060086121557 -13665.0,0.024997373334101385 -13666.0,0.024988741038051456 -13667.0,0.024980111722976123 -13668.0,0.02497148538784598 -13669.0,0.024962862031631963 -13670.0,0.02495424165330539 -13671.0,0.024945624251837887 -13672.0,0.024937009826201468 -13673.0,0.024928398375368494 -13674.0,0.0249197898983117 -13675.0,0.02491118439400413 -13676.0,0.024902581861419224 -13677.0,0.024893982299530763 -13678.0,0.024885385707312888 -13679.0,0.024876792083740072 -13680.0,0.024868201427787163 -13681.0,0.024859613738429365 -13682.0,0.024851029014642225 -13683.0,0.024842447255401662 -13684.0,0.02483386845968391 -13685.0,0.024825292626465593 -13686.0,0.024816719754723677 -13687.0,0.024808149843435493 -13688.0,0.02479958289157869 -13689.0,0.024791018898131303 -13690.0,0.02478245786207171 -13691.0,0.024773899782378657 -13692.0,0.0247653446580312 -13693.0,0.02475679248800879 -13694.0,0.02474824327129121 -13695.0,0.024739697006858623 -13696.0,0.024731153693691485 -13697.0,0.024722613330770665 -13698.0,0.024714075917077354 -13699.0,0.024705541451593097 -13700.0,0.024697009933299815 -13701.0,0.02468848136117973 -13702.0,0.024679955734215463 -13703.0,0.02467143305138996 -13704.0,0.02466291331168655 -13705.0,0.024654396514088857 -13706.0,0.024645882657580907 -13707.0,0.024637371741147055 -13708.0,0.024628863763772026 -13709.0,0.024620358724440853 -13710.0,0.024611856622138963 -13711.0,0.024603357455852116 -13712.0,0.02459486122456643 -13713.0,0.02458636792726835 -13714.0,0.024577877562944696 -13715.0,0.024569390130582628 -13716.0,0.024560905629169672 -13717.0,0.024552424057693666 -13718.0,0.024543945415142827 -13719.0,0.02453546970050572 -13720.0,0.024526996912771253 -13721.0,0.024518527050928694 -13722.0,0.024510060113967627 -13723.0,0.02450159610087802 -13724.0,0.02449313501065018 -13725.0,0.024484676842274775 -13726.0,0.024476221594742775 -13727.0,0.024467769267045546 -13728.0,0.024459319858174792 -13729.0,0.024450873367122566 -13730.0,0.02444242979288124 -13731.0,0.024433989134443574 -13732.0,0.02442555139080265 -13733.0,0.02441711656095193 -13734.0,0.024408684643885167 -13735.0,0.02440025563859651 -13736.0,0.024391829544080444 -13737.0,0.024383406359331793 -13738.0,0.02437498608334574 -13739.0,0.024366568715117796 -13740.0,0.02435815425364383 -13741.0,0.024349742697920066 -13742.0,0.024341334046943074 -13743.0,0.024332928299709743 -13744.0,0.02432452545521734 -13745.0,0.02431612551246346 -13746.0,0.02430772847044607 -13747.0,0.024299334328163443 -13748.0,0.024290943084614228 -13749.0,0.024282554738797407 -13750.0,0.024274169289712322 -13751.0,0.024265786736358635 -13752.0,0.024257407077736375 -13753.0,0.024249030312845914 -13754.0,0.024240656440687968 -13755.0,0.02423228546026358 -13756.0,0.02422391737057416 -13757.0,0.02421555217062146 -13758.0,0.02420718985940757 -13759.0,0.02419883043593494 -13760.0,0.024190473899206325 -13761.0,0.024182120248224866 -13762.0,0.024173769481994033 -13763.0,0.024165421599517654 -13764.0,0.02415707659979986 -13765.0,0.02414873448184517 -13766.0,0.024140395244658424 -13767.0,0.024132058887244828 -13768.0,0.02412372540860989 -13769.0,0.0241153948077595 -13770.0,0.02410706708369988 -13771.0,0.0240987422354376 -13772.0,0.024090420261979547 -13773.0,0.024082101162332975 -13774.0,0.024073784935505486 -13775.0,0.02406547158050501 -13776.0,0.024057161096339832 -13777.0,0.024048853482018556 -13778.0,0.02404054873655015 -13779.0,0.024032246858943923 -13780.0,0.024023947848209527 -13781.0,0.024015651703356934 -13782.0,0.024007358423396484 -13783.0,0.023999068007338847 -13784.0,0.02399078045419505 -13785.0,0.023982495762976425 -13786.0,0.02397421393269468 -13787.0,0.023965934962361855 -13788.0,0.023957658850990337 -13789.0,0.023949385597592826 -13790.0,0.023941115201182393 -13791.0,0.02393284766077244 -13792.0,0.023924582975376724 -13793.0,0.023916321144009305 -13794.0,0.023908062165684616 -13795.0,0.02389980603941742 -13796.0,0.023891552764222824 -13797.0,0.023883302339116282 -13798.0,0.023875054763113558 -13799.0,0.023866810035230786 -13800.0,0.023858568154484432 -13801.0,0.02385032911989131 -13802.0,0.023842092930468538 -13803.0,0.02383385958523361 -13804.0,0.023825629083204354 -13805.0,0.023817401423398936 -13806.0,0.023809176604835836 -13807.0,0.023800954626533907 -13808.0,0.02379273548751232 -13809.0,0.02378451918679061 -13810.0,0.02377630572338861 -13811.0,0.02376809509632652 -13812.0,0.02375988730462487 -13813.0,0.02375168234730454 -13814.0,0.02374348022338674 -13815.0,0.023735280931892998 -13816.0,0.02372708447184521 -13817.0,0.0237188908422656 -13818.0,0.023710700042176736 -13819.0,0.02370251207060149 -13820.0,0.023694326926563113 -13821.0,0.023686144609085177 -13822.0,0.0236779651171916 -13823.0,0.023669788449906602 -13824.0,0.023661614606254787 -13825.0,0.02365344358526107 -13826.0,0.023645275385950713 -13827.0,0.023637110007349298 -13828.0,0.02362894744848276 -13829.0,0.023620787708377368 -13830.0,0.02361263078605973 -13831.0,0.02360447668055677 -13832.0,0.023596325390895765 -13833.0,0.023588176916104337 -13834.0,0.02358003125521042 -13835.0,0.023571888407242315 -13836.0,0.02356374837122862 -13837.0,0.02355561114619829 -13838.0,0.023547476731180617 -13839.0,0.023539345125205238 -13840.0,0.023531216327302092 -13841.0,0.023523090336501476 -13842.0,0.023514967151834022 -13843.0,0.023506846772330708 -13844.0,0.023498729197022804 -13845.0,0.02349061442494196 -13846.0,0.023482502455120135 -13847.0,0.023474393286589647 -13848.0,0.02346628691838311 -13849.0,0.023458183349533496 -13850.0,0.02345008257907412 -13851.0,0.02344198460603861 -13852.0,0.023433889429460952 -13853.0,0.023425797048375427 -13854.0,0.02341770746181669 -13855.0,0.0234096206688197 -13856.0,0.023401536668419782 -13857.0,0.02339345545965255 -13858.0,0.023385377041553985 -13859.0,0.02337730141316039 -13860.0,0.023369228573508413 -13861.0,0.023361158521635002 -13862.0,0.023353091256577467 -13863.0,0.023345026777373445 -13864.0,0.023336965083060913 -13865.0,0.023328906172678146 -13866.0,0.023320850045263786 -13867.0,0.023312796699856798 -13868.0,0.023304746135496483 -13869.0,0.02329669835122245 -13870.0,0.023288653346074672 -13871.0,0.023280611119093426 -13872.0,0.023272571669319342 -13873.0,0.02326453499579338 -13874.0,0.023256501097556805 -13875.0,0.02324846997365124 -13876.0,0.02324044162311863 -13877.0,0.023232416045001262 -13878.0,0.02322439323834172 -13879.0,0.02321637320218296 -13880.0,0.02320835593556824 -13881.0,0.02320034143754118 -13882.0,0.023192329707145676 -13883.0,0.023184320743426006 -13884.0,0.023176314545426756 -13885.0,0.023168311112192853 -13886.0,0.02316031044276953 -13887.0,0.023152312536202372 -13888.0,0.02314431739153729 -13889.0,0.023136325007820518 -13890.0,0.023128335384098635 -13891.0,0.02312034851941852 -13892.0,0.023112364412827404 -13893.0,0.02310438306337284 -13894.0,0.023096404470102725 -13895.0,0.023088428632065252 -13896.0,0.023080455548308967 -13897.0,0.023072485217882747 -13898.0,0.023064517639835788 -13899.0,0.023056552813217605 -13900.0,0.02304859073707806 -13901.0,0.023040631410467336 -13902.0,0.02303267483243595 -13903.0,0.023024721002034725 -13904.0,0.023016769918314833 -13905.0,0.02300882158032777 -13906.0,0.023000875987125368 -13907.0,0.02299293313775975 -13908.0,0.02298499303128341 -13909.0,0.02297705566674915 -13910.0,0.02296912104321009 -13911.0,0.02296118915971971 -13912.0,0.02295326001533177 -13913.0,0.02294533360910039 -13914.0,0.022937409940080006 -13915.0,0.02292948900732539 -13916.0,0.02292157080989162 -13917.0,0.022913655346834122 -13918.0,0.02290574261720863 -13919.0,0.022897832620071234 -13920.0,0.022889925354478303 -13921.0,0.02288202081948657 -13922.0,0.022874119014153076 -13923.0,0.02286621993753521 -13924.0,0.022858323588690648 -13925.0,0.02285042996667742 -13926.0,0.02284253907055388 -13927.0,0.022834650899378698 -13928.0,0.022826765452210882 -13929.0,0.022818882728109738 -13930.0,0.022811002726134923 -13931.0,0.022803125445346413 -13932.0,0.02279525088480451 -13933.0,0.02278737904356982 -13934.0,0.022779509920703305 -13935.0,0.022771643515266227 -13936.0,0.022763779826320194 -13937.0,0.022755918852927107 -13938.0,0.022748060594149216 -13939.0,0.022740205049049094 -13940.0,0.022732352216689636 -13941.0,0.02272450209613404 -13942.0,0.02271665468644585 -13943.0,0.022708809986688932 -13944.0,0.022700967995927475 -13945.0,0.02269312871322597 -13946.0,0.022685292137649263 -13947.0,0.022677458268262497 -13948.0,0.022669627104131153 -13949.0,0.022661798644321045 -13950.0,0.022653972887898267 -13951.0,0.022646149833929277 -13952.0,0.022638329481480843 -13953.0,0.022630511829620063 -13954.0,0.022622696877414326 -13955.0,0.022614884623931377 -13956.0,0.022607075068239273 -13957.0,0.0225992682094064 -13958.0,0.022591464046501433 -13959.0,0.022583662578593407 -13960.0,0.02257586380475166 -13961.0,0.022568067724045866 -13962.0,0.022560274335545992 -13963.0,0.02255248363832235 -13964.0,0.022544695631445573 -13965.0,0.0225369103139866 -13966.0,0.022529127685016716 -13967.0,0.022521347743607485 -13968.0,0.02251357048883083 -13969.0,0.022505795919758983 -13970.0,0.022498024035464498 -13971.0,0.02249025483502023 -13972.0,0.022482488317499383 -13973.0,0.022474724481975464 -13974.0,0.022466963327522314 -13975.0,0.02245920485321407 -13976.0,0.0224514490581252 -13977.0,0.022443695941330506 -13978.0,0.022435945501905103 -13979.0,0.0224281977389244 -13980.0,0.022420452651464157 -13981.0,0.02241271023860044 -13982.0,0.022404970499409645 -13983.0,0.02239723343296846 -13984.0,0.022389499038353917 -13985.0,0.02238176731464336 -13986.0,0.022374038260914452 -13987.0,0.02236631187624518 -13988.0,0.022358588159713828 -13989.0,0.022350867110399016 -13990.0,0.022343148727379684 -13991.0,0.022335433009735096 -13992.0,0.022327719956544798 -13993.0,0.022320009566888694 -13994.0,0.022312301839846987 -13995.0,0.022304596774500217 -13996.0,0.0222968943699292 -13997.0,0.022289194625215104 -13998.0,0.022281497539439414 -13999.0,0.022273803111683924 -14000.0,0.022266111341030733 -14001.0,0.022258422226562276 -14002.0,0.022250735767361293 -14003.0,0.022243051962510856 -14004.0,0.022235370811094342 -14005.0,0.02222769231219543 -14006.0,0.022220016464898143 -14007.0,0.02221234326828681 -14008.0,0.022204672721446075 -14009.0,0.02219700482346089 -14010.0,0.022189339573416532 -14011.0,0.022181676970398592 -14012.0,0.022174017013492996 -14013.0,0.02216635970178594 -14014.0,0.022158705034363974 -14015.0,0.02215105301031395 -14016.0,0.022143403628723055 -14017.0,0.022135756888678745 -14018.0,0.022128112789268833 -14019.0,0.02212047132958143 -14020.0,0.022112832508704983 -14021.0,0.022105196325728212 -14022.0,0.022097562779740187 -14023.0,0.022089931869830277 -14024.0,0.022082303595088174 -14025.0,0.022074677954603897 -14026.0,0.022067054947467732 -14027.0,0.022059434572770324 -14028.0,0.02205181682960262 -14029.0,0.022044201717055886 -14030.0,0.022036589234221672 -14031.0,0.022028979380191882 -14032.0,0.02202137215405871 -14033.0,0.02201376755491468 -14034.0,0.022006165581852602 -14035.0,0.021998566233965622 -14036.0,0.021990969510347194 -14037.0,0.0219833754100911 -14038.0,0.02197578393229139 -14039.0,0.02196819507604247 -14040.0,0.021960608840439048 -14041.0,0.021953025224576136 -14042.0,0.021945444227549078 -14043.0,0.021937865848453496 -14044.0,0.021930290086385352 -14045.0,0.021922716940440914 -14046.0,0.02191514640971677 -14047.0,0.021907578493309796 -14048.0,0.0219000131903172 -14049.0,0.021892450499836496 -14050.0,0.02188489042096552 -14051.0,0.021877332952802395 -14052.0,0.021869778094445576 -14053.0,0.02186222584499382 -14054.0,0.021854676203546218 -14055.0,0.021847129169202124 -14056.0,0.021839584741061246 -14057.0,0.021832042918223587 -14058.0,0.021824503699789475 -14059.0,0.021816967084859515 -14060.0,0.02180943307253465 -14061.0,0.02180190166191614 -14062.0,0.021794372852105524 -14063.0,0.021786846642204694 -14064.0,0.0217793230313158 -14065.0,0.021771802018541345 -14066.0,0.021764283602984127 -14067.0,0.02175676778374726 -14068.0,0.021749254559934147 -14069.0,0.02174174393064852 -14070.0,0.021734235894994416 -14071.0,0.021726730452076196 -14072.0,0.02171922760099849 -14073.0,0.021711727340866276 -14074.0,0.021704229670784825 -14075.0,0.021696734589859733 -14076.0,0.02168924209719687 -14077.0,0.021681752191902444 -14078.0,0.021674264873082966 -14079.0,0.021666780139845253 -14080.0,0.02165929799129644 -14081.0,0.021651818426543946 -14082.0,0.021644341444695517 -14083.0,0.021636867044859207 -14084.0,0.021629395226143384 -14085.0,0.021621925987656693 -14086.0,0.021614459328508123 -14087.0,0.02160699524780695 -14088.0,0.021599533744662777 -14089.0,0.02159207481818548 -14090.0,0.021584618467485276 -14091.0,0.021577164691672673 -14092.0,0.021569713489858502 -14093.0,0.021562264861153868 -14094.0,0.021554818804670212 -14095.0,0.02154737531951928 -14096.0,0.021539934404813124 -14097.0,0.021532496059664077 -14098.0,0.021525060283184808 -14099.0,0.021517627074488288 -14100.0,0.021510196432687784 -14101.0,0.021502768356896886 -14102.0,0.02149534284622946 -14103.0,0.021487919899799705 -14104.0,0.02148049951672212 -14105.0,0.021473081696111514 -14106.0,0.02146566643708298 -14107.0,0.021458253738751935 -14108.0,0.021450843600234103 -14109.0,0.02144343602064552 -14110.0,0.02143603099910249 -14111.0,0.02142862853472166 -14112.0,0.021421228626619975 -14113.0,0.021413831273914684 -14114.0,0.02140643647572332 -14115.0,0.021399044231163747 -14116.0,0.02139165453935412 -14117.0,0.021384267399412907 -14118.0,0.021376882810458887 -14119.0,0.021369500771611108 -14120.0,0.02136212128198896 -14121.0,0.021354744340712124 -14122.0,0.02134736994690059 -14123.0,0.021339998099674632 -14124.0,0.02133262879815485 -14125.0,0.02132526204146214 -14126.0,0.021317897828717715 -14127.0,0.02131053615904305 -14128.0,0.021303177031559973 -14129.0,0.021295820445390582 -14130.0,0.02128846639965731 -14131.0,0.021281114893482844 -14132.0,0.02127376592599022 -14133.0,0.021266419496302754 -14134.0,0.021259075603544085 -14135.0,0.02125173424683812 -14136.0,0.021244395425309096 -14137.0,0.02123705913808155 -14138.0,0.021229725384280307 -14139.0,0.02122239416303052 -14140.0,0.02121506547345761 -14141.0,0.021207739314687325 -14142.0,0.021200415685845707 -14143.0,0.02119309458605911 -14144.0,0.02118577601445416 -14145.0,0.02117845997015782 -14146.0,0.021171146452297333 -14147.0,0.021163835460000262 -14148.0,0.02115652699239444 -14149.0,0.02114922104860803 -14150.0,0.021141917627769485 -14151.0,0.021134616729007568 -14152.0,0.02112731835145132 -14153.0,0.0211200224942301 -14154.0,0.021112729156473574 -14155.0,0.021105438337311697 -14156.0,0.021098150035874737 -14157.0,0.021090864251293234 -14158.0,0.021083580982698052 -14159.0,0.021076300229220357 -14160.0,0.021069021989991613 -14161.0,0.02106174626414356 -14162.0,0.02105447305080827 -14163.0,0.021047202349118103 -14164.0,0.02103993415820572 -14165.0,0.021032668477204065 -14166.0,0.0210254053052464 -14167.0,0.02101814464146629 -14168.0,0.021010886484997594 -14169.0,0.021003630834974446 -14170.0,0.020996377690531313 -14171.0,0.02098912705080295 -14172.0,0.020981878914924403 -14173.0,0.020974633282031033 -14174.0,0.020967390151258473 -14175.0,0.020960149521742678 -14176.0,0.020952911392619893 -14177.0,0.020945675763026673 -14178.0,0.02093844263209984 -14179.0,0.020931211998976542 -14180.0,0.02092398386279422 -14181.0,0.02091675822269062 -14182.0,0.020909535077803756 -14183.0,0.020902314427271966 -14184.0,0.020895096270233882 -14185.0,0.02088788060582844 -14186.0,0.020880667433194847 -14187.0,0.02087345675147263 -14188.0,0.020866248559801605 -14189.0,0.020859042857321902 -14190.0,0.020851839643173914 -14191.0,0.020844638916498355 -14192.0,0.020837440676436236 -14193.0,0.020830244922128854 -14194.0,0.020823051652717823 -14195.0,0.020815860867345017 -14196.0,0.020808672565152637 -14197.0,0.02080148674528317 -14198.0,0.02079430340687941 -14199.0,0.020787122549084422 -14200.0,0.020779944171041585 -14201.0,0.020772768271894577 -14202.0,0.02076559485078737 -14203.0,0.02075842390686421 -14204.0,0.02075125543926967 -14205.0,0.020744089447148596 -14206.0,0.02073692592964615 -14207.0,0.02072976488590776 -14208.0,0.020722606315079172 -14209.0,0.020715450216306424 -14210.0,0.020708296588735842 -14211.0,0.02070114543151406 -14212.0,0.020693996743787985 -14213.0,0.02068685052470483 -14214.0,0.02067970677341211 -14215.0,0.020672565489057635 -14216.0,0.020665426670789484 -14217.0,0.020658290317756053 -14218.0,0.020651156429106032 -14219.0,0.02064402500398841 -14220.0,0.020636896041552437 -14221.0,0.020629769540947692 -14222.0,0.020622645501324036 -14223.0,0.02061552392183163 -14224.0,0.020608404801620905 -14225.0,0.02060128813984261 -14226.0,0.020594173935647775 -14227.0,0.020587062188187746 -14228.0,0.02057995289661412 -14229.0,0.020572846060078816 -14230.0,0.020565741677734044 -14231.0,0.020558639748732305 -14232.0,0.020551540272226398 -14233.0,0.020544443247369384 -14234.0,0.020537348673314658 -14235.0,0.02053025654921588 -14236.0,0.020523166874227027 -14237.0,0.02051607964750233 -14238.0,0.020508994868196347 -14239.0,0.020501912535463913 -14240.0,0.02049483264846017 -14241.0,0.020487755206340514 -14242.0,0.020480680208260674 -14243.0,0.020473607653376653 -14244.0,0.02046653754084475 -14245.0,0.020459469869821542 -14246.0,0.020452404639463913 -14247.0,0.02044534184892903 -14248.0,0.020438281497374356 -14249.0,0.02043122358395765 -14250.0,0.02042416810783694 -14251.0,0.02041711506817057 -14252.0,0.020410064464117153 -14253.0,0.02040301629483562 -14254.0,0.02039597055948516 -14255.0,0.020388927257225273 -14256.0,0.020381886387215744 -14257.0,0.020374847948616662 -14258.0,0.020367811940588367 -14259.0,0.020360778362291533 -14260.0,0.0203537472128871 -14261.0,0.020346718491536308 -14262.0,0.02033969219740067 -14263.0,0.02033266832964201 -14264.0,0.02032564688742243 -14265.0,0.020318627869904328 -14266.0,0.020311611276250374 -14267.0,0.02030459710562355 -14268.0,0.02029758535718711 -14269.0,0.020290576030104604 -14270.0,0.020283569123539884 -14271.0,0.02027656463665706 -14272.0,0.02026956256862055 -14273.0,0.020262562918595066 -14274.0,0.020255565685745606 -14275.0,0.020248570869237432 -14276.0,0.020241578468236127 -14277.0,0.02023458848190754 -14278.0,0.020227600909417835 -14279.0,0.02022061574993342 -14280.0,0.02021363300262103 -14281.0,0.020206652666647673 -14282.0,0.020199674741180656 -14283.0,0.020192699225387543 -14284.0,0.020185726118436217 -14285.0,0.020178755419494834 -14286.0,0.020171787127731846 -14287.0,0.02016482124231599 -14288.0,0.02015785776241627 -14289.0,0.020150896687202005 -14290.0,0.02014393801584279 -14291.0,0.020136981747508508 -14292.0,0.02013002788136932 -14293.0,0.020123076416595678 -14294.0,0.02011612735235833 -14295.0,0.020109180687828312 -14296.0,0.02010223642217692 -14297.0,0.02009529455457576 -14298.0,0.020088355084196718 -14299.0,0.020081418010211977 -14300.0,0.020074483331793975 -14301.0,0.020067551048115462 -14302.0,0.020060621158349473 -14303.0,0.020053693661669328 -14304.0,0.02004676855724861 -14305.0,0.020039845844261214 -14306.0,0.02003292552188131 -14307.0,0.020026007589283353 -14308.0,0.020019092045642096 -14309.0,0.020012178890132543 -14310.0,0.020005268121930018 -14311.0,0.019998359740210112 -14312.0,0.01999145374414872 -14313.0,0.019984550132921986 -14314.0,0.019977648905706368 -14315.0,0.019970750061678602 -14316.0,0.019963853600015714 -14317.0,0.019956959519894988 -14318.0,0.019950067820494022 -14319.0,0.019943178500990682 -14320.0,0.019936291560563136 -14321.0,0.019929406998389798 -14322.0,0.01992252481364941 -14323.0,0.019915645005520965 -14324.0,0.019908767573183758 -14325.0,0.019901892515817372 -14326.0,0.01989501983260164 -14327.0,0.019888149522716718 -14328.0,0.019881281585343018 -14329.0,0.01987441601966126 -14330.0,0.019867552824852416 -14331.0,0.01986069200009776 -14332.0,0.019853833544578852 -14333.0,0.019846977457477533 -14334.0,0.019840123737975904 -14335.0,0.019833272385256378 -14336.0,0.019826423398501634 -14337.0,0.01981957677689465 -14338.0,0.019812732519618657 -14339.0,0.019805890625857192 -14340.0,0.019799051094794066 -14341.0,0.019792213925613384 -14342.0,0.019785379117499502 -14343.0,0.019778546669637086 -14344.0,0.01977171658121108 -14345.0,0.019764888851406696 -14346.0,0.019758063479409452 -14347.0,0.019751240464405108 -14348.0,0.019744419805579737 -14349.0,0.01973760150211969 -14350.0,0.019730785553211595 -14351.0,0.019723971958042343 -14352.0,0.019717160715799133 -14353.0,0.019710351825669433 -14354.0,0.019703545286840998 -14355.0,0.019696741098501842 -14356.0,0.019689939259840285 -14357.0,0.019683139770044916 -14358.0,0.019676342628304613 -14359.0,0.01966954783380851 -14360.0,0.019662755385746047 -14361.0,0.019655965283306934 -14362.0,0.019649177525681162 -14363.0,0.019642392112059006 -14364.0,0.019635609041631003 -14365.0,0.01962882831358799 -14366.0,0.019622049927121073 -14367.0,0.01961527388142165 -14368.0,0.019608500175681373 -14369.0,0.019601728809092195 -14370.0,0.019594959780846338 -14371.0,0.019588193090136322 -14372.0,0.019581428736154906 -14373.0,0.019574666718095164 -14374.0,0.01956790703515044 -14375.0,0.019561149686514356 -14376.0,0.01955439467138079 -14377.0,0.019547641988943935 -14378.0,0.01954089163839824 -14379.0,0.019534143618938446 -14380.0,0.01952739792975955 -14381.0,0.019520654570056844 -14382.0,0.019513913539025898 -14383.0,0.019507174835862555 -14384.0,0.019500438459762945 -14385.0,0.01949370440992345 -14386.0,0.019486972685540754 -14387.0,0.019480243285811816 -14388.0,0.019473516209933872 -14389.0,0.019466791457104417 -14390.0,0.019460069026521244 -14391.0,0.01945334891738242 -14392.0,0.019446631128886283 -14393.0,0.01943991566023144 -14394.0,0.019433202510616795 -14395.0,0.019426491679241518 -14396.0,0.019419783165305057 -14397.0,0.019413076968007127 -14398.0,0.01940637308654773 -14399.0,0.019399671520127143 -14400.0,0.01939297226794592 -14401.0,0.019386275329204897 -14402.0,0.01937958070310516 -14403.0,0.0193728883888481 -14404.0,0.01936619838563537 -14405.0,0.019359510692668908 -14406.0,0.01935282530915091 -14407.0,0.01934614223428386 -14408.0,0.019339461467270523 -14409.0,0.019332783007313933 -14410.0,0.01932610685361739 -14411.0,0.019319433005384478 -14412.0,0.019312761461819063 -14413.0,0.01930609222212528 -14414.0,0.019299425285507526 -14415.0,0.019292760651170488 -14416.0,0.019286098318319126 -14417.0,0.019279438286158683 -14418.0,0.01927278055389464 -14419.0,0.0192661251207328 -14420.0,0.01925947198587921 -14421.0,0.019252821148540197 -14422.0,0.01924617260792238 -14423.0,0.019239526363232617 -14424.0,0.019232882413678067 -14425.0,0.019226240758466153 -14426.0,0.01921960139680459 -14427.0,0.019212964327901323 -14428.0,0.019206329550964615 -14429.0,0.019199697065202984 -14430.0,0.019193066869825227 -14431.0,0.0191864389640404 -14432.0,0.019179813347057845 -14433.0,0.019173190018087177 -14434.0,0.019166568976338286 -14435.0,0.019159950221021318 -14436.0,0.01915333375134671 -14437.0,0.019146719566525163 -14438.0,0.019140107665767656 -14439.0,0.019133498048285447 -14440.0,0.019126890713290035 -14441.0,0.019120285659993227 -14442.0,0.019113682887607085 -14443.0,0.019107082395343956 -14444.0,0.019100484182416434 -14445.0,0.019093888248037406 -14446.0,0.019087294591420025 -14447.0,0.019080703211777728 -14448.0,0.01907411410832419 -14449.0,0.01906752728027339 -14450.0,0.019060942726839565 -14451.0,0.01905436044723724 -14452.0,0.019047780440681172 -14453.0,0.01904120270638643 -14454.0,0.019034627243568334 -14455.0,0.01902805405144249 -14456.0,0.019021483129224744 -14457.0,0.019014914476131246 -14458.0,0.0190083480913784 -14459.0,0.019001783974182885 -14460.0,0.01899522212376166 -14461.0,0.018988662539331923 -14462.0,0.018982105220111175 -14463.0,0.018975550165317174 -14464.0,0.018968997374167962 -14465.0,0.018962446845881817 -14466.0,0.01895589857967732 -14467.0,0.018949352574773308 -14468.0,0.018942808830388905 -14469.0,0.018936267345743465 -14470.0,0.01892972812005665 -14471.0,0.018923191152548376 -14472.0,0.018916656442438843 -14473.0,0.018910123988948483 -14474.0,0.018903593791298037 -14475.0,0.018897065848708497 -14476.0,0.01889054016040113 -14477.0,0.018884016725597474 -14478.0,0.018877495543519317 -14479.0,0.018870976613388737 -14480.0,0.01886445993442807 -14481.0,0.018857945505859935 -14482.0,0.01885143332690719 -14483.0,0.01884492339679299 -14484.0,0.018838415714740746 -14485.0,0.018831910279974152 -14486.0,0.018825407091717133 -14487.0,0.018818906149193917 -14488.0,0.01881240745162899 -14489.0,0.018805910998247116 -14490.0,0.018799416788273293 -14491.0,0.01879292482093282 -14492.0,0.018786435095451255 -14493.0,0.018779947611054424 -14494.0,0.018773462366968408 -14495.0,0.018766979362419566 -14496.0,0.018760498596634527 -14497.0,0.01875402006884018 -14498.0,0.018747543778263695 -14499.0,0.01874106972413248 -14500.0,0.018734597905674232 -14501.0,0.01872812832211692 -14502.0,0.018721660972688767 -14503.0,0.01871519585661826 -14504.0,0.018708732973134155 -14505.0,0.018702272321465485 -14506.0,0.018695813900841546 -14507.0,0.018689357710491877 -14508.0,0.018682903749646314 -14509.0,0.01867645201753495 -14510.0,0.01867000251338814 -14511.0,0.01866355523643649 -14512.0,0.0186571101859109 -14513.0,0.01865066736104252 -14514.0,0.018644226761062768 -14515.0,0.018637788385203337 -14516.0,0.018631352232696154 -14517.0,0.01862491830277345 -14518.0,0.018618486594667697 -14519.0,0.01861205710761165 -14520.0,0.0186056298408383 -14521.0,0.018599204793580928 -14522.0,0.01859278196507308 -14523.0,0.01858636135454856 -14524.0,0.018579942961241422 -14525.0,0.018573526784386007 -14526.0,0.01856711282321691 -14527.0,0.018560701076969006 -14528.0,0.018554291544877397 -14529.0,0.018547884226177487 -14530.0,0.018541479120104922 -14531.0,0.018535076225895637 -14532.0,0.018528675542785786 -14533.0,0.018522277070011833 -14534.0,0.018515880806810485 -14535.0,0.018509486752418706 -14536.0,0.01850309490607375 -14537.0,0.018496705267013094 -14538.0,0.018490317834474513 -14539.0,0.018483932607696027 -14540.0,0.01847754958591594 -14541.0,0.018471168768372785 -14542.0,0.018464790154305383 -14543.0,0.018458413742952814 -14544.0,0.018452039533554426 -14545.0,0.018445667525349804 -14546.0,0.018439297717578827 -14547.0,0.018432930109481622 -14548.0,0.018426564700298586 -14549.0,0.018420201489270354 -14550.0,0.018413840475637853 -14551.0,0.018407481658642262 -14552.0,0.018401125037525015 -14553.0,0.018394770611527826 -14554.0,0.01838841837989264 -14555.0,0.01838206834186169 -14556.0,0.018375720496677465 -14557.0,0.01836937484358272 -14558.0,0.018363031381820445 -14559.0,0.018356690110633928 -14560.0,0.018350351029266694 -14561.0,0.018344014136962548 -14562.0,0.018337679432965527 -14563.0,0.018331346916519956 -14564.0,0.018325016586870413 -14565.0,0.018318688443261746 -14566.0,0.01831236248493902 -14567.0,0.018306038711147648 -14568.0,0.0182997171211332 -14569.0,0.018293397714141575 -14570.0,0.018287080489418916 -14571.0,0.01828076544621162 -14572.0,0.01827445258376635 -14573.0,0.018268141901330033 -14574.0,0.01826183339814984 -14575.0,0.01825552707347322 -14576.0,0.018249222926547893 -14577.0,0.01824292095662178 -14578.0,0.018236621162943122 -14579.0,0.018230323544760403 -14580.0,0.018224028101322357 -14581.0,0.018217734831877986 -14582.0,0.018211443735676548 -14583.0,0.018205154811967564 -14584.0,0.018198868060000824 -14585.0,0.018192583479026334 -14586.0,0.018186301068294403 -14587.0,0.018180020827055592 -14588.0,0.018173742754560705 -14589.0,0.01816746685006082 -14590.0,0.018161193112807263 -14591.0,0.018154921542051627 -14592.0,0.018148652137045758 -14593.0,0.018142384897041775 -14594.0,0.018136119821292013 -14595.0,0.01812985690904911 -14596.0,0.018123596159565946 -14597.0,0.018117337572095656 -14598.0,0.018111081145891644 -14599.0,0.018104826880207554 -14600.0,0.018098574774297303 -14601.0,0.018092324827415077 -14602.0,0.018086077038815273 -14603.0,0.018079831407752583 -14604.0,0.018073587933481957 -14605.0,0.01806734661525859 -14606.0,0.018061107452337938 -14607.0,0.018054870443975718 -14608.0,0.018048635589427896 -14609.0,0.0180424028879507 -14610.0,0.018036172338800636 -14611.0,0.018029943941234406 -14612.0,0.01802371769450903 -14613.0,0.01801749359788175 -14614.0,0.01801127165061009 -14615.0,0.018005051851951812 -14616.0,0.017998834201164937 -14617.0,0.017992618697507748 -14618.0,0.017986405340238796 -14619.0,0.017980194128616837 -14620.0,0.01797398506190094 -14621.0,0.01796777813935041 -14622.0,0.0179615733602248 -14623.0,0.017955370723783927 -14624.0,0.017949170229287867 -14625.0,0.017942971875996937 -14626.0,0.017936775663171742 -14627.0,0.017930581590073085 -14628.0,0.017924389655962075 -14629.0,0.017918199860100056 -14630.0,0.017912012201748633 -14631.0,0.017905826680169667 -14632.0,0.01789964329462526 -14633.0,0.017893462044377792 -14634.0,0.017887282928689876 -14635.0,0.01788110594682441 -14636.0,0.017874931098044486 -14637.0,0.017868758381613514 -14638.0,0.017862587796795126 -14639.0,0.017856419342853223 -14640.0,0.01785025301905195 -14641.0,0.01784408882465571 -14642.0,0.01783792675892916 -14643.0,0.017831766821137227 -14644.0,0.01782560901054504 -14645.0,0.017819453326418037 -14646.0,0.01781329976802189 -14647.0,0.01780714833462252 -14648.0,0.01780099902548611 -14649.0,0.01779485183987909 -14650.0,0.01778870677706815 -14651.0,0.017782563836320223 -14652.0,0.017776423016902517 -14653.0,0.017770284318082447 -14654.0,0.01776414773912773 -14655.0,0.017758013279306314 -14656.0,0.017751880937886398 -14657.0,0.01774575071413645 -14658.0,0.017739622607325166 -14659.0,0.017733496616721516 -14660.0,0.017727372741594728 -14661.0,0.017721250981214236 -14662.0,0.017715131334849775 -14663.0,0.017709013801771315 -14664.0,0.01770289838124908 -14665.0,0.017696785072553543 -14666.0,0.01769067387495543 -14667.0,0.017684564787725725 -14668.0,0.017678457810135655 -14669.0,0.017672352941456717 -14670.0,0.017666250180960616 -14671.0,0.017660149527919347 -14672.0,0.017654050981605156 -14673.0,0.017647954541290523 -14674.0,0.01764186020624819 -14675.0,0.017635767975751147 -14676.0,0.017629677849072635 -14677.0,0.01762358982548616 -14678.0,0.01761750390426544 -14679.0,0.01761142008468448 -14680.0,0.017605338366017527 -14681.0,0.017599258747539072 -14682.0,0.017593181228523862 -14683.0,0.0175871058082469 -14684.0,0.017581032485983424 -14685.0,0.017574961261008933 -14686.0,0.017568892132599195 -14687.0,0.017562825100030172 -14688.0,0.017556760162578126 -14689.0,0.017550697319519554 -14690.0,0.017544636570131205 -14691.0,0.017538577913690078 -14692.0,0.017532521349473414 -14693.0,0.01752646687675871 -14694.0,0.017520414494823732 -14695.0,0.01751436420294644 -14696.0,0.017508316000405092 -14697.0,0.017502269886478187 -14698.0,0.017496225860444463 -14699.0,0.017490183921582914 -14700.0,0.01748414406917278 -14701.0,0.017478106302493548 -14702.0,0.017472070620824977 -14703.0,0.017466037023447022 -14704.0,0.017460005509639935 -14705.0,0.017453976078684194 -14706.0,0.017447948729860538 -14707.0,0.017441923462449948 -14708.0,0.017435900275733652 -14709.0,0.017429879168993127 -14710.0,0.0174238601415101 -14711.0,0.017417843192566562 -14712.0,0.0174118283214447 -14713.0,0.017405815527427006 -14714.0,0.01739980480979619 -14715.0,0.017393796167835218 -14716.0,0.01738778960082731 -14717.0,0.017381785108055915 -14718.0,0.01737578268880475 -14719.0,0.01736978234235778 -14720.0,0.017363784067999186 -14721.0,0.01735778786501342 -14722.0,0.017351793732685188 -14723.0,0.017345801670299428 -14724.0,0.017339811677141336 -14725.0,0.017333823752496348 -14726.0,0.017327837895650143 -14727.0,0.01732185410588866 -14728.0,0.017315872382498085 -14729.0,0.017309892724764814 -14730.0,0.017303915131975534 -14731.0,0.017297939603417162 -14732.0,0.017291966138376857 -14733.0,0.01728599473614203 -14734.0,0.01728002539600034 -14735.0,0.01727405811723969 -14736.0,0.01726809289914823 -14737.0,0.017262129741014334 -14738.0,0.01725616864212665 -14739.0,0.017250209601774067 -14740.0,0.017244252619245712 -14741.0,0.017238297693830958 -14742.0,0.01723234482481943 -14743.0,0.017226394011500997 -14744.0,0.017220445253165764 -14745.0,0.017214498549104104 -14746.0,0.01720855389860659 -14747.0,0.01720261130096408 -14748.0,0.017196670755467672 -14749.0,0.017190732261408697 -14750.0,0.01718479581807874 -14751.0,0.01717886142476962 -14752.0,0.017172929080773412 -14753.0,0.017166998785382446 -14754.0,0.01716107053788925 -14755.0,0.017155144337586643 -14756.0,0.01714922018376767 -14757.0,0.017143298075725625 -14758.0,0.017137378012754043 -14759.0,0.017131459994146704 -14760.0,0.017125544019197633 -14761.0,0.017119630087201094 -14762.0,0.017113718197451614 -14763.0,0.017107808349243917 -14764.0,0.01710190054187302 -14765.0,0.01709599477463416 -14766.0,0.017090091046822825 -14767.0,0.01708418935773474 -14768.0,0.017078289706665882 -14769.0,0.01707239209291246 -14770.0,0.017066496515770954 -14771.0,0.017060602974538028 -14772.0,0.01705471146851064 -14773.0,0.01704882199698598 -14774.0,0.017042934559261477 -14775.0,0.017037049154634797 -14776.0,0.01703116578240386 -14777.0,0.017025284441866826 -14778.0,0.0170194051323221 -14779.0,0.017013527853068297 -14780.0,0.017007652603404318 -14781.0,0.017001779382629284 -14782.0,0.016995908190042566 -14783.0,0.01699003902494377 -14784.0,0.016984171886632753 -14785.0,0.0169783067744096 -14786.0,0.016972443687574657 -14787.0,0.016966582625428505 -14788.0,0.016960723587271936 -14789.0,0.016954866572406028 -14790.0,0.016949011580132078 -14791.0,0.016943158609751627 -14792.0,0.01693730766056646 -14793.0,0.016931458731878603 -14794.0,0.01692561182299032 -14795.0,0.01691976693320413 -14796.0,0.016913924061822752 -14797.0,0.016908083208149193 -14798.0,0.016902244371486675 -14799.0,0.016896407551138675 -14800.0,0.016890572746408896 -14801.0,0.01688473995660129 -14802.0,0.01687890918102005 -14803.0,0.016873080418969604 -14804.0,0.016867253669754643 -14805.0,0.016861428932680042 -14806.0,0.016855606207050972 -14807.0,0.016849785492172822 -14808.0,0.016843966787351224 -14809.0,0.01683815009189205 -14810.0,0.016832335405101408 -14811.0,0.01682652272628565 -14812.0,0.016820712054751382 -14813.0,0.016814903389805402 -14814.0,0.016809096730754793 -14815.0,0.01680329207690686 -14816.0,0.016797489427569156 -14817.0,0.016791688782049466 -14818.0,0.016785890139655812 -14819.0,0.01678009349969646 -14820.0,0.016774298861479915 -14821.0,0.01676850622431493 -14822.0,0.01676271558751046 -14823.0,0.01675692695037574 -14824.0,0.01675114031222022 -14825.0,0.016745355672353603 -14826.0,0.01673957303008582 -14827.0,0.016733792384727046 -14828.0,0.016728013735587695 -14829.0,0.016722237081978425 -14830.0,0.016716462423210097 -14831.0,0.01671068975859385 -14832.0,0.016704919087441053 -14833.0,0.0166991504090633 -14834.0,0.01669338372277243 -14835.0,0.01668761902788052 -14836.0,0.016681856323699888 -14837.0,0.01667609560954308 -14838.0,0.016670336884722907 -14839.0,0.016664580148552356 -14840.0,0.01665882540034471 -14841.0,0.01665307263941347 -14842.0,0.016647321865072374 -14843.0,0.016641573076635396 -14844.0,0.016635826273416747 -14845.0,0.016630081454730872 -14846.0,0.016624338619892477 -14847.0,0.016618597768216448 -14848.0,0.016612858899017962 -14849.0,0.016607122011612414 -14850.0,0.016601387105315436 -14851.0,0.01659565417944289 -14852.0,0.016589923233310884 -14853.0,0.01658419426623576 -14854.0,0.0165784672775341 -14855.0,0.016572742266522698 -14856.0,0.016567019232518607 -14857.0,0.016561298174839117 -14858.0,0.016555579092801746 -14859.0,0.016549861985724248 -14860.0,0.016544146852924616 -14861.0,0.016538433693721072 -14862.0,0.016532722507432082 -14863.0,0.016527013293376355 -14864.0,0.016521306050872795 -14865.0,0.016515600779240587 -14866.0,0.01650989747779913 -14867.0,0.016504196145868063 -14868.0,0.01649849678276726 -14869.0,0.016492799387816823 -14870.0,0.016487103960337104 -14871.0,0.016481410499648685 -14872.0,0.016475719005072356 -14873.0,0.01647002947592917 -14874.0,0.016464341911540416 -14875.0,0.016458656311227605 -14876.0,0.016452972674312484 -14877.0,0.01644729100011704 -14878.0,0.01644161128796349 -14879.0,0.016435933537174287 -14880.0,0.01643025774707213 -14881.0,0.016424583916979908 -14882.0,0.01641891204622079 -14883.0,0.016413242134118163 -14884.0,0.016407574179995648 -14885.0,0.0164019081831771 -14886.0,0.016396244142986606 -14887.0,0.01639058205874849 -14888.0,0.016384921929787317 -14889.0,0.01637926375542785 -14890.0,0.01637360753499512 -14891.0,0.016367953267814386 -14892.0,0.01636230095321113 -14893.0,0.016356650590511078 -14894.0,0.016351002179040175 -14895.0,0.016345355718124614 -14896.0,0.016339711207090813 -14897.0,0.016334068645265435 -14898.0,0.01632842803197533 -14899.0,0.016322789366547637 -14900.0,0.016317152648309702 -14901.0,0.016311517876589104 -14902.0,0.016305885050713655 -14903.0,0.0163002541700114 -14904.0,0.016294625233810617 -14905.0,0.01628899824143983 -14906.0,0.01628337319222775 -14907.0,0.016277750085503365 -14908.0,0.016272128920595878 -14909.0,0.016266509696834727 -14910.0,0.016260892413549576 -14911.0,0.01625527707007033 -14912.0,0.016249663665727113 -14913.0,0.01624405219985029 -14914.0,0.016238442671770468 -14915.0,0.016232835080818443 -14916.0,0.016227229426325283 -14917.0,0.01622162570762228 -14918.0,0.016216023924040944 -14919.0,0.016210424074913025 -14920.0,0.0162048261595705 -14921.0,0.016199230177345585 -14922.0,0.01619363612757073 -14923.0,0.016188044009578576 -14924.0,0.01618245382270204 -14925.0,0.01617686556627426 -14926.0,0.016171279239628585 -14927.0,0.016165694842098614 -14928.0,0.016160112373018166 -14929.0,0.0161545318317213 -14930.0,0.016148953217542304 -14931.0,0.016143376529815668 -14932.0,0.016137801767876145 -14933.0,0.016132228931058704 -14934.0,0.01612665801869855 -14935.0,0.016121089030131115 -14936.0,0.016115521964692056 -14937.0,0.016109956821717265 -14938.0,0.01610439360054286 -14939.0,0.0160988323005052 -14940.0,0.016093272920940843 -14941.0,0.0160877154611866 -14942.0,0.01608215992057951 -14943.0,0.01607660629845684 -14944.0,0.016071054594156083 -14945.0,0.016065504807014956 -14946.0,0.016059956936371418 -14947.0,0.016054410981563655 -14948.0,0.01604886694193005 -14949.0,0.016043324816809253 -14950.0,0.01603778460554013 -14951.0,0.016032246307461778 -14952.0,0.01602670992191351 -14953.0,0.016021175448234882 -14954.0,0.016015642885765666 -14955.0,0.016010112233845873 -14956.0,0.016004583491815747 -14957.0,0.015999056659015725 -14958.0,0.015993531734786508 -14959.0,0.01598800871846901 -14960.0,0.01598248760940438 -14961.0,0.01597696840693399 -14962.0,0.015971451110399437 -14963.0,0.015965935719142548 -14964.0,0.015960422232505392 -14965.0,0.01595491064983022 -14966.0,0.015949400970459555 -14967.0,0.015943893193736135 -14968.0,0.015938387319002923 -14969.0,0.015932883345603104 -14970.0,0.015927381272880094 -14971.0,0.015921881100177542 -14972.0,0.015916382826839312 -14973.0,0.015910886452209515 -14974.0,0.015905391975632448 -14975.0,0.01589989939645267 -14976.0,0.01589440871401496 -14977.0,0.015888919927664318 -14978.0,0.015883433036745973 -14979.0,0.015877948040605376 -14980.0,0.01587246493858821 -14981.0,0.015866983730040394 -14982.0,0.01586150441430803 -14983.0,0.015856026990737494 -14984.0,0.015850551458675366 -14985.0,0.015845077817468453 -14986.0,0.015839606066463795 -14987.0,0.015834136205008648 -14988.0,0.015828668232450497 -14989.0,0.015823202148137056 -14990.0,0.01581773795141627 -14991.0,0.01581227564163628 -14992.0,0.015806815218145476 -14993.0,0.015801356680292478 -14994.0,0.01579590002742612 -14995.0,0.01579044525889546 -14996.0,0.01578499237404979 -14997.0,0.015779541372238613 -14998.0,0.01577409225281168 -14999.0,0.015768645015118928 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516204000_theo_VPR_VPR.png b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516204000_theo_VPR_VPR.png deleted file mode 100644 index 575c249..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516204000_theo_VPR_VPR.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516204500_theo_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516204500_theo_VPR_VPR.csv deleted file mode 100644 index bb3346c..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516204500_theo_VPR_VPR.csv +++ /dev/null @@ -1,15008 +0,0 @@ -# Height Profile -# ============== -# -# Datatype (Unit) : normalized reflectivity (-) -# Fill value : -9999.0 -# Time : 2020-05-16 20:45:00 -# Sector specification: None -Altitude [m MSL],Znorm -0.0,1.0 -1.0,1.0 -2.0,1.0 -3.0,1.0 -4.0,1.0 -5.0,1.0 -6.0,1.0 -7.0,1.0 -8.0,1.0 -9.0,1.0 -10.0,1.0 -11.0,1.0 -12.0,1.0 -13.0,1.0 -14.0,1.0 -15.0,1.0 -16.0,1.0 -17.0,1.0 -18.0,1.0 -19.0,1.0 -20.0,1.0 -21.0,1.0 -22.0,1.0 -23.0,1.0 -24.0,1.0 -25.0,1.0 -26.0,1.0 -27.0,1.0 -28.0,1.0 -29.0,1.0 -30.0,1.0 -31.0,1.0 -32.0,1.0 -33.0,1.0 -34.0,1.0 -35.0,1.0 -36.0,1.0 -37.0,1.0 -38.0,1.0 -39.0,1.0 -40.0,1.0 -41.0,1.0 -42.0,1.0 -43.0,1.0 -44.0,1.0 -45.0,1.0 -46.0,1.0 -47.0,1.0 -48.0,1.0 -49.0,1.0 -50.0,1.0 -51.0,1.0 -52.0,1.0 -53.0,1.0 -54.0,1.0 -55.0,1.0 -56.0,1.0 -57.0,1.0 -58.0,1.0 -59.0,1.0 -60.0,1.0 -61.0,1.0 -62.0,1.0 -63.0,1.0 -64.0,1.0 -65.0,1.0 -66.0,1.0 -67.0,1.0 -68.0,1.0 -69.0,1.0 -70.0,1.0 -71.0,1.0 -72.0,1.0 -73.0,1.0 -74.0,1.0 -75.0,1.0 -76.0,1.0 -77.0,1.0 -78.0,1.0 -79.0,1.0 -80.0,1.0 -81.0,1.0 -82.0,1.0 -83.0,1.0 -84.0,1.0 -85.0,1.0 -86.0,1.0 -87.0,1.0 -88.0,1.0 -89.0,1.0 -90.0,1.0 -91.0,1.0 -92.0,1.0 -93.0,1.0 -94.0,1.0 -95.0,1.0 -96.0,1.0 -97.0,1.0 -98.0,1.0 -99.0,1.0 -100.0,1.0 -101.0,1.0 -102.0,1.0 -103.0,1.0 -104.0,1.0 -105.0,1.0 -106.0,1.0 -107.0,1.0 -108.0,1.0 -109.0,1.0 -110.0,1.0 -111.0,1.0 -112.0,1.0 -113.0,1.0 -114.0,1.0 -115.0,1.0 -116.0,1.0 -117.0,1.0 -118.0,1.0 -119.0,1.0 -120.0,1.0 -121.0,1.0 -122.0,1.0 -123.0,1.0 -124.0,1.0 -125.0,1.0 -126.0,1.0 -127.0,1.0 -128.0,1.0 -129.0,1.0 -130.0,1.0 -131.0,1.0 -132.0,1.0 -133.0,1.0 -134.0,1.0 -135.0,1.0 -136.0,1.0 -137.0,1.0 -138.0,1.0 -139.0,1.0 -140.0,1.0 -141.0,1.0 -142.0,1.0 -143.0,1.0 -144.0,1.0 -145.0,1.0 -146.0,1.0 -147.0,1.0 -148.0,1.0 -149.0,1.0 -150.0,1.0 -151.0,1.0 -152.0,1.0 -153.0,1.0 -154.0,1.0 -155.0,1.0 -156.0,1.0 -157.0,1.0 -158.0,1.0 -159.0,1.0 -160.0,1.0 -161.0,1.0 -162.0,1.0 -163.0,1.0 -164.0,1.0 -165.0,1.0 -166.0,1.0 -167.0,1.0 -168.0,1.0 -169.0,1.0 -170.0,1.0 -171.0,1.0 -172.0,1.0 -173.0,1.0 -174.0,1.0 -175.0,1.0 -176.0,1.0 -177.0,1.0 -178.0,1.0 -179.0,1.0 -180.0,1.0 -181.0,1.0 -182.0,1.0 -183.0,1.0 -184.0,1.0 -185.0,1.0 -186.0,1.0 -187.0,1.0 -188.0,1.0 -189.0,1.0 -190.0,1.0 -191.0,1.0 -192.0,1.0 -193.0,1.0 -194.0,1.0 -195.0,1.0 -196.0,1.0 -197.0,1.0 -198.0,1.0 -199.0,1.0 -200.0,1.0 -201.0,1.0 -202.0,1.0 -203.0,1.0 -204.0,1.0 -205.0,1.0 -206.0,1.0 -207.0,1.0 -208.0,1.0 -209.0,1.0 -210.0,1.0 -211.0,1.0 -212.0,1.0 -213.0,1.0 -214.0,1.0 -215.0,1.0 -216.0,1.0 -217.0,1.0 -218.0,1.0 -219.0,1.0 -220.0,1.0 -221.0,1.0 -222.0,1.0 -223.0,1.0 -224.0,1.0 -225.0,1.0 -226.0,1.0 -227.0,1.0 -228.0,1.0 -229.0,1.0 -230.0,1.0 -231.0,1.0 -232.0,1.0 -233.0,1.0 -234.0,1.0 -235.0,1.0 -236.0,1.0 -237.0,1.0 -238.0,1.0 -239.0,1.0 -240.0,1.0 -241.0,1.0 -242.0,1.0 -243.0,1.0 -244.0,1.0 -245.0,1.0 -246.0,1.0 -247.0,1.0 -248.0,1.0 -249.0,1.0 -250.0,1.0 -251.0,1.0 -252.0,1.0 -253.0,1.0 -254.0,1.0 -255.0,1.0 -256.0,1.0 -257.0,1.0 -258.0,1.0 -259.0,1.0 -260.0,1.0 -261.0,1.0 -262.0,1.0 -263.0,1.0 -264.0,1.0 -265.0,1.0 -266.0,1.0 -267.0,1.0 -268.0,1.0 -269.0,1.0 -270.0,1.0 -271.0,1.0 -272.0,1.0 -273.0,1.0 -274.0,1.0 -275.0,1.0 -276.0,1.0 -277.0,1.0 -278.0,1.0 -279.0,1.0 -280.0,1.0 -281.0,1.0 -282.0,1.0 -283.0,1.0 -284.0,1.0 -285.0,1.0 -286.0,1.0 -287.0,1.0 -288.0,1.0 -289.0,1.0 -290.0,1.0 -291.0,1.0 -292.0,1.0 -293.0,1.0 -294.0,1.0 -295.0,1.0 -296.0,1.0 -297.0,1.0 -298.0,1.0 -299.0,1.0 -300.0,1.0 -301.0,1.0 -302.0,1.0 -303.0,1.0 -304.0,1.0 -305.0,1.0 -306.0,1.0 -307.0,1.0 -308.0,1.0 -309.0,1.0 -310.0,1.0 -311.0,1.0 -312.0,1.0 -313.0,1.0 -314.0,1.0 -315.0,1.0 -316.0,1.0 -317.0,1.0 -318.0,1.0 -319.0,1.0 -320.0,1.0 -321.0,1.0 -322.0,1.0 -323.0,1.0 -324.0,1.0 -325.0,1.0 -326.0,1.0 -327.0,1.0 -328.0,1.0 -329.0,1.0 -330.0,1.0 -331.0,1.0 -332.0,1.0 -333.0,1.0 -334.0,1.0 -335.0,1.0 -336.0,1.0 -337.0,1.0 -338.0,1.0 -339.0,1.0 -340.0,1.0 -341.0,1.0 -342.0,1.0 -343.0,1.0 -344.0,1.0 -345.0,1.0 -346.0,1.0 -347.0,1.0 -348.0,1.0 -349.0,1.0 -350.0,1.0 -351.0,1.0 -352.0,1.0 -353.0,1.0 -354.0,1.0 -355.0,1.0 -356.0,1.0 -357.0,1.0 -358.0,1.0 -359.0,1.0 -360.0,1.0 -361.0,1.0 -362.0,1.0 -363.0,1.0 -364.0,1.0 -365.0,1.0 -366.0,1.0 -367.0,1.0 -368.0,1.0 -369.0,1.0 -370.0,1.0 -371.0,1.0 -372.0,1.0 -373.0,1.0 -374.0,1.0 -375.0,1.0 -376.0,1.0 -377.0,1.0 -378.0,1.0 -379.0,1.0 -380.0,1.0 -381.0,1.0 -382.0,1.0 -383.0,1.0 -384.0,1.0 -385.0,1.0 -386.0,1.0 -387.0,1.0 -388.0,1.0 -389.0,1.0 -390.0,1.0 -391.0,1.0 -392.0,1.0 -393.0,1.0 -394.0,1.0 -395.0,1.0 -396.0,1.0 -397.0,1.0 -398.0,1.0 -399.0,1.0 -400.0,1.0 -401.0,1.0 -402.0,1.0 -403.0,1.0 -404.0,1.0 -405.0,1.0 -406.0,1.0 -407.0,1.0 -408.0,1.0 -409.0,1.0 -410.0,1.0 -411.0,1.0 -412.0,1.0 -413.0,1.0 -414.0,1.0 -415.0,1.0 -416.0,1.0 -417.0,1.0 -418.0,1.0 -419.0,1.0 -420.0,1.0 -421.0,1.0 -422.0,1.0 -423.0,1.0 -424.0,1.0 -425.0,1.0 -426.0,1.0 -427.0,1.0 -428.0,1.0 -429.0,1.0 -430.0,1.0 -431.0,1.0 -432.0,1.0 -433.0,1.0 -434.0,1.0 -435.0,1.0 -436.0,1.0 -437.0,1.0 -438.0,1.0 -439.0,1.0 -440.0,1.0 -441.0,1.0 -442.0,1.0 -443.0,1.0 -444.0,1.0 -445.0,1.0 -446.0,1.0 -447.0,1.0 -448.0,1.0 -449.0,1.0 -450.0,1.0 -451.0,1.0 -452.0,1.0 -453.0,1.0 -454.0,1.0 -455.0,1.0 -456.0,1.0 -457.0,1.0 -458.0,1.0 -459.0,1.0 -460.0,1.0 -461.0,1.0 -462.0,1.0 -463.0,1.0 -464.0,1.0 -465.0,1.0 -466.0,1.0 -467.0,1.0 -468.0,1.0 -469.0,1.0 -470.0,1.0 -471.0,1.0 -472.0,1.0 -473.0,1.0 -474.0,1.0 -475.0,1.0 -476.0,1.0 -477.0,1.0 -478.0,1.0 -479.0,1.0 -480.0,1.0 -481.0,1.0 -482.0,1.0 -483.0,1.0 -484.0,1.0 -485.0,1.0 -486.0,1.0 -487.0,1.0 -488.0,1.0 -489.0,1.0 -490.0,1.0 -491.0,1.0 -492.0,1.0 -493.0,1.0 -494.0,1.0 -495.0,1.0 -496.0,1.0 -497.0,1.0 -498.0,1.0 -499.0,1.0 -500.0,1.0 -501.0,1.0 -502.0,1.0 -503.0,1.0 -504.0,1.0 -505.0,1.0 -506.0,1.0 -507.0,1.0 -508.0,1.0 -509.0,1.0 -510.0,1.0 -511.0,1.0 -512.0,1.0 -513.0,1.0 -514.0,1.0 -515.0,1.0 -516.0,1.0 -517.0,1.0 -518.0,1.0 -519.0,1.0 -520.0,1.0 -521.0,1.0 -522.0,1.0 -523.0,1.0 -524.0,1.0 -525.0,1.0 -526.0,1.0 -527.0,1.0 -528.0,1.0 -529.0,1.0 -530.0,1.0 -531.0,1.0 -532.0,1.0 -533.0,1.0 -534.0,1.0 -535.0,1.0 -536.0,1.0 -537.0,1.0 -538.0,1.0 -539.0,1.0 -540.0,1.0 -541.0,1.0 -542.0,1.0 -543.0,1.0 -544.0,1.0 -545.0,1.0 -546.0,1.0 -547.0,1.0 -548.0,1.0 -549.0,1.0 -550.0,1.0 -551.0,1.0 -552.0,1.0 -553.0,1.0 -554.0,1.0 -555.0,1.0 -556.0,1.0 -557.0,1.0 -558.0,1.0 -559.0,1.0 -560.0,1.0 -561.0,1.0 -562.0,1.0 -563.0,1.0 -564.0,1.0 -565.0,1.0 -566.0,1.0 -567.0,1.0 -568.0,1.0 -569.0,1.0 -570.0,1.0 -571.0,1.0 -572.0,1.0 -573.0,1.0 -574.0,1.0 -575.0,1.0 -576.0,1.0 -577.0,1.0 -578.0,1.0 -579.0,1.0 -580.0,1.0 -581.0,1.0 -582.0,1.0 -583.0,1.0 -584.0,1.0 -585.0,1.0 -586.0,1.0 -587.0,1.0 -588.0,1.0 -589.0,1.0 -590.0,1.0 -591.0,1.0 -592.0,1.0 -593.0,1.0 -594.0,1.0 -595.0,1.0 -596.0,1.0 -597.0,1.0 -598.0,1.0 -599.0,1.0 -600.0,1.0 -601.0,1.0 -602.0,1.0 -603.0,1.0 -604.0,1.0 -605.0,1.0 -606.0,1.0 -607.0,1.0 -608.0,1.0 -609.0,1.0 -610.0,1.0 -611.0,1.0 -612.0,1.0 -613.0,1.0 -614.0,1.0 -615.0,1.0 -616.0,1.0 -617.0,1.0 -618.0,1.0 -619.0,1.0 -620.0,1.0 -621.0,1.0 -622.0,1.0 -623.0,1.0 -624.0,1.0 -625.0,1.0 -626.0,1.0 -627.0,1.0 -628.0,1.0 -629.0,1.0 -630.0,1.0 -631.0,1.0 -632.0,1.0 -633.0,1.0 -634.0,1.0 -635.0,1.0 -636.0,1.0 -637.0,1.0 -638.0,1.0 -639.0,1.0 -640.0,1.0 -641.0,1.0 -642.0,1.0 -643.0,1.0 -644.0,1.0 -645.0,1.0 -646.0,1.0 -647.0,1.0 -648.0,1.0 -649.0,1.0 -650.0,1.0 -651.0,1.0 -652.0,1.0 -653.0,1.0 -654.0,1.0 -655.0,1.0 -656.0,1.0 -657.0,1.0 -658.0,1.0 -659.0,1.0 -660.0,1.0 -661.0,1.0 -662.0,1.0 -663.0,1.0 -664.0,1.0 -665.0,1.0 -666.0,1.0 -667.0,1.0 -668.0,1.0 -669.0,1.0 -670.0,1.0 -671.0,1.0 -672.0,1.0 -673.0,1.0 -674.0,1.0 -675.0,1.0 -676.0,1.0 -677.0,1.0 -678.0,1.0 -679.0,1.0 -680.0,1.0 -681.0,1.0 -682.0,1.0 -683.0,1.0 -684.0,1.0 -685.0,1.0 -686.0,1.0 -687.0,1.0 -688.0,1.0 -689.0,1.0 -690.0,1.0 -691.0,1.0 -692.0,1.0 -693.0,1.0 -694.0,1.0 -695.0,1.0 -696.0,1.0 -697.0,1.0 -698.0,1.0 -699.0,1.0 -700.0,1.0 -701.0,1.0 -702.0,1.0 -703.0,1.0 -704.0,1.0 -705.0,1.0 -706.0,1.0 -707.0,1.0 -708.0,1.0 -709.0,1.0 -710.0,1.0 -711.0,1.0 -712.0,1.0 -713.0,1.0 -714.0,1.0 -715.0,1.0 -716.0,1.0 -717.0,1.0 -718.0,1.0 -719.0,1.0 -720.0,1.0 -721.0,1.0 -722.0,1.0 -723.0,1.0 -724.0,1.0 -725.0,1.0 -726.0,1.0 -727.0,1.0 -728.0,1.0 -729.0,1.0 -730.0,1.0 -731.0,1.0 -732.0,1.0 -733.0,1.0 -734.0,1.0 -735.0,1.0 -736.0,1.0 -737.0,1.0 -738.0,1.0 -739.0,1.0 -740.0,1.0 -741.0,1.0 -742.0,1.0 -743.0,1.0 -744.0,1.0 -745.0,1.0 -746.0,1.0 -747.0,1.0 -748.0,1.0 -749.0,1.0 -750.0,1.0 -751.0,1.0 -752.0,1.0 -753.0,1.0 -754.0,1.0 -755.0,1.0 -756.0,1.0 -757.0,1.0 -758.0,1.0 -759.0,1.0 -760.0,1.0 -761.0,1.0 -762.0,1.0 -763.0,1.0 -764.0,1.0 -765.0,1.0 -766.0,1.0 -767.0,1.0 -768.0,1.0 -769.0,1.0 -770.0,1.0 -771.0,1.0 -772.0,1.0 -773.0,1.0 -774.0,1.0 -775.0,1.0 -776.0,1.0 -777.0,1.0 -778.0,1.0 -779.0,1.0 -780.0,1.0 -781.0,1.0 -782.0,1.0 -783.0,1.0 -784.0,1.0 -785.0,1.0 -786.0,1.0 -787.0,1.0 -788.0,1.0 -789.0,1.0 -790.0,1.0 -791.0,1.0 -792.0,1.0 -793.0,1.0 -794.0,1.0 -795.0,1.0 -796.0,1.0 -797.0,1.0 -798.0,1.0 -799.0,1.0 -800.0,1.0 -801.0,1.0 -802.0,1.0 -803.0,1.0 -804.0,1.0 -805.0,1.0 -806.0,1.0 -807.0,1.0 -808.0,1.0 -809.0,1.0 -810.0,1.0 -811.0,1.0 -812.0,1.0 -813.0,1.0 -814.0,1.0 -815.0,1.0 -816.0,1.0 -817.0,1.0 -818.0,1.0 -819.0,1.0 -820.0,1.0 -821.0,1.0 -822.0,1.0 -823.0,1.0 -824.0,1.0 -825.0,1.0 -826.0,1.0 -827.0,1.0 -828.0,1.0 -829.0,1.0 -830.0,1.0 -831.0,1.0 -832.0,1.0 -833.0,1.0 -834.0,1.0 -835.0,1.0 -836.0,1.0 -837.0,1.0 -838.0,1.0 -839.0,1.0 -840.0,1.0 -841.0,1.0 -842.0,1.0 -843.0,1.0 -844.0,1.0 -845.0,1.0 -846.0,1.0 -847.0,1.0 -848.0,1.0 -849.0,1.0 -850.0,1.0 -851.0,1.0 -852.0,1.0 -853.0,1.0 -854.0,1.0 -855.0,1.0 -856.0,1.0 -857.0,1.0 -858.0,1.0 -859.0,1.0 -860.0,1.0 -861.0,1.0 -862.0,1.0 -863.0,1.0 -864.0,1.0 -865.0,1.0 -866.0,1.0 -867.0,1.0 -868.0,1.0 -869.0,1.0 -870.0,1.0 -871.0,1.0 -872.0,1.0 -873.0,1.0 -874.0,1.0 -875.0,1.0 -876.0,1.0 -877.0,1.0 -878.0,1.0 -879.0,1.0 -880.0,1.0 -881.0,1.0 -882.0,1.0 -883.0,1.0 -884.0,1.0 -885.0,1.0 -886.0,1.0 -887.0,1.0 -888.0,1.0 -889.0,1.0 -890.0,1.0 -891.0,1.0 -892.0,1.0 -893.0,1.0 -894.0,1.0 -895.0,1.0 -896.0,1.0 -897.0,1.0 -898.0,1.0 -899.0,1.0 -900.0,1.0 -901.0,1.0 -902.0,1.0 -903.0,1.0 -904.0,1.0 -905.0,1.0 -906.0,1.0 -907.0,1.0 -908.0,1.0 -909.0,1.0 -910.0,1.0 -911.0,1.0 -912.0,1.0 -913.0,1.0 -914.0,1.0 -915.0,1.0 -916.0,1.0 -917.0,1.0 -918.0,1.0 -919.0,1.0 -920.0,1.0 -921.0,1.0 -922.0,1.0 -923.0,1.0 -924.0,1.0 -925.0,1.0 -926.0,1.0 -927.0,1.0 -928.0,1.0 -929.0,1.0 -930.0,1.0 -931.0,1.0 -932.0,1.0 -933.0,1.0 -934.0,1.0 -935.0,1.0 -936.0,1.0 -937.0,1.0 -938.0,1.0 -939.0,1.0 -940.0,1.0 -941.0,1.0 -942.0,1.0 -943.0,1.0 -944.0,1.0 -945.0,1.0 -946.0,1.0 -947.0,1.0 -948.0,1.0 -949.0,1.0 -950.0,1.0 -951.0,1.0 -952.0,1.0 -953.0,1.0 -954.0,1.0 -955.0,1.0 -956.0,1.0 -957.0,1.0 -958.0,1.0 -959.0,1.0 -960.0,1.0 -961.0,1.0 -962.0,1.0 -963.0,1.0 -964.0,1.0 -965.0,1.0 -966.0,1.0 -967.0,1.0 -968.0,1.0 -969.0,1.0 -970.0,1.0 -971.0,1.0 -972.0,1.0 -973.0,1.0 -974.0,1.0 -975.0,1.0 -976.0,1.0 -977.0,1.0 -978.0,1.0 -979.0,1.0 -980.0,1.0 -981.0,1.0 -982.0,1.0 -983.0,1.0 -984.0,1.0 -985.0,1.0 -986.0,1.0 -987.0,1.0 -988.0,1.0 -989.0,1.0 -990.0,1.0 -991.0,1.0 -992.0,1.0 -993.0,1.0 -994.0,1.0 -995.0,1.0 -996.0,1.0 -997.0,1.0 -998.0,1.0 -999.0,1.0 -1000.0,1.0 -1001.0,1.0 -1002.0,1.0 -1003.0,1.0 -1004.0,1.0 -1005.0,1.0 -1006.0,1.0 -1007.0,1.0 -1008.0,1.0 -1009.0,1.0 -1010.0,1.0 -1011.0,1.0 -1012.0,1.0 -1013.0,1.0 -1014.0,1.0 -1015.0,1.0 -1016.0,1.0 -1017.0,1.0 -1018.0,1.0 -1019.0,1.0 -1020.0,1.0 -1021.0,1.0 -1022.0,1.0 -1023.0,1.0 -1024.0,1.0 -1025.0,1.0 -1026.0,1.0 -1027.0,1.0 -1028.0,1.0 -1029.0,1.0 -1030.0,1.0 -1031.0,1.0 -1032.0,1.0 -1033.0,1.0 -1034.0,1.0 -1035.0,1.0 -1036.0,1.0 -1037.0,1.0 -1038.0,1.0 -1039.0,1.0 -1040.0,1.0 -1041.0,1.0 -1042.0,1.0 -1043.0,1.0 -1044.0,1.0 -1045.0,1.0 -1046.0,1.0 -1047.0,1.0 -1048.0,1.0 -1049.0,1.0 -1050.0,1.0 -1051.0,1.0 -1052.0,1.0 -1053.0,1.0 -1054.0,1.0 -1055.0,1.0 -1056.0,1.0 -1057.0,1.0 -1058.0,1.0 -1059.0,1.0 -1060.0,1.0 -1061.0,1.0 -1062.0,1.0 -1063.0,1.0 -1064.0,1.0 -1065.0,1.0 -1066.0,1.0 -1067.0,1.0 -1068.0,1.0 -1069.0,1.0 -1070.0,1.0 -1071.0,1.0 -1072.0,1.0 -1073.0,1.0 -1074.0,1.0 -1075.0,1.0 -1076.0,1.0 -1077.0,1.0 -1078.0,1.0 -1079.0,1.0 -1080.0,1.0 -1081.0,1.0 -1082.0,1.0 -1083.0,1.0 -1084.0,1.0 -1085.0,1.0 -1086.0,1.0 -1087.0,1.0 -1088.0,1.0 -1089.0,1.0 -1090.0,1.0 -1091.0,1.0 -1092.0,1.0 -1093.0,1.0 -1094.0,1.0 -1095.0,1.0 -1096.0,1.0 -1097.0,1.0 -1098.0,1.0 -1099.0,1.0 -1100.0,1.0 -1101.0,1.0 -1102.0,1.0 -1103.0,1.0 -1104.0,1.0 -1105.0,1.0 -1106.0,1.0 -1107.0,1.0 -1108.0,1.0 -1109.0,1.0 -1110.0,1.0 -1111.0,1.0 -1112.0,1.0 -1113.0,1.0 -1114.0,1.0 -1115.0,1.0 -1116.0,1.0 -1117.0,1.0 -1118.0,1.0 -1119.0,1.0 -1120.0,1.0 -1121.0,1.0 -1122.0,1.0 -1123.0,1.0 -1124.0,1.0 -1125.0,1.0 -1126.0,1.0 -1127.0,1.0 -1128.0,1.0 -1129.0,1.0 -1130.0,1.0 -1131.0,1.0 -1132.0,1.0 -1133.0,1.0 -1134.0,1.0 -1135.0,1.0 -1136.0,1.0 -1137.0,1.0 -1138.0,1.0 -1139.0,1.0 -1140.0,1.0 -1141.0,1.0 -1142.0,1.0 -1143.0,1.0 -1144.0,1.0 -1145.0,1.0 -1146.0,1.0 -1147.0,1.0 -1148.0,1.0 -1149.0,1.0 -1150.0,1.0 -1151.0,1.0 -1152.0,1.0 -1153.0,1.0 -1154.0,1.0 -1155.0,1.0 -1156.0,1.0 -1157.0,1.0 -1158.0,1.0 -1159.0,1.0 -1160.0,1.0 -1161.0,1.0 -1162.0,1.0 -1163.0,1.0 -1164.0,1.0 -1165.0,1.0 -1166.0,1.0 -1167.0,1.0 -1168.0,1.0 -1169.0,1.0 -1170.0,1.0 -1171.0,1.0 -1172.0,1.0 -1173.0,1.0 -1174.0,1.0 -1175.0,1.0 -1176.0,1.0 -1177.0,1.0 -1178.0,1.0 -1179.0,1.0 -1180.0,1.0 -1181.0,1.0 -1182.0,1.0 -1183.0,1.0 -1184.0,1.0 -1185.0,1.0 -1186.0,1.0 -1187.0,1.0 -1188.0,1.0 -1189.0,1.0 -1190.0,1.0 -1191.0,1.0 -1192.0,1.0 -1193.0,1.0 -1194.0,1.0 -1195.0,1.0 -1196.0,1.0 -1197.0,1.0 -1198.0,1.0 -1199.0,1.0 -1200.0,1.0 -1201.0,1.0 -1202.0,1.0 -1203.0,1.0 -1204.0,1.0 -1205.0,1.0 -1206.0,1.0 -1207.0,1.0 -1208.0,1.0 -1209.0,1.0 -1210.0,1.0 -1211.0,1.0 -1212.0,1.0 -1213.0,1.0 -1214.0,1.0 -1215.0,1.0 -1216.0,1.0 -1217.0,1.0 -1218.0,1.0 -1219.0,1.0 -1220.0,1.0 -1221.0,1.0 -1222.0,1.0 -1223.0,1.0 -1224.0,1.0 -1225.0,1.0 -1226.0,1.0 -1227.0,1.0 -1228.0,1.0 -1229.0,1.0 -1230.0,1.0 -1231.0,1.0 -1232.0,1.0 -1233.0,1.0 -1234.0,1.0 -1235.0,1.0 -1236.0,1.0 -1237.0,1.0 -1238.0,1.0 -1239.0,1.0 -1240.0,1.0 -1241.0,1.0 -1242.0,1.0 -1243.0,1.0 -1244.0,1.0 -1245.0,1.0 -1246.0,1.0 -1247.0,1.0 -1248.0,1.0 -1249.0,1.0 -1250.0,1.0 -1251.0,1.0 -1252.0,1.0 -1253.0,1.0 -1254.0,1.0 -1255.0,1.0 -1256.0,1.0 -1257.0,1.0 -1258.0,1.0 -1259.0,1.0 -1260.0,1.0 -1261.0,1.0 -1262.0,1.0 -1263.0,1.0 -1264.0,1.0 -1265.0,1.0 -1266.0,1.0 -1267.0,1.0 -1268.0,1.0 -1269.0,1.0 -1270.0,1.0 -1271.0,1.0 -1272.0,1.0 -1273.0,1.0 -1274.0,1.0 -1275.0,1.0 -1276.0,1.0 -1277.0,1.0 -1278.0,1.0 -1279.0,1.0 -1280.0,1.0 -1281.0,1.0 -1282.0,1.0 -1283.0,1.0 -1284.0,1.0 -1285.0,1.0 -1286.0,1.0 -1287.0,1.0 -1288.0,1.0 -1289.0,1.0 -1290.0,1.0 -1291.0,1.0 -1292.0,1.0 -1293.0,1.0 -1294.0,1.0 -1295.0,1.0 -1296.0,1.0 -1297.0,1.0 -1298.0,1.0 -1299.0,1.0 -1300.0,1.0 -1301.0,1.0 -1302.0,1.0 -1303.0,1.0 -1304.0,1.0 -1305.0,1.0 -1306.0,1.0 -1307.0,1.0 -1308.0,1.0 -1309.0,1.0 -1310.0,1.0 -1311.0,1.0 -1312.0,1.0 -1313.0,1.0 -1314.0,1.0 -1315.0,1.0 -1316.0,1.0 -1317.0,1.0 -1318.0,1.0 -1319.0,1.0 -1320.0,1.0 -1321.0,1.0 -1322.0,1.0 -1323.0,1.0 -1324.0,1.0 -1325.0,1.0 -1326.0,1.0 -1327.0,1.0 -1328.0,1.0 -1329.0,1.0 -1330.0,1.0 -1331.0,1.0 -1332.0,1.0 -1333.0,1.0 -1334.0,1.0 -1335.0,1.0 -1336.0,1.0 -1337.0,1.0 -1338.0,1.0 -1339.0,1.0 -1340.0,1.0 -1341.0,1.0 -1342.0,1.0 -1343.0,1.0 -1344.0,1.0 -1345.0,1.0 -1346.0,1.0 -1347.0,1.0 -1348.0,1.0 -1349.0,1.0 -1350.0,1.0 -1351.0,1.0 -1352.0,1.0 -1353.0,1.0 -1354.0,1.0 -1355.0,1.0 -1356.0,1.0 -1357.0,1.0 -1358.0,1.0 -1359.0,1.0 -1360.0,1.0 -1361.0,1.0 -1362.0,1.0 -1363.0,1.0 -1364.0,1.0 -1365.0,1.0 -1366.0,1.0 -1367.0,1.0 -1368.0,1.0 -1369.0,1.0 -1370.0,1.0 -1371.0,1.0 -1372.0,1.0 -1373.0,1.0 -1374.0,1.0 -1375.0,1.0 -1376.0,1.0 -1377.0,1.0 -1378.0,1.0 -1379.0,1.0 -1380.0,1.0 -1381.0,1.0 -1382.0,1.0 -1383.0,1.0 -1384.0,1.0 -1385.0,1.0 -1386.0,1.0 -1387.0,1.0 -1388.0,1.0 -1389.0,1.0 -1390.0,1.0 -1391.0,1.0 -1392.0,1.0 -1393.0,1.0 -1394.0,1.0 -1395.0,1.0 -1396.0,1.0 -1397.0,1.0 -1398.0,1.0 -1399.0,1.0 -1400.0,1.0 -1401.0,1.0 -1402.0,1.0 -1403.0,1.0 -1404.0,1.0 -1405.0,1.0 -1406.0,1.0 -1407.0,1.0 -1408.0,1.0 -1409.0,1.0 -1410.0,1.0 -1411.0,1.0 -1412.0,1.0 -1413.0,1.0 -1414.0,1.0 -1415.0,1.0 -1416.0,1.0 -1417.0,1.0 -1418.0,1.0 -1419.0,1.0 -1420.0,1.0 -1421.0,1.0 -1422.0,1.0 -1423.0,1.0 -1424.0,1.0 -1425.0,1.0 -1426.0,1.0 -1427.0,1.0 -1428.0,1.0 -1429.0,1.0 -1430.0,1.0 -1431.0,1.0 -1432.0,1.0 -1433.0,1.0 -1434.0,1.0 -1435.0,1.0 -1436.0,1.0 -1437.0,1.0 -1438.0,1.0 -1439.0,1.0 -1440.0,1.0 -1441.0,1.0 -1442.0,1.0 -1443.0,1.0 -1444.0,1.0 -1445.0,1.0 -1446.0,1.0 -1447.0,1.0 -1448.0,1.0 -1449.0,1.0 -1450.0,1.0 -1451.0,1.0 -1452.0,1.0 -1453.0,1.0 -1454.0,1.0 -1455.0,1.0 -1456.0,1.0 -1457.0,1.0 -1458.0,1.0 -1459.0,1.0 -1460.0,1.0 -1461.0,1.0 -1462.0,1.0 -1463.0,1.0 -1464.0,1.0 -1465.0,1.0 -1466.0,1.0 -1467.0,1.0 -1468.0,1.0 -1469.0,1.0 -1470.0,1.0 -1471.0,1.0 -1472.0,1.0 -1473.0,1.0 -1474.0,1.0 -1475.0,1.0 -1476.0,1.0 -1477.0,1.0 -1478.0,1.0 -1479.0,1.0 -1480.0,1.0 -1481.0,1.0 -1482.0,1.0 -1483.0,1.0 -1484.0,1.0 -1485.0,1.0 -1486.0,1.0 -1487.0,1.0 -1488.0,1.0 -1489.0,1.0 -1490.0,1.0 -1491.0,1.0 -1492.0,1.0 -1493.0,1.0 -1494.0,1.0 -1495.0,1.0 -1496.0,1.0 -1497.0,1.0 -1498.0,1.0 -1499.0,1.0 -1500.0,1.0 -1501.0,1.0 -1502.0,1.0 -1503.0,1.0 -1504.0,1.0 -1505.0,1.0 -1506.0,1.0 -1507.0,1.0 -1508.0,1.0 -1509.0,1.0 -1510.0,1.0 -1511.0,1.0 -1512.0,1.0 -1513.0,1.0 -1514.0,1.0 -1515.0,1.0 -1516.0,1.0 -1517.0,1.0 -1518.0,1.0 -1519.0,1.0 -1520.0,1.0 -1521.0,1.0 -1522.0,1.0 -1523.0,1.0 -1524.0,1.0 -1525.0,1.0 -1526.0,1.0 -1527.0,1.0 -1528.0,1.0 -1529.0,1.0 -1530.0,1.0 -1531.0,1.0 -1532.0,1.0 -1533.0,1.0 -1534.0,1.0 -1535.0,1.0 -1536.0,1.0 -1537.0,1.0 -1538.0,1.0 -1539.0,1.0 -1540.0,1.0 -1541.0,1.0 -1542.0,1.0 -1543.0,1.0 -1544.0,1.0 -1545.0,1.0 -1546.0,1.0 -1547.0,1.0 -1548.0,1.0 -1549.0,1.0 -1550.0,1.0 -1551.0,1.0 -1552.0,1.0 -1553.0,1.0 -1554.0,1.0 -1555.0,1.0 -1556.0,1.0 -1557.0,1.0 -1558.0,1.0 -1559.0,1.0 -1560.0,1.0 -1561.0,1.0 -1562.0,1.0 -1563.0,1.0 -1564.0,1.0 -1565.0,1.0 -1566.0,1.0 -1567.0,1.0 -1568.0,1.0 -1569.0,1.0 -1570.0,1.0 -1571.0,1.0 -1572.0,1.0 -1573.0,1.0 -1574.0,1.0 -1575.0,1.0 -1576.0,1.0 -1577.0,1.0 -1578.0,1.0 -1579.0,1.0 -1580.0,1.0 -1581.0,1.0 -1582.0,1.0 -1583.0,1.0 -1584.0,1.0 -1585.0,1.0 -1586.0,1.0 -1587.0,1.0 -1588.0,1.0 -1589.0,1.0 -1590.0,1.0 -1591.0,1.0 -1592.0,1.0 -1593.0,1.0 -1594.0,1.0 -1595.0,1.0 -1596.0,1.0 -1597.0,1.0 -1598.0,1.0 -1599.0,1.0 -1600.0,1.0 -1601.0,1.0 -1602.0,1.0 -1603.0,1.0 -1604.0,1.0 -1605.0,1.0 -1606.0,1.0 -1607.0,1.0 -1608.0,1.0 -1609.0,1.0 -1610.0,1.0 -1611.0,1.0 -1612.0,1.0 -1613.0,1.0 -1614.0,1.0 -1615.0,1.0 -1616.0,1.0 -1617.0,1.0 -1618.0,1.0 -1619.0,1.0 -1620.0,1.0 -1621.0,1.0 -1622.0,1.0 -1623.0,1.0 -1624.0,1.0 -1625.0,1.0 -1626.0,1.0 -1627.0,1.0 -1628.0,1.0 -1629.0,1.0 -1630.0,1.0 -1631.0,1.0 -1632.0,1.0 -1633.0,1.0 -1634.0,1.0 -1635.0,1.0 -1636.0,1.0 -1637.0,1.0 -1638.0,1.0 -1639.0,1.0 -1640.0,1.0 -1641.0,1.0 -1642.0,1.0 -1643.0,1.0 -1644.0,1.0 -1645.0,1.0 -1646.0,1.0 -1647.0,1.0 -1648.0,1.0 -1649.0,1.0 -1650.0,1.0 -1651.0,1.0 -1652.0,1.0 -1653.0,1.0 -1654.0,1.0 -1655.0,1.0 -1656.0,1.0 -1657.0,1.0 -1658.0,1.0 -1659.0,1.0 -1660.0,1.0 -1661.0,1.0 -1662.0,1.0 -1663.0,1.0 -1664.0,1.0 -1665.0,1.0 -1666.0,1.0 -1667.0,1.0 -1668.0,1.0 -1669.0,1.0 -1670.0,1.0 -1671.0,1.0 -1672.0,1.0 -1673.0,1.0 -1674.0,1.0 -1675.0,1.0 -1676.0,1.0 -1677.0,1.0 -1678.0,1.0 -1679.0,1.0 -1680.0,1.0 -1681.0,1.0 -1682.0,1.0 -1683.0,1.0 -1684.0,1.0 -1685.0,1.0 -1686.0,1.0 -1687.0,1.0 -1688.0,1.0 -1689.0,1.0 -1690.0,1.0 -1691.0,1.0 -1692.0,1.0 -1693.0,1.0 -1694.0,1.0 -1695.0,1.0 -1696.0,1.0 -1697.0,1.0 -1698.0,1.0 -1699.0,1.0 -1700.0,1.0 -1701.0,1.0 -1702.0,1.0 -1703.0,1.0 -1704.0,1.0 -1705.0,1.0 -1706.0,1.0 -1707.0,1.0 -1708.0,1.0 -1709.0,1.0 -1710.0,1.0 -1711.0,1.0 -1712.0,1.0 -1713.0,1.0 -1714.0,1.0 -1715.0,1.0 -1716.0,1.0 -1717.0,1.0 -1718.0,1.0 -1719.0,1.0 -1720.0,1.0 -1721.0,1.0 -1722.0,1.0 -1723.0,1.0 -1724.0,1.0 -1725.0,1.0 -1726.0,1.0 -1727.0,1.0 -1728.0,1.0 -1729.0,1.0 -1730.0,1.0 -1731.0,1.0 -1732.0,1.0 -1733.0,1.0 -1734.0,1.0 -1735.0,1.0 -1736.0,1.0 -1737.0,1.0 -1738.0,1.0 -1739.0,1.0 -1740.0,1.0 -1741.0,1.0 -1742.0,1.0 -1743.0,1.0 -1744.0,1.0 -1745.0,1.0 -1746.0,1.0 -1747.0,1.0 -1748.0,1.0 -1749.0,1.0 -1750.0,1.0 -1751.0,1.0 -1752.0,1.0 -1753.0,1.0 -1754.0,1.0 -1755.0,1.0 -1756.0,1.0 -1757.0,1.0 -1758.0,1.0 -1759.0,1.0 -1760.0,1.0 -1761.0,1.0 -1762.0,1.0 -1763.0,1.0 -1764.0,1.0 -1765.0,1.0 -1766.0,1.0 -1767.0,1.0 -1768.0,1.0 -1769.0,1.0 -1770.0,1.0 -1771.0,1.0 -1772.0,1.0 -1773.0,1.0 -1774.0,1.0 -1775.0,1.0 -1776.0,1.0 -1777.0,1.0 -1778.0,1.0 -1779.0,1.0 -1780.0,1.0 -1781.0,1.0 -1782.0,1.0 -1783.0,1.0 -1784.0,1.0 -1785.0,1.0 -1786.0,1.0 -1787.0,1.0 -1788.0,1.0 -1789.0,1.0 -1790.0,1.0 -1791.0,1.0 -1792.0,1.0 -1793.0,1.0 -1794.0,1.0 -1795.0,1.0 -1796.0,1.0 -1797.0,1.0 -1798.0,1.0 -1799.0,1.0 -1800.0,1.0 -1801.0,1.0 -1802.0,1.0 -1803.0,1.0 -1804.0,1.0 -1805.0,1.0 -1806.0,1.0 -1807.0,1.0 -1808.0,1.0 -1809.0,1.0 -1810.0,1.0 -1811.0,1.0 -1812.0,1.0 -1813.0,1.0 -1814.0,1.0 -1815.0,1.0 -1816.0,1.0 -1817.0,1.0 -1818.0,1.0 -1819.0,1.0 -1820.0,1.0 -1821.0,1.0 -1822.0,1.0 -1823.0,1.0 -1824.0,1.0 -1825.0,1.0 -1826.0,1.0 -1827.0,1.0 -1828.0,1.0 -1829.0,1.0 -1830.0,1.0 -1831.0,1.0 -1832.0,1.0 -1833.0,1.0 -1834.0,1.0 -1835.0,1.0 -1836.0,1.0 -1837.0,1.0 -1838.0,1.0 -1839.0,1.0 -1840.0,1.0 -1841.0,1.0 -1842.0,1.0 -1843.0,1.0 -1844.0,1.0 -1845.0,1.0 -1846.0,1.0 -1847.0,1.0 -1848.0,1.0 -1849.0,1.0 -1850.0,1.0 -1851.0,1.0 -1852.0,1.0 -1853.0,1.0 -1854.0,1.0 -1855.0,1.0 -1856.0,1.0 -1857.0,1.0 -1858.0,1.0 -1859.0,1.0 -1860.0,1.0 -1861.0,1.0 -1862.0,1.0 -1863.0,1.0 -1864.0,1.0 -1865.0,1.0 -1866.0,1.0 -1867.0,1.0 -1868.0,1.0 -1869.0,1.0 -1870.0,1.0 -1871.0,1.0 -1872.0,1.0 -1873.0,1.0 -1874.0,1.0 -1875.0,1.0 -1876.0,1.0 -1877.0,1.0 -1878.0,1.0 -1879.0,1.0 -1880.0,1.0 -1881.0,1.0 -1882.0,1.0 -1883.0,1.0 -1884.0,1.0 -1885.0,1.0 -1886.0,1.0 -1887.0,1.0 -1888.0,1.0 -1889.0,1.0 -1890.0,1.0 -1891.0,1.0 -1892.0,1.0 -1893.0,1.0 -1894.0,1.0 -1895.0,1.0 -1896.0,1.0 -1897.0,1.0 -1898.0,1.0 -1899.0,1.0 -1900.0,1.0 -1901.0,1.0 -1902.0,1.0 -1903.0,1.0 -1904.0,1.0 -1905.0,1.0 -1906.0,1.0 -1907.0,1.0 -1908.0,1.0 -1909.0,1.0 -1910.0,1.0 -1911.0,1.0 -1912.0,1.0 -1913.0,1.0 -1914.0,1.0 -1915.0,1.0 -1916.0,1.0 -1917.0,1.0 -1918.0,1.0 -1919.0,1.0 -1920.0,1.0 -1921.0,1.0 -1922.0,1.0 -1923.0,1.0 -1924.0,1.0 -1925.0,1.0 -1926.0,1.0 -1927.0,1.0 -1928.0,1.0 -1929.0,1.0 -1930.0,1.0 -1931.0,1.0 -1932.0,1.0 -1933.0,1.0 -1934.0,1.0 -1935.0,1.0 -1936.0,1.0 -1937.0,1.0 -1938.0,1.0 -1939.0,1.0 -1940.0,1.0 -1941.0,1.0 -1942.0,1.0 -1943.0,1.0 -1944.0,1.0 -1945.0,1.0 -1946.0,1.0 -1947.0,1.0 -1948.0,1.0 -1949.0,1.0 -1950.0,1.0 -1951.0,1.0 -1952.0,1.0 -1953.0,1.0 -1954.0,1.0 -1955.0,1.0 -1956.0,1.0 -1957.0,1.0 -1958.0,1.0 -1959.0,1.0 -1960.0,1.0 -1961.0,1.0 -1962.0,1.0 -1963.0,1.0 -1964.0,1.0 -1965.0,1.0 -1966.0,1.0 -1967.0,1.0 -1968.0,1.0 -1969.0,1.0 -1970.0,1.0 -1971.0,1.0 -1972.0,1.0 -1973.0,1.0 -1974.0,1.0 -1975.0,1.0 -1976.0,1.0 -1977.0,1.0 -1978.0,1.0 -1979.0,1.0 -1980.0,1.0 -1981.0,1.0 -1982.0,1.0 -1983.0,1.0 -1984.0,1.0 -1985.0,1.0 -1986.0,1.0 -1987.0,1.0 -1988.0,1.0 -1989.0,1.0 -1990.0,1.0 -1991.0,1.0 -1992.0,1.0 -1993.0,1.0 -1994.0,1.0 -1995.0,1.0 -1996.0,1.0 -1997.0,1.0 -1998.0,1.0 -1999.0,1.0 -2000.0,1.0 -2001.0,1.0 -2002.0,1.0 -2003.0,1.0 -2004.0,1.0 -2005.0,1.0 -2006.0,1.0 -2007.0,1.0 -2008.0,1.0 -2009.0,1.0 -2010.0,1.0 -2011.0,1.0 -2012.0,1.0 -2013.0,1.0 -2014.0,1.0 -2015.0,1.0 -2016.0,1.0 -2017.0,1.0 -2018.0,1.0 -2019.0,1.0 -2020.0,1.0 -2021.0,1.0 -2022.0,1.0 -2023.0,1.0 -2024.0,1.0 -2025.0,1.0 -2026.0,1.0 -2027.0,1.0 -2028.0,1.0 -2029.0,1.0 -2030.0,1.0 -2031.0,1.0 -2032.0,1.0 -2033.0,1.0 -2034.0,1.0 -2035.0,1.0 -2036.0,1.0 -2037.0,1.0 -2038.0,1.0 -2039.0,1.0 -2040.0,1.0 -2041.0,1.0 -2042.0,1.0 -2043.0,1.0 -2044.0,1.0 -2045.0,1.0 -2046.0,1.0 -2047.0,1.0 -2048.0,1.0 -2049.0,1.0 -2050.0,1.0 -2051.0,1.0 -2052.0,1.0 -2053.0,1.0 -2054.0,1.0 -2055.0,1.0 -2056.0,1.0 -2057.0,1.0 -2058.0,1.0 -2059.0,1.0 -2060.0,1.0 -2061.0,1.0 -2062.0,1.0 -2063.0,1.0 -2064.0,1.0 -2065.0,1.0 -2066.0,1.0 -2067.0,1.0 -2068.0,1.0 -2069.0,1.0 -2070.0,1.0 -2071.0,1.0 -2072.0,1.0 -2073.0,1.0 -2074.0,1.0 -2075.0,1.0 -2076.0,1.0 -2077.0,1.0 -2078.0,1.0 -2079.0,1.0 -2080.0,1.0 -2081.0,1.0 -2082.0,1.0 -2083.0,1.0 -2084.0,1.0 -2085.0,1.0 -2086.0,1.0 -2087.0,1.0 -2088.0,1.0 -2089.0,1.0 -2090.0,1.0 -2091.0,1.0 -2092.0,1.0 -2093.0,1.0 -2094.0,1.0 -2095.0,1.0 -2096.0,1.0 -2097.0,1.0 -2098.0,1.0 -2099.0,1.0 -2100.0,1.0 -2101.0,1.0 -2102.0,1.0 -2103.0,1.0 -2104.0,1.0 -2105.0,1.0 -2106.0,1.0 -2107.0,1.0 -2108.0,1.0 -2109.0,1.0 -2110.0,1.0 -2111.0,1.0 -2112.0,1.0 -2113.0,1.0 -2114.0,1.0 -2115.0,1.0 -2116.0,1.0 -2117.0,1.0 -2118.0,1.0 -2119.0,1.0 -2120.0,1.0 -2121.0,1.0 -2122.0,1.0 -2123.0,1.0 -2124.0,1.0 -2125.0,1.0 -2126.0,1.0 -2127.0,1.0 -2128.0,1.0 -2129.0,1.0 -2130.0,1.0 -2131.0,1.0 -2132.0,1.0 -2133.0,1.0 -2134.0,1.0 -2135.0,1.0 -2136.0,1.0 -2137.0,1.0 -2138.0,1.0 -2139.0,1.0 -2140.0,1.0 -2141.0,1.0 -2142.0,1.0 -2143.0,1.0 -2144.0,1.0 -2145.0,1.0 -2146.0,1.0 -2147.0,1.0 -2148.0,1.0 -2149.0,1.0 -2150.0,1.0 -2151.0,1.0 -2152.0,1.0 -2153.0,1.0 -2154.0,1.0 -2155.0,1.0 -2156.0,1.0 -2157.0,1.0 -2158.0,1.0 -2159.0,1.0 -2160.0,1.0 -2161.0,1.0 -2162.0,1.0 -2163.0,1.0 -2164.0,1.0 -2165.0,1.0 -2166.0,1.0 -2167.0,1.0 -2168.0,1.0 -2169.0,1.0 -2170.0,1.0 -2171.0,1.0 -2172.0,1.0 -2173.0,1.0 -2174.0,1.0 -2175.0,1.0 -2176.0,1.0 -2177.0,1.0 -2178.0,1.0 -2179.0,1.0 -2180.0,1.0 -2181.0,1.0 -2182.0,1.0 -2183.0,1.0 -2184.0,1.0 -2185.0,1.0 -2186.0,1.0 -2187.0,1.0 -2188.0,1.0 -2189.0,1.0 -2190.0,1.0 -2191.0,1.0 -2192.0,1.0 -2193.0,1.0 -2194.0,1.0 -2195.0,1.0 -2196.0,1.0 -2197.0,1.0 -2198.0,1.0 -2199.0,1.0 -2200.0,1.0 -2201.0,1.0 -2202.0,1.0 -2203.0,1.0 -2204.0,1.0 -2205.0,1.0 -2206.0,1.0 -2207.0,1.0 -2208.0,1.0 -2209.0,1.0 -2210.0,1.0 -2211.0,1.0 -2212.0,1.0 -2213.0,1.0 -2214.0,1.0 -2215.0,1.0 -2216.0,1.0 -2217.0,1.0 -2218.0,1.0 -2219.0,1.0 -2220.0,1.0 -2221.0,1.0 -2222.0,1.0 -2223.0,1.0 -2224.0,1.0 -2225.0,1.0 -2226.0,1.0 -2227.0,1.0 -2228.0,1.0 -2229.0,1.0 -2230.0,1.0 -2231.0,1.0 -2232.0,1.0 -2233.0,1.0 -2234.0,1.0 -2235.0,1.0 -2236.0,1.0 -2237.0,1.0 -2238.0,1.0 -2239.0,1.0 -2240.0,1.0 -2241.0,1.0 -2242.0,1.0 -2243.0,1.0 -2244.0,1.0 -2245.0,1.0 -2246.0,1.0 -2247.0,1.0 -2248.0,1.0 -2249.0,1.0 -2250.0,1.0 -2251.0,1.0 -2252.0,1.0 -2253.0,1.0 -2254.0,1.0 -2255.0,1.0 -2256.0,1.0 -2257.0,1.0 -2258.0,1.0 -2259.0,1.0 -2260.0,1.0 -2261.0,1.0 -2262.0,1.0 -2263.0,1.0 -2264.0,1.0 -2265.0,1.0 -2266.0,1.0 -2267.0,1.0 -2268.0,1.0 -2269.0,1.0 -2270.0,1.0 -2271.0,1.0 -2272.0,1.0 -2273.0,1.0 -2274.0,1.0 -2275.0,1.0 -2276.0,1.0 -2277.0,1.0 -2278.0,1.0 -2279.0,1.0 -2280.0,1.0 -2281.0,1.0 -2282.0,1.0 -2283.0,1.0 -2284.0,1.0 -2285.0,1.0 -2286.0,1.0 -2287.0,1.0 -2288.0,1.0 -2289.0,1.0 -2290.0,1.0 -2291.0,1.0 -2292.0,1.0 -2293.0,1.0 -2294.0,1.0 -2295.0,1.0 -2296.0,1.0 -2297.0,1.0 -2298.0,1.0 -2299.0,1.0 -2300.0,1.0 -2301.0,1.0 -2302.0,1.0 -2303.0,1.0 -2304.0,1.0 -2305.0,1.0 -2306.0,1.0 -2307.0,1.0 -2308.0,1.0 -2309.0,1.0 -2310.0,1.0 -2311.0,1.0 -2312.0,1.0 -2313.0,1.0 -2314.0,1.0 -2315.0,1.0 -2316.0,1.0 -2317.0,1.0 -2318.0,1.0 -2319.0,1.0 -2320.0,1.0 -2321.0,1.0 -2322.0,1.0 -2323.0,1.0 -2324.0,1.0 -2325.0,1.0 -2326.0,1.0 -2327.0,1.0 -2328.0,1.0 -2329.0,1.0 -2330.0,1.0 -2331.0,1.0 -2332.0,1.0 -2333.0,1.0 -2334.0,1.0 -2335.0,1.0 -2336.0,1.0 -2337.0,1.0 -2338.0,1.0 -2339.0,1.0 -2340.0,1.0 -2341.0,1.0 -2342.0,1.0 -2343.0,1.0 -2344.0,1.0 -2345.0,1.0 -2346.0,1.0 -2347.0,1.0 -2348.0,1.0 -2349.0,1.0 -2350.0,1.0 -2351.0,1.0 -2352.0,1.0 -2353.0,1.0 -2354.0,1.0 -2355.0,1.0 -2356.0,1.0 -2357.0,1.0 -2358.0,1.0 -2359.0,1.0 -2360.0,1.0 -2361.0,1.0 -2362.0,1.0 -2363.0,1.0 -2364.0,1.0 -2365.0,1.0 -2366.0,1.0 -2367.0,1.0 -2368.0,1.0 -2369.0,1.0 -2370.0,1.0 -2371.0,1.0 -2372.0,1.0 -2373.0,1.0 -2374.0,1.0 -2375.0,1.0 -2376.0,1.0 -2377.0,1.0 -2378.0,1.0 -2379.0,1.0 -2380.0,1.0 -2381.0,1.0 -2382.0,1.0 -2383.0,1.0 -2384.0,1.0 -2385.0,1.0 -2386.0,1.0 -2387.0,1.0 -2388.0,1.0 -2389.0,1.0 -2390.0,1.0 -2391.0,1.0 -2392.0,1.0 -2393.0,1.0 -2394.0,1.0 -2395.0,1.0 -2396.0,1.0 -2397.0,1.0 -2398.0,1.0 -2399.0,1.0 -2400.0,1.0 -2401.0,1.0 -2402.0,1.0 -2403.0,1.0 -2404.0,1.0 -2405.0,1.0 -2406.0,1.0 -2407.0,1.0 -2408.0,1.0 -2409.0,1.0 -2410.0,1.0 -2411.0,1.0 -2412.0,1.0 -2413.0,1.0 -2414.0,1.0 -2415.0,1.0 -2416.0,1.0 -2417.0,1.0 -2418.0,1.0 -2419.0,1.0 -2420.0,1.0 -2421.0,1.0 -2422.0,1.0 -2423.0,1.0 -2424.0,1.0 -2425.0,1.0 -2426.0,1.0 -2427.0,1.0 -2428.0,1.0 -2429.0,1.0 -2430.0,1.0 -2431.0,1.0 -2432.0,1.0 -2433.0,1.0 -2434.0,1.0 -2435.0,1.0 -2436.0,1.0 -2437.0,1.0 -2438.0,1.0 -2439.0,1.0 -2440.0,1.0 -2441.0,1.0 -2442.0,1.0 -2443.0,1.0 -2444.0,1.0 -2445.0,1.0 -2446.0,1.0 -2447.0,1.0 -2448.0,1.0 -2449.0,1.0 -2450.0,1.0 -2451.0,1.0 -2452.0,1.0 -2453.0,1.0 -2454.0,1.0 -2455.0,1.0 -2456.0,1.0 -2457.0,1.0 -2458.0,1.0 -2459.0,1.0 -2460.0,1.0 -2461.0,1.0 -2462.0,1.0 -2463.0,1.0 -2464.0,1.0 -2465.0,1.0 -2466.0,1.0 -2467.0,1.0 -2468.0,1.0 -2469.0,1.0 -2470.0,1.0 -2471.0,1.0 -2472.0,1.0 -2473.0,1.0 -2474.0,1.0 -2475.0,1.0 -2476.0,1.0 -2477.0,1.0 -2478.0,1.0 -2479.0,1.0 -2480.0,1.0 -2481.0,1.0 -2482.0,1.0 -2483.0,1.0 -2484.0,1.0 -2485.0,1.0 -2486.0,1.0 -2487.0,1.0 -2488.0,1.0 -2489.0,1.0 -2490.0,1.0 -2491.0,1.0 -2492.0,1.0 -2493.0,1.0 -2494.0,1.0 -2495.0,1.0 -2496.0,1.0 -2497.0,1.0 -2498.0,1.0 -2499.0,1.0 -2500.0,1.0 -2501.0,1.0 -2502.0,1.0 -2503.0,1.0 -2504.0,1.0 -2505.0,1.0 -2506.0,1.0 -2507.0,1.0 -2508.0,1.0 -2509.0,1.0 -2510.0,1.0 -2511.0,1.0 -2512.0,1.0 -2513.0,1.0 -2514.0,1.0 -2515.0,1.0 -2516.0,1.0 -2517.0,1.0 -2518.0,1.0 -2519.0,1.0 -2520.0,1.0 -2521.0,1.0 -2522.0,1.0 -2523.0,1.0 -2524.0,1.0 -2525.0,1.0 -2526.0,1.0 -2527.0,1.0 -2528.0,1.0 -2529.0,1.0 -2530.0,1.0 -2531.0,1.0 -2532.0,1.0 -2533.0,1.0 -2534.0,1.0 -2535.0,1.0 -2536.0,1.0 -2537.0,1.0 -2538.0,1.0 -2539.0,1.0 -2540.0,1.0 -2541.0,1.0 -2542.0,1.0 -2543.0,1.0 -2544.0,1.0 -2545.0,1.0 -2546.0,1.0 -2547.0,1.0 -2548.0,1.0 -2549.0,1.0 -2550.0,1.0 -2551.0,1.0 -2552.0,1.0 -2553.0,1.0 -2554.0,1.0 -2555.0,1.0 -2556.0,1.0 -2557.0,1.0 -2558.0,1.0 -2559.0,1.0 -2560.0,1.0 -2561.0,1.0 -2562.0,1.0 -2563.0,1.0 -2564.0,1.0 -2565.0,1.0 -2566.0,1.0 -2567.0,1.0 -2568.0,1.0 -2569.0,1.0 -2570.0,1.0 -2571.0,1.0 -2572.0,1.0 -2573.0,1.0 -2574.0,1.0 -2575.0,1.0 -2576.0,1.0 -2577.0,1.0 -2578.0,1.0 -2579.0,1.0 -2580.0,1.0 -2581.0,1.0 -2582.0,1.0 -2583.0,1.0 -2584.0,1.0 -2585.0,1.0 -2586.0,1.0 -2587.0,1.0 -2588.0,1.0 -2589.0,1.0 -2590.0,1.0 -2591.0,1.0 -2592.0,1.0 -2593.0,1.0 -2594.0,1.0 -2595.0,1.0 -2596.0,1.0 -2597.0,1.0 -2598.0,1.0 -2599.0,1.0 -2600.0,1.0 -2601.0,1.0 -2602.0,1.0 -2603.0,1.0 -2604.0,1.0 -2605.0,1.0 -2606.0,1.0 -2607.0,1.0 -2608.0,1.0 -2609.0,1.0 -2610.0,1.0 -2611.0,1.0 -2612.0,1.0 -2613.0,1.0 -2614.0,1.0 -2615.0,1.0 -2616.0,1.0 -2617.0,1.0 -2618.0,1.0 -2619.0,1.0 -2620.0,1.0 -2621.0,1.0 -2622.0,1.0 -2623.0,1.0 -2624.0,1.0 -2625.0,1.0 -2626.0,1.0 -2627.0,1.0 -2628.0,1.0 -2629.0,1.0 -2630.0,1.0 -2631.0,1.0 -2632.0,1.0 -2633.0,1.0 -2634.0,1.0 -2635.0,1.0 -2636.0,1.0 -2637.0,1.0 -2638.0,1.0 -2639.0,1.0 -2640.0,1.0 -2641.0,1.0 -2642.0,1.0 -2643.0,1.0 -2644.0,1.0 -2645.0,1.0 -2646.0,1.0 -2647.0,1.0 -2648.0,1.0 -2649.0,1.0 -2650.0,1.0 -2651.0,1.0 -2652.0,1.0 -2653.0,1.0 -2654.0,1.0 -2655.0,1.0 -2656.0,1.0 -2657.0,1.0 -2658.0,1.0 -2659.0,1.0 -2660.0,1.0 -2661.0,1.0 -2662.0,1.0 -2663.0,1.0 -2664.0,1.0 -2665.0,1.0 -2666.0,1.0 -2667.0,1.0 -2668.0,1.0 -2669.0,1.0 -2670.0,1.0 -2671.0,1.0 -2672.0,1.0 -2673.0,1.0 -2674.0,1.0 -2675.0,1.0 -2676.0,1.0 -2677.0,1.0 -2678.0,1.0 -2679.0,1.0 -2680.0,1.0 -2681.0,1.0 -2682.0,1.0 -2683.0,1.0 -2684.0,1.0 -2685.0,1.0 -2686.0,1.0 -2687.0,1.0 -2688.0,1.0 -2689.0,1.0 -2690.0,1.0 -2691.0,1.0 -2692.0,1.0 -2693.0,1.0 -2694.0,1.0 -2695.0,1.0 -2696.0,1.0 -2697.0,1.0 -2698.0,1.0 -2699.0,1.0 -2700.0,1.0 -2701.0,1.0 -2702.0,1.0 -2703.0,1.0 -2704.0,1.0 -2705.0,1.0 -2706.0,1.0 -2707.0,1.0 -2708.0,1.0 -2709.0,1.0 -2710.0,1.0 -2711.0,1.0 -2712.0,1.0 -2713.0,1.0 -2714.0,1.0 -2715.0,1.0 -2716.0,1.0 -2717.0,1.0 -2718.0,1.0 -2719.0,1.0 -2720.0,1.0 -2721.0,1.0 -2722.0,1.0 -2723.0,1.0 -2724.0,1.0 -2725.0,1.0 -2726.0,1.0 -2727.0,1.0 -2728.0,1.0 -2729.0,1.0 -2730.0,1.0 -2731.0,1.0 -2732.0,1.0 -2733.0,1.0 -2734.0,1.0 -2735.0,1.0 -2736.0,1.0 -2737.0,1.0 -2738.0,1.0 -2739.0,1.0 -2740.0,1.0 -2741.0,1.0 -2742.0,1.0 -2743.0,1.0 -2744.0,1.0 -2745.0,1.0 -2746.0,1.0 -2747.0,1.0 -2748.0,1.0 -2749.0,1.0 -2750.0,1.0 -2751.0,1.0 -2752.0,1.0 -2753.0,1.0 -2754.0,1.0 -2755.0,1.0 -2756.0,1.0 -2757.0,1.0 -2758.0,1.0 -2759.0,1.0 -2760.0,1.0 -2761.0,1.0 -2762.0,1.0 -2763.0,1.0 -2764.0,1.0 -2765.0,1.0 -2766.0,1.0 -2767.0,1.0 -2768.0,1.0 -2769.0,1.0 -2770.0,1.0 -2771.0,1.0 -2772.0,1.0 -2773.0,1.0 -2774.0,1.0 -2775.0,1.0 -2776.0,1.0 -2777.0,1.0 -2778.0,1.0 -2779.0,1.0 -2780.0,1.0 -2781.0,1.0 -2782.0,1.0 -2783.0,1.0 -2784.0,1.0 -2785.0,1.0 -2786.0,1.0 -2787.0,1.0 -2788.0,1.0315738301467718 -2789.0,1.0815738301467719 -2790.0,1.1315738301467717 -2791.0,1.1815738301467718 -2792.0,1.2315738301467718 -2793.0,1.2815738301467718 -2794.0,1.3315738301467719 -2795.0,1.3815738301467717 -2796.0,1.4315738301467718 -2797.0,1.4815738301467718 -2798.0,1.5315738301467718 -2799.0,1.5815738301467719 -2800.0,1.6315738301467717 -2801.0,1.681573830146772 -2802.0,1.7315738301467718 -2803.0,1.7815738301467718 -2804.0,1.8315738301467719 -2805.0,1.8815738301467717 -2806.0,1.931573830146772 -2807.0,1.9815738301467718 -2808.0,2.0315738301467716 -2809.0,2.081573830146772 -2810.0,2.131573830146772 -2811.0,2.181573830146772 -2812.0,2.231573830146772 -2813.0,2.2815738301467716 -2814.0,2.331573830146772 -2815.0,2.381573830146772 -2816.0,2.431573830146772 -2817.0,2.481573830146772 -2818.0,2.5315738301467716 -2819.0,2.581573830146772 -2820.0,2.631573830146772 -2821.0,2.681573830146772 -2822.0,2.731573830146772 -2823.0,2.7815738301467716 -2824.0,2.831573830146772 -2825.0,2.881573830146772 -2826.0,2.931573830146772 -2827.0,2.981573830146772 -2828.0,3.031573830146772 -2829.0,3.081573830146772 -2830.0,3.1315738301467717 -2831.0,3.181573830146772 -2832.0,3.231573830146772 -2833.0,3.281573830146772 -2834.0,3.331573830146772 -2835.0,3.3815738301467717 -2836.0,3.431573830146772 -2837.0,3.481573830146772 -2838.0,3.531573830146772 -2839.0,3.581573830146772 -2840.0,3.631573830146772 -2841.0,3.681573830146772 -2842.0,3.731573830146772 -2843.0,3.781573830146772 -2844.0,3.831573830146772 -2845.0,3.881573830146772 -2846.0,3.931573830146772 -2847.0,3.981573830146772 -2848.0,4.0315738301467725 -2849.0,4.081573830146771 -2850.0,4.131573830146772 -2851.0,4.181573830146772 -2852.0,4.231573830146772 -2853.0,4.2815738301467725 -2854.0,4.331573830146771 -2855.0,4.381573830146772 -2856.0,4.431573830146772 -2857.0,4.481573830146772 -2858.0,4.5315738301467725 -2859.0,4.581573830146771 -2860.0,4.631573830146772 -2861.0,4.681573830146772 -2862.0,4.731573830146772 -2863.0,4.7815738301467725 -2864.0,4.831573830146771 -2865.0,4.881573830146772 -2866.0,4.931573830146772 -2867.0,4.981573830146772 -2868.0,5.031573830146772 -2869.0,5.081573830146772 -2870.0,5.131573830146772 -2871.0,5.181573830146772 -2872.0,5.231573830146772 -2873.0,5.281573830146772 -2874.0,5.331573830146772 -2875.0,5.381573830146772 -2876.0,5.431573830146772 -2877.0,5.481573830146772 -2878.0,5.531573830146772 -2879.0,5.581573830146772 -2880.0,5.631573830146772 -2881.0,5.681573830146772 -2882.0,5.731573830146772 -2883.0,5.781573830146772 -2884.0,5.831573830146772 -2885.0,5.881573830146772 -2886.0,5.931573830146772 -2887.0,5.981573830146772 -2888.0,5.968426169853228 -2889.0,5.918426169853229 -2890.0,5.868426169853228 -2891.0,5.818426169853228 -2892.0,5.768426169853228 -2893.0,5.718426169853228 -2894.0,5.668426169853229 -2895.0,5.618426169853228 -2896.0,5.568426169853228 -2897.0,5.518426169853228 -2898.0,5.468426169853228 -2899.0,5.418426169853229 -2900.0,5.368426169853228 -2901.0,5.318426169853228 -2902.0,5.268426169853228 -2903.0,5.218426169853228 -2904.0,5.168426169853229 -2905.0,5.118426169853228 -2906.0,5.068426169853228 -2907.0,5.018426169853228 -2908.0,4.968426169853228 -2909.0,4.918426169853229 -2910.0,4.868426169853228 -2911.0,4.818426169853228 -2912.0,4.768426169853228 -2913.0,4.718426169853228 -2914.0,4.668426169853229 -2915.0,4.618426169853228 -2916.0,4.568426169853228 -2917.0,4.518426169853228 -2918.0,4.468426169853228 -2919.0,4.418426169853229 -2920.0,4.368426169853228 -2921.0,4.318426169853228 -2922.0,4.268426169853228 -2923.0,4.218426169853228 -2924.0,4.168426169853229 -2925.0,4.118426169853228 -2926.0,4.068426169853228 -2927.0,4.018426169853228 -2928.0,3.968426169853228 -2929.0,3.918426169853228 -2930.0,3.8684261698532283 -2931.0,3.818426169853228 -2932.0,3.768426169853228 -2933.0,3.718426169853228 -2934.0,3.668426169853228 -2935.0,3.6184261698532283 -2936.0,3.568426169853228 -2937.0,3.518426169853228 -2938.0,3.468426169853228 -2939.0,3.418426169853228 -2940.0,3.368426169853228 -2941.0,3.318426169853228 -2942.0,3.268426169853228 -2943.0,3.218426169853228 -2944.0,3.168426169853228 -2945.0,3.118426169853228 -2946.0,3.068426169853228 -2947.0,3.018426169853228 -2948.0,2.968426169853228 -2949.0,2.918426169853228 -2950.0,2.868426169853228 -2951.0,2.818426169853228 -2952.0,2.768426169853228 -2953.0,2.718426169853228 -2954.0,2.668426169853228 -2955.0,2.618426169853228 -2956.0,2.568426169853228 -2957.0,2.518426169853228 -2958.0,2.468426169853228 -2959.0,2.418426169853228 -2960.0,2.368426169853228 -2961.0,2.318426169853228 -2962.0,2.268426169853228 -2963.0,2.218426169853228 -2964.0,2.168426169853228 -2965.0,2.118426169853228 -2966.0,2.068426169853228 -2967.0,2.018426169853228 -2968.0,1.9684261698532284 -2969.0,1.9184261698532277 -2970.0,1.8684261698532278 -2971.0,1.818426169853228 -2972.0,1.7684261698532282 -2973.0,1.7184261698532284 -2974.0,1.6684261698532277 -2975.0,1.6184261698532278 -2976.0,1.568426169853228 -2977.0,1.5184261698532282 -2978.0,1.4684261698532284 -2979.0,1.4184261698532277 -2980.0,1.3684261698532278 -2981.0,1.318426169853228 -2982.0,1.2684261698532282 -2983.0,1.2184261698532284 -2984.0,1.1684261698532277 -2985.0,1.1184261698532278 -2986.0,1.068426169853228 -2987.0,1.0184261698532282 -2988.0,0.999781919491138 -2989.0,0.9994366666760093 -2990.0,0.9990915330863878 -2991.0,0.9987465186811013 -2992.0,0.9984016234189924 -2993.0,0.9980568472589175 -2994.0,0.9977121901597473 -2995.0,0.9973676520803668 -2996.0,0.997023232979675 -2997.0,0.9966789328165853 -2998.0,0.9963347515500252 -2999.0,0.9959906891389362 -3000.0,0.9956467455422744 -3001.0,0.9953029207190098 -3002.0,0.9949592146281265 -3003.0,0.994615627228623 -3004.0,0.9942721584795118 -3005.0,0.9939288083398194 -3006.0,0.9935855767685868 -3007.0,0.993242463724869 -3008.0,0.9928994691677351 -3009.0,0.9925565930562683 -3010.0,0.992213835349566 -3011.0,0.9918711960067397 -3012.0,0.9915286749869149 -3013.0,0.9911862722492316 -3014.0,0.9908439877528434 -3015.0,0.9905018214569186 -3016.0,0.9901597733206388 -3017.0,0.9898178433032004 -3018.0,0.9894760313638137 -3019.0,0.9891343374617029 -3020.0,0.9887927615561065 -3021.0,0.9884513036062769 -3022.0,0.9881099635714807 -3023.0,0.9877687414109986 -3024.0,0.9874276370841251 -3025.0,0.9870866505501691 -3026.0,0.9867457817684533 -3027.0,0.9864050306983146 -3028.0,0.9860643972991039 -3029.0,0.985723881530186 -3030.0,0.98538348335094 -3031.0,0.9850432027207587 -3032.0,0.9847030395990494 -3033.0,0.9843629939452327 -3034.0,0.984023065718744 -3035.0,0.9836832548790322 -3036.0,0.9833435613855603 -3037.0,0.9830039851978055 -3038.0,0.9826645262752586 -3039.0,0.9823251845774248 -3040.0,0.9819859600638231 -3041.0,0.9816468526939864 -3042.0,0.9813078624274618 -3043.0,0.98096898922381 -3044.0,0.9806302330426062 -3045.0,0.9802915938434391 -3046.0,0.9799530715859115 -3047.0,0.9796146662296401 -3048.0,0.9792763777342557 -3049.0,0.978938206059403 -3050.0,0.9786001511647405 -3051.0,0.9782622130099408 -3052.0,0.9779243915546901 -3053.0,0.9775866867586891 -3054.0,0.9772490985816519 -3055.0,0.9769116269833067 -3056.0,0.9765742719233956 -3057.0,0.9762370333616747 -3058.0,0.9758999112579136 -3059.0,0.9755629055718965 -3060.0,0.9752260162634209 -3061.0,0.9748892432922983 -3062.0,0.9745525866183541 -3063.0,0.9742160462014279 -3064.0,0.9738796220013725 -3065.0,0.9735433139780552 -3066.0,0.9732071220913567 -3067.0,0.972871046301172 -3068.0,0.9725350865674097 -3069.0,0.972199242849992 -3070.0,0.9718635151088555 -3071.0,0.9715279033039501 -3072.0,0.9711924073952398 -3073.0,0.9708570273427025 -3074.0,0.9705217631063296 -3075.0,0.9701866146461268 -3076.0,0.9698515819221131 -3077.0,0.9695166648943216 -3078.0,0.9691818635227991 -3079.0,0.9688471777676064 -3080.0,0.9685126075888179 -3081.0,0.9681781529465215 -3082.0,0.9678438138008196 -3083.0,0.9675095901118278 -3084.0,0.9671754818396757 -3085.0,0.9668414889445065 -3086.0,0.9665076113864774 -3087.0,0.9661738491257593 -3088.0,0.9658402021225366 -3089.0,0.9655066703370079 -3090.0,0.965173253729385 -3091.0,0.9648399522598939 -3092.0,0.9645067658887743 -3093.0,0.9641736945762791 -3094.0,0.9638407382826757 -3095.0,0.9635078969682447 -3096.0,0.9631751705932805 -3097.0,0.9628425591180914 -3098.0,0.9625100625029991 -3099.0,0.9621776807083393 -3100.0,0.9618454136944612 -3101.0,0.9615132614217279 -3102.0,0.961181223850516 -3103.0,0.9608493009412158 -3104.0,0.9605174926542314 -3105.0,0.9601857989499802 -3106.0,0.9598542197888941 -3107.0,0.9595227551314176 -3108.0,0.9591914049380096 -3109.0,0.9588601691691425 -3110.0,0.9585290477853021 -3111.0,0.9581980407469883 -3112.0,0.9578671480147142 -3113.0,0.9575363695490066 -3114.0,0.9572057053104063 -3115.0,0.9568751552594673 -3116.0,0.9565447193567574 -3117.0,0.9562143975628581 -3118.0,0.9558841898383643 -3119.0,0.9555540961438848 -3120.0,0.9552241164400416 -3121.0,0.9548942506874707 -3122.0,0.9545644988468214 -3123.0,0.9542348608787568 -3124.0,0.9539053367439535 -3125.0,0.9535759264031015 -3126.0,0.9532466298169049 -3127.0,0.9529174469460806 -3128.0,0.9525883777513597 -3129.0,0.9522594221934868 -3130.0,0.9519305802332196 -3131.0,0.9516018518313298 -3132.0,0.9512732369486026 -3133.0,0.9509447355458364 -3134.0,0.9506163475838435 -3135.0,0.9502880730234496 -3136.0,0.949959911825494 -3137.0,0.9496318639508293 -3138.0,0.949303929360322 -3139.0,0.9489761080148519 -3140.0,0.948648399875312 -3141.0,0.9483208049026094 -3142.0,0.9479933230576643 -3143.0,0.9476659543014104 -3144.0,0.9473386985947951 -3145.0,0.9470115558987794 -3146.0,0.9466845261743372 -3147.0,0.9463576093824564 -3148.0,0.9460308054841382 -3149.0,0.9457041144403973 -3150.0,0.9453775362122617 -3151.0,0.9450510707607732 -3152.0,0.9447247180469868 -3153.0,0.9443984780319709 -3154.0,0.9440723506768075 -3155.0,0.943746335942592 -3156.0,0.9434204337904333 -3157.0,0.9430946441814535 -3158.0,0.9427689670767884 -3159.0,0.9424434024375868 -3160.0,0.9421179502250118 -3161.0,0.9417926104002387 -3162.0,0.9414673829244572 -3163.0,0.9411422677588699 -3164.0,0.940817264864693 -3165.0,0.940492374203156 -3166.0,0.9401675957355018 -3167.0,0.9398429294229866 -3168.0,0.9395183752268803 -3169.0,0.9391939331084659 -3170.0,0.9388696030290395 -3171.0,0.9385453849499114 -3172.0,0.9382212788324044 -3173.0,0.9378972846378549 -3174.0,0.9375734023276131 -3175.0,0.9372496318630421 -3176.0,0.9369259732055183 -3177.0,0.9366024263164316 -3178.0,0.9362789911571854 -3179.0,0.9359556676891961 -3180.0,0.9356324558738937 -3181.0,0.9353093556727211 -3182.0,0.934986367047135 -3183.0,0.9346634899586053 -3184.0,0.9343407243686149 -3185.0,0.9340180702386605 -3186.0,0.9336955275302515 -3187.0,0.933373096204911 -3188.0,0.9330507762241755 -3189.0,0.9327285675495944 -3190.0,0.9324064701427305 -3191.0,0.9320844839651601 -3192.0,0.9317626089784724 -3193.0,0.9314408451442703 -3194.0,0.9311191924241694 -3195.0,0.9307976507797993 -3196.0,0.930476220172802 -3197.0,0.9301549005648334 -3198.0,0.9298336919175624 -3199.0,0.9295125941926711 -3200.0,0.9291916073518549 -3201.0,0.9288707313568224 -3202.0,0.9285499661692955 -3203.0,0.9282293117510092 -3204.0,0.9279087680637117 -3205.0,0.9275883350691646 -3206.0,0.9272680127291425 -3207.0,0.9269478010054333 -3208.0,0.9266276998598382 -3209.0,0.9263077092541712 -3210.0,0.9259878291502599 -3211.0,0.925668059509945 -3212.0,0.9253484002950803 -3213.0,0.9250288514675326 -3214.0,0.9247094129891822 -3215.0,0.9243900848219225 -3216.0,0.9240708669276598 -3217.0,0.9237517592683139 -3218.0,0.9234327618058175 -3219.0,0.9231138745021165 -3220.0,0.92279509731917 -3221.0,0.9224764302189502 -3222.0,0.9221578731634424 -3223.0,0.9218394261146453 -3224.0,0.9215210890345701 -3225.0,0.9212028618852418 -3226.0,0.9208847446286982 -3227.0,0.92056673722699 -3228.0,0.9202488396421815 -3229.0,0.9199310518363497 -3230.0,0.9196133737715849 -3231.0,0.9192958054099903 -3232.0,0.9189783467136825 -3233.0,0.9186609976447908 -3234.0,0.9183437581654579 -3235.0,0.9180266282378394 -3236.0,0.917709607824104 -3237.0,0.9173926968864335 -3238.0,0.9170758953870228 -3239.0,0.9167592032880797 -3240.0,0.9164426205518251 -3241.0,0.9161261471404931 -3242.0,0.9158097830163306 -3243.0,0.9154935281415979 -3244.0,0.9151773824785678 -3245.0,0.9148613459895266 -3246.0,0.9145454186367734 -3247.0,0.9142296003826205 -3248.0,0.9139138911893929 -3249.0,0.9135982910194288 -3250.0,0.9132827998350795 -3251.0,0.9129674175987093 -3252.0,0.9126521442726953 -3253.0,0.9123369798194274 -3254.0,0.9120219242013092 -3255.0,0.9117069773807568 -3256.0,0.9113921393201991 -3257.0,0.9110774099820784 -3258.0,0.9107627893288498 -3259.0,0.9104482773229813 -3260.0,0.9101338739269538 -3261.0,0.9098195791032615 -3262.0,0.9095053928144111 -3263.0,0.9091913150229226 -3264.0,0.9088773456913287 -3265.0,0.9085634847821753 -3266.0,0.908249732258021 -3267.0,0.9079360880814374 -3268.0,0.9076225522150091 -3269.0,0.9073091246213334 -3270.0,0.9069958052630208 -3271.0,0.9066825941026946 -3272.0,0.9063694911029909 -3273.0,0.9060564962265589 -3274.0,0.9057436094360606 -3275.0,0.9054308306941707 -3276.0,0.9051181599635773 -3277.0,0.9048055972069807 -3278.0,0.9044931423870947 -3279.0,0.9041807954666455 -3280.0,0.9038685564083727 -3281.0,0.9035564251750282 -3282.0,0.903244401729377 -3283.0,0.9029324860341973 -3284.0,0.9026206780522794 -3285.0,0.9023089777464272 -3286.0,0.9019973850794569 -3287.0,0.901685900014198 -3288.0,0.9013745225134925 -3289.0,0.9010632525401951 -3290.0,0.900752090057174 -3291.0,0.9004410350273095 -3292.0,0.9001300874134951 -3293.0,0.8998192471786369 -3294.0,0.8995085142856541 -3295.0,0.8991978886974784 -3296.0,0.8988873703770545 -3297.0,0.8985769592873398 -3298.0,0.8982666553913045 -3299.0,0.8979564586519316 -3300.0,0.897646369032217 -3301.0,0.8973363864951691 -3302.0,0.8970265110038094 -3303.0,0.896716742521172 -3304.0,0.8964070810103036 -3305.0,0.896097526434264 -3306.0,0.8957880787561256 -3307.0,0.8954787379389735 -3308.0,0.8951695039459057 -3309.0,0.8948603767400326 -3310.0,0.8945513562844777 -3311.0,0.8942424425423773 -3312.0,0.8939336354768799 -3313.0,0.8936249350511474 -3314.0,0.8933163412283539 -3315.0,0.8930078539716864 -3316.0,0.8926994732443446 -3317.0,0.8923911990095411 -3318.0,0.8920830312305009 -3319.0,0.8917749698704619 -3320.0,0.8914670148926745 -3321.0,0.8911591662604021 -3322.0,0.8908514239369204 -3323.0,0.8905437878855181 -3324.0,0.8902362580694966 -3325.0,0.8899288344521695 -3326.0,0.8896215169968636 -3327.0,0.8893143056669183 -3328.0,0.8890072004256853 -3329.0,0.8887002012365292 -3330.0,0.8883933080628273 -3331.0,0.8880865208679696 -3332.0,0.8877798396153584 -3333.0,0.8874732642684091 -3334.0,0.8871667947905493 -3335.0,0.8868604311452194 -3336.0,0.8865541732958726 -3337.0,0.8862480212059746 -3338.0,0.8859419748390035 -3339.0,0.8856360341584504 -3340.0,0.8853301991278186 -3341.0,0.8850244697106244 -3342.0,0.8847188458703965 -3343.0,0.884413327570676 -3344.0,0.884107914775017 -3345.0,0.8838026074469859 -3346.0,0.8834974055501618 -3347.0,0.8831923090481363 -3348.0,0.8828873179045136 -3349.0,0.8825824320829105 -3350.0,0.8822776515469564 -3351.0,0.8819729762602931 -3352.0,0.8816684061865752 -3353.0,0.8813639412894695 -3354.0,0.8810595815326557 -3355.0,0.8807553268798259 -3356.0,0.8804511772946848 -3357.0,0.8801471327409494 -3358.0,0.8798431931823495 -3359.0,0.8795393585826274 -3360.0,0.8792356289055377 -3361.0,0.8789320041148477 -3362.0,0.8786284841743373 -3363.0,0.8783250690477986 -3364.0,0.8780217586990365 -3365.0,0.8777185530918684 -3366.0,0.8774154521901238 -3367.0,0.8771124559576452 -3368.0,0.8768095643582873 -3369.0,0.8765067773559173 -3370.0,0.8762040949144149 -3371.0,0.8759015169976723 -3372.0,0.8755990435695943 -3373.0,0.8752966745940979 -3374.0,0.8749944100351126 -3375.0,0.8746922498565806 -3376.0,0.8743901940224563 -3377.0,0.8740882424967068 -3378.0,0.8737863952433113 -3379.0,0.8734846522262616 -3380.0,0.8731830134095622 -3381.0,0.8728814787572295 -3382.0,0.8725800482332928 -3383.0,0.8722787218017937 -3384.0,0.8719774994267858 -3385.0,0.8716763810723359 -3386.0,0.8713753667025225 -3387.0,0.8710744562814369 -3388.0,0.8707736497731826 -3389.0,0.8704729471418757 -3390.0,0.8701723483516445 -3391.0,0.8698718533666296 -3392.0,0.8695714621509845 -3393.0,0.8692711746688744 -3394.0,0.8689709908844772 -3395.0,0.8686709107619833 -3396.0,0.8683709342655954 -3397.0,0.8680710613595283 -3398.0,0.8677712920080094 -3399.0,0.8674716261752785 -3400.0,0.8671720638255875 -3401.0,0.866872604923201 -3402.0,0.8665732494323956 -3403.0,0.8662739973174602 -3404.0,0.8659748485426966 -3405.0,0.8656758030724182 -3406.0,0.8653768608709512 -3407.0,0.865078021902634 -3408.0,0.8647792861318173 -3409.0,0.864480653522864 -3410.0,0.8641821240401494 -3411.0,0.8638836976480612 -3412.0,0.8635853743109992 -3413.0,0.8632871539933757 -3414.0,0.8629890366596152 -3415.0,0.8626910222741545 -3416.0,0.8623931108014425 -3417.0,0.8620953022059407 -3418.0,0.8617975964521226 -3419.0,0.861499993504474 -3420.0,0.8612024933274933 -3421.0,0.8609050958856906 -3422.0,0.8606078011435888 -3423.0,0.8603106090657228 -3424.0,0.8600135196166395 -3425.0,0.8597165327608984 -3426.0,0.8594196484630713 -3427.0,0.859122866687742 -3428.0,0.8588261873995064 -3429.0,0.8585296105629731 -3430.0,0.8582331361427624 -3431.0,0.8579367641035073 -3432.0,0.8576404944098526 -3433.0,0.8573443270264555 -3434.0,0.8570482619179854 -3435.0,0.8567522990491241 -3436.0,0.8564564383845651 -3437.0,0.8561606798890145 -3438.0,0.8558650235271905 -3439.0,0.8555694692638234 -3440.0,0.8552740170636557 -3441.0,0.8549786668914422 -3442.0,0.8546834187119497 -3443.0,0.8543882724899573 -3444.0,0.8540932281902562 -3445.0,0.8537982857776497 -3446.0,0.8535034452169534 -3447.0,0.853208706472995 -3448.0,0.8529140695106141 -3449.0,0.852619534294663 -3450.0,0.8523251007900055 -3451.0,0.852030768961518 -3452.0,0.8517365387740887 -3453.0,0.8514424101926182 -3454.0,0.8511483831820191 -3455.0,0.8508544577072162 -3456.0,0.8505606337331462 -3457.0,0.8502669112247581 -3458.0,0.849973290147013 -3459.0,0.8496797704648839 -3460.0,0.849386352143356 -3461.0,0.849093035147427 -3462.0,0.8487998194421059 -3463.0,0.8485067049924144 -3464.0,0.8482136917633861 -3465.0,0.8479207797200666 -3466.0,0.8476279688275137 -3467.0,0.8473352590507971 -3468.0,0.8470426503549987 -3469.0,0.8467501427052125 -3470.0,0.8464577360665443 -3471.0,0.8461654304041123 -3472.0,0.8458732256830463 -3473.0,0.8455811218684888 -3474.0,0.8452891189255937 -3475.0,0.8449972168195271 -3476.0,0.8447054155154674 -3477.0,0.8444137149786046 -3478.0,0.8441221151741413 -3479.0,0.8438306160672915 -3480.0,0.8435392176232814 -3481.0,0.8432479198073497 -3482.0,0.8429567225847463 -3483.0,0.8426656259207336 -3484.0,0.842374629780586 -3485.0,0.8420837341295896 -3486.0,0.8417929389330429 -3487.0,0.8415022441562559 -3488.0,0.841211649764551 -3489.0,0.8409211557232624 -3490.0,0.8406307619977362 -3491.0,0.8403404685533307 -3492.0,0.8400502753554158 -3493.0,0.8397601823693737 -3494.0,0.8394701895605984 -3495.0,0.8391802968944958 -3496.0,0.8388905043364839 -3497.0,0.8386008118519926 -3498.0,0.8383112194064636 -3499.0,0.8380217269653507 -3500.0,0.8377323344941194 -3501.0,0.8374430419582476 -3502.0,0.8371538493232246 -3503.0,0.8368647565545517 -3504.0,0.8365757636177426 -3505.0,0.8362868704783223 -3506.0,0.8359980771018279 -3507.0,0.8357093834538087 -3508.0,0.8354207894998255 -3509.0,0.8351322952054511 -3510.0,0.8348439005362703 -3511.0,0.8345556054578798 -3512.0,0.8342674099358879 -3513.0,0.8339793139359151 -3514.0,0.8336913174235936 -3515.0,0.8334034203645676 -3516.0,0.8331156227244931 -3517.0,0.8328279244690378 -3518.0,0.8325403255638815 -3519.0,0.8322528259747157 -3520.0,0.8319654256672439 -3521.0,0.831678124607181 -3522.0,0.8313909227602545 -3523.0,0.8311038200922032 -3524.0,0.8308168165687777 -3525.0,0.8305299121557407 -3526.0,0.8302431068188665 -3527.0,0.8299564005239414 -3528.0,0.8296697932367634 -3529.0,0.8293832849231423 -3530.0,0.8290968755488998 -3531.0,0.8288105650798694 -3532.0,0.8285243534818962 -3533.0,0.8282382407208374 -3534.0,0.8279522267625616 -3535.0,0.8276663115729498 -3536.0,0.827380495117894 -3537.0,0.8270947773632987 -3538.0,0.8268091582750797 -3539.0,0.8265236378191647 -3540.0,0.8262382159614933 -3541.0,0.8259528926680166 -3542.0,0.8256676679046978 -3543.0,0.8253825416375115 -3544.0,0.8250975138324443 -3545.0,0.8248125844554944 -3546.0,0.8245277534726719 -3547.0,0.8242430208499985 -3548.0,0.8239583865535076 -3549.0,0.8236738505492445 -3550.0,0.823389412803266 -3551.0,0.8231050732816411 -3552.0,0.8228208319504496 -3553.0,0.8225366887757841 -3554.0,0.8222526437237482 -3555.0,0.8219686967604573 -3556.0,0.8216848478520387 -3557.0,0.8214010969646313 -3558.0,0.8211174440643856 -3559.0,0.8208338891174639 -3560.0,0.8205504320900403 -3561.0,0.8202670729483003 -3562.0,0.8199838116584413 -3563.0,0.8197006481866722 -3564.0,0.8194175824992138 -3565.0,0.8191346145622983 -3566.0,0.8188517443421698 -3567.0,0.8185689718050838 -3568.0,0.8182862969173077 -3569.0,0.8180037196451204 -3570.0,0.8177212399548126 -3571.0,0.8174388578126864 -3572.0,0.8171565731850557 -3573.0,0.8168743860382461 -3574.0,0.8165922963385946 -3575.0,0.8163103040524501 -3576.0,0.8160284091461728 -3577.0,0.8157466115861348 -3578.0,0.8154649113387197 -3579.0,0.8151833083703227 -3580.0,0.8149018026473506 -3581.0,0.8146203941362218 -3582.0,0.8143390828033664 -3583.0,0.814057868615226 -3584.0,0.8137767515382537 -3585.0,0.8134957315389144 -3586.0,0.8132148085836843 -3587.0,0.8129339826390516 -3588.0,0.8126532536715155 -3589.0,0.8123726216475874 -3590.0,0.8120920865337897 -3591.0,0.8118116482966568 -3592.0,0.8115313069027342 -3593.0,0.8112510623185794 -3594.0,0.8109709145107613 -3595.0,0.8106908634458602 -3596.0,0.8104109090904681 -3597.0,0.8101310514111886 -3598.0,0.8098512903746364 -3599.0,0.8095716259474384 -3600.0,0.8092920580962324 -3601.0,0.8090125867876682 -3602.0,0.8087332119884069 -3603.0,0.8084539336651209 -3604.0,0.8081747517844946 -3605.0,0.8078956663132234 -3606.0,0.8076166772180147 -3607.0,0.8073377844655869 -3608.0,0.8070589880226702 -3609.0,0.8067802878560063 -3610.0,0.8065016839323482 -3611.0,0.8062231762184606 -3612.0,0.8059447646811194 -3613.0,0.8056664492871123 -3614.0,0.8053882300032381 -3615.0,0.8051101067963075 -3616.0,0.8048320796331423 -3617.0,0.8045541484805758 -3618.0,0.8042763133054531 -3619.0,0.8039985740746303 -3620.0,0.8037209307549751 -3621.0,0.8034433833133668 -3622.0,0.8031659317166959 -3623.0,0.8028885759318646 -3624.0,0.8026113159257863 -3625.0,0.8023341516653858 -3626.0,0.8020570831175995 -3627.0,0.8017801102493751 -3628.0,0.801503233027672 -3629.0,0.8012264514194605 -3630.0,0.8009497653917226 -3631.0,0.8006731749114517 -3632.0,0.8003966799456527 -3633.0,0.8001202804613415 -3634.0,0.7998439764255459 -3635.0,0.7995677678053049 -3636.0,0.7992916545676685 -3637.0,0.7990156366796987 -3638.0,0.7987397141084684 -3639.0,0.7984638868210622 -3640.0,0.7981881547845758 -3641.0,0.7979125179661164 -3642.0,0.7976369763328026 -3643.0,0.7973615298517641 -3644.0,0.7970861784901424 -3645.0,0.79681092221509 -3646.0,0.7965357609937708 -3647.0,0.79626069479336 -3648.0,0.7959857235810444 -3649.0,0.7957108473240218 -3650.0,0.7954360659895015 -3651.0,0.795161379544704 -3652.0,0.7948867879568614 -3653.0,0.7946122911932167 -3654.0,0.7943378892210248 -3655.0,0.7940635820075511 -3656.0,0.793789369520073 -3657.0,0.7935152517258789 -3658.0,0.7932412285922685 -3659.0,0.792967300086553 -3660.0,0.7926934661760545 -3661.0,0.7924197268281069 -3662.0,0.7921460820100548 -3663.0,0.7918725316892544 -3664.0,0.7915990758330734 -3665.0,0.7913257144088902 -3666.0,0.7910524473840951 -3667.0,0.790779274726089 -3668.0,0.7905061964022845 -3669.0,0.7902332123801055 -3670.0,0.7899603226269868 -3671.0,0.7896875271103748 -3672.0,0.7894148257977269 -3673.0,0.7891422186565118 -3674.0,0.7888697056542096 -3675.0,0.7885972867583112 -3676.0,0.7883249619363193 -3677.0,0.7880527311557474 -3678.0,0.7877805943841204 -3679.0,0.7875085515889743 -3680.0,0.7872366027378565 -3681.0,0.7869647477983253 -3682.0,0.7866929867379505 -3683.0,0.786421319524313 -3684.0,0.786149746125005 -3685.0,0.7858782665076295 -3686.0,0.7856068806398011 -3687.0,0.7853355884891454 -3688.0,0.7850643900232994 -3689.0,0.7847932852099109 -3690.0,0.7845222740166391 -3691.0,0.7842513564111544 -3692.0,0.7839805323611383 -3693.0,0.7837098018342835 -3694.0,0.7834391647982937 -3695.0,0.783168621220884 -3696.0,0.7828981710697804 -3697.0,0.7826278143127203 -3698.0,0.7823575509174521 -3699.0,0.7820873808517352 -3700.0,0.7818173040833404 -3701.0,0.7815473205800495 -3702.0,0.7812774303096555 -3703.0,0.7810076332399623 -3704.0,0.7807379293387852 -3705.0,0.7804683185739504 -3706.0,0.7801988009132954 -3707.0,0.7799293763246686 -3708.0,0.7796600447759298 -3709.0,0.7793908062349495 -3710.0,0.7791216606696096 -3711.0,0.778852608047803 -3712.0,0.7785836483374337 -3713.0,0.7783147815064166 -3714.0,0.7780460075226782 -3715.0,0.7777773263541554 -3716.0,0.7775087379687966 -3717.0,0.7772402423345611 -3718.0,0.7769718394194195 -3719.0,0.7767035291913531 -3720.0,0.7764353116183546 -3721.0,0.7761671866684275 -3722.0,0.7758991543095866 -3723.0,0.7756312145098573 -3724.0,0.7753633672372766 -3725.0,0.7750956124598921 -3726.0,0.7748279501457628 -3727.0,0.7745603802629584 -3728.0,0.7742929027795596 -3729.0,0.7740255176636587 -3730.0,0.7737582248833583 -3731.0,0.7734910244067725 -3732.0,0.773223916202026 -3733.0,0.772956900237255 -3734.0,0.7726899764806062 -3735.0,0.7724231449002378 -3736.0,0.7721564054643185 -3737.0,0.7718897581410283 -3738.0,0.7716232028985581 -3739.0,0.77135673970511 -3740.0,0.7710903685288967 -3741.0,0.7708240893381421 -3742.0,0.770557902101081 -3743.0,0.7702918067859592 -3744.0,0.7700258033610335 -3745.0,0.7697598917945716 -3746.0,0.7694940720548523 -3747.0,0.769228344110165 -3748.0,0.7689627079288106 -3749.0,0.7686971634791006 -3750.0,0.7684317107293571 -3751.0,0.7681663496479141 -3752.0,0.7679010802031154 -3753.0,0.7676359023633167 -3754.0,0.7673708160968841 -3755.0,0.7671058213721945 -3756.0,0.7668409181576363 -3757.0,0.7665761064216083 -3758.0,0.7663113861325206 -3759.0,0.7660467572587937 -3760.0,0.7657822197688595 -3761.0,0.7655177736311605 -3762.0,0.7652534188141502 -3763.0,0.7649891552862932 -3764.0,0.7647249830160645 -3765.0,0.7644609019719505 -3766.0,0.7641969121224481 -3767.0,0.7639330134360653 -3768.0,0.763669205881321 -3769.0,0.7634054894267448 -3770.0,0.7631418640408772 -3771.0,0.7628783296922697 -3772.0,0.7626148863494845 -3773.0,0.7623515339810948 -3774.0,0.7620882725556846 -3775.0,0.7618251020418485 -3776.0,0.7615620224081925 -3777.0,0.7612990336233328 -3778.0,0.7610361356558971 -3779.0,0.7607733284745235 -3780.0,0.7605106120478607 -3781.0,0.760247986344569 -3782.0,0.7599854513333187 -3783.0,0.7597230069827916 -3784.0,0.7594606532616798 -3785.0,0.7591983901386863 -3786.0,0.7589362175825253 -3787.0,0.7586741355619213 -3788.0,0.7584121440456101 -3789.0,0.7581502430023378 -3790.0,0.7578884324008615 -3791.0,0.7576267122099493 -3792.0,0.7573650823983796 -3793.0,0.7571035429349421 -3794.0,0.756842093788437 -3795.0,0.7565807349276752 -3796.0,0.7563194663214787 -3797.0,0.75605828793868 -3798.0,0.7557971997481223 -3799.0,0.7555362017186598 -3800.0,0.7552752938191573 -3801.0,0.7550144760184904 -3802.0,0.7547537482855454 -3803.0,0.7544931105892194 -3804.0,0.7542325628984203 -3805.0,0.7539721051820666 -3806.0,0.7537117374090875 -3807.0,0.7534514595484232 -3808.0,0.7531912715690243 -3809.0,0.7529311734398524 -3810.0,0.7526711651298795 -3811.0,0.7524112466080888 -3812.0,0.7521514178434736 -3813.0,0.7518916788050385 -3814.0,0.7516320294617982 -3815.0,0.7513724697827788 -3816.0,0.7511129997370165 -3817.0,0.7508536192935584 -3818.0,0.7505943284214623 -3819.0,0.7503351270897969 -3820.0,0.7500760152676412 -3821.0,0.749816992924085 -3822.0,0.749558060028229 -3823.0,0.7492992165491842 -3824.0,0.7490404624560725 -3825.0,0.7487817977180266 -3826.0,0.7485232223041894 -3827.0,0.748264736183715 -3828.0,0.7480063393257678 -3829.0,0.7477480316995229 -3830.0,0.7474898132741661 -3831.0,0.7472316840188938 -3832.0,0.7469736439029131 -3833.0,0.7467156928954417 -3834.0,0.746457830965708 -3835.0,0.7462000580829508 -3836.0,0.7459423742164196 -3837.0,0.7456847793353749 -3838.0,0.7454272734090873 -3839.0,0.7451698564068383 -3840.0,0.7449125282979198 -3841.0,0.7446552890516346 -3842.0,0.7443981386372958 -3843.0,0.7441410770242273 -3844.0,0.7438841041817635 -3845.0,0.7436272200792495 -3846.0,0.7433704246860408 -3847.0,0.7431137179715036 -3848.0,0.7428570999050147 -3849.0,0.7426005704559613 -3850.0,0.7423441295937415 -3851.0,0.7420877772877637 -3852.0,0.7418315135074468 -3853.0,0.7415753382222207 -3854.0,0.7413192514015252 -3855.0,0.7410632530148112 -3856.0,0.7408073430315402 -3857.0,0.7405515214211835 -3858.0,0.7402957881532238 -3859.0,0.7400401431971538 -3860.0,0.7397845865224771 -3861.0,0.7395291180987076 -3862.0,0.7392737378953697 -3863.0,0.7390184458819984 -3864.0,0.7387632420281393 -3865.0,0.7385081263033484 -3866.0,0.7382530986771922 -3867.0,0.7379981591192479 -3868.0,0.737743307599103 -3869.0,0.7374885440863556 -3870.0,0.7372338685506141 -3871.0,0.7369792809614978 -3872.0,0.7367247812886362 -3873.0,0.7364703695016692 -3874.0,0.7362160455702476 -3875.0,0.7359618094640321 -3876.0,0.7357076611526944 -3877.0,0.7354536006059164 -3878.0,0.7351996277933904 -3879.0,0.7349457426848195 -3880.0,0.7346919452499169 -3881.0,0.7344382354584066 -3882.0,0.7341846132800227 -3883.0,0.7339310786845099 -3884.0,0.7336776316416236 -3885.0,0.7334242721211293 -3886.0,0.7331710000928029 -3887.0,0.732917815526431 -3888.0,0.7326647183918106 -3889.0,0.732411708658749 -3890.0,0.732158786297064 -3891.0,0.7319059512765839 -3892.0,0.731653203567147 -3893.0,0.7314005431386027 -3894.0,0.7311479699608103 -3895.0,0.7308954840036397 -3896.0,0.7306430852369711 -3897.0,0.7303907736306953 -3898.0,0.7301385491547131 -3899.0,0.7298864117789362 -3900.0,0.7296343614732864 -3901.0,0.729382398207696 -3902.0,0.7291305219521075 -3903.0,0.728878732676474 -3904.0,0.7286270303507587 -3905.0,0.7283754149449354 -3906.0,0.7281238864289884 -3907.0,0.727872444772912 -3908.0,0.7276210899467112 -3909.0,0.727369821920401 -3910.0,0.7271186406640071 -3911.0,0.7268675461475654 -3912.0,0.7266165383411222 -3913.0,0.7263656172147338 -3914.0,0.7261147827384675 -3915.0,0.7258640348824005 -3916.0,0.7256133736166203 -3917.0,0.7253627989112248 -3918.0,0.7251123107363224 -3919.0,0.7248619090620316 -3920.0,0.7246115938584815 -3921.0,0.7243613650958111 -3922.0,0.72411122274417 -3923.0,0.7238611667737179 -3924.0,0.7236111971546252 -3925.0,0.7233613138570723 -3926.0,0.7231115168512497 -3927.0,0.7228618061073587 -3928.0,0.7226121815956107 -3929.0,0.722362643286227 -3930.0,0.7221131911494396 -3931.0,0.7218638251554909 -3932.0,0.7216145452746331 -3933.0,0.7213653514771291 -3934.0,0.7211162437332518 -3935.0,0.7208672220132845 -3936.0,0.7206182862875206 -3937.0,0.720369436526264 -3938.0,0.7201206726998287 -3939.0,0.7198719947785391 -3940.0,0.7196234027327297 -3941.0,0.7193748965327452 -3942.0,0.7191264761489407 -3943.0,0.7188781415516813 -3944.0,0.7186298927113427 -3945.0,0.7183817295983105 -3946.0,0.7181336521829806 -3947.0,0.7178856604357593 -3948.0,0.717637754327063 -3949.0,0.7173899338273183 -3950.0,0.717142198906962 -3951.0,0.7168945495364409 -3952.0,0.7166469856862127 -3953.0,0.7163995073267444 -3954.0,0.7161521144285139 -3955.0,0.715904806962009 -3956.0,0.7156575848977276 -3957.0,0.7154104482061779 -3958.0,0.7151633968578786 -3959.0,0.7149164308233579 -3960.0,0.7146695500731547 -3961.0,0.714422754577818 -3962.0,0.7141760443079068 -3963.0,0.7139294192339903 -3964.0,0.7136828793266482 -3965.0,0.7134364245564698 -3966.0,0.713190054894055 -3967.0,0.7129437703100135 -3968.0,0.7126975707749658 -3969.0,0.7124514562595415 -3970.0,0.7122054267343814 -3971.0,0.7119594821701356 -3972.0,0.711713622537465 -3973.0,0.7114678478070402 -3974.0,0.7112221579495421 -3975.0,0.7109765529356618 -3976.0,0.7107310327361002 -3977.0,0.7104855973215686 -3978.0,0.7102402466627884 -3979.0,0.709994980730491 -3980.0,0.709749799495418 -3981.0,0.7095047029283211 -3982.0,0.7092596909999621 -3983.0,0.7090147636811127 -3984.0,0.708769920942555 -3985.0,0.7085251627550809 -3986.0,0.7082804890894927 -3987.0,0.7080358999166025 -3988.0,0.7077913952072327 -3989.0,0.7075469749322156 -3990.0,0.7073026390623937 -3991.0,0.7070583875686193 -3992.0,0.7068142204217552 -3993.0,0.7065701375926741 -3994.0,0.7063261390522584 -3995.0,0.7060822247714011 -3996.0,0.705838394721005 -3997.0,0.7055946488719829 -3998.0,0.7053509871952576 -3999.0,0.7051074096617622 -4000.0,0.7048639162424396 -4001.0,0.7046205069082427 -4002.0,0.7043771816301349 -4003.0,0.7041339403790887 -4004.0,0.7038907831260878 -4005.0,0.7036477098421249 -4006.0,0.7034047204982032 -4007.0,0.703161815065336 -4008.0,0.7029189935145463 -4009.0,0.7026762558168673 -4010.0,0.7024336019433423 -4011.0,0.7021910318650243 -4012.0,0.7019485455529764 -4013.0,0.7017061429782718 -4014.0,0.7014638241119938 -4015.0,0.7012215889252355 -4016.0,0.7009794373890997 -4017.0,0.7007373694746999 -4018.0,0.7004953851531589 -4019.0,0.7002534843956097 -4020.0,0.7000116671731956 -4021.0,0.6997699334570693 -4022.0,0.6995282832183938 -4023.0,0.699286716428342 -4024.0,0.6990452330580967 -4025.0,0.6988038330788509 -4026.0,0.698562516461807 -4027.0,0.6983212831781779 -4028.0,0.6980801331991863 -4029.0,0.6978390664960645 -4030.0,0.6975980830400552 -4031.0,0.6973571828024109 -4032.0,0.6971163657543937 -4033.0,0.6968756318672761 -4034.0,0.6966349811123402 -4035.0,0.6963944134608783 -4036.0,0.6961539288841921 -4037.0,0.6959135273535938 -4038.0,0.6956732088404052 -4039.0,0.695432973315958 -4040.0,0.6951928207515939 -4041.0,0.6949527511186644 -4042.0,0.694712764388531 -4043.0,0.6944728605325651 -4044.0,0.6942330395221478 -4045.0,0.6939933013286701 -4046.0,0.6937536459235333 -4047.0,0.693514073278148 -4048.0,0.693274583363935 -4049.0,0.6930351761523248 -4050.0,0.6927958516147581 -4051.0,0.692556609722685 -4052.0,0.6923174504475659 -4053.0,0.6920783737608707 -4054.0,0.6918393796340792 -4055.0,0.6916004680386814 -4056.0,0.6913616389461766 -4057.0,0.6911228923280746 -4058.0,0.6908842281558942 -4059.0,0.6906456464011649 -4060.0,0.6904071470354255 -4061.0,0.6901687300302247 -4062.0,0.6899303953571212 -4063.0,0.6896921429876833 -4064.0,0.6894539728934893 -4065.0,0.6892158850461273 -4066.0,0.688977879417195 -4067.0,0.6887399559783002 -4068.0,0.6885021147010603 -4069.0,0.6882643555571026 -4070.0,0.6880266785180641 -4071.0,0.6877890835555918 -4072.0,0.6875515706413422 -4073.0,0.6873141397469819 -4074.0,0.6870767908441869 -4075.0,0.6868395239046435 -4076.0,0.6866023389000473 -4077.0,0.6863652358021038 -4078.0,0.6861282145825285 -4079.0,0.6858912752130464 -4080.0,0.6856544176653924 -4081.0,0.6854176419113109 -4082.0,0.6851809479225567 -4083.0,0.6849443356708936 -4084.0,0.6847078051280957 -4085.0,0.6844713562659465 -4086.0,0.6842349890562393 -4087.0,0.6839987034707774 -4088.0,0.6837624994813735 -4089.0,0.6835263770598502 -4090.0,0.68329033617804 -4091.0,0.6830543768077847 -4092.0,0.6828184989209363 -4093.0,0.682582702489356 -4094.0,0.6823469874849154 -4095.0,0.6821113538794951 -4096.0,0.6818758016449857 -4097.0,0.6816403307532878 -4098.0,0.6814049411763112 -4099.0,0.6811696328859758 -4100.0,0.680934405854211 -4101.0,0.6806992600529558 -4102.0,0.6804641954541591 -4103.0,0.6802292120297796 -4104.0,0.6799943097517852 -4105.0,0.6797594885921538 -4106.0,0.6795247485228733 -4107.0,0.6792900895159405 -4108.0,0.6790555115433624 -4109.0,0.6788210145771557 -4110.0,0.6785865985893464 -4111.0,0.6783522635519706 -4112.0,0.6781180094370739 -4113.0,0.6778838362167112 -4114.0,0.6776497438629475 -4115.0,0.6774157323478572 -4116.0,0.6771818016435247 -4117.0,0.6769479517220435 -4118.0,0.6767141825555171 -4119.0,0.6764804941160585 -4120.0,0.6762468863757903 -4121.0,0.676013359306845 -4122.0,0.6757799128813645 -4123.0,0.6755465470715002 -4124.0,0.6753132618494134 -4125.0,0.6750800571872747 -4126.0,0.6748469330572646 -4127.0,0.6746138894315732 -4128.0,0.6743809262823999 -4129.0,0.674148043581954 -4130.0,0.6739152413024542 -4131.0,0.673682519416129 -4132.0,0.6734498778952164 -4133.0,0.6732173167119637 -4134.0,0.6729848358386283 -4135.0,0.672752435247477 -4136.0,0.6725201149107858 -4137.0,0.6722878748008408 -4138.0,0.6720557148899374 -4139.0,0.6718236351503807 -4140.0,0.6715916355544851 -4141.0,0.6713597160745748 -4142.0,0.6711278766829836 -4143.0,0.6708961173520546 -4144.0,0.6706644380541407 -4145.0,0.6704328387616042 -4146.0,0.670201319446817 -4147.0,0.6699698800821606 -4148.0,0.669738520640026 -4149.0,0.6695072410928136 -4150.0,0.6692760414129334 -4151.0,0.669044921572805 -4152.0,0.6688138815448575 -4153.0,0.6685829213015296 -4154.0,0.6683520408152694 -4155.0,0.6681212400585345 -4156.0,0.6678905190037919 -4157.0,0.6676598776235185 -4158.0,0.6674293158902004 -4159.0,0.6671988337763332 -4160.0,0.6669684312544222 -4161.0,0.6667381082969818 -4162.0,0.6665078648765363 -4163.0,0.6662777009656196 -4164.0,0.6660476165367744 -4165.0,0.6658176115625535 -4166.0,0.6655876860155189 -4167.0,0.6653578398682423 -4168.0,0.6651280730933046 -4169.0,0.6648983856632964 -4170.0,0.6646687775508177 -4171.0,0.6644392487284777 -4172.0,0.6642097991688954 -4173.0,0.6639804288446993 -4174.0,0.663751137728527 -4175.0,0.6635219257930258 -4176.0,0.6632927930108524 -4177.0,0.663063739354673 -4178.0,0.662834764797163 -4179.0,0.6626058693110075 -4180.0,0.6623770528689009 -4181.0,0.6621483154435471 -4182.0,0.6619196570076595 -4183.0,0.6616910775339606 -4184.0,0.6614625769951827 -4185.0,0.6612341553640673 -4186.0,0.6610058126133653 -4187.0,0.6607775487158372 -4188.0,0.6605493636442527 -4189.0,0.660321257371391 -4190.0,0.6600932298700407 -4191.0,0.6598652811129997 -4192.0,0.6596374110730755 -4193.0,0.6594096197230848 -4194.0,0.6591819070358537 -4195.0,0.6589542729842178 -4196.0,0.6587267175410221 -4197.0,0.6584992406791208 -4198.0,0.6582718423713776 -4199.0,0.6580445225906654 -4200.0,0.6578172813098668 -4201.0,0.6575901185018735 -4202.0,0.6573630341395866 -4203.0,0.6571360281959167 -4204.0,0.6569091006437835 -4205.0,0.6566822514561163 -4206.0,0.6564554806058536 -4207.0,0.6562287880659433 -4208.0,0.6560021738093427 -4209.0,0.6557756378090182 -4210.0,0.6555491800379458 -4211.0,0.6553228004691108 -4212.0,0.6550964990755078 -4213.0,0.6548702758301406 -4214.0,0.6546441307060223 -4215.0,0.6544180636761757 -4216.0,0.6541920747136325 -4217.0,0.6539661637914338 -4218.0,0.6537403308826303 -4219.0,0.6535145759602815 -4220.0,0.6532888989974567 -4221.0,0.6530632999672341 -4222.0,0.6528377788427017 -4223.0,0.6526123355969561 -4224.0,0.6523869702031038 -4225.0,0.6521616826342602 -4226.0,0.6519364728635503 -4227.0,0.651711340864108 -4228.0,0.6514862866090769 -4229.0,0.6512613100716096 -4230.0,0.6510364112248681 -4231.0,0.6508115900420234 -4232.0,0.6505868464962562 -4233.0,0.6503621805607561 -4234.0,0.6501375922087221 -4235.0,0.6499130814133627 -4236.0,0.649688648147895 -4237.0,0.6494642923855459 -4238.0,0.6492400140995515 -4239.0,0.6490158132631569 -4240.0,0.6487916898496167 -4241.0,0.6485676438321946 -4242.0,0.6483436751841634 -4243.0,0.6481197838788053 -4244.0,0.6478959698894119 -4245.0,0.6476722331892836 -4246.0,0.6474485737517304 -4247.0,0.6472249915500712 -4248.0,0.6470014865576345 -4249.0,0.6467780587477575 -4250.0,0.646554708093787 -4251.0,0.646331434569079 -4252.0,0.6461082381469986 -4253.0,0.6458851188009199 -4254.0,0.6456620765042267 -4255.0,0.6454391112303113 -4256.0,0.6452162229525759 -4257.0,0.6449934116444314 -4258.0,0.6447706772792979 -4259.0,0.6445480198306051 -4260.0,0.6443254392717914 -4261.0,0.6441029355763046 -4262.0,0.6438805087176017 -4263.0,0.6436581586691488 -4264.0,0.643435885404421 -4265.0,0.6432136888969029 -4266.0,0.6429915691200879 -4267.0,0.642769526047479 -4268.0,0.6425475596525878 -4269.0,0.6423256699089354 -4270.0,0.6421038567900521 -4271.0,0.6418821202694771 -4272.0,0.6416604603207589 -4273.0,0.6414388769174549 -4274.0,0.6412173700331322 -4275.0,0.6409959396413663 -4276.0,0.6407745857157423 -4277.0,0.6405533082298543 -4278.0,0.6403321071573055 -4279.0,0.6401109824717082 -4280.0,0.6398899341466838 -4281.0,0.6396689621558629 -4282.0,0.6394480664728852 -4283.0,0.6392272470713994 -4284.0,0.6390065039250633 -4285.0,0.638785837007544 -4286.0,0.6385652462925174 -4287.0,0.6383447317536688 -4288.0,0.6381242933646921 -4289.0,0.637903931099291 -4290.0,0.6376836449311777 -4291.0,0.6374634348340736 -4292.0,0.6372433007817094 -4293.0,0.6370232427478246 -4294.0,0.6368032607061679 -4295.0,0.6365833546304971 -4296.0,0.636363524494579 -4297.0,0.6361437702721893 -4298.0,0.6359240919371132 -4299.0,0.6357044894631444 -4300.0,0.6354849628240862 -4301.0,0.6352655119937505 -4302.0,0.6350461369459584 -4303.0,0.6348268376545401 -4304.0,0.6346076140933349 -4305.0,0.6343884662361908 -4306.0,0.6341693940569653 -4307.0,0.6339503975295244 -4308.0,0.6337314766277438 -4309.0,0.6335126313255075 -4310.0,0.633293861596709 -4311.0,0.6330751674152506 -4312.0,0.6328565487550438 -4313.0,0.6326380055900088 -4314.0,0.6324195378940751 -4315.0,0.6322011456411812 -4316.0,0.6319828288052743 -4317.0,0.6317645873603109 -4318.0,0.6315464212802564 -4319.0,0.6313283305390851 -4320.0,0.6311103151107804 -4321.0,0.6308923749693347 -4322.0,0.6306745100887493 -4323.0,0.6304567204430345 -4324.0,0.6302390060062095 -4325.0,0.6300213667523028 -4326.0,0.6298038026553513 -4327.0,0.6295863136894014 -4328.0,0.6293688998285082 -4329.0,0.6291515610467359 -4330.0,0.6289342973181574 -4331.0,0.6287171086168548 -4332.0,0.6284999949169191 -4333.0,0.6282829561924502 -4334.0,0.6280659924175569 -4335.0,0.627849103566357 -4336.0,0.6276322896129775 -4337.0,0.6274155505315537 -4338.0,0.6271988862962306 -4339.0,0.6269822968811614 -4340.0,0.6267657822605086 -4341.0,0.6265493424084437 -4342.0,0.626332977299147 -4343.0,0.6261166869068078 -4344.0,0.625900471205624 -4345.0,0.6256843301698027 -4346.0,0.6254682637735601 -4347.0,0.6252522719911208 -4348.0,0.6250363547967186 -4349.0,0.6248205121645962 -4350.0,0.6246047440690051 -4351.0,0.6243890504842059 -4352.0,0.6241734313844677 -4353.0,0.6239578867440687 -4354.0,0.6237424165372962 -4355.0,0.6235270207384461 -4356.0,0.6233116993218233 -4357.0,0.6230964522617414 -4358.0,0.622881279532523 -4359.0,0.6226661811084997 -4360.0,0.6224511569640117 -4361.0,0.6222362070734082 -4362.0,0.6220213314110473 -4363.0,0.6218065299512959 -4364.0,0.6215918026685298 -4365.0,0.6213771495371334 -4366.0,0.6211625705315003 -4367.0,0.6209480656260328 -4368.0,0.620733634795142 -4369.0,0.6205192780132478 -4370.0,0.6203049952547791 -4371.0,0.6200907864941735 -4372.0,0.6198766517058774 -4373.0,0.619662590864346 -4374.0,0.6194486039440438 -4375.0,0.6192346909194433 -4376.0,0.6190208517650264 -4377.0,0.6188070864552836 -4378.0,0.6185933949647143 -4379.0,0.6183797772678268 -4380.0,0.6181662333391377 -4381.0,0.617952763153173 -4382.0,0.6177393666844674 -4383.0,0.617526043907564 -4384.0,0.6173127947970151 -4385.0,0.6170996193273816 -4386.0,0.6168865174732331 -4387.0,0.6166734892091483 -4388.0,0.6164605345097144 -4389.0,0.6162476533495275 -4390.0,0.6160348457031922 -4391.0,0.6158221115453225 -4392.0,0.6156094508505404 -4393.0,0.6153968635934772 -4394.0,0.6151843497487728 -4395.0,0.6149719092910758 -4396.0,0.6147595421950436 -4397.0,0.6145472484353424 -4398.0,0.6143350279866471 -4399.0,0.6141228808236412 -4400.0,0.6139108069210173 -4401.0,0.6136988062534764 -4402.0,0.6134868787957285 -4403.0,0.613275024522492 -4404.0,0.6130632434084944 -4405.0,0.6128515354284717 -4406.0,0.6126399005571685 -4407.0,0.6124283387693388 -4408.0,0.6122168500397442 -4409.0,0.6120054343431561 -4410.0,0.6117940916543539 -4411.0,0.6115828219481261 -4412.0,0.6113716251992697 -4413.0,0.6111605013825905 -4414.0,0.6109494504729029 -4415.0,0.6107384724450301 -4416.0,0.610527567273804 -4417.0,0.6103167349340651 -4418.0,0.6101059754006627 -4419.0,0.6098952886484547 -4420.0,0.6096846746523076 -4421.0,0.6094741333870968 -4422.0,0.6092636648277062 -4423.0,0.6090532689490286 -4424.0,0.608842945725965 -4425.0,0.6086326951334257 -4426.0,0.6084225171463291 -4427.0,0.6082124117396026 -4428.0,0.6080023788881822 -4429.0,0.6077924185670125 -4430.0,0.6075825307510465 -4431.0,0.6073727154152465 -4432.0,0.607162972534583 -4433.0,0.6069533020840349 -4434.0,0.6067437040385903 -4435.0,0.6065341783732456 -4436.0,0.606324725063006 -4437.0,0.6061153440828853 -4438.0,0.6059060354079056 -4439.0,0.605696799013098 -4440.0,0.6054876348735023 -4441.0,0.6052785429641666 -4442.0,0.6050695232601478 -4443.0,0.6048605757365114 -4444.0,0.6046517003683314 -4445.0,0.6044428971306905 -4446.0,0.6042341659986802 -4447.0,0.6040255069474001 -4448.0,0.6038169199519589 -4449.0,0.6036084049874736 -4450.0,0.6033999620290699 -4451.0,0.603191591051882 -4452.0,0.6029832920310529 -4453.0,0.602775064941734 -4454.0,0.6025669097590853 -4455.0,0.6023588264582755 -4456.0,0.6021508150144816 -4457.0,0.6019428754028896 -4458.0,0.6017350075986936 -4459.0,0.6015272115770964 -4460.0,0.6013194873133099 -4461.0,0.6011118347825536 -4462.0,0.6009042539600563 -4463.0,0.6006967448210551 -4464.0,0.6004893073407958 -4465.0,0.6002819414945324 -4466.0,0.6000746472575278 -4467.0,0.5998674246050533 -4468.0,0.5996602735123887 -4469.0,0.5994531939548223 -4470.0,0.5992461859076513 -4471.0,0.5990392493461809 -4472.0,0.5988323842457252 -4473.0,0.5986255905816067 -4474.0,0.5984188683291563 -4475.0,0.5982122174637136 -4476.0,0.5980056379606267 -4477.0,0.5977991297952522 -4478.0,0.5975926929429551 -4479.0,0.597386327379109 -4480.0,0.5971800330790961 -4481.0,0.5969738100183068 -4482.0,0.5967676581721403 -4483.0,0.5965615775160042 -4484.0,0.5963555680253146 -4485.0,0.5961496296754961 -4486.0,0.5959437624419817 -4487.0,0.5957379663002129 -4488.0,0.5955322412256397 -4489.0,0.5953265871937208 -4490.0,0.595121004179923 -4491.0,0.5949154921597216 -4492.0,0.5947100511086009 -4493.0,0.5945046810020529 -4494.0,0.5942993818155787 -4495.0,0.5940941535246875 -4496.0,0.5938889961048971 -4497.0,0.5936839095317338 -4498.0,0.593478893780732 -4499.0,0.593273948827435 -4500.0,0.5930690746473944 -4501.0,0.59286427121617 -4502.0,0.5926595385093305 -4503.0,0.5924548765024528 -4504.0,0.5922502851711219 -4505.0,0.5920457644909318 -4506.0,0.5918413144374846 -4507.0,0.5916369349863908 -4508.0,0.5914326261132696 -4509.0,0.5912283877937484 -4510.0,0.5910242200034631 -4511.0,0.5908201227180577 -4512.0,0.5906160959131852 -4513.0,0.5904121395645066 -4514.0,0.5902082536476912 -4515.0,0.5900044381384173 -4516.0,0.5898006930123708 -4517.0,0.5895970182452466 -4518.0,0.5893934138127477 -4519.0,0.5891898796905856 -4520.0,0.5889864158544801 -4521.0,0.5887830222801596 -4522.0,0.5885796989433606 -4523.0,0.5883764458198282 -4524.0,0.5881732628853157 -4525.0,0.587970150115585 -4526.0,0.587767107486406 -4527.0,0.5875641349735574 -4528.0,0.5873612325528259 -4529.0,0.5871584002000069 -4530.0,0.5869556378909039 -4531.0,0.5867529456013286 -4532.0,0.5865503233071018 -4533.0,0.5863477709840517 -4534.0,0.5861452886080153 -4535.0,0.5859428761548382 -4536.0,0.5857405336003739 -4537.0,0.5855382609204844 -4538.0,0.5853360580910402 -4539.0,0.5851339250879196 -4540.0,0.5849318618870101 -4541.0,0.5847298684642066 -4542.0,0.5845279447954131 -4543.0,0.5843260908565414 -4544.0,0.5841243066235118 -4545.0,0.5839225920722529 -4546.0,0.5837209471787018 -4547.0,0.5835193719188034 -4548.0,0.5833178662685117 -4549.0,0.5831164302037881 -4550.0,0.582915063700603 -4551.0,0.5827137667349347 -4552.0,0.58251253928277 -4553.0,0.5823113813201041 -4554.0,0.58211029282294 -4555.0,0.5819092737672895 -4556.0,0.5817083241291725 -4557.0,0.5815074438846172 -4558.0,0.5813066330096599 -4559.0,0.5811058914803454 -4560.0,0.5809052192727269 -4561.0,0.5807046163628653 -4562.0,0.5805040827268304 -4563.0,0.5803036183406999 -4564.0,0.58010322318056 -4565.0,0.5799028972225048 -4566.0,0.5797026404426369 -4567.0,0.5795024528170672 -4568.0,0.5793023343219149 -4569.0,0.5791022849333073 -4570.0,0.5789023046273797 -4571.0,0.5787023933802761 -4572.0,0.5785025511681485 -4573.0,0.5783027779671572 -4574.0,0.5781030737534708 -4575.0,0.5779034385032659 -4576.0,0.5777038721927276 -4577.0,0.5775043747980488 -4578.0,0.5773049462954314 -4579.0,0.5771055866610846 -4580.0,0.5769062958712265 -4581.0,0.5767070739020831 -4582.0,0.5765079207298887 -4583.0,0.5763088363308856 -4584.0,0.5761098206813247 -4585.0,0.5759108737574647 -4586.0,0.575711995535573 -4587.0,0.5755131859919245 -4588.0,0.5753144451028028 -4589.0,0.5751157728444998 -4590.0,0.5749171691933149 -4591.0,0.5747186341255566 -4592.0,0.5745201676175407 -4593.0,0.5743217696455919 -4594.0,0.5741234401860426 -4595.0,0.5739251792152336 -4596.0,0.5737269867095137 -4597.0,0.5735288626452402 -4598.0,0.5733308069987781 -4599.0,0.5731328197465011 -4600.0,0.5729349008647905 -4601.0,0.5727370503300362 -4602.0,0.572539268118636 -4603.0,0.5723415542069958 -4604.0,0.57214390857153 -4605.0,0.5719463311886607 -4606.0,0.5717488220348185 -4607.0,0.571551381086442 -4608.0,0.5713540083199778 -4609.0,0.571156703711881 -4610.0,0.5709594672386143 -4611.0,0.5707622988766491 -4612.0,0.5705651986024646 -4613.0,0.570368166392548 -4614.0,0.5701712022233949 -4615.0,0.5699743060715089 -4616.0,0.5697774779134018 -4617.0,0.5695807177255934 -4618.0,0.5693840254846116 -4619.0,0.5691874011669925 -4620.0,0.5689908447492803 -4621.0,0.5687943562080271 -4622.0,0.5685979355197933 -4623.0,0.5684015826611474 -4624.0,0.5682052976086659 -4625.0,0.5680090803389335 -4626.0,0.5678129308285428 -4627.0,0.5676168490540946 -4628.0,0.5674208349921978 -4629.0,0.5672248886194694 -4630.0,0.5670290099125344 -4631.0,0.5668331988480259 -4632.0,0.5666374554025849 -4633.0,0.5664417795528609 -4634.0,0.5662461712755111 -4635.0,0.5660506305472008 -4636.0,0.5658551573446036 -4637.0,0.5656597516444007 -4638.0,0.5654644134232818 -4639.0,0.5652691426579445 -4640.0,0.5650739393250942 -4641.0,0.5648788034014449 -4642.0,0.564683734863718 -4643.0,0.5644887336886434 -4644.0,0.5642937998529589 -4645.0,0.5640989333334103 -4646.0,0.5639041341067513 -4647.0,0.563709402149744 -4648.0,0.5635147374391581 -4649.0,0.5633201399517717 -4650.0,0.5631256096643705 -4651.0,0.5629311465537488 -4652.0,0.5627367505967082 -4653.0,0.5625424217700589 -4654.0,0.5623481600506188 -4655.0,0.562153965415214 -4656.0,0.5619598378406784 -4657.0,0.561765777303854 -4658.0,0.5615717837815909 -4659.0,0.5613778572507468 -4660.0,0.561183997688188 -4661.0,0.5609902050707885 -4662.0,0.5607964793754299 -4663.0,0.5606028205790025 -4664.0,0.5604092286584039 -4665.0,0.5602157035905402 -4666.0,0.5600222453523253 -4667.0,0.5598288539206808 -4668.0,0.5596355292725368 -4669.0,0.5594422713848309 -4670.0,0.5592490802345089 -4671.0,0.5590559557985245 -4672.0,0.5588628980538394 -4673.0,0.5586699069774231 -4674.0,0.5584769825462534 -4675.0,0.5582841247373156 -4676.0,0.5580913335276033 -4677.0,0.5578986088941178 -4678.0,0.5577059508138685 -4679.0,0.5575133592638728 -4680.0,0.5573208342211557 -4681.0,0.5571283756627508 -4682.0,0.5569359835656986 -4683.0,0.5567436579070486 -4684.0,0.5565513986638576 -4685.0,0.5563592058131904 -4686.0,0.5561670793321198 -4687.0,0.5559750191977267 -4688.0,0.5557830253870996 -4689.0,0.5555910978773348 -4690.0,0.5553992366455373 -4691.0,0.5552074416688189 -4692.0,0.5550157129243001 -4693.0,0.5548240503891091 -4694.0,0.554632454040382 -4695.0,0.5544409238552626 -4696.0,0.5542494598109028 -4697.0,0.5540580618844623 -4698.0,0.5538667300531087 -4699.0,0.5536754642940177 -4700.0,0.5534842645843726 -4701.0,0.5532931309013646 -4702.0,0.5531020632221928 -4703.0,0.5529110615240643 -4704.0,0.5527201257841939 -4705.0,0.5525292559798046 -4706.0,0.5523384520881268 -4707.0,0.5521477140863991 -4708.0,0.5519570419518678 -4709.0,0.5517664356617871 -4710.0,0.551575895193419 -4711.0,0.5513854205240335 -4712.0,0.5511950116309083 -4713.0,0.5510046684913291 -4714.0,0.5508143910825893 -4715.0,0.5506241793819902 -4716.0,0.5504340333668408 -4717.0,0.5502439530144584 -4718.0,0.5500539383021674 -4719.0,0.5498639892073007 -4720.0,0.5496741057071987 -4721.0,0.5494842877792095 -4722.0,0.5492945354006895 -4723.0,0.5491048485490025 -4724.0,0.5489152272015202 -4725.0,0.5487256713356222 -4726.0,0.5485361809286958 -4727.0,0.5483467559581362 -4728.0,0.5481573964013465 -4729.0,0.5479681022357373 -4730.0,0.5477788734387273 -4731.0,0.5475897099877429 -4732.0,0.5474006118602183 -4733.0,0.5472115790335954 -4734.0,0.5470226114853239 -4735.0,0.5468337091928615 -4736.0,0.5466448721336734 -4737.0,0.5464561002852328 -4738.0,0.5462673936250206 -4739.0,0.5460787521305255 -4740.0,0.5458901757792438 -4741.0,0.5457016645486799 -4742.0,0.5455132184163455 -4743.0,0.5453248373597607 -4744.0,0.5451365213564527 -4745.0,0.5449482703839571 -4746.0,0.5447600844198167 -4747.0,0.5445719634415823 -4748.0,0.5443839074268125 -4749.0,0.5441959163530736 -4750.0,0.5440079901979397 -4751.0,0.5438201289389923 -4752.0,0.5436323325538213 -4753.0,0.5434446010200237 -4754.0,0.5432569343152045 -4755.0,0.5430693324169766 -4756.0,0.5428817953029603 -4757.0,0.5426943229507839 -4758.0,0.5425069153380833 -4759.0,0.542319572442502 -4760.0,0.5421322942416915 -4761.0,0.5419450807133108 -4762.0,0.5417579318350267 -4763.0,0.5415708475845139 -4764.0,0.5413838279394543 -4765.0,0.541196872877538 -4766.0,0.5410099823764626 -4767.0,0.5408231564139334 -4768.0,0.5406363949676635 -4769.0,0.5404496980153735 -4770.0,0.5402630655347919 -4771.0,0.5400764975036548 -4772.0,0.5398899938997059 -4773.0,0.5397035547006969 -4774.0,0.5395171798843867 -4775.0,0.5393308694285422 -4776.0,0.5391446233109382 -4777.0,0.5389584415093566 -4778.0,0.5387723240015873 -4779.0,0.5385862707654279 -4780.0,0.5384002817786836 -4781.0,0.5382143570191672 -4782.0,0.5380284964646994 -4783.0,0.5378427000931082 -4784.0,0.5376569678822296 -4785.0,0.5374712998099069 -4786.0,0.5372856958539916 -4787.0,0.5371001559923422 -4788.0,0.5369146802028252 -4789.0,0.5367292684633147 -4790.0,0.5365439207516925 -4791.0,0.536358637045848 -4792.0,0.5361734173236781 -4793.0,0.5359882615630873 -4794.0,0.5358031697419883 -4795.0,0.5356181418383006 -4796.0,0.5354331778299518 -4797.0,0.5352482776948772 -4798.0,0.5350634414110194 -4799.0,0.5348786689563289 -4800.0,0.5346939603087635 -4801.0,0.534509315446289 -4802.0,0.5343247343468785 -4803.0,0.534140216988513 -4804.0,0.5339557633491807 -4805.0,0.5337713734068777 -4806.0,0.5335870471396078 -4807.0,0.5334027845253819 -4808.0,0.5332185855422191 -4809.0,0.5330344501681457 -4810.0,0.5328503783811955 -4811.0,0.5326663701594104 -4812.0,0.5324824254808393 -4813.0,0.5322985443235392 -4814.0,0.5321147266655741 -4815.0,0.5319309724850163 -4816.0,0.5317472817599449 -4817.0,0.531563654468447 -4818.0,0.5313800905886173 -4819.0,0.531196590098558 -4820.0,0.5310131529763789 -4821.0,0.5308297792001969 -4822.0,0.5306464687481373 -4823.0,0.5304632215983321 -4824.0,0.5302800377289216 -4825.0,0.5300969171180532 -4826.0,0.5299138597438818 -4827.0,0.5297308655845702 -4828.0,0.5295479346182883 -4829.0,0.5293650668232139 -4830.0,0.5291822621775323 -4831.0,0.528999520659436 -4832.0,0.5288168422471256 -4833.0,0.5286342269188085 -4834.0,0.5284516746527003 -4835.0,0.5282691854270238 -4836.0,0.5280867592200092 -4837.0,0.5279043960098947 -4838.0,0.5277220957749255 -4839.0,0.5275398584933545 -4840.0,0.5273576841434422 -4841.0,0.5271755727034564 -4842.0,0.5269935241516726 -4843.0,0.5268115384663737 -4844.0,0.5266296156258503 -4845.0,0.5264477556084002 -4846.0,0.5262659583923288 -4847.0,0.5260842239559491 -4848.0,0.5259025522775814 -4849.0,0.5257209433355537 -4850.0,0.5255393971082014 -4851.0,0.5253579135738672 -4852.0,0.5251764927109016 -4853.0,0.5249951344976623 -4854.0,0.5248138389125147 -4855.0,0.5246326059338314 -4856.0,0.5244514355399927 -4857.0,0.5242703277093864 -4858.0,0.5240892824204075 -4859.0,0.5239082996514588 -4860.0,0.5237273793809502 -4861.0,0.5235465215872992 -4862.0,0.523365726248931 -4863.0,0.5231849933442778 -4864.0,0.5230043228517797 -4865.0,0.5228237147498839 -4866.0,0.5226431690170451 -4867.0,0.5224626856317257 -4868.0,0.5222822645723952 -4869.0,0.5221019058175308 -4870.0,0.5219216093456169 -4871.0,0.5217413751351455 -4872.0,0.521561203164616 -4873.0,0.5213810934125351 -4874.0,0.5212010458574171 -4875.0,0.5210210604777836 -4876.0,0.5208411372521637 -4877.0,0.5206612761590939 -4878.0,0.520481477177118 -4879.0,0.5203017402847873 -4880.0,0.5201220654606605 -4881.0,0.5199424526833037 -4882.0,0.5197629019312906 -4883.0,0.5195834131832018 -4884.0,0.5194039864176258 -4885.0,0.5192246216131582 -4886.0,0.5190453187484021 -4887.0,0.518866077801968 -4888.0,0.5186868987524739 -4889.0,0.5185077815785447 -4890.0,0.5183287262588134 -4891.0,0.5181497327719198 -4892.0,0.5179708010965113 -4893.0,0.5177919312112426 -4894.0,0.5176131230947759 -4895.0,0.5174343767257809 -4896.0,0.5172556920829341 -4897.0,0.5170770691449198 -4898.0,0.5168985078904298 -4899.0,0.5167200082981629 -4900.0,0.5165415703468254 -4901.0,0.516363194015131 -4902.0,0.5161848792818006 -4903.0,0.5160066261255627 -4904.0,0.5158284345251528 -4905.0,0.5156503044593143 -4906.0,0.5154722359067971 -4907.0,0.5152942288463593 -4908.0,0.5151162832567658 -4909.0,0.514938399116789 -4910.0,0.5147605764052087 -4911.0,0.5145828151008117 -4912.0,0.5144051151823927 -4913.0,0.5142274766287532 -4914.0,0.5140498994187023 -4915.0,0.5138723835310562 -4916.0,0.5136949289446388 -4917.0,0.5135175356382807 -4918.0,0.5133402035908204 -4919.0,0.5131629327811036 -4920.0,0.512985723187983 -4921.0,0.5128085747903188 -4922.0,0.5126314875669785 -4923.0,0.5124544614968369 -4924.0,0.5122774965587762 -4925.0,0.5121005927316855 -4926.0,0.5119237499944618 -4927.0,0.5117469683260087 -4928.0,0.5115702477052376 -4929.0,0.5113935881110672 -4930.0,0.511216989522423 -4931.0,0.5110404519182382 -4932.0,0.5108639752774531 -4933.0,0.5106875595790155 -4934.0,0.5105112048018801 -4935.0,0.5103349109250092 -4936.0,0.510158677927372 -4937.0,0.5099825057879454 -4938.0,0.5098063944857133 -4939.0,0.5096303439996669 -4940.0,0.5094543543088047 -4941.0,0.5092784253921323 -4942.0,0.5091025572286628 -4943.0,0.5089267497974163 -4944.0,0.5087510030774203 -4945.0,0.5085753170477095 -4946.0,0.5083996916873259 -4947.0,0.5082241269753185 -4948.0,0.5080486228907439 -4949.0,0.5078731794126656 -4950.0,0.5076977965201546 -4951.0,0.5075224741922889 -4952.0,0.5073472124081538 -4953.0,0.5071720111468421 -4954.0,0.5069968703874531 -4955.0,0.5068217901090942 -4956.0,0.5066467702908795 -4957.0,0.5064718109119303 -4958.0,0.5062969119513753 -4959.0,0.5061220733883504 -4960.0,0.5059472952019984 -4961.0,0.5057725773714697 -4962.0,0.5055979198759218 -4963.0,0.5054233226945193 -4964.0,0.505248785806434 -4965.0,0.5050743091908448 -4966.0,0.5048998928269381 -4967.0,0.5047255366939072 -4968.0,0.5045512407709527 -4969.0,0.5043770050372824 -4970.0,0.5042028294721113 -4971.0,0.5040287140546613 -4972.0,0.5038546587641619 -4973.0,0.5036806635798495 -4974.0,0.5035067284809678 -4975.0,0.5033328534467675 -4976.0,0.5031590384565068 -4977.0,0.5029852834894506 -4978.0,0.5028115885248713 -4979.0,0.5026379535420483 -4980.0,0.5024643785202683 -4981.0,0.502290863438825 -4982.0,0.5021174082770195 -4983.0,0.5019440130141595 -4984.0,0.5017706776295605 -4985.0,0.5015974021025448 -4986.0,0.5014241864124417 -4987.0,0.5012510305385881 -4988.0,0.5010779344603277 -4989.0,0.5009048981570113 -4990.0,0.5007319216079971 -4991.0,0.50055900479265 -4992.0,0.5003861476903425 -4993.0,0.5002133502804539 -4994.0,0.5000406125423708 -4995.0,0.4998679344554868 -4996.0,0.4996953159992027 -4997.0,0.4995227571529263 -4998.0,0.49935025789607274 -4999.0,0.49917781820806395 -5000.0,0.49900543806832925 -5001.0,0.4988331174563049 -5002.0,0.49866085635143426 -5003.0,0.4984886547331679 -5004.0,0.4983165125809634 -5005.0,0.4981444298742855 -5006.0,0.4979724065926059 -5007.0,0.4978004427154035 -5008.0,0.49762853822216435 -5009.0,0.4974566930923814 -5010.0,0.49728490730555486 -5011.0,0.4971131808411918 -5012.0,0.49694151367880673 -5013.0,0.49676990579792074 -5014.0,0.4965983571780625 -5015.0,0.4964268677987674 -5016.0,0.49625543763957797 -5017.0,0.4960840666800439 -5018.0,0.4959127548997219 -5019.0,0.4957415022781757 -5020.0,0.4955703087949761 -5021.0,0.495399174429701 -5022.0,0.4952280991619352 -5023.0,0.4950570829712709 -5024.0,0.49488612583730685 -5025.0,0.4947152277396493 -5026.0,0.4945443886579113 -5027.0,0.4943736085717129 -5028.0,0.4942028874606814 -5029.0,0.494032225304451 -5030.0,0.49386162208266293 -5031.0,0.49369107777496546 -5032.0,0.49352059236101387 -5033.0,0.4933501658204706 -5034.0,0.4931797981330049 -5035.0,0.49300948927829313 -5036.0,0.4928392392360188 -5037.0,0.49266904798587224 -5038.0,0.49249891550755087 -5039.0,0.4923288417807592 -5040.0,0.4921588267852086 -5041.0,0.4919888705006175 -5042.0,0.4918189729067115 -5043.0,0.49164913398322285 -5044.0,0.49147935370989115 -5045.0,0.49130963206646283 -5046.0,0.4911399690326913 -5047.0,0.49097036458833704 -5048.0,0.4908008187131674 -5049.0,0.49063133138695686 -5050.0,0.4904619025894868 -5051.0,0.49029253230054554 -5052.0,0.49012322049992857 -5053.0,0.48995396716743816 -5054.0,0.4897847722828836 -5055.0,0.4896156358260812 -5056.0,0.4894465577768542 -5057.0,0.48927753811503283 -5058.0,0.4891085768204543 -5059.0,0.4889396738729627 -5060.0,0.48877082925240917 -5061.0,0.48860204293865184 -5062.0,0.4884333149115556 -5063.0,0.48826464515099255 -5064.0,0.4880960336368415 -5065.0,0.4879274803489885 -5066.0,0.4877589852673262 -5067.0,0.4875905483717544 -5068.0,0.4874221696421799 -5069.0,0.48725384905851626 -5070.0,0.487085586600684 -5071.0,0.48691738224861086 -5072.0,0.4867492359822311 -5073.0,0.4865811477814861 -5074.0,0.4864131176263243 -5075.0,0.4862451454967007 -5076.0,0.4860772313725777 -5077.0,0.48590937523392425 -5078.0,0.4857415770607163 -5079.0,0.4855738368329368 -5080.0,0.48540615453057556 -5081.0,0.4852385301336293 -5082.0,0.4850709636221016 -5083.0,0.4849034549760031 -5084.0,0.48473600417535123 -5085.0,0.48456861120017025 -5086.0,0.48440127603049143 -5087.0,0.4842339986463529 -5088.0,0.4840667790277997 -5089.0,0.4838996171548837 -5090.0,0.48373251300766384 -5091.0,0.4835654665662057 -5092.0,0.48339847781058193 -5093.0,0.4832315467208719 -5094.0,0.483064673277162 -5095.0,0.48289785745954544 -5096.0,0.4827310992481223 -5097.0,0.48256439862299955 -5098.0,0.48239775556429104 -5099.0,0.48223117005211746 -5100.0,0.4820646420666063 -5101.0,0.4818981715878921 -5102.0,0.4817317585961161 -5103.0,0.4815654030714264 -5104.0,0.4813991049939781 -5105.0,0.4812328643439329 -5106.0,0.4810666811014596 -5107.0,0.4809005552467338 -5108.0,0.48073448675993774 -5109.0,0.4805684756212608 -5110.0,0.4804025218108991 -5111.0,0.48023662530905536 -5112.0,0.48007078609593956 -5113.0,0.4799050041517681 -5114.0,0.4797392794567646 -5115.0,0.4795736119911591 -5116.0,0.4794080017351888 -5117.0,0.47924244866909765 -5118.0,0.4790769527731362 -5119.0,0.4789115140275622 -5120.0,0.4787461324126399 -5121.0,0.4785808079086405 -5122.0,0.478415540495842 -5123.0,0.47825033015452917 -5124.0,0.4780851768649937 -5125.0,0.4779200806075339 -5126.0,0.47775504136245506 -5127.0,0.47759005911006913 -5128.0,0.47742513383069507 -5129.0,0.4772602655046584 -5130.0,0.47709545411229154 -5131.0,0.4769306996339337 -5132.0,0.4767660020499308 -5133.0,0.47660136134063574 -5134.0,0.47643677748640806 -5135.0,0.47627225046761407 -5136.0,0.47610778026462686 -5137.0,0.4759433668578264 -5138.0,0.47577901022759933 -5139.0,0.47561471035433917 -5140.0,0.4754504672184461 -5141.0,0.47528628080032703 -5142.0,0.4751221510803958 -5143.0,0.474958078039073 -5144.0,0.4747940616567857 -5145.0,0.4746301019139682 -5146.0,0.47446619879106106 -5147.0,0.47430235226851203 -5148.0,0.4741385623267753 -5149.0,0.473974828946312 -5150.0,0.4738111521075899 -5151.0,0.4736475317910835 -5152.0,0.4734839679772741 -5153.0,0.4733204606466498 -5154.0,0.47315700977970526 -5155.0,0.47299361535694207 -5156.0,0.47283027735886846 -5157.0,0.47266699576599935 -5158.0,0.4725037705588565 -5159.0,0.47234060171796827 -5160.0,0.4721774892238699 -5161.0,0.4720144330571031 -5162.0,0.4718514331982166 -5163.0,0.4716884896277656 -5164.0,0.47152560232631224 -5165.0,0.4713627712744251 -5166.0,0.4711999964526798 -5167.0,0.4710372778416584 -5168.0,0.47087461542194975 -5169.0,0.4707120091741494 -5170.0,0.47054945907885964 -5171.0,0.4703869651166894 -5172.0,0.4702245272682544 -5173.0,0.4700621455141769 -5174.0,0.469899819835086 -5175.0,0.46973755021161745 -5176.0,0.4695753366244136 -5177.0,0.46941317905412355 -5178.0,0.4692510774814031 -5179.0,0.4690890318869148 -5180.0,0.4689270422513277 -5181.0,0.4687651085553176 -5182.0,0.46860323077956706 -5183.0,0.4684414089047652 -5184.0,0.46827964291160784 -5185.0,0.46811793278079755 -5186.0,0.4679562784930434 -5187.0,0.46779468002906127 -5188.0,0.4676331373695736 -5189.0,0.4674716504953096 -5190.0,0.46731021938700495 -5191.0,0.46714884402540224 -5192.0,0.46698752439125046 -5193.0,0.46682626046530534 -5194.0,0.4666650522283293 -5195.0,0.46650389966109146 -5196.0,0.4663428027443674 -5197.0,0.4661817614589394 -5198.0,0.4660207757855965 -5199.0,0.4658598457051342 -5200.0,0.4656989711983548 -5201.0,0.4655381522460671 -5202.0,0.4653773888290865 -5203.0,0.4652166809282352 -5204.0,0.4650560285243419 -5205.0,0.4648954315982419 -5206.0,0.46473489013077723 -5207.0,0.46457440410279643 -5208.0,0.4644139734951546 -5209.0,0.4642535982887137 -5210.0,0.464093278464342 -5211.0,0.4639330140029146 -5212.0,0.4637728048853131 -5213.0,0.4636126510924256 -5214.0,0.4634525526051471 -5215.0,0.46329250940437894 -5216.0,0.4631325214710291 -5217.0,0.4629725887860123 -5218.0,0.46281271133024954 -5219.0,0.4626528890846688 -5220.0,0.4624931220302044 -5221.0,0.46233341014779716 -5222.0,0.4621737534183948 -5223.0,0.4620141518229513 -5224.0,0.4618546053424275 -5225.0,0.46169511395779056 -5226.0,0.4615356776500143 -5227.0,0.4613762964000792 -5228.0,0.46121697018897223 -5229.0,0.46105769899768695 -5230.0,0.4608984828072234 -5231.0,0.46073932159858827 -5232.0,0.46058021535279486 -5233.0,0.46042116405086286 -5234.0,0.4602621676738186 -5235.0,0.4601032262026951 -5236.0,0.4599443396185317 -5237.0,0.45978550790237444 -5238.0,0.4596267310352758 -5239.0,0.4594680089982949 -5240.0,0.45930934177249727 -5241.0,0.4591507293389551 -5242.0,0.45899217167874723 -5243.0,0.4588336687729588 -5244.0,0.45867522060268145 -5245.0,0.45851682714901365 -5246.0,0.4583584883930601 -5247.0,0.45820020431593217 -5248.0,0.45804197489874776 -5249.0,0.4578838001226312 -5250.0,0.4577256799687134 -5251.0,0.4575676144181318 -5252.0,0.4574096034520303 -5253.0,0.4572516470515594 -5254.0,0.45709374519787604 -5255.0,0.4569358978721436 -5256.0,0.4567781050555322 -5257.0,0.45662036672921813 -5258.0,0.45646268287438446 -5259.0,0.4563050534722206 -5260.0,0.45614747850392257 -5261.0,0.45598995795069286 -5262.0,0.4558324917937403 -5263.0,0.4556750800142804 -5264.0,0.4555177225935351 -5265.0,0.45536041951273276 -5266.0,0.4552031707531083 -5267.0,0.45504597629590304 -5268.0,0.4548888361223649 -5269.0,0.4547317502137481 -5270.0,0.4545747185513136 -5271.0,0.45441774111632854 -5272.0,0.45426081789006667 -5273.0,0.45410394885380817 -5274.0,0.4539471339888398 -5275.0,0.4537903732764546 -5276.0,0.45363366669795224 -5277.0,0.4534770142346387 -5278.0,0.45332041586782645 -5279.0,0.4531638715788346 -5280.0,0.45300738134898844 -5281.0,0.4528509451596198 -5282.0,0.45269456299206706 -5283.0,0.45253823482767497 -5284.0,0.4523819606477947 -5285.0,0.45222574043378383 -5286.0,0.4520695741670065 -5287.0,0.45191346182883313 -5288.0,0.45175740340064074 -5289.0,0.4516013988638127 -5290.0,0.4514454481997387 -5291.0,0.4512895513898151 -5292.0,0.4511337084154444 -5293.0,0.4509779192580358 -5294.0,0.45082218389900475 -5295.0,0.4506665023197731 -5296.0,0.4505108745017693 -5297.0,0.4503553004264279 -5298.0,0.4501997800751902 -5299.0,0.45004431342950374 -5300.0,0.4498889004708224 -5301.0,0.44973354118060666 -5302.0,0.44957823554032317 -5303.0,0.44942298353144516 -5304.0,0.44926778513545224 -5305.0,0.4491126403338303 -5306.0,0.44895754910807173 -5307.0,0.44880251143967526 -5308.0,0.44864752731014607 -5309.0,0.4484925967009956 -5310.0,0.44833771959374186 -5311.0,0.44818289596990907 -5312.0,0.4480281258110279 -5313.0,0.44787340909863543 -5314.0,0.4477187458142751 -5315.0,0.4475641359394967 -5316.0,0.44740957945585624 -5317.0,0.4472550763449165 -5318.0,0.44710062658824634 -5319.0,0.4469462301674209 -5320.0,0.4467918870640219 -5321.0,0.44663759725963736 -5322.0,0.44648336073586153 -5323.0,0.44632917747429524 -5324.0,0.44617504745654546 -5325.0,0.44602097066422564 -5326.0,0.4458669470789555 -5327.0,0.4457129766823612 -5328.0,0.4455590594560752 -5329.0,0.4454051953817363 -5330.0,0.44525138444098955 -5331.0,0.4450976266154865 -5332.0,0.44494392188688503 -5333.0,0.44479027023684914 -5334.0,0.4446366716470494 -5335.0,0.4444831260991625 -5336.0,0.44432963357487176 -5337.0,0.44417619405586656 -5338.0,0.44402280752384266 -5339.0,0.4438694739605022 -5340.0,0.4437161933475536 -5341.0,0.4435629656667115 -5342.0,0.4434097908996971 -5343.0,0.44325666902823774 -5344.0,0.443103600034067 -5345.0,0.44295058389892494 -5346.0,0.4427976206045579 -5347.0,0.4426447101327184 -5348.0,0.4424918524651653 -5349.0,0.4423390475836639 -5350.0,0.4421862954699856 -5351.0,0.4420335961059082 -5352.0,0.4418809494732159 -5353.0,0.4417283555536989 -5354.0,0.4415758143291539 -5355.0,0.4414233257813839 -5356.0,0.4412708898921981 -5357.0,0.44111850664341207 -5358.0,0.4409661760168475 -5359.0,0.4408138979943325 -5360.0,0.4406616725577014 -5361.0,0.4405094996887949 -5362.0,0.44035737936945973 -5363.0,0.44020531158154913 -5364.0,0.4400532963069226 -5365.0,0.43990133352744565 -5366.0,0.4397494232249904 -5367.0,0.4395975653814349 -5368.0,0.4394457599786638 -5369.0,0.4392940069985677 -5370.0,0.4391423064230435 -5371.0,0.43899065823399464 -5372.0,0.4388390624133304 -5373.0,0.4386875189429666 -5374.0,0.43853602780482526 -5375.0,0.4383845889808345 -5376.0,0.43823320245292874 -5377.0,0.4380818682030488 -5378.0,0.4379305862131415 -5379.0,0.4377793564651601 -5380.0,0.4376281789410639 -5381.0,0.4374770536228185 -5382.0,0.43732598049239585 -5383.0,0.437174959531774 -5384.0,0.43702399072293724 -5385.0,0.43687307404787606 -5386.0,0.43672220948858725 -5387.0,0.43657139702707376 -5388.0,0.4364206366453447 -5389.0,0.43626992832541556 -5390.0,0.43611927204930784 -5391.0,0.4359686677990494 -5392.0,0.4358181155566742 -5393.0,0.43566761530422254 -5394.0,0.43551716702374077 -5395.0,0.4353667706972815 -5396.0,0.43521642630690366 -5397.0,0.43506613383467213 -5398.0,0.43491589326265817 -5399.0,0.4347657045729391 -5400.0,0.43461556774759863 -5401.0,0.43446548276872643 -5402.0,0.43431544961841856 -5403.0,0.434165468278777 -5404.0,0.43401553873191023 -5405.0,0.4338656609599327 -5406.0,0.43371583494496496 -5407.0,0.43356606066913406 -5408.0,0.43341633811457286 -5409.0,0.43326666726342067 -5410.0,0.4331170480978228 -5411.0,0.4329674805999307 -5412.0,0.43281796475190215 -5413.0,0.432668500535901 -5414.0,0.43251908793409727 -5415.0,0.43236972692866704 -5416.0,0.4322204175017927 -5417.0,0.4320711596356627 -5418.0,0.4319219533124717 -5419.0,0.4317727985144204 -5420.0,0.4316236952237158 -5421.0,0.4314746434225709 -5422.0,0.431325643093205 -5423.0,0.4311766942178433 -5424.0,0.43102779677871744 -5425.0,0.4308789507580649 -5426.0,0.4307301561381296 -5427.0,0.43058141290116125 -5428.0,0.430432721029416 -5429.0,0.43028408050515593 -5430.0,0.43013549131064927 -5431.0,0.4299869534281705 -5432.0,0.4298384668400001 -5433.0,0.42969003152842467 -5434.0,0.42954164747573703 -5435.0,0.429393314664236 -5436.0,0.4292450330762266 -5437.0,0.4290968026940198 -5438.0,0.4289486234999329 -5439.0,0.42880049547628923 -5440.0,0.4286524186054181 -5441.0,0.4285043928696551 -5442.0,0.42835641825134174 -5443.0,0.42820849473282585 -5444.0,0.42806062229646114 -5445.0,0.42791280092460754 -5446.0,0.42776503059963106 -5447.0,0.42761731130390374 -5448.0,0.4274696430198038 -5449.0,0.42732202572971534 -5450.0,0.4271744594160289 -5451.0,0.4270269440611407 -5452.0,0.42687947964745343 -5453.0,0.4267320661573756 -5454.0,0.42658470357332173 -5455.0,0.4264373918777127 -5456.0,0.42629013105297514 -5457.0,0.42614292108154206 -5458.0,0.42599576194585226 -5459.0,0.42584865362835084 -5460.0,0.4257015961114888 -5461.0,0.42555458937772317 -5462.0,0.42540763340951726 -5463.0,0.42526072818934024 -5464.0,0.42511387369966736 -5465.0,0.42496706992297995 -5466.0,0.4248203168417654 -5467.0,0.4246736144385172 -5468.0,0.42452696269573464 -5469.0,0.42438036159592346 -5470.0,0.42423381112159514 -5471.0,0.4240873112552672 -5472.0,0.4239408619794634 -5473.0,0.42379446327671333 -5474.0,0.42364811512955264 -5475.0,0.4235018175205232 -5476.0,0.42335557043217265 -5477.0,0.42320937384705487 -5478.0,0.4230632277477296 -5479.0,0.42291713211676274 -5480.0,0.4227710869367261 -5481.0,0.42262509219019756 -5482.0,0.422479147859761 -5483.0,0.42233325392800636 -5484.0,0.42218741037752955 -5485.0,0.42204161719093247 -5486.0,0.42189587435082315 -5487.0,0.42175018183981533 -5488.0,0.4216045396405292 -5489.0,0.4214589477355905 -5490.0,0.42131340610763135 -5491.0,0.4211679147392896 -5492.0,0.42102247361320916 -5493.0,0.42087708271204005 -5494.0,0.42073174201843816 -5495.0,0.42058645151506535 -5496.0,0.42044121118458966 -5497.0,0.42029602100968483 -5498.0,0.42015088097303077 -5499.0,0.4200057910573134 -5500.0,0.4198607512452245 -5501.0,0.4197157615194618 -5502.0,0.41957082186272926 -5503.0,0.4194259322577365 -5504.0,0.4192810926871993 -5505.0,0.41913630313383937 -5506.0,0.41899156358038425 -5507.0,0.4188468740095677 -5508.0,0.4187022344041293 -5509.0,0.41855764474681456 -5510.0,0.418413105020375 -5511.0,0.41826861520756803 -5512.0,0.4181241752911572 -5513.0,0.4179797852539117 -5514.0,0.41783544507860704 -5515.0,0.4176911547480244 -5516.0,0.417546914244951 -5517.0,0.41740272355217994 -5518.0,0.4172585826525104 -5519.0,0.41711449152874747 -5520.0,0.416970450163702 -5521.0,0.41682645854019096 -5522.0,0.4166825166410372 -5523.0,0.41653862444906953 -5524.0,0.41639478194712265 -5525.0,0.4162509891180371 -5526.0,0.4161072459446596 -5527.0,0.41596355240984256 -5528.0,0.4158199084964444 -5529.0,0.4156763141873295 -5530.0,0.41553276946536793 -5531.0,0.41538927431343603 -5532.0,0.41524582871441584 -5533.0,0.4151024326511953 -5534.0,0.4149590861066683 -5535.0,0.41481578906373473 -5536.0,0.4146725415053002 -5537.0,0.4145293434142764 -5538.0,0.41438619477358074 -5539.0,0.4142430955661367 -5540.0,0.41410004577487364 -5541.0,0.41395704538272665 -5542.0,0.4138140943726369 -5543.0,0.4136711927275513 -5544.0,0.41352834043042275 -5545.0,0.41338553746421014 -5546.0,0.41324278381187796 -5547.0,0.4131000794563969 -5548.0,0.4129574243807432 -5549.0,0.41281481856789914 -5550.0,0.4126722620008531 -5551.0,0.4125297546625989 -5552.0,0.4123872965361366 -5553.0,0.41224488760447187 -5554.0,0.41210252785061646 -5555.0,0.41196021725758786 -5556.0,0.4118179558084094 -5557.0,0.4116757434861104 -5558.0,0.41153358027372594 -5559.0,0.41139146615429695 -5560.0,0.41124940111087027 -5561.0,0.41110738512649864 -5562.0,0.4109654181842405 -5563.0,0.41082350026716025 -5564.0,0.41068163135832814 -5565.0,0.41053981144082025 -5566.0,0.4103980404977185 -5567.0,0.4102563185121106 -5568.0,0.4101146454670902 -5569.0,0.40997302134575675 -5570.0,0.40983144613121547 -5571.0,0.4096899198065775 -5572.0,0.4095484423549598 -5573.0,0.4094070137594851 -5574.0,0.40926563400328203 -5575.0,0.409124303069485 -5576.0,0.4089830209412343 -5577.0,0.40884178760167594 -5578.0,0.40870060303396183 -5579.0,0.4085594672212497 -5580.0,0.40841838014670306 -5581.0,0.4082773417934913 -5582.0,0.40813635214478944 -5583.0,0.4079954111837786 -5584.0,0.4078545188936455 -5585.0,0.4077136752575827 -5586.0,0.4075728802587885 -5587.0,0.4074321338804673 -5588.0,0.40729143610582885 -5589.0,0.40715078691808904 -5590.0,0.4070101863004695 -5591.0,0.4068696342361975 -5592.0,0.40672913070850625 -5593.0,0.4065886757006347 -5594.0,0.4064482691958276 -5595.0,0.40630791117733545 -5596.0,0.4061676016284146 -5597.0,0.4060273405323271 -5598.0,0.4058871278723409 -5599.0,0.4057469636317295 -5600.0,0.4056068477937725 -5601.0,0.405466780341755 -5602.0,0.405326761258968 -5603.0,0.40518679052870826 -5604.0,0.40504686813427826 -5605.0,0.40490699405898634 -5606.0,0.40476716828614645 -5607.0,0.4046273907990785 -5608.0,0.404487661581108 -5609.0,0.4043479806155662 -5610.0,0.40420834788579035 -5611.0,0.40406876337512315 -5612.0,0.4039292270669132 -5613.0,0.40378973894451486 -5614.0,0.40365029899128824 -5615.0,0.4035109071905991 -5616.0,0.4033715635258191 -5617.0,0.4032322679803255 -5618.0,0.4030930205375014 -5619.0,0.4029538211807355 -5620.0,0.40281466989342246 -5621.0,0.4026755666589624 -5622.0,0.40253651146076147 -5623.0,0.40239750428223137 -5624.0,0.4022585451067895 -5625.0,0.402119633917859 -5626.0,0.4019807706988689 -5627.0,0.40184195543325374 -5628.0,0.40170318810445393 -5629.0,0.40156446869591544 -5630.0,0.40142579719109023 -5631.0,0.40128717357343563 -5632.0,0.40114859782641493 -5633.0,0.401010069933497 -5634.0,0.40087158987815663 -5635.0,0.40073315764387396 -5636.0,0.40059477321413517 -5637.0,0.4004564365724319 -5638.0,0.4003181477022617 -5639.0,0.4001799065871276 -5640.0,0.40004171321053855 -5641.0,0.3999035675560091 -5642.0,0.3997654696070594 -5643.0,0.3996274193472154 -5644.0,0.3994894167600087 -5645.0,0.39935146182897663 -5646.0,0.39921355453766216 -5647.0,0.3990756948696139 -5648.0,0.3989378828083863 -5649.0,0.3988001183375393 -5650.0,0.3986624014406387 -5651.0,0.3985247321012557 -5652.0,0.3983871103029676 -5653.0,0.39824953602935687 -5654.0,0.3981120092640121 -5655.0,0.39797452999052724 -5656.0,0.397837098192502 -5657.0,0.39769971385354186 -5658.0,0.39756237695725777 -5659.0,0.39742508748726657 -5660.0,0.39728784542719053 -5661.0,0.3971506507606577 -5662.0,0.3970135034713017 -5663.0,0.39687640354276194 -5664.0,0.3967393509586834 -5665.0,0.39660234570271663 -5666.0,0.396465387758518 -5667.0,0.3963284771097493 -5668.0,0.39619161374007816 -5669.0,0.3960547976331778 -5670.0,0.3959180287727271 -5671.0,0.39578130714241033 -5672.0,0.3956446327259178 -5673.0,0.3955080055069452 -5674.0,0.39537142546919385 -5675.0,0.3952348925963708 -5676.0,0.3950984068721886 -5677.0,0.39496196828036556 -5678.0,0.39482557680462554 -5679.0,0.3946892324286981 -5680.0,0.3945529351363182 -5681.0,0.39441668491122667 -5682.0,0.39428048173716984 -5683.0,0.39414432559789964 -5684.0,0.39400821647717366 -5685.0,0.39387215435875506 -5686.0,0.3937361392264126 -5687.0,0.3936001710639207 -5688.0,0.3934642498550594 -5689.0,0.39332837558361416 -5690.0,0.39319254823337624 -5691.0,0.39305676778814247 -5692.0,0.39292103423171515 -5693.0,0.39278534754790234 -5694.0,0.39264970772051755 -5695.0,0.39251411473337994 -5696.0,0.3923785685703142 -5697.0,0.39224306921515084 -5698.0,0.3921076166517256 -5699.0,0.3919722108638801 -5700.0,0.3918368518354613 -5701.0,0.39170153955032194 -5702.0,0.39156627399232025 -5703.0,0.39143105514532 -5704.0,0.39129588299319057 -5705.0,0.3911607575198069 -5706.0,0.39102567870904953 -5707.0,0.3908906465448045 -5708.0,0.39075566101096354 -5709.0,0.3906207220914238 -5710.0,0.390485829770088 -5711.0,0.3903509840308646 -5712.0,0.3902161848576674 -5713.0,0.3900814322344159 -5714.0,0.389946726145035 -5715.0,0.38981206657345524 -5716.0,0.3896774535036129 -5717.0,0.3895428869194494 -5718.0,0.3894083668049121 -5719.0,0.3892738931439536 -5720.0,0.3891394659205323 -5721.0,0.38900508511861187 -5722.0,0.38887075072216176 -5723.0,0.38873646271515677 -5724.0,0.38860222108157744 -5725.0,0.3884680258054097 -5726.0,0.3883338768706449 -5727.0,0.38819977426128016 -5728.0,0.38806571796131806 -5729.0,0.38793170795476656 -5730.0,0.38779774422563923 -5731.0,0.3876638267579553 -5732.0,0.38752995553573927 -5733.0,0.38739613054302136 -5734.0,0.3872623517638371 -5735.0,0.38712861918222785 -5736.0,0.3869949327822402 -5737.0,0.3868612925479262 -5738.0,0.3867276984633438 -5739.0,0.386594150512556 -5740.0,0.38646064867963165 -5741.0,0.3863271929486448 -5742.0,0.38619378330367526 -5743.0,0.38606041972880817 -5744.0,0.3859271022081343 -5745.0,0.3857938307257498 -5746.0,0.3856606052657563 -5747.0,0.3855274258122611 -5748.0,0.3853942923493768 -5749.0,0.3852612048612215 -5750.0,0.3851281633319189 -5751.0,0.38499516774559805 -5752.0,0.3848622180863936 -5753.0,0.3847293143384456 -5754.0,0.38459645648589963 -5755.0,0.38446364451290665 -5756.0,0.3843308784036233 -5757.0,0.3841981581422114 -5758.0,0.3840654837128385 -5759.0,0.3839328550996774 -5760.0,0.38380027228690655 -5761.0,0.3836677352587098 -5762.0,0.3835352439992764 -5763.0,0.3834027984928011 -5764.0,0.3832703987234842 -5765.0,0.3831380446755313 -5766.0,0.3830057363331535 -5767.0,0.38287347368056746 -5768.0,0.3827412567019952 -5769.0,0.3826090853816641 -5770.0,0.38247695970380724 -5771.0,0.38234487965266284 -5772.0,0.3822128452124748 -5773.0,0.38208085636749234 -5774.0,0.3819489131019702 -5775.0,0.3818170154001685 -5776.0,0.3816851632463527 -5777.0,0.38155335662479395 -5778.0,0.3814215955197686 -5779.0,0.38128987991555857 -5780.0,0.38115820979645104 -5781.0,0.3810265851467388 -5782.0,0.38089500595072 -5783.0,0.3807634721926982 -5784.0,0.3806319838569823 -5785.0,0.3805005409278868 -5786.0,0.3803691433897315 -5787.0,0.38023779122684154 -5788.0,0.3801064844235477 -5789.0,0.37997522296418595 -5790.0,0.3798440068330977 -5791.0,0.37971283601463 -5792.0,0.379581710493135 -5793.0,0.3794506302529704 -5794.0,0.3793195952784993 -5795.0,0.3791886055540901 -5796.0,0.37905766106411687 -5797.0,0.3789267617929587 -5798.0,0.3787959077250004 -5799.0,0.3786650988446319 -5800.0,0.37853433513624873 -5801.0,0.37840361658425176 -5802.0,0.3782729431730471 -5803.0,0.3781423148870465 -5804.0,0.37801173171066693 -5805.0,0.3778811936283307 -5806.0,0.3777507006244657 -5807.0,0.3776202526835049 -5808.0,0.3774898497898869 -5809.0,0.37735949192805557 -5810.0,0.3772291790824602 -5811.0,0.37709891123755535 -5812.0,0.3769686883778011 -5813.0,0.37683851048766276 -5814.0,0.3767083775516111 -5815.0,0.37657828955412215 -5816.0,0.3764482464796774 -5817.0,0.3763182483127636 -5818.0,0.37618829503787304 -5819.0,0.37605838663950314 -5820.0,0.37592852310215674 -5821.0,0.3757987044103422 -5822.0,0.375668930548573 -5823.0,0.3755392015013681 -5824.0,0.3754095172532517 -5825.0,0.37527987778875355 -5826.0,0.3751502830924085 -5827.0,0.3750207331487569 -5828.0,0.3748912279423443 -5829.0,0.3747617674577218 -5830.0,0.37463235167944564 -5831.0,0.37450298059207743 -5832.0,0.3743736541801842 -5833.0,0.37424437242833825 -5834.0,0.3741151353211172 -5835.0,0.373985942843104 -5836.0,0.3738567949788869 -5837.0,0.37372769171305953 -5838.0,0.37359863303022084 -5839.0,0.373469618914975 -5840.0,0.3733406493519316 -5841.0,0.3732117243257056 -5842.0,0.373082843820917 -5843.0,0.37295400782219146 -5844.0,0.3728252163141597 -5845.0,0.3726964692814579 -5846.0,0.3725677667087274 -5847.0,0.3724391085806149 -5848.0,0.37231049488177254 -5849.0,0.37218192559685753 -5850.0,0.3720534007105326 -5851.0,0.3719249202074656 -5852.0,0.37179648407232974 -5853.0,0.3716680922898036 -5854.0,0.3715397448445708 -5855.0,0.3714114417213206 -5856.0,0.3712831829047474 -5857.0,0.37115496837955064 -5858.0,0.37102679813043543 -5859.0,0.37089867214211203 -5860.0,0.3707705903992958 -5861.0,0.3706425528867076 -5862.0,0.3705145595890735 -5863.0,0.3703866104911248 -5864.0,0.37025870557759816 -5865.0,0.3701308448332354 -5866.0,0.37000302824278364 -5867.0,0.36987525579099534 -5868.0,0.36974752746262823 -5869.0,0.3696198432424452 -5870.0,0.36949220311521436 -5871.0,0.36936460706570934 -5872.0,0.36923705507870874 -5873.0,0.36910954713899663 -5874.0,0.3689820832313622 -5875.0,0.3688546633405999 -5876.0,0.3687272874515095 -5877.0,0.368599955548896 -5878.0,0.3684726676175696 -5879.0,0.3683454236423458 -5880.0,0.3682182236080453 -5881.0,0.36809106749949405 -5882.0,0.3679639553015233 -5883.0,0.36783688699896944 -5884.0,0.36770986257667426 -5885.0,0.3675828820194845 -5886.0,0.3674559453122525 -5887.0,0.36732905243983544 -5888.0,0.3672022033870961 -5889.0,0.36707539813890216 -5890.0,0.3669486366801268 -5891.0,0.3668219189956482 -5892.0,0.36669524507035 -5893.0,0.36656861488912074 -5894.0,0.3664420284368546 -5895.0,0.36631548569845046 -5896.0,0.36618898665881283 -5897.0,0.36606253130285143 -5898.0,0.36593611961548084 -5899.0,0.3658097515816212 -5900.0,0.3656834271861977 -5901.0,0.3655571464141407 -5902.0,0.3654309092503859 -5903.0,0.3653047156798741 -5904.0,0.3651785656875513 -5905.0,0.36505245925836877 -5906.0,0.3649263963772829 -5907.0,0.36480037702925533 -5908.0,0.3646744011992529 -5909.0,0.3645484688722475 -5910.0,0.3644225800332164 -5911.0,0.364296734667142 -5912.0,0.36417093275901186 -5913.0,0.3640451742938187 -5914.0,0.3639194592565604 -5915.0,0.36379378763224013 -5916.0,0.3636681594058663 -5917.0,0.36354257456245215 -5918.0,0.3634170330870165 -5919.0,0.36329153496458305 -5920.0,0.36316608018018093 -5921.0,0.3630406687188441 -5922.0,0.3629153005656121 -5923.0,0.3627899757055293 -5924.0,0.3626646941236454 -5925.0,0.3625394558050151 -5926.0,0.36241426073469857 -5927.0,0.36228910889776084 -5928.0,0.36216400027927226 -5929.0,0.3620389348643082 -5930.0,0.3619139126379494 -5931.0,0.36178893358528147 -5932.0,0.36166399769139546 -5933.0,0.3615391049413873 -5934.0,0.36141425532035826 -5935.0,0.36128944881341474 -5936.0,0.36116468540566815 -5937.0,0.3610399650822352 -5938.0,0.36091528782823756 -5939.0,0.36079065362880225 -5940.0,0.36066606246906124 -5941.0,0.3605415143341518 -5942.0,0.36041700920921615 -5943.0,0.36029254707940184 -5944.0,0.3601681279298613 -5945.0,0.3600437517457524 -5946.0,0.3599194185122378 -5947.0,0.3597951282144856 -5948.0,0.3596708808376688 -5949.0,0.35954667636696563 -5950.0,0.3594225147875593 -5951.0,0.3592983960846384 -5952.0,0.35917432024339635 -5953.0,0.3590502872490318 -5954.0,0.35892629708674867 -5955.0,0.3588023497417556 -5956.0,0.35867844519926684 -5957.0,0.35855458344450125 -5958.0,0.35843076446268324 -5959.0,0.3583069882390419 -5960.0,0.3581832547588118 -5961.0,0.35805956400723227 -5962.0,0.35793591596954805 -5963.0,0.35781231063100877 -5964.0,0.3576887479768692 -5965.0,0.35756522799238927 -5966.0,0.3574417506628339 -5967.0,0.35731831597347313 -5968.0,0.35719492390958224 -5969.0,0.3570715744564412 -5970.0,0.35694826759933557 -5971.0,0.35682500332355555 -5972.0,0.35670178161439675 -5973.0,0.35657860245715967 -5974.0,0.3564554658371499 -5975.0,0.35633237173967824 -5976.0,0.3562093201500603 -5977.0,0.3560863110536171 -5978.0,0.3559633444356744 -5979.0,0.3558404202815633 -5980.0,0.35571753857661975 -5981.0,0.3555946993061849 -5982.0,0.35547190245560495 -5983.0,0.3553491480102311 -5984.0,0.3552264359554196 -5985.0,0.3551037662765319 -5986.0,0.3549811389589343 -5987.0,0.3548585539879983 -5988.0,0.3547360113491004 -5989.0,0.3546135110276222 -5990.0,0.3544910530089501 -5991.0,0.354368637278476 -5992.0,0.35424626382159663 -5993.0,0.35412393262371344 -5994.0,0.3540016436702335 -5995.0,0.35387939694656845 -5996.0,0.35375719243813525 -5997.0,0.35363503013035563 -5998.0,0.35351291000865676 -5999.0,0.3533908320584704 -6000.0,0.35326879626523366 -6001.0,0.35314680261438847 -6002.0,0.35302485109138204 -6003.0,0.3529029416816662 -6004.0,0.3527810743706982 -6005.0,0.35265924914394015 -6006.0,0.3525374659868592 -6007.0,0.3524157248849274 -6008.0,0.35229402582362207 -6009.0,0.3521723687884253 -6010.0,0.35205075376482425 -6011.0,0.3519291807383113 -6012.0,0.35180764969438355 -6013.0,0.3516861606185433 -6014.0,0.3515647134962977 -6015.0,0.3514433083131591 -6016.0,0.35132194505464465 -6017.0,0.35120062370627664 -6018.0,0.35107934425358234 -6019.0,0.350958106682094 -6020.0,0.35083691097734876 -6021.0,0.350715757124889 -6022.0,0.35059464511026184 -6023.0,0.3504735749190196 -6024.0,0.3503525465367193 -6025.0,0.35023155994892347 -6026.0,0.3501106151411989 -6027.0,0.34998971209911806 -6028.0,0.3498688508082579 -6029.0,0.3497480312542007 -6030.0,0.3496272534225335 -6031.0,0.3495065172988483 -6032.0,0.3493858228687423 -6033.0,0.3492651701178175 -6034.0,0.3491445590316809 -6035.0,0.34902398959594444 -6036.0,0.3489034617962251 -6037.0,0.34878297561814475 -6038.0,0.34866253104733036 -6039.0,0.34854212806941365 -6040.0,0.34842176667003155 -6041.0,0.34830144683482567 -6042.0,0.3481811685494429 -6043.0,0.3480609317995348 -6044.0,0.3479407365707581 -6045.0,0.3478205828487742 -6046.0,0.34770047061924975 -6047.0,0.3475803998678564 -6048.0,0.3474603705802703 -6049.0,0.34734038274217305 -6050.0,0.3472204363392508 -6051.0,0.347100531357195 -6052.0,0.34698066778170167 -6053.0,0.34686084559847213 -6054.0,0.3467410647932124 -6055.0,0.3466213253516335 -6056.0,0.3465016272594513 -6057.0,0.34638197050238684 -6058.0,0.34626235506616587 -6059.0,0.3461427809365192 -6060.0,0.34602324809918233 -6061.0,0.3459037565398961 -6062.0,0.3457843062444058 -6063.0,0.34566489719846216 -6064.0,0.3455455293878203 -6065.0,0.3454262027982406 -6066.0,0.34530691741548836 -6067.0,0.34518767322533356 -6068.0,0.34506847021355136 -6069.0,0.3449493083659215 -6070.0,0.3448301876682292 -6071.0,0.3447111081062639 -6072.0,0.3445920696658204 -6073.0,0.34447307233269825 -6074.0,0.34435411609270206 -6075.0,0.344235200931641 -6076.0,0.3441163268353296 -6077.0,0.34399749378958683 -6078.0,0.34387870178023694 -6079.0,0.3437599507931088 -6080.0,0.34364124081403635 -6081.0,0.34352257182885826 -6082.0,0.3434039438234184 -6083.0,0.343285356783565 -6084.0,0.3431668106951517 -6085.0,0.3430483055440368 -6086.0,0.34292984131608345 -6087.0,0.34281141799715986 -6088.0,0.34269303557313874 -6089.0,0.3425746940298982 -6090.0,0.34245639335332073 -6091.0,0.3423381335292941 -6092.0,0.34221991454371065 -6093.0,0.3421017363824678 -6094.0,0.3419835990314677 -6095.0,0.3418655024766175 -6096.0,0.341747446703829 -6097.0,0.3416294316990192 -6098.0,0.3415114574481096 -6099.0,0.3413935239370269 -6100.0,0.3412756311517023 -6101.0,0.34115777907807215 -6102.0,0.34103996770207756 -6103.0,0.3409221970096644 -6104.0,0.34080446698678374 -6105.0,0.3406867776193909 -6106.0,0.3405691288934467 -6107.0,0.3404515207949163 -6108.0,0.34033395330977007 -6109.0,0.3402164264239829 -6110.0,0.34009894012353487 -6111.0,0.3399814943944105 -6112.0,0.3398640892225996 -6113.0,0.3397467245940964 -6114.0,0.3396294004949003 -6115.0,0.3395121169110153 -6116.0,0.3393948738284504 -6117.0,0.3392776712332192 -6118.0,0.33916050911134055 -6119.0,0.33904338744883755 -6120.0,0.3389263062317387 -6121.0,0.3388092654460769 -6122.0,0.3386922650778901 -6123.0,0.33857530511322104 -6124.0,0.3384583855381172 -6125.0,0.33834150633863097 -6126.0,0.3382246675008195 -6127.0,0.33810786901074474 -6128.0,0.3379911108544734 -6129.0,0.3378743930180773 -6130.0,0.33775771548763267 -6131.0,0.3376410782492209 -6132.0,0.33752448128892776 -6133.0,0.33740792459284435 -6134.0,0.33729140814706615 -6135.0,0.33717493193769366 -6136.0,0.33705849595083204 -6137.0,0.33694210017259146 -6138.0,0.3368257445890866 -6139.0,0.33670942918643726 -6140.0,0.33659315395076767 -6141.0,0.3364769188682071 -6142.0,0.3363607239248897 -6143.0,0.33624456910695405 -6144.0,0.3361284544005439 -6145.0,0.3360123797918075 -6146.0,0.3358963452668981 -6147.0,0.33578035081197344 -6148.0,0.33566439641319645 -6149.0,0.33554848205673443 -6150.0,0.3354326077287598 -6151.0,0.33531677341544947 -6152.0,0.33520097910298535 -6153.0,0.3350852247775539 -6154.0,0.3349695104253467 -6155.0,0.3348538360325596 -6156.0,0.33473820158539364 -6157.0,0.3346226070700544 -6158.0,0.3345070524727524 -6159.0,0.3343915377797027 -6160.0,0.3342760629771253 -6161.0,0.334160628051245 -6162.0,0.33404523298829103 -6163.0,0.33392987777449784 -6164.0,0.3338145623961042 -6165.0,0.3336992868393539 -6166.0,0.3335840510904954 -6167.0,0.333468855135782 -6168.0,0.3333536989614715 -6169.0,0.33323858255382677 -6170.0,0.3331235058991151 -6171.0,0.33300846898360886 -6172.0,0.3328934717935848 -6173.0,0.3327785143153248 -6174.0,0.33266359653511507 -6175.0,0.3325487184392469 -6176.0,0.3324338800140161 -6177.0,0.3323190812457233 -6178.0,0.3322043221206738 -6179.0,0.3320896026251777 -6180.0,0.33197492274554996 -6181.0,0.33186028246810984 -6182.0,0.3317456817791818 -6183.0,0.33163112066509465 -6184.0,0.33151659911218223 -6185.0,0.33140211710678286 -6186.0,0.3312876746352397 -6187.0,0.3311732716839006 -6188.0,0.33105890823911815 -6189.0,0.33094458428724954 -6190.0,0.33083029981465684 -6191.0,0.33071605480770666 -6192.0,0.3306018492527706 -6193.0,0.33048768313622445 -6194.0,0.3303735564444493 -6195.0,0.3302594691638306 -6196.0,0.3301454212807585 -6197.0,0.33003141278162795 -6198.0,0.32991744365283854 -6199.0,0.3298035138807947 -6200.0,0.3296896234519053 -6201.0,0.3295757723525842 -6202.0,0.32946196056924953 -6203.0,0.3293481880883247 -6204.0,0.32923445489623726 -6205.0,0.3291207609794197 -6206.0,0.32900710632430924 -6207.0,0.3288934909173477 -6208.0,0.32877991474498147 -6209.0,0.3286663777936619 -6210.0,0.32855288004984473 -6211.0,0.32843942149999067 -6212.0,0.3283260021305647 -6213.0,0.32821262192803696 -6214.0,0.3280992808788818 -6215.0,0.32798597896957865 -6216.0,0.3278727161866113 -6217.0,0.32775949251646835 -6218.0,0.3276463079456431 -6219.0,0.32753316246063335 -6220.0,0.32742005604794183 -6221.0,0.3273069886940756 -6222.0,0.32719396038554666 -6223.0,0.32708097110887147 -6224.0,0.3269680208505713 -6225.0,0.32685510959717196 -6226.0,0.326742237335204 -6227.0,0.3266294040512026 -6228.0,0.32651660973170754 -6229.0,0.32640385436326325 -6230.0,0.3262911379324189 -6231.0,0.3261784604257282 -6232.0,0.3260658218297495 -6233.0,0.32595322213104594 -6234.0,0.32584066131618517 -6235.0,0.32572813937173944 -6236.0,0.3256156562842857 -6237.0,0.3255032120404057 -6238.0,0.32539080662668546 -6239.0,0.32527844002971595 -6240.0,0.3251661122360926 -6241.0,0.3250538232324156 -6242.0,0.3249415730052896 -6243.0,0.3248293615413241 -6244.0,0.32471718882713285 -6245.0,0.32460505484933466 -6246.0,0.3244929595945527 -6247.0,0.3243809030494149 -6248.0,0.3242688852005536 -6249.0,0.32415690603460595 -6250.0,0.32404496553821366 -6251.0,0.3239330636980231 -6252.0,0.3238212005006851 -6253.0,0.32370937593285526 -6254.0,0.3235975899811936 -6255.0,0.323485842632365 -6256.0,0.32337413387303887 -6257.0,0.323262463689889 -6258.0,0.3231508320695941 -6259.0,0.3230392389988372 -6260.0,0.3229276844643062 -6261.0,0.3228161684526933 -6262.0,0.3227046909506956 -6263.0,0.32259325194501454 -6264.0,0.32248185142235636 -6265.0,0.3223704893694317 -6266.0,0.32225916577295594 -6267.0,0.3221478806196489 -6268.0,0.3220366338962352 -6269.0,0.3219254255894438 -6270.0,0.32181425568600847 -6271.0,0.3217031241726673 -6272.0,0.3215920310361633 -6273.0,0.3214809762632437 -6274.0,0.3213699598406605 -6275.0,0.32125898175517037 -6276.0,0.3211480419935343 -6277.0,0.32103714054251814 -6278.0,0.320926277388892 -6279.0,0.32081545251943083 -6280.0,0.3207046659209139 -6281.0,0.3205939175801253 -6282.0,0.32048320748385345 -6283.0,0.32037253561889156 -6284.0,0.3202619019720372 -6285.0,0.32015130653009266 -6286.0,0.3200407492798646 -6287.0,0.31993023020816447 -6288.0,0.319819749301808 -6289.0,0.3197093065476158 -6290.0,0.3195989019324127 -6291.0,0.31948853544302835 -6292.0,0.3193782070662967 -6293.0,0.3192679167890565 -6294.0,0.319157664598151 -6295.0,0.31904745048042765 -6296.0,0.31893727442273895 -6297.0,0.31882713641194155 -6298.0,0.3187170364348969 -6299.0,0.3186069744784708 -6300.0,0.31849695052953375 -6301.0,0.3183869645749605 -6302.0,0.3182770166016308 -6303.0,0.31816710659642844 -6304.0,0.3180572345462421 -6305.0,0.3179474004379647 -6306.0,0.317837604258494 -6307.0,0.3177278459947319 -6308.0,0.3176181256335853 -6309.0,0.31750844316196514 -6310.0,0.31739879856678727 -6311.0,0.31728919183497173 -6312.0,0.3171796229534433 -6313.0,0.3170700919091314 -6314.0,0.3169605986889694 -6315.0,0.3168511432798959 -6316.0,0.31674172566885345 -6317.0,0.31663234584278943 -6318.0,0.31652300378865555 -6319.0,0.31641369949340825 -6320.0,0.3163044329440081 -6321.0,0.3161952041274207 -6322.0,0.3160860130306155 -6323.0,0.31597685964056704 -6324.0,0.315867743944254 -6325.0,0.3157586659286598 -6326.0,0.31564962558077203 -6327.0,0.3155406228875832 -6328.0,0.3154316578360899 -6329.0,0.3153227304132935 -6330.0,0.31521384060619967 -6331.0,0.3151049884018187 -6332.0,0.3149961737871654 -6333.0,0.3148873967492588 -6334.0,0.3147786572751227 -6335.0,0.31466995535178527 -6336.0,0.3145612909662792 -6337.0,0.3144526641056415 -6338.0,0.3143440747569139 -6339.0,0.3142355229071424 -6340.0,0.3141270085433776 -6341.0,0.3140185316526745 -6342.0,0.31391009222209265 -6343.0,0.313801690238696 -6344.0,0.31369332568955294 -6345.0,0.31358499856173633 -6346.0,0.31347670884232365 -6347.0,0.3133684565183967 -6348.0,0.3132602415770417 -6349.0,0.3131520640053494 -6350.0,0.31304392379041507 -6351.0,0.3129358209193384 -6352.0,0.31282775537922336 -6353.0,0.3127197271571787 -6354.0,0.3126117362403173 -6355.0,0.3125037826157567 -6356.0,0.3123958662706187 -6357.0,0.31228798719202994 -6358.0,0.3121801453671209 -6359.0,0.3120723407830271 -6360.0,0.31196457342688805 -6361.0,0.31185684328584806 -6362.0,0.3117491503470555 -6363.0,0.31164149459766366 -6364.0,0.31153387602482974 -6365.0,0.3114262946157158 -6366.0,0.311318750357488 -6367.0,0.3112112432373173 -6368.0,0.3111037732423787 -6369.0,0.3109963403598519 -6370.0,0.310888944576921 -6371.0,0.3107815858807743 -6372.0,0.31067426425860484 -6373.0,0.3105669796976098 -6374.0,0.3104597321849911 -6375.0,0.31035252170795474 -6376.0,0.3102453482537114 -6377.0,0.3101382118094759 -6378.0,0.31003111236246783 -6379.0,0.30992404989991085 -6380.0,0.30981702440903336 -6381.0,0.3097100358770678 -6382.0,0.30960308429125144 -6383.0,0.3094961696388255 -6384.0,0.30938929190703607 -6385.0,0.3092824510831332 -6386.0,0.30917564715437174 -6387.0,0.3090688801080106 -6388.0,0.3089621499313134 -6389.0,0.30885545661154795 -6390.0,0.30874880013598643 -6391.0,0.30864218049190567 -6392.0,0.30853559766658656 -6393.0,0.3084290516473147 -6394.0,0.30832254242137974 -6395.0,0.30821606997607615 -6396.0,0.30810963429870225 -6397.0,0.3080032353765613 -6398.0,0.3078968731969605 -6399.0,0.3077905477472118 -6400.0,0.30768425901463115 -6401.0,0.30757800698653925 -6402.0,0.30747179165026084 -6403.0,0.30736561299312537 -6404.0,0.30725947100246637 -6405.0,0.307153365665622 -6406.0,0.30704729696993455 -6407.0,0.3069412649027508 -6408.0,0.30683526945142203 -6409.0,0.3067293106033036 -6410.0,0.30662338834575553 -6411.0,0.3065175026661419 -6412.0,0.3064116535518316 -6413.0,0.30630584099019725 -6414.0,0.3062000649686164 -6415.0,0.3060943254744707 -6416.0,0.30598862249514625 -6417.0,0.3058829560180333 -6418.0,0.3057773260305268 -6419.0,0.3056717325200257 -6420.0,0.3055661754739336 -6421.0,0.3054606548796582 -6422.0,0.30535517072461177 -6423.0,0.30524972299621067 -6424.0,0.30514431168187595 -6425.0,0.3050389367690326 -6426.0,0.3049335982451103 -6427.0,0.304828296097543 -6428.0,0.3047230303137687 -6429.0,0.30461780088123014 -6430.0,0.3045126077873741 -6431.0,0.30440745101965194 -6432.0,0.3043023305655191 -6433.0,0.3041972464124356 -6434.0,0.3040921985478655 -6435.0,0.30398718695927757 -6436.0,0.3038822116341445 -6437.0,0.3037772725599436 -6438.0,0.3036723697241563 -6439.0,0.3035675031142686 -6440.0,0.30346267271777055 -6441.0,0.3033578785221568 -6442.0,0.303253120514926 -6443.0,0.3031483986835814 -6444.0,0.3030437130156304 -6445.0,0.30293906349858474 -6446.0,0.3028344501199606 -6447.0,0.3027298728672782 -6448.0,0.3026253317280624 -6449.0,0.3025208266898421 -6450.0,0.3024163577401507 -6451.0,0.3023119248665257 -6452.0,0.3022075280565091 -6453.0,0.3021031672976471 -6454.0,0.30199884257749027 -6455.0,0.30189455388359326 -6456.0,0.30179030120351547 -6457.0,0.30168608452482004 -6458.0,0.30158190383507494 -6459.0,0.3014777591218519 -6460.0,0.30137365037272745 -6461.0,0.30126957757528194 -6462.0,0.30116554071710055 -6463.0,0.30106153978577216 -6464.0,0.3009575747688903 -6465.0,0.3008536456540528 -6466.0,0.3007497524288616 -6467.0,0.300645895080923 -6468.0,0.3005420735978475 -6469.0,0.30043828796725014 -6470.0,0.3003345381767499 -6471.0,0.30023082421397024 -6472.0,0.3001271460665388 -6473.0,0.3000235037220876 -6474.0,0.29991989716825274 -6475.0,0.29981632639267486 -6476.0,0.2997127913829986 -6477.0,0.29960929212687315 -6478.0,0.29950582861195163 -6479.0,0.2994024008258917 -6480.0,0.2992990087563551 -6481.0,0.29919565239100804 -6482.0,0.2990923317175207 -6483.0,0.29898904672356774 -6484.0,0.2988857973968281 -6485.0,0.29878258372498473 -6486.0,0.29867940569572515 -6487.0,0.29857626329674086 -6488.0,0.2984731565157278 -6489.0,0.298370085340386 -6490.0,0.29826704975841994 -6491.0,0.2981640497575381 -6492.0,0.2980610853254534 -6493.0,0.2979581564498829 -6494.0,0.297855263118548 -6495.0,0.29775240531917413 -6496.0,0.2976495830394913 -6497.0,0.2975467962672334 -6498.0,0.2974440449901389 -6499.0,0.2973413291959501 -6500.0,0.29723864887241386 -6501.0,0.2971360040072812 -6502.0,0.29703339458830724 -6503.0,0.29693082060325154 -6504.0,0.2968282820398777 -6505.0,0.2967257788859537 -6506.0,0.2966233111292515 -6507.0,0.2965208787575476 -6508.0,0.29641848175862245 -6509.0,0.296316120120261 -6510.0,0.29621379383025204 -6511.0,0.29611150287638893 -6512.0,0.29600924724646904 -6513.0,0.29590702692829407 -6514.0,0.2958048419096698 -6515.0,0.2957026921784065 -6516.0,0.2956005777223182 -6517.0,0.29549849852922355 -6518.0,0.29539645458694513 -6519.0,0.29529444588331 -6520.0,0.29519247240614904 -6521.0,0.2950905341432978 -6522.0,0.29498863108259565 -6523.0,0.29488676321188634 -6524.0,0.2947849305190178 -6525.0,0.294683132991842 -6526.0,0.29458137061821543 -6527.0,0.2944796433859984 -6528.0,0.2943779512830558 -6529.0,0.29427629429725627 -6530.0,0.29417467241647305 -6531.0,0.2940730856285833 -6532.0,0.2939715339214685 -6533.0,0.2938700172830142 -6534.0,0.29376853570111033 -6535.0,0.29366708916365075 -6536.0,0.29356567765853375 -6537.0,0.29346430117366157 -6538.0,0.29336295969694076 -6539.0,0.29326165321628206 -6540.0,0.29316038171960024 -6541.0,0.2930591451948146 -6542.0,0.292957943629848 -6543.0,0.2928567770126282 -6544.0,0.29275564533108644 -6545.0,0.2926545485731587 -6546.0,0.29255348672678466 -6547.0,0.2924524597799086 -6548.0,0.2923514677204785 -6549.0,0.29225051053644696 -6550.0,0.29214958821577036 -6551.0,0.2920487007464096 -6552.0,0.2919478481163293 -6553.0,0.2918470303134986 -6554.0,0.2917462473258907 -6555.0,0.2916454991414829 -6556.0,0.2915447857482566 -6557.0,0.2914441071341976 -6558.0,0.29134346328729543 -6559.0,0.29124285419554424 -6560.0,0.291142279846942 -6561.0,0.29104174022949086 -6562.0,0.29094123533119737 -6563.0,0.2908407651400718 -6564.0,0.290740329644129 -6565.0,0.29063992883138756 -6566.0,0.2905395626898705 -6567.0,0.29043923120760484 -6568.0,0.2903389343726218 -6569.0,0.2902386721729567 -6570.0,0.2901384445966489 -6571.0,0.2900382516317421 -6572.0,0.2899380932662839 -6573.0,0.2898379694883262 -6574.0,0.289737880285925 -6575.0,0.2896378256471403 -6576.0,0.2895378055600364 -6577.0,0.28943782001268153 -6578.0,0.28933786899314823 -6579.0,0.28923795248951306 -6580.0,0.2891380704898567 -6581.0,0.28903822298226395 -6582.0,0.28893840995482367 -6583.0,0.28883863139562904 -6584.0,0.288738887292777 -6585.0,0.288639177634369 -6586.0,0.28853950240851034 -6587.0,0.2884398616033105 -6588.0,0.28834025520688294 -6589.0,0.2882406832073456 -6590.0,0.28814114559281995 -6591.0,0.28804164235143215 -6592.0,0.287942173471312 -6593.0,0.2878427389405937 -6594.0,0.28774333874741537 -6595.0,0.2876439728799194 -6596.0,0.287544641326252 -6597.0,0.28744534407456374 -6598.0,0.2873460811130092 -6599.0,0.28724685242974696 -6600.0,0.2871476580129399 -6601.0,0.28704849785075465 -6602.0,0.2869493719313623 -6603.0,0.28685028024293774 -6604.0,0.2867512227736601 -6605.0,0.2866521995117125 -6606.0,0.2865532104452823 -6607.0,0.2864542555625607 -6608.0,0.28635533485174325 -6609.0,0.2862564483010292 -6610.0,0.28615759589862233 -6611.0,0.28605877763273013 -6612.0,0.2859599934915644 -6613.0,0.28586124346334085 -6614.0,0.28576252753627934 -6615.0,0.28566384569860376 -6616.0,0.28556519793854207 -6617.0,0.2854665842443264 -6618.0,0.2853680046041928 -6619.0,0.28526945900638145 -6620.0,0.2851709474391365 -6621.0,0.2850724698907064 -6622.0,0.2849740263493433 -6623.0,0.2848756168033038 -6624.0,0.2847772412408482 -6625.0,0.2846788996502411 -6626.0,0.28458059201975106 -6627.0,0.28448231833765064 -6628.0,0.28438407859221654 -6629.0,0.2842858727717295 -6630.0,0.28418770086447426 -6631.0,0.28408956285873965 -6632.0,0.2839914587428184 -6633.0,0.2838933885050076 -6634.0,0.28379535213360807 -6635.0,0.2836973496169247 -6636.0,0.28359938094326675 -6637.0,0.2835014461009471 -6638.0,0.28340354507828286 -6639.0,0.2833056778635951 -6640.0,0.28320784444520913 -6641.0,0.28311004481145396 -6642.0,0.28301227895066294 -6643.0,0.28291454685117323 -6644.0,0.28281684850132616 -6645.0,0.282719183889467 -6646.0,0.2826215530039451 -6647.0,0.28252395583311374 -6648.0,0.2824263923653304 -6649.0,0.2823288625889563 -6650.0,0.2822313664923571 -6651.0,0.28213390406390193 -6652.0,0.2820364752919645 -6653.0,0.2819390801649221 -6654.0,0.2818417186711562 -6655.0,0.28174439079905245 -6656.0,0.2816470965370001 -6657.0,0.28154983587339294 -6658.0,0.2814526087966282 -6659.0,0.2813554152951076 -6660.0,0.28125825535723653 -6661.0,0.28116112897142465 -6662.0,0.2810640361260854 -6663.0,0.28096697680963634 -6664.0,0.2808699510104989 -6665.0,0.2807729587170988 -6666.0,0.2806759999178654 -6667.0,0.2805790746012324 -6668.0,0.2804821827556371 -6669.0,0.2803853243695211 -6670.0,0.28028849943132994 -6671.0,0.28019170792951315 -6672.0,0.2800949498525241 -6673.0,0.2799982251888202 -6674.0,0.2799015339268632 -6675.0,0.2798048760551182 -6676.0,0.27970825156205487 -6677.0,0.27961166043614644 -6678.0,0.2795151026658704 -6679.0,0.279418578239708 -6680.0,0.2793220871461447 -6681.0,0.27922562937366974 -6682.0,0.27912920491077653 -6683.0,0.2790328137459621 -6684.0,0.278936455867728 -6685.0,0.2788401312645791 -6686.0,0.2787438399250249 -6687.0,0.27864758183757826 -6688.0,0.2785513569907565 -6689.0,0.2784551653730805 -6690.0,0.2783590069730756 -6691.0,0.2782628817792705 -6692.0,0.27816678978019826 -6693.0,0.27807073096439594 -6694.0,0.27797470532040425 -6695.0,0.2778787128367682 -6696.0,0.27778275350203635 -6697.0,0.2776868273047617 -6698.0,0.2775909342335008 -6699.0,0.27749507427681436 -6700.0,0.27739924742326694 -6701.0,0.27730345366142717 -6702.0,0.2772076929798674 -6703.0,0.27711196536716437 -6704.0,0.27701627081189817 -6705.0,0.27692060930265333 -6706.0,0.276824980828018 -6707.0,0.2767293853765845 -6708.0,0.2766338229369489 -6709.0,0.2765382934977114 -6710.0,0.27644279704747593 -6711.0,0.27634733357485053 -6712.0,0.27625190306844716 -6713.0,0.2761565055168815 -6714.0,0.27606114090877343 -6715.0,0.2759658092327466 -6716.0,0.27587051047742867 -6717.0,0.27577524463145114 -6718.0,0.27568001168344963 -6719.0,0.27558481162206333 -6720.0,0.27548964443593577 -6721.0,0.275394510113714 -6722.0,0.2752994086440494 -6723.0,0.2752043400155969 -6724.0,0.27510930421701557 -6725.0,0.2750143012369683 -6726.0,0.274919331064122 -6727.0,0.2748243936871473 -6728.0,0.274729489094719 -6729.0,0.2746346172755155 -6730.0,0.27453977821821945 -6731.0,0.27444497191151723 -6732.0,0.274350198344099 -6733.0,0.2742554575046592 -6734.0,0.2741607493818956 -6735.0,0.27406607396451055 -6736.0,0.27397143124120976 -6737.0,0.27387682120070317 -6738.0,0.2737822438317043 -6739.0,0.273687699122931 -6740.0,0.2735931870631046 -6741.0,0.2734987076409506 -6742.0,0.2734042608451982 -6743.0,0.2733098466645807 -6744.0,0.273215465087835 -6745.0,0.2731211161037023 -6746.0,0.27302679970092725 -6747.0,0.2729325158682588 -6748.0,0.2728382645944493 -6749.0,0.27274404586825546 -6750.0,0.2726498596784377 -6751.0,0.2725557060137601 -6752.0,0.27246158486299105 -6753.0,0.27236749621490236 -6754.0,0.27227344005827014 -6755.0,0.27217941638187404 -6756.0,0.2720854251744978 -6757.0,0.2719914664249289 -6758.0,0.27189754012195877 -6759.0,0.27180364625438264 -6760.0,0.2717097848109998 -6761.0,0.27161595578061304 -6762.0,0.27152215915202943 -6763.0,0.2714283949140596 -6764.0,0.2713346630555183 -6765.0,0.2712409635652238 -6766.0,0.2711472964319987 -6767.0,0.2710536616446689 -6768.0,0.2709600591920646 -6769.0,0.2708664890630198 -6770.0,0.2707729512463721 -6771.0,0.2706794457309632 -6772.0,0.27058597250563854 -6773.0,0.2704925315592475 -6774.0,0.2703991228806432 -6775.0,0.2703057464586827 -6776.0,0.27021240228222687 -6777.0,0.2701190903401405 -6778.0,0.27002581062129194 -6779.0,0.2699325631145538 -6780.0,0.2698393478088023 -6781.0,0.2697461646929175 -6782.0,0.2696530137557833 -6783.0,0.2695598949862876 -6784.0,0.2694668083733218 -6785.0,0.2693737539057816 -6786.0,0.26928073157256605 -6787.0,0.26918774136257834 -6788.0,0.2690947832647255 -6789.0,0.26900185726791825 -6790.0,0.26890896336107123 -6791.0,0.2688161015331027 -6792.0,0.2687232717729352 -6793.0,0.2686304740694946 -6794.0,0.26853770841171093 -6795.0,0.2684449747885178 -6796.0,0.2683522731888529 -6797.0,0.2682596036016575 -6798.0,0.2681669660158769 -6799.0,0.26807436042046 -6800.0,0.26798178680435975 -6801.0,0.2678892451565326 -6802.0,0.2677967354659393 -6803.0,0.26770425772154377 -6804.0,0.2676118119123144 -6805.0,0.26751939802722285 -6806.0,0.26742701605524494 -6807.0,0.2673346659853602 -6808.0,0.2672423478065518 -6809.0,0.26715006150780707 -6810.0,0.26705780707811666 -6811.0,0.2669655845064755 -6812.0,0.266873393781882 -6813.0,0.2667812348933386 -6814.0,0.2666891078298513 -6815.0,0.26659701258043 -6816.0,0.26650494913408845 -6817.0,0.26641291747984425 -6818.0,0.2663209176067185 -6819.0,0.26622894950373643 -6820.0,0.2661370131599268 -6821.0,0.2660451085643225 -6822.0,0.2659532357059597 -6823.0,0.26586139457387886 -6824.0,0.26576958515712384 -6825.0,0.2656778074447425 -6826.0,0.2655860614257865 -6827.0,0.26549434708931113 -6828.0,0.2654026644243756 -6829.0,0.2653110134200427 -6830.0,0.2652193940653793 -6831.0,0.2651278063494558 -6832.0,0.26503625026134653 -6833.0,0.26494472579012934 -6834.0,0.2648532329248862 -6835.0,0.2647617716547026 -6836.0,0.2646703419686679 -6837.0,0.26457894385587516 -6838.0,0.2644875773054214 -6839.0,0.264396242306407 -6840.0,0.2643049388479366 -6841.0,0.26421366691911824 -6842.0,0.2641224265090639 -6843.0,0.2640312176068892 -6844.0,0.26394004020171363 -6845.0,0.26384889428266045 -6846.0,0.26375777983885645 -6847.0,0.2636666968594325 -6848.0,0.26357564533352296 -6849.0,0.26348462525026617 -6850.0,0.26339363659880394 -6851.0,0.2633026793682821 -6852.0,0.2632117535478501 -6853.0,0.2631208591266611 -6854.0,0.2630299960938721 -6855.0,0.26293916443864385 -6856.0,0.2628483641501407 -6857.0,0.2627575952175309 -6858.0,0.2626668576299863 -6859.0,0.26257615137668266 -6860.0,0.2624854764467993 -6861.0,0.26239483282951953 -6862.0,0.26230422051403 -6863.0,0.2622136394895215 -6864.0,0.2621230897451883 -6865.0,0.2620325712702284 -6866.0,0.2619420840538438 -6867.0,0.2618516280852398 -6868.0,0.2617612033536259 -6869.0,0.2616708098482149 -6870.0,0.2615804475582236 -6871.0,0.26149011647287246 -6872.0,0.2613998165813856 -6873.0,0.2613095478729909 -6874.0,0.26121931033692 -6875.0,0.26112910396240807 -6876.0,0.2610389287386944 -6877.0,0.2609487846550215 -6878.0,0.26085867170063604 -6879.0,0.260768589864788 -6880.0,0.2606785391367315 -6881.0,0.2605885195057239 -6882.0,0.2604985309610267 -6883.0,0.26040857349190494 -6884.0,0.2603186470876272 -6885.0,0.260228751737466 -6886.0,0.2601388874306974 -6887.0,0.26004905415660146 -6888.0,0.25995925190446145 -6889.0,0.2598694806635648 -6890.0,0.25977974042320234 -6891.0,0.25969003117266887 -6892.0,0.25960035290126254 -6893.0,0.2595107055982856 -6894.0,0.2594210892530435 -6895.0,0.25933150385484594 -6896.0,0.2592419493930059 -6897.0,0.2591524258568402 -6898.0,0.2590629332356693 -6899.0,0.2589734715188175 -6900.0,0.2588840406956125 -6901.0,0.25879464075538594 -6902.0,0.25870527168747315 -6903.0,0.2586159334812129 -6904.0,0.25852662612594796 -6905.0,0.2584373496110244 -6906.0,0.2583481039257924 -6907.0,0.25825888905960537 -6908.0,0.25816970500182085 -6909.0,0.2580805517417997 -6910.0,0.25799142926890667 -6911.0,0.25790233757250997 -6912.0,0.2578132766419818 -6913.0,0.2577242464666976 -6914.0,0.25763524703603696 -6915.0,0.25754627833938276 -6916.0,0.2574573403661217 -6917.0,0.2573684331056441 -6918.0,0.25727955654734413 -6919.0,0.2571907106806192 -6920.0,0.25710189549487084 -6921.0,0.2570131109795041 -6922.0,0.2569243571239274 -6923.0,0.25683563391755326 -6924.0,0.25674694134979753 -6925.0,0.2566582794100799 -6926.0,0.2565696480878236 -6927.0,0.25648104737245564 -6928.0,0.2563924772534065 -6929.0,0.2563039377201105 -6930.0,0.2562154287620054 -6931.0,0.2561269503685329 -6932.0,0.25603850252913796 -6933.0,0.25595008523326956 -6934.0,0.2558616984703801 -6935.0,0.25577334222992576 -6936.0,0.25568501650136616 -6937.0,0.2555967212741648 -6938.0,0.25550845653778853 -6939.0,0.2554202222817082 -6940.0,0.25533201849539805 -6941.0,0.255243845168336 -6942.0,0.2551557022900036 -6943.0,0.25506758984988603 -6944.0,0.2549795078374722 -6945.0,0.25489145624225445 -6946.0,0.254803435053729 -6947.0,0.2547154442613955 -6948.0,0.25462748385475725 -6949.0,0.2545395538233212 -6950.0,0.2544516541565981 -6951.0,0.25436378484410194 -6952.0,0.2542759458753508 -6953.0,0.25418813723986583 -6954.0,0.2541003589271724 -6955.0,0.254012610926799 -6956.0,0.253924893228278 -6957.0,0.2538372058211453 -6958.0,0.25374954869494043 -6959.0,0.2536619218392066 -6960.0,0.25357432524349044 -6961.0,0.2534867588973425 -6962.0,0.2533992227903165 -6963.0,0.2533117169119703 -6964.0,0.2532242412518649 -6965.0,0.2531367957995651 -6966.0,0.2530493805446394 -6967.0,0.2529619954766597 -6968.0,0.2528746405852016 -6969.0,0.2527873158598444 -6970.0,0.2527000212901707 -6971.0,0.2526127568657672 -6972.0,0.25252552257622357 -6973.0,0.2524383184111336 -6974.0,0.25235114436009437 -6975.0,0.25226400041270675 -6976.0,0.25217688655857495 -6977.0,0.252089802787307 -6978.0,0.25200274908851455 -6979.0,0.25191572545181257 -6980.0,0.2518287318668199 -6981.0,0.2517417683231587 -6982.0,0.25165483481045503 -6983.0,0.25156793131833816 -6984.0,0.25148105783644126 -6985.0,0.2513942143544009 -6986.0,0.2513074008618574 -6987.0,0.25122061734845436 -6988.0,0.25113386380383934 -6989.0,0.25104714021766306 -6990.0,0.2509604465795802 -6991.0,0.2508737828792488 -6992.0,0.2507871491063305 -6993.0,0.25070054525049046 -6994.0,0.25061397130139756 -6995.0,0.25052742724872407 -6996.0,0.250440913082146 -6997.0,0.2503544287913429 -6998.0,0.2502679743659976 -6999.0,0.250181549795797 -7000.0,0.25009515507043106 -7001.0,0.2500087901795936 -7002.0,0.24992245511298192 -7003.0,0.2498361498602969 -7004.0,0.24974987441124286 -7005.0,0.2496636287555279 -7006.0,0.24957741288286336 -7007.0,0.24949122678296454 -7008.0,0.24940507044554988 -7009.0,0.24931894386034167 -7010.0,0.24923284701706555 -7011.0,0.2491467799054509 -7012.0,0.24906074251523042 -7013.0,0.2489747348361406 -7014.0,0.24888875685792125 -7015.0,0.24880280857031584 -7016.0,0.24871688996307145 -7017.0,0.2486310010259385 -7018.0,0.24854514174867118 -7019.0,0.24845931212102698 -7020.0,0.24837351213276718 -7021.0,0.24828774177365637 -7022.0,0.24820200103346282 -7023.0,0.24811628990195825 -7024.0,0.24803060836891802 -7025.0,0.24794495642412082 -7026.0,0.24785933405734914 -7027.0,0.24777374125838875 -7028.0,0.24768817801702914 -7029.0,0.24760264432306311 -7030.0,0.24751714016628729 -7031.0,0.24743166553650148 -7032.0,0.24734622042350932 -7033.0,0.24726080481711774 -7034.0,0.24717541870713727 -7035.0,0.2470900620833821 -7036.0,0.24700473493566968 -7037.0,0.24691943725382118 -7038.0,0.24683416902766114 -7039.0,0.24674893024701774 -7040.0,0.24666372090172256 -7041.0,0.24657854098161083 -7042.0,0.2464933904765211 -7043.0,0.24640826937629565 -7044.0,0.24632317767078002 -7045.0,0.2462381153498235 -7046.0,0.24615308240327874 -7047.0,0.24606807882100193 -7048.0,0.24598310459285275 -7049.0,0.2458981597086944 -7050.0,0.2458132441583936 -7051.0,0.24572835793182052 -7052.0,0.24564350101884883 -7053.0,0.24555867340935572 -7054.0,0.24547387509322197 -7055.0,0.24538910606033162 -7056.0,0.24530436630057248 -7057.0,0.2452196558038356 -7058.0,0.2451349745600157 -7059.0,0.24505032255901088 -7060.0,0.24496569979072283 -7061.0,0.2448811062450566 -7062.0,0.2447965419119209 -7063.0,0.24471200678122768 -7064.0,0.24462750084289267 -7065.0,0.2445430240868348 -7066.0,0.2444585765029767 -7067.0,0.2443741580812443 -7068.0,0.2442897688115672 -7069.0,0.24420540868387824 -7070.0,0.244121077688114 -7071.0,0.24403677581421437 -7072.0,0.24395250305212274 -7073.0,0.243868259391786 -7074.0,0.24378404482315444 -7075.0,0.243699859336182 -7076.0,0.2436157029208258 -7077.0,0.24353157556704672 -7078.0,0.2434474772648089 -7079.0,0.2433634080040801 -7080.0,0.2432793677748314 -7081.0,0.24319535656703747 -7082.0,0.24311137437067634 -7083.0,0.24302742117572962 -7084.0,0.24294349697218218 -7085.0,0.2428596017500226 -7086.0,0.24277573549924272 -7087.0,0.24269189820983794 -7088.0,0.24260808987180704 -7089.0,0.24252431047515233 -7090.0,0.24244056000987957 -7091.0,0.24235683846599787 -7092.0,0.24227314583351994 -7093.0,0.24218948210246175 -7094.0,0.24210584726284295 -7095.0,0.24202224130468641 -7096.0,0.24193866421801866 -7097.0,0.24185511599286943 -7098.0,0.24177159661927214 -7099.0,0.24168810608726346 -7100.0,0.24160464438688364 -7101.0,0.24152121150817624 -7102.0,0.2414378074411884 -7103.0,0.24135443217597052 -7104.0,0.2412710857025767 -7105.0,0.24118776801106412 -7106.0,0.24110447909149377 -7107.0,0.24102121893392972 -7108.0,0.24093798752843976 -7109.0,0.24085478486509498 -7110.0,0.24077161093396984 -7111.0,0.24068846572514238 -7112.0,0.24060534922869392 -7113.0,0.2405222614347093 -7114.0,0.24043920233327673 -7115.0,0.2403561719144879 -7116.0,0.24027317016843783 -7117.0,0.2401901970852251 -7118.0,0.24010725265495153 -7119.0,0.24002433686772254 -7120.0,0.23994144971364678 -7121.0,0.23985859118283656 -7122.0,0.2397757612654073 -7123.0,0.23969295995147816 -7124.0,0.2396101872311714 -7125.0,0.23952744309461294 -7126.0,0.2394447275319319 -7127.0,0.239362040533261 -7128.0,0.2392793820887363 -7129.0,0.2391967521884972 -7130.0,0.23911415082268664 -7131.0,0.23903157798145072 -7132.0,0.23894903365493927 -7133.0,0.23886651783330523 -7134.0,0.23878403050670516 -7135.0,0.23870157166529882 -7136.0,0.23861914129924958 -7137.0,0.238536739398724 -7138.0,0.23845436595389224 -7139.0,0.23837202095492763 -7140.0,0.2382897043920071 -7141.0,0.23820741625531083 -7142.0,0.23812515653502253 -7143.0,0.23804292522132908 -7144.0,0.23796072230442103 -7145.0,0.23787854777449202 -7146.0,0.23779640162173935 -7147.0,0.23771428383636356 -7148.0,0.23763219440856856 -7149.0,0.23755013332856173 -7150.0,0.23746810058655368 -7151.0,0.23738609617275866 -7152.0,0.237304120077394 -7153.0,0.23722217229068063 -7154.0,0.2371402528028427 -7155.0,0.23705836160410793 -7156.0,0.23697649868470716 -7157.0,0.23689466403487486 -7158.0,0.23681285764484866 -7159.0,0.23673107950486977 -7160.0,0.2366493296051825 -7161.0,0.23656760793603482 -7162.0,0.23648591448767783 -7163.0,0.23640424925036618 -7164.0,0.23632261221435774 -7165.0,0.2362410033699138 -7166.0,0.23615942270729912 -7167.0,0.23607787021678162 -7168.0,0.23599634588863275 -7169.0,0.23591484971312715 -7170.0,0.23583338168054305 -7171.0,0.2357519417811618 -7172.0,0.2356705300052683 -7173.0,0.23558914634315065 -7174.0,0.23550779078510042 -7175.0,0.23542646332141245 -7176.0,0.235345163942385 -7177.0,0.2352638926383196 -7178.0,0.23518264939952127 -7179.0,0.23510143421629814 -7180.0,0.23502024707896196 -7181.0,0.23493908797782762 -7182.0,0.23485795690321348 -7183.0,0.23477685384544114 -7184.0,0.23469577879483564 -7185.0,0.23461473174172534 -7186.0,0.23453371267644182 -7187.0,0.23445272158932023 -7188.0,0.2343717584706988 -7189.0,0.23429082331091933 -7190.0,0.23420991610032674 -7191.0,0.23412903682926947 -7192.0,0.23404818548809914 -7193.0,0.23396736206717086 -7194.0,0.23388656655684292 -7195.0,0.23380579894747705 -7196.0,0.2337250592294382 -7197.0,0.2336443473930948 -7198.0,0.23356366342881843 -7199.0,0.23348300732698415 -7200.0,0.23340237907797018 -7201.0,0.23332177867215828 -7202.0,0.23324120609993332 -7203.0,0.2331606613516836 -7204.0,0.23308014441780076 -7205.0,0.23299965528867966 -7206.0,0.2329191939547186 -7207.0,0.23283876040631904 -7208.0,0.23275835463388592 -7209.0,0.23267797662782735 -7210.0,0.23259762637855494 -7211.0,0.23251730387648334 -7212.0,0.23243700911203077 -7213.0,0.2323567420756186 -7214.0,0.2322765027576716 -7215.0,0.2321962911486177 -7216.0,0.2321161072388884 -7217.0,0.2320359510189182 -7218.0,0.23195582247914515 -7219.0,0.23187572161001038 -7220.0,0.2317956484019586 -7221.0,0.23171560284543752 -7222.0,0.23163558493089834 -7223.0,0.23155559464879558 -7224.0,0.23147563198958684 -7225.0,0.2313956969437333 -7226.0,0.23131578950169915 -7227.0,0.23123590965395216 -7228.0,0.23115605739096312 -7229.0,0.23107623270320632 -7230.0,0.2309964355811592 -7231.0,0.2309166660153026 -7232.0,0.23083692399612057 -7233.0,0.23075720951410048 -7234.0,0.2306775225597329 -7235.0,0.23059786312351188 -7236.0,0.2305182311959345 -7237.0,0.2304386267675014 -7238.0,0.2303590498287162 -7239.0,0.23027950037008607 -7240.0,0.23019997838212122 -7241.0,0.23012048385533537 -7242.0,0.23004101678024538 -7243.0,0.22996157714737134 -7244.0,0.2298821649472368 -7245.0,0.22980278017036831 -7246.0,0.229723422807296 -7247.0,0.229644092848553 -7248.0,0.22956479028467588 -7249.0,0.22948551510620438 -7250.0,0.22940626730368163 -7251.0,0.22932704686765384 -7252.0,0.2292478537886707 -7253.0,0.22916868805728494 -7254.0,0.2290895496640528 -7255.0,0.22901043859953346 -7256.0,0.22893135485428975 -7257.0,0.22885229841888738 -7258.0,0.22877326928389566 -7259.0,0.22869426743988683 -7260.0,0.2286152928774366 -7261.0,0.228536345587124 -7262.0,0.228457425559531 -7263.0,0.22837853278524317 -7264.0,0.2282996672548491 -7265.0,0.22822082895894075 -7266.0,0.2281420178881132 -7267.0,0.228063234032965 -7268.0,0.22798447738409766 -7269.0,0.22790574793211624 -7270.0,0.22782704566762876 -7271.0,0.2277483705812467 -7272.0,0.22766972266358462 -7273.0,0.2275911019052605 -7274.0,0.22751250829689532 -7275.0,0.22743394182911358 -7276.0,0.22735540249254274 -7277.0,0.22727689027781378 -7278.0,0.22719840517556059 -7279.0,0.2271199471764206 -7280.0,0.2270415162710343 -7281.0,0.22696311245004544 -7282.0,0.2268847357041011 -7283.0,0.22680638602385134 -7284.0,0.2267280633999498 -7285.0,0.226649767823053 -7286.0,0.226571499283821 -7287.0,0.2264932577729168 -7288.0,0.22641504328100684 -7289.0,0.22633685579876064 -7290.0,0.2262586953168511 -7291.0,0.22618056182595414 -7292.0,0.22610245531674908 -7293.0,0.22602437577991832 -7294.0,0.22594632320614763 -7295.0,0.22586829758612578 -7296.0,0.225790298910545 -7297.0,0.22571232717010054 -7298.0,0.22563438235549094 -7299.0,0.22555646445741806 -7300.0,0.2254785734665867 -7301.0,0.22540070937370518 -7302.0,0.2253228721694848 -7303.0,0.2252450618446402 -7304.0,0.22516727838988906 -7305.0,0.22508952179595254 -7306.0,0.2250117920535547 -7307.0,0.22493408915342308 -7308.0,0.2248564130862882 -7309.0,0.22477876384288392 -7310.0,0.22470114141394718 -7311.0,0.22462354579021832 -7312.0,0.22454597696244058 -7313.0,0.22446843492136073 -7314.0,0.22439091965772842 -7315.0,0.2243134311622968 -7316.0,0.2242359694258219 -7317.0,0.2241585344390632 -7318.0,0.22408112619278325 -7319.0,0.22400374467774778 -7320.0,0.22392638988472582 -7321.0,0.2238490618044894 -7322.0,0.22377176042781396 -7323.0,0.22369448574547787 -7324.0,0.22361723774826298 -7325.0,0.223540016426954 -7326.0,0.22346282177233914 -7327.0,0.22338565377520953 -7328.0,0.22330851242635968 -7329.0,0.22323139771658712 -7330.0,0.2231543096366927 -7331.0,0.22307724817748026 -7332.0,0.22300021332975706 -7333.0,0.22292320508433328 -7334.0,0.2228462234320225 -7335.0,0.2227692683636413 -7336.0,0.22269233987000953 -7337.0,0.22261543794195024 -7338.0,0.22253856257028948 -7339.0,0.2224617137458567 -7340.0,0.22238489145948423 -7341.0,0.2223080957020079 -7342.0,0.22223132646426644 -7343.0,0.2221545837371019 -7344.0,0.22207786751135936 -7345.0,0.2220011777778872 -7346.0,0.22192451452753684 -7347.0,0.22184787775116296 -7348.0,0.2217712674396233 -7349.0,0.2216946835837789 -7350.0,0.22161812617449372 -7351.0,0.22154159520263517 -7352.0,0.22146509065907352 -7353.0,0.2213886125346825 -7354.0,0.22131216082033867 -7355.0,0.22123573550692197 -7356.0,0.22115933658531545 -7357.0,0.2210829640464052 -7358.0,0.22100661788108064 -7359.0,0.2209302980802341 -7360.0,0.2208540046347613 -7361.0,0.22077773753556085 -7362.0,0.2207014967735348 -7363.0,0.22062528233958806 -7364.0,0.2205490942246289 -7365.0,0.22047293241956853 -7366.0,0.22039679691532152 -7367.0,0.22032068770280533 -7368.0,0.2202446047729408 -7369.0,0.2201685481166517 -7370.0,0.22009251772486513 -7371.0,0.2200165135885111 -7372.0,0.21994053569852298 -7373.0,0.21986458404583706 -7374.0,0.2197886586213929 -7375.0,0.21971275941613325 -7376.0,0.2196368864210037 -7377.0,0.21956103962695334 -7378.0,0.21948521902493406 -7379.0,0.2194094246059011 -7380.0,0.2193336563608127 -7381.0,0.2192579142806303 -7382.0,0.21918219835631833 -7383.0,0.21910650857884456 -7384.0,0.21903084493917963 -7385.0,0.21895520742829752 -7386.0,0.21887959603717513 -7387.0,0.21880401075679268 -7388.0,0.21872845157813328 -7389.0,0.2186529184921834 -7390.0,0.21857741148993237 -7391.0,0.21850193056237285 -7392.0,0.21842647570050044 -7393.0,0.21835104689531395 -7394.0,0.21827564413781536 -7395.0,0.21820026741900952 -7396.0,0.21812491672990467 -7397.0,0.21804959206151192 -7398.0,0.2179742934048457 -7399.0,0.2178990207509233 -7400.0,0.21782377409076534 -7401.0,0.21774855341539534 -7402.0,0.21767335871584015 -7403.0,0.2175981899831295 -7404.0,0.21752304720829635 -7405.0,0.21744793038237667 -7406.0,0.21737283949640965 -7407.0,0.2172977745414374 -7408.0,0.2172227355085053 -7409.0,0.21714772238866167 -7410.0,0.21707273517295805 -7411.0,0.21699777385244895 -7412.0,0.21692283841819207 -7413.0,0.2168479288612482 -7414.0,0.21677304517268112 -7415.0,0.21669818734355778 -7416.0,0.21662335536494814 -7417.0,0.21654854922792535 -7418.0,0.21647376892356554 -7419.0,0.216399014442948 -7420.0,0.216324285777155 -7421.0,0.21624958291727206 -7422.0,0.2161749058543876 -7423.0,0.2161002545795932 -7424.0,0.21602562908398348 -7425.0,0.21595102935865626 -7426.0,0.2158764553947122 -7427.0,0.21580190718325531 -7428.0,0.21572738471539243 -7429.0,0.21565288798223362 -7430.0,0.21557841697489194 -7431.0,0.21550397168448351 -7432.0,0.21542955210212766 -7433.0,0.21535515821894657 -7434.0,0.21528079002606568 -7435.0,0.2152064475146133 -7436.0,0.215132130675721 -7437.0,0.21505783950052326 -7438.0,0.21498357398015777 -7439.0,0.21490933410576507 -7440.0,0.21483511986848902 -7441.0,0.2147609312594763 -7442.0,0.21468676826987682 -7443.0,0.21461263089084337 -7444.0,0.21453851911353206 -7445.0,0.21446443292910175 -7446.0,0.21439037232871458 -7447.0,0.2143163373035356 -7448.0,0.2142423278447331 -7449.0,0.2141683439434781 -7450.0,0.214094385590945 -7451.0,0.2140204527783111 -7452.0,0.21394654549675668 -7453.0,0.21387266373746522 -7454.0,0.21379880749162308 -7455.0,0.21372497675041985 -7456.0,0.21365117150504798 -7457.0,0.2135773917467031 -7458.0,0.21350363746658374 -7459.0,0.21342990865589165 -7460.0,0.21335620530583144 -7461.0,0.2132825274076109 -7462.0,0.21320887495244073 -7463.0,0.21313524793153482 -7464.0,0.21306164633610988 -7465.0,0.2129880701573859 -7466.0,0.2129145193865857 -7467.0,0.21284099401493528 -7468.0,0.2127674940336635 -7469.0,0.21269401943400237 -7470.0,0.21262057020718703 -7471.0,0.21254714634445535 -7472.0,0.21247374783704853 -7473.0,0.21240037467621056 -7474.0,0.21232702685318866 -7475.0,0.21225370435923288 -7476.0,0.21218040718559647 -7477.0,0.2121071353235355 -7478.0,0.2120338887643093 -7479.0,0.21196066749917994 -7480.0,0.21188747151941278 -7481.0,0.21181430081627603 -7482.0,0.21174115538104096 -7483.0,0.21166803520498184 -7484.0,0.211594940279376 -7485.0,0.2115218705955037 -7486.0,0.21144882614464833 -7487.0,0.21137580691809613 -7488.0,0.21130281290713646 -7489.0,0.21122984410306175 -7490.0,0.21115690049716726 -7491.0,0.21108398208075144 -7492.0,0.21101108884511555 -7493.0,0.21093822078156405 -7494.0,0.21086537788140422 -7495.0,0.21079256013594652 -7496.0,0.21071976753650423 -7497.0,0.21064700007439385 -7498.0,0.21057425774093463 -7499.0,0.21050154052744904 -7500.0,0.21042884842526235 -7501.0,0.21035618142570303 -7502.0,0.2102835395201023 -7503.0,0.2102109226997947 -7504.0,0.21013833095611736 -7505.0,0.21006576428041077 -7506.0,0.20999322266401815 -7507.0,0.2099207060982859 -7508.0,0.2098482145745633 -7509.0,0.20977574808420257 -7510.0,0.2097033066185591 -7511.0,0.20963089016899106 -7512.0,0.20955849872685978 -7513.0,0.20948613228352936 -7514.0,0.20941379083036715 -7515.0,0.20934147435874326 -7516.0,0.2092691828600309 -7517.0,0.20919691632560616 -7518.0,0.20912467474684826 -7519.0,0.20905245811513923 -7520.0,0.20898026642186424 -7521.0,0.2089080996584112 -7522.0,0.2088359578161713 -7523.0,0.20876384088653843 -7524.0,0.2086917488609097 -7525.0,0.20861968173068485 -7526.0,0.20854763948726696 -7527.0,0.20847562212206192 -7528.0,0.20840362962647846 -7529.0,0.20833166199192854 -7530.0,0.20825971920982683 -7531.0,0.2081878012715912 -7532.0,0.20811590816864223 -7533.0,0.2080440398924037 -7534.0,0.20797219643430218 -7535.0,0.20790037778576734 -7536.0,0.20782858393823167 -7537.0,0.20775681488313075 -7538.0,0.20768507061190297 -7539.0,0.20761335111598986 -7540.0,0.20754165638683572 -7541.0,0.20746998641588799 -7542.0,0.20739834119459685 -7543.0,0.20732672071441566 -7544.0,0.2072551249668005 -7545.0,0.20718355394321059 -7546.0,0.2071120076351081 -7547.0,0.20704048603395792 -7548.0,0.20696898913122816 -7549.0,0.2068975169183897 -7550.0,0.2068260693869165 -7551.0,0.20675464652828526 -7552.0,0.20668324833397592 -7553.0,0.20661187479547105 -7554.0,0.20654052590425642 -7555.0,0.20646920165182053 -7556.0,0.206397902029655 -7557.0,0.20632662702925422 -7558.0,0.2062553766421157 -7559.0,0.2061841508597397 -7560.0,0.2061129496736296 -7561.0,0.20604177307529148 -7562.0,0.20597062105623462 -7563.0,0.205899493607971 -7564.0,0.2058283907220157 -7565.0,0.2057573123898867 -7566.0,0.20568625860310477 -7567.0,0.20561522935319382 -7568.0,0.20554422463168048 -7569.0,0.2054732444300945 -7570.0,0.20540228873996835 -7571.0,0.20533135755283763 -7572.0,0.2052604508602407 -7573.0,0.20518956865371896 -7574.0,0.20511871092481662 -7575.0,0.20504787766508095 -7576.0,0.20497706886606198 -7577.0,0.2049062845193128 -7578.0,0.2048355246163893 -7579.0,0.20476478914885038 -7580.0,0.20469407810825777 -7581.0,0.20462339148617623 -7582.0,0.20455272927417328 -7583.0,0.20448209146381946 -7584.0,0.20441147804668824 -7585.0,0.2043408890143559 -7586.0,0.20427032435840173 -7587.0,0.2041997840704078 -7588.0,0.2041292681419593 -7589.0,0.20405877656464405 -7590.0,0.20398830933005305 -7591.0,0.20391786642977994 -7592.0,0.2038474478554215 -7593.0,0.20377705359857726 -7594.0,0.2037066836508497 -7595.0,0.2036363380038442 -7596.0,0.2035660166491691 -7597.0,0.20349571957843546 -7598.0,0.20342544678325747 -7599.0,0.20335519825525197 -7600.0,0.20328497398603895 -7601.0,0.20321477396724105 -7602.0,0.203144598190484 -7603.0,0.20307444664739635 -7604.0,0.20300431932960947 -7605.0,0.20293421622875774 -7606.0,0.20286413733647832 -7607.0,0.20279408264441137 -7608.0,0.2027240521441998 -7609.0,0.20265404582748958 -7610.0,0.20258406368592935 -7611.0,0.20251410571117087 -7612.0,0.20244417189486855 -7613.0,0.20237426222867988 -7614.0,0.2023043767042651 -7615.0,0.2022345153132874 -7616.0,0.2021646780474128 -7617.0,0.2020948648983103 -7618.0,0.2020250758576516 -7619.0,0.2019553109171114 -7620.0,0.2018855700683673 -7621.0,0.20181585330309965 -7622.0,0.20174616061299186 -7623.0,0.20167649198972998 -7624.0,0.20160684742500315 -7625.0,0.20153722691050321 -7626.0,0.20146763043792498 -7627.0,0.20139805799896607 -7628.0,0.20132850958532705 -7629.0,0.20125898518871124 -7630.0,0.20118948480082496 -7631.0,0.20112000841337724 -7632.0,0.20105055601808014 -7633.0,0.20098112760664838 -7634.0,0.20091172317079978 -7635.0,0.2008423427022548 -7636.0,0.20077298619273692 -7637.0,0.20070365363397238 -7638.0,0.20063434501769034 -7639.0,0.20056506033562274 -7640.0,0.20049579957950445 -7641.0,0.2004265627410732 -7642.0,0.20035734981206949 -7643.0,0.20028816078423678 -7644.0,0.20021899564932122 -7645.0,0.20014985439907204 -7646.0,0.20008073702524107 -7647.0,0.20001164351958323 -7648.0,0.19994257387385608 -7649.0,0.19987352807982017 -7650.0,0.19980450612923878 -7651.0,0.19973550801387818 -7652.0,0.1996665337255073 -7653.0,0.1995975832558981 -7654.0,0.1995286565968252 -7655.0,0.19945975374006625 -7656.0,0.19939087467740157 -7657.0,0.19932201940061445 -7658.0,0.19925318790149088 -7659.0,0.1991843801718198 -7660.0,0.199115596203393 -7661.0,0.19904683598800496 -7662.0,0.19897809951745318 -7663.0,0.1989093867835378 -7664.0,0.19884069777806204 -7665.0,0.19877203249283165 -7666.0,0.19870339091965544 -7667.0,0.19863477305034494 -7668.0,0.1985661788767146 -7669.0,0.19849760839058153 -7670.0,0.1984290615837659 -7671.0,0.19836053844809043 -7672.0,0.19829203897538092 -7673.0,0.19822356315746584 -7674.0,0.19815511098617655 -7675.0,0.19808668245334715 -7676.0,0.1980182775508147 -7677.0,0.1979498962704189 -7678.0,0.1978815386040024 -7679.0,0.1978132045434107 -7680.0,0.19774489408049192 -7681.0,0.19767660720709723 -7682.0,0.1976083439150804 -7683.0,0.19754010419629822 -7684.0,0.1974718880426101 -7685.0,0.19740369544587844 -7686.0,0.19733552639796825 -7687.0,0.19726738089074758 -7688.0,0.19719925891608708 -7689.0,0.19713116046586035 -7690.0,0.19706308553194368 -7691.0,0.1969950341062163 -7692.0,0.19692700618056008 -7693.0,0.19685900174685989 -7694.0,0.1967910207970032 -7695.0,0.19672306332288048 -7696.0,0.19665512931638476 -7697.0,0.19658721876941213 -7698.0,0.19651933167386135 -7699.0,0.1964514680216339 -7700.0,0.19638362780463425 -7701.0,0.19631581101476944 -7702.0,0.19624801764394953 -7703.0,0.19618024768408718 -7704.0,0.19611250112709802 -7705.0,0.19604477796490025 -7706.0,0.19597707818941512 -7707.0,0.19590940179256644 -7708.0,0.195841748766281 -7709.0,0.1957741191024882 -7710.0,0.1957065127931204 -7711.0,0.19563892983011258 -7712.0,0.19557137020540263 -7713.0,0.19550383391093118 -7714.0,0.19543632093864163 -7715.0,0.19536883128048016 -7716.0,0.19530136492839575 -7717.0,0.19523392187434022 -7718.0,0.195166502110268 -7719.0,0.1950991056281365 -7720.0,0.19503173241990576 -7721.0,0.19496438247753867 -7722.0,0.19489705579300085 -7723.0,0.19482975235826072 -7724.0,0.19476247216528947 -7725.0,0.19469521520606112 -7726.0,0.19462798147255228 -7727.0,0.1945607709567426 -7728.0,0.19449358365061425 -7729.0,0.19442641954615236 -7730.0,0.19435927863534463 -7731.0,0.19429216091018175 -7732.0,0.194225066362657 -7733.0,0.19415799498476655 -7734.0,0.19409094676850916 -7735.0,0.19402392170588656 -7736.0,0.19395691978890314 -7737.0,0.19388994100956605 -7738.0,0.1938229853598852 -7739.0,0.19375605283187328 -7740.0,0.19368914341754576 -7741.0,0.19362225710892073 -7742.0,0.19355539389801926 -7743.0,0.19348855377686497 -7744.0,0.19342173673748442 -7745.0,0.19335494277190668 -7746.0,0.19328817187216388 -7747.0,0.19322142403029058 -7748.0,0.19315469923832437 -7749.0,0.1930879974883054 -7750.0,0.1930213187722767 -7751.0,0.1929546630822839 -7752.0,0.19288803041037555 -7753.0,0.19282142074860278 -7754.0,0.1927548340890196 -7755.0,0.19268827042368272 -7756.0,0.1926217297446515 -7757.0,0.19255521204398823 -7758.0,0.19248871731375772 -7759.0,0.19242224554602771 -7760.0,0.19235579673286854 -7761.0,0.19228937086635345 -7762.0,0.19222296793855823 -7763.0,0.19215658794156154 -7764.0,0.19209023086744467 -7765.0,0.1920238967082918 -7766.0,0.19195758545618966 -7767.0,0.1918912971032279 -7768.0,0.19182503164149867 -7769.0,0.1917587890630971 -7770.0,0.19169256936012083 -7771.0,0.19162637252467046 -7772.0,0.1915601985488491 -7773.0,0.19149404742476264 -7774.0,0.19142791914451987 -7775.0,0.19136181370023206 -7776.0,0.19129573108401338 -7777.0,0.19122967128798055 -7778.0,0.19116363430425326 -7779.0,0.19109762012495363 -7780.0,0.1910316287422068 -7781.0,0.19096566014814034 -7782.0,0.19089971433488478 -7783.0,0.1908337912945732 -7784.0,0.19076789101934155 -7785.0,0.1907020135013283 -7786.0,0.1906361587326748 -7787.0,0.190570326705525 -7788.0,0.19050451741202576 -7789.0,0.19043873084432633 -7790.0,0.19037296699457898 -7791.0,0.1903072258549385 -7792.0,0.19024150741756246 -7793.0,0.1901758116746112 -7794.0,0.19011013861824758 -7795.0,0.19004448824063738 -7796.0,0.1899788605339489 -7797.0,0.18991325549035337 -7798.0,0.18984767310202444 -7799.0,0.18978211336113868 -7800.0,0.18971657625987526 -7801.0,0.18965106179041616 -7802.0,0.18958556994494585 -7803.0,0.18952010071565176 -7804.0,0.18945465409472378 -7805.0,0.18938923007435474 -7806.0,0.18932382864673986 -7807.0,0.18925844980407738 -7808.0,0.18919309353856797 -7809.0,0.1891277598424152 -7810.0,0.18906244870782513 -7811.0,0.18899716012700668 -7812.0,0.18893189409217143 -7813.0,0.18886665059553354 -7814.0,0.18880142962931 -7815.0,0.18873623118572042 -7816.0,0.18867105525698707 -7817.0,0.18860590183533493 -7818.0,0.18854077091299173 -7819.0,0.18847566248218772 -7820.0,0.18841057653515608 -7821.0,0.1883455130641324 -7822.0,0.1882804720613552 -7823.0,0.18821545351906543 -7824.0,0.188150457429507 -7825.0,0.1880854837849262 -7826.0,0.18802053257757229 -7827.0,0.18795560379969695 -7828.0,0.18789069744355474 -7829.0,0.1878258135014027 -7830.0,0.18776095196550074 -7831.0,0.18769611282811136 -7832.0,0.18763129608149962 -7833.0,0.1875665017179335 -7834.0,0.18750172972968335 -7835.0,0.18743698010902246 -7836.0,0.18737225284822662 -7837.0,0.18730754793957438 -7838.0,0.18724286537534685 -7839.0,0.18717820514782793 -7840.0,0.18711356724930409 -7841.0,0.18704895167206456 -7842.0,0.18698435840840108 -7843.0,0.18691978745060822 -7844.0,0.1868552387909831 -7845.0,0.18679071242182554 -7846.0,0.18672620833543802 -7847.0,0.18666172652412572 -7848.0,0.1865972669801963 -7849.0,0.1865328296959603 -7850.0,0.18646841466373087 -7851.0,0.18640402187582367 -7852.0,0.18633965132455715 -7853.0,0.18627530300225237 -7854.0,0.18621097690123306 -7855.0,0.18614667301382554 -7856.0,0.1860823913323589 -7857.0,0.18601813184916471 -7858.0,0.18595389455657738 -7859.0,0.18588967944693374 -7860.0,0.18582548651257355 -7861.0,0.18576131574583896 -7862.0,0.1856971671390749 -7863.0,0.18563304068462888 -7864.0,0.1855689363748511 -7865.0,0.1855048542020944 -7866.0,0.18544079415871426 -7867.0,0.1853767562370687 -7868.0,0.1853127404295185 -7869.0,0.18524874672842714 -7870.0,0.1851847751261605 -7871.0,0.1851208256150873 -7872.0,0.1850568981875788 -7873.0,0.184992992836009 -7874.0,0.18492910955275435 -7875.0,0.1848652483301941 -7876.0,0.18480140916071006 -7877.0,0.18473759203668672 -7878.0,0.1846737969505111 -7879.0,0.18461002389457293 -7880.0,0.18454627286126457 -7881.0,0.184482543842981 -7882.0,0.18441883683211974 -7883.0,0.1843551518210811 -7884.0,0.18429148880226784 -7885.0,0.18422784776808548 -7886.0,0.18416422871094207 -7887.0,0.18410063162324836 -7888.0,0.1840370564974177 -7889.0,0.18397350332586593 -7890.0,0.18390997210101176 -7891.0,0.18384646281527628 -7892.0,0.18378297546108335 -7893.0,0.18371951003085935 -7894.0,0.18365606651703337 -7895.0,0.183592644912037 -7896.0,0.18352924520830458 -7897.0,0.18346586739827286 -7898.0,0.1834025114743815 -7899.0,0.18333917742907244 -7900.0,0.1832758652547905 -7901.0,0.18321257494398294 -7902.0,0.18314930648909972 -7903.0,0.18308605988259333 -7904.0,0.183022835116919 -7905.0,0.18295963218453437 -7906.0,0.18289645107789984 -7907.0,0.1828332917894784 -7908.0,0.18277015431173554 -7909.0,0.1827070386371395 -7910.0,0.18264394475816095 -7911.0,0.18258087266727333 -7912.0,0.18251782235695252 -7913.0,0.18245479381967716 -7914.0,0.18239178704792833 -7915.0,0.18232880203418986 -7916.0,0.18226583877094799 -7917.0,0.1822028972506918 -7918.0,0.18213997746591268 -7919.0,0.1820770794091049 -7920.0,0.18201420307276503 -7921.0,0.18195134844939254 -7922.0,0.1818885155314892 -7923.0,0.18182570431155956 -7924.0,0.18176291478211068 -7925.0,0.18170014693565226 -7926.0,0.18163740076469656 -7927.0,0.18157467626175836 -7928.0,0.18151197341935513 -7929.0,0.18144929223000683 -7930.0,0.18138663268623614 -7931.0,0.18132399478056815 -7932.0,0.18126137850553067 -7933.0,0.18119878385365398 -7934.0,0.18113621081747106 -7935.0,0.18107365938951733 -7936.0,0.18101112956233092 -7937.0,0.18094862132845244 -7938.0,0.18088613468042514 -7939.0,0.1808236696107948 -7940.0,0.18076122611210982 -7941.0,0.18069880417692108 -7942.0,0.1806364037977822 -7943.0,0.18057402496724917 -7944.0,0.18051166767788068 -7945.0,0.18044933192223803 -7946.0,0.18038701769288493 -7947.0,0.1803247249823878 -7948.0,0.1802624537833155 -7949.0,0.18020020408823967 -7950.0,0.1801379758897342 -7951.0,0.18007576918037588 -7952.0,0.18001358395274378 -7953.0,0.17995142019941976 -7954.0,0.17988927791298803 -7955.0,0.17982715708603558 -7956.0,0.17976505771115173 -7957.0,0.17970297978092858 -7958.0,0.17964092328796064 -7959.0,0.17957888822484502 -7960.0,0.1795168745841814 -7961.0,0.17945488235857202 -7962.0,0.1793929115406216 -7963.0,0.1793309621229375 -7964.0,0.17926903409812966 -7965.0,0.17920712745881046 -7966.0,0.17914524219759495 -7967.0,0.17908337830710058 -7968.0,0.17902153577994753 -7969.0,0.17895971460875834 -7970.0,0.1788979147861583 -7971.0,0.17883613630477505 -7972.0,0.17877437915723896 -7973.0,0.17871264333618272 -7974.0,0.17865092883424186 -7975.0,0.17858923564405416 -7976.0,0.17852756375826015 -7977.0,0.17846591316950275 -7978.0,0.1784042838704276 -7979.0,0.17834267585368263 -7980.0,0.1782810891119186 -7981.0,0.17821952363778856 -7982.0,0.17815797942394823 -7983.0,0.17809645646305586 -7984.0,0.17803495474777217 -7985.0,0.1779734742707605 -7986.0,0.1779120150246866 -7987.0,0.17785057700221893 -7988.0,0.17778916019602828 -7989.0,0.17772776459878817 -7990.0,0.17766639020317446 -7991.0,0.17760503700186572 -7992.0,0.17754370498754288 -7993.0,0.17748239415288955 -7994.0,0.1774211044905917 -7995.0,0.17735983599333804 -7996.0,0.1772985886538196 -7997.0,0.17723736246473007 -7998.0,0.17717615741876555 -7999.0,0.1771149735086248 -8000.0,0.17705381072700893 -8001.0,0.17699266906662176 -8002.0,0.1769315485201695 -8003.0,0.1768704490803609 -8004.0,0.17680937073990727 -8005.0,0.17674831349152234 -8006.0,0.17668727732792255 -8007.0,0.17662626224182662 -8008.0,0.17656526822595597 -8009.0,0.17650429527303438 -8010.0,0.17644334337578832 -8011.0,0.17638241252694656 -8012.0,0.1763215027192406 -8013.0,0.17626061394540427 -8014.0,0.17619974619817402 -8015.0,0.17613889947028874 -8016.0,0.17607807375448992 -8017.0,0.1760172690435214 -8018.0,0.17595648533012975 -8019.0,0.1758957226070638 -8020.0,0.17583498086707502 -8021.0,0.17577426010291744 -8022.0,0.17571356030734742 -8023.0,0.175652881473124 -8024.0,0.17559222359300855 -8025.0,0.17553158665976512 -8026.0,0.17547097066616008 -8027.0,0.17541037560496245 -8028.0,0.17534980146894363 -8029.0,0.17528924825087763 -8030.0,0.1752287159435408 -8031.0,0.17516820453971219 -8032.0,0.17510771403217315 -8033.0,0.17504724441370764 -8034.0,0.17498679567710201 -8035.0,0.17492636781514528 -8036.0,0.17486596082062875 -8037.0,0.17480557468634636 -8038.0,0.17474520940509444 -8039.0,0.17468486496967187 -8040.0,0.17462454137288005 -8041.0,0.17456423860752274 -8042.0,0.1745039566664063 -8043.0,0.17444369554233952 -8044.0,0.17438345522813373 -8045.0,0.1743232357166026 -8046.0,0.1742630370005625 -8047.0,0.17420285907283206 -8048.0,0.17414270192623257 -8049.0,0.17408256555358764 -8050.0,0.17402244994772353 -8051.0,0.17396235510146885 -8052.0,0.1739022810076547 -8053.0,0.1738422276591147 -8054.0,0.17378219504868492 -8055.0,0.17372218316920388 -8056.0,0.17366219201351266 -8057.0,0.1736022215744547 -8058.0,0.17354227184487597 -8059.0,0.17348234281762495 -8060.0,0.17342243448555247 -8061.0,0.173362546841512 -8062.0,0.1733026798783593 -8063.0,0.1732428335889527 -8064.0,0.17318300796615296 -8065.0,0.17312320300282338 -8066.0,0.1730634186918296 -8067.0,0.1730036550260398 -8068.0,0.1729439119983246 -8069.0,0.17288418960155716 -8070.0,0.17282448782861293 -8071.0,0.17276480667237 -8072.0,0.17270514612570884 -8073.0,0.17264550618151234 -8074.0,0.1725858868326659 -8075.0,0.17252628807205742 -8076.0,0.17246670989257712 -8077.0,0.1724071522871178 -8078.0,0.1723476152485747 -8079.0,0.17228809876984544 -8080.0,0.17222860284383018 -8081.0,0.1721691274634314 -8082.0,0.17210967262155427 -8083.0,0.1720502383111061 -8084.0,0.17199082452499695 -8085.0,0.17193143125613908 -8086.0,0.17187205849744738 -8087.0,0.17181270624183903 -8088.0,0.17175337448223385 -8089.0,0.1716940632115539 -8090.0,0.17163477242272385 -8091.0,0.17157550210867067 -8092.0,0.1715162522623239 -8093.0,0.1714570228766154 -8094.0,0.17139781394447962 -8095.0,0.17133862545885334 -8096.0,0.17127945741267575 -8097.0,0.1712203097988886 -8098.0,0.17116118261043597 -8099.0,0.17110207584026446 -8100.0,0.171042989481323 -8101.0,0.17098392352656308 -8102.0,0.17092487796893852 -8103.0,0.17086585280140568 -8104.0,0.17080684801692317 -8105.0,0.1707478636084523 -8106.0,0.1706888995689565 -8107.0,0.17062995589140192 -8108.0,0.17057103256875691 -8109.0,0.17051212959399245 -8110.0,0.17045324696008174 -8111.0,0.17039438466000062 -8112.0,0.17033554268672713 -8113.0,0.17027672103324193 -8114.0,0.17021791969252803 -8115.0,0.1701591386575708 -8116.0,0.17010037792135815 -8117.0,0.1700416374768803 -8118.0,0.16998291731713003 -8119.0,0.16992421743510233 -8120.0,0.16986553782379485 -8121.0,0.16980687847620746 -8122.0,0.16974823938534256 -8123.0,0.16968962054420492 -8124.0,0.16963102194580176 -8125.0,0.16957244358314266 -8126.0,0.1695138854492397 -8127.0,0.16945534753710728 -8128.0,0.1693968298397623 -8129.0,0.1693383323502239 -8130.0,0.16927985506151397 -8131.0,0.1692213979666564 -8132.0,0.16916296105867773 -8133.0,0.16910454433060695 -8134.0,0.16904614777547528 -8135.0,0.16898777138631652 -8136.0,0.16892941515616666 -8137.0,0.16887107907806437 -8138.0,0.16881276314505048 -8139.0,0.1687544673501684 -8140.0,0.1686961916864638 -8141.0,0.16863793614698488 -8142.0,0.16857970072478212 -8143.0,0.1685214854129085 -8144.0,0.16846329020441933 -8145.0,0.1684051150923724 -8146.0,0.16834696006982777 -8147.0,0.16828882512984802 -8148.0,0.16823071026549802 -8149.0,0.1681726154698452 -8150.0,0.16811454073595913 -8151.0,0.168056486056912 -8152.0,0.16799845142577835 -8153.0,0.16794043683563498 -8154.0,0.16788244227956126 -8155.0,0.16782446775063875 -8156.0,0.16776651324195166 -8157.0,0.1677085787465863 -8158.0,0.1676506642576316 -8159.0,0.16759276976817872 -8160.0,0.16753489527132132 -8161.0,0.16747704076015535 -8162.0,0.16741920622777925 -8163.0,0.16736139166729372 -8164.0,0.16730359707180195 -8165.0,0.1672458224344094 -8166.0,0.1671880677482241 -8167.0,0.16713033300635619 -8168.0,0.16707261820191843 -8169.0,0.16701492332802584 -8170.0,0.1669572483777958 -8171.0,0.16689959334434823 -8172.0,0.16684195822080516 -8173.0,0.16678434300029124 -8174.0,0.16672674767593335 -8175.0,0.16666917224086084 -8176.0,0.16661161668820526 -8177.0,0.1665540810111008 -8178.0,0.16649656520268374 -8179.0,0.166439069256093 -8180.0,0.1663815931644696 -8181.0,0.16632413692095718 -8182.0,0.16626670051870152 -8183.0,0.16620928395085097 -8184.0,0.16615188721055604 -8185.0,0.16609451029096986 -8186.0,0.16603715318524764 -8187.0,0.16597981588654723 -8188.0,0.1659224983880286 -8189.0,0.16586520068285424 -8190.0,0.16580792276418896 -8191.0,0.16575066462519986 -8192.0,0.16569342625905656 -8193.0,0.16563620765893086 -8194.0,0.16557900881799706 -8195.0,0.16552182972943166 -8196.0,0.16546467038641374 -8197.0,0.1654075307821245 -8198.0,0.16535041090974767 -8199.0,0.1652933107624692 -8200.0,0.1652362303334775 -8201.0,0.1651791696159633 -8202.0,0.16512212860311967 -8203.0,0.165065107288142 -8204.0,0.16500810566422813 -8205.0,0.1649511237245781 -8206.0,0.1648941614623944 -8207.0,0.1648372188708819 -8208.0,0.1647802959432477 -8209.0,0.16472339267270136 -8210.0,0.1646665090524547 -8211.0,0.16460964507572196 -8212.0,0.16455280073571962 -8213.0,0.16449597602566665 -8214.0,0.16443917093878416 -8215.0,0.16438238546829584 -8216.0,0.1643256196074275 -8217.0,0.16426887334940746 -8218.0,0.16421214668746623 -8219.0,0.1641554396148368 -8220.0,0.16409875212475442 -8221.0,0.16404208421045666 -8222.0,0.16398543586518344 -8223.0,0.16392880708217708 -8224.0,0.16387219785468213 -8225.0,0.16381560817594554 -8226.0,0.16375903803921654 -8227.0,0.1637024874377468 -8228.0,0.16364595636479018 -8229.0,0.16358944481360296 -8230.0,0.16353295277744376 -8231.0,0.1634764802495734 -8232.0,0.16342002722325522 -8233.0,0.16336359369175468 -8234.0,0.1633071796483398 -8235.0,0.16325078508628066 -8236.0,0.16319440999884993 -8237.0,0.16313805437932236 -8238.0,0.16308171822097522 -8239.0,0.16302540151708794 -8240.0,0.16296910426094244 -8241.0,0.16291282644582275 -8242.0,0.16285656806501547 -8243.0,0.16280032911180928 -8244.0,0.16274410957949534 -8245.0,0.16268790946136702 -8246.0,0.1626317287507201 -8247.0,0.16257556744085266 -8248.0,0.162519425525065 -8249.0,0.16246330299665981 -8250.0,0.16240719984894209 -8251.0,0.16235111607521918 -8252.0,0.16229505166880062 -8253.0,0.16223900662299842 -8254.0,0.16218298093112674 -8255.0,0.1621269745865022 -8256.0,0.16207098758244354 -8257.0,0.16201501991227205 -8258.0,0.16195907156931108 -8259.0,0.1619031425468865 -8260.0,0.16184723283832628 -8261.0,0.16179134243696092 -8262.0,0.16173547133612298 -8263.0,0.16167961952914756 -8264.0,0.16162378700937183 -8265.0,0.16156797377013546 -8266.0,0.16151217980478033 -8267.0,0.1614564051066506 -8268.0,0.1614006496690928 -8269.0,0.16134491348545563 -8270.0,0.16128919654909027 -8271.0,0.16123349885335 -8272.0,0.16117782039159056 -8273.0,0.16112216115716987 -8274.0,0.16106652114344827 -8275.0,0.16101090034378818 -8276.0,0.16095529875155457 -8277.0,0.1608997163601145 -8278.0,0.16084415316283743 -8279.0,0.16078860915309504 -8280.0,0.1607330843242614 -8281.0,0.16067757866971272 -8282.0,0.16062209218282766 -8283.0,0.16056662485698703 -8284.0,0.160511176685574 -8285.0,0.160455747661974 -8286.0,0.16040033777957477 -8287.0,0.16034494703176633 -8288.0,0.1602895754119409 -8289.0,0.16023422291349312 -8290.0,0.16017888952981982 -8291.0,0.1601235752543201 -8292.0,0.1600682800803954 -8293.0,0.16001300400144944 -8294.0,0.1599577470108881 -8295.0,0.1599025091021197 -8296.0,0.1598472902685547 -8297.0,0.159792090503606 -8298.0,0.15973690980068853 -8299.0,0.15968174815321975 -8300.0,0.15962660555461922 -8301.0,0.15957148199830884 -8302.0,0.15951637747771275 -8303.0,0.15946129198625741 -8304.0,0.15940622551737157 -8305.0,0.1593511780644861 -8306.0,0.15929614962103433 -8307.0,0.15924114018045168 -8308.0,0.15918614973617604 -8309.0,0.15913117828164733 -8310.0,0.15907622581030795 -8311.0,0.15902129231560239 -8312.0,0.15896637779097758 -8313.0,0.15891148222988252 -8314.0,0.15885660562576864 -8315.0,0.1588017479720895 -8316.0,0.15874690926230106 -8317.0,0.15869208948986138 -8318.0,0.15863728864823096 -8319.0,0.15858250673087232 -8320.0,0.15852774373125053 -8321.0,0.15847299964283262 -8322.0,0.15841827445908813 -8323.0,0.1583635681734887 -8324.0,0.15830888077950825 -8325.0,0.15825421227062303 -8326.0,0.15819956264031143 -8327.0,0.1581449318820542 -8328.0,0.1580903199893342 -8329.0,0.15803572695563672 -8330.0,0.15798115277444916 -8331.0,0.15792659743926127 -8332.0,0.15787206094356493 -8333.0,0.15781754328085437 -8334.0,0.157763044444626 -8335.0,0.15770856442837858 -8336.0,0.15765410322561293 -8337.0,0.15759966082983234 -8338.0,0.15754523723454214 -8339.0,0.15749083243325007 -8340.0,0.15743644641946594 -8341.0,0.15738207918670197 -8342.0,0.15732773072847256 -8343.0,0.15727340103829424 -8344.0,0.15721909010968596 -8345.0,0.15716479793616878 -8346.0,0.1571105245112661 -8347.0,0.15705626982850338 -8348.0,0.15700203388140854 -8349.0,0.15694781666351157 -8350.0,0.15689361816834482 -8351.0,0.1568394383894427 -8352.0,0.15678527732034203 -8353.0,0.15673113495458177 -8354.0,0.15667701128570313 -8355.0,0.15662290630724957 -8356.0,0.15656882001276673 -8357.0,0.1565147523958025 -8358.0,0.1564607034499071 -8359.0,0.15640667316863274 -8360.0,0.1563526615455341 -8361.0,0.15629866857416796 -8362.0,0.15624469424809334 -8363.0,0.15619073856087157 -8364.0,0.15613680150606601 -8365.0,0.1560828830772425 -8366.0,0.15602898326796882 -8367.0,0.15597510207181522 -8368.0,0.155921239482354 -8369.0,0.1558673954931598 -8370.0,0.1558135700978094 -8371.0,0.15575976328988184 -8372.0,0.15570597506295833 -8373.0,0.15565220541062236 -8374.0,0.15559845432645952 -8375.0,0.15554472180405784 -8376.0,0.15549100783700728 -8377.0,0.15543731241890027 -8378.0,0.15538363554333126 -8379.0,0.15532997720389702 -8380.0,0.15527633739419652 -8381.0,0.15522271610783087 -8382.0,0.1551691133384035 -8383.0,0.15511552907951992 -8384.0,0.15506196332478803 -8385.0,0.15500841606781768 -8386.0,0.1549548873022212 -8387.0,0.1549013770216129 -8388.0,0.15484788521960952 -8389.0,0.15479441188982973 -8390.0,0.15474095702589466 -8391.0,0.15468752062142746 -8392.0,0.15463410267005365 -8393.0,0.15458070316540073 -8394.0,0.15452732210109868 -8395.0,0.15447395947077938 -8396.0,0.15442061526807715 -8397.0,0.15436728948662837 -8398.0,0.1543139821200717 -8399.0,0.15426069316204793 -8400.0,0.1542074226062001 -8401.0,0.15415417044617344 -8402.0,0.15410093667561528 -8403.0,0.1540477212881753 -8404.0,0.1539945242775052 -8405.0,0.15394134563725909 -8406.0,0.15388818536109303 -8407.0,0.15383504344266546 -8408.0,0.15378191987563689 -8409.0,0.1537288146536701 -8410.0,0.15367572777043 -8411.0,0.15362265921958376 -8412.0,0.15356960899480063 -8413.0,0.15351657708975214 -8414.0,0.1534635634981119 -8415.0,0.1534105682135559 -8416.0,0.15335759122976209 -8417.0,0.1533046325404107 -8418.0,0.15325169213918424 -8419.0,0.1531987700197672 -8420.0,0.15314586617584644 -8421.0,0.15309298060111082 -8422.0,0.1530401132892516 -8423.0,0.15298726423396197 -8424.0,0.15293443342893753 -8425.0,0.15288162086787588 -8426.0,0.1528288265444769 -8427.0,0.1527760504524426 -8428.0,0.15272329258547718 -8429.0,0.15267055293728699 -8430.0,0.15261783150158065 -8431.0,0.15256512827206875 -8432.0,0.1525124432424643 -8433.0,0.15245977640648228 -8434.0,0.15240712775783996 -8435.0,0.15235449729025674 -8436.0,0.15230188499745415 -8437.0,0.152249290873156 -8438.0,0.1521967149110881 -8439.0,0.15214415710497864 -8440.0,0.15209161744855773 -8441.0,0.15203909593555787 -8442.0,0.15198659255971356 -8443.0,0.1519341073147616 -8444.0,0.15188164019444078 -8445.0,0.15182919119249227 -8446.0,0.1517767603026592 -8447.0,0.15172434751868702 -8448.0,0.1516719528343232 -8449.0,0.15161957624331746 -8450.0,0.15156721773942164 -8451.0,0.15151487731638982 -8452.0,0.15146255496797806 -8453.0,0.1514102506879448 -8454.0,0.15135796447005043 -8455.0,0.1513056963080576 -8456.0,0.15125344619573117 -8457.0,0.151201214126838 -8458.0,0.15114900009514726 -8459.0,0.1510968040944301 -8460.0,0.15104462611846 -8461.0,0.15099246616101247 -8462.0,0.15094032421586526 -8463.0,0.1508882002767981 -8464.0,0.15083609433759312 -8465.0,0.15078400639203435 -8466.0,0.15073193643390817 -8467.0,0.15067988445700295 -8468.0,0.1506278504551093 -8469.0,0.1505758344220199 -8470.0,0.1505238363515297 -8471.0,0.15047185623743561 -8472.0,0.15041989407353687 -8473.0,0.1503679498536347 -8474.0,0.15031602357153256 -8475.0,0.15026411522103605 -8476.0,0.15021222479595284 -8477.0,0.15016035229009284 -8478.0,0.15010849769726797 -8479.0,0.1500566610112924 -8480.0,0.15000484222598234 -8481.0,0.14995304133515627 -8482.0,0.14990125833263465 -8483.0,0.1498494932122402 -8484.0,0.14979774596779766 -8485.0,0.149746016593134 -8486.0,0.14969430508207826 -8487.0,0.14964261142846166 -8488.0,0.14959093562611747 -8489.0,0.14953927766888125 -8490.0,0.14948763755059047 -8491.0,0.1494360152650849 -8492.0,0.14938441080620635 -8493.0,0.1493328241677988 -8494.0,0.14928125534370837 -8495.0,0.1492297043277832 -8496.0,0.14917817111387371 -8497.0,0.1491266556958323 -8498.0,0.14907515806751362 -8499.0,0.1490236782227743 -8500.0,0.14897221615547324 -8501.0,0.14892077185947133 -8502.0,0.14886934532863172 -8503.0,0.14881793655681952 -8504.0,0.14876654553790208 -8505.0,0.1487151722657488 -8506.0,0.14866381673423126 -8507.0,0.1486124789372231 -8508.0,0.14856115886860008 -8509.0,0.1485098565222401 -8510.0,0.14845857189202322 -8511.0,0.14840730497183144 -8512.0,0.14835605575554908 -8513.0,0.14830482423706248 -8514.0,0.14825361041026003 -8515.0,0.14820241426903238 -8516.0,0.14815123580727213 -8517.0,0.14810007501887412 -8518.0,0.1480489318977352 -8519.0,0.1479978064377544 -8520.0,0.14794669863283275 -8521.0,0.14789560847687358 -8522.0,0.1478445359637821 -8523.0,0.14779348108746582 -8524.0,0.1477424438418342 -8525.0,0.1476914242207989 -8526.0,0.14764042221827361 -8527.0,0.14758943782817427 -8528.0,0.14753847104441867 -8529.0,0.14748752186092695 -8530.0,0.14743659027162118 -8531.0,0.14738567627042562 -8532.0,0.14733477985126664 -8533.0,0.1472839010080726 -8534.0,0.14723303973477406 -8535.0,0.14718219602530364 -8536.0,0.14713136987359607 -8537.0,0.1470805612735881 -8538.0,0.14702977021921873 -8539.0,0.14697899670442885 -8540.0,0.14692824072316166 -8541.0,0.14687750226936222 -8542.0,0.14682678133697794 -8543.0,0.14677607791995806 -8544.0,0.14672539201225412 -8545.0,0.14667472360781958 -8546.0,0.14662407270061015 -8547.0,0.1465734392845835 -8548.0,0.14652282335369943 -8549.0,0.14647222490191986 -8550.0,0.1464216439232087 -8551.0,0.1463710804115321 -8552.0,0.14632053436085812 -8553.0,0.14627000576515706 -8554.0,0.14621949461840114 -8555.0,0.14616900091456483 -8556.0,0.14611852464762454 -8557.0,0.14606806581155884 -8558.0,0.14601762440034838 -8559.0,0.14596720040797584 -8560.0,0.145916793828426 -8561.0,0.14586640465568576 -8562.0,0.145816032883744 -8563.0,0.14576567850659183 -8564.0,0.14571534151822224 -8565.0,0.14566502191263045 -8566.0,0.14561471968381365 -8567.0,0.14556443482577122 -8568.0,0.1455141673325045 -8569.0,0.1454639171980169 -8570.0,0.14541368441631408 -8571.0,0.14536346898140348 -8572.0,0.1453132708872949 -8573.0,0.14526309012799996 -8574.0,0.14521292669753255 -8575.0,0.14516278058990847 -8576.0,0.1451126517991457 -8577.0,0.14506254031926422 -8578.0,0.1450124461442861 -8579.0,0.14496236926823547 -8580.0,0.14491230968513855 -8581.0,0.14486226738902352 -8582.0,0.14481224237392082 -8583.0,0.1447622346338627 -8584.0,0.1447122441628837 -8585.0,0.14466227095502027 -8586.0,0.144612315004311 -8587.0,0.14456237630479646 -8588.0,0.14451245485051936 -8589.0,0.1444625506355245 -8590.0,0.14441266365385852 -8591.0,0.14436279389957044 -8592.0,0.144312941366711 -8593.0,0.1442631060493333 -8594.0,0.1442132879414922 -8595.0,0.14416348703724494 -8596.0,0.14411370333065046 -8597.0,0.14406393681577007 -8598.0,0.1440141874866669 -8599.0,0.14396445533740623 -8600.0,0.14391474036205537 -8601.0,0.14386504255468377 -8602.0,0.14381536190936273 -8603.0,0.1437656984201658 -8604.0,0.1437160520811684 -8605.0,0.14366642288644815 -8606.0,0.14361681083008462 -8607.0,0.14356721590615948 -8608.0,0.14351763810875642 -8609.0,0.1434680774319611 -8610.0,0.14341853386986142 -8611.0,0.14336900741654704 -8612.0,0.14331949806610997 -8613.0,0.14327000581264396 -8614.0,0.14322053065024506 -8615.0,0.14317107257301118 -8616.0,0.14312163157504237 -8617.0,0.14307220765044062 -8618.0,0.14302280079331012 -8619.0,0.14297341099775687 -8620.0,0.14292403825788913 -8621.0,0.142874682567817 -8622.0,0.1428253439216528 -8623.0,0.14277602231351072 -8624.0,0.1427267177375071 -8625.0,0.1426774301877602 -8626.0,0.1426281596583904 -8627.0,0.14257890614352015 -8628.0,0.14252966963727376 -8629.0,0.14248045013377778 -8630.0,0.14243124762716058 -8631.0,0.14238206211155277 -8632.0,0.14233289358108678 -8633.0,0.14228374202989721 -8634.0,0.1422346074521206 -8635.0,0.14218548984189563 -8636.0,0.14213638919336283 -8637.0,0.14208730550066492 -8638.0,0.14203823875794655 -8639.0,0.14198918895935442 -8640.0,0.1419401560990372 -8641.0,0.14189114017114574 -8642.0,0.14184214116983268 -8643.0,0.14179315908925286 -8644.0,0.14174419392356302 -8645.0,0.14169524566692204 -8646.0,0.14164631431349076 -8647.0,0.14159739985743192 -8648.0,0.1415485022929105 -8649.0,0.1414996216140933 -8650.0,0.14145075781514926 -8651.0,0.14140191089024925 -8652.0,0.1413530808335662 -8653.0,0.14130426763927503 -8654.0,0.14125547130155275 -8655.0,0.14120669181457818 -8656.0,0.14115792917253242 -8657.0,0.14110918336959835 -8658.0,0.141060454399961 -8659.0,0.14101174225780733 -8660.0,0.14096304693732634 -8661.0,0.14091436843270905 -8662.0,0.14086570673814847 -8663.0,0.1408170618478396 -8664.0,0.14076843375597944 -8665.0,0.14071982245676706 -8666.0,0.14067122794440345 -8667.0,0.1406226502130917 -8668.0,0.14057408925703674 -8669.0,0.1405255450704457 -8670.0,0.14047701764752754 -8671.0,0.14042850698249335 -8672.0,0.14038001306955608 -8673.0,0.14033153590293088 -8674.0,0.14028307547683466 -8675.0,0.14023463178548654 -8676.0,0.14018620482310742 -8677.0,0.14013779458392048 -8678.0,0.14008940106215056 -8679.0,0.14004102425202483 -8680.0,0.13999266414777214 -8681.0,0.1399443207436236 -8682.0,0.13989599403381212 -8683.0,0.13984768401257267 -8684.0,0.1397993906741423 -8685.0,0.13975111401275989 -8686.0,0.1397028540226664 -8687.0,0.1396546106981048 -8688.0,0.13960638403331999 -8689.0,0.13955817402255885 -8690.0,0.13950998066007034 -8691.0,0.1394618039401053 -8692.0,0.1394136438569166 -8693.0,0.1393655004047591 -8694.0,0.13931737357788965 -8695.0,0.13926926337056703 -8696.0,0.13922116977705212 -8697.0,0.1391730927916076 -8698.0,0.13912503240849836 -8699.0,0.13907698862199103 -8700.0,0.1390289614263544 -8701.0,0.13898095081585915 -8702.0,0.138932956784778 -8703.0,0.13888497932738558 -8704.0,0.13883701843795854 -8705.0,0.13878907411077548 -8706.0,0.138741146340117 -8707.0,0.1386932351202657 -8708.0,0.13864534044550608 -8709.0,0.13859746231012468 -8710.0,0.13854960070840994 -8711.0,0.1385017556346524 -8712.0,0.13845392708314438 -8713.0,0.1384061150481804 -8714.0,0.13835831952405675 -8715.0,0.13831054050507186 -8716.0,0.13826277798552591 -8717.0,0.13821503195972132 -8718.0,0.1381673024219622 -8719.0,0.1381195893665549 -8720.0,0.13807189278780752 -8721.0,0.13802421268003018 -8722.0,0.1379765490375351 -8723.0,0.13792890185463622 -8724.0,0.1378812711256497 -8725.0,0.13783365684489346 -8726.0,0.13778605900668753 -8727.0,0.13773847760535374 -8728.0,0.13769091263521607 -8729.0,0.1376433640906003 -8730.0,0.1375958319658343 -8731.0,0.13754831625524777 -8732.0,0.13750081695317248 -8733.0,0.13745333405394206 -8734.0,0.13740586755189219 -8735.0,0.13735841744136043 -8736.0,0.13731098371668637 -8737.0,0.1372635663722115 -8738.0,0.13721616540227924 -8739.0,0.137168780801235 -8740.0,0.1371214125634262 -8741.0,0.13707406068320213 -8742.0,0.13702672515491401 -8743.0,0.13697940597291516 -8744.0,0.13693210313156062 -8745.0,0.1368848166252076 -8746.0,0.1368375464482151 -8747.0,0.1367902925949442 -8748.0,0.13674305505975778 -8749.0,0.13669583383702086 -8750.0,0.13664862892110016 -8751.0,0.13660144030636456 -8752.0,0.13655426798718476 -8753.0,0.13650711195793352 -8754.0,0.13645997221298536 -8755.0,0.13641284874671697 -8756.0,0.13636574155350675 -8757.0,0.13631865062773527 -8758.0,0.13627157596378478 -8759.0,0.13622451755603973 -8760.0,0.13617747539888642 -8761.0,0.13613044948671296 -8762.0,0.13608343981390958 -8763.0,0.13603644637486834 -8764.0,0.13598946916398325 -8765.0,0.1359425081756503 -8766.0,0.13589556340426737 -8767.0,0.1358486348442343 -8768.0,0.13580172248995284 -8769.0,0.1357548263358267 -8770.0,0.13570794637626152 -8771.0,0.1356610826056648 -8772.0,0.13561423501844616 -8773.0,0.1355674036090169 -8774.0,0.13552058837179046 -8775.0,0.13547378930118206 -8776.0,0.13542700639160896 -8777.0,0.13538023963749024 -8778.0,0.13533348903324705 -8779.0,0.1352867545733023 -8780.0,0.135240036252081 -8781.0,0.1351933340640099 -8782.0,0.13514664800351783 -8783.0,0.1350999780650355 -8784.0,0.1350533242429955 -8785.0,0.13500668653183232 -8786.0,0.13496006492598245 -8787.0,0.1349134594198843 -8788.0,0.13486687000797823 -8789.0,0.13482029668470633 -8790.0,0.1347737394445128 -8791.0,0.1347271982818437 -8792.0,0.13468067319114707 -8793.0,0.1346341641668727 -8794.0,0.13458767120347248 -8795.0,0.13454119429540007 -8796.0,0.13449473343711119 -8797.0,0.1344482886230634 -8798.0,0.13440185984771608 -8799.0,0.13435544710553068 -8800.0,0.1343090503909705 -8801.0,0.13426266969850076 -8802.0,0.13421630502258852 -8803.0,0.13416995635770287 -8804.0,0.13412362369831474 -8805.0,0.13407730703889703 -8806.0,0.13403100637392437 -8807.0,0.1339847216978735 -8808.0,0.13393845300522306 -8809.0,0.13389220029045348 -8810.0,0.1338459635480471 -8811.0,0.13379974277248824 -8812.0,0.13375353795826314 -8813.0,0.13370734909985993 -8814.0,0.1336611761917685 -8815.0,0.13361501922848082 -8816.0,0.1335688782044907 -8817.0,0.13352275311429387 -8818.0,0.13347664395238798 -8819.0,0.13343055071327242 -8820.0,0.13338447339144868 -8821.0,0.13333841198142007 -8822.0,0.13329236647769188 -8823.0,0.13324633687477103 -8824.0,0.13320032316716665 -8825.0,0.13315432534938962 -8826.0,0.13310834341595276 -8827.0,0.13306237736137072 -8828.0,0.13301642718016007 -8829.0,0.13297049286683932 -8830.0,0.1329245744159289 -8831.0,0.13287867182195093 -8832.0,0.13283278507942967 -8833.0,0.13278691418289115 -8834.0,0.1327410591268633 -8835.0,0.13269521990587596 -8836.0,0.1326493965144608 -8837.0,0.13260358894715146 -8838.0,0.13255779719848343 -8839.0,0.13251202126299413 -8840.0,0.13246626113522272 -8841.0,0.13242051680971043 -8842.0,0.13237478828100024 -8843.0,0.13232907554363718 -8844.0,0.1322833785921679 -8845.0,0.1322376974211412 -8846.0,0.1321920320251076 -8847.0,0.13214638239861962 -8848.0,0.13210074853623147 -8849.0,0.13205513043249945 -8850.0,0.1320095280819816 -8851.0,0.131963941479238 -8852.0,0.13191837061883038 -8853.0,0.1318728154953225 -8854.0,0.13182727610328 -8855.0,0.13178175243727033 -8856.0,0.1317362444918629 -8857.0,0.13169075226162888 -8858.0,0.1316452757411414 -8859.0,0.13159981492497544 -8860.0,0.13155436980770793 -8861.0,0.13150894038391747 -8862.0,0.1314635266481847 -8863.0,0.13141812859509214 -8864.0,0.13137274621922415 -8865.0,0.13132737951516688 -8866.0,0.1312820284775084 -8867.0,0.1312366931008387 -8868.0,0.13119137337974965 -8869.0,0.13114606930883485 -8870.0,0.13110078088268987 -8871.0,0.13105550809591215 -8872.0,0.131010250943101 -8873.0,0.13096500941885758 -8874.0,0.13091978351778485 -8875.0,0.13087457323448767 -8876.0,0.13082937856357288 -8877.0,0.13078419949964903 -8878.0,0.1307390360373266 -8879.0,0.13069388817121785 -8880.0,0.13064875589593705 -8881.0,0.13060363920610027 -8882.0,0.13055853809632534 -8883.0,0.13051345256123206 -8884.0,0.13046838259544202 -8885.0,0.13042332819357882 -8886.0,0.13037828935026766 -8887.0,0.1303332660601358 -8888.0,0.13028825831781224 -8889.0,0.130243266117928 -8890.0,0.1301982894551157 -8891.0,0.13015332832401003 -8892.0,0.1301083827192474 -8893.0,0.1300634526354662 -8894.0,0.13001853806730662 -8895.0,0.12997363900941056 -8896.0,0.12992875545642193 -8897.0,0.1298838874029865 -8898.0,0.12983903484375187 -8899.0,0.12979419777336731 -8900.0,0.12974937618648422 -8901.0,0.12970457007775563 -8902.0,0.1296597794418366 -8903.0,0.1296150042733838 -8904.0,0.12957024456705593 -8905.0,0.12952550031751353 -8906.0,0.12948077151941895 -8907.0,0.12943605816743625 -8908.0,0.12939136025623155 -8909.0,0.1293466777804727 -8910.0,0.1293020107348294 -8911.0,0.12925735911397324 -8912.0,0.12921272291257752 -8913.0,0.12916810212531749 -8914.0,0.12912349674687024 -8915.0,0.12907890677191475 -8916.0,0.1290343321951316 -8917.0,0.12898977301120346 -8918.0,0.12894522921481474 -8919.0,0.12890070080065172 -8920.0,0.1288561877634024 -8921.0,0.12881169009775675 -8922.0,0.12876720779840653 -8923.0,0.12872274086004537 -8924.0,0.12867828927736857 -8925.0,0.12863385304507347 -8926.0,0.1285894321578591 -8927.0,0.12854502661042644 -8928.0,0.12850063639747816 -8929.0,0.12845626151371886 -8930.0,0.12841190195385493 -8931.0,0.12836755771259462 -8932.0,0.12832322878464802 -8933.0,0.12827891516472695 -8934.0,0.12823461684754509 -8935.0,0.12819033382781803 -8936.0,0.1281460661002632 -8937.0,0.1281018136595996 -8938.0,0.12805757650054836 -8939.0,0.1280133546178323 -8940.0,0.1279691480061761 -8941.0,0.12792495666030615 -8942.0,0.12788078057495075 -8943.0,0.1278366197448401 -8944.0,0.1277924741647061 -8945.0,0.12774834382928246 -8946.0,0.12770422873330478 -8947.0,0.12766012887151046 -8948.0,0.12761604423863868 -8949.0,0.12757197482943056 -8950.0,0.1275279206386288 -8951.0,0.12748388166097815 -8952.0,0.12743985789122503 -8953.0,0.12739584932411782 -8954.0,0.12735185595440648 -8955.0,0.12730787777684302 -8956.0,0.1272639147861811 -8957.0,0.12721996697717639 -8958.0,0.12717603434458605 -8959.0,0.1271321168831693 -8960.0,0.12708821458768718 -8961.0,0.12704432745290245 -8962.0,0.12700045547357963 -8963.0,0.1269565986444851 -8964.0,0.12691275696038715 -8965.0,0.1268689304160558 -8966.0,0.12682511900626273 -8967.0,0.12678132272578163 -8968.0,0.12673754156938793 -8969.0,0.12669377553185887 -8970.0,0.1266500246079735 -8971.0,0.12660628879251257 -8972.0,0.12656256808025879 -8973.0,0.12651886246599653 -8974.0,0.12647517194451216 -8975.0,0.12643149651059357 -8976.0,0.12638783615903065 -8977.0,0.12634419088461504 -8978.0,0.12630056068214027 -8979.0,0.1262569455464014 -8980.0,0.12621334547219556 -8981.0,0.1261697604543216 -8982.0,0.12612619048758014 -8983.0,0.12608263556677354 -8984.0,0.12603909568670607 -8985.0,0.12599557084218369 -8986.0,0.12595206102801426 -8987.0,0.1259085662390074 -8988.0,0.12586508646997438 -8989.0,0.12582162171572847 -8990.0,0.12577817197108462 -8991.0,0.12573473723085965 -8992.0,0.12569131748987203 -8993.0,0.1256479127429421 -8994.0,0.12560452298489203 -8995.0,0.12556114821054576 -8996.0,0.12551778841472894 -8997.0,0.12547444359226906 -8998.0,0.12543111373799545 -8999.0,0.1253877988467392 -9000.0,0.12534449891333305 -9001.0,0.12530121393261168 -9002.0,0.12525794389941153 -9003.0,0.12521468880857084 -9004.0,0.1251714486549295 -9005.0,0.1251282234333293 -9006.0,0.12508501313861384 -9007.0,0.12504181776562837 -9008.0,0.12499863730922013 -9009.0,0.12495547176423784 -9010.0,0.12491232112553224 -9011.0,0.12486918538795577 -9012.0,0.12482606454636272 -9013.0,0.12478295859560896 -9014.0,0.12473986753055234 -9015.0,0.12469679134605238 -9016.0,0.12465373003697049 -9017.0,0.12461068359816964 -9018.0,0.12456765202451477 -9019.0,0.12452463531087252 -9020.0,0.12448163345211136 -9021.0,0.12443864644310139 -9022.0,0.12439567427871462 -9023.0,0.12435271695382477 -9024.0,0.12430977446330736 -9025.0,0.12426684680203971 -9026.0,0.12422393396490077 -9027.0,0.12418103594677139 -9028.0,0.12413815274253416 -9029.0,0.12409528434707347 -9030.0,0.12405243075527532 -9031.0,0.12400959196202765 -9032.0,0.12396676796222013 -9033.0,0.12392395875074418 -9034.0,0.12388116432249288 -9035.0,0.12383838467236125 -9036.0,0.12379561979524595 -9037.0,0.1237528696860455 -9038.0,0.12371013433966004 -9039.0,0.12366741375099159 -9040.0,0.12362470791494391 -9041.0,0.12358201682642254 -9042.0,0.12353934048033466 -9043.0,0.12349667887158933 -9044.0,0.12345403199509732 -9045.0,0.1234113998457712 -9046.0,0.12336878241852528 -9047.0,0.12332617970827554 -9048.0,0.12328359170993984 -9049.0,0.12324101841843771 -9050.0,0.12319845982869056 -9051.0,0.12315591593562131 -9052.0,0.12311338673415488 -9053.0,0.12307087221921782 -9054.0,0.12302837238573852 -9055.0,0.12298588722864695 -9056.0,0.122943416742875 -9057.0,0.12290096092335624 -9058.0,0.12285851976502606 -9059.0,0.12281609326282143 -9060.0,0.12277368141168125 -9061.0,0.12273128420654607 -9062.0,0.12268890164235823 -9063.0,0.12264653371406183 -9064.0,0.12260418041660259 -9065.0,0.12256184174492814 -9066.0,0.12251951769398776 -9067.0,0.12247720825873258 -9068.0,0.12243491343411525 -9069.0,0.12239263321509039 -9070.0,0.12235036759661427 -9071.0,0.12230811657364496 -9072.0,0.12226588014114212 -9073.0,0.12222365829406728 -9074.0,0.12218145102738373 -9075.0,0.12213925833605646 -9076.0,0.1220970802150521 -9077.0,0.12205491665933915 -9078.0,0.12201276766388783 -9079.0,0.1219706332236701 -9080.0,0.12192851333365955 -9081.0,0.1218864079888316 -9082.0,0.12184431718416341 -9083.0,0.12180224091463387 -9084.0,0.12176017917522361 -9085.0,0.12171813196091488 -9086.0,0.12167609926669182 -9087.0,0.1216340810875402 -9088.0,0.12159207741844766 -9089.0,0.1215500882544033 -9090.0,0.12150811359039823 -9091.0,0.12146615342142517 -9092.0,0.12142420774247858 -9093.0,0.1213822765485546 -9094.0,0.12134035983465118 -9095.0,0.12129845759576795 -9096.0,0.12125656982690633 -9097.0,0.1212146965230693 -9098.0,0.12117283767926178 -9099.0,0.12113099329049028 -9100.0,0.12108916335176306 -9101.0,0.12104734785809018 -9102.0,0.12100554680448326 -9103.0,0.12096376018595578 -9104.0,0.1209219879975229 -9105.0,0.12088023023420157 -9106.0,0.12083848689101026 -9107.0,0.12079675796296938 -9108.0,0.12075504344510095 -9109.0,0.12071334333242878 -9110.0,0.12067165761997826 -9111.0,0.12062998630277666 -9112.0,0.12058832937585284 -9113.0,0.12054668683423754 -9114.0,0.12050505867296298 -9115.0,0.12046344488706327 -9116.0,0.1204218454715742 -9117.0,0.12038026042153331 -9118.0,0.12033868973197971 -9119.0,0.12029713339795435 -9120.0,0.1202555914144999 -9121.0,0.12021406377666066 -9122.0,0.12017255047948279 -9123.0,0.1201310515180139 -9124.0,0.12008956688730354 -9125.0,0.12004809658240291 -9126.0,0.12000664059836494 -9127.0,0.11996519893024413 -9128.0,0.11992377157309685 -9129.0,0.1198823585219811 -9130.0,0.11984095977195669 -9131.0,0.11979957531808492 -9132.0,0.119758205155429 -9133.0,0.11971684927905375 -9134.0,0.11967550768402577 -9135.0,0.11963418036541322 -9136.0,0.1195928673182861 -9137.0,0.11955156853771605 -9138.0,0.11951028401877645 -9139.0,0.11946901375654238 -9140.0,0.11942775774609052 -9141.0,0.11938651598249937 -9142.0,0.11934528846084909 -9143.0,0.11930407517622159 -9144.0,0.11926287612370032 -9145.0,0.1192216912983706 -9146.0,0.11918052069531934 -9147.0,0.11913936430963529 -9148.0,0.11909822213640865 -9149.0,0.11905709417073154 -9150.0,0.11901598040769767 -9151.0,0.11897488084240254 -9152.0,0.11893379546994316 -9153.0,0.11889272428541839 -9154.0,0.11885166728392874 -9155.0,0.11881062446057646 -9156.0,0.11876959581046534 -9157.0,0.11872858132870101 -9158.0,0.11868758101039074 -9159.0,0.1186465948506435 -9160.0,0.11860562284456999 -9161.0,0.11856466498728244 -9162.0,0.11852372127389492 -9163.0,0.11848279169952317 -9164.0,0.11844187625928461 -9165.0,0.11840097494829824 -9166.0,0.11836008776168487 -9167.0,0.11831921469456698 -9168.0,0.11827835574206876 -9169.0,0.1182375108993159 -9170.0,0.118196680161436 -9171.0,0.11815586352355822 -9172.0,0.11811506098081351 -9173.0,0.1180742725283343 -9174.0,0.11803349816125489 -9175.0,0.11799273787471118 -9176.0,0.11795199166384078 -9177.0,0.11791125952378302 -9178.0,0.11787054144967872 -9179.0,0.1178298374366706 -9180.0,0.11778914747990293 -9181.0,0.11774847157452178 -9182.0,0.1177078097156747 -9183.0,0.11766716189851106 -9184.0,0.1176265281181819 -9185.0,0.11758590836983994 -9186.0,0.11754530264863942 -9187.0,0.11750471094973647 -9188.0,0.11746413326828875 -9189.0,0.11742356959945573 -9190.0,0.11738301993839832 -9191.0,0.11734248428027931 -9192.0,0.1173019626202631 -9193.0,0.1172614549535158 -9194.0,0.11722096127520502 -9195.0,0.11718048158050023 -9196.0,0.1171400158645725 -9197.0,0.11709956412259455 -9198.0,0.11705912634974083 -9199.0,0.11701870254118733 -9200.0,0.11697829269211181 -9201.0,0.11693789679769369 -9202.0,0.11689751485311407 -9203.0,0.11685714685355558 -9204.0,0.11681679279420268 -9205.0,0.11677645267024139 -9206.0,0.11673612647685952 -9207.0,0.11669581420924631 -9208.0,0.11665551586259289 -9209.0,0.11661523143209192 -9210.0,0.11657496091293783 -9211.0,0.11653470430032654 -9212.0,0.11649446158945578 -9213.0,0.1164542327755249 -9214.0,0.11641401785373487 -9215.0,0.11637381681928842 -9216.0,0.11633362966738973 -9217.0,0.11629345639324486 -9218.0,0.11625329699206138 -9219.0,0.11621315145904865 -9220.0,0.11617301978941749 -9221.0,0.11613290197838053 -9222.0,0.11609279802115202 -9223.0,0.11605270791294789 -9224.0,0.11601263164898558 -9225.0,0.11597256922448435 -9226.0,0.11593252063466503 -9227.0,0.11589248587475016 -9228.0,0.11585246493996382 -9229.0,0.1158124578255318 -9230.0,0.11577246452668159 -9231.0,0.11573248503864231 -9232.0,0.1156925193566446 -9233.0,0.1156525674759209 -9234.0,0.11561262939170523 -9235.0,0.11557270509923327 -9236.0,0.11553279459374242 -9237.0,0.11549289787047153 -9238.0,0.11545301492466124 -9239.0,0.11541314575155383 -9240.0,0.11537329034639325 -9241.0,0.11533344870442493 -9242.0,0.1152936208208961 -9243.0,0.1152538066910556 -9244.0,0.11521400631015394 -9245.0,0.1151742196734431 -9246.0,0.11513444677617692 -9247.0,0.11509468761361073 -9248.0,0.11505494218100165 -9249.0,0.1150152104736082 -9250.0,0.11497549248669077 -9251.0,0.11493578821551124 -9252.0,0.11489609765533323 -9253.0,0.11485642080142197 -9254.0,0.11481675764904421 -9255.0,0.11477710819346847 -9256.0,0.11473747242996486 -9257.0,0.11469785035380517 -9258.0,0.11465824196026267 -9259.0,0.11461864724461243 -9260.0,0.1145790662021311 -9261.0,0.11453949882809697 -9262.0,0.11449994511778985 -9263.0,0.11446040506649133 -9264.0,0.11442087866948457 -9265.0,0.1143813659220544 -9266.0,0.11434186681948715 -9267.0,0.11430238135707091 -9268.0,0.11426290953009534 -9269.0,0.1142234513338518 -9270.0,0.1141840067636331 -9271.0,0.11414457581473388 -9272.0,0.11410515848245027 -9273.0,0.1140657547620801 -9274.0,0.11402636464892282 -9275.0,0.1139869881382794 -9276.0,0.11394762522545254 -9277.0,0.11390827590574655 -9278.0,0.11386894017446739 -9279.0,0.11382961802692247 -9280.0,0.11379030945842102 -9281.0,0.1137510144642738 -9282.0,0.11371173303979326 -9283.0,0.11367246518029331 -9284.0,0.11363321088108963 -9285.0,0.11359397013749949 -9286.0,0.11355474294484177 -9287.0,0.11351552929843688 -9288.0,0.11347632919360694 -9289.0,0.1134371426256757 -9290.0,0.11339796958996845 -9291.0,0.1133588100818122 -9292.0,0.11331966409653542 -9293.0,0.1132805316294683 -9294.0,0.11324141267594265 -9295.0,0.1132023072312919 -9296.0,0.11316321529085095 -9297.0,0.1131241368499565 -9298.0,0.11308507190394672 -9299.0,0.11304602044816153 -9300.0,0.11300698247794229 -9301.0,0.11296795798863209 -9302.0,0.11292894697557558 -9303.0,0.11288994943411909 -9304.0,0.11285096535961041 -9305.0,0.11281199474739906 -9306.0,0.11277303759283613 -9307.0,0.11273409389127437 -9308.0,0.11269516363806799 -9309.0,0.11265624682857292 -9310.0,0.1126173434581467 -9311.0,0.1125784535221484 -9312.0,0.11253957701593884 -9313.0,0.11250071393488018 -9314.0,0.11246186427433642 -9315.0,0.11242302802967308 -9316.0,0.1123842051962573 -9317.0,0.11234539576945775 -9318.0,0.11230659974464474 -9319.0,0.11226781711719024 -9320.0,0.11222904788246776 -9321.0,0.11219029203585237 -9322.0,0.11215154957272079 -9323.0,0.11211282048845135 -9324.0,0.11207410477842399 -9325.0,0.1120354024380201 -9326.0,0.11199671346262284 -9327.0,0.1119580378476169 -9328.0,0.11191937558838855 -9329.0,0.11188072668032571 -9330.0,0.11184209111881775 -9331.0,0.1118034688992558 -9332.0,0.11176486001703248 -9333.0,0.1117262644675421 -9334.0,0.11168768224618038 -9335.0,0.1116491133483448 -9336.0,0.11161055776943439 -9337.0,0.11157201550484977 -9338.0,0.11153348654999305 -9339.0,0.11149497090026804 -9340.0,0.11145646855108012 -9341.0,0.11141797949783627 -9342.0,0.11137950373594495 -9343.0,0.11134104126081631 -9344.0,0.11130259206786208 -9345.0,0.11126415615249559 -9346.0,0.11122573351013161 -9347.0,0.11118732413618665 -9348.0,0.11114892802607876 -9349.0,0.11111054517522756 -9350.0,0.11107217557905431 -9351.0,0.1110338192329817 -9352.0,0.11099547613243413 -9353.0,0.11095714627283755 -9354.0,0.11091882964961955 -9355.0,0.11088052625820914 -9356.0,0.11084223609403704 -9357.0,0.11080395915253552 -9358.0,0.11076569542913847 -9359.0,0.11072744491928121 -9360.0,0.11068920761840077 -9361.0,0.11065098352193574 -9362.0,0.11061277262532629 -9363.0,0.11057457492401405 -9364.0,0.11053639041344238 -9365.0,0.1104982190890561 -9366.0,0.1104600609463017 -9367.0,0.11042191598062721 -9368.0,0.11038378418748213 -9369.0,0.11034566556231766 -9370.0,0.11030756010058652 -9371.0,0.11026946779774306 -9372.0,0.11023138864924306 -9373.0,0.11019332265054398 -9374.0,0.11015526979710484 -9375.0,0.11011723008438626 -9376.0,0.11007920350785028 -9377.0,0.11004119006296065 -9378.0,0.11000318974518265 -9379.0,0.10996520254998317 -9380.0,0.10992722847283051 -9381.0,0.10988926750919469 -9382.0,0.10985131965454724 -9383.0,0.10981338490436132 -9384.0,0.10977546325411149 -9385.0,0.109737554699274 -9386.0,0.10969965923532667 -9387.0,0.10966177685774882 -9388.0,0.10962390756202142 -9389.0,0.10958605134362684 -9390.0,0.10954820819804917 -9391.0,0.10951037812077397 -9392.0,0.10947256110728845 -9393.0,0.10943475715308124 -9394.0,0.1093969662536426 -9395.0,0.10935918840446442 -9396.0,0.10932142360104008 -9397.0,0.10928367183886442 -9398.0,0.10924593311343399 -9399.0,0.10920820742024684 -9400.0,0.1091704947548026 -9401.0,0.10913279511260235 -9402.0,0.10909510848914883 -9403.0,0.1090574348799463 -9404.0,0.10901977428050058 -9405.0,0.10898212668631908 -9406.0,0.10894449209291063 -9407.0,0.10890687049578572 -9408.0,0.1088692618904564 -9409.0,0.10883166627243626 -9410.0,0.10879408363724033 -9411.0,0.10875651398038533 -9412.0,0.10871895729738947 -9413.0,0.10868141358377255 -9414.0,0.1086438828350558 -9415.0,0.1086063650467621 -9416.0,0.10856886021441589 -9417.0,0.10853136833354313 -9418.0,0.10849388939967121 -9419.0,0.10845642340832924 -9420.0,0.1084189703550478 -9421.0,0.10838153023535906 -9422.0,0.10834410304479657 -9423.0,0.10830668877889559 -9424.0,0.10826928743319289 -9425.0,0.10823189900322676 -9426.0,0.10819452348453708 -9427.0,0.10815716087266511 -9428.0,0.10811981116315382 -9429.0,0.10808247435154768 -9430.0,0.1080451504333927 -9431.0,0.10800783940423633 -9432.0,0.10797054125962768 -9433.0,0.10793325599511736 -9434.0,0.10789598360625755 -9435.0,0.10785872408860182 -9436.0,0.10782147743770545 -9437.0,0.10778424364912517 -9438.0,0.10774702271841932 -9439.0,0.10770981464114762 -9440.0,0.10767261941287146 -9441.0,0.10763543702915371 -9442.0,0.10759826748555879 -9443.0,0.1075611107776527 -9444.0,0.10752396690100281 -9445.0,0.10748683585117817 -9446.0,0.10744971762374934 -9447.0,0.10741261221428842 -9448.0,0.1073755196183689 -9449.0,0.10733843983156598 -9450.0,0.10730137284945626 -9451.0,0.10726431866761803 -9452.0,0.10722727728163085 -9453.0,0.10719024868707602 -9454.0,0.1071532328795363 -9455.0,0.10711622985459604 -9456.0,0.10707923960784092 -9457.0,0.10704226213485833 -9458.0,0.10700529743123714 -9459.0,0.10696834549256777 -9460.0,0.10693140631444203 -9461.0,0.10689447989245339 -9462.0,0.10685756622219679 -9463.0,0.10682066529926872 -9464.0,0.10678377711926719 -9465.0,0.10674690167779163 -9466.0,0.10671003897044312 -9467.0,0.1066731889928242 -9468.0,0.10663635174053898 -9469.0,0.10659952720919297 -9470.0,0.10656271539439328 -9471.0,0.10652591629174857 -9472.0,0.106489129896869 -9473.0,0.10645235620536614 -9474.0,0.10641559521285318 -9475.0,0.10637884691494483 -9476.0,0.10634211130725732 -9477.0,0.10630538838540826 -9478.0,0.10626867814501693 -9479.0,0.10623198058170408 -9480.0,0.10619529569109191 -9481.0,0.10615862346880428 -9482.0,0.10612196391046634 -9483.0,0.10608531701170493 -9484.0,0.10604868276814833 -9485.0,0.10601206117542639 -9486.0,0.10597545222917033 -9487.0,0.10593885592501304 -9488.0,0.10590227225858881 -9489.0,0.10586570122553354 -9490.0,0.10582914282148448 -9491.0,0.10579259704208052 -9492.0,0.10575606388296203 -9493.0,0.1057195433397709 -9494.0,0.10568303540815041 -9495.0,0.10564654008374547 -9496.0,0.10561005736220246 -9497.0,0.10557358723916929 -9498.0,0.10553712971029527 -9499.0,0.10550068477123133 -9500.0,0.10546425241762983 -9501.0,0.10542783264514467 -9502.0,0.1053914254494313 -9503.0,0.10535503082614647 -9504.0,0.10531864877094865 -9505.0,0.10528227927949771 -9506.0,0.1052459223474551 -9507.0,0.10520957797048358 -9508.0,0.10517324614424761 -9509.0,0.10513692686441305 -9510.0,0.10510062012664731 -9511.0,0.1050643259266192 -9512.0,0.1050280442599991 -9513.0,0.1049917751224589 -9514.0,0.10495551850967198 -9515.0,0.10491927441731311 -9516.0,0.10488304284105866 -9517.0,0.10484682377658651 -9518.0,0.10481061721957595 -9519.0,0.10477442316570787 -9520.0,0.10473824161066447 -9521.0,0.10470207255012962 -9522.0,0.10466591597978861 -9523.0,0.10462977189532827 -9524.0,0.10459364029243677 -9525.0,0.10455752116680395 -9526.0,0.10452141451412102 -9527.0,0.1044853203300808 -9528.0,0.10444923861037742 -9529.0,0.10441316935070662 -9530.0,0.10437711254676561 -9531.0,0.10434106819425314 -9532.0,0.10430503628886925 -9533.0,0.10426901682631569 -9534.0,0.10423300980229556 -9535.0,0.10419701521251357 -9536.0,0.1041610330526757 -9537.0,0.1041250633184896 -9538.0,0.10408910600566434 -9539.0,0.1040531611099105 -9540.0,0.10401722862694013 -9541.0,0.10398130855246665 -9542.0,0.10394540088220514 -9543.0,0.10390950561187204 -9544.0,0.10387362273718538 -9545.0,0.10383775225386448 -9546.0,0.10380189415763032 -9547.0,0.10376604844420527 -9548.0,0.10373021510931325 -9549.0,0.10369439414867952 -9550.0,0.10365858555803094 -9551.0,0.10362278933309581 -9552.0,0.10358700546960395 -9553.0,0.1035512339632865 -9554.0,0.10351547480987625 -9555.0,0.10347972800510737 -9556.0,0.10344399354471553 -9557.0,0.10340827142443793 -9558.0,0.10337256164001307 -9559.0,0.1033368641871811 -9560.0,0.10330117906168358 -9561.0,0.10326550625926355 -9562.0,0.10322984577566542 -9563.0,0.10319419760663522 -9564.0,0.10315856174792037 -9565.0,0.10312293819526981 -9566.0,0.10308732694443384 -9567.0,0.10305172799116433 -9568.0,0.10301614133121458 -9569.0,0.10298056696033941 -9570.0,0.10294500487429498 -9571.0,0.10290945506883901 -9572.0,0.10287391753973069 -9573.0,0.10283839228273069 -9574.0,0.10280287929360102 -9575.0,0.10276737856810528 -9576.0,0.10273189010200848 -9577.0,0.10269641389107713 -9578.0,0.1026609499310792 -9579.0,0.10262549821778402 -9580.0,0.1025900587469625 -9581.0,0.10255463151438698 -9582.0,0.10251921651583128 -9583.0,0.10248381374707057 -9584.0,0.10244842320388158 -9585.0,0.1024130448820425 -9586.0,0.102377678777333 -9587.0,0.10234232488553406 -9588.0,0.10230698320242826 -9589.0,0.10227165372379961 -9590.0,0.1022363364454336 -9591.0,0.10220103136311705 -9592.0,0.10216573847263834 -9593.0,0.10213045776978733 -9594.0,0.10209518925035524 -9595.0,0.10205993291013488 -9596.0,0.10202468874492031 -9597.0,0.10198945675050722 -9598.0,0.10195423692269268 -9599.0,0.10191902925727526 -9600.0,0.10188383375005487 -9601.0,0.10184865039683297 -9602.0,0.10181347919341245 -9603.0,0.10177832013559769 -9604.0,0.10174317321919439 -9605.0,0.1017080384400098 -9606.0,0.10167291579385261 -9607.0,0.10163780527653299 -9608.0,0.10160270688386241 -9609.0,0.10156762061165396 -9610.0,0.10153254645572207 -9611.0,0.10149748441188272 -9612.0,0.10146243447595317 -9613.0,0.10142739664375225 -9614.0,0.1013923709111002 -9615.0,0.10135735727381873 -9616.0,0.10132235572773099 -9617.0,0.10128736626866147 -9618.0,0.10125238889243622 -9619.0,0.10121742359488271 -9620.0,0.10118247037182987 -9621.0,0.10114752921910794 -9622.0,0.10111260013254875 -9623.0,0.10107768310798551 -9624.0,0.10104277814125291 -9625.0,0.10100788522818697 -9626.0,0.10097300436462527 -9627.0,0.10093813554640674 -9628.0,0.10090327876937186 -9629.0,0.10086843402936238 -9630.0,0.1008336013222216 -9631.0,0.10079878064379426 -9632.0,0.1007639719899265 -9633.0,0.10072917535646593 -9634.0,0.10069439073926148 -9635.0,0.10065961813416366 -9636.0,0.10062485753702433 -9637.0,0.10059010894369687 -9638.0,0.10055537235003592 -9639.0,0.10052064775189772 -9640.0,0.10048593514513986 -9641.0,0.10045123452562142 -9642.0,0.1004165458892028 -9643.0,0.10038186923174595 -9644.0,0.10034720454911417 -9645.0,0.10031255183717228 -9646.0,0.10027791109178635 -9647.0,0.10024328230882407 -9648.0,0.10020866548415445 -9649.0,0.10017406061364797 -9650.0,0.10013946769317658 -9651.0,0.10010488671861348 -9652.0,0.10007031768583347 -9653.0,0.1000357605907127 -9654.0,0.10000121542912883 -9655.0,0.09996668219696078 -9656.0,0.09993216089008902 -9657.0,0.09989765150439543 -9658.0,0.0998631540357633 -9659.0,0.09982866848007729 -9660.0,0.09979419483322353 -9661.0,0.09975973309108958 -9662.0,0.09972528324956446 -9663.0,0.09969084530453846 -9664.0,0.09965641925190342 -9665.0,0.09962200508755256 -9666.0,0.09958760280738059 -9667.0,0.09955321240728346 -9668.0,0.0995188338831587 -9669.0,0.09948446723090519 -9670.0,0.09945011244642324 -9671.0,0.09941576952561464 -9672.0,0.09938143846438242 -9673.0,0.09934711925863118 -9674.0,0.09931281190426691 -9675.0,0.09927851639719702 -9676.0,0.09924423273333022 -9677.0,0.09920996090857676 -9678.0,0.09917570091884825 -9679.0,0.09914145276005779 -9680.0,0.09910721642811973 -9681.0,0.09907299191894997 -9682.0,0.09903877922846577 -9683.0,0.09900457835258585 -9684.0,0.0989703892872302 -9685.0,0.09893621202832038 -9686.0,0.09890204657177927 -9687.0,0.0988678929135312 -9688.0,0.09883375104950191 -9689.0,0.09879962097561845 -9690.0,0.0987655026878094 -9691.0,0.09873139618200467 -9692.0,0.09869730145413567 -9693.0,0.09866321850013507 -9694.0,0.09862914731593704 -9695.0,0.09859508789747715 -9696.0,0.0985610402406924 -9697.0,0.09852700434152106 -9698.0,0.09849298019590295 -9699.0,0.09845896779977924 -9700.0,0.09842496714909253 -9701.0,0.09839097823978671 -9702.0,0.09835700106780719 -9703.0,0.09832303562910075 -9704.0,0.09828908191961559 -9705.0,0.0982551399353012 -9706.0,0.09822120967210861 -9707.0,0.09818729112599016 -9708.0,0.09815338429289962 -9709.0,0.0981194891687922 -9710.0,0.09808560574962438 -9711.0,0.09805173403135416 -9712.0,0.09801787400994087 -9713.0,0.09798402568134532 -9714.0,0.09795018904152955 -9715.0,0.09791636408645715 -9716.0,0.09788255081209304 -9717.0,0.09784874921440359 -9718.0,0.09781495928935645 -9719.0,0.09778118103292073 -9720.0,0.09774741444106697 -9721.0,0.09771365950976707 -9722.0,0.09767991623499425 -9723.0,0.09764618461272322 -9724.0,0.09761246463893004 -9725.0,0.09757875630959219 -9726.0,0.0975450596206885 -9727.0,0.09751137456819917 -9728.0,0.09747770114810583 -9729.0,0.0974440393563915 -9730.0,0.0974103891890406 -9731.0,0.09737675064203885 -9732.0,0.09734312371137344 -9733.0,0.09730950839303291 -9734.0,0.09727590468300729 -9735.0,0.09724231257728777 -9736.0,0.09720873207186712 -9737.0,0.09717516316273941 -9738.0,0.09714160584590019 -9739.0,0.09710806011734621 -9740.0,0.09707452597307575 -9741.0,0.09704100340908843 -9742.0,0.09700749242138532 -9743.0,0.09697399300596868 -9744.0,0.09694050515884235 -9745.0,0.09690702887601146 -9746.0,0.09687356415348253 -9747.0,0.0968401109872635 -9748.0,0.09680666937336359 -9749.0,0.09677323930779348 -9750.0,0.09673982078656522 -9751.0,0.09670641380569225 -9752.0,0.0966730183611893 -9753.0,0.09663963444907256 -9754.0,0.09660626206535958 -9755.0,0.0965729012060693 -9756.0,0.09653955186722198 -9757.0,0.09650621404483926 -9758.0,0.09647288773494424 -9759.0,0.09643957293356135 -9760.0,0.0964062696367163 -9761.0,0.09637297784043629 -9762.0,0.09633969754074984 -9763.0,0.09630642873368686 -9764.0,0.09627317141527868 -9765.0,0.09623992558155785 -9766.0,0.0962066912285584 -9767.0,0.09617346835231577 -9768.0,0.0961402569488667 -9769.0,0.09610705701424926 -9770.0,0.09607386854450298 -9771.0,0.0960406915356687 -9772.0,0.09600752598378871 -9773.0,0.0959743718849065 -9774.0,0.09594122923506708 -9775.0,0.09590809803031676 -9776.0,0.09587497826670328 -9777.0,0.09584186994027562 -9778.0,0.09580877304708421 -9779.0,0.09577568758318086 -9780.0,0.09574261354461876 -9781.0,0.09570955092745231 -9782.0,0.09567649972773744 -9783.0,0.09564345994153138 -9784.0,0.09561043156489273 -9785.0,0.09557741459388147 -9786.0,0.09554440902455885 -9787.0,0.09551141485298757 -9788.0,0.09547843207523168 -9789.0,0.09544546068735663 -9790.0,0.09541250068542906 -9791.0,0.09537955206551714 -9792.0,0.09534661482369033 -9793.0,0.09531368895601952 -9794.0,0.09528077445857679 -9795.0,0.09524787132743573 -9796.0,0.09521497955867124 -9797.0,0.09518209914835961 -9798.0,0.09514923009257835 -9799.0,0.09511637238740649 -9800.0,0.09508352602892432 -9801.0,0.09505069101321353 -9802.0,0.09501786733635717 -9803.0,0.09498505499443953 -9804.0,0.0949522539835464 -9805.0,0.09491946429976482 -9806.0,0.0948866859391833 -9807.0,0.0948539188978915 -9808.0,0.09482116317198064 -9809.0,0.09478841875754317 -9810.0,0.09475568565067295 -9811.0,0.0947229638474651 -9812.0,0.09469025334401618 -9813.0,0.09465755413642407 -9814.0,0.09462486622078803 -9815.0,0.09459218959320854 -9816.0,0.09455952424978757 -9817.0,0.09452687018662839 -9818.0,0.09449422739983562 -9819.0,0.09446159588551516 -9820.0,0.09442897563977434 -9821.0,0.0943963666587218 -9822.0,0.09436376893846751 -9823.0,0.09433118247512289 -9824.0,0.09429860726480047 -9825.0,0.09426604330361435 -9826.0,0.09423349058767987 -9827.0,0.09420094911311376 -9828.0,0.094168418876034 -9829.0,0.09413589987255999 -9830.0,0.09410339209881247 -9831.0,0.09407089555091352 -9832.0,0.09403841022498648 -9833.0,0.0940059361171561 -9834.0,0.09397347322354847 -9835.0,0.09394102154029106 -9836.0,0.0939085810635125 -9837.0,0.09387615178934297 -9838.0,0.09384373371391384 -9839.0,0.09381132683335792 -9840.0,0.09377893114380932 -9841.0,0.09374654664140337 -9842.0,0.09371417332227693 -9843.0,0.09368181118256805 -9844.0,0.0936494602184162 -9845.0,0.09361712042596211 -9846.0,0.09358479180134789 -9847.0,0.09355247434071698 -9848.0,0.09352016804021417 -9849.0,0.09348787289598548 -9850.0,0.09345558890417836 -9851.0,0.0934233160609416 -9852.0,0.09339105436242531 -9853.0,0.09335880380478082 -9854.0,0.0933265643841609 -9855.0,0.09329433609671964 -9856.0,0.09326211893861248 -9857.0,0.09322991290599607 -9858.0,0.09319771799502849 -9859.0,0.09316553420186914 -9860.0,0.09313336152267872 -9861.0,0.09310119995361929 -9862.0,0.09306904949085416 -9863.0,0.09303691013054803 -9864.0,0.09300478186886692 -9865.0,0.0929726647019782 -9866.0,0.09294055862605043 -9867.0,0.09290846363725365 -9868.0,0.09287637973175916 -9869.0,0.09284430690573962 -9870.0,0.0928122451553689 -9871.0,0.0927801944768223 -9872.0,0.0927481548662764 -9873.0,0.09271612631990916 -9874.0,0.09268410883389974 -9875.0,0.0926521024044287 -9876.0,0.09262010702767792 -9877.0,0.0925881226998306 -9878.0,0.09255614941707126 -9879.0,0.09252418717558564 -9880.0,0.09249223597156093 -9881.0,0.09246029580118559 -9882.0,0.09242836666064941 -9883.0,0.09239644854614341 -9884.0,0.09236454145386003 -9885.0,0.09233264537999299 -9886.0,0.09230076032073735 -9887.0,0.09226888627228938 -9888.0,0.09223702323084679 -9889.0,0.09220517119260853 -9890.0,0.09217333015377493 -9891.0,0.09214150011054752 -9892.0,0.09210968105912924 -9893.0,0.0920778729957243 -9894.0,0.09204607591653828 -9895.0,0.09201428981777796 -9896.0,0.09198251469565148 -9897.0,0.09195075054636834 -9898.0,0.0919189973661393 -9899.0,0.09188725515117648 -9900.0,0.09185552389769316 -9901.0,0.0918238036019041 -9902.0,0.0917920942600253 -9903.0,0.09176039586827409 -9904.0,0.09172870842286902 -9905.0,0.09169703192003004 -9906.0,0.09166536635597837 -9907.0,0.09163371172693659 -9908.0,0.09160206802912843 -9909.0,0.0915704352587791 -9910.0,0.09153881341211503 -9911.0,0.091507202485364 -9912.0,0.09147560247475496 -9913.0,0.09144401337651833 -9914.0,0.09141243518688574 -9915.0,0.09138086790209017 -9916.0,0.09134931151836588 -9917.0,0.09131776603194836 -9918.0,0.09128623143907448 -9919.0,0.09125470773598243 -9920.0,0.09122319491891169 -9921.0,0.09119169298410292 -9922.0,0.09116020192779821 -9923.0,0.09112872174624091 -9924.0,0.09109725243567571 -9925.0,0.09106579399234847 -9926.0,0.09103434641250645 -9927.0,0.0910029096923982 -9928.0,0.0909714838282736 -9929.0,0.09094006881638365 -9930.0,0.09090866465298086 -9931.0,0.09087727133431892 -9932.0,0.09084588885665285 -9933.0,0.09081451721623891 -9934.0,0.09078315640933471 -9935.0,0.09075180643219914 -9936.0,0.09072046728109238 -9937.0,0.09068913895227593 -9938.0,0.09065782144201248 -9939.0,0.0906265147465661 -9940.0,0.09059521886220215 -9941.0,0.09056393378518729 -9942.0,0.09053265951178936 -9943.0,0.0905013960382776 -9944.0,0.09047014336092252 -9945.0,0.09043890147599593 -9946.0,0.09040767037977084 -9947.0,0.09037645006852162 -9948.0,0.09034524053852393 -9949.0,0.09031404178605473 -9950.0,0.09028285380739218 -9951.0,0.0902516765988158 -9952.0,0.0902205101566064 -9953.0,0.09018935447704601 -9954.0,0.09015820955641807 -9955.0,0.0901270753910071 -9956.0,0.09009595197709909 -9957.0,0.09006483931098122 -9958.0,0.09003373738894203 -9959.0,0.09000264620727122 -9960.0,0.08997156576225986 -9961.0,0.08994049605020027 -9962.0,0.08990943706738612 -9963.0,0.08987838881011222 -9964.0,0.08984735127467476 -9965.0,0.0898163244573712 -9966.0,0.08978530835450031 -9967.0,0.08975430296236202 -9968.0,0.08972330827725765 -9969.0,0.08969232429548973 -9970.0,0.08966135101336219 -9971.0,0.08963038842718002 -9972.0,0.08959943653324967 -9973.0,0.0895684953278788 -9974.0,0.08953756480737635 -9975.0,0.08950664496805256 -9976.0,0.08947573580621887 -9977.0,0.08944483731818806 -9978.0,0.08941394950027416 -9979.0,0.08938307234879254 -9980.0,0.0893522058600597 -9981.0,0.0893213500303935 -9982.0,0.0892905048561131 -9983.0,0.08925967033353892 -9984.0,0.08922884645899255 -9985.0,0.08919803322879696 -9986.0,0.08916723063927638 -9987.0,0.08913643868675629 -9988.0,0.08910565736756337 -9989.0,0.0890748866780257 -9990.0,0.08904412661447252 -9991.0,0.08901337717323439 -9992.0,0.08898263835064317 -9993.0,0.08895191014303187 -9994.0,0.08892119254673488 -9995.0,0.08889048555808779 -9996.0,0.08885978917342754 -9997.0,0.08882910338909221 -9998.0,0.08879842820142123 -9999.0,0.08876776360675526 -10000.0,0.0887371096014363 -10001.0,0.08870646618180746 -10002.0,0.08867583334421325 -10003.0,0.0886452110849994 -10004.0,0.08861459940051292 -10005.0,0.088583998287102 -10006.0,0.08855340774111618 -10007.0,0.08852282775890623 -10008.0,0.08849225833682421 -10009.0,0.08846169947122336 -10010.0,0.08843115115845825 -10011.0,0.0884006133948847 -10012.0,0.08837008617685975 -10013.0,0.08833956950074179 -10014.0,0.08830906336289032 -10015.0,0.08827856775966623 -10016.0,0.0882480826874316 -10017.0,0.08821760814254984 -10018.0,0.08818714412138545 -10019.0,0.08815669062030436 -10020.0,0.08812624763567369 -10021.0,0.08809581516386182 -10022.0,0.08806539320123835 -10023.0,0.08803498174417416 -10024.0,0.0880045807890414 -10025.0,0.0879741903322135 -10026.0,0.08794381037006503 -10027.0,0.08791344089897189 -10028.0,0.08788308191531126 -10029.0,0.08785273341546151 -10030.0,0.08782239539580233 -10031.0,0.08779206785271455 -10032.0,0.08776175078258035 -10033.0,0.0877314441817831 -10034.0,0.0877011480467075 -10035.0,0.08767086237373937 -10036.0,0.0876405871592659 -10037.0,0.08761032239967545 -10038.0,0.08758006809135771 -10039.0,0.08754982423070347 -10040.0,0.0875195908141049 -10041.0,0.0874893678379554 -10042.0,0.0874591552986496 -10043.0,0.08742895319258329 -10044.0,0.08739876151615363 -10045.0,0.08736858026575896 -10046.0,0.08733840943779893 -10047.0,0.08730824902867429 -10048.0,0.08727809903478716 -10049.0,0.08724795945254087 -10050.0,0.08721783027834 -10051.0,0.08718771150859038 -10052.0,0.08715760313969899 -10053.0,0.08712750516807416 -10054.0,0.08709741759012543 -10055.0,0.08706734040226359 -10056.0,0.08703727360090059 -10057.0,0.0870072171824497 -10058.0,0.08697717114332544 -10059.0,0.08694713547994355 -10060.0,0.08691711018872093 -10061.0,0.08688709526607581 -10062.0,0.08685709070842763 -10063.0,0.08682709651219711 -10064.0,0.08679711267380608 -10065.0,0.08676713918967772 -10066.0,0.08673717605623643 -10067.0,0.0867072232699078 -10068.0,0.08667728082711874 -10069.0,0.08664734872429726 -10070.0,0.0866174269578727 -10071.0,0.08658751552427563 -10072.0,0.08655761441993784 -10073.0,0.08652772364129231 -10074.0,0.0864978431847733 -10075.0,0.0864679730468163 -10076.0,0.08643811322385807 -10077.0,0.08640826371233644 -10078.0,0.08637842450869065 -10079.0,0.08634859560936109 -10080.0,0.08631877701078942 -10081.0,0.08628896870941845 -10082.0,0.08625917070169227 -10083.0,0.0862293829840562 -10084.0,0.08619960555295686 -10085.0,0.0861698384048419 -10086.0,0.08614008153616036 -10087.0,0.08611033494336248 -10088.0,0.08608059862289971 -10089.0,0.08605087257122473 -10090.0,0.08602115678479141 -10091.0,0.08599145126005488 -10092.0,0.08596175599347147 -10093.0,0.08593207098149884 -10094.0,0.08590239622059567 -10095.0,0.08587273170722202 -10096.0,0.08584307743783914 -10097.0,0.08581343340890954 -10098.0,0.0857837996168968 -10099.0,0.08575417605826588 -10100.0,0.08572456272948291 -10101.0,0.08569495962701525 -10102.0,0.08566536674733141 -10103.0,0.08563578408690121 -10104.0,0.08560621164219566 -10105.0,0.08557664940968697 -10106.0,0.08554709738584863 -10107.0,0.0855175555671552 -10108.0,0.08548802395008263 -10109.0,0.085458502531108 -10110.0,0.08542899130670965 -10111.0,0.08539949027336703 -10112.0,0.08536999942756092 -10113.0,0.08534051876577328 -10114.0,0.08531104828448734 -10115.0,0.08528158798018737 -10116.0,0.08525213784935905 -10117.0,0.08522269788848916 -10118.0,0.08519326809406577 -10119.0,0.08516384846257807 -10120.0,0.08513443899051652 -10121.0,0.08510503967437281 -10122.0,0.08507565051063985 -10123.0,0.08504627149581163 -10124.0,0.0850169026263835 -10125.0,0.08498754389885198 -10126.0,0.08495819530971475 -10127.0,0.08492885685547082 -10128.0,0.08489952853262023 -10129.0,0.08487021033766436 -10130.0,0.08484090226710576 -10131.0,0.08481160431744825 -10132.0,0.0847823164851967 -10133.0,0.08475303876685732 -10134.0,0.08472377115893752 -10135.0,0.08469451365794589 -10136.0,0.08466526626039218 -10137.0,0.08463602896278742 -10138.0,0.0846068017616438 -10139.0,0.08457758465347476 -10140.0,0.08454837763479486 -10141.0,0.08451918070211994 -10142.0,0.08448999385196702 -10143.0,0.08446081708085432 -10144.0,0.0844316503853013 -10145.0,0.08440249376182853 -10146.0,0.08437334720695784 -10147.0,0.08434421071721229 -10148.0,0.08431508428911613 -10149.0,0.08428596791919472 -10150.0,0.08425686160397473 -10151.0,0.08422776533998398 -10152.0,0.08419867912375155 -10153.0,0.08416960295180757 -10154.0,0.08414053682068352 -10155.0,0.084111480726912 -10156.0,0.0840824346670269 -10157.0,0.08405339863756316 -10158.0,0.08402437263505699 -10159.0,0.08399535665604584 -10160.0,0.08396635069706833 -10161.0,0.0839373547546642 -10162.0,0.08390836882537449 -10163.0,0.08387939290574135 -10164.0,0.08385042699230821 -10165.0,0.08382147108161966 -10166.0,0.08379252517022141 -10167.0,0.08376358925466044 -10168.0,0.08373466333148494 -10169.0,0.08370574739724426 -10170.0,0.08367684144848889 -10171.0,0.08364794548177058 -10172.0,0.08361905949364228 -10173.0,0.08359018348065811 -10174.0,0.0835613174393733 -10175.0,0.0835324613663444 -10176.0,0.08350361525812906 -10177.0,0.08347477911128623 -10178.0,0.08344595292237585 -10179.0,0.08341713668795923 -10180.0,0.0833883304045988 -10181.0,0.08335953406885817 -10182.0,0.08333074767730218 -10183.0,0.08330197122649677 -10184.0,0.08327320471300914 -10185.0,0.08324444813340767 -10186.0,0.08321570148426193 -10187.0,0.08318696476214259 -10188.0,0.0831582379636216 -10189.0,0.08312952108527207 -10190.0,0.0831008141236683 -10191.0,0.08307211707538571 -10192.0,0.08304342993700099 -10193.0,0.08301475270509197 -10194.0,0.08298608537623768 -10195.0,0.08295742794701827 -10196.0,0.08292878041401515 -10197.0,0.08290014277381086 -10198.0,0.08287151502298919 -10199.0,0.08284289715813498 -10200.0,0.08281428917583437 -10201.0,0.08278569107267464 -10202.0,0.08275710284524422 -10203.0,0.08272852449013281 -10204.0,0.08269995600393114 -10205.0,0.0826713973832312 -10206.0,0.08264284862462622 -10207.0,0.08261430972471052 -10208.0,0.08258578068007957 -10209.0,0.08255726148733009 -10210.0,0.08252875214305996 -10211.0,0.08250025264386825 -10212.0,0.08247176298635511 -10213.0,0.08244328316712196 -10214.0,0.08241481318277138 -10215.0,0.08238635302990713 -10216.0,0.08235790270513406 -10217.0,0.08232946220505827 -10218.0,0.08230103152628704 -10219.0,0.08227261066542879 -10220.0,0.08224419961909314 -10221.0,0.08221579838389081 -10222.0,0.08218740695643377 -10223.0,0.08215902533333512 -10224.0,0.08213065351120917 -10225.0,0.08210229148667131 -10226.0,0.0820739392563382 -10227.0,0.0820455968168276 -10228.0,0.08201726416475852 -10229.0,0.08198894129675101 -10230.0,0.08196062820942639 -10231.0,0.0819323248994071 -10232.0,0.08190403136331682 -10233.0,0.08187574759778025 -10234.0,0.0818474735994234 -10235.0,0.08181920936487337 -10236.0,0.08179095489075848 -10237.0,0.0817627101737081 -10238.0,0.08173447521035289 -10239.0,0.08170624999732462 -10240.0,0.08167803453125623 -10241.0,0.08164982880878185 -10242.0,0.08162163282653667 -10243.0,0.08159344658115716 -10244.0,0.08156527006928091 -10245.0,0.0815371032875467 -10246.0,0.08150894623259435 -10247.0,0.08148079890106498 -10248.0,0.08145266128960081 -10249.0,0.08142453339484529 -10250.0,0.08139641521344286 -10251.0,0.08136830674203928 -10252.0,0.0813402079772814 -10253.0,0.0813121189158173 -10254.0,0.08128403955429608 -10255.0,0.0812559698893681 -10256.0,0.08122790991768487 -10257.0,0.08119985963589904 -10258.0,0.08117181904066444 -10259.0,0.08114378812863597 -10260.0,0.08111576689646977 -10261.0,0.08108775534082312 -10262.0,0.08105975345835448 -10263.0,0.08103176124572337 -10264.0,0.08100377869959054 -10265.0,0.08097580581661788 -10266.0,0.08094784259346846 -10267.0,0.08091988902680643 -10268.0,0.08089194511329713 -10269.0,0.08086401084960708 -10270.0,0.08083608623240396 -10271.0,0.08080817125835647 -10272.0,0.08078026592413463 -10273.0,0.08075237022640952 -10274.0,0.08072448416185342 -10275.0,0.08069660772713964 -10276.0,0.08066874091894279 -10277.0,0.08064088373393855 -10278.0,0.08061303616880376 -10279.0,0.08058519822021644 -10280.0,0.08055736988485565 -10281.0,0.08052955115940173 -10282.0,0.0805017420405361 -10283.0,0.08047394252494136 -10284.0,0.08044615260930116 -10285.0,0.08041837229030041 -10286.0,0.08039060156462513 -10287.0,0.08036284042896248 -10288.0,0.08033508888000072 -10289.0,0.08030734691442931 -10290.0,0.08027961452893884 -10291.0,0.08025189172022107 -10292.0,0.08022417848496881 -10293.0,0.08019647481987609 -10294.0,0.08016878072163808 -10295.0,0.08014109618695109 -10296.0,0.08011342121251255 -10297.0,0.08008575579502102 -10298.0,0.0800580999311762 -10299.0,0.08003045361767898 -10300.0,0.0800028168512314 -10301.0,0.07997518962853649 -10302.0,0.07994757194629858 -10303.0,0.07991996380122307 -10304.0,0.07989236519001658 -10305.0,0.07986477610938668 -10306.0,0.07983719655604225 -10307.0,0.07980962652669325 -10308.0,0.07978206601805082 -10309.0,0.07975451502682711 -10310.0,0.07972697354973553 -10311.0,0.07969944158349057 -10312.0,0.07967191912480792 -10313.0,0.07964440617040427 -10314.0,0.07961690271699756 -10315.0,0.07958940876130684 -10316.0,0.07956192430005225 -10317.0,0.07953444932995518 -10318.0,0.07950698384773795 -10319.0,0.07947952785012419 -10320.0,0.07945208133383859 -10321.0,0.07942464429560701 -10322.0,0.07939721673215636 -10323.0,0.07936979864021475 -10324.0,0.0793423900165114 -10325.0,0.0793149908577767 -10326.0,0.07928760116074207 -10327.0,0.07926022092214015 -10328.0,0.07923285013870467 -10329.0,0.07920548880717053 -10330.0,0.07917813692427367 -10331.0,0.07915079448675122 -10332.0,0.07912346149134143 -10333.0,0.07909613793478369 -10334.0,0.07906882381381854 -10335.0,0.0790415191251875 -10336.0,0.07901422386563338 -10337.0,0.07898693803190004 -10338.0,0.07895966162073254 -10339.0,0.0789323946288769 -10340.0,0.07890513705308042 -10341.0,0.07887788889009147 -10342.0,0.07885065013665957 -10343.0,0.07882342078953528 -10344.0,0.07879620084547036 -10345.0,0.07876899030121766 -10346.0,0.07874178915353122 -10347.0,0.07871459739916606 -10348.0,0.07868741503487843 -10349.0,0.07866024205742568 -10350.0,0.07863307846356629 -10351.0,0.07860592425005981 -10352.0,0.07857877941366694 -10353.0,0.07855164395114951 -10354.0,0.07852451785927046 -10355.0,0.07849740113479388 -10356.0,0.07847029377448486 -10357.0,0.07844319577510975 -10358.0,0.07841610713343593 -10359.0,0.07838902784623197 -10360.0,0.07836195791026744 -10361.0,0.07833489732231312 -10362.0,0.07830784607914089 -10363.0,0.07828080417752376 -10364.0,0.07825377161423577 -10365.0,0.07822674838605215 -10366.0,0.07819973448974925 -10367.0,0.07817272992210451 -10368.0,0.07814573467989644 -10369.0,0.07811874875990474 -10370.0,0.07809177215891017 -10371.0,0.07806480487369462 -10372.0,0.07803784690104114 -10373.0,0.07801089823773376 -10374.0,0.07798395888055773 -10375.0,0.07795702882629939 -10376.0,0.07793010807174622 -10377.0,0.07790319661368669 -10378.0,0.07787629444891049 -10379.0,0.0778494015742084 -10380.0,0.07782251798637234 -10381.0,0.0777956436821952 -10382.0,0.07776877865847112 -10383.0,0.0777419229119953 -10384.0,0.07771507643956407 -10385.0,0.07768823923797478 -10386.0,0.07766141130402598 -10387.0,0.0776345926345173 -10388.0,0.07760778322624949 -10389.0,0.07758098307602432 -10390.0,0.07755419218064477 -10391.0,0.07752741053691486 -10392.0,0.07750063814163977 -10393.0,0.07747387499162575 -10394.0,0.0774471210836801 -10395.0,0.07742037641461129 -10396.0,0.0773936409812289 -10397.0,0.0773669147803436 -10398.0,0.07734019780876711 -10399.0,0.07731349006331228 -10400.0,0.07728679154079313 -10401.0,0.0772601022380247 -10402.0,0.0772334221518231 -10403.0,0.07720675127900563 -10404.0,0.07718008961639065 -10405.0,0.07715343716079766 -10406.0,0.07712679390904713 -10407.0,0.07710015985796076 -10408.0,0.0770735350043613 -10409.0,0.07704691934507259 -10410.0,0.07702031287691963 -10411.0,0.07699371559672837 -10412.0,0.07696712750132599 -10413.0,0.07694054858754074 -10414.0,0.07691397885220197 -10415.0,0.07688741829214003 -10416.0,0.07686086690418649 -10417.0,0.07683432468517394 -10418.0,0.07680779163193616 -10419.0,0.07678126774130783 -10420.0,0.07675475301012492 -10421.0,0.0767282474352244 -10422.0,0.07670175101344437 -10423.0,0.07667526374162395 -10424.0,0.07664878561660343 -10425.0,0.07662231663522417 -10426.0,0.07659585679432863 -10427.0,0.0765694060907603 -10428.0,0.07654296452136382 -10429.0,0.0765165320829849 -10430.0,0.07649010877247035 -10431.0,0.0764636945866681 -10432.0,0.07643728952242705 -10433.0,0.07641089357659732 -10434.0,0.07638450674603006 -10435.0,0.07635812902757753 -10436.0,0.07633176041809302 -10437.0,0.07630540091443097 -10438.0,0.07627905051344687 -10439.0,0.07625270921199737 -10440.0,0.07622637700694004 -10441.0,0.07620005389513371 -10442.0,0.0761737398734382 -10443.0,0.0761474349387145 -10444.0,0.07612113908782453 -10445.0,0.07609485231763143 -10446.0,0.07606857462499937 -10447.0,0.07604230600679363 -10448.0,0.07601604645988057 -10449.0,0.07598979598112757 -10450.0,0.07596355456740317 -10451.0,0.07593732221557695 -10452.0,0.07591109892251961 -10453.0,0.07588488468510285 -10454.0,0.07585867950019953 -10455.0,0.07583248336468358 -10456.0,0.07580629627543 -10457.0,0.0757801182293148 -10458.0,0.07575394922321517 -10459.0,0.07572778925400933 -10460.0,0.07570163831857663 -10461.0,0.07567549641379738 -10462.0,0.07564936353655308 -10463.0,0.07562323968372626 -10464.0,0.07559712485220058 -10465.0,0.07557101903886065 -10466.0,0.0755449222405923 -10467.0,0.07551883445428233 -10468.0,0.07549275567681868 -10469.0,0.07546668590509037 -10470.0,0.07544062513598741 -10471.0,0.07541457336640096 -10472.0,0.07538853059322326 -10473.0,0.07536249681334758 -10474.0,0.07533647202366826 -10475.0,0.07531045622108076 -10476.0,0.07528444940248157 -10477.0,0.07525845156476829 -10478.0,0.07523246270483952 -10479.0,0.07520648281959501 -10480.0,0.07518051190593554 -10481.0,0.07515454996076301 -10482.0,0.07512859698098028 -10483.0,0.07510265296349138 -10484.0,0.07507671790520139 -10485.0,0.07505079180301642 -10486.0,0.07502487465384373 -10487.0,0.07499896645459153 -10488.0,0.07497306720216919 -10489.0,0.07494717689348711 -10490.0,0.0749212955254568 -10491.0,0.07489542309499074 -10492.0,0.07486955959900256 -10493.0,0.07484370503440695 -10494.0,0.07481785939811966 -10495.0,0.07479202268705747 -10496.0,0.07476619489813822 -10497.0,0.0747403760282809 -10498.0,0.0747145660744055 -10499.0,0.07468876503343304 -10500.0,0.07466297290228567 -10501.0,0.07463718967788657 -10502.0,0.07461141535716004 -10503.0,0.0745856499370313 -10504.0,0.07455989341442677 -10505.0,0.07453414578627389 -10506.0,0.07450840704950114 -10507.0,0.07448267720103813 -10508.0,0.07445695623781538 -10509.0,0.07443124415676464 -10510.0,0.07440554095481862 -10511.0,0.07437984662891114 -10512.0,0.07435416117597703 -10513.0,0.07432848459295219 -10514.0,0.0743028168767736 -10515.0,0.07427715802437934 -10516.0,0.07425150803270843 -10517.0,0.07422586689870102 -10518.0,0.07420023461929832 -10519.0,0.07417461119144264 -10520.0,0.07414899661207722 -10521.0,0.07412339087814643 -10522.0,0.07409779398659572 -10523.0,0.07407220593437157 -10524.0,0.07404662671842152 -10525.0,0.07402105633569413 -10526.0,0.07399549478313902 -10527.0,0.07396994205770693 -10528.0,0.07394439815634962 -10529.0,0.07391886307601983 -10530.0,0.07389333681367143 -10531.0,0.07386781936625933 -10532.0,0.07384231073073952 -10533.0,0.07381681090406894 -10534.0,0.07379131988320567 -10535.0,0.07376583766510884 -10536.0,0.07374036424673862 -10537.0,0.07371489962505615 -10538.0,0.07368944379702373 -10539.0,0.07366399675960467 -10540.0,0.07363855850976334 -10541.0,0.07361312904446508 -10542.0,0.07358770836067638 -10543.0,0.07356229645536473 -10544.0,0.07353689332549869 -10545.0,0.07351149896804787 -10546.0,0.07348611337998286 -10547.0,0.07346073655827536 -10548.0,0.0734353684998981 -10549.0,0.07341000920182489 -10550.0,0.07338465866103049 -10551.0,0.0733593168744908 -10552.0,0.07333398383918271 -10553.0,0.07330865955208425 -10554.0,0.0732833440101743 -10555.0,0.07325803721043297 -10556.0,0.07323273914984134 -10557.0,0.07320744982538155 -10558.0,0.07318216923403671 -10559.0,0.07315689737279106 -10560.0,0.07313163423862987 -10561.0,0.0731063798285394 -10562.0,0.07308113413950705 -10563.0,0.0730558971685211 -10564.0,0.07303066891257101 -10565.0,0.07300544936864724 -10566.0,0.07298023853374129 -10567.0,0.07295503640484566 -10568.0,0.07292984297895391 -10569.0,0.0729046582530607 -10570.0,0.07287948222416166 -10571.0,0.07285431488925344 -10572.0,0.07282915624533377 -10573.0,0.07280400628940142 -10574.0,0.07277886501845622 -10575.0,0.07275373242949894 -10576.0,0.07272860851953145 -10577.0,0.07270349328555667 -10578.0,0.07267838672457858 -10579.0,0.07265328883360206 -10580.0,0.07262819960963317 -10581.0,0.07260311904967892 -10582.0,0.07257804715074741 -10583.0,0.07255298390984777 -10584.0,0.07252792932399006 -10585.0,0.0725028833901855 -10586.0,0.07247784610544629 -10587.0,0.0724528174667857 -10588.0,0.0724277974712179 -10589.0,0.07240278611575826 -10590.0,0.07237778339742308 -10591.0,0.07235278931322978 -10592.0,0.07232780386019665 -10593.0,0.07230282703534316 -10594.0,0.07227785883568975 -10595.0,0.07225289925825792 -10596.0,0.07222794830007014 -10597.0,0.07220300595814995 -10598.0,0.0721780722295219 -10599.0,0.07215314711121161 -10600.0,0.0721282306002457 -10601.0,0.07210332269365176 -10602.0,0.07207842338845849 -10603.0,0.07205353268169558 -10604.0,0.07202865057039379 -10605.0,0.07200377705158478 -10606.0,0.0719789121223014 -10607.0,0.07195405577957739 -10608.0,0.07192920802044762 -10609.0,0.0719043688419479 -10610.0,0.07187953824111509 -10611.0,0.0718547162149871 -10612.0,0.07182990276060286 -10613.0,0.07180509787500226 -10614.0,0.07178030155522629 -10615.0,0.0717555137983169 -10616.0,0.07173073460131717 -10617.0,0.07170596396127102 -10618.0,0.07168120187522353 -10619.0,0.0716564483402208 -10620.0,0.07163170335330986 -10621.0,0.07160696691153888 -10622.0,0.07158223901195691 -10623.0,0.07155751965161412 -10624.0,0.07153280882756169 -10625.0,0.07150810653685181 -10626.0,0.07148341277653761 -10627.0,0.07145872754367336 -10628.0,0.07143405083531426 -10629.0,0.07140938264851662 -10630.0,0.07138472298033763 -10631.0,0.07136007182783559 -10632.0,0.07133542918806982 -10633.0,0.07131079505810065 -10634.0,0.07128616943498935 -10635.0,0.07126155231579828 -10636.0,0.07123694369759083 -10637.0,0.07121234357743134 -10638.0,0.07118775195238523 -10639.0,0.07116316881951887 -10640.0,0.07113859417589966 -10641.0,0.07111402801859604 -10642.0,0.07108947034467747 -10643.0,0.07106492115121436 -10644.0,0.07104038043527817 -10645.0,0.0710158481939414 -10646.0,0.07099132442427754 -10647.0,0.07096680912336104 -10648.0,0.07094230228826742 -10649.0,0.0709178039160732 -10650.0,0.07089331400385594 -10651.0,0.0708688325486941 -10652.0,0.07084435954766725 -10653.0,0.07081989499785596 -10654.0,0.07079543889634175 -10655.0,0.07077099124020725 -10656.0,0.07074655202653596 -10657.0,0.07072212125241249 -10658.0,0.07069769891492242 -10659.0,0.07067328501115239 -10660.0,0.07064887953818993 -10661.0,0.07062448249312367 -10662.0,0.07060009387304322 -10663.0,0.07057571367503924 -10664.0,0.07055134189620328 -10665.0,0.070526978533628 -10666.0,0.07050262358440701 -10667.0,0.07047827704563499 -10668.0,0.07045393891440752 -10669.0,0.07042960918782125 -10670.0,0.07040528786297383 -10671.0,0.07038097493696395 -10672.0,0.07035667040689116 -10673.0,0.07033237426985617 -10674.0,0.0703080865229606 -10675.0,0.07028380716330712 -10676.0,0.0702595361879994 -10677.0,0.07023527359414204 -10678.0,0.07021101937884071 -10679.0,0.07018677353920205 -10680.0,0.07016253607233375 -10681.0,0.0701383069753444 -10682.0,0.07011408624534367 -10683.0,0.07008987387944221 -10684.0,0.07006566987475168 -10685.0,0.07004147422838466 -10686.0,0.07001728693745483 -10687.0,0.0699931079990768 -10688.0,0.06996893741036625 -10689.0,0.06994477516843974 -10690.0,0.06992062127041491 -10691.0,0.06989647571341039 -10692.0,0.06987233849454579 -10693.0,0.06984820961094172 -10694.0,0.06982408905971975 -10695.0,0.0697999768380025 -10696.0,0.06977587294291354 -10697.0,0.0697517773715775 -10698.0,0.06972769012111989 -10699.0,0.0697036111886673 -10700.0,0.0696795405713473 -10701.0,0.06965547826628846 -10702.0,0.06963142427062026 -10703.0,0.06960737858147328 -10704.0,0.06958334119597903 -10705.0,0.06955931211127006 -10706.0,0.06953529132447982 -10707.0,0.06951127883274281 -10708.0,0.06948727463319455 -10709.0,0.06946327872297153 -10710.0,0.06943929109921115 -10711.0,0.0694153117590519 -10712.0,0.06939134069963321 -10713.0,0.06936737791809551 -10714.0,0.06934342341158024 -10715.0,0.06931947717722975 -10716.0,0.06929553921218745 -10717.0,0.06927160951359773 -10718.0,0.06924768807860597 -10719.0,0.06922377490435846 -10720.0,0.06919986998800257 -10721.0,0.06917597332668661 -10722.0,0.0691520849175599 -10723.0,0.06912820475777269 -10724.0,0.06910433284447627 -10725.0,0.0690804691748229 -10726.0,0.06905661374596583 -10727.0,0.06903276655505924 -10728.0,0.06900892759925838 -10729.0,0.0689850968757194 -10730.0,0.06896127438159948 -10731.0,0.06893746011405681 -10732.0,0.06891365407025045 -10733.0,0.06888985624734055 -10734.0,0.0688660666424882 -10735.0,0.06884228525285552 -10736.0,0.06881851207560548 -10737.0,0.06879474710790215 -10738.0,0.06877099034691055 -10739.0,0.06874724178979669 -10740.0,0.06872350143372749 -10741.0,0.06869976927587093 -10742.0,0.06867604531339593 -10743.0,0.06865232954347242 -10744.0,0.06862862196327123 -10745.0,0.06860492256996424 -10746.0,0.0685812313607243 -10747.0,0.06855754833272525 -10748.0,0.0685338734831418 -10749.0,0.06851020680914975 -10750.0,0.06848654830792586 -10751.0,0.06846289797664781 -10752.0,0.06843925581249434 -10753.0,0.06841562181264504 -10754.0,0.06839199597428058 -10755.0,0.06836837829458257 -10756.0,0.06834476877073363 -10757.0,0.06832116739991725 -10758.0,0.06829757417931799 -10759.0,0.06827398910612135 -10760.0,0.06825041217751383 -10761.0,0.06822684339068281 -10762.0,0.06820328274281676 -10763.0,0.06817973023110503 -10764.0,0.06815618585273803 -10765.0,0.06813264960490703 -10766.0,0.06810912148480434 -10767.0,0.06808560148962324 -10768.0,0.06806208961655798 -10769.0,0.06803858586280376 -10770.0,0.06801509022555671 -10771.0,0.06799160270201401 -10772.0,0.06796812328937377 -10773.0,0.06794465198483508 -10774.0,0.06792118878559794 -10775.0,0.06789773368886338 -10776.0,0.0678742866918334 -10777.0,0.06785084779171095 -10778.0,0.06782741698569988 -10779.0,0.06780399427100511 -10780.0,0.06778057964483249 -10781.0,0.06775717310438882 -10782.0,0.06773377464688184 -10783.0,0.06771038426952031 -10784.0,0.06768700196951392 -10785.0,0.06766362774407336 -10786.0,0.06764026159041021 -10787.0,0.06761690350573708 -10788.0,0.06759355348726753 -10789.0,0.06757021153221605 -10790.0,0.06754687763779817 -10791.0,0.06752355180123025 -10792.0,0.06750023401972972 -10793.0,0.06747692429051495 -10794.0,0.06745362261080527 -10795.0,0.06743032897782093 -10796.0,0.06740704338878316 -10797.0,0.0673837658409142 -10798.0,0.0673604963314372 -10799.0,0.06733723485757624 -10800.0,0.06731398141655642 -10801.0,0.06729073600560379 -10802.0,0.06726749862194534 -10803.0,0.06724426926280896 -10804.0,0.06722104792542363 -10805.0,0.06719783460701918 -10806.0,0.06717462930482644 -10807.0,0.0671514320160772 -10808.0,0.06712824273800416 -10809.0,0.06710506146784102 -10810.0,0.06708188820282243 -10811.0,0.06705872294018402 -10812.0,0.06703556567716228 -10813.0,0.06701241641099473 -10814.0,0.06698927513891986 -10815.0,0.0669661418581771 -10816.0,0.06694301656600678 -10817.0,0.06691989925965021 -10818.0,0.06689678993634969 -10819.0,0.06687368859334848 -10820.0,0.06685059522789069 -10821.0,0.06682750983722148 -10822.0,0.06680443241858694 -10823.0,0.0667813629692341 -10824.0,0.06675830148641093 -10825.0,0.06673524796736637 -10826.0,0.0667122024093503 -10827.0,0.06668916480961355 -10828.0,0.06666613516540795 -10829.0,0.06664311347398616 -10830.0,0.06662009973260188 -10831.0,0.06659709393850975 -10832.0,0.06657409608896538 -10833.0,0.06655110618122523 -10834.0,0.06652812421254681 -10835.0,0.06650515018018852 -10836.0,0.06648218408140977 -10837.0,0.0664592259134708 -10838.0,0.0664362756736329 -10839.0,0.06641333335915829 -10840.0,0.06639039896731014 -10841.0,0.06636747249535249 -10842.0,0.06634455394055039 -10843.0,0.06632164330016983 -10844.0,0.06629874057147775 -10845.0,0.06627584575174204 -10846.0,0.06625295883823147 -10847.0,0.06623007982821581 -10848.0,0.06620720871896577 -10849.0,0.06618434550775303 -10850.0,0.0661614901918501 -10851.0,0.06613864276853053 -10852.0,0.06611580323506883 -10853.0,0.06609297158874039 -10854.0,0.06607014782682154 -10855.0,0.06604733194658957 -10856.0,0.06602452394532275 -10857.0,0.06600172382030024 -10858.0,0.06597893156880213 -10859.0,0.06595614718810948 -10860.0,0.06593337067550427 -10861.0,0.06591060202826948 -10862.0,0.06588784124368889 -10863.0,0.06586508831904737 -10864.0,0.06584234325163063 -10865.0,0.06581960603872537 -10866.0,0.06579687667761923 -10867.0,0.06577415516560069 -10868.0,0.06575144149995929 -10869.0,0.06572873567798544 -10870.0,0.06570603769697053 -10871.0,0.06568334755420682 -10872.0,0.06566066524698755 -10873.0,0.06563799077260687 -10874.0,0.06561532412835995 -10875.0,0.06559266531154274 -10876.0,0.06557001431945225 -10877.0,0.06554737114938637 -10878.0,0.06552473579864398 -10879.0,0.06550210826452477 -10880.0,0.06547948854432949 -10881.0,0.06545687663535975 -10882.0,0.06543427253491813 -10883.0,0.06541167624030814 -10884.0,0.06538908774883416 -10885.0,0.06536650705780157 -10886.0,0.06534393416451668 -10887.0,0.06532136906628672 -10888.0,0.06529881176041977 -10889.0,0.06527626224422495 -10890.0,0.06525372051501227 -10891.0,0.06523118657009269 -10892.0,0.06520866040677802 -10893.0,0.06518614202238107 -10894.0,0.06516363141421558 -10895.0,0.06514112857959621 -10896.0,0.06511863351583848 -10897.0,0.06509614622025893 -10898.0,0.06507366669017499 -10899.0,0.06505119492290505 -10900.0,0.06502873091576832 -10901.0,0.06500627466608504 -10902.0,0.06498382617117633 -10903.0,0.06496138542836428 -10904.0,0.06493895243497189 -10905.0,0.064916527188323 -10906.0,0.06489410968574247 -10907.0,0.06487169992455608 -10908.0,0.0648492979020905 -10909.0,0.0648269036156733 -10910.0,0.06480451706263302 -10911.0,0.06478213824029912 -10912.0,0.064759767146002 -10913.0,0.06473740377707288 -10914.0,0.064715048130844 -10915.0,0.06469270020464851 -10916.0,0.06467035999582049 -10917.0,0.06464802750169486 -10918.0,0.06462570271960753 -10919.0,0.06460338564689534 -10920.0,0.06458107628089602 -10921.0,0.06455877461894823 -10922.0,0.0645364806583915 -10923.0,0.06451419439656637 -10924.0,0.06449191583081423 -10925.0,0.06446964495847746 -10926.0,0.06444738177689921 -10927.0,0.06442512628342371 -10928.0,0.06440287847539604 -10929.0,0.06438063835016221 -10930.0,0.06435840590506908 -10931.0,0.06433618113746453 -10932.0,0.06431396404469729 -10933.0,0.06429175462411706 -10934.0,0.06426955287307434 -10935.0,0.06424735878892067 -10936.0,0.06422517236900846 -10937.0,0.06420299361069107 -10938.0,0.06418082251132264 -10939.0,0.06415865906825838 -10940.0,0.06413650327885435 -10941.0,0.06411435514046752 -10942.0,0.06409221465045581 -10943.0,0.06407008180617794 -10944.0,0.0640479566049937 -10945.0,0.06402583904426368 -10946.0,0.06400372912134945 -10947.0,0.06398162683361341 -10948.0,0.06395953217841893 -10949.0,0.0639374451531303 -10950.0,0.06391536575511271 -10951.0,0.0638932939817322 -10952.0,0.0638712298303558 -10953.0,0.06384917329835141 -10954.0,0.06382712438308787 -10955.0,0.06380508308193486 -10956.0,0.06378304939226304 -10957.0,0.06376102331144394 -10958.0,0.06373900483685004 -10959.0,0.06371699396585469 -10960.0,0.06369499069583211 -10961.0,0.06367299502415749 -10962.0,0.06365100694820693 -10963.0,0.06362902646535741 -10964.0,0.0636070535729868 -10965.0,0.0635850882684739 -10966.0,0.06356313054919839 -10967.0,0.06354118041254093 -10968.0,0.06351923785588298 -10969.0,0.06349730287660696 -10970.0,0.06347537547209618 -10971.0,0.06345345563973492 -10972.0,0.06343154337690822 -10973.0,0.06340963868100215 -10974.0,0.06338774154940363 -10975.0,0.06336585197950052 -10976.0,0.06334396996868151 -10977.0,0.06332209551433626 -10978.0,0.0633002286138553 -10979.0,0.06327836926463005 -10980.0,0.06325651746405292 -10981.0,0.06323467320951708 -10982.0,0.06321283649841666 -10983.0,0.06319100732814675 -10984.0,0.06316918569610329 -10985.0,0.06314737159968307 -10986.0,0.06312556503628385 -10987.0,0.06310376600330428 -10988.0,0.0630819744981439 -10989.0,0.0630601905182031 -10990.0,0.06303841406088323 -10991.0,0.06301664512358654 -10992.0,0.06299488370371616 -10993.0,0.06297312979867606 -10994.0,0.06295138340587118 -10995.0,0.06292964452270734 -10996.0,0.06290791314659126 -10997.0,0.06288618927493057 -10998.0,0.0628644729051337 -10999.0,0.06284276403461009 -11000.0,0.06282106266077 -11001.0,0.06279936878102468 -11002.0,0.06277768239278614 -11003.0,0.06275600349346738 -11004.0,0.06273433208048225 -11005.0,0.06271266815124556 -11006.0,0.06269101170317289 -11007.0,0.0626693627336808 -11008.0,0.06264772124018676 -11009.0,0.06262608722010911 -11010.0,0.062604460670867 -11011.0,0.06258284158988058 -11012.0,0.06256122997457084 -11013.0,0.06253962582235972 -11014.0,0.06251802913066994 -11015.0,0.06249643989692519 -11016.0,0.06247485811855004 -11017.0,0.06245328379296994 -11018.0,0.06243171691761125 -11019.0,0.062410157489901155 -11020.0,0.0623886055072678 -11021.0,0.062367060967140175 -11022.0,0.06234552386694822 -11023.0,0.06232399420412265 -11024.0,0.06230247197609517 -11025.0,0.06228095718029832 -11026.0,0.062259449814165584 -11027.0,0.062237949875131225 -11028.0,0.062216457360630494 -11029.0,0.06219497226809948 -11030.0,0.062173494594975204 -11031.0,0.062152024338695475 -11032.0,0.062130561496699085 -11033.0,0.06210910606642566 -11034.0,0.062087658045315734 -11035.0,0.06206621743081074 -11036.0,0.062044784220352915 -11037.0,0.062023358411385454 -11038.0,0.062001940001352424 -11039.0,0.061980528987698784 -11040.0,0.06195912536787031 -11041.0,0.06193772913931372 -11042.0,0.06191634029947661 -11043.0,0.06189495884580747 -11044.0,0.0618735847757556 -11045.0,0.06185221808677125 -11046.0,0.061830858776305536 -11047.0,0.061809506841810476 -11048.0,0.06178816228073888 -11049.0,0.06176682509054452 -11050.0,0.06174549526868203 -11051.0,0.061724172812606955 -11052.0,0.061702857719775614 -11053.0,0.06168154998764531 -11054.0,0.06166024961367417 -11055.0,0.061638956595321225 -11056.0,0.0616176709300464 -11057.0,0.061596392615310414 -11058.0,0.061575121648574954 -11059.0,0.06155385802730253 -11060.0,0.0615326017489566 -11061.0,0.06151135281100137 -11062.0,0.06149011121090203 -11063.0,0.061468876946124615 -11064.0,0.06144765001413606 -11065.0,0.06142643041240409 -11066.0,0.06140521813839738 -11067.0,0.061384013189585473 -11068.0,0.06136281556343879 -11069.0,0.06134162525742857 -11070.0,0.06132044226902698 -11071.0,0.06129926659570704 -11072.0,0.06127809823494265 -11073.0,0.06125693718420861 -11074.0,0.061235783440980504 -11075.0,0.06121463700273488 -11076.0,0.0611934978669491 -11077.0,0.061172366031101474 -11078.0,0.06115124149267106 -11079.0,0.06113012424913788 -11080.0,0.061109014297982794 -11081.0,0.061087911636687586 -11082.0,0.06106681626273479 -11083.0,0.06104572817360792 -11084.0,0.061024647366791314 -11085.0,0.06100357383977022 -11086.0,0.06098250759003066 -11087.0,0.06096144861505961 -11088.0,0.06094039691234489 -11089.0,0.06091935247937521 -11090.0,0.060898315313640074 -11091.0,0.060877285412629926 -11092.0,0.060856262773836045 -11093.0,0.060835247394750595 -11094.0,0.06081423927286662 -11095.0,0.06079323840567794 -11096.0,0.060772244790679344 -11097.0,0.06075125842536643 -11098.0,0.06073027930723573 -11099.0,0.06070930743378451 -11100.0,0.06068834280251102 -11101.0,0.06066738541091433 -11102.0,0.060646435256494394 -11103.0,0.06062549233675197 -11104.0,0.06060455664918874 -11105.0,0.06058362819130723 -11106.0,0.060562706960610856 -11107.0,0.06054179295460381 -11108.0,0.06052088617079123 -11109.0,0.0604999866066791 -11110.0,0.06047909425977425 -11111.0,0.06045820912758439 -11112.0,0.06043733120761804 -11113.0,0.060416460497384625 -11114.0,0.06039559699439444 -11115.0,0.06037474069615863 -11116.0,0.06035389160018915 -11117.0,0.06033304970399888 -11118.0,0.06031221500510153 -11119.0,0.0602913875010117 -11120.0,0.06027056718924477 -11121.0,0.06024975406731705 -11122.0,0.060228948132745694 -11123.0,0.06020814938304873 -11124.0,0.060187357815744955 -11125.0,0.060166573428354124 -11126.0,0.060145796218396816 -11127.0,0.06012502618339447 -11128.0,0.060104263320869336 -11129.0,0.06008350762834457 -11130.0,0.06006275910334419 -11131.0,0.06004201774339302 -11132.0,0.06002128354601681 -11133.0,0.060000556508742066 -11134.0,0.059979836629096235 -11135.0,0.05995912390460757 -11136.0,0.05993841833280524 -11137.0,0.059917719911219164 -11138.0,0.05989702863738019 -11139.0,0.05987634450882 -11140.0,0.05985566752307116 -11141.0,0.059834997677667 -11142.0,0.05981433497014178 -11143.0,0.05979367939803061 -11144.0,0.05977303095886944 -11145.0,0.05975238965019501 -11146.0,0.05973175546954499 -11147.0,0.05971112841445787 -11148.0,0.059690508482473 -11149.0,0.0596698956711306 -11150.0,0.05964928997797165 -11151.0,0.05962869140053807 -11152.0,0.05960809993637261 -11153.0,0.05958751558301886 -11154.0,0.059566938338021236 -11155.0,0.05954636819892503 -11156.0,0.05952580516327637 -11157.0,0.059505249228622284 -11158.0,0.059484700392510526 -11159.0,0.0594641586524898 -11160.0,0.05944362400610963 -11161.0,0.05942309645092041 -11162.0,0.05940257598447329 -11163.0,0.059382062604320364 -11164.0,0.05936155630801453 -11165.0,0.05934105709310957 -11166.0,0.059320564957160024 -11167.0,0.05930007989772135 -11168.0,0.05927960191234982 -11169.0,0.05925913099860258 -11170.0,0.05923866715403762 -11171.0,0.05921821037621369 -11172.0,0.05919776066269048 -11173.0,0.05917731801102849 -11174.0,0.05915688241878908 -11175.0,0.05913645388353438 -11176.0,0.05911603240282746 -11177.0,0.059095617974232156 -11178.0,0.059075210595313225 -11179.0,0.059054810263636154 -11180.0,0.059034416976767354 -11181.0,0.05901403073227407 -11182.0,0.05899365152772438 -11183.0,0.05897327936068715 -11184.0,0.05895291422873215 -11185.0,0.058932556129429985 -11186.0,0.05891220506035206 -11187.0,0.05889186101907068 -11188.0,0.05887152400315889 -11189.0,0.05885119401019067 -11190.0,0.05883087103774078 -11191.0,0.05881055508338488 -11192.0,0.058790246144699375 -11193.0,0.05876994421926157 -11194.0,0.058749649304649605 -11195.0,0.05872936139844246 -11196.0,0.05870908049821989 -11197.0,0.05868880660156255 -11198.0,0.05866853970605193 -11199.0,0.05864827980927034 -11200.0,0.058628026908800895 -11201.0,0.05860778100222758 -11202.0,0.0585875420871352 -11203.0,0.05856731016110944 -11204.0,0.058547085221736725 -11205.0,0.058526867266604395 -11206.0,0.05850665629330058 -11207.0,0.05848645229941428 -11208.0,0.058466255282535316 -11209.0,0.05844606524025429 -11210.0,0.058425882170162695 -11211.0,0.05840570606985284 -11212.0,0.058385536936917885 -11213.0,0.05836537476895176 -11214.0,0.05834521956354928 -11215.0,0.05832507131830608 -11216.0,0.05830493003081865 -11217.0,0.05828479569868422 -11218.0,0.05826466831950095 -11219.0,0.05824454789086778 -11220.0,0.058224434410384523 -11221.0,0.058204327875651725 -11222.0,0.05818422828427086 -11223.0,0.05816413563384419 -11224.0,0.058144049921974805 -11225.0,0.058123971146266655 -11226.0,0.05810389930432444 -11227.0,0.05808383439375375 -11228.0,0.058063776412161 -11229.0,0.058043725357153436 -11230.0,0.058023681226339066 -11231.0,0.0580036440173268 -11232.0,0.05798361372772634 -11233.0,0.057963590355148246 -11234.0,0.05794357389720382 -11235.0,0.05792356435150528 -11236.0,0.05790356171566563 -11237.0,0.05788356598729872 -11238.0,0.05786357716401916 -11239.0,0.05784359524344245 -11240.0,0.0578236202231849 -11241.0,0.057803652100863655 -11242.0,0.05778369087409661 -11243.0,0.057763736540502576 -11244.0,0.05774378909770113 -11245.0,0.057723848543312695 -11246.0,0.05770391487495854 -11247.0,0.05768398809026066 -11248.0,0.057664068186841964 -11249.0,0.057644155162326155 -11250.0,0.05762424901433778 -11251.0,0.05760434974050214 -11252.0,0.0575844573384454 -11253.0,0.05756457180579456 -11254.0,0.05754469314017743 -11255.0,0.0575248213392226 -11256.0,0.05750495640055952 -11257.0,0.05748509832181845 -11258.0,0.057465247100630494 -11259.0,0.05744540273462749 -11260.0,0.05742556522144218 -11261.0,0.0574057345587081 -11262.0,0.05738591074405958 -11263.0,0.05736609377513182 -11264.0,0.05734628364956075 -11265.0,0.05732648036498318 -11266.0,0.05730668391903674 -11267.0,0.057286894309359876 -11268.0,0.05726711153359178 -11269.0,0.05724733558937253 -11270.0,0.05722756647434301 -11271.0,0.057207804186144934 -11272.0,0.057188048722420746 -11273.0,0.0571683000808138 -11274.0,0.05714855825896821 -11275.0,0.05712882325452897 -11276.0,0.057109095065141766 -11277.0,0.0570893736884532 -11278.0,0.057069659122110664 -11279.0,0.05704995136376237 -11280.0,0.057030250411057276 -11281.0,0.05701055626164523 -11282.0,0.05699086891317687 -11283.0,0.05697118836330362 -11284.0,0.05695151460967778 -11285.0,0.056931847649952357 -11286.0,0.05691218748178125 -11287.0,0.05689253410281914 -11288.0,0.05687288751072155 -11289.0,0.05685324770314474 -11290.0,0.05683361467774584 -11291.0,0.056813988432182785 -11292.0,0.05679436896411433 -11293.0,0.056774756271199954 -11294.0,0.056755150351100035 -11295.0,0.056735551201475734 -11296.0,0.05671595881998904 -11297.0,0.05669637320430267 -11298.0,0.05667679435208024 -11299.0,0.05665722226098612 -11300.0,0.05663765692868551 -11301.0,0.05661809835284444 -11302.0,0.056598546531129654 -11303.0,0.05657900146120878 -11304.0,0.056559463140750256 -11305.0,0.05653993156742332 -11306.0,0.05652040673889793 -11307.0,0.056500888652844965 -11308.0,0.056481377306936045 -11309.0,0.05646187269884364 -11310.0,0.05644237482624094 -11311.0,0.05642288368680202 -11312.0,0.056403399278201725 -11313.0,0.056383921598115734 -11314.0,0.056364450644220444 -11315.0,0.05634498641419315 -11316.0,0.05632552890571191 -11317.0,0.0563060781164556 -11318.0,0.056286634044103834 -11319.0,0.05626719668633711 -11320.0,0.056247766040836686 -11321.0,0.05622834210528463 -11322.0,0.056208924877363835 -11323.0,0.05618951435475791 -11324.0,0.05617011053515136 -11325.0,0.05615071341622944 -11326.0,0.05613132299567824 -11327.0,0.056111939271184574 -11328.0,0.056092562240436135 -11329.0,0.05607319190112138 -11330.0,0.056053828250929603 -11331.0,0.0560344712875508 -11332.0,0.05601512100867585 -11333.0,0.05599577741199642 -11334.0,0.05597644049520497 -11335.0,0.05595711025599471 -11336.0,0.0559377866920597 -11337.0,0.05591846980109478 -11338.0,0.05589915958079558 -11339.0,0.055879856028858574 -11340.0,0.05586055914298093 -11341.0,0.055841268920860686 -11342.0,0.055821985360196676 -11343.0,0.055802708458688524 -11344.0,0.055783438214036585 -11345.0,0.0557641746239421 -11346.0,0.055744917686107044 -11347.0,0.055725667398234244 -11348.0,0.05570642375802722 -11349.0,0.05568718676319038 -11350.0,0.05566795641142889 -11351.0,0.055648732700448726 -11352.0,0.055629515627956594 -11353.0,0.05561030519166007 -11354.0,0.055591101389267476 -11355.0,0.055571904218487976 -11356.0,0.05555271367703143 -11357.0,0.05553352976260857 -11358.0,0.0555143524729309 -11359.0,0.055495181805710704 -11360.0,0.05547601775866109 -11361.0,0.05545686032949587 -11362.0,0.05543770951592974 -11363.0,0.05541856531567814 -11364.0,0.05539942772645733 -11365.0,0.05538029674598429 -11366.0,0.05536117237197686 -11367.0,0.05534205460215363 -11368.0,0.05532294343423402 -11369.0,0.05530383886593816 -11370.0,0.05528474089498705 -11371.0,0.05526564951910242 -11372.0,0.055246564736006844 -11373.0,0.05522748654342359 -11374.0,0.05520841493907681 -11375.0,0.05518934992069138 -11376.0,0.05517029148599299 -11377.0,0.05515123963270815 -11378.0,0.05513219435856403 -11379.0,0.05511315566128872 -11380.0,0.055094123538611026 -11381.0,0.05507509798826059 -11382.0,0.055056079007967745 -11383.0,0.0550370665954637 -11384.0,0.0550180607484804 -11385.0,0.05499906146475062 -11386.0,0.05498006874200784 -11387.0,0.05496108257798637 -11388.0,0.05494210297042132 -11389.0,0.05492312991704857 -11390.0,0.05490416341560474 -11391.0,0.054885203463827276 -11392.0,0.054866250059454405 -11393.0,0.054847303200225135 -11394.0,0.05482836288387921 -11395.0,0.054809429108157205 -11396.0,0.05479050187080046 -11397.0,0.05477158116955109 -11398.0,0.05475266700215201 -11399.0,0.054733759366346876 -11400.0,0.05471485825988014 -11401.0,0.05469596368049706 -11402.0,0.054677075625943664 -11403.0,0.05465819409396669 -11404.0,0.054639319082313745 -11405.0,0.054620450588733174 -11406.0,0.054601588610974125 -11407.0,0.05458273314678646 -11408.0,0.05456388419392087 -11409.0,0.05454504175012883 -11410.0,0.05452620581316258 -11411.0,0.0545073763807751 -11412.0,0.054488553450720185 -11413.0,0.054469737020752404 -11414.0,0.054450927088627095 -11415.0,0.05443212365210039 -11416.0,0.054413326708929136 -11417.0,0.054394536256871004 -11418.0,0.054375752293684444 -11419.0,0.054356974817128687 -11420.0,0.05433820382496366 -11421.0,0.05431943931495016 -11422.0,0.0543006812848497 -11423.0,0.05428192973242463 -11424.0,0.05426318465543795 -11425.0,0.05424444605165356 -11426.0,0.054225713918836065 -11427.0,0.05420698825475089 -11428.0,0.054188269057164146 -11429.0,0.0541695563238428 -11430.0,0.05415085005255455 -11431.0,0.05413215024106791 -11432.0,0.05411345688715207 -11433.0,0.05409476998857708 -11434.0,0.05407608954311373 -11435.0,0.05405741554853357 -11436.0,0.05403874800260896 -11437.0,0.05402008690311295 -11438.0,0.05400143224781943 -11439.0,0.05398278403450303 -11440.0,0.05396414226093919 -11441.0,0.05394550692490402 -11442.0,0.0539268780241745 -11443.0,0.05390825555652832 -11444.0,0.053889639519743994 -11445.0,0.05387102991160071 -11446.0,0.05385242672987851 -11447.0,0.05383382997235816 -11448.0,0.05381523963682123 -11449.0,0.053796655721049975 -11450.0,0.0537780782228275 -11451.0,0.05375950713993764 -11452.0,0.05374094247016501 -11453.0,0.053722384211295 -11454.0,0.05370383236111369 -11455.0,0.05368528691740801 -11456.0,0.053666747877965625 -11457.0,0.053648215240574976 -11458.0,0.05362968900302522 -11459.0,0.05361116916310633 -11460.0,0.05359265571860902 -11461.0,0.05357414866732481 -11462.0,0.053555648007045875 -11463.0,0.05353715373556526 -11464.0,0.05351866585067673 -11465.0,0.05350018435017483 -11466.0,0.05348170923185482 -11467.0,0.05346324049351277 -11468.0,0.053444778132945486 -11469.0,0.053426322147950574 -11470.0,0.053407872536326326 -11471.0,0.05338942929587186 -11472.0,0.05337099242438702 -11473.0,0.053352561919672435 -11474.0,0.0533341377795295 -11475.0,0.0533157200017603 -11476.0,0.05329730858416776 -11477.0,0.05327890352455552 -11478.0,0.05326050482072802 -11479.0,0.053242112470490384 -11480.0,0.05322372647164856 -11481.0,0.053205346822009225 -11482.0,0.053186973519379864 -11483.0,0.05316860656156861 -11484.0,0.05315024594638445 -11485.0,0.053131891671637094 -11486.0,0.05311354373513704 -11487.0,0.05309520213469546 -11488.0,0.05307686686812436 -11489.0,0.05305853793323647 -11490.0,0.053040215327845294 -11491.0,0.0530218990497651 -11492.0,0.053003589096810834 -11493.0,0.05298528546679828 -11494.0,0.05296698815754396 -11495.0,0.052948697166865136 -11496.0,0.0529304124925798 -11497.0,0.05291213413250674 -11498.0,0.05289386208446548 -11499.0,0.05287559634627633 -11500.0,0.05285733691576027 -11501.0,0.0528390837907391 -11502.0,0.052820836969035355 -11503.0,0.05280259644847236 -11504.0,0.05278436222687408 -11505.0,0.05276613430206536 -11506.0,0.05274791267187172 -11507.0,0.05272969733411949 -11508.0,0.05271148828663565 -11509.0,0.05269328552724803 -11510.0,0.05267508905378517 -11511.0,0.05265689886407636 -11512.0,0.05263871495595167 -11513.0,0.05262053732724185 -11514.0,0.05260236597577845 -11515.0,0.05258420089939378 -11516.0,0.05256604209592088 -11517.0,0.05254788956319351 -11518.0,0.05252974329904623 -11519.0,0.052511603301314304 -11520.0,0.052493469567833795 -11521.0,0.05247534209644144 -11522.0,0.05245722088497477 -11523.0,0.05243910593127208 -11524.0,0.0524209972331724 -11525.0,0.052402894788515446 -11526.0,0.05238479859514175 -11527.0,0.052366708650892574 -11528.0,0.05234862495360992 -11529.0,0.052330547501136554 -11530.0,0.05231247629131592 -11531.0,0.05229441132199228 -11532.0,0.05227635259101062 -11533.0,0.052258300096216674 -11534.0,0.052240253835456885 -11535.0,0.05222221380657847 -11536.0,0.05220418000742939 -11537.0,0.05218615243585838 -11538.0,0.05216813108971482 -11539.0,0.052150115966848924 -11540.0,0.05213210706511162 -11541.0,0.0521141043823546 -11542.0,0.05209610791643023 -11543.0,0.05207811766519169 -11544.0,0.05206013362649286 -11545.0,0.052042155798188404 -11546.0,0.05202418417813366 -11547.0,0.052006218764184764 -11548.0,0.05198825955419858 -11549.0,0.051970306546032685 -11550.0,0.05195235973754545 -11551.0,0.05193441912659592 -11552.0,0.05191648471104391 -11553.0,0.05189855648874999 -11554.0,0.05188063445757547 -11555.0,0.051862718615382344 -11556.0,0.0518448089600334 -11557.0,0.051826905489392144 -11558.0,0.05180900820132285 -11559.0,0.051791117093690456 -11560.0,0.0517732321643607 -11561.0,0.05175535341120006 -11562.0,0.05173748083207572 -11563.0,0.0517196144248556 -11564.0,0.05170175418740837 -11565.0,0.05168390011760344 -11566.0,0.05166605221331095 -11567.0,0.0516482104724018 -11568.0,0.05163037489274755 -11569.0,0.05161254547222057 -11570.0,0.05159472220869395 -11571.0,0.05157690510004151 -11572.0,0.05155909414413776 -11573.0,0.05154128933885801 -11574.0,0.051523490682078274 -11575.0,0.05150569817167532 -11576.0,0.051487911805526594 -11577.0,0.051470131581510335 -11578.0,0.051452357497505485 -11579.0,0.05143458955139175 -11580.0,0.0514168277410495 -11581.0,0.051399072064359896 -11582.0,0.05138132251920483 -11583.0,0.05136357910346692 -11584.0,0.05134584181502947 -11585.0,0.051328110651776566 -11586.0,0.05131038561159302 -11587.0,0.05129266669236435 -11588.0,0.051274953891976845 -11589.0,0.05125724720831746 -11590.0,0.05123954663927393 -11591.0,0.05122185218273471 -11592.0,0.051204163836589 -11593.0,0.05118648159872667 -11594.0,0.051168805467038385 -11595.0,0.05115113543941549 -11596.0,0.051133471513750126 -11597.0,0.05111581368793505 -11598.0,0.05109816195986385 -11599.0,0.051080516327430804 -11600.0,0.05106287678853093 -11601.0,0.051045243341059914 -11602.0,0.05102761598291424 -11603.0,0.0510099947119911 -11604.0,0.050992379526188396 -11605.0,0.05097477042340479 -11606.0,0.0509571674015396 -11607.0,0.050939570458492935 -11608.0,0.05092197959216561 -11609.0,0.05090439480045918 -11610.0,0.05088681608127587 -11611.0,0.05086924343251868 -11612.0,0.05085167685209133 -11613.0,0.05083411633789828 -11614.0,0.050816561887844634 -11615.0,0.0507990134998363 -11616.0,0.05078147117177989 -11617.0,0.05076393490158274 -11618.0,0.05074640468715287 -11619.0,0.050728880526399074 -11620.0,0.05071136241723084 -11621.0,0.05069385035755841 -11622.0,0.05067634434529268 -11623.0,0.050658844378345336 -11624.0,0.05064135045462875 -11625.0,0.05062386257205604 -11626.0,0.05060638072854103 -11627.0,0.050588904921998246 -11628.0,0.050571435150342944 -11629.0,0.05055397141149113 -11630.0,0.05053651370335952 -11631.0,0.050519062023865496 -11632.0,0.05050161637092722 -11633.0,0.050484176742463555 -11634.0,0.0504667431363941 -11635.0,0.050449315550639105 -11636.0,0.05043189398311961 -11637.0,0.050414478431757365 -11638.0,0.05039706889447482 -11639.0,0.050379665369195116 -11640.0,0.05036226785384215 -11641.0,0.050344876346340536 -11642.0,0.05032749084461558 -11643.0,0.05031011134659336 -11644.0,0.050292737850200574 -11645.0,0.050275370353364705 -11646.0,0.05025800885401395 -11647.0,0.05024065335007723 -11648.0,0.050223303839484104 -11649.0,0.05020596032016494 -11650.0,0.05018862279005076 -11651.0,0.05017129124707337 -11652.0,0.050153965689165185 -11653.0,0.05013664611425942 -11654.0,0.05011933252028997 -11655.0,0.05010202490519148 -11656.0,0.05008472326689922 -11657.0,0.05006742760334927 -11658.0,0.05005013791247837 -11659.0,0.050032854192224016 -11660.0,0.050015576440524345 -11661.0,0.04999830465531825 -11662.0,0.049981038834545355 -11663.0,0.04996377897614596 -11664.0,0.049946525078061126 -11665.0,0.04992927713823253 -11666.0,0.049912035154602644 -11667.0,0.049894799125114624 -11668.0,0.049877569047712365 -11669.0,0.0498603449203404 -11670.0,0.04984312674094404 -11671.0,0.04982591450746927 -11672.0,0.049808708217862825 -11673.0,0.04979150787007208 -11674.0,0.04977431346204518 -11675.0,0.049757124991730954 -11676.0,0.04973994245707896 -11677.0,0.049722765856039415 -11678.0,0.04970559518656329 -11679.0,0.049688430446602254 -11680.0,0.04967127163410867 -11681.0,0.049654118747035646 -11682.0,0.049636971783336925 -11683.0,0.049619830740967014 -11684.0,0.049602695617881117 -11685.0,0.04958556641203516 -11686.0,0.04956844312138571 -11687.0,0.04955132574389011 -11688.0,0.049534214277506365 -11689.0,0.04951710872019324 -11690.0,0.049500009069910124 -11691.0,0.04948291532461716 -11692.0,0.0494658274822752 -11693.0,0.049448745540845815 -11694.0,0.049431669498291204 -11695.0,0.049414599352574334 -11696.0,0.049397535101658875 -11697.0,0.04938047674350918 -11698.0,0.04936342427609033 -11699.0,0.04934637769736805 -11700.0,0.049329337005308824 -11701.0,0.04931230219787983 -11702.0,0.04929527327304896 -11703.0,0.049278250228784744 -11704.0,0.04926123306305647 -11705.0,0.049244221773834126 -11706.0,0.0492272163590884 -11707.0,0.049210216816790636 -11708.0,0.04919322314491293 -11709.0,0.04917623534142806 -11710.0,0.04915925340430953 -11711.0,0.049142277331531474 -11712.0,0.04912530712106879 -11713.0,0.049108342770897054 -11714.0,0.04909138427899257 -11715.0,0.049074431643332264 -11716.0,0.04905748486189383 -11717.0,0.04904054393265566 -11718.0,0.0490236088535968 -11719.0,0.04900667962269706 -11720.0,0.048989756237936846 -11721.0,0.04897283869729735 -11722.0,0.04895592699876044 -11723.0,0.04893902114030868 -11724.0,0.0489221211199253 -11725.0,0.04890522693559426 -11726.0,0.0488883385853002 -11727.0,0.0488714560670285 -11728.0,0.04885457937876515 -11729.0,0.048837708518496906 -11730.0,0.0488208434842112 -11731.0,0.04880398427389617 -11732.0,0.0487871308855406 -11733.0,0.04877028331713401 -11734.0,0.04875344156666663 -11735.0,0.04873660563212935 -11736.0,0.04871977551151379 -11737.0,0.04870295120281219 -11738.0,0.048686132704017566 -11739.0,0.04866932001312358 -11740.0,0.04865251312812464 -11741.0,0.04863571204701574 -11742.0,0.048618916767792675 -11743.0,0.04860212728845188 -11744.0,0.04858534360699052 -11745.0,0.04856856572140639 -11746.0,0.048551793629698005 -11747.0,0.0485350273298646 -11748.0,0.04851826681990609 -11749.0,0.04850151209782303 -11750.0,0.04848476316161672 -11751.0,0.04846802000928914 -11752.0,0.04845128263884298 -11753.0,0.04843455104828153 -11754.0,0.04841782523560887 -11755.0,0.04840110519882973 -11756.0,0.04838439093594954 -11757.0,0.048367682444974414 -11758.0,0.04835097972391112 -11759.0,0.048334282770767165 -11760.0,0.04831759158355073 -11761.0,0.04830090616027068 -11762.0,0.048284226498936544 -11763.0,0.04826755259755857 -11764.0,0.04825088445414769 -11765.0,0.048234222066715536 -11766.0,0.04821756543327436 -11767.0,0.048200914551837164 -11768.0,0.04818426942041763 -11769.0,0.04816763003703013 -11770.0,0.04815099639968967 -11771.0,0.04813436850641199 -11772.0,0.048117746355213514 -11773.0,0.04810112994411134 -11774.0,0.04808451927112326 -11775.0,0.04806791433426771 -11776.0,0.04805131513156386 -11777.0,0.04803472166103155 -11778.0,0.04801813392069131 -11779.0,0.048001551908564324 -11780.0,0.047984975622672475 -11781.0,0.04796840506103835 -11782.0,0.047951840221685214 -11783.0,0.04793528110263696 -11784.0,0.04791872770191823 -11785.0,0.04790218001755433 -11786.0,0.04788563804757125 -11787.0,0.047869101789995615 -11788.0,0.0478525712428548 -11789.0,0.047836046404176824 -11790.0,0.04781952727199042 -11791.0,0.04780301384432493 -11792.0,0.04778650611921044 -11793.0,0.04777000409467771 -11794.0,0.04775350776875815 -11795.0,0.04773701713948391 -11796.0,0.04772053220488773 -11797.0,0.047704052963003084 -11798.0,0.04768757941186414 -11799.0,0.047671111549505735 -11800.0,0.047654649373963326 -11801.0,0.04763819288327313 -11802.0,0.04762174207547199 -11803.0,0.047605296948597484 -11804.0,0.04758885750068777 -11805.0,0.04757242372978177 -11806.0,0.04755599563391906 -11807.0,0.0475395732111399 -11808.0,0.047523156459485176 -11809.0,0.04750674537699651 -11810.0,0.047490339961716185 -11811.0,0.047473940211687146 -11812.0,0.04745754612495305 -11813.0,0.04744115769955815 -11814.0,0.047424774933547464 -11815.0,0.047408397824966635 -11816.0,0.04739202637186202 -11817.0,0.04737566057228057 -11818.0,0.04735930042427 -11819.0,0.047342945925878656 -11820.0,0.047326597075155595 -11821.0,0.04731025387015046 -11822.0,0.04729391630891367 -11823.0,0.04727758438949625 -11824.0,0.04726125810994996 -11825.0,0.04724493746832714 -11826.0,0.047228622462680885 -11827.0,0.047212313091064925 -11828.0,0.0471960093515337 -11829.0,0.04717971124214225 -11830.0,0.047163418760946346 -11831.0,0.047147131906002414 -11832.0,0.047130850675367555 -11833.0,0.047114575067099554 -11834.0,0.047098305079256816 -11835.0,0.04708204070989846 -11836.0,0.047065781957084274 -11837.0,0.04704952881887472 -11838.0,0.04703328129333088 -11839.0,0.047017039378514563 -11840.0,0.04700080307248823 -11841.0,0.04698457237331503 -11842.0,0.0469683472790587 -11843.0,0.04695212778778375 -11844.0,0.0469359138975553 -11845.0,0.04691970560643917 -11846.0,0.04690350291250179 -11847.0,0.04688730581381032 -11848.0,0.04687111430843257 -11849.0,0.046854928394436994 -11850.0,0.04683874806989277 -11851.0,0.04682257333286965 -11852.0,0.04680640418143813 -11853.0,0.04679024061366935 -11854.0,0.046774082627635126 -11855.0,0.046757930221407895 -11856.0,0.046741783393060815 -11857.0,0.04672564214066769 -11858.0,0.04670950646230299 -11859.0,0.04669337635604182 -11860.0,0.04667725181996 -11861.0,0.046661132852133975 -11862.0,0.0466450194506409 -11863.0,0.04662891161355852 -11864.0,0.04661280933896531 -11865.0,0.04659671262494038 -11866.0,0.04658062146956354 -11867.0,0.046564535870915184 -11868.0,0.046548455827076445 -11869.0,0.04653238133612908 -11870.0,0.04651631239615553 -11871.0,0.0465002490052389 -11872.0,0.046484191161462914 -11873.0,0.04646813886291199 -11874.0,0.046452092107671226 -11875.0,0.046436050893826374 -11876.0,0.04642001521946379 -11877.0,0.04640398508267056 -11878.0,0.0463879604815344 -11879.0,0.04637194141414372 -11880.0,0.04635592787858752 -11881.0,0.046339919872955514 -11882.0,0.04632391739533807 -11883.0,0.04630792044382623 -11884.0,0.046291929016511635 -11885.0,0.04627594311148663 -11886.0,0.04625996272684424 -11887.0,0.0462439878606781 -11888.0,0.046228018511082554 -11889.0,0.04621205467615253 -11890.0,0.04619609635398368 -11891.0,0.0461801435426723 -11892.0,0.04616419624031535 -11893.0,0.04614825444501039 -11894.0,0.0461323181548557 -11895.0,0.04611638736795021 -11896.0,0.0461004620823935 -11897.0,0.04608454229628575 -11898.0,0.046068628007727895 -11899.0,0.04605271921482145 -11900.0,0.04603681591566865 -11901.0,0.04602091810837229 -11902.0,0.04600502579103591 -11903.0,0.04598913896176367 -11904.0,0.045973257618660404 -11905.0,0.04595738175983155 -11906.0,0.045941511383383246 -11907.0,0.04592564648742228 -11908.0,0.04590978707005607 -11909.0,0.045893933129392744 -11910.0,0.04587808466354099 -11911.0,0.045862241670610225 -11912.0,0.045846404148710496 -11913.0,0.04583057209595252 -11914.0,0.045814745510447605 -11915.0,0.045798924390307784 -11916.0,0.0457831087336457 -11917.0,0.0457672985385747 -11918.0,0.045751493803208684 -11919.0,0.04573569452566229 -11920.0,0.04571990070405078 -11921.0,0.045704112336490084 -11922.0,0.04568832942109673 -11923.0,0.04567255195598794 -11924.0,0.04565677993928159 -11925.0,0.045641013369096185 -11926.0,0.04562525224355092 -11927.0,0.04560949656076555 -11928.0,0.04559374631886057 -11929.0,0.04557800151595708 -11930.0,0.04556226215017688 -11931.0,0.045546528219642314 -11932.0,0.04553079972247647 -11933.0,0.04551507665680306 -11934.0,0.04549935902074644 -11935.0,0.04548364681243159 -11936.0,0.045467940029984166 -11937.0,0.04545223867153046 -11938.0,0.04543654273519745 -11939.0,0.04542085221911267 -11940.0,0.04540516712140438 -11941.0,0.04538948744020147 -11942.0,0.045373813173633475 -11943.0,0.04535814431983054 -11944.0,0.045342480876923504 -11945.0,0.045326822843043825 -11946.0,0.04531117021632362 -11947.0,0.04529552299489566 -11948.0,0.045279881176893313 -11949.0,0.045264244760450635 -11950.0,0.04524861374370232 -11951.0,0.04523298812478373 -11952.0,0.04521736790183079 -11953.0,0.04520175307298015 -11954.0,0.04518614363636906 -11955.0,0.04517053959013547 -11956.0,0.04515494093241788 -11957.0,0.045139347661355494 -11958.0,0.04512375977508817 -11959.0,0.04510817727175638 -11960.0,0.045092600149501234 -11961.0,0.04507702840646449 -11962.0,0.04506146204078857 -11963.0,0.04504590105061652 -11964.0,0.045030345434092026 -11965.0,0.0450147951893594 -11966.0,0.04499925031456362 -11967.0,0.044983710807850304 -11968.0,0.04496817666736571 -11969.0,0.0449526478912567 -11970.0,0.04493712447767081 -11971.0,0.044921606424756226 -11972.0,0.04490609373066177 -11973.0,0.044890586393536845 -11974.0,0.04487508441153157 -11975.0,0.04485958778279667 -11976.0,0.044844096505483516 -11977.0,0.044828610577744094 -11978.0,0.044813129997731044 -11979.0,0.044797654763597664 -11980.0,0.044782184873497874 -11981.0,0.0447667203255862 -11982.0,0.04475126111801786 -11983.0,0.04473580724894867 -11984.0,0.0447203587165351 -11985.0,0.04470491551893427 -11986.0,0.04468947765430389 -11987.0,0.04467404512080234 -11988.0,0.04465861791658865 -11989.0,0.044643196039822475 -11990.0,0.04462777948866406 -11991.0,0.044612368261274335 -11992.0,0.04459696235581487 -11993.0,0.04458156177044786 -11994.0,0.044566166503336085 -11995.0,0.04455077655264303 -11996.0,0.04453539191653278 -11997.0,0.04452001259317009 -11998.0,0.04450463858072027 -11999.0,0.04448926987734934 -12000.0,0.04447390648122391 -12001.0,0.044458548390511256 -12002.0,0.044443195603379275 -12003.0,0.044427848117996466 -12004.0,0.044412505932532 -12005.0,0.044397169045155664 -12006.0,0.044381837454037905 -12007.0,0.04436651115734973 -12008.0,0.04435119015326284 -12009.0,0.04433587443994956 -12010.0,0.044320564015582854 -12011.0,0.04430525887833626 -12012.0,0.044289959026384 -12013.0,0.04427466445790093 -12014.0,0.04425937517106252 -12015.0,0.04424409116404484 -12016.0,0.04422881243502464 -12017.0,0.04421353898217927 -12018.0,0.044198270803686754 -12019.0,0.044183007897725654 -12020.0,0.04416775026247524 -12021.0,0.0441524978961154 -12022.0,0.04413725079682663 -12023.0,0.044122008962790074 -12024.0,0.04410677239218746 -12025.0,0.0440915410832012 -12026.0,0.0440763150340143 -12027.0,0.044061094242810434 -12028.0,0.04404587870777382 -12029.0,0.044030668427089394 -12030.0,0.04401546339894266 -12031.0,0.0440002636215198 -12032.0,0.04398506909300755 -12033.0,0.04396987981159333 -12034.0,0.04395469577546518 -12035.0,0.04393951698281177 -12036.0,0.043924343431822326 -12037.0,0.043909175120686796 -12038.0,0.0438940120475957 -12039.0,0.04387885421074019 -12040.0,0.04386370160831208 -12041.0,0.04384855423850372 -12042.0,0.043833412099508175 -12043.0,0.043818275189519085 -12044.0,0.04380314350673075 -12045.0,0.04378801704933804 -12046.0,0.043772895815536485 -12047.0,0.04375777980352224 -12048.0,0.04374266901149209 -12049.0,0.04372756343764339 -12050.0,0.04371246308017418 -12051.0,0.04369736793728309 -12052.0,0.04368227800716941 -12053.0,0.043667193288032966 -12054.0,0.04365211377807429 -12055.0,0.043637039475494514 -12056.0,0.04362197037849539 -12057.0,0.04360690648527925 -12058.0,0.04359184779404911 -12059.0,0.04357679430300856 -12060.0,0.043561746010361835 -12061.0,0.04354670291431381 -12062.0,0.04353166501306991 -12063.0,0.04351663230483624 -12064.0,0.04350160478781952 -12065.0,0.043486582460227075 -12066.0,0.043471565320266824 -12067.0,0.04345655336614735 -12068.0,0.043441546596077844 -12069.0,0.04342654500826811 -12070.0,0.043411548600928544 -12071.0,0.0433965573722702 -12072.0,0.04338157132050473 -12073.0,0.04336659044384443 -12074.0,0.04335161474050215 -12075.0,0.04333664420869141 -12076.0,0.043321678846626355 -12077.0,0.043306718652521704 -12078.0,0.043291763624592854 -12079.0,0.04327681376105572 -12080.0,0.043261869060126926 -12081.0,0.04324692952002368 -12082.0,0.04323199513896381 -12083.0,0.04321706591516573 -12084.0,0.043202141846848494 -12085.0,0.04318722293223178 -12086.0,0.0431723091695359 -12087.0,0.04315740055698169 -12088.0,0.0431424970927907 -12089.0,0.04312759877518504 -12090.0,0.04311270560238748 -12091.0,0.04309781757262133 -12092.0,0.04308293468411057 -12093.0,0.04306805693507979 -12094.0,0.043053184323754205 -12095.0,0.04303831684835956 -12096.0,0.043023454507122326 -12097.0,0.04300859729826951 -12098.0,0.04299374522002876 -12099.0,0.042978898270628355 -12100.0,0.042964056448297115 -12101.0,0.04294921975126455 -12102.0,0.04293438817776074 -12103.0,0.042919561726016416 -12104.0,0.04290474039426284 -12105.0,0.04288992418073197 -12106.0,0.04287511308365632 -12107.0,0.04286030710126907 -12108.0,0.04284550623180392 -12109.0,0.04283071047349527 -12110.0,0.042815919824578094 -12111.0,0.042801134283287974 -12112.0,0.042786353847861086 -12113.0,0.042771578516534244 -12114.0,0.04275680828754485 -12115.0,0.04274204315913094 -12116.0,0.04272728312953114 -12117.0,0.042712528196984664 -12118.0,0.042697778359731375 -12119.0,0.042683033616011716 -12120.0,0.042668293964066774 -12121.0,0.04265355940213818 -12122.0,0.04263882992846821 -12123.0,0.04262410554129976 -12124.0,0.042609386238876334 -12125.0,0.04259467201944199 -12126.0,0.04257996288124145 -12127.0,0.04256525882252001 -12128.0,0.04255055984152361 -12129.0,0.04253586593649873 -12130.0,0.04252117710569252 -12131.0,0.042506493347352695 -12132.0,0.04249181465972762 -12133.0,0.042477141041066195 -12134.0,0.04246247248961798 -12135.0,0.042447809003633125 -12136.0,0.042433150581362385 -12137.0,0.04241849722105713 -12138.0,0.04240384892096929 -12139.0,0.04238920567935144 -12140.0,0.04237456749445676 -12141.0,0.04235993436453903 -12142.0,0.0423453062878526 -12143.0,0.04233068326265245 -12144.0,0.042316065287194164 -12145.0,0.042301452359733954 -12146.0,0.04228684447852855 -12147.0,0.042272241641835365 -12148.0,0.04225764384791239 -12149.0,0.04224305109501823 -12150.0,0.04222846338141204 -12151.0,0.04221388070535363 -12152.0,0.04219930306510339 -12153.0,0.04218473045892232 -12154.0,0.04217016288507203 -12155.0,0.04215560034181467 -12156.0,0.042141042827413065 -12157.0,0.04212649034013061 -12158.0,0.0421119428782313 -12159.0,0.04209740043997971 -12160.0,0.04208286302364105 -12161.0,0.04206833062748112 -12162.0,0.0420538032497663 -12163.0,0.04203928088876357 -12164.0,0.042024763542740526 -12165.0,0.042010251209965356 -12166.0,0.04199574388870686 -12167.0,0.04198124157723439 -12168.0,0.04196674427381794 -12169.0,0.04195225197672809 -12170.0,0.04193776468423603 -12171.0,0.0419232823946135 -12172.0,0.04190880510613288 -12173.0,0.041894332817067136 -12174.0,0.04187986552568984 -12175.0,0.041865403230275156 -12176.0,0.0418509459290978 -12177.0,0.041836493620433145 -12178.0,0.04182204630255714 -12179.0,0.04180760397374634 -12180.0,0.04179316663227784 -12181.0,0.04177873427642939 -12182.0,0.04176430690447932 -12183.0,0.041749884514706556 -12184.0,0.0417354671053906 -12185.0,0.04172105467481155 -12186.0,0.04170664722125012 -12187.0,0.04169224474298763 -12188.0,0.04167784723830593 -12189.0,0.04166345470548751 -12190.0,0.041649067142815466 -12191.0,0.04163468454857345 -12192.0,0.04162030692104574 -12193.0,0.04160593425851717 -12194.0,0.04159156655927319 -12195.0,0.041577203821599844 -12196.0,0.041562846043783776 -12197.0,0.04154849322411218 -12198.0,0.041534145360872875 -12199.0,0.04151980245235428 -12200.0,0.0415054644968454 -12201.0,0.04149113149263578 -12202.0,0.04147680343801562 -12203.0,0.0414624803312757 -12204.0,0.04144816217070738 -12205.0,0.04143384895460257 -12206.0,0.04141954068125384 -12207.0,0.041405237348954314 -12208.0,0.041390938955997714 -12209.0,0.04137664550067832 -12210.0,0.04136235698129105 -12211.0,0.04134807339613138 -12212.0,0.041333794743495376 -12213.0,0.04131952102167973 -12214.0,0.04130525222898165 -12215.0,0.04129098836369899 -12216.0,0.041276729424130174 -12217.0,0.04126247540857424 -12218.0,0.04124822631533073 -12219.0,0.04123398214269988 -12220.0,0.04121974288898245 -12221.0,0.04120550855247981 -12222.0,0.04119127913149388 -12223.0,0.04117705462432722 -12224.0,0.04116283502928293 -12225.0,0.04114862034466475 -12226.0,0.04113441056877693 -12227.0,0.04112020569992437 -12228.0,0.04110600573641253 -12229.0,0.04109181067654745 -12230.0,0.041077620518635796 -12231.0,0.041063435260984736 -12232.0,0.041049254901902095 -12233.0,0.04103507943969626 -12234.0,0.041020908872676225 -12235.0,0.0410067431991515 -12236.0,0.04099258241743225 -12237.0,0.040978426525829184 -12238.0,0.04096427552265364 -12239.0,0.04095012940621746 -12240.0,0.040935988174833134 -12241.0,0.040921851826813724 -12242.0,0.04090772036047288 -12243.0,0.040893593774124784 -12244.0,0.04087947206608426 -12245.0,0.04086535523466669 -12246.0,0.040851243278188044 -12247.0,0.04083713619496485 -12248.0,0.04082303398331425 -12249.0,0.040808936641553946 -12250.0,0.040794844168002234 -12251.0,0.040780756560978 -12252.0,0.04076667381880066 -12253.0,0.04075259593979026 -12254.0,0.04073852292226742 -12255.0,0.040724454764553344 -12256.0,0.04071039146496976 -12257.0,0.04069633302183906 -12258.0,0.040682279433484146 -12259.0,0.040668230698228565 -12260.0,0.040654186814396365 -12261.0,0.04064014778031222 -12262.0,0.04062611359430139 -12263.0,0.04061208425468971 -12264.0,0.04059805975980355 -12265.0,0.040584040107969906 -12266.0,0.040570025297516334 -12267.0,0.04055601532677097 -12268.0,0.04054201019406255 -12269.0,0.04052800989772031 -12270.0,0.04051401443607416 -12271.0,0.04050002380745453 -12272.0,0.04048603801019245 -12273.0,0.040472057042619504 -12274.0,0.04045808090306786 -12275.0,0.04044410958987027 -12276.0,0.04043014310136009 -12277.0,0.04041618143587117 -12278.0,0.040402224591738006 -12279.0,0.04038827256729565 -12280.0,0.04037432536087975 -12281.0,0.04036038297082646 -12282.0,0.04034644539547258 -12283.0,0.04033251263315546 -12284.0,0.040318584682213034 -12285.0,0.04030466154098376 -12286.0,0.04029074320780674 -12287.0,0.040276829681021614 -12288.0,0.04026292095896859 -12289.0,0.0402490170399885 -12290.0,0.04023511792242264 -12291.0,0.040221223604612985 -12292.0,0.04020733408490204 -12293.0,0.0401934493616329 -12294.0,0.040179569433149195 -12295.0,0.04016569429779516 -12296.0,0.040151823953915595 -12297.0,0.04013795839985588 -12298.0,0.04012409763396193 -12299.0,0.04011024165458026 -12300.0,0.040096390460057973 -12301.0,0.04008254404874273 -12302.0,0.040068702418982714 -12303.0,0.04005486556912674 -12304.0,0.04004103349752418 -12305.0,0.040027206202524965 -12306.0,0.040013383682479614 -12307.0,0.03999956593573917 -12308.0,0.03998575296065529 -12309.0,0.03997194475558019 -12310.0,0.039958141318866665 -12311.0,0.039944342648868036 -12312.0,0.03993054874393824 -12313.0,0.03991675960243176 -12314.0,0.039902975222703675 -12315.0,0.039889195603109565 -12316.0,0.03987542074200565 -12317.0,0.039861650637748686 -12318.0,0.03984788528869601 -12319.0,0.03983412469320549 -12320.0,0.03982036884963561 -12321.0,0.03980661775634538 -12322.0,0.03979287141169443 -12323.0,0.03977912981404287 -12324.0,0.03976539296175146 -12325.0,0.03975166085318149 -12326.0,0.03973793348669481 -12327.0,0.03972421086065388 -12328.0,0.03971049297342164 -12329.0,0.03969677982336167 -12330.0,0.03968307140883809 -12331.0,0.0396693677282156 -12332.0,0.03965566877985943 -12333.0,0.0396419745621354 -12334.0,0.03962828507340989 -12335.0,0.039614600312049865 -12336.0,0.0396009202764228 -12337.0,0.039587244964896774 -12338.0,0.03957357437584043 -12339.0,0.03955990850762298 -12340.0,0.039546247358614166 -12341.0,0.03953259092718431 -12342.0,0.0395189392117043 -12343.0,0.0395052922105456 -12344.0,0.03949164992208023 -12345.0,0.03947801234468073 -12346.0,0.039464379476720254 -12347.0,0.03945075131657251 -12348.0,0.03943712786261176 -12349.0,0.039423509113212796 -12350.0,0.03940989506675103 -12351.0,0.039396285721602385 -12352.0,0.03938268107614339 -12353.0,0.039369081128751086 -12354.0,0.03935548587780311 -12355.0,0.03934189532167764 -12356.0,0.039328309458753444 -12357.0,0.03931472828740979 -12358.0,0.03930115180602657 -12359.0,0.039287580012984206 -12360.0,0.03927401290666369 -12361.0,0.03926045048544654 -12362.0,0.03924689274771487 -12363.0,0.039233339691851346 -12364.0,0.03921979131623918 -12365.0,0.039206247619262176 -12366.0,0.039192708599304626 -12367.0,0.039179174254751446 -12368.0,0.039165644583988087 -12369.0,0.03915211958540057 -12370.0,0.03913859925737544 -12371.0,0.03912508359829982 -12372.0,0.0391115726065614 -12373.0,0.03909806628054844 -12374.0,0.03908456461864969 -12375.0,0.039071067619254524 -12376.0,0.03905757528075284 -12377.0,0.039044087601535125 -12378.0,0.039030604579992356 -12379.0,0.03901712621451613 -12380.0,0.03900365250349858 -12381.0,0.03899018344533239 -12382.0,0.0389767190384108 -12383.0,0.03896325928112759 -12384.0,0.038949804171877114 -12385.0,0.03893635370905428 -12386.0,0.03892290789105456 -12387.0,0.03890946671627394 -12388.0,0.038896030183109 -12389.0,0.03888259828995685 -12390.0,0.03886917103521519 -12391.0,0.03885574841728221 -12392.0,0.038842330434556704 -12393.0,0.03882891708543801 -12394.0,0.03881550836832603 -12395.0,0.038802104281621154 -12396.0,0.03878870482372441 -12397.0,0.03877530999303733 -12398.0,0.03876191978796202 -12399.0,0.038748534206901095 -12400.0,0.038735153248257784 -12401.0,0.038721776910435816 -12402.0,0.038708405191839504 -12403.0,0.038695038090873705 -12404.0,0.03868167560594381 -12405.0,0.03866831773545576 -12406.0,0.03865496447781608 -12407.0,0.03864161583143183 -12408.0,0.03862827179471058 -12409.0,0.038614932366060506 -12410.0,0.038601597543890316 -12411.0,0.03858826732660926 -12412.0,0.03857494171262713 -12413.0,0.03856162070035428 -12414.0,0.038548304288201614 -12415.0,0.0385349924745806 -12416.0,0.0385216852579032 -12417.0,0.038508382636581975 -12418.0,0.03849508460903003 -12419.0,0.03848179117366098 -12420.0,0.03846850232888906 -12421.0,0.038455218073128974 -12422.0,0.038441938404796004 -12423.0,0.038428663322305996 -12424.0,0.03841539282407534 -12425.0,0.038402126908520934 -12426.0,0.038388865574060266 -12427.0,0.03837560881911136 -12428.0,0.03836235664209279 -12429.0,0.038349109041423635 -12430.0,0.03833586601552357 -12431.0,0.03832262756281281 -12432.0,0.03830939368171211 -12433.0,0.03829616437064273 -12434.0,0.03828293962802653 -12435.0,0.0382697194522859 -12436.0,0.03825650384184377 -12437.0,0.0382432927951236 -12438.0,0.03823008631054941 -12439.0,0.03821688438654577 -12440.0,0.038203687021537786 -12441.0,0.038190494213951126 -12442.0,0.03817730596221195 -12443.0,0.03816412226474701 -12444.0,0.038150943119983585 -12445.0,0.03813776852634953 -12446.0,0.03812459848227316 -12447.0,0.03811143298618341 -12448.0,0.03809827203650974 -12449.0,0.03808511563168215 -12450.0,0.03807196377013115 -12451.0,0.03805881645028782 -12452.0,0.038045673670583806 -12453.0,0.038032535429451265 -12454.0,0.038019401725322886 -12455.0,0.038006272556631915 -12456.0,0.037993147921812145 -12457.0,0.0379800278192979 -12458.0,0.03796691224752407 -12459.0,0.03795380120492602 -12460.0,0.03794069468993972 -12461.0,0.03792759270100166 -12462.0,0.03791449523654889 -12463.0,0.037901402295018934 -12464.0,0.037888313874849915 -12465.0,0.03787522997448049 -12466.0,0.037862150592349854 -12467.0,0.037849075726897705 -12468.0,0.03783600537656432 -12469.0,0.0378229395397905 -12470.0,0.0378098782150176 -12471.0,0.03779682140068748 -12472.0,0.03778376909524255 -12473.0,0.03777072129712579 -12474.0,0.0377576780047807 -12475.0,0.03774463921665127 -12476.0,0.03773160493118209 -12477.0,0.03771857514681827 -12478.0,0.037705549862005444 -12479.0,0.03769252907518981 -12480.0,0.03767951278481805 -12481.0,0.03766650098933743 -12482.0,0.037653493687195734 -12483.0,0.037640490876841314 -12484.0,0.03762749255672299 -12485.0,0.03761449872529017 -12486.0,0.03760150938099279 -12487.0,0.037588524522281334 -12488.0,0.03757554414760676 -12489.0,0.037562568255420634 -12490.0,0.03754959684417502 -12491.0,0.03753662991232253 -12492.0,0.03752366745831629 -12493.0,0.03751070948060998 -12494.0,0.0374977559776578 -12495.0,0.037484806947914506 -12496.0,0.03747186238983538 -12497.0,0.0374589223018762 -12498.0,0.03744598668249333 -12499.0,0.037433055530143644 -12500.0,0.03742012884328456 -12501.0,0.03740720662037398 -12502.0,0.03739428885987041 -12503.0,0.03738137556023284 -12504.0,0.03736846671992084 -12505.0,0.03735556233739443 -12506.0,0.03734266241111424 -12507.0,0.03732976693954139 -12508.0,0.037316875921137575 -12509.0,0.03730398935436495 -12510.0,0.03729110723768626 -12511.0,0.037278229569564766 -12512.0,0.037265356348464264 -12513.0,0.03725248757284904 -12514.0,0.03723962324118397 -12515.0,0.03722676335193442 -12516.0,0.03721390790356631 -12517.0,0.03720105689454609 -12518.0,0.037188210323340694 -12519.0,0.03717536818841764 -12520.0,0.03716253048824495 -12521.0,0.0371496972212912 -12522.0,0.03713686838602545 -12523.0,0.037124043980917315 -12524.0,0.03711122400443694 -12525.0,0.03709840845505502 -12526.0,0.03708559733124271 -12527.0,0.037072790631471765 -12528.0,0.03705998835421443 -12529.0,0.03704719049794351 -12530.0,0.03703439706113227 -12531.0,0.03702160804225457 -12532.0,0.037008823439784774 -12533.0,0.03699604325219777 -12534.0,0.03698326747796899 -12535.0,0.036970496115574354 -12536.0,0.036957729163490334 -12537.0,0.036944966620193934 -12538.0,0.03693220848416269 -12539.0,0.03691945475387462 -12540.0,0.03690670542780831 -12541.0,0.03689396050444285 -12542.0,0.0368812199822579 -12543.0,0.036868483859733556 -12544.0,0.03685575213535052 -12545.0,0.03684302480758999 -12546.0,0.0368303018749337 -12547.0,0.03681758333586386 -12548.0,0.03680486918886326 -12549.0,0.036792159432415206 -12550.0,0.036779454065003526 -12551.0,0.03676675308511252 -12552.0,0.03675405649122709 -12553.0,0.036741364281832604 -12554.0,0.036728676455414985 -12555.0,0.03671599301046068 -12556.0,0.036703313945456624 -12557.0,0.0366906392588903 -12558.0,0.036677968949249726 -12559.0,0.03666530301502342 -12560.0,0.036652641454700416 -12561.0,0.036639984266770294 -12562.0,0.03662733144972313 -12563.0,0.03661468300204957 -12564.0,0.036602038922240704 -12565.0,0.036589399208788204 -12566.0,0.03657676386018425 -12567.0,0.03656413287492154 -12568.0,0.03655150625149327 -12569.0,0.03653888398839318 -12570.0,0.036526266084115536 -12571.0,0.03651365253715511 -12572.0,0.03650104334600722 -12573.0,0.03648843850916764 -12574.0,0.036475838025132726 -12575.0,0.03646324189239933 -12576.0,0.03645065010946484 -12577.0,0.036438062674827125 -12578.0,0.0364254795869846 -12579.0,0.0364129008444362 -12580.0,0.03640032644568139 -12581.0,0.0363877563892201 -12582.0,0.03637519067355283 -12583.0,0.03636262929718059 -12584.0,0.036350072258604905 -12585.0,0.03633751955632779 -12586.0,0.03632497118885181 -12587.0,0.03631242715468003 -12588.0,0.036299887452316056 -12589.0,0.03628735208026397 -12590.0,0.0362748210370284 -12591.0,0.03626229432111449 -12592.0,0.036249771931027894 -12593.0,0.0362372538652748 -12594.0,0.036224740122361855 -12595.0,0.03621223070079628 -12596.0,0.03619972559908579 -12597.0,0.03618722481573863 -12598.0,0.03617472834926354 -12599.0,0.036162236198169766 -12600.0,0.036149748360967106 -12601.0,0.036137264836165854 -12602.0,0.0361247856222768 -12603.0,0.03611231071781127 -12604.0,0.036099840121281104 -12605.0,0.03608737383119866 -12606.0,0.03607491184607678 -12607.0,0.03606245416442884 -12608.0,0.03605000078476875 -12609.0,0.03603755170561089 -12610.0,0.03602510692547021 -12611.0,0.03601266644286209 -12612.0,0.03600023025630251 -12613.0,0.035987798364307905 -12614.0,0.03597537076539526 -12615.0,0.035962947458082026 -12616.0,0.035950528440886205 -12617.0,0.035938113712326296 -12618.0,0.03592570327092134 -12619.0,0.03591329711519081 -12620.0,0.03590089524365478 -12621.0,0.03588849765483378 -12622.0,0.0358761043472489 -12623.0,0.03586371531942167 -12624.0,0.035851330569874176 -12625.0,0.035838950097129015 -12626.0,0.03582657389970931 -12627.0,0.035814201976138625 -12628.0,0.0358018343249411 -12629.0,0.035789470944641376 -12630.0,0.03577711183376458 -12631.0,0.03576475699083637 -12632.0,0.03575240641438289 -12633.0,0.035740060102930814 -12634.0,0.03572771805500731 -12635.0,0.03571538026914009 -12636.0,0.035703046743857304 -12637.0,0.03569071747768767 -12638.0,0.0356783924691604 -12639.0,0.03566607171680523 -12640.0,0.03565375521915234 -12641.0,0.035641442974732485 -12642.0,0.0356291349820769 -12643.0,0.03561683123971736 -12644.0,0.035604531746186066 -12645.0,0.03559223650001581 -12646.0,0.03557994549973986 -12647.0,0.03556765874389198 -12648.0,0.035555376231006464 -12649.0,0.035543097959618075 -12650.0,0.035530823928262116 -12651.0,0.03551855413547438 -12652.0,0.03550628857979119 -12653.0,0.03549402725974933 -12654.0,0.035481770173886124 -12655.0,0.035469517320739385 -12656.0,0.03545726869884746 -12657.0,0.035445024306749146 -12658.0,0.035432784142983786 -12659.0,0.035420548206091224 -12660.0,0.03540831649461182 -12661.0,0.03539608900708638 -12662.0,0.03538386574205628 -12663.0,0.035371646698063364 -12664.0,0.03535943187365 -12665.0,0.035347221267359036 -12666.0,0.03533501487773384 -12667.0,0.03532281270331828 -12668.0,0.035310614742656725 -12669.0,0.03529842099429406 -12670.0,0.03528623145677563 -12671.0,0.03527404612864733 -12672.0,0.035261865008455545 -12673.0,0.03524968809474716 -12674.0,0.035237515386069534 -12675.0,0.035225346880970565 -12676.0,0.03521318257799864 -12677.0,0.03520102247570266 -12678.0,0.03518886657263198 -12679.0,0.03517671486733652 -12680.0,0.03516456735836665 -12681.0,0.03515242404427328 -12682.0,0.03514028492360779 -12683.0,0.03512814999492206 -12684.0,0.035116019256768494 -12685.0,0.03510389270769999 -12686.0,0.03509177034626994 -12687.0,0.03507965217103221 -12688.0,0.035067538180541216 -12689.0,0.035055428373351835 -12690.0,0.03504332274801947 -12691.0,0.035031221303099984 -12692.0,0.035019124037149775 -12693.0,0.035007030948725724 -12694.0,0.034994942036385236 -12695.0,0.03498285729868616 -12696.0,0.03497077673418689 -12697.0,0.03495870034144629 -12698.0,0.03494662811902377 -12699.0,0.03493456006547916 -12700.0,0.03492249617937285 -12701.0,0.03491043645926569 -12702.0,0.034898380903719065 -12703.0,0.03488632951129485 -12704.0,0.03487428228055535 -12705.0,0.03486223921006345 -12706.0,0.0348502002983825 -12707.0,0.03483816554407635 -12708.0,0.03482613494570932 -12709.0,0.034814108501846255 -12710.0,0.034802086211052505 -12711.0,0.034790068071893894 -12712.0,0.03477805408293672 -12713.0,0.034766044242747825 -12714.0,0.03475403854989452 -12715.0,0.03474203700294462 -12716.0,0.03473003960046641 -12717.0,0.034718046341028694 -12718.0,0.03470605722320076 -12719.0,0.034694072245552425 -12720.0,0.03468209140665392 -12721.0,0.03467011470507604 -12722.0,0.03465814213939006 -12723.0,0.03464617370816773 -12724.0,0.03463420940998132 -12725.0,0.03462224924340355 -12726.0,0.034610293207007675 -12727.0,0.03459834129936742 -12728.0,0.03458639351905703 -12729.0,0.03457444986465119 -12730.0,0.034562510334725134 -12731.0,0.034550574927854544 -12732.0,0.03453864364261564 -12733.0,0.03452671647758508 -12734.0,0.03451479343134005 -12735.0,0.03450287450245821 -12736.0,0.03449095968951775 -12737.0,0.03447904899109728 -12738.0,0.034467142405775954 -12739.0,0.034455239932133404 -12740.0,0.03444334156874975 -12741.0,0.03443144731420563 -12742.0,0.03441955716708211 -12743.0,0.03440767112596079 -12744.0,0.03439578918942376 -12745.0,0.0343839113560536 -12746.0,0.03437203762443335 -12747.0,0.03436016799314657 -12748.0,0.0343483024607773 -12749.0,0.03433644102591009 -12750.0,0.034324583687129914 -12751.0,0.0343127304430223 -12752.0,0.03430088129217324 -12753.0,0.03428903623316924 -12754.0,0.034277195264597236 -12755.0,0.03426535838504469 -12756.0,0.034253525593099576 -12757.0,0.03424169688735031 -12758.0,0.03422987226638581 -12759.0,0.03421805172879549 -12760.0,0.034206235273169246 -12761.0,0.03419442289809746 -12762.0,0.034182614602171014 -12763.0,0.034170810383981245 -12764.0,0.03415901024212 -12765.0,0.034147214175179616 -12766.0,0.03413542218175292 -12767.0,0.034123634260433175 -12768.0,0.034111850409814196 -12769.0,0.03410007062849025 -12770.0,0.034088294915056105 -12771.0,0.034076523268106985 -12772.0,0.034064755686238624 -12773.0,0.03405299216804724 -12774.0,0.03404123271212955 -12775.0,0.034029477317082696 -12776.0,0.03401772598150437 -12777.0,0.03400597870399272 -12778.0,0.033994235483146375 -12779.0,0.03398249631756448 -12780.0,0.033970761205846606 -12781.0,0.03395903014659284 -12782.0,0.03394730313840377 -12783.0,0.033935580179880465 -12784.0,0.03392386126962442 -12785.0,0.03391214640623767 -12786.0,0.03390043558832273 -12787.0,0.033888728814482585 -12788.0,0.03387702608332068 -12789.0,0.03386532739344098 -12790.0,0.033853632743447916 -12791.0,0.03384194213194641 -12792.0,0.03383025555754184 -12793.0,0.03381857301884009 -12794.0,0.033806894514447516 -12795.0,0.033795220042970975 -12796.0,0.03378354960301776 -12797.0,0.03377188319319568 -12798.0,0.03376022081211302 -12799.0,0.03374856245837856 -12800.0,0.03373690813060153 -12801.0,0.03372525782739165 -12802.0,0.03371361154735912 -12803.0,0.03370196928911463 -12804.0,0.03369033105126937 -12805.0,0.033678696832434935 -12806.0,0.033667066631223465 -12807.0,0.03365544044624757 -12808.0,0.03364381827612034 -12809.0,0.033632200119455315 -12810.0,0.033620585974866536 -12811.0,0.03360897584096852 -12812.0,0.033597369716376294 -12813.0,0.03358576759970528 -12814.0,0.03357416948957146 -12815.0,0.03356257538459126 -12816.0,0.03355098528338159 -12817.0,0.033539399184559844 -12818.0,0.03352781708674386 -12819.0,0.033516238988551994 -12820.0,0.033504664888603056 -12821.0,0.03349309478551637 -12822.0,0.03348152867791166 -12823.0,0.0334699665644092 -12824.0,0.03345840844362971 -12825.0,0.033446854314194405 -12826.0,0.033435304174724935 -12827.0,0.03342375802384346 -12828.0,0.033412215860172616 -12829.0,0.033400677682335525 -12830.0,0.033389143488955726 -12831.0,0.03337761327865729 -12832.0,0.03336608705006476 -12833.0,0.03335456480180314 -12834.0,0.033343046532497894 -12835.0,0.03333153224077498 -12836.0,0.03332002192526083 -12837.0,0.03330851558458235 -12838.0,0.03329701321736693 -12839.0,0.033285514822242394 -12840.0,0.03327402039783708 -12841.0,0.033262529942779784 -12842.0,0.033251043455699805 -12843.0,0.03323956093522684 -12844.0,0.03322808237999114 -12845.0,0.0332166077886234 -12846.0,0.033205137159754775 -12847.0,0.0331936704920169 -12848.0,0.033182207784041885 -12849.0,0.033170749034462314 -12850.0,0.03315929424191126 -12851.0,0.03314784340502222 -12852.0,0.03313639652242921 -12853.0,0.03312495359276669 -12854.0,0.03311351461466961 -12855.0,0.0331020795867734 -12856.0,0.03309064850771391 -12857.0,0.03307922137612752 -12858.0,0.03306779819065104 -12859.0,0.03305637894992179 -12860.0,0.03304496365257751 -12861.0,0.03303355229725645 -12862.0,0.033022144882597325 -12863.0,0.03301074140723932 -12864.0,0.03299934186982206 -12865.0,0.03298794626898568 -12866.0,0.03297655460337076 -12867.0,0.03296516687161838 -12868.0,0.03295378307237003 -12869.0,0.03294240320426772 -12870.0,0.03293102726595393 -12871.0,0.03291965525607158 -12872.0,0.03290828717326407 -12873.0,0.03289692301617527 -12874.0,0.03288556278344953 -12875.0,0.03287420647373165 -12876.0,0.032862854085666915 -12877.0,0.032851505617901046 -12878.0,0.03284016106908026 -12879.0,0.03282882043785125 -12880.0,0.03281748372286117 -12881.0,0.03280615092275759 -12882.0,0.03279482203618862 -12883.0,0.0327834970618028 -12884.0,0.03277217599824916 -12885.0,0.03276085884417715 -12886.0,0.03274954559823673 -12887.0,0.03273823625907831 -12888.0,0.03272693082535279 -12889.0,0.03271562929571147 -12890.0,0.032704331668806194 -12891.0,0.032693037943289226 -12892.0,0.032681748117813304 -12893.0,0.03267046219103166 -12894.0,0.032659180161597925 -12895.0,0.032647902028166254 -12896.0,0.032636627789391255 -12897.0,0.032625357443928 -12898.0,0.032614090990431985 -12899.0,0.03260282842755923 -12900.0,0.03259156975396619 -12901.0,0.0325803149683098 -12902.0,0.032569064069247415 -12903.0,0.0325578170554369 -12904.0,0.03254657392553657 -12905.0,0.03253533467820522 -12906.0,0.03252409931210205 -12907.0,0.03251286782588679 -12908.0,0.0325016402182196 -12909.0,0.03249041648776112 -12910.0,0.03247919663317241 -12911.0,0.03246798065311505 -12912.0,0.03245676854625105 -12913.0,0.03244556031124288 -12914.0,0.03243435594675349 -12915.0,0.03242315545144627 -12916.0,0.032411958823985086 -12917.0,0.03240076606303426 -12918.0,0.0323895771672586 -12919.0,0.032378392135323314 -12920.0,0.03236721096589413 -12921.0,0.032356033657637215 -12922.0,0.03234486020921921 -12923.0,0.03233369061930718 -12924.0,0.03232252488656868 -12925.0,0.032311363009671724 -12926.0,0.0323002049872848 -12927.0,0.03228905081807681 -12928.0,0.03227790050071715 -12929.0,0.03226675403387567 -12930.0,0.03225561141622267 -12931.0,0.03224447264642895 -12932.0,0.032233337723165695 -12933.0,0.032222206645104605 -12934.0,0.03221107941091783 -12935.0,0.03219995601927798 -12936.0,0.03218883646885808 -12937.0,0.03217772075833168 -12938.0,0.03216660888637275 -12939.0,0.032155500851655736 -12940.0,0.0321443966528555 -12941.0,0.0321332962886474 -12942.0,0.03212219975770727 -12943.0,0.03211110705871136 -12944.0,0.03210001819033638 -12945.0,0.03208893315125952 -12946.0,0.032077851940158414 -12947.0,0.032066774555711164 -12948.0,0.0320557009965963 -12949.0,0.03204463126149283 -12950.0,0.03203356534908022 -12951.0,0.0320225032580384 -12952.0,0.03201144498704774 -12953.0,0.03200039053478905 -12954.0,0.03198933989994362 -12955.0,0.031978293081193196 -12956.0,0.03196725007721999 -12957.0,0.03195621088670662 -12958.0,0.0319451755083362 -12959.0,0.0319341439407923 -12960.0,0.03192311618275894 -12961.0,0.031912092232920575 -12962.0,0.031901072089962124 -12963.0,0.03189005575256897 -12964.0,0.031879043219426965 -12965.0,0.03186803448922236 -12966.0,0.03185702956064191 -12967.0,0.0318460284323728 -12968.0,0.03183503110310269 -12969.0,0.031824037571519685 -12970.0,0.03181304783631231 -12971.0,0.031802061896169576 -12972.0,0.03179107974978095 -12973.0,0.031780101395836355 -12974.0,0.03176912683302612 -12975.0,0.03175815606004108 -12976.0,0.031747189075572495 -12977.0,0.0317362258783121 -12978.0,0.03172526646695205 -12979.0,0.03171431084018496 -12980.0,0.031703358996703915 -12981.0,0.031692410935202454 -12982.0,0.031681466654374525 -12983.0,0.03167052615291457 -12984.0,0.03165958942951746 -12985.0,0.03164865648287855 -12986.0,0.03163772731169357 -12987.0,0.03162680191465879 -12988.0,0.03161588029047087 -12989.0,0.03160496243782695 -12990.0,0.03159404835542462 -12991.0,0.03158313804196188 -12992.0,0.03157223149613723 -12993.0,0.031561328716649587 -12994.0,0.03155042970219836 -12995.0,0.03153953445148333 -12996.0,0.031528642963204796 -12997.0,0.03151775523606348 -12998.0,0.031506871268760575 -12999.0,0.031495991059997674 -13000.0,0.031485114608476854 -13001.0,0.031474241912900644 -13002.0,0.03146337297197201 -13003.0,0.03145250778439436 -13004.0,0.031441646348871546 -13005.0,0.031430788664107895 -13006.0,0.03141993472880816 -13007.0,0.03140908454167756 -13008.0,0.03139823810142172 -13009.0,0.031387395406746746 -13010.0,0.031376556456359186 -13011.0,0.031365721248966055 -13012.0,0.031354889783274754 -13013.0,0.031344062057993186 -13014.0,0.03133323807182968 -13015.0,0.03132241782349303 -13016.0,0.03131160131169243 -13017.0,0.03130078853513756 -13018.0,0.03128997949253855 -13019.0,0.03127917418260595 -13020.0,0.031268372604050756 -13021.0,0.03125757475558442 -13022.0,0.031246780635918847 -13023.0,0.031235990243766387 -13024.0,0.031225203577839797 -13025.0,0.03121442063685232 -13026.0,0.031203641419517633 -13027.0,0.031192865924549847 -13028.0,0.031182094150663545 -13029.0,0.0311713260965737 -13030.0,0.03116056176099578 -13031.0,0.031149801142645678 -13032.0,0.03113904424023974 -13033.0,0.03112829105249472 -13034.0,0.031117541578127857 -13035.0,0.031106795815856816 -13036.0,0.03109605376439972 -13037.0,0.031085315422475092 -13038.0,0.03107458078880194 -13039.0,0.031063849862099705 -13040.0,0.031053122641088275 -13041.0,0.03104239912448794 -13042.0,0.031031679311019484 -13043.0,0.031020963199404106 -13044.0,0.031010250788363454 -13045.0,0.030999542076619625 -13046.0,0.03098883706289513 -13047.0,0.030978135745912943 -13048.0,0.030967438124396483 -13049.0,0.030956744197069605 -13050.0,0.030946053962656584 -13051.0,0.030935367419882162 -13052.0,0.030924684567471515 -13053.0,0.030914005404150267 -13054.0,0.030903329928644446 -13055.0,0.030892658139680562 -13056.0,0.030881990035985542 -13057.0,0.030871325616286777 -13058.0,0.03086066487931205 -13059.0,0.030850007823789632 -13060.0,0.030839354448448205 -13061.0,0.03082870475201692 -13062.0,0.030818058733225316 -13063.0,0.030807416390803415 -13064.0,0.03079677772348166 -13065.0,0.03078614272999094 -13066.0,0.03077551140906259 -13067.0,0.030764883759428343 -13068.0,0.03075425977982041 -13069.0,0.03074363946897143 -13070.0,0.030733022825614492 -13071.0,0.030722409848483075 -13072.0,0.03071180053631115 -13073.0,0.030701194887833096 -13074.0,0.030690592901783754 -13075.0,0.030679994576898358 -13076.0,0.030669399911912615 -13077.0,0.030658808905562662 -13078.0,0.030648221556585083 -13079.0,0.030637637863716854 -13080.0,0.03062705782569543 -13081.0,0.030616481441258697 -13082.0,0.030605908709144966 -13083.0,0.030595339628092997 -13084.0,0.03058477419684195 -13085.0,0.030574212414131465 -13086.0,0.030563654278701592 -13087.0,0.03055309978929284 -13088.0,0.030542548944646107 -13089.0,0.030532001743502766 -13090.0,0.030521458184604614 -13091.0,0.030510918266693894 -13092.0,0.030500381988513247 -13093.0,0.030489849348805782 -13094.0,0.030479320346315033 -13095.0,0.03046879497978498 -13096.0,0.030458273247959994 -13097.0,0.030447755149584928 -13098.0,0.030437240683405045 -13099.0,0.030426729848166065 -13100.0,0.030416222642614087 -13101.0,0.030405719065495697 -13102.0,0.030395219115557894 -13103.0,0.030384722791548108 -13104.0,0.03037423009221422 -13105.0,0.030363741016304503 -13106.0,0.030353255562567693 -13107.0,0.03034277372975296 -13108.0,0.030332295516609906 -13109.0,0.03032182092188853 -13110.0,0.030311349944339303 -13111.0,0.030300882582713115 -13112.0,0.0302904188357613 -13113.0,0.03027995870223558 -13114.0,0.030269502180888155 -13115.0,0.03025904927047163 -13116.0,0.03024859996973907 -13117.0,0.030238154277443925 -13118.0,0.030227712192340103 -13119.0,0.03021727371318195 -13120.0,0.030206838838724222 -13121.0,0.030196407567722138 -13122.0,0.03018597989893129 -13123.0,0.030175555831107745 -13124.0,0.03016513536300799 -13125.0,0.03015471849338896 -13126.0,0.030144305221007958 -13127.0,0.03013389554462278 -13128.0,0.030123489462991624 -13129.0,0.030113086974873134 -13130.0,0.030102688079026343 -13131.0,0.03009229277421075 -13132.0,0.030081901059186275 -13133.0,0.03007151293271327 -13134.0,0.030061128393552485 -13135.0,0.03005074744046513 -13136.0,0.030040370072212837 -13137.0,0.03002999628755767 -13138.0,0.03001962608526209 -13139.0,0.030009259464089017 -13140.0,0.02999889642280179 -13141.0,0.029988536960164177 -13142.0,0.02997818107494038 -13143.0,0.02996782876589499 -13144.0,0.02995748003179307 -13145.0,0.029947134871400084 -13146.0,0.02993679328348195 -13147.0,0.02992645526680496 -13148.0,0.02991612082013588 -13149.0,0.029905789942241887 -13150.0,0.029895462631890593 -13151.0,0.029885138887850004 -13152.0,0.029874818708888577 -13153.0,0.029864502093775197 -13154.0,0.029854189041279178 -13155.0,0.029843879550170222 -13156.0,0.029833573619218495 -13157.0,0.029823271247194572 -13158.0,0.02981297243286946 -13159.0,0.029802677175014596 -13160.0,0.029792385472401803 -13161.0,0.029782097323803373 -13162.0,0.029771812727992 -13163.0,0.029761531683740825 -13164.0,0.029751254189823367 -13165.0,0.029740980245013603 -13166.0,0.029730709848085936 -13167.0,0.029720442997815188 -13168.0,0.029710179692976575 -13169.0,0.029699919932345772 -13170.0,0.029689663714698864 -13171.0,0.029679411038812376 -13172.0,0.02966916190346321 -13173.0,0.02965891630742873 -13174.0,0.029648674249486712 -13175.0,0.029638435728415367 -13176.0,0.02962820074299329 -13177.0,0.02961796929199953 -13178.0,0.029607741374213552 -13179.0,0.029597516988415243 -13180.0,0.029587296133384917 -13181.0,0.029577078807903275 -13182.0,0.02956686501075148 -13183.0,0.0295566547407111 -13184.0,0.029546447996564133 -13185.0,0.02953624477709297 -13186.0,0.029526045081080445 -13187.0,0.02951584890730982 -13188.0,0.02950565625456477 -13189.0,0.029495467121629364 -13190.0,0.029485281507288123 -13191.0,0.02947509941032598 -13192.0,0.029464920829528295 -13193.0,0.029454745763680817 -13194.0,0.029444574211569742 -13195.0,0.02943440617198168 -13196.0,0.02942424164370366 -13197.0,0.02941408062552314 -13198.0,0.029403923116227956 -13199.0,0.029393769114606404 -13200.0,0.02938361861944719 -13201.0,0.029373471629539447 -13202.0,0.029363328143672682 -13203.0,0.029353188160636867 -13204.0,0.029343051679222378 -13205.0,0.029332918698220016 -13206.0,0.029322789216420966 -13207.0,0.029312663232616866 -13208.0,0.029302540745599764 -13209.0,0.02929242175416213 -13210.0,0.029282306257096817 -13211.0,0.029272194253197135 -13212.0,0.029262085741256792 -13213.0,0.029251980720069935 -13214.0,0.029241879188431078 -13215.0,0.029231781145135194 -13216.0,0.029221686588977662 -13217.0,0.02921159551875428 -13218.0,0.029201507933261258 -13219.0,0.029191423831295207 -13220.0,0.029181343211653173 -13221.0,0.029171266073132612 -13222.0,0.02916119241453141 -13223.0,0.029151122234647827 -13224.0,0.029141055532280576 -13225.0,0.029130992306228773 -13226.0,0.02912093255529196 -13227.0,0.02911087627827006 -13228.0,0.029100823473963443 -13229.0,0.029090774141172882 -13230.0,0.029080728278699577 -13231.0,0.02907068588534511 -13232.0,0.0290606469599115 -13233.0,0.029050611501201185 -13234.0,0.029040579508017004 -13235.0,0.029030550979162226 -13236.0,0.029020525913440495 -13237.0,0.029010504309655908 -13238.0,0.02900048616661296 -13239.0,0.02899047148311657 -13240.0,0.028980460257972043 -13241.0,0.028970452489985112 -13242.0,0.028960448177961933 -13243.0,0.028950447320709075 -13244.0,0.02894044991703348 -13245.0,0.028930455965742546 -13246.0,0.028920465465644068 -13247.0,0.028910478415546264 -13248.0,0.02890049481425773 -13249.0,0.0288905146605875 -13250.0,0.02888053795334502 -13251.0,0.028870564691340153 -13252.0,0.028860594873383136 -13253.0,0.028850628498284653 -13254.0,0.028840665564855796 -13255.0,0.02883070607190805 -13256.0,0.028820750018253335 -13257.0,0.02881079740270395 -13258.0,0.02880084822407262 -13259.0,0.028790902481172487 -13260.0,0.028780960172817113 -13261.0,0.02877102129782042 -13262.0,0.02876108585499679 -13263.0,0.028751153843160994 -13264.0,0.028741225261128232 -13265.0,0.02873130010771407 -13266.0,0.02872137838173452 -13267.0,0.028711460082005997 -13268.0,0.028701545207345327 -13269.0,0.028691633756569714 -13270.0,0.02868172572849681 -13271.0,0.028671821121944656 -13272.0,0.02866191993573171 -13273.0,0.02865202216867684 -13274.0,0.028642127819599288 -13275.0,0.028632236887318748 -13276.0,0.0286223493706553 -13277.0,0.028612465268429452 -13278.0,0.028602584579462072 -13279.0,0.028592707302574485 -13280.0,0.028582833436588396 -13281.0,0.028572962980325946 -13282.0,0.02856309593260963 -13283.0,0.028553232292262396 -13284.0,0.028543372058107582 -13285.0,0.02853351522896895 -13286.0,0.028523661803670625 -13287.0,0.02851381178103718 -13288.0,0.028503965159893573 -13289.0,0.02849412193906519 -13290.0,0.028484282117377784 -13291.0,0.028474445693657546 -13292.0,0.028464612666731063 -13293.0,0.028454783035425327 -13294.0,0.028444956798567744 -13295.0,0.028435133954986095 -13296.0,0.028425314503508596 -13297.0,0.028415498442963857 -13298.0,0.028405685772180913 -13299.0,0.02839587648998915 -13300.0,0.02838607059521841 -13301.0,0.02837626808669892 -13302.0,0.028366468963261324 -13303.0,0.028356673223736632 -13304.0,0.0283468808669563 -13305.0,0.02833709189175217 -13306.0,0.028327306296956498 -13307.0,0.028317524081401913 -13308.0,0.028307745243921476 -13309.0,0.02829796978334865 -13310.0,0.028288197698517283 -13311.0,0.028278428988261658 -13312.0,0.028268663651416413 -13313.0,0.028258901686816624 -13314.0,0.028249143093297763 -13315.0,0.028239387869695712 -13316.0,0.028229636014846717 -13317.0,0.028219887527587466 -13318.0,0.02821014240675504 -13319.0,0.028200400651186924 -13320.0,0.028190662259720976 -13321.0,0.028180927231195484 -13322.0,0.02817119556444914 -13323.0,0.02816146725832103 -13324.0,0.02815174231165062 -13325.0,0.028142020723277802 -13326.0,0.028132302492042863 -13327.0,0.028122587616786505 -13328.0,0.028112876096349784 -13329.0,0.0281031679295742 -13330.0,0.028093463115301642 -13331.0,0.028083761652374396 -13332.0,0.028074063539635156 -13333.0,0.028064368775926992 -13334.0,0.028054677360093393 -13335.0,0.028044989290978248 -13336.0,0.02803530456742585 -13337.0,0.028025623188280863 -13338.0,0.028015945152388377 -13339.0,0.028006270458593874 -13340.0,0.027996599105743248 -13341.0,0.02798693109268275 -13342.0,0.02797726641825907 -13343.0,0.02796760508131928 -13344.0,0.02795794708071087 -13345.0,0.02794829241528168 -13346.0,0.02793864108388 -13347.0,0.02792899308535449 -13348.0,0.027919348418554212 -13349.0,0.027909707082328646 -13350.0,0.027900069075527625 -13351.0,0.027890434397001417 -13352.0,0.02788080304560067 -13353.0,0.027871175020176452 -13354.0,0.027861550319580188 -13355.0,0.027851928942663723 -13356.0,0.027842310888279306 -13357.0,0.027832696155279585 -13358.0,0.027823084742517563 -13359.0,0.027813476648846685 -13360.0,0.027803871873120774 -13361.0,0.02779427041419406 -13362.0,0.02778467227092114 -13363.0,0.027775077442157035 -13364.0,0.02776548592675715 -13365.0,0.0277558977235773 -13366.0,0.027746312831473663 -13367.0,0.027736731249302836 -13368.0,0.02772715297592181 -13369.0,0.027717578010187965 -13370.0,0.027708006350959092 -13371.0,0.027698437997093338 -13372.0,0.027688872947449275 -13373.0,0.02767931120088587 -13374.0,0.027669752756262482 -13375.0,0.027660197612438837 -13376.0,0.027650645768275087 -13377.0,0.027641097222631767 -13378.0,0.027631551974369818 -13379.0,0.02762201002235054 -13380.0,0.027612471365435654 -13381.0,0.02760293600248727 -13382.0,0.0275934039323679 -13383.0,0.027583875153940413 -13384.0,0.027574349666068112 -13385.0,0.027564827467614673 -13386.0,0.027555308557444164 -13387.0,0.027545792934421064 -13388.0,0.027536280597410204 -13389.0,0.027526771545276843 -13390.0,0.027517265776886624 -13391.0,0.02750776329110558 -13392.0,0.02749826408680012 -13393.0,0.02748876816283707 -13394.0,0.02747927551808363 -13395.0,0.027469786151407407 -13396.0,0.027460300061676372 -13397.0,0.027450817247758913 -13398.0,0.027441337708523795 -13399.0,0.027431861442840197 -13400.0,0.027422388449577645 -13401.0,0.027412918727606084 -13402.0,0.027403452275795853 -13403.0,0.027393989093017684 -13404.0,0.02738452917814266 -13405.0,0.027375072530042302 -13406.0,0.027365619147588494 -13407.0,0.02735616902965352 -13408.0,0.027346722175110055 -13409.0,0.027337278582831144 -13410.0,0.02732783825169024 -13411.0,0.027318401180561187 -13412.0,0.027308967368318216 -13413.0,0.027299536813835925 -13414.0,0.027290109515989324 -13415.0,0.027280685473653806 -13416.0,0.027271264685705166 -13417.0,0.027261847151019546 -13418.0,0.02725243286847352 -13419.0,0.027243021836944024 -13420.0,0.02723361405530841 -13421.0,0.027224209522444368 -13422.0,0.027214808237230024 -13423.0,0.02720541019854387 -13424.0,0.02719601540526479 -13425.0,0.027186623856272067 -13426.0,0.02717723555044533 -13427.0,0.027167850486664633 -13428.0,0.02715846866381041 -13429.0,0.027149090080763494 -13430.0,0.027139714736405054 -13431.0,0.0271303426296167 -13432.0,0.027120973759280406 -13433.0,0.027111608124278545 -13434.0,0.02710224572349384 -13435.0,0.02709288655580944 -13436.0,0.027083530620108865 -13437.0,0.027074177915276026 -13438.0,0.027064828440195195 -13439.0,0.02705548219375106 -13440.0,0.02704613917482868 -13441.0,0.02703679938231351 -13442.0,0.027027462815091365 -13443.0,0.027018129472048465 -13444.0,0.027008799352071414 -13445.0,0.026999472454047192 -13446.0,0.02699014877686319 -13447.0,0.026980828319407128 -13448.0,0.026971511080567157 -13449.0,0.0269621970592318 -13450.0,0.026952886254289977 -13451.0,0.026943578664630947 -13452.0,0.026934274289144397 -13453.0,0.026924973126720386 -13454.0,0.02691567517624936 -13455.0,0.026906380436622118 -13456.0,0.02689708890672988 -13457.0,0.026887800585464233 -13458.0,0.02687851547171716 -13459.0,0.026869233564380993 -13460.0,0.026859954862348476 -13461.0,0.026850679364512728 -13462.0,0.026841407069767256 -13463.0,0.026832137977005944 -13464.0,0.02682287208512304 -13465.0,0.026813609393013204 -13466.0,0.02680434989957146 -13467.0,0.026795093603693233 -13468.0,0.026785840504274287 -13469.0,0.02677659060021081 -13470.0,0.026767343890399354 -13471.0,0.026758100373736868 -13472.0,0.02674886004912064 -13473.0,0.026739622915448385 -13474.0,0.026730388971618172 -13475.0,0.02672115821652848 -13476.0,0.026711930649078116 -13477.0,0.026702706268166312 -13478.0,0.026693485072692667 -13479.0,0.026684267061557177 -13480.0,0.02667505223366017 -13481.0,0.026665840587902393 -13482.0,0.026656632123184972 -13483.0,0.026647426838409403 -13484.0,0.02663822473247757 -13485.0,0.026629025804291707 -13486.0,0.026619830052754465 -13487.0,0.026610637476768853 -13488.0,0.026601448075238274 -13489.0,0.026592261847066482 -13490.0,0.026583078791157636 -13491.0,0.02657389890641626 -13492.0,0.02656472219174728 -13493.0,0.02655554864605595 -13494.0,0.02654637826824795 -13495.0,0.02653721105722932 -13496.0,0.02652804701190649 -13497.0,0.02651888613118623 -13498.0,0.02650972841397573 -13499.0,0.026500573859182534 -13500.0,0.02649142246571458 -13501.0,0.026482274232480178 -13502.0,0.026473129158387988 -13503.0,0.026463987242347085 -13504.0,0.026454848483266902 -13505.0,0.026445712880057263 -13506.0,0.026436580431628335 -13507.0,0.026427451136890694 -13508.0,0.02641832499475528 -13509.0,0.02640920200413343 -13510.0,0.026400082163936807 -13511.0,0.026390965473077493 -13512.0,0.026381851930467937 -13513.0,0.026372741535020967 -13514.0,0.026363634285649758 -13515.0,0.026354530181267898 -13516.0,0.026345429220789324 -13517.0,0.026336331403128375 -13518.0,0.026327236727199728 -13519.0,0.026318145191918458 -13520.0,0.026309056796200016 -13521.0,0.026299971538960222 -13522.0,0.026290889419115282 -13523.0,0.026281810435581743 -13524.0,0.026272734587276563 -13525.0,0.02626366187311705 -13526.0,0.026254592292020918 -13527.0,0.026245525842906202 -13528.0,0.026236462524691355 -13529.0,0.02622740233629519 -13530.0,0.0262183452766369 -13531.0,0.026209291344636024 -13532.0,0.026200240539212504 -13533.0,0.026191192859286647 -13534.0,0.02618214830377914 -13535.0,0.026173106871611014 -13536.0,0.0261640685617037 -13537.0,0.026155033372978993 -13538.0,0.026146001304359064 -13539.0,0.02613697235476646 -13540.0,0.026127946523124078 -13541.0,0.026118923808355204 -13542.0,0.026109904209383503 -13543.0,0.026100887725133005 -13544.0,0.026091874354528095 -13545.0,0.02608286409649355 -13546.0,0.026073856949954514 -13547.0,0.02606485291383651 -13548.0,0.026055851987065396 -13549.0,0.026046854168567446 -13550.0,0.02603785945726928 -13551.0,0.02602886785209791 -13552.0,0.02601987935198068 -13553.0,0.026010893955845334 -13554.0,0.026001911662619986 -13555.0,0.02599293247123312 -13556.0,0.025983956380613564 -13557.0,0.025974983389690547 -13558.0,0.025966013497393654 -13559.0,0.025957046702652847 -13560.0,0.02594808300439846 -13561.0,0.025939122401561168 -13562.0,0.025930164893072052 -13563.0,0.025921210477862538 -13564.0,0.025912259154864448 -13565.0,0.025903310923009928 -13566.0,0.02589436578123153 -13567.0,0.025885423728462167 -13568.0,0.025876484763635126 -13569.0,0.025867548885684034 -13570.0,0.02585861609354291 -13571.0,0.025849686386146146 -13572.0,0.025840759762428504 -13573.0,0.025831836221325073 -13574.0,0.025822915761771356 -13575.0,0.025813998382703204 -13576.0,0.02580508408305684 -13577.0,0.02579617286176887 -13578.0,0.02578726471777622 -13579.0,0.02577835965001623 -13580.0,0.025769457657426584 -13581.0,0.025760558738945356 -13582.0,0.025751662893510944 -13583.0,0.025742770120062153 -13584.0,0.025733880417538137 -13585.0,0.02572499378487843 -13586.0,0.025716110221022905 -13587.0,0.025707229724911823 -13588.0,0.025698352295485807 -13589.0,0.02568947793168586 -13590.0,0.025680606632453303 -13591.0,0.025671738396729874 -13592.0,0.025662873223457654 -13593.0,0.025654011111579104 -13594.0,0.025645152060037018 -13595.0,0.025636296067774584 -13596.0,0.02562744313373535 -13597.0,0.025618593256863224 -13598.0,0.02560974643610249 -13599.0,0.025600902670397763 -13600.0,0.025592061958694064 -13601.0,0.025583224299936754 -13602.0,0.02557438969307158 -13603.0,0.025565558137044614 -13604.0,0.025556729630802327 -13605.0,0.02554790417329154 -13606.0,0.025539081763459457 -13607.0,0.025530262400253603 -13608.0,0.025521446082621902 -13609.0,0.025512632809512634 -13610.0,0.02550382257987445 -13611.0,0.025495015392656334 -13612.0,0.02548621124680766 -13613.0,0.025477410141278158 -13614.0,0.025468612075017924 -13615.0,0.02545981704697742 -13616.0,0.025451025056107444 -13617.0,0.025442236101359185 -13618.0,0.025433450181684185 -13619.0,0.02542466729603436 -13620.0,0.025415887443361953 -13621.0,0.025407110622619602 -13622.0,0.025398336832760295 -13623.0,0.0253895660727374 -13624.0,0.0253807983415046 -13625.0,0.02537203363801598 -13626.0,0.02536327196122598 -13627.0,0.025354513310089404 -13628.0,0.025345757683561385 -13629.0,0.025337005080597455 -13630.0,0.02532825550015349 -13631.0,0.02531950894118574 -13632.0,0.025310765402650783 -13633.0,0.02530202488350559 -13634.0,0.02529328738270748 -13635.0,0.025284552899214136 -13636.0,0.025275821431983602 -13637.0,0.025267092979974263 -13638.0,0.02525836754214488 -13639.0,0.025249645117454585 -13640.0,0.025240925704862856 -13641.0,0.025232209303329513 -13642.0,0.025223495911814765 -13643.0,0.025214785529279162 -13644.0,0.02520607815468364 -13645.0,0.02519737378698944 -13646.0,0.025188672425158213 -13647.0,0.02517997406815195 -13648.0,0.025171278714933007 -13649.0,0.025162586364464067 -13650.0,0.025153897015708217 -13651.0,0.025145210667628877 -13652.0,0.025136527319189823 -13653.0,0.025127846969355213 -13654.0,0.02511916961708952 -13655.0,0.02511049526135761 -13656.0,0.025101823901124694 -13657.0,0.02509315553535636 -13658.0,0.025084490163018502 -13659.0,0.025075827783077424 -13660.0,0.025067168394499764 -13661.0,0.02505851199625253 -13662.0,0.025049858587303058 -13663.0,0.025041208166619068 -13664.0,0.02503256073316863 -13665.0,0.025023916285920177 -13666.0,0.025015274823842467 -13667.0,0.02500663634590465 -13668.0,0.02499800085107622 -13669.0,0.02498936833832703 -13670.0,0.024980738806627267 -13671.0,0.024972112254947502 -13672.0,0.024963488682258648 -13673.0,0.024954868087531976 -13674.0,0.024946250469739126 -13675.0,0.024937635827852054 -13676.0,0.024929024160843107 -13677.0,0.02492041546768498 -13678.0,0.024911809747350723 -13679.0,0.024903206998813716 -13680.0,0.024894607221047728 -13681.0,0.02488601041302687 -13682.0,0.024877416573725608 -13683.0,0.024868825702118746 -13684.0,0.024860237797181464 -13685.0,0.024851652857889286 -13686.0,0.024843070883218105 -13687.0,0.024834491872144128 -13688.0,0.024825915823643956 -13689.0,0.024817342736694527 -13690.0,0.024808772610273137 -13691.0,0.02480020544335744 -13692.0,0.024791641234925416 -13693.0,0.024783079983955424 -13694.0,0.024774521689426177 -13695.0,0.024765966350316738 -13696.0,0.024757413965606493 -13697.0,0.024748864534275224 -13698.0,0.02474031805530304 -13699.0,0.024731774527670423 -13700.0,0.024723233950358168 -13701.0,0.02471469632234746 -13702.0,0.024706161642619816 -13703.0,0.02469762991015713 -13704.0,0.024689101123941598 -13705.0,0.024680575282955818 -13706.0,0.024672052386182714 -13707.0,0.024663532432605578 -13708.0,0.02465501542120802 -13709.0,0.024646501350974036 -13710.0,0.024637990220887956 -13711.0,0.024629482029934466 -13712.0,0.02462097677709861 -13713.0,0.024612474461365753 -13714.0,0.024603975081721643 -13715.0,0.024595478637152366 -13716.0,0.024586985126644364 -13717.0,0.024578494549184406 -13718.0,0.02457000690375964 -13719.0,0.02456152218935755 -13720.0,0.02455304040496598 -13721.0,0.024544561549573095 -13722.0,0.024536085622167438 -13723.0,0.0245276126217379 -13724.0,0.024519142547273717 -13725.0,0.024510675397764452 -13726.0,0.02450221117220005 -13727.0,0.024493749869570782 -13728.0,0.024485291488867283 -13729.0,0.024476836029080542 -13730.0,0.024468383489201856 -13731.0,0.024459933868222917 -13732.0,0.02445148716513574 -13733.0,0.02444304337893271 -13734.0,0.02443460250860652 -13735.0,0.02442616455315025 -13736.0,0.024417729511557313 -13737.0,0.02440929738282148 -13738.0,0.02440086816593684 -13739.0,0.02439244185989785 -13740.0,0.02438401846369933 -13741.0,0.024375597976336424 -13742.0,0.02436718039680462 -13743.0,0.024358765724099764 -13744.0,0.024350353957218053 -13745.0,0.024341945095156026 -13746.0,0.02433353913691057 -13747.0,0.0243251360814789 -13748.0,0.0243167359278586 -13749.0,0.0243083386750476 -13750.0,0.02429994432204417 -13751.0,0.02429155286784691 -13752.0,0.02428316431145479 -13753.0,0.024274778651867113 -13754.0,0.024266395888083547 -13755.0,0.024258016019104066 -13756.0,0.02424963904392902 -13757.0,0.0242412649615591 -13758.0,0.024232893770995353 -13759.0,0.02422452547123913 -13760.0,0.024216160061292166 -13761.0,0.024207797540156534 -13762.0,0.024199437906834646 -13763.0,0.024191081160329246 -13764.0,0.024182727299643443 -13765.0,0.024174376323780684 -13766.0,0.024166028231744758 -13767.0,0.024157683022539806 -13768.0,0.024149340695170288 -13769.0,0.02414100124864103 -13770.0,0.024132664681957204 -13771.0,0.024124330994124327 -13772.0,0.024116000184148226 -13773.0,0.024107672251035113 -13774.0,0.02409934719379152 -13775.0,0.024091025011424346 -13776.0,0.024082705702940785 -13777.0,0.02407438926734842 -13778.0,0.02406607570365516 -13779.0,0.02405776501086927 -13780.0,0.02404945718799932 -13781.0,0.024041152234054262 -13782.0,0.02403285014804337 -13783.0,0.024024550928976273 -13784.0,0.02401625457586294 -13785.0,0.02400796108771366 -13786.0,0.023999670463539083 -13787.0,0.023991382702350204 -13788.0,0.023983097803158365 -13789.0,0.023974815764975215 -13790.0,0.023966536586812776 -13791.0,0.023958260267683402 -13792.0,0.023949986806599804 -13793.0,0.023941716202574993 -13794.0,0.02393344845462236 -13795.0,0.023925183561755617 -13796.0,0.02391692152298884 -13797.0,0.023908662337336403 -13798.0,0.023900406003813057 -13799.0,0.023892152521433882 -13800.0,0.02388390188921431 -13801.0,0.023875654106170072 -13802.0,0.02386740917131729 -13803.0,0.023859167083672393 -13804.0,0.023850927842252165 -13805.0,0.023842691446073733 -13806.0,0.023834457894154535 -13807.0,0.02382622718551238 -13808.0,0.023817999319165405 -13809.0,0.023809774294132093 -13810.0,0.02380155210943124 -13811.0,0.023793332764082006 -13812.0,0.02378511625710389 -13813.0,0.023776902587516725 -13814.0,0.023768691754340664 -13815.0,0.023760483756596222 -13816.0,0.02375227859330425 -13817.0,0.023744076263485937 -13818.0,0.02373587676616279 -13819.0,0.02372768010035667 -13820.0,0.02371948626508978 -13821.0,0.023711295259384656 -13822.0,0.023703107082264183 -13823.0,0.023694921732751544 -13824.0,0.0236867392098703 -13825.0,0.02367855951264434 -13826.0,0.023670382640097888 -13827.0,0.023662208591255486 -13828.0,0.02365403736514204 -13829.0,0.023645868960782784 -13830.0,0.023637703377203296 -13831.0,0.02362954061342946 -13832.0,0.023621380668487527 -13833.0,0.023613223541404077 -13834.0,0.023605069231206036 -13835.0,0.023596917736920627 -13836.0,0.023588769057575457 -13837.0,0.02358062319219844 -13838.0,0.023572480139817845 -13839.0,0.023564339899462244 -13840.0,0.02355620247016058 -13841.0,0.023548067850942114 -13842.0,0.023539936040836446 -13843.0,0.02353180703887352 -13844.0,0.023523680844083586 -13845.0,0.02351555745549726 -13846.0,0.023507436872145477 -13847.0,0.023499319093059523 -13848.0,0.023491204117270983 -13849.0,0.023483091943811815 -13850.0,0.02347498257171429 -13851.0,0.023466876000011034 -13852.0,0.02345877222773497 -13853.0,0.02345067125391939 -13854.0,0.023442573077597898 -13855.0,0.023434477697804462 -13856.0,0.023426385113573332 -13857.0,0.02341829532393914 -13858.0,0.02341020832793683 -13859.0,0.02340212412460168 -13860.0,0.023394042712969316 -13861.0,0.023385964092075665 -13862.0,0.023377888260957016 -13863.0,0.02336981521864998 -13864.0,0.02336174496419151 -13865.0,0.023353677496618867 -13866.0,0.023345612814969673 -13867.0,0.023337550918281866 -13868.0,0.02332949180559373 -13869.0,0.023321435475943855 -13870.0,0.023313381928371187 -13871.0,0.023305331161915 -13872.0,0.023297283175614903 -13873.0,0.023289237968510807 -13874.0,0.023281195539642995 -13875.0,0.02327315588805206 -13876.0,0.02326511901277894 -13877.0,0.02325708491286487 -13878.0,0.02324905358735146 -13879.0,0.023241025035280628 -13880.0,0.023232999255694622 -13881.0,0.023224976247636038 -13882.0,0.02321695601014777 -13883.0,0.02320893854227307 -13884.0,0.023200923843055516 -13885.0,0.023192911911539018 -13886.0,0.023184902746767797 -13887.0,0.023176896347786424 -13888.0,0.023168892713639793 -13889.0,0.023160891843373145 -13890.0,0.023152893736032007 -13891.0,0.023144898390662277 -13892.0,0.023136905806310167 -13893.0,0.02312891598202223 -13894.0,0.023120928916845324 -13895.0,0.02311294460982665 -13896.0,0.023104963060013747 -13897.0,0.02309698426645447 -13898.0,0.02308900822819702 -13899.0,0.023081034944289893 -13900.0,0.02307306441378194 -13901.0,0.02306509663572234 -13902.0,0.023057131609160605 -13903.0,0.023049169333146543 -13904.0,0.02304120980673032 -13905.0,0.02303325302896243 -13906.0,0.023025298998893693 -13907.0,0.023017347715575228 -13908.0,0.023009399178058523 -13909.0,0.023001453385395366 -13910.0,0.0229935103366379 -13911.0,0.022985570030838554 -13912.0,0.022977632467050115 -13913.0,0.022969697644325694 -13914.0,0.022961765561718733 -13915.0,0.02295383621828297 -13916.0,0.022945909613072503 -13917.0,0.022937985745141748 -13918.0,0.022930064613545444 -13919.0,0.02292214621733867 -13920.0,0.022914230555576794 -13921.0,0.02290631762731555 -13922.0,0.02289840743161098 -13923.0,0.022890499967519466 -13924.0,0.022882595234097688 -13925.0,0.022874693230402674 -13926.0,0.022866793955491776 -13927.0,0.02285889740842268 -13928.0,0.02285100358825336 -13929.0,0.022843112494042157 -13930.0,0.022835224124847717 -13931.0,0.022827338479729026 -13932.0,0.022819455557745366 -13933.0,0.022811575357956367 -13934.0,0.02280369787942198 -13935.0,0.022795823121202485 -13936.0,0.022787951082358485 -13937.0,0.022780081761950885 -13938.0,0.022772215159040942 -13939.0,0.022764351272690227 -13940.0,0.022756490101960646 -13941.0,0.0227486316459144 -13942.0,0.02274077590361404 -13943.0,0.022732922874122437 -13944.0,0.022725072556502787 -13945.0,0.02271722494981859 -13946.0,0.02270938005313369 -13947.0,0.02270153786551225 -13948.0,0.02269369838601876 -13949.0,0.022685861613718012 -13950.0,0.022678027547675145 -13951.0,0.02267019618695561 -13952.0,0.022662367530625196 -13953.0,0.022654541577749977 -13954.0,0.022646718327396387 -13955.0,0.02263889777863117 -13956.0,0.02263107993052139 -13957.0,0.022623264782134448 -13958.0,0.022615452332538026 -13959.0,0.022607642580800176 -13960.0,0.02259983552598924 -13961.0,0.022592031167173912 -13962.0,0.02258422950342317 -13963.0,0.022576430533806334 -13964.0,0.02256863425739305 -13965.0,0.02256084067325329 -13966.0,0.02255304978045731 -13967.0,0.022545261578075727 -13968.0,0.022537476065179467 -13969.0,0.022529693240839782 -13970.0,0.02252191310412822 -13971.0,0.02251413565411668 -13972.0,0.022506360889877362 -13973.0,0.022498588810482795 -13974.0,0.022490819415005844 -13975.0,0.022483052702519647 -13976.0,0.022475288672097707 -13977.0,0.022467527322813832 -13978.0,0.02245976865374216 -13979.0,0.022452012663957112 -13980.0,0.022444259352533472 -13981.0,0.022436508718546324 -13982.0,0.022428760761071087 -13983.0,0.02242101547918346 -13984.0,0.022413272871959503 -13985.0,0.022405532938475577 -13986.0,0.022397795677808374 -13987.0,0.022390061089034873 -13988.0,0.02238232917123241 -13989.0,0.02237459992347862 -13990.0,0.02236687334485147 -13991.0,0.022359149434429213 -13992.0,0.02235142819129046 -13993.0,0.022343709614514113 -13994.0,0.022335993703179412 -13995.0,0.02232828045636591 -13996.0,0.022320569873153454 -13997.0,0.022312861952622238 -13998.0,0.02230515669385276 -13999.0,0.022297454095925852 -14000.0,0.02228975415792263 -14001.0,0.02228205687892456 -14002.0,0.022274362258013405 -14003.0,0.02226667029427127 -14004.0,0.022258980986780537 -14005.0,0.022251294334623938 -14006.0,0.022243610336884514 -14007.0,0.022235928992645624 -14008.0,0.022228250300990928 -14009.0,0.022220574261004416 -14010.0,0.022212900871770396 -14011.0,0.02220523013237349 -14012.0,0.02219756204189864 -14013.0,0.022189896599431085 -14014.0,0.0221822338040564 -14015.0,0.02217457365486047 -14016.0,0.022166916150929503 -14017.0,0.02215926129135 -14018.0,0.022151609075208797 -14019.0,0.02214395950159304 -14020.0,0.022136312569590203 -14021.0,0.022128668278288046 -14022.0,0.022121026626774662 -14023.0,0.022113387614138467 -14024.0,0.022105751239468188 -14025.0,0.02209811750185284 -14026.0,0.022090486400381783 -14027.0,0.02208285793414469 -14028.0,0.022075232102231543 -14029.0,0.022067608903732615 -14030.0,0.02205998833773853 -14031.0,0.022052370403340207 -14032.0,0.022044755099628884 -14033.0,0.022037142425696116 -14034.0,0.02202953238063375 -14035.0,0.022021924963533973 -14036.0,0.022014320173489275 -14037.0,0.02200671800959247 -14038.0,0.021999118470936656 -14039.0,0.02199152155661527 -14040.0,0.02198392726572206 -14041.0,0.021976335597351092 -14042.0,0.02196874655059671 -14043.0,0.021961160124553614 -14044.0,0.021953576318316795 -14045.0,0.02194599513098157 -14046.0,0.021938416561643536 -14047.0,0.02193084060939864 -14048.0,0.021923267273343122 -14049.0,0.02191569655257354 -14050.0,0.021908128446186774 -14051.0,0.02190056295327998 -14052.0,0.021893000072950666 -14053.0,0.02188543980429663 -14054.0,0.021877882146416 -14055.0,0.021870327098407177 -14056.0,0.021862774659368915 -14057.0,0.02185522482840026 -14058.0,0.021847677604600588 -14059.0,0.021840132987069542 -14060.0,0.02183259097490712 -14061.0,0.021825051567213608 -14062.0,0.02181751476308963 -14063.0,0.02180998056163607 -14064.0,0.02180244896195417 -14065.0,0.021794919963145462 -14066.0,0.0217873935643118 -14067.0,0.021779869764555322 -14068.0,0.021772348562978504 -14069.0,0.02176482995868412 -14070.0,0.021757313950775254 -14071.0,0.021749800538355315 -14072.0,0.021742289720527982 -14073.0,0.021734781496397286 -14074.0,0.021727275865067546 -14075.0,0.021719772825643406 -14076.0,0.021712272377229787 -14077.0,0.021704774518931953 -14078.0,0.02169727924985546 -14079.0,0.021689786569106192 -14080.0,0.021682296475790303 -14081.0,0.02167480896901429 -14082.0,0.02166732404788495 -14083.0,0.021659841711509396 -14084.0,0.021652361958995017 -14085.0,0.021644884789449547 -14086.0,0.02163741020198101 -14087.0,0.021629938195697748 -14088.0,0.02162246876970841 -14089.0,0.02161500192312193 -14090.0,0.021607537655047578 -14091.0,0.02160007596459492 -14092.0,0.021592616850873842 -14093.0,0.021585160312994504 -14094.0,0.021577706350067408 -14095.0,0.02157025496120335 -14096.0,0.021562806145513442 -14097.0,0.021555359902109075 -14098.0,0.02154791623010198 -14099.0,0.021540475128604176 -14100.0,0.021533036596728006 -14101.0,0.02152560063358609 -14102.0,0.021518167238291374 -14103.0,0.02151073640995712 -14104.0,0.02150330814769688 -14105.0,0.02149588245062451 -14106.0,0.021488459317854182 -14107.0,0.021481038748500374 -14108.0,0.02147362074167786 -14109.0,0.02146620529650174 -14110.0,0.021458792412087382 -14111.0,0.0214513820875505 -14112.0,0.02144397432200709 -14113.0,0.02143656911457347 -14114.0,0.021429166464366236 -14115.0,0.021421766370502315 -14116.0,0.021414368832098928 -14117.0,0.021406973848273614 -14118.0,0.021399581418144183 -14119.0,0.021392191540828786 -14120.0,0.021384804215445863 -14121.0,0.021377419441114164 -14122.0,0.02137003721695273 -14123.0,0.02136265754208092 -14124.0,0.021355280415618388 -14125.0,0.021347905836685107 -14126.0,0.021340533804401342 -14127.0,0.021333164317887652 -14128.0,0.02132579737626492 -14129.0,0.02131843297865432 -14130.0,0.021311071124177343 -14131.0,0.021303711811955756 -14132.0,0.021296355041111655 -14133.0,0.021289000810767435 -14134.0,0.021281649120045792 -14135.0,0.02127429996806971 -14136.0,0.021266953353962496 -14137.0,0.021259609276847755 -14138.0,0.021252267735849397 -14139.0,0.021244928730091612 -14140.0,0.021237592258698923 -14141.0,0.02123025832079614 -14142.0,0.021222926915508387 -14143.0,0.021215598041961062 -14144.0,0.021208271699279895 -14145.0,0.021200947886590903 -14146.0,0.02119362660302041 -14147.0,0.021186307847695054 -14148.0,0.021178991619741735 -14149.0,0.021171677918287696 -14150.0,0.02116436674246046 -14151.0,0.021157058091387876 -14152.0,0.021149751964198042 -14153.0,0.02114244836001941 -14154.0,0.021135147277980715 -14155.0,0.021127848717210993 -14156.0,0.021120552676839564 -14157.0,0.021113259155996073 -14158.0,0.021105968153810453 -14159.0,0.021098679669412954 -14160.0,0.02109139370193409 -14161.0,0.021084110250504714 -14162.0,0.02107682931425596 -14163.0,0.021069550892319263 -14164.0,0.021062274983826373 -14165.0,0.02105500158790931 -14166.0,0.021047730703700415 -14167.0,0.021040462330332323 -14168.0,0.02103319646693799 -14169.0,0.02102593311265062 -14170.0,0.02101867226660377 -14171.0,0.021011413927931263 -14172.0,0.021004158095767247 -14173.0,0.020996904769246132 -14174.0,0.020989653947502664 -14175.0,0.02098240562967187 -14176.0,0.020975159814889083 -14177.0,0.020967916502289918 -14178.0,0.02096067569101031 -14179.0,0.020953437380186478 -14180.0,0.020946201568954957 -14181.0,0.02093896825645255 -14182.0,0.02093173744181638 -14183.0,0.02092450912418387 -14184.0,0.020917283302692727 -14185.0,0.02091005997648098 -14186.0,0.020902839144686915 -14187.0,0.02089562080644915 -14188.0,0.020888404960906593 -14189.0,0.02088119160719845 -14190.0,0.02087398074446421 -14191.0,0.02086677237184367 -14192.0,0.020859566488476925 -14193.0,0.02085236309350438 -14194.0,0.0208451621860667 -14195.0,0.020837963765304883 -14196.0,0.020830767830360204 -14197.0,0.020823574380374254 -14198.0,0.020816383414488885 -14199.0,0.02080919493184628 -14200.0,0.020802008931588904 -14201.0,0.020794825412859517 -14202.0,0.02078764437480119 -14203.0,0.02078046581655726 -14204.0,0.020773289737271383 -14205.0,0.020766116136087507 -14206.0,0.020758945012149883 -14207.0,0.02075177636460303 -14208.0,0.02074461019259179 -14209.0,0.020737446495261286 -14210.0,0.02073028527175696 -14211.0,0.020723126521224502 -14212.0,0.02071597024280994 -14213.0,0.020708816435659583 -14214.0,0.02070166509892004 -14215.0,0.02069451623173819 -14216.0,0.02068736983326124 -14217.0,0.020680225902636667 -14218.0,0.02067308443901227 -14219.0,0.020665945441536104 -14220.0,0.020658808909356546 -14221.0,0.02065167484162226 -14222.0,0.020644543237482205 -14223.0,0.020637414096085643 -14224.0,0.020630287416582096 -14225.0,0.02062316319812142 -14226.0,0.02061604143985374 -14227.0,0.020608922140929492 -14228.0,0.020601805300499383 -14229.0,0.020594690917714435 -14230.0,0.020587578991725947 -14231.0,0.020580469521685532 -14232.0,0.02057336250674506 -14233.0,0.020566257946056734 -14234.0,0.020559155838773022 -14235.0,0.020552056184046708 -14236.0,0.020544958981030835 -14237.0,0.020537864228878766 -14238.0,0.020530771926744153 -14239.0,0.020523682073780938 -14240.0,0.020516594669143354 -14241.0,0.020509509711985913 -14242.0,0.02050242720146344 -14243.0,0.020495347136731044 -14244.0,0.020488269516944126 -14245.0,0.02048119434125837 -14246.0,0.020474121608829766 -14247.0,0.020467051318814582 -14248.0,0.0204599834703694 -14249.0,0.020452918062651055 -14250.0,0.020445855094816705 -14251.0,0.020438794566023794 -14252.0,0.020431736475430055 -14253.0,0.020424680822193494 -14254.0,0.020417627605472433 -14255.0,0.020410576824425472 -14256.0,0.020403528478211516 -14257.0,0.02039648256598973 -14258.0,0.0203894390869196 -14259.0,0.02038239804016088 -14260.0,0.020375359424873635 -14261.0,0.020368323240218218 -14262.0,0.02036128948535524 -14263.0,0.020354258159445634 -14264.0,0.02034722926165062 -14265.0,0.020340202791131707 -14266.0,0.020333178747050668 -14267.0,0.0203261571285696 -14268.0,0.020319137934850875 -14269.0,0.020312121165057158 -14270.0,0.020305106818351387 -14271.0,0.020298094893896806 -14272.0,0.020291085390856948 -14273.0,0.020284078308395632 -14274.0,0.020277073645676956 -14275.0,0.02027007140186532 -14276.0,0.020263071576125405 -14277.0,0.020256074167622182 -14278.0,0.020249079175520927 -14279.0,0.02024208659898716 -14280.0,0.02023509643718674 -14281.0,0.02022810868928578 -14282.0,0.020221123354450705 -14283.0,0.0202141404318482 -14284.0,0.02020715992064526 -14285.0,0.020200181820009162 -14286.0,0.020193206129107476 -14287.0,0.02018623284710804 -14288.0,0.020179261973178996 -14289.0,0.020172293506488772 -14290.0,0.02016532744620609 -14291.0,0.02015836379149993 -14292.0,0.020151402541539593 -14293.0,0.020144443695494646 -14294.0,0.02013748725253496 -14295.0,0.020130533211830667 -14296.0,0.020123581572552205 -14297.0,0.0201166323338703 -14298.0,0.020109685494955953 -14299.0,0.020102741054980472 -14300.0,0.020095799013115413 -14301.0,0.02008885936853265 -14302.0,0.020081922120404334 -14303.0,0.020074987267902914 -14304.0,0.020068054810201092 -14305.0,0.020061124746471887 -14306.0,0.02005419707588859 -14307.0,0.02004727179762479 -14308.0,0.02004034891085434 -14309.0,0.020033428414751392 -14310.0,0.020026510308490383 -14311.0,0.020019594591246047 -14312.0,0.02001268126219336 -14313.0,0.020005770320507637 -14314.0,0.019998861765364438 -14315.0,0.019991955595939633 -14316.0,0.01998505181140937 -14317.0,0.019978150410950062 -14318.0,0.01997125139373843 -14319.0,0.01996435475895147 -14320.0,0.01995746050576648 -14321.0,0.019950568633361 -14322.0,0.019943679140912895 -14323.0,0.019936792027600292 -14324.0,0.019929907292601624 -14325.0,0.019923024935095568 -14326.0,0.019916144954261125 -14327.0,0.019909267349277556 -14328.0,0.01990239211932443 -14329.0,0.019895519263581556 -14330.0,0.01988864878122907 -14331.0,0.019881780671447365 -14332.0,0.01987491493341714 -14333.0,0.019868051566319343 -14334.0,0.019861190569335233 -14335.0,0.019854331941646344 -14336.0,0.01984747568243449 -14337.0,0.019840621790881783 -14338.0,0.01983377026617058 -14339.0,0.019826921107483554 -14340.0,0.01982007431400365 -14341.0,0.01981322988491411 -14342.0,0.01980638781939842 -14343.0,0.01979954811664038 -14344.0,0.019792710775824066 -14345.0,0.019785875796133844 -14346.0,0.01977904317675433 -14347.0,0.01977221291687045 -14348.0,0.019765385015667405 -14349.0,0.019758559472330683 -14350.0,0.019751736286046036 -14351.0,0.01974491545599951 -14352.0,0.01973809698137743 -14353.0,0.019731280861366402 -14354.0,0.019724467095153325 -14355.0,0.019717655681925343 -14356.0,0.01971084662086992 -14357.0,0.019704039911174778 -14358.0,0.019697235552027938 -14359.0,0.019690433542617673 -14360.0,0.019683633882132557 -14361.0,0.019676836569761446 -14362.0,0.019670041604693475 -14363.0,0.01966324898611804 -14364.0,0.019656458713224835 -14365.0,0.019649670785203834 -14366.0,0.019642885201245294 -14367.0,0.019636101960539727 -14368.0,0.019629321062277952 -14369.0,0.019622542505651052 -14370.0,0.01961576628985041 -14371.0,0.019608992414067654 -14372.0,0.019602220877494716 -14373.0,0.019595451679323802 -14374.0,0.0195886848187474 -14375.0,0.019581920294958272 -14376.0,0.01957515810714945 -14377.0,0.019568398254514265 -14378.0,0.01956164073624631 -14379.0,0.01955488555153947 -14380.0,0.01954813269958789 -14381.0,0.019541382179586012 -14382.0,0.01953463399072854 -14383.0,0.019527888132210482 -14384.0,0.019521144603227084 -14385.0,0.0195144034029739 -14386.0,0.019507664530646757 -14387.0,0.019500927985441768 -14388.0,0.019494193766555288 -14389.0,0.019487461873183985 -14390.0,0.019480732304524795 -14391.0,0.01947400505977493 -14392.0,0.019467280138131884 -14393.0,0.01946055753879341 -14394.0,0.019453837260957552 -14395.0,0.01944711930382264 -14396.0,0.019440403666587273 -14397.0,0.019433690348450307 -14398.0,0.0194269793486109 -14399.0,0.019420270666268488 -14400.0,0.01941356430062277 -14401.0,0.019406860250873716 -14402.0,0.019400158516221587 -14403.0,0.019393459095866917 -14404.0,0.01938676198901052 -14405.0,0.019380067194853468 -14406.0,0.019373374712597122 -14407.0,0.01936668454144312 -14408.0,0.019359996680593388 -14409.0,0.01935331112925009 -14410.0,0.0193466278866157 -14411.0,0.01933994695189295 -14412.0,0.01933326832428486 -14413.0,0.019326592002994726 -14414.0,0.01931991798722609 -14415.0,0.019313246276182805 -14416.0,0.01930657686906898 -14417.0,0.01929990976508901 -14418.0,0.01929324496344755 -14419.0,0.019286582463349536 -14420.0,0.019279922264000188 -14421.0,0.019273264364604997 -14422.0,0.01926660876436971 -14423.0,0.01925995546250037 -14424.0,0.019253304458203283 -14425.0,0.019246655750685047 -14426.0,0.019240009339152497 -14427.0,0.019233365222812777 -14428.0,0.019226723400873294 -14429.0,0.019220083872541722 -14430.0,0.019213446637026024 -14431.0,0.01920681169353441 -14432.0,0.01920017904127539 -14433.0,0.019193548679457734 -14434.0,0.019186920607290495 -14435.0,0.01918029482398298 -14436.0,0.019173671328744788 -14437.0,0.019167050120785786 -14438.0,0.019160431199316114 -14439.0,0.019153814563546173 -14440.0,0.019147200212686653 -14441.0,0.019140588145948507 -14442.0,0.019133978362542978 -14443.0,0.019127370861681547 -14444.0,0.019120765642575994 -14445.0,0.01911416270443837 -14446.0,0.019107562046480994 -14447.0,0.019100963667916443 -14448.0,0.019094367567957585 -14449.0,0.019087773745817556 -14450.0,0.01908118220070976 -14451.0,0.01907459293184788 -14452.0,0.01906800593844585 -14453.0,0.0190614212197179 -14454.0,0.019054838774878517 -14455.0,0.019048258603142472 -14456.0,0.01904168070372478 -14457.0,0.01903510507584076 -14458.0,0.019028531718705985 -14459.0,0.01902196063153631 -14460.0,0.019015391813547833 -14461.0,0.019008825263956954 -14462.0,0.019002260981980327 -14463.0,0.018995698966834892 -14464.0,0.01898913921773783 -14465.0,0.01898258173390662 -14466.0,0.018976026514559007 -14467.0,0.018969473558912996 -14468.0,0.018962922866186876 -14469.0,0.01895637443559918 -14470.0,0.018949828266368735 -14471.0,0.018943284357714633 -14472.0,0.018936742708856244 -14473.0,0.018930203319013177 -14474.0,0.01892366618740534 -14475.0,0.0189171313132529 -14476.0,0.018910598695776302 -14477.0,0.01890406833419624 -14478.0,0.01889754022773369 -14479.0,0.018891014375609902 -14480.0,0.0188844907770464 -14481.0,0.018877969431264942 -14482.0,0.018871450337487595 -14483.0,0.018864933494936675 -14484.0,0.018858418902834777 -14485.0,0.018851906560404745 -14486.0,0.01884539646686971 -14487.0,0.018838888621453064 -14488.0,0.01883238302337847 -14489.0,0.018825879671869866 -14490.0,0.018819378566151432 -14491.0,0.018812879705447646 -14492.0,0.018806383088983237 -14493.0,0.018799888715983214 -14494.0,0.01879339658567283 -14495.0,0.01878690669727763 -14496.0,0.01878041905002342 -14497.0,0.018773933643136273 -14498.0,0.018767450475842516 -14499.0,0.018760969547368764 -14500.0,0.018754490856941884 -14501.0,0.018748014403789027 -14502.0,0.01874154018713758 -14503.0,0.01873506820621523 -14504.0,0.01872859846024991 -14505.0,0.01872213094846983 -14506.0,0.018715665670103476 -14507.0,0.01870920262437956 -14508.0,0.018702741810527106 -14509.0,0.01869628322777538 -14510.0,0.01868982687535393 -14511.0,0.018683372752492548 -14512.0,0.01867692085842131 -14513.0,0.018670471192370544 -14514.0,0.018664023753570874 -14515.0,0.01865757854125314 -14516.0,0.018651135554648486 -14517.0,0.018644694792988317 -14518.0,0.018638256255504297 -14519.0,0.018631819941428342 -14520.0,0.018625385849992657 -14521.0,0.0186189539804297 -14522.0,0.0186125243319722 -14523.0,0.01860609690385314 -14524.0,0.018599671695305776 -14525.0,0.018593248705563628 -14526.0,0.018586827933860482 -14527.0,0.018580409379430396 -14528.0,0.018573993041507662 -14529.0,0.01856757891932687 -14530.0,0.018561167012122858 -14531.0,0.018554757319130748 -14532.0,0.018548349839585886 -14533.0,0.018541944572723918 -14534.0,0.01853554151778074 -14535.0,0.018529140673992528 -14536.0,0.01852274204059569 -14537.0,0.01851634561682692 -14538.0,0.018509951401923172 -14539.0,0.01850355939512167 -14540.0,0.018497169595659883 -14541.0,0.018490782002775562 -14542.0,0.018484396615706708 -14543.0,0.018478013433691595 -14544.0,0.018471632455968764 -14545.0,0.018465253681776997 -14546.0,0.018458877110355355 -14547.0,0.018452502740943164 -14548.0,0.018446130572780012 -14549.0,0.018439760605105732 -14550.0,0.018433392837160445 -14551.0,0.01842702726818452 -14552.0,0.018420663897418598 -14553.0,0.01841430272410356 -14554.0,0.01840794374748057 -14555.0,0.01840158696679105 -14556.0,0.018395232381276695 -14557.0,0.01838887999017943 -14558.0,0.018382529792741464 -14559.0,0.01837618178820527 -14560.0,0.018369835975813587 -14561.0,0.018363492354809385 -14562.0,0.01835715092443593 -14563.0,0.01835081168393673 -14564.0,0.018344474632555563 -14565.0,0.01833813976953647 -14566.0,0.018331807094123735 -14567.0,0.018325476605561924 -14568.0,0.018319148303095854 -14569.0,0.018312822185970606 -14570.0,0.01830649825343152 -14571.0,0.018300176504724215 -14572.0,0.018293856939094518 -14573.0,0.018287539555788563 -14574.0,0.01828122435405274 -14575.0,0.01827491133313369 -14576.0,0.018268600492278308 -14577.0,0.018262291830733766 -14578.0,0.018255985347747482 -14579.0,0.01824968104256716 -14580.0,0.0182433789144407 -14581.0,0.018237078962616327 -14582.0,0.018230781186342505 -14583.0,0.018224485584867948 -14584.0,0.018218192157441644 -14585.0,0.018211900903312827 -14586.0,0.018205611821731 -14587.0,0.01819932491194592 -14588.0,0.01819304017320762 -14589.0,0.018186757604766346 -14590.0,0.01818047720587265 -14591.0,0.018174198975777323 -14592.0,0.01816792291373142 -14593.0,0.018161649018986252 -14594.0,0.01815537729079339 -14595.0,0.01814910772840466 -14596.0,0.01814284033107217 -14597.0,0.018136575098048228 -14598.0,0.018130312028585456 -14599.0,0.018124051121936716 -14600.0,0.018117792377355127 -14601.0,0.018111535794094063 -14602.0,0.018105281371407163 -14603.0,0.018099029108548322 -14604.0,0.018092779004771683 -14605.0,0.018086531059331678 -14606.0,0.01808028527148294 -14607.0,0.0180740416404804 -14608.0,0.018067800165579247 -14609.0,0.018061560846034913 -14610.0,0.0180553236811031 -14611.0,0.01804908867003975 -14612.0,0.018042855812101077 -14613.0,0.018036625106543563 -14614.0,0.0180303965526239 -14615.0,0.018024170149599075 -14616.0,0.018017945896726333 -14617.0,0.01801172379326316 -14618.0,0.018005503838467305 -14619.0,0.017999286031596777 -14620.0,0.017993070371909833 -14621.0,0.01798685685866499 -14622.0,0.017980645491121036 -14623.0,0.017974436268536974 -14624.0,0.0179682291901721 -14625.0,0.017962024255285956 -14626.0,0.017955821463138337 -14627.0,0.0179496208129893 -14628.0,0.01794342230409915 -14629.0,0.017937225935728444 -14630.0,0.017931031707138025 -14631.0,0.017924839617588933 -14632.0,0.01791864966634251 -14633.0,0.017912461852660343 -14634.0,0.01790627617580427 -14635.0,0.01790009263503638 -14636.0,0.017893911229619027 -14637.0,0.017887731958814816 -14638.0,0.0178815548218866 -14639.0,0.01787537981809751 -14640.0,0.017869206946710885 -14641.0,0.017863036206990354 -14642.0,0.0178568675981998 -14643.0,0.017850701119603348 -14644.0,0.017844536770465384 -14645.0,0.017838374550050547 -14646.0,0.01783221445762373 -14647.0,0.01782605649245009 -14648.0,0.017819900653795004 -14649.0,0.01781374694092413 -14650.0,0.017807595353103382 -14651.0,0.017801445889598918 -14652.0,0.017795298549677152 -14653.0,0.017789153332604755 -14654.0,0.01778301023764864 -14655.0,0.017776869264076 -14656.0,0.017770730411154234 -14657.0,0.01776459367815103 -14658.0,0.017758459064334327 -14659.0,0.01775232656897231 -14660.0,0.01774619619133341 -14661.0,0.01774006793068632 -14662.0,0.017733941786299993 -14663.0,0.01772781775744361 -14664.0,0.017721695843386648 -14665.0,0.017715576043398767 -14666.0,0.017709458356749936 -14667.0,0.017703342782710362 -14668.0,0.017697229320550505 -14669.0,0.017691117969541065 -14670.0,0.017685008728953008 -14671.0,0.01767890159805755 -14672.0,0.017672796576126158 -14673.0,0.017666693662430528 -14674.0,0.01766059285624264 -14675.0,0.017654494156834705 -14676.0,0.017648397563479204 -14677.0,0.017642303075448847 -14678.0,0.017636210692016614 -14679.0,0.017630120412455725 -14680.0,0.017624032236039654 -14681.0,0.017617946162042143 -14682.0,0.01761186218973713 -14683.0,0.017605780318398868 -14684.0,0.017599700547301828 -14685.0,0.017593622875720735 -14686.0,0.017587547302930575 -14687.0,0.017581473828206566 -14688.0,0.017575402450824198 -14689.0,0.017569333170059206 -14690.0,0.017563265985187544 -14691.0,0.01755720089548545 -14692.0,0.017551137900229413 -14693.0,0.017545076998696153 -14694.0,0.017539018190162656 -14695.0,0.017532961473906143 -14696.0,0.017526906849204094 -14697.0,0.01752085431533424 -14698.0,0.017514803871574572 -14699.0,0.01750875551720328 -14700.0,0.017502709251498865 -14701.0,0.017496665073740043 -14702.0,0.01749062298320579 -14703.0,0.01748458297917533 -14704.0,0.017478545060928132 -14705.0,0.017472509227743918 -14706.0,0.017466475478902673 -14707.0,0.017460443813684584 -14708.0,0.017454414231370133 -14709.0,0.01744838673124003 -14710.0,0.017442361312575247 -14711.0,0.017436337974656987 -14712.0,0.017430316716766713 -14713.0,0.017424297538186136 -14714.0,0.01741828043819721 -14715.0,0.017412265416082148 -14716.0,0.01740625247112338 -14717.0,0.017400241602603617 -14718.0,0.017394232809805805 -14719.0,0.01738822609201314 -14720.0,0.017382221448509066 -14721.0,0.017376218878577272 -14722.0,0.01737021838150169 -14723.0,0.01736421995656653 -14724.0,0.017358223603056184 -14725.0,0.01735222932025535 -14726.0,0.017346237107448953 -14727.0,0.017340246963922168 -14728.0,0.01733425888896041 -14729.0,0.017328272881849346 -14730.0,0.017322288941874892 -14731.0,0.017316307068323225 -14732.0,0.017310327260480714 -14733.0,0.01730434951763403 -14734.0,0.017298373839070073 -14735.0,0.017292400224075983 -14736.0,0.01728642867193916 -14737.0,0.017280459181947233 -14738.0,0.01727449175338809 -14739.0,0.017268526385549862 -14740.0,0.017262563077720932 -14741.0,0.017256601829189897 -14742.0,0.01725064263924564 -14743.0,0.017244685507177265 -14744.0,0.017238730432274134 -14745.0,0.017232777413825853 -14746.0,0.01722682645112227 -14747.0,0.01722087754345347 -14748.0,0.017214930690109816 -14749.0,0.017208985890381858 -14750.0,0.017203043143560443 -14751.0,0.01719710244893664 -14752.0,0.017191163805801768 -14753.0,0.017185227213447393 -14754.0,0.01717929267116532 -14755.0,0.017173360178247606 -14756.0,0.017167429733986543 -14757.0,0.01716150133767469 -14758.0,0.0171555749886048 -14759.0,0.01714965068606992 -14760.0,0.01714372842936332 -14761.0,0.017137808217778522 -14762.0,0.01713189005060929 -14763.0,0.017125973927149624 -14764.0,0.017120059846693778 -14765.0,0.01711414780853626 -14766.0,0.017108237811971773 -14767.0,0.01710232985629532 -14768.0,0.017096423940802113 -14769.0,0.01709052006478763 -14770.0,0.017084618227547577 -14771.0,0.017078718428377913 -14772.0,0.017072820666574826 -14773.0,0.017066924941434764 -14774.0,0.01706103125225442 -14775.0,0.017055139598330694 -14776.0,0.017049249978960766 -14777.0,0.01704336239344205 -14778.0,0.017037476841072197 -14779.0,0.017031593321149105 -14780.0,0.017025711832970913 -14781.0,0.017019832375836007 -14782.0,0.01701395494904302 -14783.0,0.017008079551890785 -14784.0,0.017002206183678432 -14785.0,0.016996334843705305 -14786.0,0.016990465531271003 -14787.0,0.016984598245675355 -14788.0,0.016978732986218437 -14789.0,0.016972869752200567 -14790.0,0.016967008542922303 -14791.0,0.01696114935768446 -14792.0,0.016955292195788053 -14793.0,0.01694943705653438 -14794.0,0.01694358393922496 -14795.0,0.016937732843161562 -14796.0,0.0169318837676462 -14797.0,0.016926036711981108 -14798.0,0.016920191675468786 -14799.0,0.016914348657411975 -14800.0,0.016908507657113617 -14801.0,0.016902668673876936 -14802.0,0.016896831707005386 -14803.0,0.016890996755802655 -14804.0,0.016885163819572682 -14805.0,0.01687933289761964 -14806.0,0.016873503989247935 -14807.0,0.016867677093762225 -14808.0,0.01686185221046742 -14809.0,0.01685602933866863 -14810.0,0.01685020847767123 -14811.0,0.016844389626780844 -14812.0,0.016838572785303322 -14813.0,0.01683275795254476 -14814.0,0.016826945127811483 -14815.0,0.016821134310410074 -14816.0,0.016815325499647354 -14817.0,0.01680951869483034 -14818.0,0.01680371389526635 -14819.0,0.016797911100262904 -14820.0,0.01679211030912777 -14821.0,0.016786311521168964 -14822.0,0.016780514735694724 -14823.0,0.01677471995201354 -14824.0,0.016768927169434154 -14825.0,0.016763136387265495 -14826.0,0.01675734760481678 -14827.0,0.016751560821397452 -14828.0,0.01674577603631719 -14829.0,0.01673999324888591 -14830.0,0.016734212458413767 -14831.0,0.016728433664211156 -14832.0,0.016722656865588707 -14833.0,0.016716882061857306 -14834.0,0.016711109252328035 -14835.0,0.01670533843631225 -14836.0,0.016699569613121537 -14837.0,0.016693802782067717 -14838.0,0.01668803794246285 -14839.0,0.01668227509361923 -14840.0,0.01667651423484939 -14841.0,0.01667075536546612 -14842.0,0.016664998484782402 -14843.0,0.016659243592111492 -14844.0,0.016653490686766876 -14845.0,0.016647739768062268 -14846.0,0.016641990835311635 -14847.0,0.016636243887829163 -14848.0,0.01663049892492929 -14849.0,0.016624755945926675 -14850.0,0.01661901495013625 -14851.0,0.016613275936873114 -14852.0,0.016607538905452662 -14853.0,0.016601803855190517 -14854.0,0.01659607078540252 -14855.0,0.016590339695404757 -14856.0,0.01658461058451356 -14857.0,0.016578883452045477 -14858.0,0.016573158297317325 -14859.0,0.0165674351196461 -14860.0,0.01656171391834909 -14861.0,0.01655599469274379 -14862.0,0.016550277442147942 -14863.0,0.01654456216587952 -14864.0,0.016538848863256735 -14865.0,0.016533137533598027 -14866.0,0.01652742817622208 -14867.0,0.016521720790447822 -14868.0,0.01651601537559437 -14869.0,0.016510311930981132 -14870.0,0.016504610455927726 -14871.0,0.016498910949754007 -14872.0,0.016493213411780065 -14873.0,0.016487517841326224 -14874.0,0.016481824237713046 -14875.0,0.01647613260026134 -14876.0,0.016470442928292105 -14877.0,0.01646475522112662 -14878.0,0.016459069478086386 -14879.0,0.01645338569849313 -14880.0,0.016447703881668822 -14881.0,0.016442024026935658 -14882.0,0.01643634613361608 -14883.0,0.01643067020103275 -14884.0,0.01642499622850859 -14885.0,0.016419324215366706 -14886.0,0.01641365416093048 -14887.0,0.01640798606452352 -14888.0,0.01640231992546966 -14889.0,0.016396655743092976 -14890.0,0.016390993516717765 -14891.0,0.016385333245668567 -14892.0,0.01637967492927017 -14893.0,0.016374018566847552 -14894.0,0.016368364157725957 -14895.0,0.01636271170123086 -14896.0,0.016357061196687964 -14897.0,0.016351412643423203 -14898.0,0.01634576604076275 -14899.0,0.016340121388032997 -14900.0,0.016334478684560602 -14901.0,0.0163288379296724 -14902.0,0.016323199122695503 -14903.0,0.016317562262957244 -14904.0,0.016311927349785187 -14905.0,0.01630629438250713 -14906.0,0.016300663360451093 -14907.0,0.016295034282945344 -14908.0,0.016289407149318372 -14909.0,0.016283781958898916 -14910.0,0.016278158711015903 -14911.0,0.016272537404998535 -14912.0,0.01626691804017623 -14913.0,0.01626130061587864 -14914.0,0.016255685131435646 -14915.0,0.016250071586177365 -14916.0,0.016244459979434137 -14917.0,0.016238850310536557 -14918.0,0.0162332425788154 -14919.0,0.016227636783601725 -14920.0,0.016222032924226793 -14921.0,0.01621643100002211 -14922.0,0.016210831010319407 -14923.0,0.016205232954450643 -14924.0,0.016199636831748014 -14925.0,0.016194042641543945 -14926.0,0.0161884503831711 -14927.0,0.016182860055962332 -14928.0,0.016177271659250776 -14929.0,0.016171685192369778 -14930.0,0.016166100654652907 -14931.0,0.016160518045433975 -14932.0,0.016154937364047012 -14933.0,0.016149358609826286 -14934.0,0.016143781782106306 -14935.0,0.01613820688022177 -14936.0,0.016132633903507644 -14937.0,0.016127062851299112 -14938.0,0.016121493722931594 -14939.0,0.01611592651774073 -14940.0,0.016110361235062393 -14941.0,0.016104797874232683 -14942.0,0.016099236434587938 -14943.0,0.016093676915464726 -14944.0,0.016088119316199814 -14945.0,0.01608256363613023 -14946.0,0.016077009874593227 -14947.0,0.01607145803092628 -14948.0,0.016065908104467088 -14949.0,0.016060360094553597 -14950.0,0.01605481400052396 -14951.0,0.01604926982171659 -14952.0,0.016043727557470074 -14953.0,0.016038187207123272 -14954.0,0.01603264877001527 -14955.0,0.016027112245485364 -14956.0,0.01602157763287309 -14957.0,0.016016044931518206 -14958.0,0.01601051414076071 -14959.0,0.016004985259940808 -14960.0,0.015999458288398966 -14961.0,0.015993933225475827 -14962.0,0.015988410070512306 -14963.0,0.015982888822849525 -14964.0,0.01597736948182885 -14965.0,0.015971852046791853 -14966.0,0.015966336517080352 -14967.0,0.015960822892036382 -14968.0,0.01595531117100222 -14969.0,0.01594980135332033 -14970.0,0.015944293438333448 -14971.0,0.01593878742538452 -14972.0,0.01593328331381671 -14973.0,0.015927781102973434 -14974.0,0.015922280792198304 -14975.0,0.015916782380835177 -14976.0,0.01591128586822815 -14977.0,0.015905791253721498 -14978.0,0.015900298536659765 -14979.0,0.015894807716387717 -14980.0,0.015889318792250334 -14981.0,0.01588383176359283 -14982.0,0.015878346629760638 -14983.0,0.015872863390099426 -14984.0,0.015867382043955082 -14985.0,0.015861902590673736 -14986.0,0.015856425029601703 -14987.0,0.015850949360085558 -14988.0,0.0158454755814721 -14989.0,0.015840003693108343 -14990.0,0.015834533694341534 -14991.0,0.015829065584519138 -14992.0,0.015823599362988848 -14993.0,0.015818135029098606 -14994.0,0.015812672582196523 -14995.0,0.015807212021630983 -14996.0,0.01580175334675058 -14997.0,0.015796296556904135 -14998.0,0.015790841651440696 -14999.0,0.01578538862970953 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516204500_theo_VPR_VPR.png b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516204500_theo_VPR_VPR.png deleted file mode 100644 index acb6746..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516204500_theo_VPR_VPR.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516205000_theo_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516205000_theo_VPR_VPR.csv deleted file mode 100644 index 5a65113..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516205000_theo_VPR_VPR.csv +++ /dev/null @@ -1,15008 +0,0 @@ -# Height Profile -# ============== -# -# Datatype (Unit) : normalized reflectivity (-) -# Fill value : -9999.0 -# Time : 2020-05-16 20:50:00 -# Sector specification: None -Altitude [m MSL],Znorm -0.0,1.0 -1.0,1.0 -2.0,1.0 -3.0,1.0 -4.0,1.0 -5.0,1.0 -6.0,1.0 -7.0,1.0 -8.0,1.0 -9.0,1.0 -10.0,1.0 -11.0,1.0 -12.0,1.0 -13.0,1.0 -14.0,1.0 -15.0,1.0 -16.0,1.0 -17.0,1.0 -18.0,1.0 -19.0,1.0 -20.0,1.0 -21.0,1.0 -22.0,1.0 -23.0,1.0 -24.0,1.0 -25.0,1.0 -26.0,1.0 -27.0,1.0 -28.0,1.0 -29.0,1.0 -30.0,1.0 -31.0,1.0 -32.0,1.0 -33.0,1.0 -34.0,1.0 -35.0,1.0 -36.0,1.0 -37.0,1.0 -38.0,1.0 -39.0,1.0 -40.0,1.0 -41.0,1.0 -42.0,1.0 -43.0,1.0 -44.0,1.0 -45.0,1.0 -46.0,1.0 -47.0,1.0 -48.0,1.0 -49.0,1.0 -50.0,1.0 -51.0,1.0 -52.0,1.0 -53.0,1.0 -54.0,1.0 -55.0,1.0 -56.0,1.0 -57.0,1.0 -58.0,1.0 -59.0,1.0 -60.0,1.0 -61.0,1.0 -62.0,1.0 -63.0,1.0 -64.0,1.0 -65.0,1.0 -66.0,1.0 -67.0,1.0 -68.0,1.0 -69.0,1.0 -70.0,1.0 -71.0,1.0 -72.0,1.0 -73.0,1.0 -74.0,1.0 -75.0,1.0 -76.0,1.0 -77.0,1.0 -78.0,1.0 -79.0,1.0 -80.0,1.0 -81.0,1.0 -82.0,1.0 -83.0,1.0 -84.0,1.0 -85.0,1.0 -86.0,1.0 -87.0,1.0 -88.0,1.0 -89.0,1.0 -90.0,1.0 -91.0,1.0 -92.0,1.0 -93.0,1.0 -94.0,1.0 -95.0,1.0 -96.0,1.0 -97.0,1.0 -98.0,1.0 -99.0,1.0 -100.0,1.0 -101.0,1.0 -102.0,1.0 -103.0,1.0 -104.0,1.0 -105.0,1.0 -106.0,1.0 -107.0,1.0 -108.0,1.0 -109.0,1.0 -110.0,1.0 -111.0,1.0 -112.0,1.0 -113.0,1.0 -114.0,1.0 -115.0,1.0 -116.0,1.0 -117.0,1.0 -118.0,1.0 -119.0,1.0 -120.0,1.0 -121.0,1.0 -122.0,1.0 -123.0,1.0 -124.0,1.0 -125.0,1.0 -126.0,1.0 -127.0,1.0 -128.0,1.0 -129.0,1.0 -130.0,1.0 -131.0,1.0 -132.0,1.0 -133.0,1.0 -134.0,1.0 -135.0,1.0 -136.0,1.0 -137.0,1.0 -138.0,1.0 -139.0,1.0 -140.0,1.0 -141.0,1.0 -142.0,1.0 -143.0,1.0 -144.0,1.0 -145.0,1.0 -146.0,1.0 -147.0,1.0 -148.0,1.0 -149.0,1.0 -150.0,1.0 -151.0,1.0 -152.0,1.0 -153.0,1.0 -154.0,1.0 -155.0,1.0 -156.0,1.0 -157.0,1.0 -158.0,1.0 -159.0,1.0 -160.0,1.0 -161.0,1.0 -162.0,1.0 -163.0,1.0 -164.0,1.0 -165.0,1.0 -166.0,1.0 -167.0,1.0 -168.0,1.0 -169.0,1.0 -170.0,1.0 -171.0,1.0 -172.0,1.0 -173.0,1.0 -174.0,1.0 -175.0,1.0 -176.0,1.0 -177.0,1.0 -178.0,1.0 -179.0,1.0 -180.0,1.0 -181.0,1.0 -182.0,1.0 -183.0,1.0 -184.0,1.0 -185.0,1.0 -186.0,1.0 -187.0,1.0 -188.0,1.0 -189.0,1.0 -190.0,1.0 -191.0,1.0 -192.0,1.0 -193.0,1.0 -194.0,1.0 -195.0,1.0 -196.0,1.0 -197.0,1.0 -198.0,1.0 -199.0,1.0 -200.0,1.0 -201.0,1.0 -202.0,1.0 -203.0,1.0 -204.0,1.0 -205.0,1.0 -206.0,1.0 -207.0,1.0 -208.0,1.0 -209.0,1.0 -210.0,1.0 -211.0,1.0 -212.0,1.0 -213.0,1.0 -214.0,1.0 -215.0,1.0 -216.0,1.0 -217.0,1.0 -218.0,1.0 -219.0,1.0 -220.0,1.0 -221.0,1.0 -222.0,1.0 -223.0,1.0 -224.0,1.0 -225.0,1.0 -226.0,1.0 -227.0,1.0 -228.0,1.0 -229.0,1.0 -230.0,1.0 -231.0,1.0 -232.0,1.0 -233.0,1.0 -234.0,1.0 -235.0,1.0 -236.0,1.0 -237.0,1.0 -238.0,1.0 -239.0,1.0 -240.0,1.0 -241.0,1.0 -242.0,1.0 -243.0,1.0 -244.0,1.0 -245.0,1.0 -246.0,1.0 -247.0,1.0 -248.0,1.0 -249.0,1.0 -250.0,1.0 -251.0,1.0 -252.0,1.0 -253.0,1.0 -254.0,1.0 -255.0,1.0 -256.0,1.0 -257.0,1.0 -258.0,1.0 -259.0,1.0 -260.0,1.0 -261.0,1.0 -262.0,1.0 -263.0,1.0 -264.0,1.0 -265.0,1.0 -266.0,1.0 -267.0,1.0 -268.0,1.0 -269.0,1.0 -270.0,1.0 -271.0,1.0 -272.0,1.0 -273.0,1.0 -274.0,1.0 -275.0,1.0 -276.0,1.0 -277.0,1.0 -278.0,1.0 -279.0,1.0 -280.0,1.0 -281.0,1.0 -282.0,1.0 -283.0,1.0 -284.0,1.0 -285.0,1.0 -286.0,1.0 -287.0,1.0 -288.0,1.0 -289.0,1.0 -290.0,1.0 -291.0,1.0 -292.0,1.0 -293.0,1.0 -294.0,1.0 -295.0,1.0 -296.0,1.0 -297.0,1.0 -298.0,1.0 -299.0,1.0 -300.0,1.0 -301.0,1.0 -302.0,1.0 -303.0,1.0 -304.0,1.0 -305.0,1.0 -306.0,1.0 -307.0,1.0 -308.0,1.0 -309.0,1.0 -310.0,1.0 -311.0,1.0 -312.0,1.0 -313.0,1.0 -314.0,1.0 -315.0,1.0 -316.0,1.0 -317.0,1.0 -318.0,1.0 -319.0,1.0 -320.0,1.0 -321.0,1.0 -322.0,1.0 -323.0,1.0 -324.0,1.0 -325.0,1.0 -326.0,1.0 -327.0,1.0 -328.0,1.0 -329.0,1.0 -330.0,1.0 -331.0,1.0 -332.0,1.0 -333.0,1.0 -334.0,1.0 -335.0,1.0 -336.0,1.0 -337.0,1.0 -338.0,1.0 -339.0,1.0 -340.0,1.0 -341.0,1.0 -342.0,1.0 -343.0,1.0 -344.0,1.0 -345.0,1.0 -346.0,1.0 -347.0,1.0 -348.0,1.0 -349.0,1.0 -350.0,1.0 -351.0,1.0 -352.0,1.0 -353.0,1.0 -354.0,1.0 -355.0,1.0 -356.0,1.0 -357.0,1.0 -358.0,1.0 -359.0,1.0 -360.0,1.0 -361.0,1.0 -362.0,1.0 -363.0,1.0 -364.0,1.0 -365.0,1.0 -366.0,1.0 -367.0,1.0 -368.0,1.0 -369.0,1.0 -370.0,1.0 -371.0,1.0 -372.0,1.0 -373.0,1.0 -374.0,1.0 -375.0,1.0 -376.0,1.0 -377.0,1.0 -378.0,1.0 -379.0,1.0 -380.0,1.0 -381.0,1.0 -382.0,1.0 -383.0,1.0 -384.0,1.0 -385.0,1.0 -386.0,1.0 -387.0,1.0 -388.0,1.0 -389.0,1.0 -390.0,1.0 -391.0,1.0 -392.0,1.0 -393.0,1.0 -394.0,1.0 -395.0,1.0 -396.0,1.0 -397.0,1.0 -398.0,1.0 -399.0,1.0 -400.0,1.0 -401.0,1.0 -402.0,1.0 -403.0,1.0 -404.0,1.0 -405.0,1.0 -406.0,1.0 -407.0,1.0 -408.0,1.0 -409.0,1.0 -410.0,1.0 -411.0,1.0 -412.0,1.0 -413.0,1.0 -414.0,1.0 -415.0,1.0 -416.0,1.0 -417.0,1.0 -418.0,1.0 -419.0,1.0 -420.0,1.0 -421.0,1.0 -422.0,1.0 -423.0,1.0 -424.0,1.0 -425.0,1.0 -426.0,1.0 -427.0,1.0 -428.0,1.0 -429.0,1.0 -430.0,1.0 -431.0,1.0 -432.0,1.0 -433.0,1.0 -434.0,1.0 -435.0,1.0 -436.0,1.0 -437.0,1.0 -438.0,1.0 -439.0,1.0 -440.0,1.0 -441.0,1.0 -442.0,1.0 -443.0,1.0 -444.0,1.0 -445.0,1.0 -446.0,1.0 -447.0,1.0 -448.0,1.0 -449.0,1.0 -450.0,1.0 -451.0,1.0 -452.0,1.0 -453.0,1.0 -454.0,1.0 -455.0,1.0 -456.0,1.0 -457.0,1.0 -458.0,1.0 -459.0,1.0 -460.0,1.0 -461.0,1.0 -462.0,1.0 -463.0,1.0 -464.0,1.0 -465.0,1.0 -466.0,1.0 -467.0,1.0 -468.0,1.0 -469.0,1.0 -470.0,1.0 -471.0,1.0 -472.0,1.0 -473.0,1.0 -474.0,1.0 -475.0,1.0 -476.0,1.0 -477.0,1.0 -478.0,1.0 -479.0,1.0 -480.0,1.0 -481.0,1.0 -482.0,1.0 -483.0,1.0 -484.0,1.0 -485.0,1.0 -486.0,1.0 -487.0,1.0 -488.0,1.0 -489.0,1.0 -490.0,1.0 -491.0,1.0 -492.0,1.0 -493.0,1.0 -494.0,1.0 -495.0,1.0 -496.0,1.0 -497.0,1.0 -498.0,1.0 -499.0,1.0 -500.0,1.0 -501.0,1.0 -502.0,1.0 -503.0,1.0 -504.0,1.0 -505.0,1.0 -506.0,1.0 -507.0,1.0 -508.0,1.0 -509.0,1.0 -510.0,1.0 -511.0,1.0 -512.0,1.0 -513.0,1.0 -514.0,1.0 -515.0,1.0 -516.0,1.0 -517.0,1.0 -518.0,1.0 -519.0,1.0 -520.0,1.0 -521.0,1.0 -522.0,1.0 -523.0,1.0 -524.0,1.0 -525.0,1.0 -526.0,1.0 -527.0,1.0 -528.0,1.0 -529.0,1.0 -530.0,1.0 -531.0,1.0 -532.0,1.0 -533.0,1.0 -534.0,1.0 -535.0,1.0 -536.0,1.0 -537.0,1.0 -538.0,1.0 -539.0,1.0 -540.0,1.0 -541.0,1.0 -542.0,1.0 -543.0,1.0 -544.0,1.0 -545.0,1.0 -546.0,1.0 -547.0,1.0 -548.0,1.0 -549.0,1.0 -550.0,1.0 -551.0,1.0 -552.0,1.0 -553.0,1.0 -554.0,1.0 -555.0,1.0 -556.0,1.0 -557.0,1.0 -558.0,1.0 -559.0,1.0 -560.0,1.0 -561.0,1.0 -562.0,1.0 -563.0,1.0 -564.0,1.0 -565.0,1.0 -566.0,1.0 -567.0,1.0 -568.0,1.0 -569.0,1.0 -570.0,1.0 -571.0,1.0 -572.0,1.0 -573.0,1.0 -574.0,1.0 -575.0,1.0 -576.0,1.0 -577.0,1.0 -578.0,1.0 -579.0,1.0 -580.0,1.0 -581.0,1.0 -582.0,1.0 -583.0,1.0 -584.0,1.0 -585.0,1.0 -586.0,1.0 -587.0,1.0 -588.0,1.0 -589.0,1.0 -590.0,1.0 -591.0,1.0 -592.0,1.0 -593.0,1.0 -594.0,1.0 -595.0,1.0 -596.0,1.0 -597.0,1.0 -598.0,1.0 -599.0,1.0 -600.0,1.0 -601.0,1.0 -602.0,1.0 -603.0,1.0 -604.0,1.0 -605.0,1.0 -606.0,1.0 -607.0,1.0 -608.0,1.0 -609.0,1.0 -610.0,1.0 -611.0,1.0 -612.0,1.0 -613.0,1.0 -614.0,1.0 -615.0,1.0 -616.0,1.0 -617.0,1.0 -618.0,1.0 -619.0,1.0 -620.0,1.0 -621.0,1.0 -622.0,1.0 -623.0,1.0 -624.0,1.0 -625.0,1.0 -626.0,1.0 -627.0,1.0 -628.0,1.0 -629.0,1.0 -630.0,1.0 -631.0,1.0 -632.0,1.0 -633.0,1.0 -634.0,1.0 -635.0,1.0 -636.0,1.0 -637.0,1.0 -638.0,1.0 -639.0,1.0 -640.0,1.0 -641.0,1.0 -642.0,1.0 -643.0,1.0 -644.0,1.0 -645.0,1.0 -646.0,1.0 -647.0,1.0 -648.0,1.0 -649.0,1.0 -650.0,1.0 -651.0,1.0 -652.0,1.0 -653.0,1.0 -654.0,1.0 -655.0,1.0 -656.0,1.0 -657.0,1.0 -658.0,1.0 -659.0,1.0 -660.0,1.0 -661.0,1.0 -662.0,1.0 -663.0,1.0 -664.0,1.0 -665.0,1.0 -666.0,1.0 -667.0,1.0 -668.0,1.0 -669.0,1.0 -670.0,1.0 -671.0,1.0 -672.0,1.0 -673.0,1.0 -674.0,1.0 -675.0,1.0 -676.0,1.0 -677.0,1.0 -678.0,1.0 -679.0,1.0 -680.0,1.0 -681.0,1.0 -682.0,1.0 -683.0,1.0 -684.0,1.0 -685.0,1.0 -686.0,1.0 -687.0,1.0 -688.0,1.0 -689.0,1.0 -690.0,1.0 -691.0,1.0 -692.0,1.0 -693.0,1.0 -694.0,1.0 -695.0,1.0 -696.0,1.0 -697.0,1.0 -698.0,1.0 -699.0,1.0 -700.0,1.0 -701.0,1.0 -702.0,1.0 -703.0,1.0 -704.0,1.0 -705.0,1.0 -706.0,1.0 -707.0,1.0 -708.0,1.0 -709.0,1.0 -710.0,1.0 -711.0,1.0 -712.0,1.0 -713.0,1.0 -714.0,1.0 -715.0,1.0 -716.0,1.0 -717.0,1.0 -718.0,1.0 -719.0,1.0 -720.0,1.0 -721.0,1.0 -722.0,1.0 -723.0,1.0 -724.0,1.0 -725.0,1.0 -726.0,1.0 -727.0,1.0 -728.0,1.0 -729.0,1.0 -730.0,1.0 -731.0,1.0 -732.0,1.0 -733.0,1.0 -734.0,1.0 -735.0,1.0 -736.0,1.0 -737.0,1.0 -738.0,1.0 -739.0,1.0 -740.0,1.0 -741.0,1.0 -742.0,1.0 -743.0,1.0 -744.0,1.0 -745.0,1.0 -746.0,1.0 -747.0,1.0 -748.0,1.0 -749.0,1.0 -750.0,1.0 -751.0,1.0 -752.0,1.0 -753.0,1.0 -754.0,1.0 -755.0,1.0 -756.0,1.0 -757.0,1.0 -758.0,1.0 -759.0,1.0 -760.0,1.0 -761.0,1.0 -762.0,1.0 -763.0,1.0 -764.0,1.0 -765.0,1.0 -766.0,1.0 -767.0,1.0 -768.0,1.0 -769.0,1.0 -770.0,1.0 -771.0,1.0 -772.0,1.0 -773.0,1.0 -774.0,1.0 -775.0,1.0 -776.0,1.0 -777.0,1.0 -778.0,1.0 -779.0,1.0 -780.0,1.0 -781.0,1.0 -782.0,1.0 -783.0,1.0 -784.0,1.0 -785.0,1.0 -786.0,1.0 -787.0,1.0 -788.0,1.0 -789.0,1.0 -790.0,1.0 -791.0,1.0 -792.0,1.0 -793.0,1.0 -794.0,1.0 -795.0,1.0 -796.0,1.0 -797.0,1.0 -798.0,1.0 -799.0,1.0 -800.0,1.0 -801.0,1.0 -802.0,1.0 -803.0,1.0 -804.0,1.0 -805.0,1.0 -806.0,1.0 -807.0,1.0 -808.0,1.0 -809.0,1.0 -810.0,1.0 -811.0,1.0 -812.0,1.0 -813.0,1.0 -814.0,1.0 -815.0,1.0 -816.0,1.0 -817.0,1.0 -818.0,1.0 -819.0,1.0 -820.0,1.0 -821.0,1.0 -822.0,1.0 -823.0,1.0 -824.0,1.0 -825.0,1.0 -826.0,1.0 -827.0,1.0 -828.0,1.0 -829.0,1.0 -830.0,1.0 -831.0,1.0 -832.0,1.0 -833.0,1.0 -834.0,1.0 -835.0,1.0 -836.0,1.0 -837.0,1.0 -838.0,1.0 -839.0,1.0 -840.0,1.0 -841.0,1.0 -842.0,1.0 -843.0,1.0 -844.0,1.0 -845.0,1.0 -846.0,1.0 -847.0,1.0 -848.0,1.0 -849.0,1.0 -850.0,1.0 -851.0,1.0 -852.0,1.0 -853.0,1.0 -854.0,1.0 -855.0,1.0 -856.0,1.0 -857.0,1.0 -858.0,1.0 -859.0,1.0 -860.0,1.0 -861.0,1.0 -862.0,1.0 -863.0,1.0 -864.0,1.0 -865.0,1.0 -866.0,1.0 -867.0,1.0 -868.0,1.0 -869.0,1.0 -870.0,1.0 -871.0,1.0 -872.0,1.0 -873.0,1.0 -874.0,1.0 -875.0,1.0 -876.0,1.0 -877.0,1.0 -878.0,1.0 -879.0,1.0 -880.0,1.0 -881.0,1.0 -882.0,1.0 -883.0,1.0 -884.0,1.0 -885.0,1.0 -886.0,1.0 -887.0,1.0 -888.0,1.0 -889.0,1.0 -890.0,1.0 -891.0,1.0 -892.0,1.0 -893.0,1.0 -894.0,1.0 -895.0,1.0 -896.0,1.0 -897.0,1.0 -898.0,1.0 -899.0,1.0 -900.0,1.0 -901.0,1.0 -902.0,1.0 -903.0,1.0 -904.0,1.0 -905.0,1.0 -906.0,1.0 -907.0,1.0 -908.0,1.0 -909.0,1.0 -910.0,1.0 -911.0,1.0 -912.0,1.0 -913.0,1.0 -914.0,1.0 -915.0,1.0 -916.0,1.0 -917.0,1.0 -918.0,1.0 -919.0,1.0 -920.0,1.0 -921.0,1.0 -922.0,1.0 -923.0,1.0 -924.0,1.0 -925.0,1.0 -926.0,1.0 -927.0,1.0 -928.0,1.0 -929.0,1.0 -930.0,1.0 -931.0,1.0 -932.0,1.0 -933.0,1.0 -934.0,1.0 -935.0,1.0 -936.0,1.0 -937.0,1.0 -938.0,1.0 -939.0,1.0 -940.0,1.0 -941.0,1.0 -942.0,1.0 -943.0,1.0 -944.0,1.0 -945.0,1.0 -946.0,1.0 -947.0,1.0 -948.0,1.0 -949.0,1.0 -950.0,1.0 -951.0,1.0 -952.0,1.0 -953.0,1.0 -954.0,1.0 -955.0,1.0 -956.0,1.0 -957.0,1.0 -958.0,1.0 -959.0,1.0 -960.0,1.0 -961.0,1.0 -962.0,1.0 -963.0,1.0 -964.0,1.0 -965.0,1.0 -966.0,1.0 -967.0,1.0 -968.0,1.0 -969.0,1.0 -970.0,1.0 -971.0,1.0 -972.0,1.0 -973.0,1.0 -974.0,1.0 -975.0,1.0 -976.0,1.0 -977.0,1.0 -978.0,1.0 -979.0,1.0 -980.0,1.0 -981.0,1.0 -982.0,1.0 -983.0,1.0 -984.0,1.0 -985.0,1.0 -986.0,1.0 -987.0,1.0 -988.0,1.0 -989.0,1.0 -990.0,1.0 -991.0,1.0 -992.0,1.0 -993.0,1.0 -994.0,1.0 -995.0,1.0 -996.0,1.0 -997.0,1.0 -998.0,1.0 -999.0,1.0 -1000.0,1.0 -1001.0,1.0 -1002.0,1.0 -1003.0,1.0 -1004.0,1.0 -1005.0,1.0 -1006.0,1.0 -1007.0,1.0 -1008.0,1.0 -1009.0,1.0 -1010.0,1.0 -1011.0,1.0 -1012.0,1.0 -1013.0,1.0 -1014.0,1.0 -1015.0,1.0 -1016.0,1.0 -1017.0,1.0 -1018.0,1.0 -1019.0,1.0 -1020.0,1.0 -1021.0,1.0 -1022.0,1.0 -1023.0,1.0 -1024.0,1.0 -1025.0,1.0 -1026.0,1.0 -1027.0,1.0 -1028.0,1.0 -1029.0,1.0 -1030.0,1.0 -1031.0,1.0 -1032.0,1.0 -1033.0,1.0 -1034.0,1.0 -1035.0,1.0 -1036.0,1.0 -1037.0,1.0 -1038.0,1.0 -1039.0,1.0 -1040.0,1.0 -1041.0,1.0 -1042.0,1.0 -1043.0,1.0 -1044.0,1.0 -1045.0,1.0 -1046.0,1.0 -1047.0,1.0 -1048.0,1.0 -1049.0,1.0 -1050.0,1.0 -1051.0,1.0 -1052.0,1.0 -1053.0,1.0 -1054.0,1.0 -1055.0,1.0 -1056.0,1.0 -1057.0,1.0 -1058.0,1.0 -1059.0,1.0 -1060.0,1.0 -1061.0,1.0 -1062.0,1.0 -1063.0,1.0 -1064.0,1.0 -1065.0,1.0 -1066.0,1.0 -1067.0,1.0 -1068.0,1.0 -1069.0,1.0 -1070.0,1.0 -1071.0,1.0 -1072.0,1.0 -1073.0,1.0 -1074.0,1.0 -1075.0,1.0 -1076.0,1.0 -1077.0,1.0 -1078.0,1.0 -1079.0,1.0 -1080.0,1.0 -1081.0,1.0 -1082.0,1.0 -1083.0,1.0 -1084.0,1.0 -1085.0,1.0 -1086.0,1.0 -1087.0,1.0 -1088.0,1.0 -1089.0,1.0 -1090.0,1.0 -1091.0,1.0 -1092.0,1.0 -1093.0,1.0 -1094.0,1.0 -1095.0,1.0 -1096.0,1.0 -1097.0,1.0 -1098.0,1.0 -1099.0,1.0 -1100.0,1.0 -1101.0,1.0 -1102.0,1.0 -1103.0,1.0 -1104.0,1.0 -1105.0,1.0 -1106.0,1.0 -1107.0,1.0 -1108.0,1.0 -1109.0,1.0 -1110.0,1.0 -1111.0,1.0 -1112.0,1.0 -1113.0,1.0 -1114.0,1.0 -1115.0,1.0 -1116.0,1.0 -1117.0,1.0 -1118.0,1.0 -1119.0,1.0 -1120.0,1.0 -1121.0,1.0 -1122.0,1.0 -1123.0,1.0 -1124.0,1.0 -1125.0,1.0 -1126.0,1.0 -1127.0,1.0 -1128.0,1.0 -1129.0,1.0 -1130.0,1.0 -1131.0,1.0 -1132.0,1.0 -1133.0,1.0 -1134.0,1.0 -1135.0,1.0 -1136.0,1.0 -1137.0,1.0 -1138.0,1.0 -1139.0,1.0 -1140.0,1.0 -1141.0,1.0 -1142.0,1.0 -1143.0,1.0 -1144.0,1.0 -1145.0,1.0 -1146.0,1.0 -1147.0,1.0 -1148.0,1.0 -1149.0,1.0 -1150.0,1.0 -1151.0,1.0 -1152.0,1.0 -1153.0,1.0 -1154.0,1.0 -1155.0,1.0 -1156.0,1.0 -1157.0,1.0 -1158.0,1.0 -1159.0,1.0 -1160.0,1.0 -1161.0,1.0 -1162.0,1.0 -1163.0,1.0 -1164.0,1.0 -1165.0,1.0 -1166.0,1.0 -1167.0,1.0 -1168.0,1.0 -1169.0,1.0 -1170.0,1.0 -1171.0,1.0 -1172.0,1.0 -1173.0,1.0 -1174.0,1.0 -1175.0,1.0 -1176.0,1.0 -1177.0,1.0 -1178.0,1.0 -1179.0,1.0 -1180.0,1.0 -1181.0,1.0 -1182.0,1.0 -1183.0,1.0 -1184.0,1.0 -1185.0,1.0 -1186.0,1.0 -1187.0,1.0 -1188.0,1.0 -1189.0,1.0 -1190.0,1.0 -1191.0,1.0 -1192.0,1.0 -1193.0,1.0 -1194.0,1.0 -1195.0,1.0 -1196.0,1.0 -1197.0,1.0 -1198.0,1.0 -1199.0,1.0 -1200.0,1.0 -1201.0,1.0 -1202.0,1.0 -1203.0,1.0 -1204.0,1.0 -1205.0,1.0 -1206.0,1.0 -1207.0,1.0 -1208.0,1.0 -1209.0,1.0 -1210.0,1.0 -1211.0,1.0 -1212.0,1.0 -1213.0,1.0 -1214.0,1.0 -1215.0,1.0 -1216.0,1.0 -1217.0,1.0 -1218.0,1.0 -1219.0,1.0 -1220.0,1.0 -1221.0,1.0 -1222.0,1.0 -1223.0,1.0 -1224.0,1.0 -1225.0,1.0 -1226.0,1.0 -1227.0,1.0 -1228.0,1.0 -1229.0,1.0 -1230.0,1.0 -1231.0,1.0 -1232.0,1.0 -1233.0,1.0 -1234.0,1.0 -1235.0,1.0 -1236.0,1.0 -1237.0,1.0 -1238.0,1.0 -1239.0,1.0 -1240.0,1.0 -1241.0,1.0 -1242.0,1.0 -1243.0,1.0 -1244.0,1.0 -1245.0,1.0 -1246.0,1.0 -1247.0,1.0 -1248.0,1.0 -1249.0,1.0 -1250.0,1.0 -1251.0,1.0 -1252.0,1.0 -1253.0,1.0 -1254.0,1.0 -1255.0,1.0 -1256.0,1.0 -1257.0,1.0 -1258.0,1.0 -1259.0,1.0 -1260.0,1.0 -1261.0,1.0 -1262.0,1.0 -1263.0,1.0 -1264.0,1.0 -1265.0,1.0 -1266.0,1.0 -1267.0,1.0 -1268.0,1.0 -1269.0,1.0 -1270.0,1.0 -1271.0,1.0 -1272.0,1.0 -1273.0,1.0 -1274.0,1.0 -1275.0,1.0 -1276.0,1.0 -1277.0,1.0 -1278.0,1.0 -1279.0,1.0 -1280.0,1.0 -1281.0,1.0 -1282.0,1.0 -1283.0,1.0 -1284.0,1.0 -1285.0,1.0 -1286.0,1.0 -1287.0,1.0 -1288.0,1.0 -1289.0,1.0 -1290.0,1.0 -1291.0,1.0 -1292.0,1.0 -1293.0,1.0 -1294.0,1.0 -1295.0,1.0 -1296.0,1.0 -1297.0,1.0 -1298.0,1.0 -1299.0,1.0 -1300.0,1.0 -1301.0,1.0 -1302.0,1.0 -1303.0,1.0 -1304.0,1.0 -1305.0,1.0 -1306.0,1.0 -1307.0,1.0 -1308.0,1.0 -1309.0,1.0 -1310.0,1.0 -1311.0,1.0 -1312.0,1.0 -1313.0,1.0 -1314.0,1.0 -1315.0,1.0 -1316.0,1.0 -1317.0,1.0 -1318.0,1.0 -1319.0,1.0 -1320.0,1.0 -1321.0,1.0 -1322.0,1.0 -1323.0,1.0 -1324.0,1.0 -1325.0,1.0 -1326.0,1.0 -1327.0,1.0 -1328.0,1.0 -1329.0,1.0 -1330.0,1.0 -1331.0,1.0 -1332.0,1.0 -1333.0,1.0 -1334.0,1.0 -1335.0,1.0 -1336.0,1.0 -1337.0,1.0 -1338.0,1.0 -1339.0,1.0 -1340.0,1.0 -1341.0,1.0 -1342.0,1.0 -1343.0,1.0 -1344.0,1.0 -1345.0,1.0 -1346.0,1.0 -1347.0,1.0 -1348.0,1.0 -1349.0,1.0 -1350.0,1.0 -1351.0,1.0 -1352.0,1.0 -1353.0,1.0 -1354.0,1.0 -1355.0,1.0 -1356.0,1.0 -1357.0,1.0 -1358.0,1.0 -1359.0,1.0 -1360.0,1.0 -1361.0,1.0 -1362.0,1.0 -1363.0,1.0 -1364.0,1.0 -1365.0,1.0 -1366.0,1.0 -1367.0,1.0 -1368.0,1.0 -1369.0,1.0 -1370.0,1.0 -1371.0,1.0 -1372.0,1.0 -1373.0,1.0 -1374.0,1.0 -1375.0,1.0 -1376.0,1.0 -1377.0,1.0 -1378.0,1.0 -1379.0,1.0 -1380.0,1.0 -1381.0,1.0 -1382.0,1.0 -1383.0,1.0 -1384.0,1.0 -1385.0,1.0 -1386.0,1.0 -1387.0,1.0 -1388.0,1.0 -1389.0,1.0 -1390.0,1.0 -1391.0,1.0 -1392.0,1.0 -1393.0,1.0 -1394.0,1.0 -1395.0,1.0 -1396.0,1.0 -1397.0,1.0 -1398.0,1.0 -1399.0,1.0 -1400.0,1.0 -1401.0,1.0 -1402.0,1.0 -1403.0,1.0 -1404.0,1.0 -1405.0,1.0 -1406.0,1.0 -1407.0,1.0 -1408.0,1.0 -1409.0,1.0 -1410.0,1.0 -1411.0,1.0 -1412.0,1.0 -1413.0,1.0 -1414.0,1.0 -1415.0,1.0 -1416.0,1.0 -1417.0,1.0 -1418.0,1.0 -1419.0,1.0 -1420.0,1.0 -1421.0,1.0 -1422.0,1.0 -1423.0,1.0 -1424.0,1.0 -1425.0,1.0 -1426.0,1.0 -1427.0,1.0 -1428.0,1.0 -1429.0,1.0 -1430.0,1.0 -1431.0,1.0 -1432.0,1.0 -1433.0,1.0 -1434.0,1.0 -1435.0,1.0 -1436.0,1.0 -1437.0,1.0 -1438.0,1.0 -1439.0,1.0 -1440.0,1.0 -1441.0,1.0 -1442.0,1.0 -1443.0,1.0 -1444.0,1.0 -1445.0,1.0 -1446.0,1.0 -1447.0,1.0 -1448.0,1.0 -1449.0,1.0 -1450.0,1.0 -1451.0,1.0 -1452.0,1.0 -1453.0,1.0 -1454.0,1.0 -1455.0,1.0 -1456.0,1.0 -1457.0,1.0 -1458.0,1.0 -1459.0,1.0 -1460.0,1.0 -1461.0,1.0 -1462.0,1.0 -1463.0,1.0 -1464.0,1.0 -1465.0,1.0 -1466.0,1.0 -1467.0,1.0 -1468.0,1.0 -1469.0,1.0 -1470.0,1.0 -1471.0,1.0 -1472.0,1.0 -1473.0,1.0 -1474.0,1.0 -1475.0,1.0 -1476.0,1.0 -1477.0,1.0 -1478.0,1.0 -1479.0,1.0 -1480.0,1.0 -1481.0,1.0 -1482.0,1.0 -1483.0,1.0 -1484.0,1.0 -1485.0,1.0 -1486.0,1.0 -1487.0,1.0 -1488.0,1.0 -1489.0,1.0 -1490.0,1.0 -1491.0,1.0 -1492.0,1.0 -1493.0,1.0 -1494.0,1.0 -1495.0,1.0 -1496.0,1.0 -1497.0,1.0 -1498.0,1.0 -1499.0,1.0 -1500.0,1.0 -1501.0,1.0 -1502.0,1.0 -1503.0,1.0 -1504.0,1.0 -1505.0,1.0 -1506.0,1.0 -1507.0,1.0 -1508.0,1.0 -1509.0,1.0 -1510.0,1.0 -1511.0,1.0 -1512.0,1.0 -1513.0,1.0 -1514.0,1.0 -1515.0,1.0 -1516.0,1.0 -1517.0,1.0 -1518.0,1.0 -1519.0,1.0 -1520.0,1.0 -1521.0,1.0 -1522.0,1.0 -1523.0,1.0 -1524.0,1.0 -1525.0,1.0 -1526.0,1.0 -1527.0,1.0 -1528.0,1.0 -1529.0,1.0 -1530.0,1.0 -1531.0,1.0 -1532.0,1.0 -1533.0,1.0 -1534.0,1.0 -1535.0,1.0 -1536.0,1.0 -1537.0,1.0 -1538.0,1.0 -1539.0,1.0 -1540.0,1.0 -1541.0,1.0 -1542.0,1.0 -1543.0,1.0 -1544.0,1.0 -1545.0,1.0 -1546.0,1.0 -1547.0,1.0 -1548.0,1.0 -1549.0,1.0 -1550.0,1.0 -1551.0,1.0 -1552.0,1.0 -1553.0,1.0 -1554.0,1.0 -1555.0,1.0 -1556.0,1.0 -1557.0,1.0 -1558.0,1.0 -1559.0,1.0 -1560.0,1.0 -1561.0,1.0 -1562.0,1.0 -1563.0,1.0 -1564.0,1.0 -1565.0,1.0 -1566.0,1.0 -1567.0,1.0 -1568.0,1.0 -1569.0,1.0 -1570.0,1.0 -1571.0,1.0 -1572.0,1.0 -1573.0,1.0 -1574.0,1.0 -1575.0,1.0 -1576.0,1.0 -1577.0,1.0 -1578.0,1.0 -1579.0,1.0 -1580.0,1.0 -1581.0,1.0 -1582.0,1.0 -1583.0,1.0 -1584.0,1.0 -1585.0,1.0 -1586.0,1.0 -1587.0,1.0 -1588.0,1.0 -1589.0,1.0 -1590.0,1.0 -1591.0,1.0 -1592.0,1.0 -1593.0,1.0 -1594.0,1.0 -1595.0,1.0 -1596.0,1.0 -1597.0,1.0 -1598.0,1.0 -1599.0,1.0 -1600.0,1.0 -1601.0,1.0 -1602.0,1.0 -1603.0,1.0 -1604.0,1.0 -1605.0,1.0 -1606.0,1.0 -1607.0,1.0 -1608.0,1.0 -1609.0,1.0 -1610.0,1.0 -1611.0,1.0 -1612.0,1.0 -1613.0,1.0 -1614.0,1.0 -1615.0,1.0 -1616.0,1.0 -1617.0,1.0 -1618.0,1.0 -1619.0,1.0 -1620.0,1.0 -1621.0,1.0 -1622.0,1.0 -1623.0,1.0 -1624.0,1.0 -1625.0,1.0 -1626.0,1.0 -1627.0,1.0 -1628.0,1.0 -1629.0,1.0 -1630.0,1.0 -1631.0,1.0 -1632.0,1.0 -1633.0,1.0 -1634.0,1.0 -1635.0,1.0 -1636.0,1.0 -1637.0,1.0 -1638.0,1.0 -1639.0,1.0 -1640.0,1.0 -1641.0,1.0 -1642.0,1.0 -1643.0,1.0 -1644.0,1.0 -1645.0,1.0 -1646.0,1.0 -1647.0,1.0 -1648.0,1.0 -1649.0,1.0 -1650.0,1.0 -1651.0,1.0 -1652.0,1.0 -1653.0,1.0 -1654.0,1.0 -1655.0,1.0 -1656.0,1.0 -1657.0,1.0 -1658.0,1.0 -1659.0,1.0 -1660.0,1.0 -1661.0,1.0 -1662.0,1.0 -1663.0,1.0 -1664.0,1.0 -1665.0,1.0 -1666.0,1.0 -1667.0,1.0 -1668.0,1.0 -1669.0,1.0 -1670.0,1.0 -1671.0,1.0 -1672.0,1.0 -1673.0,1.0 -1674.0,1.0 -1675.0,1.0 -1676.0,1.0 -1677.0,1.0 -1678.0,1.0 -1679.0,1.0 -1680.0,1.0 -1681.0,1.0 -1682.0,1.0 -1683.0,1.0 -1684.0,1.0 -1685.0,1.0 -1686.0,1.0 -1687.0,1.0 -1688.0,1.0 -1689.0,1.0 -1690.0,1.0 -1691.0,1.0 -1692.0,1.0 -1693.0,1.0 -1694.0,1.0 -1695.0,1.0 -1696.0,1.0 -1697.0,1.0 -1698.0,1.0 -1699.0,1.0 -1700.0,1.0 -1701.0,1.0 -1702.0,1.0 -1703.0,1.0 -1704.0,1.0 -1705.0,1.0 -1706.0,1.0 -1707.0,1.0 -1708.0,1.0 -1709.0,1.0 -1710.0,1.0 -1711.0,1.0 -1712.0,1.0 -1713.0,1.0 -1714.0,1.0 -1715.0,1.0 -1716.0,1.0 -1717.0,1.0 -1718.0,1.0 -1719.0,1.0 -1720.0,1.0 -1721.0,1.0 -1722.0,1.0 -1723.0,1.0 -1724.0,1.0 -1725.0,1.0 -1726.0,1.0 -1727.0,1.0 -1728.0,1.0 -1729.0,1.0 -1730.0,1.0 -1731.0,1.0 -1732.0,1.0 -1733.0,1.0 -1734.0,1.0 -1735.0,1.0 -1736.0,1.0 -1737.0,1.0 -1738.0,1.0 -1739.0,1.0 -1740.0,1.0 -1741.0,1.0 -1742.0,1.0 -1743.0,1.0 -1744.0,1.0 -1745.0,1.0 -1746.0,1.0 -1747.0,1.0 -1748.0,1.0 -1749.0,1.0 -1750.0,1.0 -1751.0,1.0 -1752.0,1.0 -1753.0,1.0 -1754.0,1.0 -1755.0,1.0 -1756.0,1.0 -1757.0,1.0 -1758.0,1.0 -1759.0,1.0 -1760.0,1.0 -1761.0,1.0 -1762.0,1.0 -1763.0,1.0 -1764.0,1.0 -1765.0,1.0 -1766.0,1.0 -1767.0,1.0 -1768.0,1.0 -1769.0,1.0 -1770.0,1.0 -1771.0,1.0 -1772.0,1.0 -1773.0,1.0 -1774.0,1.0 -1775.0,1.0 -1776.0,1.0 -1777.0,1.0 -1778.0,1.0 -1779.0,1.0 -1780.0,1.0 -1781.0,1.0 -1782.0,1.0 -1783.0,1.0 -1784.0,1.0 -1785.0,1.0 -1786.0,1.0 -1787.0,1.0 -1788.0,1.0 -1789.0,1.0 -1790.0,1.0 -1791.0,1.0 -1792.0,1.0 -1793.0,1.0 -1794.0,1.0 -1795.0,1.0 -1796.0,1.0 -1797.0,1.0 -1798.0,1.0 -1799.0,1.0 -1800.0,1.0 -1801.0,1.0 -1802.0,1.0 -1803.0,1.0 -1804.0,1.0 -1805.0,1.0 -1806.0,1.0 -1807.0,1.0 -1808.0,1.0 -1809.0,1.0 -1810.0,1.0 -1811.0,1.0 -1812.0,1.0 -1813.0,1.0 -1814.0,1.0 -1815.0,1.0 -1816.0,1.0 -1817.0,1.0 -1818.0,1.0 -1819.0,1.0 -1820.0,1.0 -1821.0,1.0 -1822.0,1.0 -1823.0,1.0 -1824.0,1.0 -1825.0,1.0 -1826.0,1.0 -1827.0,1.0 -1828.0,1.0 -1829.0,1.0 -1830.0,1.0 -1831.0,1.0 -1832.0,1.0 -1833.0,1.0 -1834.0,1.0 -1835.0,1.0 -1836.0,1.0 -1837.0,1.0 -1838.0,1.0 -1839.0,1.0 -1840.0,1.0 -1841.0,1.0 -1842.0,1.0 -1843.0,1.0 -1844.0,1.0 -1845.0,1.0 -1846.0,1.0 -1847.0,1.0 -1848.0,1.0 -1849.0,1.0 -1850.0,1.0 -1851.0,1.0 -1852.0,1.0 -1853.0,1.0 -1854.0,1.0 -1855.0,1.0 -1856.0,1.0 -1857.0,1.0 -1858.0,1.0 -1859.0,1.0 -1860.0,1.0 -1861.0,1.0 -1862.0,1.0 -1863.0,1.0 -1864.0,1.0 -1865.0,1.0 -1866.0,1.0 -1867.0,1.0 -1868.0,1.0 -1869.0,1.0 -1870.0,1.0 -1871.0,1.0 -1872.0,1.0 -1873.0,1.0 -1874.0,1.0 -1875.0,1.0 -1876.0,1.0 -1877.0,1.0 -1878.0,1.0 -1879.0,1.0 -1880.0,1.0 -1881.0,1.0 -1882.0,1.0 -1883.0,1.0 -1884.0,1.0 -1885.0,1.0 -1886.0,1.0 -1887.0,1.0 -1888.0,1.0 -1889.0,1.0 -1890.0,1.0 -1891.0,1.0 -1892.0,1.0 -1893.0,1.0 -1894.0,1.0 -1895.0,1.0 -1896.0,1.0 -1897.0,1.0 -1898.0,1.0 -1899.0,1.0 -1900.0,1.0 -1901.0,1.0 -1902.0,1.0 -1903.0,1.0 -1904.0,1.0 -1905.0,1.0 -1906.0,1.0 -1907.0,1.0 -1908.0,1.0 -1909.0,1.0 -1910.0,1.0 -1911.0,1.0 -1912.0,1.0 -1913.0,1.0 -1914.0,1.0 -1915.0,1.0 -1916.0,1.0 -1917.0,1.0 -1918.0,1.0 -1919.0,1.0 -1920.0,1.0 -1921.0,1.0 -1922.0,1.0 -1923.0,1.0 -1924.0,1.0 -1925.0,1.0 -1926.0,1.0 -1927.0,1.0 -1928.0,1.0 -1929.0,1.0 -1930.0,1.0 -1931.0,1.0 -1932.0,1.0 -1933.0,1.0 -1934.0,1.0 -1935.0,1.0 -1936.0,1.0 -1937.0,1.0 -1938.0,1.0 -1939.0,1.0 -1940.0,1.0 -1941.0,1.0 -1942.0,1.0 -1943.0,1.0 -1944.0,1.0 -1945.0,1.0 -1946.0,1.0 -1947.0,1.0 -1948.0,1.0 -1949.0,1.0 -1950.0,1.0 -1951.0,1.0 -1952.0,1.0 -1953.0,1.0 -1954.0,1.0 -1955.0,1.0 -1956.0,1.0 -1957.0,1.0 -1958.0,1.0 -1959.0,1.0 -1960.0,1.0 -1961.0,1.0 -1962.0,1.0 -1963.0,1.0 -1964.0,1.0 -1965.0,1.0 -1966.0,1.0 -1967.0,1.0 -1968.0,1.0 -1969.0,1.0 -1970.0,1.0 -1971.0,1.0 -1972.0,1.0 -1973.0,1.0 -1974.0,1.0 -1975.0,1.0 -1976.0,1.0 -1977.0,1.0 -1978.0,1.0 -1979.0,1.0 -1980.0,1.0 -1981.0,1.0 -1982.0,1.0 -1983.0,1.0 -1984.0,1.0 -1985.0,1.0 -1986.0,1.0 -1987.0,1.0 -1988.0,1.0 -1989.0,1.0 -1990.0,1.0 -1991.0,1.0 -1992.0,1.0 -1993.0,1.0 -1994.0,1.0 -1995.0,1.0 -1996.0,1.0 -1997.0,1.0 -1998.0,1.0 -1999.0,1.0 -2000.0,1.0 -2001.0,1.0 -2002.0,1.0 -2003.0,1.0 -2004.0,1.0 -2005.0,1.0 -2006.0,1.0 -2007.0,1.0 -2008.0,1.0 -2009.0,1.0 -2010.0,1.0 -2011.0,1.0 -2012.0,1.0 -2013.0,1.0 -2014.0,1.0 -2015.0,1.0 -2016.0,1.0 -2017.0,1.0 -2018.0,1.0 -2019.0,1.0 -2020.0,1.0 -2021.0,1.0 -2022.0,1.0 -2023.0,1.0 -2024.0,1.0 -2025.0,1.0 -2026.0,1.0 -2027.0,1.0 -2028.0,1.0 -2029.0,1.0 -2030.0,1.0 -2031.0,1.0 -2032.0,1.0 -2033.0,1.0 -2034.0,1.0 -2035.0,1.0 -2036.0,1.0 -2037.0,1.0 -2038.0,1.0 -2039.0,1.0 -2040.0,1.0 -2041.0,1.0 -2042.0,1.0 -2043.0,1.0 -2044.0,1.0 -2045.0,1.0 -2046.0,1.0 -2047.0,1.0 -2048.0,1.0 -2049.0,1.0 -2050.0,1.0 -2051.0,1.0 -2052.0,1.0 -2053.0,1.0 -2054.0,1.0 -2055.0,1.0 -2056.0,1.0 -2057.0,1.0 -2058.0,1.0 -2059.0,1.0 -2060.0,1.0 -2061.0,1.0 -2062.0,1.0 -2063.0,1.0 -2064.0,1.0 -2065.0,1.0 -2066.0,1.0 -2067.0,1.0 -2068.0,1.0 -2069.0,1.0 -2070.0,1.0 -2071.0,1.0 -2072.0,1.0 -2073.0,1.0 -2074.0,1.0 -2075.0,1.0 -2076.0,1.0 -2077.0,1.0 -2078.0,1.0 -2079.0,1.0 -2080.0,1.0 -2081.0,1.0 -2082.0,1.0 -2083.0,1.0 -2084.0,1.0 -2085.0,1.0 -2086.0,1.0 -2087.0,1.0 -2088.0,1.0 -2089.0,1.0 -2090.0,1.0 -2091.0,1.0 -2092.0,1.0 -2093.0,1.0 -2094.0,1.0 -2095.0,1.0 -2096.0,1.0 -2097.0,1.0 -2098.0,1.0 -2099.0,1.0 -2100.0,1.0 -2101.0,1.0 -2102.0,1.0 -2103.0,1.0 -2104.0,1.0 -2105.0,1.0 -2106.0,1.0 -2107.0,1.0 -2108.0,1.0 -2109.0,1.0 -2110.0,1.0 -2111.0,1.0 -2112.0,1.0 -2113.0,1.0 -2114.0,1.0 -2115.0,1.0 -2116.0,1.0 -2117.0,1.0 -2118.0,1.0 -2119.0,1.0 -2120.0,1.0 -2121.0,1.0 -2122.0,1.0 -2123.0,1.0 -2124.0,1.0 -2125.0,1.0 -2126.0,1.0 -2127.0,1.0 -2128.0,1.0 -2129.0,1.0 -2130.0,1.0 -2131.0,1.0 -2132.0,1.0 -2133.0,1.0 -2134.0,1.0 -2135.0,1.0 -2136.0,1.0 -2137.0,1.0 -2138.0,1.0 -2139.0,1.0 -2140.0,1.0 -2141.0,1.0 -2142.0,1.0 -2143.0,1.0 -2144.0,1.0 -2145.0,1.0 -2146.0,1.0 -2147.0,1.0 -2148.0,1.0 -2149.0,1.0 -2150.0,1.0 -2151.0,1.0 -2152.0,1.0 -2153.0,1.0 -2154.0,1.0 -2155.0,1.0 -2156.0,1.0 -2157.0,1.0 -2158.0,1.0 -2159.0,1.0 -2160.0,1.0 -2161.0,1.0 -2162.0,1.0 -2163.0,1.0 -2164.0,1.0 -2165.0,1.0 -2166.0,1.0 -2167.0,1.0 -2168.0,1.0 -2169.0,1.0 -2170.0,1.0 -2171.0,1.0 -2172.0,1.0 -2173.0,1.0 -2174.0,1.0 -2175.0,1.0 -2176.0,1.0 -2177.0,1.0 -2178.0,1.0 -2179.0,1.0 -2180.0,1.0 -2181.0,1.0 -2182.0,1.0 -2183.0,1.0 -2184.0,1.0 -2185.0,1.0 -2186.0,1.0 -2187.0,1.0 -2188.0,1.0 -2189.0,1.0 -2190.0,1.0 -2191.0,1.0 -2192.0,1.0 -2193.0,1.0 -2194.0,1.0 -2195.0,1.0 -2196.0,1.0 -2197.0,1.0 -2198.0,1.0 -2199.0,1.0 -2200.0,1.0 -2201.0,1.0 -2202.0,1.0 -2203.0,1.0 -2204.0,1.0 -2205.0,1.0 -2206.0,1.0 -2207.0,1.0 -2208.0,1.0 -2209.0,1.0 -2210.0,1.0 -2211.0,1.0 -2212.0,1.0 -2213.0,1.0 -2214.0,1.0 -2215.0,1.0 -2216.0,1.0 -2217.0,1.0 -2218.0,1.0 -2219.0,1.0 -2220.0,1.0 -2221.0,1.0 -2222.0,1.0 -2223.0,1.0 -2224.0,1.0 -2225.0,1.0 -2226.0,1.0 -2227.0,1.0 -2228.0,1.0 -2229.0,1.0 -2230.0,1.0 -2231.0,1.0 -2232.0,1.0 -2233.0,1.0 -2234.0,1.0 -2235.0,1.0 -2236.0,1.0 -2237.0,1.0 -2238.0,1.0 -2239.0,1.0 -2240.0,1.0 -2241.0,1.0 -2242.0,1.0 -2243.0,1.0 -2244.0,1.0 -2245.0,1.0 -2246.0,1.0 -2247.0,1.0 -2248.0,1.0 -2249.0,1.0 -2250.0,1.0 -2251.0,1.0 -2252.0,1.0 -2253.0,1.0 -2254.0,1.0 -2255.0,1.0 -2256.0,1.0 -2257.0,1.0 -2258.0,1.0 -2259.0,1.0 -2260.0,1.0 -2261.0,1.0 -2262.0,1.0 -2263.0,1.0 -2264.0,1.0 -2265.0,1.0 -2266.0,1.0 -2267.0,1.0 -2268.0,1.0 -2269.0,1.0 -2270.0,1.0 -2271.0,1.0 -2272.0,1.0 -2273.0,1.0 -2274.0,1.0 -2275.0,1.0 -2276.0,1.0 -2277.0,1.0 -2278.0,1.0 -2279.0,1.0 -2280.0,1.0 -2281.0,1.0 -2282.0,1.0 -2283.0,1.0 -2284.0,1.0 -2285.0,1.0 -2286.0,1.0 -2287.0,1.0 -2288.0,1.0 -2289.0,1.0 -2290.0,1.0 -2291.0,1.0 -2292.0,1.0 -2293.0,1.0 -2294.0,1.0 -2295.0,1.0 -2296.0,1.0 -2297.0,1.0 -2298.0,1.0 -2299.0,1.0 -2300.0,1.0 -2301.0,1.0 -2302.0,1.0 -2303.0,1.0 -2304.0,1.0 -2305.0,1.0 -2306.0,1.0 -2307.0,1.0 -2308.0,1.0 -2309.0,1.0 -2310.0,1.0 -2311.0,1.0 -2312.0,1.0 -2313.0,1.0 -2314.0,1.0 -2315.0,1.0 -2316.0,1.0 -2317.0,1.0 -2318.0,1.0 -2319.0,1.0 -2320.0,1.0 -2321.0,1.0 -2322.0,1.0 -2323.0,1.0 -2324.0,1.0 -2325.0,1.0 -2326.0,1.0 -2327.0,1.0 -2328.0,1.0 -2329.0,1.0 -2330.0,1.0 -2331.0,1.0 -2332.0,1.0 -2333.0,1.0 -2334.0,1.0 -2335.0,1.0 -2336.0,1.0 -2337.0,1.0 -2338.0,1.0 -2339.0,1.0 -2340.0,1.0 -2341.0,1.0 -2342.0,1.0 -2343.0,1.0 -2344.0,1.0 -2345.0,1.0 -2346.0,1.0 -2347.0,1.0 -2348.0,1.0 -2349.0,1.0 -2350.0,1.0 -2351.0,1.0 -2352.0,1.0 -2353.0,1.0 -2354.0,1.0 -2355.0,1.0 -2356.0,1.0 -2357.0,1.0 -2358.0,1.0 -2359.0,1.0 -2360.0,1.0 -2361.0,1.0 -2362.0,1.0 -2363.0,1.0 -2364.0,1.0 -2365.0,1.0 -2366.0,1.0 -2367.0,1.0 -2368.0,1.0 -2369.0,1.0 -2370.0,1.0 -2371.0,1.0 -2372.0,1.0 -2373.0,1.0 -2374.0,1.0 -2375.0,1.0 -2376.0,1.0 -2377.0,1.0 -2378.0,1.0 -2379.0,1.0 -2380.0,1.0 -2381.0,1.0 -2382.0,1.0 -2383.0,1.0 -2384.0,1.0 -2385.0,1.0 -2386.0,1.0 -2387.0,1.0 -2388.0,1.0 -2389.0,1.0 -2390.0,1.0 -2391.0,1.0 -2392.0,1.0 -2393.0,1.0 -2394.0,1.0 -2395.0,1.0 -2396.0,1.0 -2397.0,1.0 -2398.0,1.0 -2399.0,1.0 -2400.0,1.0 -2401.0,1.0 -2402.0,1.0 -2403.0,1.0 -2404.0,1.0 -2405.0,1.0 -2406.0,1.0 -2407.0,1.0 -2408.0,1.0 -2409.0,1.0 -2410.0,1.0 -2411.0,1.0 -2412.0,1.0 -2413.0,1.0 -2414.0,1.0 -2415.0,1.0 -2416.0,1.0 -2417.0,1.0 -2418.0,1.0 -2419.0,1.0 -2420.0,1.0 -2421.0,1.0 -2422.0,1.0 -2423.0,1.0 -2424.0,1.0 -2425.0,1.0 -2426.0,1.0 -2427.0,1.0 -2428.0,1.0 -2429.0,1.0 -2430.0,1.0 -2431.0,1.0 -2432.0,1.0 -2433.0,1.0 -2434.0,1.0 -2435.0,1.0 -2436.0,1.0 -2437.0,1.0 -2438.0,1.0 -2439.0,1.0 -2440.0,1.0 -2441.0,1.0 -2442.0,1.0 -2443.0,1.0 -2444.0,1.0 -2445.0,1.0 -2446.0,1.0 -2447.0,1.0 -2448.0,1.0 -2449.0,1.0 -2450.0,1.0 -2451.0,1.0 -2452.0,1.0 -2453.0,1.0 -2454.0,1.0 -2455.0,1.0 -2456.0,1.0 -2457.0,1.0 -2458.0,1.0 -2459.0,1.0 -2460.0,1.0 -2461.0,1.0 -2462.0,1.0 -2463.0,1.0 -2464.0,1.0 -2465.0,1.0 -2466.0,1.0 -2467.0,1.0 -2468.0,1.0 -2469.0,1.0 -2470.0,1.0 -2471.0,1.0 -2472.0,1.0 -2473.0,1.0 -2474.0,1.0 -2475.0,1.0 -2476.0,1.0 -2477.0,1.0 -2478.0,1.0 -2479.0,1.0 -2480.0,1.0 -2481.0,1.0 -2482.0,1.0 -2483.0,1.0 -2484.0,1.0 -2485.0,1.0 -2486.0,1.0 -2487.0,1.0 -2488.0,1.0 -2489.0,1.0 -2490.0,1.0 -2491.0,1.0 -2492.0,1.0 -2493.0,1.0 -2494.0,1.0 -2495.0,1.0 -2496.0,1.0 -2497.0,1.0 -2498.0,1.0 -2499.0,1.0 -2500.0,1.0 -2501.0,1.0 -2502.0,1.0 -2503.0,1.0 -2504.0,1.0 -2505.0,1.0 -2506.0,1.0 -2507.0,1.0 -2508.0,1.0 -2509.0,1.0 -2510.0,1.0 -2511.0,1.0 -2512.0,1.0 -2513.0,1.0 -2514.0,1.0 -2515.0,1.0 -2516.0,1.0 -2517.0,1.0 -2518.0,1.0 -2519.0,1.0 -2520.0,1.0 -2521.0,1.0 -2522.0,1.0 -2523.0,1.0 -2524.0,1.0 -2525.0,1.0 -2526.0,1.0 -2527.0,1.0 -2528.0,1.0 -2529.0,1.0 -2530.0,1.0 -2531.0,1.0 -2532.0,1.0 -2533.0,1.0 -2534.0,1.0 -2535.0,1.0 -2536.0,1.0 -2537.0,1.0 -2538.0,1.0 -2539.0,1.0 -2540.0,1.0 -2541.0,1.0 -2542.0,1.0 -2543.0,1.0 -2544.0,1.0 -2545.0,1.0 -2546.0,1.0 -2547.0,1.0 -2548.0,1.0 -2549.0,1.0 -2550.0,1.0 -2551.0,1.0 -2552.0,1.0 -2553.0,1.0 -2554.0,1.0 -2555.0,1.0 -2556.0,1.0 -2557.0,1.0 -2558.0,1.0 -2559.0,1.0 -2560.0,1.0 -2561.0,1.0 -2562.0,1.0 -2563.0,1.0 -2564.0,1.0 -2565.0,1.0 -2566.0,1.0 -2567.0,1.0 -2568.0,1.0 -2569.0,1.0 -2570.0,1.0 -2571.0,1.0 -2572.0,1.0 -2573.0,1.0 -2574.0,1.0 -2575.0,1.0 -2576.0,1.0 -2577.0,1.0 -2578.0,1.0 -2579.0,1.0 -2580.0,1.0 -2581.0,1.0 -2582.0,1.0 -2583.0,1.0 -2584.0,1.0 -2585.0,1.0 -2586.0,1.0 -2587.0,1.0 -2588.0,1.0 -2589.0,1.0 -2590.0,1.0 -2591.0,1.0 -2592.0,1.0 -2593.0,1.0 -2594.0,1.0 -2595.0,1.0 -2596.0,1.0 -2597.0,1.0 -2598.0,1.0 -2599.0,1.0 -2600.0,1.0 -2601.0,1.0 -2602.0,1.0 -2603.0,1.0 -2604.0,1.0 -2605.0,1.0 -2606.0,1.0 -2607.0,1.0 -2608.0,1.0 -2609.0,1.0 -2610.0,1.0 -2611.0,1.0 -2612.0,1.0 -2613.0,1.0 -2614.0,1.0 -2615.0,1.0 -2616.0,1.0 -2617.0,1.0 -2618.0,1.0 -2619.0,1.0 -2620.0,1.0 -2621.0,1.0 -2622.0,1.0 -2623.0,1.0 -2624.0,1.0 -2625.0,1.0 -2626.0,1.0 -2627.0,1.0 -2628.0,1.0 -2629.0,1.0 -2630.0,1.0 -2631.0,1.0 -2632.0,1.0 -2633.0,1.0 -2634.0,1.0 -2635.0,1.0 -2636.0,1.0 -2637.0,1.0 -2638.0,1.0 -2639.0,1.0 -2640.0,1.0 -2641.0,1.0 -2642.0,1.0 -2643.0,1.0 -2644.0,1.0 -2645.0,1.0 -2646.0,1.0 -2647.0,1.0 -2648.0,1.0 -2649.0,1.0 -2650.0,1.0 -2651.0,1.0 -2652.0,1.0 -2653.0,1.0 -2654.0,1.0 -2655.0,1.0 -2656.0,1.0 -2657.0,1.0 -2658.0,1.0 -2659.0,1.0 -2660.0,1.0 -2661.0,1.0 -2662.0,1.0 -2663.0,1.0 -2664.0,1.0 -2665.0,1.0 -2666.0,1.0 -2667.0,1.0 -2668.0,1.0 -2669.0,1.0 -2670.0,1.0 -2671.0,1.0 -2672.0,1.0 -2673.0,1.0 -2674.0,1.0 -2675.0,1.0 -2676.0,1.0 -2677.0,1.0 -2678.0,1.0 -2679.0,1.0 -2680.0,1.0 -2681.0,1.0 -2682.0,1.0 -2683.0,1.0 -2684.0,1.0 -2685.0,1.0 -2686.0,1.0 -2687.0,1.0 -2688.0,1.0 -2689.0,1.0 -2690.0,1.0 -2691.0,1.0 -2692.0,1.0 -2693.0,1.0 -2694.0,1.0 -2695.0,1.0 -2696.0,1.0 -2697.0,1.0 -2698.0,1.0 -2699.0,1.0 -2700.0,1.0 -2701.0,1.0 -2702.0,1.0 -2703.0,1.0 -2704.0,1.0 -2705.0,1.0 -2706.0,1.0 -2707.0,1.0 -2708.0,1.0 -2709.0,1.0 -2710.0,1.0 -2711.0,1.0 -2712.0,1.0 -2713.0,1.0 -2714.0,1.0 -2715.0,1.0 -2716.0,1.0 -2717.0,1.0 -2718.0,1.0 -2719.0,1.0 -2720.0,1.0 -2721.0,1.0 -2722.0,1.0 -2723.0,1.0 -2724.0,1.0 -2725.0,1.0 -2726.0,1.0 -2727.0,1.0 -2728.0,1.0 -2729.0,1.0 -2730.0,1.0 -2731.0,1.0 -2732.0,1.0 -2733.0,1.0 -2734.0,1.0 -2735.0,1.0 -2736.0,1.0 -2737.0,1.0 -2738.0,1.0 -2739.0,1.0 -2740.0,1.0 -2741.0,1.0 -2742.0,1.0 -2743.0,1.0 -2744.0,1.0 -2745.0,1.0 -2746.0,1.0 -2747.0,1.0 -2748.0,1.0 -2749.0,1.0 -2750.0,1.0 -2751.0,1.0 -2752.0,1.0 -2753.0,1.0 -2754.0,1.0 -2755.0,1.0 -2756.0,1.0 -2757.0,1.0 -2758.0,1.0 -2759.0,1.0 -2760.0,1.0 -2761.0,1.0 -2762.0,1.0 -2763.0,1.0 -2764.0,1.0 -2765.0,1.0 -2766.0,1.0 -2767.0,1.0 -2768.0,1.0 -2769.0,1.0 -2770.0,1.0 -2771.0,1.0 -2772.0,1.0 -2773.0,1.0 -2774.0,1.0 -2775.0,1.0 -2776.0,1.0 -2777.0,1.0 -2778.0,1.0 -2779.0,1.0 -2780.0,1.0 -2781.0,1.0 -2782.0,1.0 -2783.0,1.0 -2784.0,1.0 -2785.0,1.0 -2786.0,1.0 -2787.0,1.0 -2788.0,1.0 -2789.0,1.0 -2790.0,1.0 -2791.0,1.0 -2792.0,1.0 -2793.0,1.0 -2794.0,1.0 -2795.0,1.0 -2796.0,1.0 -2797.0,1.0 -2798.0,1.0 -2799.0,1.0 -2800.0,1.0 -2801.0,1.0 -2802.0,1.0 -2803.0,1.0 -2804.0,1.0 -2805.0,1.0 -2806.0,1.0 -2807.0,1.0 -2808.0,1.0 -2809.0,1.0 -2810.0,1.0 -2811.0,1.0 -2812.0,1.0 -2813.0,1.0 -2814.0,1.0 -2815.0,1.0 -2816.0,1.0 -2817.0,1.0 -2818.0,1.0 -2819.0,1.0 -2820.0,1.0 -2821.0,1.0 -2822.0,1.0 -2823.0,1.0 -2824.0,1.0 -2825.0,1.0 -2826.0,1.0 -2827.0,1.0 -2828.0,1.0 -2829.0,1.0175078174569308 -2830.0,1.0675078174569308 -2831.0,1.1175078174569308 -2832.0,1.1675078174569307 -2833.0,1.2175078174569307 -2834.0,1.2675078174569308 -2835.0,1.3175078174569308 -2836.0,1.3675078174569308 -2837.0,1.4175078174569307 -2838.0,1.4675078174569307 -2839.0,1.5175078174569308 -2840.0,1.5675078174569308 -2841.0,1.6175078174569308 -2842.0,1.6675078174569307 -2843.0,1.717507817456931 -2844.0,1.7675078174569308 -2845.0,1.8175078174569308 -2846.0,1.8675078174569308 -2847.0,1.9175078174569307 -2848.0,1.967507817456931 -2849.0,2.0175078174569308 -2850.0,2.0675078174569306 -2851.0,2.117507817456931 -2852.0,2.167507817456931 -2853.0,2.217507817456931 -2854.0,2.2675078174569308 -2855.0,2.3175078174569306 -2856.0,2.367507817456931 -2857.0,2.417507817456931 -2858.0,2.467507817456931 -2859.0,2.5175078174569308 -2860.0,2.5675078174569306 -2861.0,2.617507817456931 -2862.0,2.667507817456931 -2863.0,2.717507817456931 -2864.0,2.7675078174569308 -2865.0,2.8175078174569306 -2866.0,2.867507817456931 -2867.0,2.917507817456931 -2868.0,2.967507817456931 -2869.0,3.0175078174569308 -2870.0,3.067507817456931 -2871.0,3.117507817456931 -2872.0,3.1675078174569307 -2873.0,3.217507817456931 -2874.0,3.2675078174569308 -2875.0,3.317507817456931 -2876.0,3.367507817456931 -2877.0,3.417507817456931 -2878.0,3.467507817456931 -2879.0,3.5175078174569308 -2880.0,3.567507817456931 -2881.0,3.617507817456931 -2882.0,3.667507817456931 -2883.0,3.717507817456931 -2884.0,3.7675078174569308 -2885.0,3.817507817456931 -2886.0,3.867507817456931 -2887.0,3.917507817456931 -2888.0,3.967507817456931 -2889.0,4.017507817456931 -2890.0,4.0675078174569315 -2891.0,4.11750781745693 -2892.0,4.167507817456931 -2893.0,4.217507817456931 -2894.0,4.267507817456931 -2895.0,4.3175078174569315 -2896.0,4.36750781745693 -2897.0,4.417507817456931 -2898.0,4.467507817456931 -2899.0,4.517507817456931 -2900.0,4.5675078174569315 -2901.0,4.61750781745693 -2902.0,4.667507817456931 -2903.0,4.717507817456931 -2904.0,4.767507817456931 -2905.0,4.8175078174569315 -2906.0,4.86750781745693 -2907.0,4.917507817456931 -2908.0,4.967507817456931 -2909.0,5.017507817456931 -2910.0,5.067507817456931 -2911.0,5.117507817456931 -2912.0,5.167507817456931 -2913.0,5.217507817456931 -2914.0,5.267507817456931 -2915.0,5.317507817456931 -2916.0,5.367507817456931 -2917.0,5.417507817456931 -2918.0,5.467507817456931 -2919.0,5.517507817456931 -2920.0,5.567507817456931 -2921.0,5.617507817456931 -2922.0,5.667507817456931 -2923.0,5.717507817456931 -2924.0,5.767507817456931 -2925.0,5.8175078174569315 -2926.0,5.867507817456931 -2927.0,5.917507817456931 -2928.0,5.967507817456931 -2929.0,5.982492182543069 -2930.0,5.932492182543069 -2931.0,5.88249218254307 -2932.0,5.832492182543069 -2933.0,5.782492182543069 -2934.0,5.732492182543069 -2935.0,5.682492182543069 -2936.0,5.63249218254307 -2937.0,5.582492182543069 -2938.0,5.532492182543069 -2939.0,5.482492182543069 -2940.0,5.432492182543069 -2941.0,5.38249218254307 -2942.0,5.332492182543069 -2943.0,5.282492182543069 -2944.0,5.232492182543069 -2945.0,5.182492182543069 -2946.0,5.13249218254307 -2947.0,5.082492182543069 -2948.0,5.032492182543069 -2949.0,4.982492182543069 -2950.0,4.932492182543069 -2951.0,4.88249218254307 -2952.0,4.832492182543069 -2953.0,4.782492182543069 -2954.0,4.732492182543069 -2955.0,4.682492182543069 -2956.0,4.63249218254307 -2957.0,4.582492182543069 -2958.0,4.532492182543069 -2959.0,4.482492182543069 -2960.0,4.432492182543069 -2961.0,4.38249218254307 -2962.0,4.332492182543069 -2963.0,4.282492182543069 -2964.0,4.232492182543069 -2965.0,4.182492182543069 -2966.0,4.13249218254307 -2967.0,4.082492182543069 -2968.0,4.032492182543069 -2969.0,3.9824921825430692 -2970.0,3.932492182543069 -2971.0,3.882492182543069 -2972.0,3.8324921825430693 -2973.0,3.782492182543069 -2974.0,3.7324921825430692 -2975.0,3.682492182543069 -2976.0,3.632492182543069 -2977.0,3.582492182543069 -2978.0,3.532492182543069 -2979.0,3.4824921825430692 -2980.0,3.432492182543069 -2981.0,3.382492182543069 -2982.0,3.332492182543069 -2983.0,3.282492182543069 -2984.0,3.2324921825430692 -2985.0,3.182492182543069 -2986.0,3.132492182543069 -2987.0,3.082492182543069 -2988.0,3.032492182543069 -2989.0,2.9824921825430692 -2990.0,2.932492182543069 -2991.0,2.882492182543069 -2992.0,2.832492182543069 -2993.0,2.782492182543069 -2994.0,2.7324921825430692 -2995.0,2.682492182543069 -2996.0,2.632492182543069 -2997.0,2.582492182543069 -2998.0,2.532492182543069 -2999.0,2.4824921825430692 -3000.0,2.432492182543069 -3001.0,2.382492182543069 -3002.0,2.332492182543069 -3003.0,2.282492182543069 -3004.0,2.2324921825430692 -3005.0,2.182492182543069 -3006.0,2.132492182543069 -3007.0,2.082492182543069 -3008.0,2.032492182543069 -3009.0,1.9824921825430692 -3010.0,1.9324921825430694 -3011.0,1.8824921825430687 -3012.0,1.832492182543069 -3013.0,1.782492182543069 -3014.0,1.7324921825430692 -3015.0,1.6824921825430694 -3016.0,1.6324921825430687 -3017.0,1.582492182543069 -3018.0,1.532492182543069 -3019.0,1.4824921825430692 -3020.0,1.4324921825430694 -3021.0,1.3824921825430687 -3022.0,1.332492182543069 -3023.0,1.282492182543069 -3024.0,1.2324921825430692 -3025.0,1.1824921825430685 -3026.0,1.1324921825430687 -3027.0,1.082492182543069 -3028.0,1.032492182543069 -3029.0,0.9998790675944514 -3030.0,0.9995337812313504 -3031.0,0.9991886141053415 -3032.0,0.998843566175249 -3033.0,0.998498637399911 -3034.0,0.99815382773818 -3035.0,0.9978091371489228 -3036.0,0.9974645655910203 -3037.0,0.9971201130233677 -3038.0,0.9967757794048742 -3039.0,0.9964315646944633 -3040.0,0.9960874688510728 -3041.0,0.9957434918336545 -3042.0,0.9953996336011746 -3043.0,0.9950558941126131 -3044.0,0.9947122733269645 -3045.0,0.9943687712032373 -3046.0,0.9940253877004543 -3047.0,0.9936821227776523 -3048.0,0.9933389763938822 -3049.0,0.9929959485082094 -3050.0,0.9926530390797128 -3051.0,0.9923102480674861 -3052.0,0.9919675754306367 -3053.0,0.9916250211282863 -3054.0,0.9912825851195707 -3055.0,0.9909402673636397 -3056.0,0.9905980678196573 -3057.0,0.9902559864468017 -3058.0,0.9899140232042649 -3059.0,0.9895721780512533 -3060.0,0.9892304509469874 -3061.0,0.9888888418507013 -3062.0,0.9885473507216438 -3063.0,0.9882059775190773 -3064.0,0.9878647222022787 -3065.0,0.9875235847305387 -3066.0,0.9871825650631618 -3067.0,0.9868416631594672 -3068.0,0.9865008789787876 -3069.0,0.9861602124804699 -3070.0,0.9858196636238752 -3071.0,0.9854792323683783 -3072.0,0.9851389186733686 -3073.0,0.9847987224982487 -3074.0,0.984458643802436 -3075.0,0.9841186825453615 -3076.0,0.9837788386864703 -3077.0,0.9834391121852214 -3078.0,0.9830995030010882 -3079.0,0.9827600110935575 -3080.0,0.9824206364221304 -3081.0,0.9820813789463222 -3082.0,0.9817422386256618 -3083.0,0.9814032154196922 -3084.0,0.9810643092879706 -3085.0,0.9807255201900678 -3086.0,0.9803868480855686 -3087.0,0.9800482929340723 -3088.0,0.9797098546951913 -3089.0,0.9793715333285526 -3090.0,0.979033328793797 -3091.0,0.978695241050579 -3092.0,0.9783572700585674 -3093.0,0.9780194157774444 -3094.0,0.9776816781669068 -3095.0,0.9773440571866647 -3096.0,0.9770065527964426 -3097.0,0.9766691649559786 -3098.0,0.9763318936250246 -3099.0,0.9759947387633467 -3100.0,0.9756577003307251 -3101.0,0.9753207782869531 -3102.0,0.9749839725918387 -3103.0,0.9746472832052032 -3104.0,0.9743107100868821 -3105.0,0.9739742531967248 -3106.0,0.9736379124945942 -3107.0,0.9733016879403675 -3108.0,0.9729655794939356 -3109.0,0.9726295871152031 -3110.0,0.9722937107640885 -3111.0,0.9719579504005244 -3112.0,0.9716223059844568 -3113.0,0.9712867774758459 -3114.0,0.9709513648346656 -3115.0,0.9706160680209036 -3116.0,0.9702808869945615 -3117.0,0.9699458217156545 -3118.0,0.9696108721442118 -3119.0,0.9692760382402765 -3120.0,0.9689413199639052 -3121.0,0.9686067172751686 -3122.0,0.9682722301341508 -3123.0,0.96793785850095 -3124.0,0.9676036023356784 -3125.0,0.9672694615984613 -3126.0,0.9669354362494383 -3127.0,0.9666015262487626 -3128.0,0.9662677315566013 -3129.0,0.9659340521331349 -3130.0,0.9656004879385579 -3131.0,0.9652670389330786 -3132.0,0.9649337050769191 -3133.0,0.9646004863303149 -3134.0,0.9642673826535155 -3135.0,0.963934394006784 -3136.0,0.9636015203503975 -3137.0,0.9632687616446464 -3138.0,0.9629361178498349 -3139.0,0.9626035889262813 -3140.0,0.9622711748343171 -3141.0,0.961938875534288 -3142.0,0.9616066909865528 -3143.0,0.9612746211514845 -3144.0,0.9609426659894695 -3145.0,0.960610825460908 -3146.0,0.9602790995262139 -3147.0,0.9599474881458147 -3148.0,0.9596159912801514 -3149.0,0.9592846088896791 -3150.0,0.9589533409348662 -3151.0,0.9586221873761948 -3152.0,0.9582911481741606 -3153.0,0.9579602232892732 -3154.0,0.9576294126820558 -3155.0,0.9572987163130448 -3156.0,0.9569681341427907 -3157.0,0.9566376661318574 -3158.0,0.9563073122408225 -3159.0,0.9559770724302774 -3160.0,0.9556469466608265 -3161.0,0.9553169348930884 -3162.0,0.9549870370876953 -3163.0,0.9546572532052924 -3164.0,0.9543275832065392 -3165.0,0.9539980270521082 -3166.0,0.9536685847026861 -3167.0,0.9533392561189725 -3168.0,0.9530100412616812 -3169.0,0.952680940091539 -3170.0,0.9523519525692867 -3171.0,0.9520230786556784 -3172.0,0.9516943183114819 -3173.0,0.9513656714974784 -3174.0,0.9510371381744628 -3175.0,0.9507087183032435 -3176.0,0.9503804118446424 -3177.0,0.9500522187594947 -3178.0,0.9497241390086498 -3179.0,0.9493961725529698 -3180.0,0.9490683193533309 -3181.0,0.9487405793706225 -3182.0,0.9484129525657476 -3183.0,0.9480854388996228 -3184.0,0.9477580383331781 -3185.0,0.9474307508273568 -3186.0,0.9471035763431161 -3187.0,0.9467765148414266 -3188.0,0.9464495662832718 -3189.0,0.9461227306296496 -3190.0,0.9457960078415705 -3191.0,0.9454693978800591 -3192.0,0.9451429007061531 -3193.0,0.9448165162809039 -3194.0,0.9444902445653761 -3195.0,0.9441640855206479 -3196.0,0.9438380391078108 -3197.0,0.94351210528797 -3198.0,0.9431862840222439 -3199.0,0.9428605752717644 -3200.0,0.9425349789976768 -3201.0,0.9422094951611398 -3202.0,0.9418841237233258 -3203.0,0.94155886464542 -3204.0,0.9412337178886216 -3205.0,0.9409086834141429 -3206.0,0.9405837611832097 -3207.0,0.940258951157061 -3208.0,0.9399342532969496 -3209.0,0.9396096675641411 -3210.0,0.939285193919915 -3211.0,0.9389608323255639 -3212.0,0.9386365827423938 -3213.0,0.9383124451317242 -3214.0,0.9379884194548876 -3215.0,0.9376645056732303 -3216.0,0.9373407037481118 -3217.0,0.9370170136409048 -3218.0,0.9366934353129953 -3219.0,0.936369968725783 -3220.0,0.9360466138406806 -3221.0,0.9357233706191141 -3222.0,0.9354002390225232 -3223.0,0.9350772190123604 -3224.0,0.934754310550092 -3225.0,0.934431513597197 -3226.0,0.9341088281151685 -3227.0,0.9337862540655123 -3228.0,0.9334637914097476 -3229.0,0.933141440109407 -3230.0,0.9328192001260365 -3231.0,0.932497071421195 -3232.0,0.932175053956455 -3233.0,0.9318531476934021 -3234.0,0.9315313525936353 -3235.0,0.9312096686187668 -3236.0,0.930888095730422 -3237.0,0.9305666338902395 -3238.0,0.9302452830598715 -3239.0,0.929924043200983 -3240.0,0.9296029142752524 -3241.0,0.9292818962443715 -3242.0,0.9289609890700451 -3243.0,0.9286401927139913 -3244.0,0.9283195071379416 -3245.0,0.9279989323036404 -3246.0,0.9276784681728454 -3247.0,0.9273581147073277 -3248.0,0.9270378718688713 -3249.0,0.9267177396192737 -3250.0,0.9263977179203455 -3251.0,0.9260778067339104 -3252.0,0.9257580060218052 -3253.0,0.9254383157458803 -3254.0,0.9251187358679986 -3255.0,0.9247992663500368 -3256.0,0.9244799071538845 -3257.0,0.9241606582414444 -3258.0,0.9238415195746326 -3259.0,0.9235224911153779 -3260.0,0.9232035728256227 -3261.0,0.9228847646673224 -3262.0,0.9225660666024454 -3263.0,0.9222474785929735 -3264.0,0.9219290006009014 -3265.0,0.9216106325882369 -3266.0,0.9212923745170012 -3267.0,0.9209742263492282 -3268.0,0.9206561880469654 -3269.0,0.920338259572273 -3270.0,0.9200204408872245 -3271.0,0.9197027319539063 -3272.0,0.9193851327344182 -3273.0,0.919067643190873 -3274.0,0.9187502632853964 -3275.0,0.9184329929801273 -3276.0,0.9181158322372176 -3277.0,0.9177987810188324 -3278.0,0.9174818392871498 -3279.0,0.917165007004361 -3280.0,0.9168482841326702 -3281.0,0.9165316706342946 -3282.0,0.9162151664714647 -3283.0,0.9158987716064236 -3284.0,0.9155824860014279 -3285.0,0.915266309618747 -3286.0,0.9149502424206633 -3287.0,0.9146342843694723 -3288.0,0.9143184354274825 -3289.0,0.9140026955570154 -3290.0,0.9136870647204056 -3291.0,0.9133715428800008 -3292.0,0.9130561299981612 -3293.0,0.9127408260372606 -3294.0,0.9124256309596854 -3295.0,0.9121105447278353 -3296.0,0.9117955673041225 -3297.0,0.9114806986509728 -3298.0,0.9111659387308245 -3299.0,0.9108512875061291 -3300.0,0.910536744939351 -3301.0,0.9102223109929675 -3302.0,0.909907985629469 -3303.0,0.9095937688113588 -3304.0,0.9092796605011529 -3305.0,0.9089656606613808 -3306.0,0.9086517692545845 -3307.0,0.9083379862433189 -3308.0,0.908024311590152 -3309.0,0.9077107452576648 -3310.0,0.9073972872084511 -3311.0,0.9070839374051177 -3312.0,0.9067706958102842 -3313.0,0.9064575623865831 -3314.0,0.90614453709666 -3315.0,0.9058316199031731 -3316.0,0.9055188107687937 -3317.0,0.905206109656206 -3318.0,0.904893516528107 -3319.0,0.9045810313472068 -3320.0,0.9042686540762279 -3321.0,0.9039563846779062 -3322.0,0.90364422311499 -3323.0,0.903332169350241 -3324.0,0.9030202233464333 -3325.0,0.902708385066354 -3326.0,0.902396654472803 -3327.0,0.9020850315285933 -3328.0,0.9017735161965504 -3329.0,0.901462108439513 -3330.0,0.9011508082203322 -3331.0,0.9008396155018722 -3332.0,0.9005285302470101 -3333.0,0.9002175524186355 -3334.0,0.8999066819796512 -3335.0,0.8995959188929725 -3336.0,0.8992852631215277 -3337.0,0.8989747146282577 -3338.0,0.8986642733761167 -3339.0,0.8983539393280708 -3340.0,0.8980437124470998 -3341.0,0.8977335926961957 -3342.0,0.8974235800383635 -3343.0,0.897113674436621 -3344.0,0.8968038758539988 -3345.0,0.8964941842535401 -3346.0,0.8961845995983009 -3347.0,0.8958751218513501 -3348.0,0.8955657509757692 -3349.0,0.8952564869346524 -3350.0,0.894947329691107 -3351.0,0.8946382792082527 -3352.0,0.894329335449222 -3353.0,0.8940204983771601 -3354.0,0.8937117679552251 -3355.0,0.8934031441465876 -3356.0,0.8930946269144312 -3357.0,0.892786216221952 -3358.0,0.8924779120323587 -3359.0,0.8921697143088729 -3360.0,0.891861623014729 -3361.0,0.8915536381131739 -3362.0,0.8912457595674671 -3363.0,0.8909379873408811 -3364.0,0.890630321396701 -3365.0,0.8903227616982242 -3366.0,0.8900153082087613 -3367.0,0.8897079608916353 -3368.0,0.8894007197101819 -3369.0,0.8890935846277493 -3370.0,0.8887865556076988 -3371.0,0.8884796326134039 -3372.0,0.888172815608251 -3373.0,0.8878661045556391 -3374.0,0.8875594994189796 -3375.0,0.8872530001616971 -3376.0,0.886946606747228 -3377.0,0.8866403191390223 -3378.0,0.8863341373005418 -3379.0,0.8860280611952613 -3380.0,0.8857220907866682 -3381.0,0.8854162260382624 -3382.0,0.8851104669135567 -3383.0,0.8848048133760759 -3384.0,0.8844992653893579 -3385.0,0.8841938229169531 -3386.0,0.8838884859224245 -3387.0,0.8835832543693475 -3388.0,0.8832781282213102 -3389.0,0.8829731074419135 -3390.0,0.8826681919947703 -3391.0,0.8823633818435067 -3392.0,0.8820586769517609 -3393.0,0.8817540772831839 -3394.0,0.8814495828014391 -3395.0,0.8811451934702027 -3396.0,0.880840909253163 -3397.0,0.8805367301140214 -3398.0,0.8802326560164915 -3399.0,0.8799286869242992 -3400.0,0.8796248228011835 -3401.0,0.8793210636108955 -3402.0,0.879017409317199 -3403.0,0.8787138598838702 -3404.0,0.8784104152746979 -3405.0,0.8781070754534833 -3406.0,0.8778038403840404 -3407.0,0.8775007100301951 -3408.0,0.8771976843557866 -3409.0,0.8768947633246658 -3410.0,0.8765919469006964 -3411.0,0.8762892350477549 -3412.0,0.8759866277297298 -3413.0,0.8756841249105223 -3414.0,0.8753817265540459 -3415.0,0.8750794326242268 -3416.0,0.8747772430850036 -3417.0,0.8744751579003273 -3418.0,0.874173177034161 -3419.0,0.873871300450481 -3420.0,0.8735695281132754 -3421.0,0.8732678599865451 -3422.0,0.8729662960343032 -3423.0,0.8726648362205752 -3424.0,0.8723634805093994 -3425.0,0.8720622288648261 -3426.0,0.8717610812509182 -3427.0,0.8714600376317511 -3428.0,0.8711590979714122 -3429.0,0.870858262234002 -3430.0,0.8705575303836326 -3431.0,0.8702569023844291 -3432.0,0.8699563782005287 -3433.0,0.8696559577960812 -3434.0,0.8693556411352484 -3435.0,0.8690554281822049 -3436.0,0.8687553189011373 -3437.0,0.868455313256245 -3438.0,0.8681554112117393 -3439.0,0.8678556127318442 -3440.0,0.8675559177807959 -3441.0,0.8672563263228429 -3442.0,0.8669568383222461 -3443.0,0.8666574537432791 -3444.0,0.866358172550227 -3445.0,0.8660589947073881 -3446.0,0.8657599201790726 -3447.0,0.8654609489296028 -3448.0,0.865162080923314 -3449.0,0.8648633161245534 -3450.0,0.8645646544976803 -3451.0,0.8642660960070665 -3452.0,0.8639676406170965 -3453.0,0.8636692882921665 -3454.0,0.8633710389966853 -3455.0,0.8630728926950739 -3456.0,0.8627748493517657 -3457.0,0.8624769089312062 -3458.0,0.8621790713978534 -3459.0,0.8618813367161774 -3460.0,0.8615837048506606 -3461.0,0.8612861757657976 -3462.0,0.8609887494260955 -3463.0,0.8606914257960735 -3464.0,0.860394204840263 -3465.0,0.8600970865232077 -3466.0,0.8598000708094635 -3467.0,0.8595031576635987 -3468.0,0.8592063470501938 -3469.0,0.8589096389338413 -3470.0,0.8586130332791461 -3471.0,0.8583165300507253 -3472.0,0.8580201292132084 -3473.0,0.8577238307312367 -3474.0,0.857427634569464 -3475.0,0.8571315406925564 -3476.0,0.856835549065192 -3477.0,0.8565396596520611 -3478.0,0.8562438724178663 -3479.0,0.8559481873273224 -3480.0,0.8556526043451561 -3481.0,0.8553571234361067 -3482.0,0.8550617445649255 -3483.0,0.8547664676963759 -3484.0,0.8544712927952334 -3485.0,0.8541762198262859 -3486.0,0.8538812487543335 -3487.0,0.853586379544188 -3488.0,0.8532916121606738 -3489.0,0.8529969465686275 -3490.0,0.8527023827328972 -3491.0,0.8524079206183439 -3492.0,0.8521135601898404 -3493.0,0.8518193014122716 -3494.0,0.8515251442505345 -3495.0,0.8512310886695384 -3496.0,0.8509371346342046 -3497.0,0.8506432821094665 -3498.0,0.8503495310602696 -3499.0,0.8500558814515715 -3500.0,0.8497623332483422 -3501.0,0.8494688864155632 -3502.0,0.8491755409182287 -3503.0,0.8488822967213445 -3504.0,0.8485891537899288 -3505.0,0.8482961120890119 -3506.0,0.848003171583636 -3507.0,0.8477103322388554 -3508.0,0.8474175940197364 -3509.0,0.8471249568913577 -3510.0,0.8468324208188096 -3511.0,0.8465399857671948 -3512.0,0.8462476517016279 -3513.0,0.8459554185872354 -3514.0,0.8456632863891564 -3515.0,0.8453712550725415 -3516.0,0.8450793246025534 -3517.0,0.8447874949443669 -3518.0,0.844495766063169 -3519.0,0.8442041379241585 -3520.0,0.8439126104925462 -3521.0,0.8436211837335551 -3522.0,0.8433298576124202 -3523.0,0.8430386320943882 -3524.0,0.8427475071447182 -3525.0,0.842456482728681 -3526.0,0.8421655588115596 -3527.0,0.841874735358649 -3528.0,0.8415840123352557 -3529.0,0.841293389706699 -3530.0,0.8410028674383094 -3531.0,0.84071244549543 -3532.0,0.8404221238434154 -3533.0,0.8401319024476324 -3534.0,0.8398417812734595 -3535.0,0.8395517602862878 -3536.0,0.8392618394515194 -3537.0,0.8389720187345693 -3538.0,0.8386822981008637 -3539.0,0.8383926775158412 -3540.0,0.8381031569449522 -3541.0,0.8378137363536589 -3542.0,0.8375244157074355 -3543.0,0.8372351949717682 -3544.0,0.8369460741121553 -3545.0,0.8366570530941064 -3546.0,0.8363681318831437 -3547.0,0.8360793104448009 -3548.0,0.8357905887446236 -3549.0,0.8355019667481696 -3550.0,0.8352134444210083 -3551.0,0.8349250217287211 -3552.0,0.8346366986369013 -3553.0,0.8343484751111541 -3554.0,0.8340603511170963 -3555.0,0.833772326620357 -3556.0,0.8334844015865771 -3557.0,0.8331965759814091 -3558.0,0.8329088497705174 -3559.0,0.8326212229195785 -3560.0,0.8323336953942806 -3561.0,0.8320462671603237 -3562.0,0.8317589381834197 -3563.0,0.8314717084292925 -3564.0,0.8311845778636776 -3565.0,0.8308975464523223 -3566.0,0.830610614160986 -3567.0,0.8303237809554398 -3568.0,0.8300370468014664 -3569.0,0.8297504116648606 -3570.0,0.829463875511429 -3571.0,0.8291774383069898 -3572.0,0.8288911000173732 -3573.0,0.8286048606084211 -3574.0,0.8283187200459873 -3575.0,0.8280326782959372 -3576.0,0.8277467353241481 -3577.0,0.8274608910965092 -3578.0,0.8271751455789214 -3579.0,0.8268894987372972 -3580.0,0.8266039505375611 -3581.0,0.8263185009456492 -3582.0,0.8260331499275095 -3583.0,0.8257478974491018 -3584.0,0.8254627434763975 -3585.0,0.8251776879753796 -3586.0,0.8248927309120434 -3587.0,0.8246078722523953 -3588.0,0.824323111962454 -3589.0,0.8240384500082495 -3590.0,0.8237538863558237 -3591.0,0.8234694209712303 -3592.0,0.8231850538205346 -3593.0,0.8229007848698138 -3594.0,0.8226166140851565 -3595.0,0.8223325414326634 -3596.0,0.8220485668784465 -3597.0,0.8217646903886299 -3598.0,0.821480911929349 -3599.0,0.8211972314667513 -3600.0,0.8209136489669957 -3601.0,0.8206301643962528 -3602.0,0.8203467777207051 -3603.0,0.8200634889065465 -3604.0,0.8197802979199827 -3605.0,0.8194972047272313 -3606.0,0.8192142092945212 -3607.0,0.818931311588093 -3608.0,0.8186485115741993 -3609.0,0.8183658092191038 -3610.0,0.8180832044890826 -3611.0,0.8178006973504226 -3612.0,0.817518287769423 -3613.0,0.8172359757123944 -3614.0,0.8169537611456589 -3615.0,0.8166716440355505 -3616.0,0.8163896243484146 -3617.0,0.8161077020506082 -3618.0,0.8158258771085002 -3619.0,0.815544149488471 -3620.0,0.8152625191569123 -3621.0,0.8149809860802278 -3622.0,0.8146995502248326 -3623.0,0.8144182115571537 -3624.0,0.8141369700436291 -3625.0,0.8138558256507089 -3626.0,0.8135747783448546 -3627.0,0.8132938280925394 -3628.0,0.8130129748602478 -3629.0,0.8127322186144762 -3630.0,0.8124515593217324 -3631.0,0.8121709969485357 -3632.0,0.8118905314614172 -3633.0,0.8116101628269193 -3634.0,0.8113298910115961 -3635.0,0.8110497159820134 -3636.0,0.810769637704748 -3637.0,0.8104896561463888 -3638.0,0.8102097712735361 -3639.0,0.8099299830528015 -3640.0,0.8096502914508086 -3641.0,0.8093706964341919 -3642.0,0.8090911979695979 -3643.0,0.8088117960236845 -3644.0,0.808532490563121 -3645.0,0.8082532815545884 -3646.0,0.8079741689647791 -3647.0,0.8076951527603969 -3648.0,0.8074162329081572 -3649.0,0.8071374093747871 -3650.0,0.8068586821270247 -3651.0,0.80658005113162 -3652.0,0.8063015163553344 -3653.0,0.8060230777649408 -3654.0,0.8057447353272232 -3655.0,0.8054664890089777 -3656.0,0.8051883387770113 -3657.0,0.804910284598143 -3658.0,0.8046323264392027 -3659.0,0.8043544642670322 -3660.0,0.8040766980484844 -3661.0,0.8037990277504238 -3662.0,0.8035214533397265 -3663.0,0.8032439747832799 -3664.0,0.8029665920479827 -3665.0,0.8026893051007453 -3666.0,0.8024121139084893 -3667.0,0.8021350184381478 -3668.0,0.8018580186566655 -3669.0,0.8015811145309981 -3670.0,0.8013043060281131 -3671.0,0.8010275931149892 -3672.0,0.8007509757586166 -3673.0,0.8004744539259969 -3674.0,0.800198027584143 -3675.0,0.7999216967000794 -3676.0,0.7996454612408417 -3677.0,0.7993693211734769 -3678.0,0.7990932764650438 -3679.0,0.7988173270826121 -3680.0,0.7985414729932631 -3681.0,0.7982657141640893 -3682.0,0.7979900505621949 -3683.0,0.7977144821546951 -3684.0,0.7974390089087166 -3685.0,0.7971636307913974 -3686.0,0.796888347769887 -3687.0,0.7966131598113462 -3688.0,0.796338066882947 -3689.0,0.7960630689518727 -3690.0,0.7957881659853182 -3691.0,0.7955133579504896 -3692.0,0.7952386448146043 -3693.0,0.7949640265448908 -3694.0,0.7946895031085895 -3695.0,0.7944150744729516 -3696.0,0.7941407406052396 -3697.0,0.7938665014727277 -3698.0,0.793592357042701 -3699.0,0.7933183072824563 -3700.0,0.7930443521593012 -3701.0,0.792770491640555 -3702.0,0.7924967256935481 -3703.0,0.7922230542856222 -3704.0,0.7919494773841304 -3705.0,0.7916759949564368 -3706.0,0.791402606969917 -3707.0,0.7911293133919579 -3708.0,0.7908561141899576 -3709.0,0.7905830093313252 -3710.0,0.7903099987834814 -3711.0,0.7900370825138581 -3712.0,0.7897642604898983 -3713.0,0.7894915326790564 -3714.0,0.7892188990487978 -3715.0,0.7889463595665995 -3716.0,0.7886739141999494 -3717.0,0.7884015629163468 -3718.0,0.7881293056833021 -3719.0,0.787857142468337 -3720.0,0.7875850732389846 -3721.0,0.7873130979627889 -3722.0,0.7870412166073052 -3723.0,0.7867694291401001 -3724.0,0.7864977355287512 -3725.0,0.7862261357408477 -3726.0,0.7859546297439893 -3727.0,0.7856832175057878 -3728.0,0.7854118989938654 -3729.0,0.7851406741758559 -3730.0,0.784869543019404 -3731.0,0.7845985054921659 -3732.0,0.7843275615618088 -3733.0,0.784056711196011 -3734.0,0.7837859543624619 -3735.0,0.7835152910288624 -3736.0,0.7832447211629243 -3737.0,0.7829742447323704 -3738.0,0.7827038617049351 -3739.0,0.7824335720483636 -3740.0,0.7821633757304122 -3741.0,0.7818932727188485 -3742.0,0.7816232629814511 -3743.0,0.7813533464860101 -3744.0,0.781083523200326 -3745.0,0.7808137930922112 -3746.0,0.7805441561294888 -3747.0,0.780274612279993 -3748.0,0.7800051615115692 -3749.0,0.7797358037920739 -3750.0,0.7794665390893746 -3751.0,0.7791973673713501 -3752.0,0.7789282886058903 -3753.0,0.7786593027608957 -3754.0,0.7783904098042785 -3755.0,0.7781216097039617 -3756.0,0.7778529024278795 -3757.0,0.7775842879439769 -3758.0,0.7773157662202103 -3759.0,0.7770473372245468 -3760.0,0.776779000924965 -3761.0,0.7765107572894543 -3762.0,0.776242606286015 -3763.0,0.775974547882659 -3764.0,0.7757065820474085 -3765.0,0.7754387087482975 -3766.0,0.7751709279533703 -3767.0,0.7749032396306829 -3768.0,0.7746356437483018 -3769.0,0.7743681402743049 -3770.0,0.7741007291767811 -3771.0,0.7738334104238299 -3772.0,0.7735661839835624 -3773.0,0.7732990498241002 -3774.0,0.7730320079135764 -3775.0,0.7727650582201346 -3776.0,0.7724982007119299 -3777.0,0.7722314353571279 -3778.0,0.7719647621239055 -3779.0,0.7716981809804507 -3780.0,0.7714316918949621 -3781.0,0.7711652948356496 -3782.0,0.770898989770734 -3783.0,0.770632776668447 -3784.0,0.7703666554970313 -3785.0,0.7701006262247406 -3786.0,0.7698346888198395 -3787.0,0.7695688432506038 -3788.0,0.7693030894853198 -3789.0,0.7690374274922852 -3790.0,0.7687718572398082 -3791.0,0.7685063786962086 -3792.0,0.7682409918298165 -3793.0,0.7679756966089732 -3794.0,0.767710493002031 -3795.0,0.767445380977353 -3796.0,0.7671803605033132 -3797.0,0.7669154315482967 -3798.0,0.7666505940806992 -3799.0,0.7663858480689278 -3800.0,0.7661211934814001 -3801.0,0.7658566302865447 -3802.0,0.7655921584528013 -3803.0,0.7653277779486201 -3804.0,0.7650634887424625 -3805.0,0.7647992908028008 -3806.0,0.7645351840981183 -3807.0,0.7642711685969086 -3808.0,0.7640072442676767 -3809.0,0.7637434110789385 -3810.0,0.7634796689992206 -3811.0,0.7632160179970604 -3812.0,0.7629524580410062 -3813.0,0.7626889890996175 -3814.0,0.762425611141464 -3815.0,0.7621623241351269 -3816.0,0.7618991280491978 -3817.0,0.7616360228522795 -3818.0,0.7613730085129854 -3819.0,0.7611100849999397 -3820.0,0.7608472522817777 -3821.0,0.7605845103271454 -3822.0,0.7603218591046993 -3823.0,0.7600592985831074 -3824.0,0.7597968287310479 -3825.0,0.7595344495172103 -3826.0,0.7592721609102944 -3827.0,0.7590099628790111 -3828.0,0.7587478553920822 -3829.0,0.7584858384182402 -3830.0,0.7582239119262285 -3831.0,0.7579620758848009 -3832.0,0.7577003302627224 -3833.0,0.7574386750287687 -3834.0,0.7571771101517262 -3835.0,0.7569156356003921 -3836.0,0.7566542513435743 -3837.0,0.7563929573500918 -3838.0,0.7561317535887739 -3839.0,0.7558706400284612 -3840.0,0.7556096166380044 -3841.0,0.7553486833862655 -3842.0,0.755087840242117 -3843.0,0.7548270871744422 -3844.0,0.7545664241521354 -3845.0,0.7543058511441011 -3846.0,0.7540453681192549 -3847.0,0.7537849750465231 -3848.0,0.7535246718948428 -3849.0,0.7532644586331617 -3850.0,0.7530043352304381 -3851.0,0.7527443016556414 -3852.0,0.7524843578777514 -3853.0,0.7522245038657586 -3854.0,0.7519647395886644 -3855.0,0.7517050650154808 -3856.0,0.7514454801152306 -3857.0,0.7511859848569471 -3858.0,0.7509265792096744 -3859.0,0.7506672631424675 -3860.0,0.7504080366243916 -3861.0,0.750148899624523 -3862.0,0.7498898521119486 -3863.0,0.7496308940557658 -3864.0,0.7493720254250829 -3865.0,0.7491132461890188 -3866.0,0.7488545563167027 -3867.0,0.7485959557772752 -3868.0,0.7483374445398869 -3869.0,0.7480790225736994 -3870.0,0.7478206898478849 -3871.0,0.7475624463316259 -3872.0,0.7473042919941162 -3873.0,0.7470462268045596 -3874.0,0.7467882507321709 -3875.0,0.7465303637461754 -3876.0,0.7462725658158091 -3877.0,0.7460148569103187 -3878.0,0.7457572369989611 -3879.0,0.7454997060510045 -3880.0,0.7452422640357271 -3881.0,0.7449849109224179 -3882.0,0.7447276466803767 -3883.0,0.7444704712789137 -3884.0,0.7442133846873499 -3885.0,0.7439563868750163 -3886.0,0.7436994778112554 -3887.0,0.7434426574654196 -3888.0,0.7431859258068721 -3889.0,0.7429292828049869 -3890.0,0.7426727284291481 -3891.0,0.7424162626487507 -3892.0,0.7421598854332003 -3893.0,0.7419035967519129 -3894.0,0.741647396574315 -3895.0,0.7413912848698441 -3896.0,0.7411352616079476 -3897.0,0.740879326758084 -3898.0,0.7406234802897221 -3899.0,0.7403677221723413 -3900.0,0.7401120523754314 -3901.0,0.739856470868493 -3902.0,0.7396009776210372 -3903.0,0.7393455726025852 -3904.0,0.7390902557826691 -3905.0,0.7388350271308317 -3906.0,0.7385798866166259 -3907.0,0.7383248342096154 -3908.0,0.7380698698793743 -3909.0,0.7378149935954871 -3910.0,0.737560205327549 -3911.0,0.7373055050451655 -3912.0,0.7370508927179529 -3913.0,0.7367963683155377 -3914.0,0.736541931807557 -3915.0,0.7362875831636584 -3916.0,0.7360333223534999 -3917.0,0.7357791493467503 -3918.0,0.7355250641130883 -3919.0,0.7352710666222034 -3920.0,0.7350171568437958 -3921.0,0.7347633347475756 -3922.0,0.734509600303264 -3923.0,0.7342559534805919 -3924.0,0.7340023942493016 -3925.0,0.733748922579145 -3926.0,0.7334955384398849 -3927.0,0.7332422418012943 -3928.0,0.732989032633157 -3929.0,0.7327359109052666 -3930.0,0.732482876587428 -3931.0,0.7322299296494555 -3932.0,0.731977070061175 -3933.0,0.7317242977924217 -3934.0,0.7314716128130418 -3935.0,0.731219015092892 -3936.0,0.7309665046018392 -3937.0,0.7307140813097607 -3938.0,0.7304617451865442 -3939.0,0.7302094962020877 -3940.0,0.7299573343263001 -3941.0,0.7297052595291 -3942.0,0.7294532717804169 -3943.0,0.7292013710501904 -3944.0,0.7289495573083707 -3945.0,0.7286978305249181 -3946.0,0.7284461906698035 -3947.0,0.7281946377130082 -3948.0,0.7279431716245237 -3949.0,0.7276917923743518 -3950.0,0.7274404999325049 -3951.0,0.7271892942690056 -3952.0,0.726938175353887 -3953.0,0.7266871431571924 -3954.0,0.7264361976489754 -3955.0,0.7261853387993001 -3956.0,0.7259345665782408 -3957.0,0.7256838809558824 -3958.0,0.7254332819023197 -3959.0,0.7251827693876582 -3960.0,0.7249323433820136 -3961.0,0.7246820038555117 -3962.0,0.7244317507782891 -3963.0,0.7241815841204923 -3964.0,0.7239315038522781 -3965.0,0.723681509943814 -3966.0,0.7234316023652775 -3967.0,0.7231817810868563 -3968.0,0.7229320460787486 -3969.0,0.7226823973111628 -3970.0,0.7224328347543177 -3971.0,0.7221833583784425 -3972.0,0.7219339681537761 -3973.0,0.7216846640505683 -3974.0,0.7214354460390788 -3975.0,0.7211863140895779 -3976.0,0.7209372681723458 -3977.0,0.7206883082576733 -3978.0,0.7204394343158611 -3979.0,0.7201906463172204 -3980.0,0.7199419442320728 -3981.0,0.7196933280307497 -3982.0,0.7194447976835932 -3983.0,0.7191963531609553 -3984.0,0.7189479944331985 -3985.0,0.7186997214706953 -3986.0,0.7184515342438286 -3987.0,0.7182034327229915 -3988.0,0.7179554168785872 -3989.0,0.7177074866810292 -3990.0,0.7174596421007415 -3991.0,0.7172118831081578 -3992.0,0.7169642096737223 -3993.0,0.7167166217678895 -3994.0,0.7164691193611238 -3995.0,0.7162217024239 -3996.0,0.7159743709267031 -3997.0,0.7157271248400283 -3998.0,0.7154799641343809 -3999.0,0.7152328887802762 -4000.0,0.7149858987482404 -4001.0,0.714738994008809 -4002.0,0.7144921745325282 -4003.0,0.7142454402899543 -4004.0,0.7139987912516536 -4005.0,0.7137522273882027 -4006.0,0.7135057486701882 -4007.0,0.7132593550682073 -4008.0,0.7130130465528667 -4009.0,0.7127668230947838 -4010.0,0.7125206846645858 -4011.0,0.7122746312329103 -4012.0,0.712028662770405 -4013.0,0.7117827792477274 -4014.0,0.7115369806355456 -4015.0,0.7112912669045375 -4016.0,0.7110456380253913 -4017.0,0.7108000939688053 -4018.0,0.7105546347054876 -4019.0,0.7103092602061571 -4020.0,0.7100639704415423 -4021.0,0.7098187653823819 -4022.0,0.7095736449994245 -4023.0,0.7093286092634293 -4024.0,0.7090836581451654 -4025.0,0.7088387916154115 -4026.0,0.7085940096449572 -4027.0,0.7083493122046016 -4028.0,0.7081046992651542 -4029.0,0.7078601707974344 -4030.0,0.7076157267722717 -4031.0,0.7073713671605057 -4032.0,0.7071270919329862 -4033.0,0.7068829010605728 -4034.0,0.7066387945141355 -4035.0,0.7063947722645539 -4036.0,0.7061508342827182 -4037.0,0.7059069805395282 -4038.0,0.7056632110058939 -4039.0,0.7054195256527356 -4040.0,0.7051759244509832 -4041.0,0.7049324073715769 -4042.0,0.704688974385467 -4043.0,0.7044456254636134 -4044.0,0.7042023605769868 -4045.0,0.7039591796965672 -4046.0,0.7037160827933449 -4047.0,0.7034730698383203 -4048.0,0.7032301408025036 -4049.0,0.7029872956569152 -4050.0,0.7027445343725855 -4051.0,0.7025018569205549 -4052.0,0.7022592632718736 -4053.0,0.702016753397602 -4054.0,0.7017743272688104 -4055.0,0.7015319848565792 -4056.0,0.7012897261319987 -4057.0,0.7010475510661692 -4058.0,0.7008054596302009 -4059.0,0.7005634517952143 -4060.0,0.7003215275323393 -4061.0,0.7000796868127164 -4062.0,0.6998379296074955 -4063.0,0.6995962558878369 -4064.0,0.6993546656249107 -4065.0,0.6991131587898968 -4066.0,0.6988717353539853 -4067.0,0.6986303952883761 -4068.0,0.6983891385642792 -4069.0,0.6981479651529143 -4070.0,0.6979068750255112 -4071.0,0.6976658681533097 -4072.0,0.6974249445075592 -4073.0,0.6971841040595196 -4074.0,0.6969433467804601 -4075.0,0.6967026726416603 -4076.0,0.6964620816144094 -4077.0,0.6962215736700067 -4078.0,0.6959811487797614 -4079.0,0.6957408069149925 -4080.0,0.695500548047029 -4081.0,0.6952603721472098 -4082.0,0.6950202791868836 -4083.0,0.6947802691374091 -4084.0,0.6945403419701547 -4085.0,0.6943004976564991 -4086.0,0.6940607361678305 -4087.0,0.6938210574755471 -4088.0,0.6935814615510569 -4089.0,0.693341948365778 -4090.0,0.6931025178911382 -4091.0,0.6928631700985751 -4092.0,0.6926239049595363 -4093.0,0.6923847224454792 -4094.0,0.692145622527871 -4095.0,0.691906605178189 -4096.0,0.6916676703679201 -4097.0,0.6914288180685612 -4098.0,0.6911900482516187 -4099.0,0.6909513608886093 -4100.0,0.6907127559510593 -4101.0,0.6904742334105048 -4102.0,0.6902357932384919 -4103.0,0.6899974354065765 -4104.0,0.6897591598863241 -4105.0,0.6895209666493102 -4106.0,0.6892828556671201 -4107.0,0.6890448269113488 -4108.0,0.6888068803536015 -4109.0,0.6885690159654926 -4110.0,0.6883312337186467 -4111.0,0.6880935335846982 -4112.0,0.687855915535291 -4113.0,0.6876183795420793 -4114.0,0.6873809255767265 -4115.0,0.6871435536109063 -4116.0,0.6869062636163018 -4117.0,0.6866690555646061 -4118.0,0.6864319294275221 -4119.0,0.6861948851767622 -4120.0,0.6859579227840488 -4121.0,0.6857210422211141 -4122.0,0.6854842434596998 -4123.0,0.6852475264715577 -4124.0,0.6850108912284493 -4125.0,0.6847743377021454 -4126.0,0.6845378658644271 -4127.0,0.6843014756870851 -4128.0,0.6840651671419196 -4129.0,0.6838289402007408 -4130.0,0.6835927948353686 -4131.0,0.6833567310176325 -4132.0,0.6831207487193718 -4133.0,0.6828848479124356 -4134.0,0.6826490285686826 -4135.0,0.6824132906599814 -4136.0,0.6821776341582099 -4137.0,0.6819420590352563 -4138.0,0.681706565263018 -4139.0,0.6814711528134024 -4140.0,0.6812358216583265 -4141.0,0.6810005717697171 -4142.0,0.6807654031195104 -4143.0,0.6805303156796526 -4144.0,0.6802953094220996 -4145.0,0.6800603843188167 -4146.0,0.6798255403417791 -4147.0,0.6795907774629716 -4148.0,0.6793560956543888 -4149.0,0.6791214948880347 -4150.0,0.6788869751359234 -4151.0,0.6786525363700782 -4152.0,0.6784181785625322 -4153.0,0.6781839016853284 -4154.0,0.6779497057105192 -4155.0,0.6777155906101667 -4156.0,0.6774815563563429 -4157.0,0.6772476029211288 -4158.0,0.6770137302766158 -4159.0,0.6767799383949046 -4160.0,0.6765462272481052 -4161.0,0.6763125968083379 -4162.0,0.6760790470477323 -4163.0,0.6758455779384273 -4164.0,0.6756121894525721 -4165.0,0.6753788815623248 -4166.0,0.6751456542398538 -4167.0,0.6749125074573367 -4168.0,0.6746794411869605 -4169.0,0.6744464554009225 -4170.0,0.674213550071429 -4171.0,0.6739807251706961 -4172.0,0.6737479806709494 -4173.0,0.6735153165444244 -4174.0,0.6732827327633658 -4175.0,0.6730502293000281 -4176.0,0.6728178061266754 -4177.0,0.6725854632155811 -4178.0,0.6723532005390286 -4179.0,0.6721210180693106 -4180.0,0.6718889157787293 -4181.0,0.6716568936395968 -4182.0,0.6714249516242343 -4183.0,0.6711930897049732 -4184.0,0.6709613078541535 -4185.0,0.6707296060441259 -4186.0,0.6704979842472496 -4187.0,0.6702664424358941 -4188.0,0.670034980582438 -4189.0,0.6698035986592696 -4190.0,0.6695722966387869 -4191.0,0.6693410744933971 -4192.0,0.669109932195517 -4193.0,0.6688788697175732 -4194.0,0.6686478870320014 -4195.0,0.6684169841112473 -4196.0,0.6681861609277657 -4197.0,0.6679554174540212 -4198.0,0.6677247536624877 -4199.0,0.6674941695256488 -4200.0,0.6672636650159972 -4201.0,0.6670332401060358 -4202.0,0.6668028947682763 -4203.0,0.6665726289752403 -4204.0,0.6663424426994586 -4205.0,0.666112335913472 -4206.0,0.6658823085898301 -4207.0,0.6656523607010925 -4208.0,0.665422492219828 -4209.0,0.665192703118615 -4210.0,0.6649629933700413 -4211.0,0.6647333629467044 -4212.0,0.6645038118212108 -4213.0,0.6642743399661768 -4214.0,0.6640449473542283 -4215.0,0.663815633958 -4216.0,0.6635863997501369 -4217.0,0.6633572447032928 -4218.0,0.6631281687901313 -4219.0,0.6628991719833252 -4220.0,0.6626702542555569 -4221.0,0.6624414155795182 -4222.0,0.6622126559279102 -4223.0,0.6619839752734438 -4224.0,0.6617553735888388 -4225.0,0.6615268508468249 -4226.0,0.6612984070201409 -4227.0,0.661070042081535 -4228.0,0.660841756003765 -4229.0,0.6606135487595982 -4230.0,0.660385420321811 -4231.0,0.6601573706631894 -4232.0,0.6599293997565286 -4233.0,0.6597015075746335 -4234.0,0.6594736940903181 -4235.0,0.6592459592764061 -4236.0,0.6590183031057301 -4237.0,0.6587907255511325 -4238.0,0.6585632265854651 -4239.0,0.6583358061815888 -4240.0,0.6581084643123741 -4241.0,0.6578812009507007 -4242.0,0.6576540160694577 -4243.0,0.6574269096415436 -4244.0,0.6571998816398664 -4245.0,0.6569729320373432 -4246.0,0.6567460608069006 -4247.0,0.6565192679214744 -4248.0,0.65629255335401 -4249.0,0.6560659170774621 -4250.0,0.6558393590647944 -4251.0,0.6556128792889803 -4252.0,0.6553864777230024 -4253.0,0.6551601543398528 -4254.0,0.6549339091125325 -4255.0,0.6547077420140521 -4256.0,0.6544816530174318 -4257.0,0.6542556420957006 -4258.0,0.6540297092218972 -4259.0,0.6538038543690693 -4260.0,0.6535780775102741 -4261.0,0.6533523786185781 -4262.0,0.6531267576670571 -4263.0,0.6529012146287961 -4264.0,0.6526757494768894 -4265.0,0.652450362184441 -4266.0,0.6522250527245633 -4267.0,0.651999821070379 -4268.0,0.6517746671950193 -4269.0,0.6515495910716251 -4270.0,0.6513245926733465 -4271.0,0.6510996719733427 -4272.0,0.6508748289447825 -4273.0,0.6506500635608437 -4274.0,0.6504253757947132 -4275.0,0.6502007656195876 -4276.0,0.6499762330086726 -4277.0,0.6497517779351829 -4278.0,0.6495274003723428 -4279.0,0.6493031002933857 -4280.0,0.6490788776715541 -4281.0,0.6488547324801001 -4282.0,0.6486306646922846 -4283.0,0.6484066742813779 -4284.0,0.6481827612206598 -4285.0,0.647958925483419 -4286.0,0.6477351670429535 -4287.0,0.6475114858725707 -4288.0,0.6472878819455868 -4289.0,0.6470643552353277 -4290.0,0.6468409057151282 -4291.0,0.6466175333583324 -4292.0,0.6463942381382937 -4293.0,0.6461710200283743 -4294.0,0.6459478790019464 -4295.0,0.6457248150323907 -4296.0,0.645501828093097 -4297.0,0.645278918157465 -4298.0,0.6450560851989029 -4299.0,0.6448333291908285 -4300.0,0.6446106501066685 -4301.0,0.6443880479198592 -4302.0,0.6441655226038453 -4303.0,0.6439430741320815 -4304.0,0.6437207024780314 -4305.0,0.6434984076151674 -4306.0,0.6432761895169714 -4307.0,0.6430540481569347 -4308.0,0.642831983508557 -4309.0,0.6426099955453479 -4310.0,0.6423880842408258 -4311.0,0.6421662495685183 -4312.0,0.6419444915019622 -4313.0,0.6417228100147032 -4314.0,0.6415012050802965 -4315.0,0.6412796766723061 -4316.0,0.6410582247643054 -4317.0,0.6408368493298767 -4318.0,0.6406155503426116 -4319.0,0.6403943277761107 -4320.0,0.6401731816039838 -4321.0,0.6399521117998498 -4322.0,0.6397311183373365 -4323.0,0.6395102011900813 -4324.0,0.6392893603317301 -4325.0,0.6390685957359383 -4326.0,0.6388479073763704 -4327.0,0.6386272952266998 -4328.0,0.6384067592606091 -4329.0,0.6381862994517898 -4330.0,0.6379659157739429 -4331.0,0.6377456082007781 -4332.0,0.6375253767060144 -4333.0,0.6373052212633797 -4334.0,0.6370851418466111 -4335.0,0.6368651384294547 -4336.0,0.6366452109856657 -4337.0,0.6364253594890085 -4338.0,0.6362055839132562 -4339.0,0.6359858842321914 -4340.0,0.6357662604196053 -4341.0,0.6355467124492984 -4342.0,0.6353272402950805 -4343.0,0.6351078439307698 -4344.0,0.6348885233301943 -4345.0,0.6346692784671903 -4346.0,0.6344501093156037 -4347.0,0.6342310158492892 -4348.0,0.6340119980421104 -4349.0,0.6337930558679402 -4350.0,0.6335741893006605 -4351.0,0.6333553983141618 -4352.0,0.6331366828823443 -4353.0,0.6329180429791165 -4354.0,0.6326994785783965 -4355.0,0.632480989654111 -4356.0,0.632262576180196 -4357.0,0.6320442381305963 -4358.0,0.6318259754792658 -4359.0,0.6316077882001673 -4360.0,0.6313896762672726 -4361.0,0.6311716396545627 -4362.0,0.6309536783360273 -4363.0,0.6307357922856652 -4364.0,0.6305179814774843 -4365.0,0.6303002458855013 -4366.0,0.6300825854837419 -4367.0,0.6298650002462407 -4368.0,0.6296474901470415 -4369.0,0.6294300551601969 -4370.0,0.6292126952597685 -4371.0,0.6289954104198269 -4372.0,0.6287782006144516 -4373.0,0.6285610658177309 -4374.0,0.6283440060037624 -4375.0,0.6281270211466522 -4376.0,0.6279101112205159 -4377.0,0.6276932761994775 -4378.0,0.6274765160576702 -4379.0,0.6272598307692362 -4380.0,0.6270432203083264 -4381.0,0.6268266846491009 -4382.0,0.6266102237657284 -4383.0,0.6263938376323868 -4384.0,0.6261775262232627 -4385.0,0.6259612895125519 -4386.0,0.6257451274744589 -4387.0,0.625529040083197 -4388.0,0.6253130273129887 -4389.0,0.6250970891380652 -4390.0,0.6248812255326666 -4391.0,0.6246654364710419 -4392.0,0.6244497219274493 -4393.0,0.6242340818761554 -4394.0,0.6240185162914359 -4395.0,0.6238030251475756 -4396.0,0.6235876084188677 -4397.0,0.6233722660796148 -4398.0,0.6231569981041281 -4399.0,0.6229418044667275 -4400.0,0.6227266851417421 -4401.0,0.6225116401035098 -4402.0,0.6222966693263773 -4403.0,0.6220817727846999 -4404.0,0.6218669504528423 -4405.0,0.6216522023051777 -4406.0,0.6214375283160881 -4407.0,0.6212229284599644 -4408.0,0.6210084027112067 -4409.0,0.6207939510442234 -4410.0,0.6205795734334321 -4411.0,0.620365269853259 -4412.0,0.6201510402781394 -4413.0,0.6199368846825171 -4414.0,0.619722803040845 -4415.0,0.6195087953275846 -4416.0,0.6192948615172066 -4417.0,0.61908100158419 -4418.0,0.618867215503023 -4419.0,0.6186535032482025 -4420.0,0.618439864794234 -4421.0,0.6182263001156322 -4422.0,0.6180128091869204 -4423.0,0.6177993919826305 -4424.0,0.6175860484773034 -4425.0,0.617372778645489 -4426.0,0.6171595824617455 -4427.0,0.6169464599006403 -4428.0,0.6167334109367495 -4429.0,0.6165204355446579 -4430.0,0.6163075336989587 -4431.0,0.6160947053742548 -4432.0,0.6158819505451572 -4433.0,0.6156692691862855 -4434.0,0.6154566612722686 -4435.0,0.6152441267777439 -4436.0,0.6150316656773576 -4437.0,0.6148192779457646 -4438.0,0.6146069635576287 -4439.0,0.6143947224876221 -4440.0,0.6141825547104263 -4441.0,0.6139704602007309 -4442.0,0.6137584389332348 -4443.0,0.6135464908826455 -4444.0,0.6133346160236788 -4445.0,0.6131228143310598 -4446.0,0.6129110857795221 -4447.0,0.612699430343808 -4448.0,0.6124878479986686 -4449.0,0.6122763387188636 -4450.0,0.6120649024791615 -4451.0,0.6118535392543394 -4452.0,0.6116422490191834 -4453.0,0.611431031748488 -4454.0,0.6112198874170565 -4455.0,0.611008815999701 -4456.0,0.6107978174712422 -4457.0,0.6105868918065095 -4458.0,0.610376038980341 -4459.0,0.6101652589675834 -4460.0,0.6099545517430924 -4461.0,0.609743917281732 -4462.0,0.6095333555583752 -4463.0,0.6093228665479032 -4464.0,0.6091124502252065 -4465.0,0.608902106565184 -4466.0,0.608691835542743 -4467.0,0.6084816371327998 -4468.0,0.6082715113102792 -4469.0,0.6080614580501149 -4470.0,0.607851477327249 -4471.0,0.6076415691166323 -4472.0,0.6074317333932242 -4473.0,0.6072219701319929 -4474.0,0.6070122793079152 -4475.0,0.6068026608959765 -4476.0,0.6065931148711708 -4477.0,0.606383641208501 -4478.0,0.6061742398829781 -4479.0,0.6059649108696222 -4480.0,0.605755654143462 -4481.0,0.6055464696795345 -4482.0,0.6053373574528855 -4483.0,0.6051283174385697 -4484.0,0.60491934961165 -4485.0,0.6047104539471979 -4486.0,0.6045016304202938 -4487.0,0.6042928790060266 -4488.0,0.6040841996794939 -4489.0,0.6038755924158015 -4490.0,0.6036670571900643 -4491.0,0.6034585939774055 -4492.0,0.6032502027529569 -4493.0,0.603041883491859 -4494.0,0.6028336361692609 -4495.0,0.6026254607603201 -4496.0,0.6024173572402027 -4497.0,0.6022093255840838 -4498.0,0.6020013657671464 -4499.0,0.6017934777645826 -4500.0,0.6015856615515928 -4501.0,0.6013779171033861 -4502.0,0.60117024439518 -4503.0,0.6009626434022007 -4504.0,0.6007551140996831 -4505.0,0.6005476564628702 -4506.0,0.6003402704670139 -4507.0,0.6001329560873746 -4508.0,0.5999257132992213 -4509.0,0.5997185420778312 -4510.0,0.5995114423984905 -4511.0,0.5993044142364936 -4512.0,0.5990974575671437 -4513.0,0.5988905723657522 -4514.0,0.5986837586076392 -4515.0,0.5984770162681335 -4516.0,0.5982703453225722 -4517.0,0.5980637457463008 -4518.0,0.5978572175146736 -4519.0,0.5976507606030533 -4520.0,0.5974443749868111 -4521.0,0.5972380606413267 -4522.0,0.5970318175419882 -4523.0,0.5968256456641924 -4524.0,0.5966195449833445 -4525.0,0.596413515474858 -4526.0,0.5962075571141554 -4527.0,0.5960016698766673 -4528.0,0.5957958537378326 -4529.0,0.5955901086730992 -4530.0,0.5953844346579231 -4531.0,0.595178831667769 -4532.0,0.5949732996781097 -4533.0,0.5947678386644271 -4534.0,0.5945624486022109 -4535.0,0.5943571294669596 -4536.0,0.5941518812341803 -4537.0,0.5939467038793883 -4538.0,0.5937415973781074 -4539.0,0.5935365617058698 -4540.0,0.5933315968382165 -4541.0,0.5931267027506963 -4542.0,0.5929218794188672 -4543.0,0.5927171268182951 -4544.0,0.5925124449245546 -4545.0,0.5923078337132285 -4546.0,0.5921032931599082 -4547.0,0.5918988232401936 -4548.0,0.591694423929693 -4549.0,0.5914900952040228 -4550.0,0.5912858370388083 -4551.0,0.5910816494096829 -4552.0,0.5908775322922883 -4553.0,0.5906734856622753 -4554.0,0.5904695094953022 -4555.0,0.5902656037670363 -4556.0,0.5900617684531532 -4557.0,0.5898580035293366 -4558.0,0.589654308971279 -4559.0,0.5894506847546811 -4560.0,0.589247130855252 -4561.0,0.5890436472487093 -4562.0,0.5888402339107788 -4563.0,0.5886368908171946 -4564.0,0.5884336179436997 -4565.0,0.5882304152660449 -4566.0,0.5880272827599897 -4567.0,0.5878242204013019 -4568.0,0.5876212281657575 -4569.0,0.587418306029141 -4570.0,0.5872154539672455 -4571.0,0.5870126719558719 -4572.0,0.5868099599708301 -4573.0,0.5866073179879379 -4574.0,0.5864047459830215 -4575.0,0.5862022439319158 -4576.0,0.5859998118104635 -4577.0,0.585797449594516 -4578.0,0.5855951572599329 -4579.0,0.5853929347825825 -4580.0,0.5851907821383409 -4581.0,0.5849886993030926 -4582.0,0.5847866862527309 -4583.0,0.584584742963157 -4584.0,0.5843828694102805 -4585.0,0.5841810655700195 -4586.0,0.5839793314183 -4587.0,0.5837776669310569 -4588.0,0.583576072084233 -4589.0,0.5833745468537793 -4590.0,0.5831730912156555 -4591.0,0.5829717051458295 -4592.0,0.5827703886202772 -4593.0,0.5825691416149831 -4594.0,0.5823679641059398 -4595.0,0.5821668560691484 -4596.0,0.5819658174806183 -4597.0,0.5817648483163668 -4598.0,0.5815639485524199 -4599.0,0.5813631181648117 -4600.0,0.5811623571295846 -4601.0,0.5809616654227892 -4602.0,0.5807610430204845 -4603.0,0.5805604898987378 -4604.0,0.5803600060336244 -4605.0,0.5801595914012282 -4606.0,0.579959245977641 -4607.0,0.5797589697389633 -4608.0,0.5795587626613035 -4609.0,0.5793586247207783 -4610.0,0.5791585558935126 -4611.0,0.5789585561556398 -4612.0,0.5787586254833016 -4613.0,0.5785587638526473 -4614.0,0.5783589712398352 -4615.0,0.5781592476210312 -4616.0,0.5779595929724101 -4617.0,0.5777600072701541 -4618.0,0.5775604904904545 -4619.0,0.5773610426095102 -4620.0,0.5771616636035285 -4621.0,0.576962353448725 -4622.0,0.5767631121213235 -4623.0,0.5765639395975559 -4624.0,0.5763648358536624 -4625.0,0.5761658008658913 -4626.0,0.5759668346104992 -4627.0,0.575767937063751 -4628.0,0.5755691082019195 -4629.0,0.575370348001286 -4630.0,0.5751716564381397 -4631.0,0.5749730334887784 -4632.0,0.5747744791295076 -4633.0,0.5745759933366412 -4634.0,0.5743775760865015 -4635.0,0.5741792273554187 -4636.0,0.5739809471197311 -4637.0,0.5737827353557855 -4638.0,0.5735845920399365 -4639.0,0.573386517148547 -4640.0,0.5731885106579885 -4641.0,0.5729905725446399 -4642.0,0.5727927027848888 -4643.0,0.5725949013551307 -4644.0,0.5723971682317692 -4645.0,0.5721995033912165 -4646.0,0.5720019068098925 -4647.0,0.5718043784642253 -4648.0,0.5716069183306511 -4649.0,0.5714095263856146 -4650.0,0.5712122026055683 -4651.0,0.5710149469669729 -4652.0,0.5708177594462971 -4653.0,0.570620640020018 -4654.0,0.5704235886646206 -4655.0,0.5702266053565983 -4656.0,0.5700296900724523 -4657.0,0.5698328427886921 -4658.0,0.569636063481835 -4659.0,0.569439352128407 -4660.0,0.5692427087049419 -4661.0,0.5690461331879813 -4662.0,0.5688496255540751 -4663.0,0.5686531857797817 -4664.0,0.5684568138416672 -4665.0,0.5682605097163058 -4666.0,0.5680642733802798 -4667.0,0.5678681048101796 -4668.0,0.5676720039826038 -4669.0,0.567475970874159 -4670.0,0.5672800054614598 -4671.0,0.5670841077211292 -4672.0,0.5668882776297978 -4673.0,0.5666925151641045 -4674.0,0.5664968203006963 -4675.0,0.5663011930162283 -4676.0,0.5661056332873635 -4677.0,0.5659101410907731 -4678.0,0.5657147164031363 -4679.0,0.5655193592011403 -4680.0,0.5653240694614805 -4681.0,0.5651288471608603 -4682.0,0.564933692275991 -4683.0,0.5647386047835921 -4684.0,0.5645435846603909 -4685.0,0.5643486318831232 -4686.0,0.5641537464285324 -4687.0,0.5639589282733701 -4688.0,0.563764177394396 -4689.0,0.5635694937683776 -4690.0,0.5633748773720907 -4691.0,0.5631803281823189 -4692.0,0.5629858461758539 -4693.0,0.5627914313294955 -4694.0,0.5625970836200513 -4695.0,0.5624028030243371 -4696.0,0.5622085895191766 -4697.0,0.5620144430814016 -4698.0,0.5618203636878518 -4699.0,0.5616263513153751 -4700.0,0.561432405940827 -4701.0,0.5612385275410714 -4702.0,0.5610447160929799 -4703.0,0.5608509715734323 -4704.0,0.5606572939593163 -4705.0,0.5604636832275275 -4706.0,0.5602701393549696 -4707.0,0.5600766623185542 -4708.0,0.559883252095201 -4709.0,0.5596899086618373 -4710.0,0.5594966319953989 -4711.0,0.5593034220728292 -4712.0,0.5591102788710798 -4713.0,0.5589172023671098 -4714.0,0.558724192537887 -4715.0,0.5585312493603865 -4716.0,0.5583383728115915 -4717.0,0.5581455628684934 -4718.0,0.5579528195080914 -4719.0,0.5577601427073924 -4720.0,0.5575675324434117 -4721.0,0.5573749886931723 -4722.0,0.5571825114337049 -4723.0,0.5569901006420486 -4724.0,0.5567977562952501 -4725.0,0.5566054783703641 -4726.0,0.5564132668444534 -4727.0,0.5562211216945883 -4728.0,0.5560290428978474 -4729.0,0.5558370304313172 -4730.0,0.5556450842720919 -4731.0,0.5554532043972739 -4732.0,0.5552613907839731 -4733.0,0.5550696434093075 -4734.0,0.5548779622504033 -4735.0,0.5546863472843941 -4736.0,0.5544947984884219 -4737.0,0.554303315839636 -4738.0,0.5541118993151941 -4739.0,0.5539205488922617 -4740.0,0.5537292645480119 -4741.0,0.5535380462596259 -4742.0,0.5533468940042928 -4743.0,0.5531558077592095 -4744.0,0.5529647875015808 -4745.0,0.5527738332086195 -4746.0,0.552582944857546 -4747.0,0.5523921224255888 -4748.0,0.5522013658899841 -4749.0,0.5520106752279761 -4750.0,0.5518200504168167 -4751.0,0.5516294914337658 -4752.0,0.5514389982560912 -4753.0,0.5512485708610683 -4754.0,0.5510582092259806 -4755.0,0.5508679133281192 -4756.0,0.5506776831447835 -4757.0,0.5504875186532802 -4758.0,0.550297419830924 -4759.0,0.5501073866550376 -4760.0,0.5499174191029513 -4761.0,0.5497275171520036 -4762.0,0.5495376807795406 -4763.0,0.5493479099629158 -4764.0,0.5491582046794914 -4765.0,0.5489685649066366 -4766.0,0.5487789906217289 -4767.0,0.5485894818021534 -4768.0,0.5484000384253032 -4769.0,0.548210660468579 -4770.0,0.5480213479093894 -4771.0,0.5478321007251509 -4772.0,0.5476429188932874 -4773.0,0.5474538023912312 -4774.0,0.5472647511964219 -4775.0,0.5470757652863072 -4776.0,0.5468868446383424 -4777.0,0.5466979892299906 -4778.0,0.5465091990387227 -4779.0,0.5463204740420177 -4780.0,0.5461318142173616 -4781.0,0.545943219542249 -4782.0,0.5457546899941819 -4783.0,0.5455662255506699 -4784.0,0.5453778261892308 -4785.0,0.5451894918873897 -4786.0,0.54500122262268 -4787.0,0.5448130183726423 -4788.0,0.5446248791148254 -4789.0,0.5444368048267854 -4790.0,0.5442487954860865 -4791.0,0.5440608510703007 -4792.0,0.5438729715570075 -4793.0,0.5436851569237943 -4794.0,0.543497407148256 -4795.0,0.5433097222079957 -4796.0,0.5431221020806237 -4797.0,0.5429345467437584 -4798.0,0.5427470561750259 -4799.0,0.5425596303520598 -4800.0,0.5423722692525017 -4801.0,0.5421849728540006 -4802.0,0.5419977411342135 -4803.0,0.5418105740708051 -4804.0,0.5416234716414476 -4805.0,0.5414364338238212 -4806.0,0.5412494605956135 -4807.0,0.5410625519345201 -4808.0,0.540875707818244 -4809.0,0.5406889282244962 -4810.0,0.5405022131309951 -4811.0,0.5403155625154672 -4812.0,0.5401289763556462 -4813.0,0.5399424546292738 -4814.0,0.5397559973140994 -4815.0,0.5395696043878799 -4816.0,0.53938327582838 -4817.0,0.5391970116133721 -4818.0,0.5390108117206363 -4819.0,0.5388246761279601 -4820.0,0.5386386048131392 -4821.0,0.5384525977539762 -4822.0,0.5382666549282823 -4823.0,0.5380807763138756 -4824.0,0.5378949618885822 -4825.0,0.5377092116302358 -4826.0,0.5375235255166777 -4827.0,0.5373379035257568 -4828.0,0.5371523456353301 -4829.0,0.5369668518232615 -4830.0,0.5367814220674233 -4831.0,0.5365960563456947 -4832.0,0.5364107546359633 -4833.0,0.5362255169161237 -4834.0,0.5360403431640786 -4835.0,0.5358552333577378 -4836.0,0.5356701874750194 -4837.0,0.5354852054938485 -4838.0,0.5353002873921583 -4839.0,0.5351154331478892 -4840.0,0.5349306427389897 -4841.0,0.5347459161434155 -4842.0,0.5345612533391301 -4843.0,0.5343766543041045 -4844.0,0.5341921190163176 -4845.0,0.5340076474537554 -4846.0,0.5338232395944119 -4847.0,0.5336388954162886 -4848.0,0.5334546148973945 -4849.0,0.5332703980157466 -4850.0,0.5330862447493688 -4851.0,0.5329021550762931 -4852.0,0.532718128974559 -4853.0,0.5325341664222134 -4854.0,0.532350267397311 -4855.0,0.5321664318779139 -4856.0,0.5319826598420919 -4857.0,0.5317989512679225 -4858.0,0.5316153061334904 -4859.0,0.5314317244168881 -4860.0,0.5312482060962157 -4861.0,0.5310647511495808 -4862.0,0.5308813595550985 -4863.0,0.5306980312908917 -4864.0,0.5305147663350904 -4865.0,0.5303315646658326 -4866.0,0.5301484262612636 -4867.0,0.5299653510995365 -4868.0,0.5297823391588115 -4869.0,0.5295993904172568 -4870.0,0.5294165048530479 -4871.0,0.5292336824443679 -4872.0,0.5290509231694074 -4873.0,0.5288682270063645 -4874.0,0.5286855939334449 -4875.0,0.528503023928862 -4876.0,0.5283205169708362 -4877.0,0.528138073037596 -4878.0,0.5279556921073769 -4879.0,0.5277733741584226 -4880.0,0.5275911191689836 -4881.0,0.5274089271173182 -4882.0,0.5272267979816925 -4883.0,0.5270447317403794 -4884.0,0.52686272837166 -4885.0,0.5266807878538226 -4886.0,0.5264989101651629 -4887.0,0.5263170952839844 -4888.0,0.5261353431885978 -4889.0,0.5259536538573214 -4890.0,0.525772027268481 -4891.0,0.5255904634004099 -4892.0,0.5254089622314488 -4893.0,0.5252275237399461 -4894.0,0.5250461479042572 -4895.0,0.5248648347027456 -4896.0,0.5246835841137817 -4897.0,0.5245023961157438 -4898.0,0.5243212706870174 -4899.0,0.5241402078059956 -4900.0,0.5239592074510789 -4901.0,0.5237782696006754 -4902.0,0.5235973942332003 -4903.0,0.5234165813270767 -4904.0,0.5232358308607348 -4905.0,0.5230551428126123 -4906.0,0.5228745171611549 -4907.0,0.5226939538848147 -4908.0,0.5225134529620521 -4909.0,0.5223330143713346 -4910.0,0.5221526380911373 -4911.0,0.5219723240999425 -4912.0,0.5217920723762401 -4913.0,0.5216118828985274 -4914.0,0.5214317556453091 -4915.0,0.5212516905950974 -4916.0,0.5210716877264115 -4917.0,0.5208917470177789 -4918.0,0.5207118684477335 -4919.0,0.5205320519948174 -4920.0,0.5203522976375798 -4921.0,0.5201726053545773 -4922.0,0.5199929751243738 -4923.0,0.5198134069255407 -4924.0,0.519633900736657 -4925.0,0.5194544565363088 -4926.0,0.5192750743030898 -4927.0,0.5190957540156009 -4928.0,0.5189164956524507 -4929.0,0.5187372991922548 -4930.0,0.5185581646136362 -4931.0,0.5183790918952259 -4932.0,0.5182000810156615 -4933.0,0.5180211319535885 -4934.0,0.5178422446876593 -4935.0,0.5176634191965342 -4936.0,0.5174846554588806 -4937.0,0.5173059534533733 -4938.0,0.5171273131586942 -4939.0,0.5169487345535332 -4940.0,0.5167702176165869 -4941.0,0.5165917623265597 -4942.0,0.5164133686621629 -4943.0,0.5162350366021158 -4944.0,0.5160567661251445 -4945.0,0.5158785572099828 -4946.0,0.5157004098353714 -4947.0,0.5155223239800587 -4948.0,0.5153442996228005 -4949.0,0.5151663367423597 -4950.0,0.5149884353175066 -4951.0,0.5148105953270189 -4952.0,0.5146328167496815 -4953.0,0.5144550995642868 -4954.0,0.5142774437496345 -4955.0,0.5140998492845315 -4956.0,0.5139223161477919 -4957.0,0.5137448443182375 -4958.0,0.5135674337746972 -4959.0,0.5133900844960071 -4960.0,0.5132127964610108 -4961.0,0.5130355696485591 -4962.0,0.5128584040375102 -4963.0,0.5126812996067294 -4964.0,0.5125042563350896 -4965.0,0.5123272742014707 -4966.0,0.5121503531847601 -4967.0,0.5119734932638523 -4968.0,0.5117966944176493 -4969.0,0.5116199566250603 -4970.0,0.5114432798650018 -4971.0,0.5112666641163974 -4972.0,0.5110901093581782 -4973.0,0.5109136155692826 -4974.0,0.5107371827286561 -4975.0,0.5105608108152515 -4976.0,0.5103844998080289 -4977.0,0.5102082496859559 -4978.0,0.5100320604280069 -4979.0,0.5098559320131639 -4980.0,0.509679864420416 -4981.0,0.5095038576287597 -4982.0,0.5093279116171987 -4983.0,0.5091520263647439 -4984.0,0.5089762018504135 -4985.0,0.5088004380532327 -4986.0,0.5086247349522345 -4987.0,0.5084490925264585 -4988.0,0.5082735107549521 -4989.0,0.5080979896167694 -4990.0,0.5079225290909722 -4991.0,0.5077471291566295 -4992.0,0.5075717897928169 -4993.0,0.507396510978618 -4994.0,0.5072212926931233 -4995.0,0.5070461349154305 -4996.0,0.5068710376246445 -4997.0,0.5066960007998776 -4998.0,0.506521024420249 -4999.0,0.5063461084648855 -5000.0,0.5061712529129208 -5001.0,0.5059964577434959 -5002.0,0.505821722935759 -5003.0,0.5056470484688655 -5004.0,0.5054724343219782 -5005.0,0.5052978804742666 -5006.0,0.5051233869049079 -5007.0,0.5049489535930862 -5008.0,0.504774580517993 -5009.0,0.5046002676588267 -5010.0,0.5044260149947932 -5011.0,0.5042518225051053 -5012.0,0.5040776901689832 -5013.0,0.5039036179656541 -5014.0,0.5037296058743524 -5015.0,0.50355565387432 -5016.0,0.5033817619448054 -5017.0,0.5032079300650647 -5018.0,0.503034158214361 -5019.0,0.5028604463719646 -5020.0,0.5026867945171529 -5021.0,0.5025132026292106 -5022.0,0.5023396706874294 -5023.0,0.5021661986711081 -5024.0,0.5019927865595529 -5025.0,0.501819434332077 -5026.0,0.5016461419680006 -5027.0,0.5014729094466512 -5028.0,0.5012997367473637 -5029.0,0.5011266238494795 -5030.0,0.5009535707323477 -5031.0,0.5007805773753242 -5032.0,0.5006076437577723 -5033.0,0.5004347698590622 -5034.0,0.5002619556585713 -5035.0,0.5000892011356841 -5036.0,0.4999165062697924 -5037.0,0.49974387104029466 -5038.0,0.49957129542659706 -5039.0,0.49939877940811245 -5040.0,0.4992263229642609 -5041.0,0.4990539260744697 -5042.0,0.4988815887181731 -5043.0,0.4987093108748125 -5044.0,0.4985370925238365 -5045.0,0.4983649336447006 -5046.0,0.49819283421686755 -5047.0,0.4980207942198071 -5048.0,0.4978488136329962 -5049.0,0.4976768924359188 -5050.0,0.49750503060806595 -5051.0,0.4973332281289357 -5052.0,0.4971614849780334 -5053.0,0.4969898011348713 -5054.0,0.49681817657896876 -5055.0,0.4966466112898522 -5056.0,0.4964751052470551 -5057.0,0.49630365843011814 -5058.0,0.49613227081858896 -5059.0,0.4959609423920222 -5060.0,0.4957896731299797 -5061.0,0.49561846301203016 -5062.0,0.49544731201774955 -5063.0,0.49527622012672085 -5064.0,0.4951051873185339 -5065.0,0.49493421357278594 -5066.0,0.4947632988690808 -5067.0,0.49459244318702983 -5068.0,0.4944216465062511 -5069.0,0.4942509088063698 -5070.0,0.4940802300670181 -5071.0,0.4939096102678354 -5072.0,0.49373904938846797 -5073.0,0.4935685474085691 -5074.0,0.4933981043077992 -5075.0,0.4932277200658255 -5076.0,0.49305739466232257 -5077.0,0.4928871280769718 -5078.0,0.4927169202894616 -5079.0,0.4925467712794875 -5080.0,0.4923766810267518 -5081.0,0.4922066495109641 -5082.0,0.49203667671184087 -5083.0,0.49186676260910556 -5084.0,0.49169690718248865 -5085.0,0.49152711041172764 -5086.0,0.491357372276567 -5087.0,0.4911876927567583 -5088.0,0.49101807183205987 -5089.0,0.49084850948223724 -5090.0,0.4906790056870629 -5091.0,0.49050956042631616 -5092.0,0.49034017367978355 -5093.0,0.4901708454272585 -5094.0,0.49000157564854113 -5095.0,0.48983236432343913 -5096.0,0.4896632114317666 -5097.0,0.48949411695334494 -5098.0,0.48932508086800236 -5099.0,0.48915610315557406 -5100.0,0.48898718379590234 -5101.0,0.48881832276883624 -5102.0,0.4886495200542319 -5103.0,0.4884807756319524 -5104.0,0.4883120894818678 -5105.0,0.48814346158385497 -5106.0,0.4879748919177979 -5107.0,0.4878063804635875 -5108.0,0.48763792720112153 -5109.0,0.4874695321103047 -5110.0,0.48730119517104875 -5111.0,0.4871329163632724 -5112.0,0.48696469566690104 -5113.0,0.4867965330618672 -5114.0,0.48662842852811045 -5115.0,0.486460382045577 -5116.0,0.4862923935942203 -5117.0,0.4861244631540003 -5118.0,0.48595659070488434 -5119.0,0.48578877622684635 -5120.0,0.4856210196998674 -5121.0,0.4854533211039352 -5122.0,0.4852856804190446 -5123.0,0.4851180976251973 -5124.0,0.48495057270240194 -5125.0,0.48478310563067395 -5126.0,0.4846156963900357 -5127.0,0.4844483449605166 -5128.0,0.48428105132215277 -5129.0,0.4841138154549873 -5130.0,0.4839466373390702 -5131.0,0.48377951695445826 -5132.0,0.4836124542812153 -5133.0,0.48344544929941197 -5134.0,0.4832785019891258 -5135.0,0.4831116123304412 -5136.0,0.48294478030344945 -5137.0,0.4827780058882486 -5138.0,0.4826112890649438 -5139.0,0.48244462981364694 -5140.0,0.48227802811447673 -5141.0,0.4821114839475588 -5142.0,0.4819449972930257 -5143.0,0.48177856813101677 -5144.0,0.4816121964416782 -5145.0,0.48144588220516304 -5146.0,0.4812796254016313 -5147.0,0.4811134260112496 -5148.0,0.4809472840141918 -5149.0,0.4807811993906382 -5150.0,0.4806151721207761 -5151.0,0.4804492021847997 -5152.0,0.48028328956291005 -5153.0,0.48011743423531494 -5154.0,0.479951636182229 -5155.0,0.47978589538387384 -5156.0,0.4796202118204777 -5157.0,0.47945458547227576 -5158.0,0.47928901631951 -5159.0,0.47912350434242923 -5160.0,0.4789580495212891 -5161.0,0.478792651836352 -5162.0,0.47862731126788727 -5163.0,0.4784620277961709 -5164.0,0.4782968014014859 -5165.0,0.47813163206412185 -5166.0,0.47796651976437526 -5167.0,0.4778014644825495 -5168.0,0.47763646619895467 -5169.0,0.4774715248939076 -5170.0,0.47730664054773203 -5171.0,0.4771418131407585 -5172.0,0.4769770426533243 -5173.0,0.4768123290657735 -5174.0,0.47664767235845695 -5175.0,0.47648307251173233 -5176.0,0.47631852950596404 -5177.0,0.47615404332152333 -5178.0,0.4759896139387882 -5179.0,0.4758252413381434 -5180.0,0.4756609254999805 -5181.0,0.47549666640469784 -5182.0,0.47533246403270046 -5183.0,0.47516831836440027 -5184.0,0.4750042293802158 -5185.0,0.4748401970605725 -5186.0,0.4746762213859025 -5187.0,0.4745123023366447 -5188.0,0.4743484398932447 -5189.0,0.47418463403615496 -5190.0,0.47402088474583465 -5191.0,0.4738571920027496 -5192.0,0.4736935557873726 -5193.0,0.4735299760801829 -5194.0,0.4733664528616667 -5195.0,0.4732029861123168 -5196.0,0.47303957581263295 -5197.0,0.47287622194312134 -5198.0,0.47271292448429514 -5199.0,0.47254968341667414 -5200.0,0.4723864987207848 -5201.0,0.4722233703771605 -5202.0,0.4720602983663411 -5203.0,0.47189728266887343 -5204.0,0.47173432326531073 -5205.0,0.4715714201362133 -5206.0,0.47140857326214786 -5207.0,0.471245782623688 -5208.0,0.471083048201414 -5209.0,0.47092036997591286 -5210.0,0.4707577479277782 -5211.0,0.4705951820376104 -5212.0,0.47043267228601665 -5213.0,0.47027021865361057 -5214.0,0.4701078211210126 -5215.0,0.4699454796688501 -5216.0,0.4697831942777568 -5217.0,0.46962096492837313 -5218.0,0.4694587916013465 -5219.0,0.4692966742773307 -5220.0,0.46913461293698633 -5221.0,0.4689726075609807 -5222.0,0.4688106581299877 -5223.0,0.46864876462468796 -5224.0,0.4684869270257688 -5225.0,0.4683251453139241 -5226.0,0.4681634194698545 -5227.0,0.4680017494742673 -5228.0,0.46784013530787655 -5229.0,0.4676785769514027 -5230.0,0.4675170743855731 -5231.0,0.46735562759112165 -5232.0,0.46719423654878894 -5233.0,0.46703290123932223 -5234.0,0.4668716216434753 -5235.0,0.4667103977420087 -5236.0,0.4665492295156896 -5237.0,0.46638811694529186 -5238.0,0.46622706001159586 -5239.0,0.4660660586953887 -5240.0,0.4659051129774641 -5241.0,0.4657442228386225 -5242.0,0.46558338825967066 -5243.0,0.4654226092214224 -5244.0,0.46526188570469784 -5245.0,0.46510121769032386 -5246.0,0.46494060515913394 -5247.0,0.46478004809196816 -5248.0,0.4646195464696733 -5249.0,0.46445910027310267 -5250.0,0.46429870948311613 -5251.0,0.4641383740805803 -5252.0,0.4639780940463683 -5253.0,0.4638178693613599 -5254.0,0.46365770000644146 -5255.0,0.46349758596250595 -5256.0,0.46333752721045296 -5257.0,0.4631775237311886 -5258.0,0.4630175755056256 -5259.0,0.4628576825146834 -5260.0,0.4626978447392879 -5261.0,0.4625380621603716 -5262.0,0.4623783347588735 -5263.0,0.46221866251573945 -5264.0,0.46205904541192167 -5265.0,0.4618994834283789 -5266.0,0.4617399765460767 -5267.0,0.461580524745987 -5268.0,0.46142112800908835 -5269.0,0.46126178631636594 -5270.0,0.4611024996488114 -5271.0,0.460943267987423 -5272.0,0.46078409131320563 -5273.0,0.46062496960717064 -5274.0,0.4604659028503359 -5275.0,0.46030689102372596 -5276.0,0.4601479341083719 -5277.0,0.4599890320853113 -5278.0,0.45983018493558825 -5279.0,0.45967139264025353 -5280.0,0.4595126551803643 -5281.0,0.45935397253698446 -5282.0,0.45919534469118417 -5283.0,0.4590367716240404 -5284.0,0.4588782533166364 -5285.0,0.4587197897500622 -5286.0,0.4585613809054143 -5287.0,0.45840302676379563 -5288.0,0.4582447273063157 -5289.0,0.4580864825140905 -5290.0,0.4579282923682426 -5291.0,0.4577701568499011 -5292.0,0.45761207594020153 -5293.0,0.457454049620286 -5294.0,0.4572960778713032 -5295.0,0.45713816067440816 -5296.0,0.45698029801076256 -5297.0,0.4568224898615345 -5298.0,0.45666473620789866 -5299.0,0.4565070370310361 -5300.0,0.45634939231213456 -5301.0,0.4561918020323881 -5302.0,0.4560342661729974 -5303.0,0.45587678471516957 -5304.0,0.4557193576401182 -5305.0,0.45556198492906336 -5306.0,0.45540466656323175 -5307.0,0.4552474025238563 -5308.0,0.4550901927921766 -5309.0,0.45493303734943874 -5310.0,0.45477593617689516 -5311.0,0.4546188892558048 -5312.0,0.4544618965674332 -5313.0,0.4543049580930522 -5314.0,0.45414807381394023 -5315.0,0.4539912437113821 -5316.0,0.4538344677666692 -5317.0,0.4536777459610992 -5318.0,0.4535210782759764 -5319.0,0.45336446469261144 -5320.0,0.4532079051923215 -5321.0,0.4530513997564302 -5322.0,0.4528949483662675 -5323.0,0.4527385510031699 -5324.0,0.45258220764848045 -5325.0,0.4524259182835484 -5326.0,0.45226968288972963 -5327.0,0.4521135014483864 -5328.0,0.45195737394088736 -5329.0,0.45180130034860766 -5330.0,0.45164528065292886 -5331.0,0.45148931483523896 -5332.0,0.4513334028769324 -5333.0,0.4511775447594099 -5334.0,0.4510217404640789 -5335.0,0.45086598997235294 -5336.0,0.45071029326565215 -5337.0,0.4505546503254031 -5338.0,0.4503990611330387 -5339.0,0.45024352566999826 -5340.0,0.45008804391772755 -5341.0,0.44993261585767874 -5342.0,0.4497772414713104 -5343.0,0.4496219207400875 -5344.0,0.4494666536454814 -5345.0,0.4493114401689699 -5346.0,0.44915628029203714 -5347.0,0.4490011739961736 -5348.0,0.4488461212628764 -5349.0,0.4486911220736487 -5350.0,0.4485361764100004 -5351.0,0.4483812842534474 -5352.0,0.4482264455855124 -5353.0,0.44807166038772417 -5354.0,0.447916928641618 -5355.0,0.4477622503287355 -5356.0,0.44760762543062466 -5357.0,0.4474530539288399 -5358.0,0.44729853580494194 -5359.0,0.44714407104049786 -5360.0,0.44698965961708126 -5361.0,0.4468353015162719 -5362.0,0.4466809967196559 -5363.0,0.44652674520882596 -5364.0,0.446372546965381 -5365.0,0.4462184019709262 -5366.0,0.4460643102070732 -5367.0,0.44591027165544006 -5368.0,0.445756286297651 -5369.0,0.44560235411533683 -5370.0,0.4454484750901344 -5371.0,0.44529464920368717 -5372.0,0.4451408764376448 -5373.0,0.44498715677366324 -5374.0,0.444833490193405 -5375.0,0.44467987667853875 -5376.0,0.4445263162107394 -5377.0,0.44437280877168844 -5378.0,0.44421935434307347 -5379.0,0.4440659529065885 -5380.0,0.44391260444393393 -5381.0,0.44375930893681637 -5382.0,0.44360606636694877 -5383.0,0.4434528767160504 -5384.0,0.4432997399658468 -5385.0,0.44314665609807 -5386.0,0.44299362509445817 -5387.0,0.44284064693675573 -5388.0,0.4426877216067136 -5389.0,0.4425348490860889 -5390.0,0.442382029356645 -5391.0,0.4422292624001517 -5392.0,0.44207654819838493 -5393.0,0.441923886733127 -5394.0,0.4417712779861666 -5395.0,0.4416187219392985 -5396.0,0.441466218574324 -5397.0,0.44131376787305043 -5398.0,0.4411613698172917 -5399.0,0.4410090243888677 -5400.0,0.44085673156960475 -5401.0,0.44070449134133544 -5402.0,0.44055230368589865 -5403.0,0.4404001685851395 -5404.0,0.4402480860209093 -5405.0,0.4400960559750658 -5406.0,0.43994407842947286 -5407.0,0.43979215336600075 -5408.0,0.43964028076652584 -5409.0,0.4394884606129309 -5410.0,0.4393366928871048 -5411.0,0.4391849775709429 -5412.0,0.4390333146463465 -5413.0,0.4388817040952234 -5414.0,0.4387301458994876 -5415.0,0.4385786400410593 -5416.0,0.43842718650186485 -5417.0,0.4382757852638371 -5418.0,0.4381244363089149 -5419.0,0.4379731396190435 -5420.0,0.4378218951761742 -5421.0,0.4376707029622647 -5422.0,0.43751956295927885 -5423.0,0.43736847514918675 -5424.0,0.4372174395139648 -5425.0,0.4370664560355954 -5426.0,0.4369155246960675 -5427.0,0.4367646454773759 -5428.0,0.436613818361522 -5429.0,0.4364630433305131 -5430.0,0.4363123203663629 -5431.0,0.4361616494510912 -5432.0,0.4360110305667241 -5433.0,0.4358604636952938 -5434.0,0.4357099488188389 -5435.0,0.43555948591940385 -5436.0,0.43540907497903975 -5437.0,0.4352587159798036 -5438.0,0.4351084089037586 -5439.0,0.43495815373297436 -5440.0,0.43480795044952636 -5441.0,0.43465779903549656 -5442.0,0.4345076994729729 -5443.0,0.4343576517440497 -5444.0,0.4342076558308273 -5445.0,0.4340577117154123 -5446.0,0.4339078193799174 -5447.0,0.43375797880646166 -5448.0,0.43360818997717004 -5449.0,0.433458452874174 -5450.0,0.43330876747961083 -5451.0,0.4331591337756242 -5452.0,0.433009551744364 -5453.0,0.43286002136798607 -5454.0,0.4327105426286525 -5455.0,0.4325611155085317 -5456.0,0.43241173998979804 -5457.0,0.4322624160546321 -5458.0,0.43211314368522064 -5459.0,0.4319639228637565 -5460.0,0.4318147535724388 -5461.0,0.4316656357934727 -5462.0,0.4315165695090695 -5463.0,0.4313675547014468 -5464.0,0.43121859135282803 -5465.0,0.4310696794454431 -5466.0,0.4309208189615279 -5467.0,0.43077200988332437 -5468.0,0.4306232521930807 -5469.0,0.43047454587305123 -5470.0,0.43032589090549633 -5471.0,0.43017728727268256 -5472.0,0.43002873495688265 -5473.0,0.4298802339403752 -5474.0,0.4297317842054454 -5475.0,0.4295833857343841 -5476.0,0.4294350385094885 -5477.0,0.42928674251306187 -5478.0,0.42913849772741347 -5479.0,0.42899030413485895 -5480.0,0.4288421617177197 -5481.0,0.4286940704583236 -5482.0,0.42854603033900435 -5483.0,0.4283980413421018 -5484.0,0.42825010344996206 -5485.0,0.4281022166449371 -5486.0,0.42795438090938515 -5487.0,0.4278065962256705 -5488.0,0.4276588625761635 -5489.0,0.4275111799432406 -5490.0,0.42736354830928436 -5491.0,0.42721596765668335 -5492.0,0.4270684379678323 -5493.0,0.426920959225132 -5494.0,0.4267735314109894 -5495.0,0.42662615450781727 -5496.0,0.42647882849803476 -5497.0,0.42633155336406686 -5498.0,0.42618432908834475 -5499.0,0.42603715565330563 -5500.0,0.42589003304139283 -5501.0,0.4257429612350557 -5502.0,0.42559594021674957 -5503.0,0.425448969968936 -5504.0,0.42530205047408237 -5505.0,0.42515518171466243 -5506.0,0.4250083636731557 -5507.0,0.42486159633204784 -5508.0,0.42471487967383065 -5509.0,0.42456821368100184 -5510.0,0.4244215983360653 -5511.0,0.4242750336215308 -5512.0,0.4241285195199143 -5513.0,0.42398205601373773 -5514.0,0.423835643085529 -5515.0,0.42368928071782225 -5516.0,0.4235429688931574 -5517.0,0.42339670759408055 -5518.0,0.42325049680314375 -5519.0,0.4231043365029052 -5520.0,0.42295822667592897 -5521.0,0.4228121673047853 -5522.0,0.4226661583720503 -5523.0,0.4225201998603062 -5524.0,0.42237429175214125 -5525.0,0.4222284340301496 -5526.0,0.4220826266769315 -5527.0,0.42193686967509325 -5528.0,0.42179116300724706 -5529.0,0.4216455066560112 -5530.0,0.4214999006040099 -5531.0,0.42135434483387346 -5532.0,0.42120883932823816 -5533.0,0.4210633840697462 -5534.0,0.42091797904104583 -5535.0,0.42077262422479134 -5536.0,0.4206273196036429 -5537.0,0.4204820651602668 -5538.0,0.42033686087733524 -5539.0,0.42019170673752626 -5540.0,0.42004660272352423 -5541.0,0.41990154881801917 -5542.0,0.41975654500370724 -5543.0,0.4196115912632905 -5544.0,0.41946668757947714 -5545.0,0.4193218339349811 -5546.0,0.41917703031252246 -5547.0,0.4190322766948272 -5548.0,0.4188875730646272 -5549.0,0.41874291940466035 -5550.0,0.4185983156976707 -5551.0,0.41845376192640793 -5552.0,0.4183092580736279 -5553.0,0.41816480412209234 -5554.0,0.4180204000545689 -5555.0,0.4178760458538313 -5556.0,0.41773174150265907 -5557.0,0.4175874869838378 -5558.0,0.4174432822801589 -5559.0,0.41729912737441993 -5560.0,0.4171550222494242 -5561.0,0.417010966887981 -5562.0,0.41686696127290557 -5563.0,0.41672300538701906 -5564.0,0.4165790992131487 -5565.0,0.4164352427341274 -5566.0,0.4162914359327943 -5567.0,0.4161476787919941 -5568.0,0.41600397129457767 -5569.0,0.41586031342340185 -5570.0,0.41571670516132925 -5571.0,0.41557314649122845 -5572.0,0.41542963739597394 -5573.0,0.4152861778584461 -5574.0,0.41514276786153137 -5575.0,0.41499940738812185 -5576.0,0.41485609642111576 -5577.0,0.4147128349434171 -5578.0,0.41456962293793587 -5579.0,0.41442646038758785 -5580.0,0.41428334727529487 -5581.0,0.4141402835839845 -5582.0,0.4139972692965904 -5583.0,0.4138543043960519 -5584.0,0.4137113888653144 -5585.0,0.413568522687329 -5586.0,0.41342570584505295 -5587.0,0.41328293832144913 -5588.0,0.41314022009948653 -5589.0,0.4129975511621398 -5590.0,0.4128549314923897 -5591.0,0.4127123610732226 -5592.0,0.412569839887631 -5593.0,0.4124273679186131 -5594.0,0.4122849451491731 -5595.0,0.41214257156232087 -5596.0,0.41200024714107236 -5597.0,0.41185797186844936 -5598.0,0.4117157457274794 -5599.0,0.41157356870119594 -5600.0,0.41143144077263827 -5601.0,0.41128936192485166 -5602.0,0.41114733214088706 -5603.0,0.41100535140380134 -5604.0,0.4108634196966573 -5605.0,0.4107215370025235 -5606.0,0.4105797033044743 -5607.0,0.4104379185855901 -5608.0,0.4102961828289569 -5609.0,0.41015449601766674 -5610.0,0.4100128581348174 -5611.0,0.40987126916351246 -5612.0,0.40972972908686145 -5613.0,0.40958823788797966 -5614.0,0.4094467955499882 -5615.0,0.409305402056014 -5616.0,0.40916405738918993 -5617.0,0.4090227615326545 -5618.0,0.40888151446955223 -5619.0,0.40874031618303336 -5620.0,0.40859916665625395 -5621.0,0.40845806587237593 -5622.0,0.4083170138145669 -5623.0,0.4081760104660005 -5624.0,0.40803505580985594 -5625.0,0.40789414982931843 -5626.0,0.4077532925075789 -5627.0,0.40761248382783416 -5628.0,0.40747172377328666 -5629.0,0.4073310123271448 -5630.0,0.4071903494726227 -5631.0,0.4070497351929404 -5632.0,0.40690916947132355 -5633.0,0.40676865229100373 -5634.0,0.40662818363521824 -5635.0,0.40648776348721016 -5636.0,0.40634739183022844 -5637.0,0.40620706864752776 -5638.0,0.4060667939223686 -5639.0,0.40592656763801716 -5640.0,0.4057863897777455 -5641.0,0.4056462603248314 -5642.0,0.4055061792625585 -5643.0,0.4053661465742161 -5644.0,0.40522616224309926 -5645.0,0.405086226252509 -5646.0,0.4049463385857519 -5647.0,0.4048064992261404 -5648.0,0.40466670815699274 -5649.0,0.40452696536163274 -5650.0,0.40438727082339015 -5651.0,0.4042476245256005 -5652.0,0.40410802645160493 -5653.0,0.40396847658475044 -5654.0,0.4038289749083897 -5655.0,0.40368952140588127 -5656.0,0.4035501160605893 -5657.0,0.40341075885588373 -5658.0,0.40327144977514034 -5659.0,0.4031321888017405 -5660.0,0.4029929759190714 -5661.0,0.402853811110526 -5662.0,0.4027146943595029 -5663.0,0.40257562564940647 -5664.0,0.4024366049636469 -5665.0,0.4022976322856401 -5666.0,0.40215870759880745 -5667.0,0.4020198308865764 -5668.0,0.40188100213237987 -5669.0,0.40174222131965664 -5670.0,0.40160348843185123 -5671.0,0.4014648034524137 -5672.0,0.40132616636480006 -5673.0,0.4011875771524719 -5674.0,0.40104903579889645 -5675.0,0.4009105422875468 -5676.0,0.40077209660190166 -5677.0,0.4006336987254455 -5678.0,0.4004953486416684 -5679.0,0.4003570463340663 -5680.0,0.4002187917861407 -5681.0,0.40008058498139887 -5682.0,0.3999424259033536 -5683.0,0.3998043145355237 -5684.0,0.39966625086143337 -5685.0,0.3995282348646127 -5686.0,0.3993902665285974 -5687.0,0.39925234583692876 -5688.0,0.3991144727731539 -5689.0,0.3989766473208256 -5690.0,0.3988388694635022 -5691.0,0.3987011391847479 -5692.0,0.3985634564681325 -5693.0,0.39842582129723136 -5694.0,0.3982882336556256 -5695.0,0.39815069352690213 -5696.0,0.3980132008946533 -5697.0,0.3978757557424773 -5698.0,0.39773835805397795 -5699.0,0.39760100781276464 -5700.0,0.39746370500245254 -5701.0,0.39732644960666236 -5702.0,0.39718924160902064 -5703.0,0.39705208099315936 -5704.0,0.39691496774271634 -5705.0,0.39677790184133493 -5706.0,0.39664088327266417 -5707.0,0.39650391202035873 -5708.0,0.396366988068079 -5709.0,0.3962301113994909 -5710.0,0.396093281998266 -5711.0,0.3959564998480816 -5712.0,0.3958197649326206 -5713.0,0.3956830772355715 -5714.0,0.3955464367406285 -5715.0,0.39540984343149127 -5716.0,0.39527329729186533 -5717.0,0.3951367983054617 -5718.0,0.3950003464559971 -5719.0,0.39486394172719363 -5720.0,0.39472758410277936 -5721.0,0.3945912735664878 -5722.0,0.3944550101020581 -5723.0,0.39431879369323497 -5724.0,0.3941826243237689 -5725.0,0.3940465019774157 -5726.0,0.3939104266379371 -5727.0,0.39377439828910027 -5728.0,0.39363841691467805 -5729.0,0.39350248249844877 -5730.0,0.3933665950241965 -5731.0,0.3932307544757109 -5732.0,0.3930949608367871 -5733.0,0.3929592140912259 -5734.0,0.3928235142228338 -5735.0,0.39268786121542276 -5736.0,0.39255225505281033 -5737.0,0.39241669571881965 -5738.0,0.39228118319727956 -5739.0,0.39214571747202437 -5740.0,0.392010298526894 -5741.0,0.391874926345734 -5742.0,0.39173960091239546 -5743.0,0.39160432221073493 -5744.0,0.3914690902246148 -5745.0,0.3913339049379027 -5746.0,0.3911987663344722 -5747.0,0.39106367439820217 -5748.0,0.3909286291129771 -5749.0,0.39079363046268706 -5750.0,0.39065867843122776 -5751.0,0.3905237730025004 -5752.0,0.3903889141604117 -5753.0,0.390254101888874 -5754.0,0.39011933617180516 -5755.0,0.3899846169931287 -5756.0,0.3898499443367735 -5757.0,0.38971531818667415 -5758.0,0.38958073852677066 -5759.0,0.38944620534100877 -5760.0,0.3893117186133396 -5761.0,0.38917727832771987 -5762.0,0.3890428844681118 -5763.0,0.3889085370184832 -5764.0,0.3887742359628074 -5765.0,0.38863998128506333 -5766.0,0.3885057729692353 -5767.0,0.3883716109993132 -5768.0,0.38823749535929264 -5769.0,0.38810342603317444 -5770.0,0.3879694030049652 -5771.0,0.38783542625867695 -5772.0,0.3877014957783272 -5773.0,0.387567611547939 -5774.0,0.387433773551541 -5775.0,0.3872999817731673 -5776.0,0.38716623619685747 -5777.0,0.38703253680665667 -5778.0,0.3868988835866155 -5779.0,0.3867652765207902 -5780.0,0.38663171559324233 -5781.0,0.38649820078803904 -5782.0,0.38636473208925304 -5783.0,0.38623130948096246 -5784.0,0.386097932947251 -5785.0,0.3859646024722077 -5786.0,0.3858313180399274 -5787.0,0.38569807963451 -5788.0,0.38556488724006127 -5789.0,0.38543174084069237 -5790.0,0.3852986404205198 -5791.0,0.38516558596366574 -5792.0,0.3850325774542577 -5793.0,0.3848996148764287 -5794.0,0.38476669821431736 -5795.0,0.38463382745206764 -5796.0,0.384501002573829 -5797.0,0.3843682235637565 -5798.0,0.3842354904060105 -5799.0,0.38410280308475697 -5800.0,0.3839701615841672 -5801.0,0.383837565888418 -5802.0,0.38370501598169177 -5803.0,0.38357251184817626 -5804.0,0.3834400534720646 -5805.0,0.38330764083755553 -5806.0,0.38317527392885325 -5807.0,0.38304295273016725 -5808.0,0.38291067722571265 -5809.0,0.38277844739970984 -5810.0,0.3826462632363849 -5811.0,0.3825141247199692 -5812.0,0.3823820318346995 -5813.0,0.3822499845648181 -5814.0,0.38211798289457277 -5815.0,0.38198602680821664 -5816.0,0.3818541162900083 -5817.0,0.3817222513242119 -5818.0,0.3815904318950968 -5819.0,0.38145865798693784 -5820.0,0.3813269295840155 -5821.0,0.3811952466706155 -5822.0,0.38106360923102894 -5823.0,0.38093201724955256 -5824.0,0.38080047071048834 -5825.0,0.3806689695981437 -5826.0,0.38053751389683155 -5827.0,0.38040610359087024 -5828.0,0.38027473866458333 -5829.0,0.3801434191023001 -5830.0,0.380012144888355 -5831.0,0.379880916007088 -5832.0,0.37974973244284443 -5833.0,0.3796185941799751 -5834.0,0.37948750120283603 -5835.0,0.379356453495789 -5836.0,0.3792254510432008 -5837.0,0.3790944938294439 -5838.0,0.37896358183889595 -5839.0,0.3788327150559402 -5840.0,0.37870189346496513 -5841.0,0.3785711170503648 -5842.0,0.3784403857965384 -5843.0,0.37830969968789063 -5844.0,0.37817905870883173 -5845.0,0.3780484628437771 -5846.0,0.37791791207714753 -5847.0,0.37778740639336944 -5848.0,0.3776569457768743 -5849.0,0.3775265302120992 -5850.0,0.3773961596834865 -5851.0,0.3772658341754839 -5852.0,0.3771355536725446 -5853.0,0.3770053181591269 -5854.0,0.3768751276196949 -5855.0,0.3767449820387177 -5856.0,0.37661488140066984 -5857.0,0.3764848256900314 -5858.0,0.37635481489128747 -5859.0,0.37622484898892894 -5860.0,0.37609492796745164 -5861.0,0.37596505181135703 -5862.0,0.37583522050515183 -5863.0,0.3757054340333481 -5864.0,0.3755756923804633 -5865.0,0.3754459955310201 -5866.0,0.3753163434695467 -5867.0,0.37518673618057646 -5868.0,0.37505717364864827 -5869.0,0.37492765585830623 -5870.0,0.3747981827940998 -5871.0,0.3746687544405838 -5872.0,0.3745393707823184 -5873.0,0.374410031803869 -5874.0,0.3742807374898065 -5875.0,0.374151487824707 -5876.0,0.37402228279315186 -5877.0,0.373893122379728 -5878.0,0.3737640065690274 -5879.0,0.3736349353456476 -5880.0,0.3735059086941913 -5881.0,0.3733769265992665 -5882.0,0.37324798904548667 -5883.0,0.37311909601747045 -5884.0,0.3729902474998419 -5885.0,0.3728614434772302 -5886.0,0.3727326839342701 -5887.0,0.3726039688556015 -5888.0,0.37247529822586956 -5889.0,0.3723466720297248 -5890.0,0.3722180902518232 -5891.0,0.37208955287682577 -5892.0,0.371961059889399 -5893.0,0.3718326112742146 -5894.0,0.3717042070159495 -5895.0,0.3715758470992861 -5896.0,0.371447531508912 -5897.0,0.37131926022952005 -5898.0,0.3711910332458085 -5899.0,0.37106285054248067 -5900.0,0.37093471210424533 -5901.0,0.3708066179158166 -5902.0,0.37067856796191373 -5903.0,0.37055056222726124 -5904.0,0.37042260069658905 -5905.0,0.3702946833546322 -5906.0,0.3701668101861312 -5907.0,0.3700389811758316 -5908.0,0.3699111963084844 -5909.0,0.36978345556884573 -5910.0,0.3696557589416771 -5911.0,0.36952810641174527 -5912.0,0.3694004979638222 -5913.0,0.3692729335826851 -5914.0,0.3691454132531165 -5915.0,0.36901793695990415 -5916.0,0.368890504687841 -5917.0,0.3687631164217254 -5918.0,0.3686357721463608 -5919.0,0.36850847184655594 -5920.0,0.3683812155071249 -5921.0,0.36825400311288686 -5922.0,0.36812683464866636 -5923.0,0.36799971009929305 -5924.0,0.3678726294496019 -5925.0,0.3677455926844333 -5926.0,0.3676185997886325 -5927.0,0.3674916507470502 -5928.0,0.3673647455445423 -5929.0,0.3672378841659701 -5930.0,0.3671110665961997 -5931.0,0.36698429282010286 -5932.0,0.3668575628225563 -5933.0,0.3667308765884422 -5934.0,0.36660423410264764 -5935.0,0.3664776353500653 -5936.0,0.3663510803155926 -5937.0,0.3662245689841327 -5938.0,0.36609810134059356 -5939.0,0.3659716773698885 -5940.0,0.36584529705693625 -5941.0,0.3657189603866604 -5942.0,0.36559266734399 -5943.0,0.36546641791385903 -5944.0,0.36534021208120715 -5945.0,0.3652140498309786 -5946.0,0.36508793114812343 -5947.0,0.36496185601759634 -5948.0,0.36483582442435775 -5949.0,0.36470983635337273 -5950.0,0.3645838917896121 -5951.0,0.3644579907180514 -5952.0,0.36433213312367163 -5953.0,0.36420631899145883 -5954.0,0.3640805483064044 -5955.0,0.3639548210535047 -5956.0,0.3638291372177615 -5957.0,0.3637034967841815 -5958.0,0.36357789973777677 -5959.0,0.3634523460635646 -5960.0,0.3633268357465672 -5961.0,0.36320136877181225 -5962.0,0.3630759451243323 -5963.0,0.3629505647891653 -5964.0,0.3628252277513543 -5965.0,0.3626999339959475 -5966.0,0.36257468350799826 -5967.0,0.36244947627256513 -5968.0,0.36232431227471174 -5969.0,0.362199191499507 -5970.0,0.3620741139320249 -5971.0,0.3619490795573446 -5972.0,0.36182408836055036 -5973.0,0.3616991403267317 -5974.0,0.3615742354409832 -5975.0,0.3614493736884047 -5976.0,0.36132455505410094 -5977.0,0.3611997795231821 -5978.0,0.3610750470807634 -5979.0,0.360950357711965 -5980.0,0.3608257114019125 -5981.0,0.36070110813573647 -5982.0,0.3605765478985727 -5983.0,0.3604520306755619 -5984.0,0.36032755645185033 -5985.0,0.36020312521258885 -5986.0,0.36007873694293396 -5987.0,0.3599543916280468 -5988.0,0.3598300892530942 -5989.0,0.35970582980324745 -5990.0,0.35958161326368354 -5991.0,0.3594574396195842 -5992.0,0.35933330885613657 -5993.0,0.3592092209585326 -5994.0,0.35908517591196965 -5995.0,0.35896117370164987 -5996.0,0.3588372143127808 -5997.0,0.35871329773057514 -5998.0,0.3585894239402503 -5999.0,0.35846559292702923 -6000.0,0.3583418046761396 -6001.0,0.3582180591728146 -6002.0,0.35809435640229204 -6003.0,0.3579706963498153 -6004.0,0.3578470790006325 -6005.0,0.3577235043399971 -6006.0,0.35759997235316743 -6007.0,0.35747648302540713 -6008.0,0.35735303634198473 -6009.0,0.35722963228817406 -6010.0,0.3571062708492538 -6011.0,0.3569829520105079 -6012.0,0.3568596757572252 -6013.0,0.3567364420747 -6014.0,0.3566132509482311 -6015.0,0.3564901023631229 -6016.0,0.35636699630468466 -6017.0,0.35624393275823063 -6018.0,0.3561209117090804 -6019.0,0.35599793314255823 -6020.0,0.3558749970439939 -6021.0,0.35575210339872176 -6022.0,0.3556292521920818 -6023.0,0.3555064434094185 -6024.0,0.35538367703608187 -6025.0,0.35526095305742666 -6026.0,0.3551382714588128 -6027.0,0.35501563222560534 -6028.0,0.3548930353431743 -6029.0,0.3547704807968946 -6030.0,0.35464796857214664 -6031.0,0.35452549865431543 -6032.0,0.35440307102879126 -6033.0,0.3542806856809694 -6034.0,0.35415834259625006 -6035.0,0.35403604176003883 -6036.0,0.3539137831577459 -6037.0,0.3537915667747869 -6038.0,0.35366939259658214 -6039.0,0.3535472606085572 -6040.0,0.3534251707961426 -6041.0,0.353303123144774 -6042.0,0.3531811176398919 -6043.0,0.353059154266942 -6044.0,0.3529372330113749 -6045.0,0.35281535385864643 -6046.0,0.352693516794217 -6047.0,0.3525717218035527 -6048.0,0.352449968872124 -6049.0,0.3523282579854068 -6050.0,0.35220658912888175 -6051.0,0.3520849622880348 -6052.0,0.35196337744835665 -6053.0,0.35184183459534313 -6054.0,0.3517203337144951 -6055.0,0.3515988747913184 -6056.0,0.35147745781132383 -6057.0,0.3513560827600272 -6058.0,0.3512347496229495 -6059.0,0.35111345838561636 -6060.0,0.35099220903355877 -6061.0,0.3508710015523125 -6062.0,0.35074983592741843 -6063.0,0.35062871214442226 -6064.0,0.35050763018887504 -6065.0,0.3503865900463323 -6066.0,0.3502655917023551 -6067.0,0.350144635142509 -6068.0,0.3500237203523649 -6069.0,0.34990284731749843 -6070.0,0.34978201602349046 -6071.0,0.34966122645592657 -6072.0,0.3495404786003975 -6073.0,0.34941977244249894 -6074.0,0.3492991079678315 -6075.0,0.3491784851620008 -6076.0,0.34905790401061737 -6077.0,0.34893736449929685 -6078.0,0.3488168666136596 -6079.0,0.3486964103393313 -6080.0,0.34857599566194225 -6081.0,0.3484556225671279 -6082.0,0.3483352910405286 -6083.0,0.3482150010677898 -6084.0,0.3480947526345615 -6085.0,0.3479745457264993 -6086.0,0.3478543803292631 -6087.0,0.3477342564285182 -6088.0,0.34761417400993455 -6089.0,0.3474941330591874 -6090.0,0.34737413356195657 -6091.0,0.347254175503927 -6092.0,0.34713425887078875 -6093.0,0.34701438364823645 -6094.0,0.34689454982196993 -6095.0,0.34677475737769387 -6096.0,0.34665500630111795 -6097.0,0.3465352965779567 -6098.0,0.3464156281939296 -6099.0,0.3462960011347611 -6100.0,0.34617641538618066 -6101.0,0.3460568709339224 -6102.0,0.34593736776372574 -6103.0,0.3458179058613346 -6104.0,0.34569848521249824 -6105.0,0.34557910580297047 -6106.0,0.3454597676185104 -6107.0,0.3453404706448816 -6108.0,0.3452212148678531 -6109.0,0.3451020002731983 -6110.0,0.3449828268466959 -6111.0,0.34486369457412946 -6112.0,0.34474460344128716 -6113.0,0.3446255534339625 -6114.0,0.3445065445379535 -6115.0,0.34438757673906345 -6116.0,0.34426865002310014 -6117.0,0.3441497643758767 -6118.0,0.34403091978321076 -6119.0,0.3439121162309252 -6120.0,0.3437933537048474 -6121.0,0.3436746321908102 -6122.0,0.3435559516746506 -6123.0,0.3434373121422111 -6124.0,0.3433187135793388 -6125.0,0.34320015597188586 -6126.0,0.343081639305709 -6127.0,0.3429631635666703 -6128.0,0.3428447287406363 -6129.0,0.3427263348134787 -6130.0,0.34260798177107393 -6131.0,0.3424896695993032 -6132.0,0.342371398284053 -6133.0,0.3422531678112142 -6134.0,0.3421349781666828 -6135.0,0.34201682933635974 -6136.0,0.3418987213061507 -6137.0,0.34178065406196606 -6138.0,0.34166262758972155 -6139.0,0.3415446418753373 -6140.0,0.34142669690473854 -6141.0,0.34130879266385517 -6142.0,0.3411909291386223 -6143.0,0.34107310631497945 -6144.0,0.34095532417887137 -6145.0,0.34083758271624737 -6146.0,0.34071988191306185 -6147.0,0.340602221755274 -6148.0,0.3404846022288477 -6149.0,0.3403670233197519 -6150.0,0.3402494850139602 -6151.0,0.34013198729745125 -6152.0,0.34001453015620836 -6153.0,0.33989711357621977 -6154.0,0.33977973754347846 -6155.0,0.3396624020439825 -6156.0,0.3395451070637344 -6157.0,0.339427852588742 -6158.0,0.33931063860501737 -6159.0,0.339193465098578 -6160.0,0.33907633205544574 -6161.0,0.3389592394616477 -6162.0,0.33884218730321536 -6163.0,0.3387251755661854 -6164.0,0.33860820423659915 -6165.0,0.3384912733005027 -6166.0,0.3383743827439472 -6167.0,0.3382575325529883 -6168.0,0.3381407227136867 -6169.0,0.3380239532121078 -6170.0,0.33790722403432194 -6171.0,0.33779053516640406 -6172.0,0.3376738865944341 -6173.0,0.33755727830449667 -6174.0,0.3374407102826814 -6175.0,0.3373241825150824 -6176.0,0.3372076949877989 -6177.0,0.3370912476869346 -6178.0,0.33697484059859845 -6179.0,0.33685847370890365 -6180.0,0.33674214700396876 -6181.0,0.3366258604699166 -6182.0,0.3365096140928752 -6183.0,0.3363934078589771 -6184.0,0.3362772417543598 -6185.0,0.3361611157651656 -6186.0,0.3360450298775414 -6187.0,0.3359289840776391 -6188.0,0.3358129783516152 -6189.0,0.3356970126856311 -6190.0,0.33558108706585293 -6191.0,0.33546520147845166 -6192.0,0.33534935590960285 -6193.0,0.3352335503454872 -6194.0,0.33511778477228965 -6195.0,0.33500205917620046 -6196.0,0.3348863735434143 -6197.0,0.3347707278601308 -6198.0,0.33465512211255405 -6199.0,0.33453955628689347 -6200.0,0.3344240303693626 -6201.0,0.3343085443461802 -6202.0,0.3341930982035695 -6203.0,0.33407769192775877 -6204.0,0.3339623255049809 -6205.0,0.3338469989214733 -6206.0,0.3337317121634786 -6207.0,0.3336164652172437 -6208.0,0.3335012580690207 -6209.0,0.33338609070506603 -6210.0,0.3332709631116412 -6211.0,0.3331558752750123 -6212.0,0.33304082718145017 -6213.0,0.3329258188172304 -6214.0,0.3328108501686333 -6215.0,0.332695921221944 -6216.0,0.3325810319634524 -6217.0,0.33246618237945286 -6218.0,0.3323513724562448 -6219.0,0.3322366021801321 -6220.0,0.33212187153742373 -6221.0,0.33200718051443295 -6222.0,0.331892529097478 -6223.0,0.3317779172728819 -6224.0,0.3316633450269722 -6225.0,0.33154881234608136 -6226.0,0.3314343192165463 -6227.0,0.331319865624709 -6228.0,0.3312054515569159 -6229.0,0.33109107699951823 -6230.0,0.3309767419388719 -6231.0,0.3308624463613377 -6232.0,0.3307481902532809 -6233.0,0.3306339736010716 -6234.0,0.33051979639108453 -6235.0,0.33040565860969934 -6236.0,0.3302915602433001 -6237.0,0.3301775012782757 -6238.0,0.3300634817010198 -6239.0,0.3299495014979307 -6240.0,0.32983556065541125 -6241.0,0.3297216591598693 -6242.0,0.3296077969977172 -6243.0,0.32949397415537196 -6244.0,0.32938019061925544 -6245.0,0.329266446375794 -6246.0,0.32915274141141887 -6247.0,0.32903907571256574 -6248.0,0.3289254492656753 -6249.0,0.3288118620571926 -6250.0,0.32869831407356764 -6251.0,0.32858480530125483 -6252.0,0.32847133572671355 -6253.0,0.3283579053364075 -6254.0,0.32824451411680555 -6255.0,0.32813116205438064 -6256.0,0.328017849135611 -6257.0,0.327904575346979 -6258.0,0.32779134067497195 -6259.0,0.32767814510608184 -6260.0,0.32756498862680516 -6261.0,0.3274518712236434 -6262.0,0.3273387928831022 -6263.0,0.3272257535916923 -6264.0,0.3271127533359288 -6265.0,0.3269997921023318 -6266.0,0.3268868698774257 -6267.0,0.32677398664773977 -6268.0,0.32666114239980776 -6269.0,0.32654833712016834 -6270.0,0.32643557079536445 -6271.0,0.3263228434119441 -6272.0,0.3262101549564596 -6273.0,0.3260975054154681 -6274.0,0.3259848947755313 -6275.0,0.3258723230232156 -6276.0,0.32575979014509193 -6277.0,0.32564729612773613 -6278.0,0.3255348409577282 -6279.0,0.3254224246216533 -6280.0,0.3253100471061009 -6281.0,0.32519770839766515 -6282.0,0.3250854084829449 -6283.0,0.3249731473485436 -6284.0,0.32486092498106933 -6285.0,0.3247487413671346 -6286.0,0.324636596493357 -6287.0,0.3245244903463583 -6288.0,0.32441242291276506 -6289.0,0.3243003941792085 -6290.0,0.32418840413232436 -6291.0,0.3240764527587531 -6292.0,0.3239645400451397 -6293.0,0.3238526659781337 -6294.0,0.32374083054438957 -6295.0,0.32362903373056595 -6296.0,0.32351727552332643 -6297.0,0.3234055559093389 -6298.0,0.32329387487527617 -6299.0,0.3231822324078156 -6300.0,0.32307062849363877 -6301.0,0.3229590631194324 -6302.0,0.32284753627188734 -6303.0,0.3227360479376995 -6304.0,0.3226245981035689 -6305.0,0.3225131867562006 -6306.0,0.3224018138823039 -6307.0,0.32229047946859285 -6308.0,0.32217918350178604 -6309.0,0.3220679259686067 -6310.0,0.32195670685578265 -6311.0,0.3218455261500463 -6312.0,0.3217343838381344 -6313.0,0.3216232799067888 -6314.0,0.3215122143427553 -6315.0,0.32140118713278476 -6316.0,0.32129019826363237 -6317.0,0.32117924772205797 -6318.0,0.3210683354948261 -6319.0,0.3209574615687056 -6320.0,0.3208466259304701 -6321.0,0.3207358285668976 -6322.0,0.3206250694647709 -6323.0,0.32051434861087713 -6324.0,0.3204036659920083 -6325.0,0.32029302159496054 -6326.0,0.32018241540653497 -6327.0,0.32007184741353695 -6328.0,0.31996131760277663 -6329.0,0.3198508259610685 -6330.0,0.31974037247523185 -6331.0,0.31962995713209025 -6332.0,0.319519579918472 -6333.0,0.3194092408212099 -6334.0,0.3192989398271414 -6335.0,0.31918867692310826 -6336.0,0.3190784520959569 -6337.0,0.31896826533253847 -6338.0,0.3188581166197083 -6339.0,0.3187480059443266 -6340.0,0.3186379332932579 -6341.0,0.3185278986533714 -6342.0,0.31841790201154063 -6343.0,0.31830794335464396 -6344.0,0.318198022669564 -6345.0,0.3180881399431881 -6346.0,0.3179782951624079 -6347.0,0.31786848831411996 -6348.0,0.3177587193852249 -6349.0,0.3176489883626282 -6350.0,0.31753929523323976 -6351.0,0.31742963998397394 -6352.0,0.3173200226017497 -6353.0,0.31721044307349044 -6354.0,0.3171009013861242 -6355.0,0.31699139752658334 -6356.0,0.316881931481805 -6357.0,0.31677250323873046 -6358.0,0.31666311278430603 -6359.0,0.3165537601054819 -6360.0,0.31644444518921344 -6361.0,0.3163351680224598 -6362.0,0.31622592859218535 -6363.0,0.3161167268853584 -6364.0,0.3160075628889521 -6365.0,0.3158984365899439 -6366.0,0.3157893479753159 -6367.0,0.3156802970320545 -6368.0,0.31557128374715093 -6369.0,0.3154623081076005 -6370.0,0.3153533701004033 -6371.0,0.3152444697125638 -6372.0,0.31513560693109105 -6373.0,0.31502678174299836 -6374.0,0.3149179941353038 -6375.0,0.3148092440950298 -6376.0,0.3147005316092032 -6377.0,0.3145918566648555 -6378.0,0.31448321924902245 -6379.0,0.3143746193487445 -6380.0,0.31426605695106635 -6381.0,0.3141575320430375 -6382.0,0.31404904461171146 -6383.0,0.3139405946441467 -6384.0,0.31383218212740577 -6385.0,0.313723807048556 -6386.0,0.3136154693946689 -6387.0,0.3135071691528207 -6388.0,0.31339890631009176 -6389.0,0.3132906808535673 -6390.0,0.3131824927703368 -6391.0,0.3130743420474942 -6392.0,0.31296622867213775 -6393.0,0.31285815263137046 -6394.0,0.31275011391229973 -6395.0,0.31264211250203716 -6396.0,0.3125341483876991 -6397.0,0.31242622155640604 -6398.0,0.3123183319952833 -6399.0,0.3122104796914603 -6400.0,0.3121026646320712 -6401.0,0.31199488680425425 -6402.0,0.31188714619515245 -6403.0,0.3117794427919131 -6404.0,0.3116717765816881 -6405.0,0.3115641475516334 -6406.0,0.3114565556889099 -6407.0,0.31134900098068247 -6408.0,0.3112414834141208 -6409.0,0.31113400297639865 -6410.0,0.31102655965469456 -6411.0,0.31091915343619114 -6412.0,0.31081178430807577 -6413.0,0.31070445225754006 -6414.0,0.31059715727178 -6415.0,0.3104898993379962 -6416.0,0.31038267844339346 -6417.0,0.31027549457518117 -6418.0,0.31016834772057306 -6419.0,0.3100612378667873 -6420.0,0.30995416500104644 -6421.0,0.30984712911057755 -6422.0,0.3097401301826119 -6423.0,0.3096331682043854 -6424.0,0.30952624316313815 -6425.0,0.30941935504611495 -6426.0,0.3093125038405647 -6427.0,0.3092056895337409 -6428.0,0.30909891211290125 -6429.0,0.3089921715653081 -6430.0,0.30888546787822807 -6431.0,0.3087788010389321 -6432.0,0.30867217103469585 -6433.0,0.3085655778527988 -6434.0,0.30845902148052545 -6435.0,0.3083525019051642 -6436.0,0.3082460191140083 -6437.0,0.30813957309435475 -6438.0,0.30803316383350565 -6439.0,0.307926791318767 -6440.0,0.30782045553744936 -6441.0,0.3077141564768676 -6442.0,0.30760789412434114 -6443.0,0.3075016684671935 -6444.0,0.30739547949275287 -6445.0,0.30728932718835156 -6446.0,0.3071832115413265 -6447.0,0.30707713253901875 -6448.0,0.306971090168774 -6449.0,0.30686508441794197 -6450.0,0.30675911527387706 -6451.0,0.30665318272393804 -6452.0,0.3065472867554877 -6453.0,0.3064414273558936 -6454.0,0.30633560451252734 -6455.0,0.3062298182127652 -6456.0,0.3061240684439875 -6457.0,0.3060183551935791 -6458.0,0.3059126784489292 -6459.0,0.3058070381974314 -6460.0,0.3057014344264834 -6461.0,0.3055958671234877 -6462.0,0.3054903362758506 -6463.0,0.3053848418709833 -6464.0,0.3052793838963009 -6465.0,0.30517396233922317 -6466.0,0.30506857718717395 -6467.0,0.3049632284275817 -6468.0,0.30485791604787893 -6469.0,0.3047526400355028 -6470.0,0.30464740037789456 -6471.0,0.30454219706249985 -6472.0,0.3044370300767688 -6473.0,0.30433189940815564 -6474.0,0.3042268050441192 -6475.0,0.30412174697212224 -6476.0,0.30401672517963235 -6477.0,0.303911739654121 -6478.0,0.30380679038306435 -6479.0,0.3037018773539426 -6480.0,0.30359700055424044 -6481.0,0.3034921599714468 -6482.0,0.303387355593055 -6483.0,0.3032825874065626 -6484.0,0.3031778553994716 -6485.0,0.30307315955928815 -6486.0,0.30296849987352287 -6487.0,0.3028638763296905 -6488.0,0.3027592889153103 -6489.0,0.3026547376179058 -6490.0,0.3025502224250047 -6491.0,0.3024457433241392 -6492.0,0.30234130030284556 -6493.0,0.3022368933486647 -6494.0,0.3021325224491414 -6495.0,0.30202818759182515 -6496.0,0.30192388876426945 -6497.0,0.3018196259540323 -6498.0,0.3017153991486758 -6499.0,0.30161120833576655 -6500.0,0.30150705350287527 -6501.0,0.30140293463757717 -6502.0,0.30129885172745147 -6503.0,0.3011948047600819 -6504.0,0.30109079372305647 -6505.0,0.3009868186039674 -6506.0,0.30088287939041114 -6507.0,0.30077897606998855 -6508.0,0.3006751086303048 -6509.0,0.3005712770589691 -6510.0,0.3004674813435953 -6511.0,0.30036372147180107 -6512.0,0.3002599974312089 -6513.0,0.300156309209445 -6514.0,0.3000526567941404 -6515.0,0.2999490401729299 -6516.0,0.29984545933345286 -6517.0,0.29974191426335284 -6518.0,0.2996384049502777 -6519.0,0.2995349313818795 -6520.0,0.2994314935458146 -6521.0,0.2993280914297436 -6522.0,0.29922472502133146 -6523.0,0.2991213943082472 -6524.0,0.29901809927816436 -6525.0,0.2989148399187605 -6526.0,0.2988116162177175 -6527.0,0.29870842816272164 -6528.0,0.2986052757414633 -6529.0,0.2985021589416371 -6530.0,0.29839907775094193 -6531.0,0.2982960321570811 -6532.0,0.2981930221477619 -6533.0,0.298090047710696 -6534.0,0.29798710883359936 -6535.0,0.2978842055041921 -6536.0,0.2977813377101985 -6537.0,0.2976785054393473 -6538.0,0.29757570867937133 -6539.0,0.2974729474180077 -6540.0,0.2973702216429977 -6541.0,0.29726753134208694 -6542.0,0.29716487650302514 -6543.0,0.2970622571135665 -6544.0,0.29695967316146904 -6545.0,0.2968571246344954 -6546.0,0.29675461152041227 -6547.0,0.29665213380699046 -6548.0,0.29654969148200533 -6549.0,0.2964472845332361 -6550.0,0.2963449129484665 -6551.0,0.29624257671548415 -6552.0,0.2961402758220813 -6553.0,0.29603801025605403 -6554.0,0.29593578000520293 -6555.0,0.29583358505733254 -6556.0,0.29573142540025193 -6557.0,0.295629301021774 -6558.0,0.29552721190971626 -6559.0,0.2954251580519 -6560.0,0.2953231394361511 -6561.0,0.2952211560502994 -6562.0,0.29511920788217916 -6563.0,0.2950172949196285 -6564.0,0.29491541715049013 -6565.0,0.2948135745626107 -6566.0,0.29471176714384106 -6567.0,0.2946099948820365 -6568.0,0.2945082577650561 -6569.0,0.29440655578076363 -6570.0,0.2943048889170266 -6571.0,0.29420325716171697 -6572.0,0.29410166050271075 -6573.0,0.29400009892788825 -6574.0,0.2938985724251339 -6575.0,0.2937970809823363 -6576.0,0.2936956245873883 -6577.0,0.29359420322818697 -6578.0,0.2934928168926333 -6579.0,0.29339146556863277 -6580.0,0.2932901492440948 -6581.0,0.29318886790693327 -6582.0,0.29308762154506585 -6583.0,0.2929864101464147 -6584.0,0.29288523369890607 -6585.0,0.29278409219047025 -6586.0,0.2926829856090419 -6587.0,0.29258191394255956 -6588.0,0.29248087717896637 -6589.0,0.2923798753062092 -6590.0,0.29227890831223935 -6591.0,0.2921779761850121 -6592.0,0.29207707891248713 -6593.0,0.29197621648262795 -6594.0,0.2918753888834026 -6595.0,0.2917745961027829 -6596.0,0.29167383812874514 -6597.0,0.2915731149492696 -6598.0,0.2914724265523407 -6599.0,0.291371772925947 -6600.0,0.2912711540580814 -6601.0,0.2911705699367407 -6602.0,0.29107002054992587 -6603.0,0.29096950588564235 -6604.0,0.2908690259318993 -6605.0,0.2907685806767102 -6606.0,0.29066817010809265 -6607.0,0.29056779421406853 -6608.0,0.2904674529826635 -6609.0,0.29036714640190786 -6610.0,0.2902668744598355 -6611.0,0.290166637144485 -6612.0,0.29006643444389846 -6613.0,0.28996626634612266 -6614.0,0.2898661328392081 -6615.0,0.28976603391120975 -6616.0,0.2896659695501865 -6617.0,0.2895659397442013 -6618.0,0.2894659444813214 -6619.0,0.28936598374961814 -6620.0,0.2892660575371668 -6621.0,0.28916616583204696 -6622.0,0.2890663086223424 -6623.0,0.2889664858961407 -6624.0,0.28886669764153394 -6625.0,0.2887669438466179 -6626.0,0.2886672244994928 -6627.0,0.28856753958826276 -6628.0,0.2884678891010362 -6629.0,0.28836827302592544 -6630.0,0.28826869135104716 -6631.0,0.2881691440645218 -6632.0,0.28806963115447426 -6633.0,0.28797015260903325 -6634.0,0.28787070841633183 -6635.0,0.2877712985645069 -6636.0,0.2876719230416997 -6637.0,0.2875725818360554 -6638.0,0.28747327493572333 -6639.0,0.28737400232885685 -6640.0,0.2872747640036135 -6641.0,0.28717555994815497 -6642.0,0.2870763901506468 -6643.0,0.2869772545992588 -6644.0,0.2868781532821648 -6645.0,0.28677908618754283 -6646.0,0.2866800533035748 -6647.0,0.2865810546184469 -6648.0,0.2864820901203492 -6649.0,0.2863831597974761 -6650.0,0.2862842636380257 -6651.0,0.28618540163020073 -6652.0,0.28608657376220736 -6653.0,0.2859877800222564 -6654.0,0.2858890203985623 -6655.0,0.2857902948793439 -6656.0,0.28569160345282374 -6657.0,0.28559294610722896 -6658.0,0.2854943228307902 -6659.0,0.28539573361174253 -6660.0,0.28529717843832497 -6661.0,0.28519865729878063 -6662.0,0.28510017018135664 -6663.0,0.2850017170743041 -6664.0,0.2849032979658785 -6665.0,0.2848049128443389 -6666.0,0.2847065616979489 -6667.0,0.2846082445149758 -6668.0,0.2845099612836911 -6669.0,0.28441171199237025 -6670.0,0.284313496629293 -6671.0,0.2842153151827428 -6672.0,0.2841171676410075 -6673.0,0.2840190539923786 -6674.0,0.283920974225152 -6675.0,0.2838229283276274 -6676.0,0.2837249162881088 -6677.0,0.2836269380949039 -6678.0,0.28352899373632473 -6679.0,0.2834310832006873 -6680.0,0.28333320647631133 -6681.0,0.2832353635515212 -6682.0,0.2831375544146446 -6683.0,0.28303977905401395 -6684.0,0.2829420374579651 -6685.0,0.2828443296148384 -6686.0,0.2827466555129778 -6687.0,0.2826490151407317 -6688.0,0.2825514084864521 -6689.0,0.2824538355384955 -6690.0,0.2823562962852219 -6691.0,0.28225879071499577 -6692.0,0.2821613188161853 -6693.0,0.28206388057716286 -6694.0,0.2819664759863047 -6695.0,0.28186910503199125 -6696.0,0.2817717677026068 -6697.0,0.2816744639865397 -6698.0,0.2815771938721825 -6699.0,0.2814799573479314 -6700.0,0.28138275440218685 -6701.0,0.28128558502335327 -6702.0,0.28118844919983904 -6703.0,0.2810913469200565 -6704.0,0.2809942781724222 -6705.0,0.28089724294535634 -6706.0,0.2808002412272836 -6707.0,0.2807032730066321 -6708.0,0.28060633827183445 -6709.0,0.2805094370113269 -6710.0,0.28041256921355 -6711.0,0.28031573486694794 -6712.0,0.2802189339599692 -6713.0,0.28012216648106614 -6714.0,0.28002543241869504 -6715.0,0.2799287317613163 -6716.0,0.2798320644973941 -6717.0,0.279735430615397 -6718.0,0.27963883010379703 -6719.0,0.27954226295107065 -6720.0,0.27944572914569793 -6721.0,0.2793492286761632 -6722.0,0.2792527615309546 -6723.0,0.27915632769856435 -6724.0,0.2790599271674885 -6725.0,0.27896355992622734 -6726.0,0.27886722596328484 -6727.0,0.27877092526716907 -6728.0,0.27867465782639206 -6729.0,0.2785784236294699 -6730.0,0.27848222266492234 -6731.0,0.27838605492127355 -6732.0,0.2782899203870512 -6733.0,0.2781938190507874 -6734.0,0.2780977509010177 -6735.0,0.2780017159262819 -6736.0,0.277905714115124 -6737.0,0.27780974545609133 -6738.0,0.2777138099377358 -6739.0,0.2776179075486128 -6740.0,0.2775220382772821 -6741.0,0.27742620211230695 -6742.0,0.277330399042255 -6743.0,0.27723462905569746 -6744.0,0.2771388921412098 -6745.0,0.27704318828737123 -6746.0,0.2769475174827651 -6747.0,0.27685187971597836 -6748.0,0.27675627497560235 -6749.0,0.27666070325023195 -6750.0,0.2765651645284663 -6751.0,0.27646965879890817 -6752.0,0.2763741860501646 -6753.0,0.2762787462708462 -6754.0,0.2761833394495678 -6755.0,0.27608796557494814 -6756.0,0.2759926246356096 -6757.0,0.2758973166201789 -6758.0,0.27580204151728643 -6759.0,0.2757067993155665 -6760.0,0.2756115900036575 -6761.0,0.2755164135702016 -6762.0,0.275421270003845 -6763.0,0.27532615929323767 -6764.0,0.2752310814270336 -6765.0,0.2751360363938909 -6766.0,0.27504102418247106 -6767.0,0.27494604478144014 -6768.0,0.2748510981794675 -6769.0,0.274756184365227 -6770.0,0.2746613033273958 -6771.0,0.27456645505465554 -6772.0,0.27447163953569137 -6773.0,0.27437685675919254 -6774.0,0.27428210671385217 -6775.0,0.27418738938836723 -6776.0,0.2740927047714387 -6777.0,0.2739980528517713 -6778.0,0.27390343361807384 -6779.0,0.27380884705905884 -6780.0,0.2737142931634429 -6781.0,0.27361977191994635 -6782.0,0.2735252833172936 -6783.0,0.2734308273442127 -6784.0,0.2733364039894359 -6785.0,0.2732420132416991 -6786.0,0.2731476550897422 -6787.0,0.2730533295223089 -6788.0,0.2729590365281469 -6789.0,0.27286477609600773 -6790.0,0.27277054821464686 -6791.0,0.27267635287282344 -6792.0,0.27258219005930073 -6793.0,0.27248805976284585 -6794.0,0.2723939619722297 -6795.0,0.27229989667622717 -6796.0,0.2722058638636168 -6797.0,0.2721118635231813 -6798.0,0.272017895643707 -6799.0,0.27192396021398435 -6800.0,0.2718300572228074 -6801.0,0.2717361866589743 -6802.0,0.27164234851128694 -6803.0,0.27154854276855117 -6804.0,0.2714547694195765 -6805.0,0.27136102845317667 -6806.0,0.2712673198581689 -6807.0,0.2711736436233745 -6808.0,0.27107999973761854 -6809.0,0.2709863881897301 -6810.0,0.2708928089685418 -6811.0,0.27079926206289046 -6812.0,0.2707057474616167 -6813.0,0.27061226515356473 -6814.0,0.2705188151275829 -6815.0,0.27042539737252325 -6816.0,0.27033201187724176 -6817.0,0.2702386586305982 -6818.0,0.2701453376214562 -6819.0,0.2700520488386833 -6820.0,0.26995879227115077 -6821.0,0.2698655679077338 -6822.0,0.2697723757373114 -6823.0,0.2696792157487664 -6824.0,0.2695860879309856 -6825.0,0.26949299227285933 -6826.0,0.2693999287632822 -6827.0,0.2693068973911522 -6828.0,0.2692138981453715 -6829.0,0.2691209310148459 -6830.0,0.2690279959884851 -6831.0,0.2689350930552027 -6832.0,0.26884222220391596 -6833.0,0.26874938342354615 -6834.0,0.26865657670301824 -6835.0,0.26856380203126107 -6836.0,0.2684710593972073 -6837.0,0.2683783487897934 -6838.0,0.2682856701979596 -6839.0,0.26819302361065017 -6840.0,0.268100409016813 -6841.0,0.2680078264053998 -6842.0,0.26791527576536606 -6843.0,0.2678227570856714 -6844.0,0.2677302703552788 -6845.0,0.26763781556315536 -6846.0,0.2675453926982719 -6847.0,0.267453001749603 -6848.0,0.2673606427061271 -6849.0,0.26726831555682645 -6850.0,0.26717602029068716 -6851.0,0.267083756896699 -6852.0,0.2669915253638557 -6853.0,0.26689932568115454 -6854.0,0.266807157837597 -6855.0,0.2667150218221879 -6856.0,0.2666229176239363 -6857.0,0.26653084523185466 -6858.0,0.26643880463495956 -6859.0,0.2663467958222711 -6860.0,0.2662548187828134 -6861.0,0.2661628735056142 -6862.0,0.26607095997970515 -6863.0,0.2659790781941216 -6864.0,0.2658872281379028 -6865.0,0.26579540980009153 -6866.0,0.2657036231697347 -6867.0,0.2656118682358828 -6868.0,0.2655201449875901 -6869.0,0.2654284534139147 -6870.0,0.2653367935039184 -6871.0,0.265245165246667 -6872.0,0.26515356863122985 -6873.0,0.2650620036466801 -6874.0,0.26497047028209464 -6875.0,0.2648789685265544 -6876.0,0.2647874983691437 -6877.0,0.264696059798951 -6878.0,0.2646046528050682 -6879.0,0.26451327737659114 -6880.0,0.26442193350261944 -6881.0,0.2643306211722564 -6882.0,0.26423934037460917 -6883.0,0.2641480910987886 -6884.0,0.26405687333390926 -6885.0,0.2639656870690896 -6886.0,0.26387453229345176 -6887.0,0.2637834089961216 -6888.0,0.2636923171662289 -6889.0,0.26360125679290686 -6890.0,0.2635102278652928 -6891.0,0.26341923037252757 -6892.0,0.26332826430375583 -6893.0,0.263237329648126 -6894.0,0.26314642639479036 -6895.0,0.2630555545329046 -6896.0,0.26296471405162847 -6897.0,0.26287390494012536 -6898.0,0.26278312718756247 -6899.0,0.2626923807831106 -6900.0,0.26260166571594434 -6901.0,0.2625109819752421 -6902.0,0.26242032955018596 -6903.0,0.2623297084299617 -6904.0,0.26223911860375904 -6905.0,0.26214856006077103 -6906.0,0.2620580327901949 -6907.0,0.2619675367812313 -6908.0,0.26187707202308474 -6909.0,0.2617866385049635 -6910.0,0.2616962362160794 -6911.0,0.2616058651456482 -6912.0,0.26151552528288924 -6913.0,0.26142521661702567 -6914.0,0.2613349391372843 -6915.0,0.26124469283289564 -6916.0,0.2611544776930941 -6917.0,0.26106429370711753 -6918.0,0.26097414086420767 -6919.0,0.26088401915361004 -6920.0,0.2607939285645737 -6921.0,0.26070386908635146 -6922.0,0.26061384070819993 -6923.0,0.2605238434193794 -6924.0,0.2604338772091538 -6925.0,0.2603439420667908 -6926.0,0.2602540379815619 -6927.0,0.2601641649427421 -6928.0,0.26007432293961025 -6929.0,0.25998451196144884 -6930.0,0.2598947319975441 -6931.0,0.25980498303718585 -6932.0,0.2597152650696678 -6933.0,0.25962557808428716 -6934.0,0.25953592207034504 -6935.0,0.259446297017146 -6936.0,0.25935670291399854 -6937.0,0.2592671397502146 -6938.0,0.2591776075151101 -6939.0,0.2590881061980044 -6940.0,0.2589986357882207 -6941.0,0.25890919627508574 -6942.0,0.2588197876479302 -6943.0,0.2587304098960881 -6944.0,0.25864106300889744 -6945.0,0.25855174697569977 -6946.0,0.2584624617858403 -6947.0,0.25837320742866804 -6948.0,0.2582839838935355 -6949.0,0.25819479116979904 -6950.0,0.25810562924681857 -6951.0,0.25801649811395777 -6952.0,0.2579273977605838 -6953.0,0.2578383281760679 -6954.0,0.2577492893497844 -6955.0,0.25766028127111196 -6956.0,0.2575713039294323 -6957.0,0.25748235731413116 -6958.0,0.25739344141459786 -6959.0,0.2573045562202254 -6960.0,0.25721570172041036 -6961.0,0.25712687790455313 -6962.0,0.25703808476205764 -6963.0,0.25694932228233147 -6964.0,0.256860590454786 -6965.0,0.25677188926883604 -6966.0,0.2566832187139004 -6967.0,0.25659457877940106 -6968.0,0.2565059694547641 -6969.0,0.25641739072941905 -6970.0,0.2563288425927991 -6971.0,0.256240325034341 -6972.0,0.25615183804348546 -6973.0,0.2560633816096764 -6974.0,0.25597495572236184 -6975.0,0.255886560370993 -6976.0,0.25579819554502514 -6977.0,0.2557098612339168 -6978.0,0.25562155742713055 -6979.0,0.25553328411413223 -6980.0,0.25544504128439155 -6981.0,0.2553568289273817 -6982.0,0.2552686470325797 -6983.0,0.25518049558946604 -6984.0,0.2550923745875249 -6985.0,0.2550042840162441 -6986.0,0.254916223865115 -6987.0,0.2548281941236328 -6988.0,0.25474019478129606 -6989.0,0.2546522258276072 -6990.0,0.25456428725207214 -6991.0,0.25447637904420045 -6992.0,0.25438850119350526 -6993.0,0.2543006536895035 -6994.0,0.25421283652171545 -6995.0,0.2541250496796653 -6996.0,0.25403729315288065 -6997.0,0.2539495669308928 -6998.0,0.25386187100323665 -6999.0,0.2537742053594508 -7000.0,0.2536865699890772 -7001.0,0.25359896488166167 -7002.0,0.25351139002675366 -7003.0,0.253423845413906 -7004.0,0.25333633103267533 -7005.0,0.2532488468726218 -7006.0,0.25316139292330914 -7007.0,0.2530739691743048 -7008.0,0.25298657561517973 -7009.0,0.2528992122355085 -7010.0,0.2528118790248694 -7011.0,0.25272457597284403 -7012.0,0.25263730306901794 -7013.0,0.25255006030298 -7014.0,0.2524628476643229 -7015.0,0.25237566514264265 -7016.0,0.25228851272753916 -7017.0,0.25220139040861567 -7018.0,0.25211429817547926 -7019.0,0.2520272360177403 -7020.0,0.25194020392501293 -7021.0,0.251853201886915 -7022.0,0.2517662298930677 -7023.0,0.2516792879330959 -7024.0,0.2515923759966281 -7025.0,0.2515054940732963 -7026.0,0.2514186421527361 -7027.0,0.2513318202245868 -7028.0,0.25124502827849104 -7029.0,0.2511582663040953 -7030.0,0.2510715342910494 -7031.0,0.25098483222900697 -7032.0,0.25089816010762495 -7033.0,0.2508115179165641 -7034.0,0.2507249056454885 -7035.0,0.2506383232840661 -7036.0,0.2505517708219681 -7037.0,0.2504652482488696 -7038.0,0.25037875555444894 -7039.0,0.2502922927283882 -7040.0,0.25020585976037313 -7041.0,0.2501194566400927 -7042.0,0.2500330833572398 -7043.0,0.24994673990151062 -7044.0,0.24986042626260513 -7045.0,0.2497741424302266 -7046.0,0.24968788839408215 -7047.0,0.24960166414388216 -7048.0,0.24951546966934085 -7049.0,0.24942930496017568 -7050.0,0.249343170006108 -7051.0,0.2492570647968624 -7052.0,0.24917098932216727 -7053.0,0.24908494357175434 -7054.0,0.24899892753535904 -7055.0,0.24891294120272026 -7056.0,0.24882698456358046 -7057.0,0.2487410576076856 -7058.0,0.24865516032478527 -7059.0,0.2485692927046326 -7060.0,0.24848345473698408 -7061.0,0.24839764641159998 -7062.0,0.24831186771824393 -7063.0,0.2482261186466832 -7064.0,0.24814039918668848 -7065.0,0.24805470932803417 -7066.0,0.24796904906049796 -7067.0,0.24788341837386135 -7068.0,0.2477978172579091 -7069.0,0.24771224570242972 -7070.0,0.24762670369721504 -7071.0,0.24754119123206064 -7072.0,0.24745570829676541 -7073.0,0.24737025488113196 -7074.0,0.2472848309749662 -7075.0,0.24719943656807777 -7076.0,0.24711407165027968 -7077.0,0.24702873621138854 -7078.0,0.24694343024122453 -7079.0,0.24685815372961112 -7080.0,0.2467729066663756 -7081.0,0.2466876890413485 -7082.0,0.24660250084436405 -7083.0,0.24651734206525985 -7084.0,0.24643221269387716 -7085.0,0.2463471127200606 -7086.0,0.24626204213365843 -7087.0,0.24617700092452224 -7088.0,0.24609198908250737 -7089.0,0.2460070065974724 -7090.0,0.24592205345927967 -7091.0,0.24583712965779475 -7092.0,0.245752235182887 -7093.0,0.24566737002442895 -7094.0,0.24558253417229697 -7095.0,0.24549772761637065 -7096.0,0.24541295034653324 -7097.0,0.24532820235267144 -7098.0,0.24524348362467538 -7099.0,0.24515879415243882 -7100.0,0.24507413392585883 -7101.0,0.24498950293483612 -7102.0,0.2449049011692748 -7103.0,0.24482032861908254 -7104.0,0.24473578527417034 -7105.0,0.24465127112445295 -7106.0,0.24456678615984834 -7107.0,0.2444823303702781 -7108.0,0.24439790374566728 -7109.0,0.24431350627594442 -7110.0,0.24422913795104143 -7111.0,0.2441447987608939 -7112.0,0.24406048869544067 -7113.0,0.24397620774462428 -7114.0,0.2438919558983905 -7115.0,0.24380773314668874 -7116.0,0.24372353947947195 -7117.0,0.24363937488669626 -7118.0,0.24355523935832163 -7119.0,0.24347113288431116 -7120.0,0.24338705545463166 -7121.0,0.2433030070592532 -7122.0,0.24321898768814953 -7123.0,0.24313499733129765 -7124.0,0.24305103597867825 -7125.0,0.24296710362027513 -7126.0,0.24288320024607607 -7127.0,0.24279932584607178 -7128.0,0.24271548041025678 -7129.0,0.24263166392862884 -7130.0,0.24254787639118935 -7131.0,0.24246411778794294 -7132.0,0.24238038810889798 -7133.0,0.24229668734406598 -7134.0,0.2422130154834622 -7135.0,0.242129372517105 -7136.0,0.24204575843501658 -7137.0,0.24196217322722227 -7138.0,0.24187861688375104 -7139.0,0.24179508939463512 -7140.0,0.24171159074991042 -7141.0,0.24162812093961605 -7142.0,0.24154467995379478 -7143.0,0.24146126778249258 -7144.0,0.24137788441575905 -7145.0,0.24129452984364722 -7146.0,0.2412112040562134 -7147.0,0.24112790704351753 -7148.0,0.24104463879562274 -7149.0,0.2409613993025959 -7150.0,0.24087818855450702 -7151.0,0.24079500654142977 -7152.0,0.24071185325344102 -7153.0,0.24062872868062132 -7154.0,0.24054563281305438 -7155.0,0.2404625656408276 -7156.0,0.24037952715403155 -7157.0,0.24029651734276045 -7158.0,0.24021353619711175 -7159.0,0.24013058370718648 -7160.0,0.24004765986308896 -7161.0,0.239964764654927 -7162.0,0.23988189807281177 -7163.0,0.23979906010685792 -7164.0,0.23971625074718356 -7165.0,0.23963346998390997 -7166.0,0.2395507178071622 -7167.0,0.23946799420706832 -7168.0,0.2393852991737602 -7169.0,0.23930263269737276 -7170.0,0.23921999476804465 -7171.0,0.2391373853759176 -7172.0,0.23905480451113706 -7173.0,0.23897225216385162 -7174.0,0.23888972832421349 -7175.0,0.23880723298237808 -7176.0,0.23872476612850438 -7177.0,0.23864232775275462 -7178.0,0.2385599178452946 -7179.0,0.23847753639629327 -7180.0,0.2383951833959233 -7181.0,0.23831285883436043 -7182.0,0.238230562701784 -7183.0,0.23814829498837675 -7184.0,0.2380660556843246 -7185.0,0.23798384477981713 -7186.0,0.23790166226504708 -7187.0,0.23781950813021077 -7188.0,0.2377373823655077 -7189.0,0.237655284961141 -7190.0,0.23757321590731692 -7191.0,0.2374911751942453 -7192.0,0.23740916281213922 -7193.0,0.23732717875121528 -7194.0,0.2372452230016933 -7195.0,0.23716329555379662 -7196.0,0.2370813963977518 -7197.0,0.23699952552378903 -7198.0,0.23691768292214152 -7199.0,0.2368358685830462 -7200.0,0.23675408249674312 -7201.0,0.23667232465347582 -7202.0,0.23659059504349125 -7203.0,0.23650889365703953 -7204.0,0.23642722048437445 -7205.0,0.23634557551575283 -7206.0,0.23626395874143516 -7207.0,0.23618237015168503 -7208.0,0.23610080973676964 -7209.0,0.2360192774869593 -7210.0,0.23593777339252792 -7211.0,0.23585629744375256 -7212.0,0.23577484963091383 -7213.0,0.23569342994429548 -7214.0,0.2356120383741849 -7215.0,0.23553067491087248 -7216.0,0.2354493395446523 -7217.0,0.23536803226582156 -7218.0,0.23528675306468097 -7219.0,0.23520550193153442 -7220.0,0.23512427885668927 -7221.0,0.23504308383045627 -7222.0,0.23496191684314935 -7223.0,0.234880777885086 -7224.0,0.23479966694658677 -7225.0,0.23471858401797588 -7226.0,0.2346375290895806 -7227.0,0.23455650215173177 -7228.0,0.23447550319476337 -7229.0,0.2343945322090129 -7230.0,0.23431358918482104 -7231.0,0.23423267411253196 -7232.0,0.23415178698249298 -7233.0,0.23407092778505495 -7234.0,0.23399009651057187 -7235.0,0.2339092931494013 -7236.0,0.23382851769190377 -7237.0,0.23374777012844358 -7238.0,0.23366705044938796 -7239.0,0.23358635864510774 -7240.0,0.23350569470597698 -7241.0,0.23342505862237298 -7242.0,0.23334445038467655 -7243.0,0.23326386998327162 -7244.0,0.23318331740854562 -7245.0,0.23310279265088912 -7246.0,0.2330222957006962 -7247.0,0.23294182654836407 -7248.0,0.23286138518429345 -7249.0,0.23278097159888816 -7250.0,0.23270058578255554 -7251.0,0.23262022772570606 -7252.0,0.2325398974187537 -7253.0,0.2324595948521155 -7254.0,0.2323793200162121 -7255.0,0.23229907290146717 -7256.0,0.2322188534983079 -7257.0,0.23213866179716464 -7258.0,0.23205849778847112 -7259.0,0.23197836146266443 -7260.0,0.23189825281018478 -7261.0,0.2318181718214759 -7262.0,0.23173811848698458 -7263.0,0.2316580927971612 -7264.0,0.23157809474245913 -7265.0,0.2314981243133353 -7266.0,0.23141818150024973 -7267.0,0.2313382662936659 -7268.0,0.23125837868405044 -7269.0,0.23117851866187344 -7270.0,0.23109868621760804 -7271.0,0.23101888134173096 -7272.0,0.23093910402472193 -7273.0,0.23085935425706422 -7274.0,0.23077963202924412 -7275.0,0.2306999373317515 -7276.0,0.23062027015507927 -7277.0,0.2305406304897237 -7278.0,0.23046101832618446 -7279.0,0.2303814336549643 -7280.0,0.23030187646656944 -7281.0,0.23022234675150918 -7282.0,0.23014284450029632 -7283.0,0.2300633697034467 -7284.0,0.22998392235147966 -7285.0,0.22990450243491764 -7286.0,0.22982510994428648 -7287.0,0.22974574487011518 -7288.0,0.22966640720293613 -7289.0,0.22958709693328483 -7290.0,0.22950781405170023 -7291.0,0.2294285585487244 -7292.0,0.22934933041490282 -7293.0,0.22927012964078405 -7294.0,0.22919095621692012 -7295.0,0.2291118101338661 -7296.0,0.2290326913821805 -7297.0,0.2289535999524251 -7298.0,0.2288745358351647 -7299.0,0.2287954990209677 -7300.0,0.22871648950040546 -7301.0,0.22863750726405282 -7302.0,0.2285585523024877 -7303.0,0.2284796246062914 -7304.0,0.22840072416604834 -7305.0,0.2283218509723464 -7306.0,0.22824300501577643 -7307.0,0.22816418628693283 -7308.0,0.228085394776413 -7309.0,0.22800663047481773 -7310.0,0.227927893372751 -7311.0,0.22784918346082006 -7312.0,0.22777050072963537 -7313.0,0.2276918451698107 -7314.0,0.22761321677196295 -7315.0,0.22753461552671234 -7316.0,0.22745604142468237 -7317.0,0.22737749445649966 -7318.0,0.2272989746127942 -7319.0,0.22722048188419905 -7320.0,0.2271420162613507 -7321.0,0.22706357773488867 -7322.0,0.2269851662954559 -7323.0,0.22690678193369843 -7324.0,0.22682842464026562 -7325.0,0.22675009440580993 -7326.0,0.22667179122098727 -7327.0,0.2265935150764565 -7328.0,0.22651526596287996 -7329.0,0.226437043870923 -7330.0,0.22635884879125442 -7331.0,0.226280680714546 -7332.0,0.2262025396314729 -7333.0,0.22612442553271345 -7334.0,0.22604633840894922 -7335.0,0.22596827825086502 -7336.0,0.22589024504914876 -7337.0,0.22581223879449175 -7338.0,0.2257342594775883 -7339.0,0.22565630708913614 -7340.0,0.22557838161983607 -7341.0,0.22550048306039217 -7342.0,0.22542261140151168 -7343.0,0.22534476663390512 -7344.0,0.22526694874828615 -7345.0,0.22518915773537168 -7346.0,0.22511139358588178 -7347.0,0.22503365629053979 -7348.0,0.22495594584007217 -7349.0,0.2248782622252087 -7350.0,0.22480060543668223 -7351.0,0.22472297546522893 -7352.0,0.22464537230158801 -7353.0,0.22456779593650206 -7354.0,0.22449024636071682 -7355.0,0.22441272356498107 -7356.0,0.22433522754004703 -7357.0,0.2242577582766699 -7358.0,0.22418031576560823 -7359.0,0.22410289999762362 -7360.0,0.224025510963481 -7361.0,0.22394814865394835 -7362.0,0.22387081305979703 -7363.0,0.22379350417180133 -7364.0,0.22371622198073896 -7365.0,0.22363896647739065 -7366.0,0.22356173765254045 -7367.0,0.22348453549697547 -7368.0,0.2234073600014861 -7369.0,0.2233302111568658 -7370.0,0.22325308895391135 -7371.0,0.2231759933834226 -7372.0,0.22309892443620255 -7373.0,0.22302188210305757 -7374.0,0.22294486637479696 -7375.0,0.2228678772422334 -7376.0,0.22279091469618253 -7377.0,0.22271397872746337 -7378.0,0.22263706932689797 -7379.0,0.22256018648531167 -7380.0,0.2224833301935328 -7381.0,0.22240650044239307 -7382.0,0.22232969722272716 -7383.0,0.2222529205253731 -7384.0,0.2221761703411719 -7385.0,0.2220994466609679 -7386.0,0.22202274947560843 -7387.0,0.2219460787759442 -7388.0,0.22186943455282881 -7389.0,0.22179281679711932 -7390.0,0.22171622549967565 -7391.0,0.22163966065136106 -7392.0,0.221563122243042 -7393.0,0.22148661026558789 -7394.0,0.2214101247098715 -7395.0,0.22133366556676856 -7396.0,0.22125723282715815 -7397.0,0.2211808264819223 -7398.0,0.22110444652194644 -7399.0,0.22102809293811881 -7400.0,0.22095176572133116 -7401.0,0.22087546486247805 -7402.0,0.2207991903524575 -7403.0,0.22072294218217037 -7404.0,0.22064672034252092 -7405.0,0.2205705248244164 -7406.0,0.22049435561876723 -7407.0,0.22041821271648696 -7408.0,0.22034209610849237 -7409.0,0.2202660057857032 -7410.0,0.22018994173904252 -7411.0,0.22011390395943645 -7412.0,0.22003789243781416 -7413.0,0.2199619071651081 -7414.0,0.2198859481322537 -7415.0,0.2198100153301897 -7416.0,0.2197341087498578 -7417.0,0.21965822838220295 -7418.0,0.2195823742181731 -7419.0,0.2195065462487195 -7420.0,0.2194307444647963 -7421.0,0.21935496885736103 -7422.0,0.21927921941737413 -7423.0,0.2192034961357993 -7424.0,0.21912779900360324 -7425.0,0.2190521280117559 -7426.0,0.2189764831512302 -7427.0,0.21890086441300238 -7428.0,0.21882527178805153 -7429.0,0.2187497052673601 -7430.0,0.21867416484191357 -7431.0,0.21859865050270044 -7432.0,0.21852316224071247 -7433.0,0.21844770004694442 -7434.0,0.21837226391239423 -7435.0,0.21829685382806285 -7436.0,0.21822146978495452 -7437.0,0.21814611177407636 -7438.0,0.2180707797864388 -7439.0,0.2179954738130552 -7440.0,0.2179201938449422 -7441.0,0.21784493987311934 -7442.0,0.2177697118886095 -7443.0,0.21769450988243838 -7444.0,0.2176193338456351 -7445.0,0.21754418376923151 -7446.0,0.21746905964426294 -7447.0,0.21739396146176748 -7448.0,0.21731888921278655 -7449.0,0.2172438428883646 -7450.0,0.21716882247954905 -7451.0,0.21709382797739063 -7452.0,0.21701885937294296 -7453.0,0.21694391665726287 -7454.0,0.2168689998214102 -7455.0,0.21679410885644798 -7456.0,0.2167192437534422 -7457.0,0.21664440450346206 -7458.0,0.21656959109757973 -7459.0,0.21649480352687056 -7460.0,0.21642004178241286 -7461.0,0.21634530585528824 -7462.0,0.21627059573658108 -7463.0,0.21619591141737915 -7464.0,0.21612125288877307 -7465.0,0.21604662014185666 -7466.0,0.21597201316772674 -7467.0,0.21589743195748326 -7468.0,0.2158228765022293 -7469.0,0.2157483467930708 -7470.0,0.21567384282111704 -7471.0,0.21559936457748013 -7472.0,0.21552491205327545 -7473.0,0.2154504852396213 -7474.0,0.21537608412763912 -7475.0,0.2153017087084534 -7476.0,0.21522735897319167 -7477.0,0.21515303491298457 -7478.0,0.21507873651896584 -7479.0,0.21500446378227211 -7480.0,0.21493021669404327 -7481.0,0.21485599524542212 -7482.0,0.21478179942755468 -7483.0,0.2147076292315898 -7484.0,0.21463348464867965 -7485.0,0.21455936566997919 -7486.0,0.21448527228664663 -7487.0,0.21441120448984324 -7488.0,0.21433716227073313 -7489.0,0.21426314562048374 -7490.0,0.21418915453026532 -7491.0,0.21411518899125134 -7492.0,0.21404124899461818 -7493.0,0.21396733453154543 -7494.0,0.21389344559321555 -7495.0,0.21381958217081418 -7496.0,0.2137457442555299 -7497.0,0.21367193183855449 -7498.0,0.2135981449110825 -7499.0,0.21352438346431188 -7500.0,0.21345064748944326 -7501.0,0.2133769369776806 -7502.0,0.21330325192023064 -7503.0,0.21322959230830346 -7504.0,0.21315595813311186 -7505.0,0.21308234938587187 -7506.0,0.21300876605780256 -7507.0,0.21293520814012587 -7508.0,0.21286167562406696 -7509.0,0.21278816850085389 -7510.0,0.21271468676171784 -7511.0,0.21264123039789293 -7512.0,0.2125677994006164 -7513.0,0.2124943937611284 -7514.0,0.21242101347067222 -7515.0,0.2123476585204941 -7516.0,0.2122743289018434 -7517.0,0.2122010246059723 -7518.0,0.21212774562413628 -7519.0,0.21205449194759354 -7520.0,0.2119812635676056 -7521.0,0.21190806047543675 -7522.0,0.21183488266235445 -7523.0,0.21176173011962904 -7524.0,0.21168860283853402 -7525.0,0.21161550081034589 -7526.0,0.21154242402634396 -7527.0,0.21146937247781086 -7528.0,0.21139634615603198 -7529.0,0.21132334505229586 -7530.0,0.2112503691578939 -7531.0,0.21117741846412078 -7532.0,0.21110449296227388 -7533.0,0.21103159264365376 -7534.0,0.2109587174995639 -7535.0,0.21088586752131094 -7536.0,0.2108130427002043 -7537.0,0.21074024302755656 -7538.0,0.2106674684946832 -7539.0,0.21059471909290287 -7540.0,0.21052199481353692 -7541.0,0.21044929564791 -7542.0,0.2103766215873496 -7543.0,0.2103039726231862 -7544.0,0.2102313487467534 -7545.0,0.2101587499493876 -7546.0,0.21008617622242837 -7547.0,0.21001362755721809 -7548.0,0.20994110394510238 -7549.0,0.20986860537742955 -7550.0,0.20979613184555115 -7551.0,0.20972368334082156 -7552.0,0.2096512598545983 -7553.0,0.2095788613782416 -7554.0,0.20950648790311505 -7555.0,0.20943413942058486 -7556.0,0.2093618159220205 -7557.0,0.2092895173987942 -7558.0,0.2092172438422814 -7559.0,0.20914499524386024 -7560.0,0.20907277159491214 -7561.0,0.2090005728868212 -7562.0,0.20892839911097474 -7563.0,0.20885625025876295 -7564.0,0.20878412632157894 -7565.0,0.20871202729081895 -7566.0,0.20863995315788197 -7567.0,0.20856790391417018 -7568.0,0.20849587955108853 -7569.0,0.20842388006004517 -7570.0,0.20835190543245097 -7571.0,0.20827995565971996 -7572.0,0.20820803073326896 -7573.0,0.208136130644518 -7574.0,0.20806425538488976 -7575.0,0.20799240494581017 -7576.0,0.20792057931870792 -7577.0,0.2078487784950148 -7578.0,0.2077770024661654 -7579.0,0.20770525122359748 -7580.0,0.20763352475875155 -7581.0,0.2075618230630712 -7582.0,0.20749014612800298 -7583.0,0.20741849394499626 -7584.0,0.20734686650550357 -7585.0,0.2072752638009802 -7586.0,0.20720368582288448 -7587.0,0.20713213256267768 -7588.0,0.20706060401182405 -7589.0,0.2069891001617907 -7590.0,0.2069176210040478 -7591.0,0.20684616653006835 -7592.0,0.20677473673132843 -7593.0,0.2067033315993069 -7594.0,0.20663195112548574 -7595.0,0.20656059530134965 -7596.0,0.20648926411838656 -7597.0,0.20641795756808703 -7598.0,0.20634667564194484 -7599.0,0.20627541833145643 -7600.0,0.20620418562812146 -7601.0,0.20613297752344234 -7602.0,0.2060617940089244 -7603.0,0.2059906350760761 -7604.0,0.20591950071640855 -7605.0,0.2058483909214361 -7606.0,0.20577730568267566 -7607.0,0.2057062449916475 -7608.0,0.20563520883987443 -7609.0,0.20556419721888247 -7610.0,0.20549321012020033 -7611.0,0.20542224753535993 -7612.0,0.20535130945589578 -7613.0,0.20528039587334562 -7614.0,0.20520950677924987 -7615.0,0.2051386421651521 -7616.0,0.20506780202259853 -7617.0,0.2049969863431386 -7618.0,0.20492619511832438 -7619.0,0.20485542833971104 -7620.0,0.20478468599885669 -7621.0,0.2047139680873222 -7622.0,0.20464327459667148 -7623.0,0.20457260551847126 -7624.0,0.20450196084429134 -7625.0,0.2044313405657042 -7626.0,0.20436074467428544 -7627.0,0.20429017316161344 -7628.0,0.20421962601926957 -7629.0,0.20414910323883803 -7630.0,0.204078604811906 -7631.0,0.20400813073006352 -7632.0,0.20393768098490359 -7633.0,0.20386725556802193 -7634.0,0.20379685447101747 -7635.0,0.20372647768549176 -7636.0,0.20365612520304946 -7637.0,0.20358579701529791 -7638.0,0.20351549311384753 -7639.0,0.2034452134903116 -7640.0,0.20337495813630627 -7641.0,0.20330472704345057 -7642.0,0.2032345202033664 -7643.0,0.2031643376076787 -7644.0,0.20309417924801512 -7645.0,0.2030240451160063 -7646.0,0.20295393520328572 -7647.0,0.20288384950148985 -7648.0,0.20281378800225788 -7649.0,0.2027437506972321 -7650.0,0.20267373757805746 -7651.0,0.20260374863638198 -7652.0,0.20253378386385643 -7653.0,0.2024638432521346 -7654.0,0.20239392679287296 -7655.0,0.20232403447773115 -7656.0,0.2022541662983714 -7657.0,0.20218432224645896 -7658.0,0.20211450231366204 -7659.0,0.20204470649165152 -7660.0,0.20197493477210132 -7661.0,0.20190518714668818 -7662.0,0.2018354636070917 -7663.0,0.20176576414499436 -7664.0,0.2016960887520816 -7665.0,0.20162643742004155 -7666.0,0.2015568101405654 -7667.0,0.20148720690534702 -7668.0,0.20141762770608337 -7669.0,0.20134807253447407 -7670.0,0.20127854138222173 -7671.0,0.2012090342410318 -7672.0,0.20113955110261258 -7673.0,0.2010700919586752 -7674.0,0.2010006568009338 -7675.0,0.20093124562110512 -7676.0,0.20086185841090898 -7677.0,0.20079249516206804 -7678.0,0.2007231558663077 -7679.0,0.20065384051535637 -7680.0,0.20058454910094511 -7681.0,0.20051528161480808 -7682.0,0.20044603804868208 -7683.0,0.20037681839430696 -7684.0,0.2003076226434252 -7685.0,0.20023845078778238 -7686.0,0.20016930281912668 -7687.0,0.20010017872920932 -7688.0,0.20003107850978427 -7689.0,0.19996200215260845 -7690.0,0.19989294964944143 -7691.0,0.19982392099204588 -7692.0,0.19975491617218707 -7693.0,0.19968593518163333 -7694.0,0.1996169780121556 -7695.0,0.19954804465552792 -7696.0,0.19947913510352702 -7697.0,0.19941024934793244 -7698.0,0.19934138738052667 -7699.0,0.19927254919309492 -7700.0,0.1992037347774254 -7701.0,0.19913494412530888 -7702.0,0.1990661772285393 -7703.0,0.19899743407891318 -7704.0,0.19892871466823 -7705.0,0.198860018988292 -7706.0,0.19879134703090437 -7707.0,0.19872269878787494 -7708.0,0.19865407425101456 -7709.0,0.19858547341213673 -7710.0,0.19851689626305796 -7711.0,0.19844834279559745 -7712.0,0.1983798130015773 -7713.0,0.1983113068728224 -7714.0,0.1982428244011604 -7715.0,0.19817436557842194 -7716.0,0.19810593039644034 -7717.0,0.19803751884705179 -7718.0,0.19796913092209525 -7719.0,0.1979007666134126 -7720.0,0.19783242591284841 -7721.0,0.19776410881225023 -7722.0,0.19769581530346822 -7723.0,0.19762754537835553 -7724.0,0.197559299028768 -7725.0,0.19749107624656445 -7726.0,0.19742287702360625 -7727.0,0.19735470135175787 -7728.0,0.19728654922288633 -7729.0,0.19721842062886166 -7730.0,0.19715031556155654 -7731.0,0.1970822340128466 -7732.0,0.19701417597461024 -7733.0,0.19694614143872852 -7734.0,0.19687813039708552 -7735.0,0.19681014284156792 -7736.0,0.19674217876406538 -7737.0,0.19667423815647025 -7738.0,0.19660632101067774 -7739.0,0.19653842731858576 -7740.0,0.19647055707209518 -7741.0,0.1964027102631095 -7742.0,0.19633488688353515 -7743.0,0.1962670869252812 -7744.0,0.19619931038025973 -7745.0,0.1961315572403854 -7746.0,0.19606382749757584 -7747.0,0.19599612114375126 -7748.0,0.1959284381708349 -7749.0,0.19586077857075262 -7750.0,0.19579314233543316 -7751.0,0.195725529456808 -7752.0,0.19565793992681135 -7753.0,0.1955903737373804 -7754.0,0.19552283088045486 -7755.0,0.19545531134797747 -7756.0,0.19538781513189354 -7757.0,0.19532034222415137 -7758.0,0.19525289261670187 -7759.0,0.1951854663014988 -7760.0,0.1951180632704987 -7761.0,0.19505068351566088 -7762.0,0.1949833270289474 -7763.0,0.19491599380232322 -7764.0,0.19484868382775583 -7765.0,0.19478139709721576 -7766.0,0.1947141336026761 -7767.0,0.1946468933361129 -7768.0,0.1945796762895048 -7769.0,0.19451248245483335 -7770.0,0.1944453118240828 -7771.0,0.1943781643892402 -7772.0,0.19431104014229536 -7773.0,0.19424393907524076 -7774.0,0.19417686118007188 -7775.0,0.19410980644878664 -7776.0,0.19404277487338606 -7777.0,0.19397576644587367 -7778.0,0.19390878115825588 -7779.0,0.1938418190025418 -7780.0,0.1937748799707434 -7781.0,0.19370796405487528 -7782.0,0.19364107124695493 -7783.0,0.19357420153900243 -7784.0,0.19350735492304078 -7785.0,0.19344053139109563 -7786.0,0.19337373093519547 -7787.0,0.1933069535473714 -7788.0,0.19324019921965746 -7789.0,0.19317346794409032 -7790.0,0.19310675971270938 -7791.0,0.19304007451755692 -7792.0,0.19297341235067778 -7793.0,0.19290677320411975 -7794.0,0.19284015706993318 -7795.0,0.19277356394017134 -7796.0,0.19270699380689002 -7797.0,0.19264044666214805 -7798.0,0.1925739224980067 -7799.0,0.19250742130653023 -7800.0,0.19244094307978546 -7801.0,0.19237448780984207 -7802.0,0.1923080554887724 -7803.0,0.19224164610865158 -7804.0,0.1921752596615574 -7805.0,0.19210889613957052 -7806.0,0.1920425555347742 -7807.0,0.1919762378392545 -7808.0,0.19190994304510026 -7809.0,0.1918436711444029 -7810.0,0.19177742212925675 -7811.0,0.19171119599175873 -7812.0,0.1916449927240086 -7813.0,0.19157881231810867 -7814.0,0.19151265476616428 -7815.0,0.19144652006028315 -7816.0,0.191380408192576 -7817.0,0.19131431915515612 -7818.0,0.19124825294013958 -7819.0,0.19118220953964515 -7820.0,0.19111618894579438 -7821.0,0.19105019115071142 -7822.0,0.1909842161465233 -7823.0,0.1909182639253596 -7824.0,0.19085233447935276 -7825.0,0.19078642780063784 -7826.0,0.19072054388135265 -7827.0,0.19065468271363778 -7828.0,0.1905888442896364 -7829.0,0.19052302860149453 -7830.0,0.19045723564136077 -7831.0,0.1903914654013866 -7832.0,0.19032571787372599 -7833.0,0.19025999305053581 -7834.0,0.19019429092397555 -7835.0,0.19012861148620744 -7836.0,0.19006295472939636 -7837.0,0.18999732064571 -7838.0,0.18993170922731864 -7839.0,0.18986612046639537 -7840.0,0.18980055435511584 -7841.0,0.1897350108856586 -7842.0,0.1896694900502047 -7843.0,0.18960399184093807 -7844.0,0.18953851625004514 -7845.0,0.18947306326971522 -7846.0,0.18940763289214027 -7847.0,0.18934222510951484 -7848.0,0.18927683991403638 -7849.0,0.1892114772979048 -7850.0,0.18914613725332288 -7851.0,0.18908081977249597 -7852.0,0.18901552484763226 -7853.0,0.18895025247094244 -7854.0,0.1888850026346401 -7855.0,0.18881977533094127 -7856.0,0.18875457055206496 -7857.0,0.1886893882902326 -7858.0,0.18862422853766853 -7859.0,0.18855909128659953 -7860.0,0.1884939765292553 -7861.0,0.1884288842578681 -7862.0,0.18836381446467293 -7863.0,0.18829876714190735 -7864.0,0.18823374228181175 -7865.0,0.18816873987662916 -7866.0,0.1881037599186052 -7867.0,0.18803880239998833 -7868.0,0.18797386731302945 -7869.0,0.18790895464998245 -7870.0,0.18784406440310356 -7871.0,0.18777919656465197 -7872.0,0.18771435112688933 -7873.0,0.18764952808208016 -7874.0,0.1875847274224914 -7875.0,0.18751994914039294 -7876.0,0.1874551932280571 -7877.0,0.18739045967775905 -7878.0,0.18732574848177647 -7879.0,0.18726105963238987 -7880.0,0.18719639312188227 -7881.0,0.18713174894253948 -7882.0,0.18706712708664988 -7883.0,0.18700252754650457 -7884.0,0.18693795031439733 -7885.0,0.1868733953826245 -7886.0,0.18680886274348524 -7887.0,0.18674435238928117 -7888.0,0.18667986431231676 -7889.0,0.186615398504899 -7890.0,0.18655095495933763 -7891.0,0.18648653366794493 -7892.0,0.18642213462303603 -7893.0,0.18635775781692845 -7894.0,0.18629340324194266 -7895.0,0.1862290708904015 -7896.0,0.18616476075463065 -7897.0,0.18610047282695835 -7898.0,0.1860362070997156 -7899.0,0.18597196356523585 -7900.0,0.1859077422158554 -7901.0,0.18584354304391304 -7902.0,0.18577936604175033 -7903.0,0.18571521120171144 -7904.0,0.18565107851614313 -7905.0,0.18558696797739485 -7906.0,0.18552287957781866 -7907.0,0.1854588133097693 -7908.0,0.1853947691656041 -7909.0,0.18533074713768313 -7910.0,0.18526674721836897 -7911.0,0.18520276940002692 -7912.0,0.18513881367502485 -7913.0,0.18507488003573339 -7914.0,0.18501096847452564 -7915.0,0.1849470789837775 -7916.0,0.18488321155586732 -7917.0,0.18481936618317626 -7918.0,0.18475554285808798 -7919.0,0.1846917415729889 -7920.0,0.1846279623202679 -7921.0,0.18456420509231664 -7922.0,0.18450046988152935 -7923.0,0.18443675668030282 -7924.0,0.1843730654810366 -7925.0,0.18430939627613274 -7926.0,0.18424574905799604 -7927.0,0.18418212381903376 -7928.0,0.18411852055165598 -7929.0,0.18405493924827515 -7930.0,0.18399137990130665 -7931.0,0.18392784250316815 -7932.0,0.18386432704628025 -7933.0,0.18380083352306592 -7934.0,0.1837373619259509 -7935.0,0.18367391224736343 -7936.0,0.1836104844797345 -7937.0,0.18354707861549757 -7938.0,0.18348369464708886 -7939.0,0.18342033256694704 -7940.0,0.18335699236751352 -7941.0,0.18329367404123229 -7942.0,0.1832303775805499 -7943.0,0.1831671029779156 -7944.0,0.18310385022578113 -7945.0,0.18304061931660093 -7946.0,0.18297741024283198 -7947.0,0.18291422299693397 -7948.0,0.18285105757136902 -7949.0,0.18278791395860208 -7950.0,0.18272479215110043 -7951.0,0.18266169214133424 -7952.0,0.18259861392177604 -7953.0,0.18253555748490113 -7954.0,0.18247252282318727 -7955.0,0.18240950992911492 -7956.0,0.18234651879516708 -7957.0,0.18228354941382943 -7958.0,0.1822206017775901 -7959.0,0.1821576758789399 -7960.0,0.18209477171037236 -7961.0,0.1820318892643833 -7962.0,0.1819690285334714 -7963.0,0.1819061895101378 -7964.0,0.18184337218688626 -7965.0,0.18178057655622315 -7966.0,0.18171780261065743 -7967.0,0.18165505034270055 -7968.0,0.1815923197448667 -7969.0,0.1815296108096725 -7970.0,0.18146692352963734 -7971.0,0.18140425789728298 -7972.0,0.18134161390513395 -7973.0,0.1812789915457172 -7974.0,0.1812163908115624 -7975.0,0.1811538116952017 -7976.0,0.1810912541891699 -7977.0,0.1810287182860043 -7978.0,0.18096620397824484 -7979.0,0.18090371125843407 -7980.0,0.180841240119117 -7981.0,0.18077879055284135 -7982.0,0.18071636255215726 -7983.0,0.18065395610961757 -7984.0,0.1805915712177776 -7985.0,0.18052920786919538 -7986.0,0.1804668660564313 -7987.0,0.18040454577204856 -7988.0,0.1803422470086127 -7989.0,0.180279969758692 -7990.0,0.1802177140148572 -7991.0,0.18015547976968166 -7992.0,0.18009326701574127 -7993.0,0.18003107574561455 -7994.0,0.17996890595188245 -7995.0,0.17990675762712866 -7996.0,0.17984463076393925 -7997.0,0.179782525354903 -7998.0,0.1797204413926112 -7999.0,0.17965837886965763 -8000.0,0.17959633777863873 -8001.0,0.17953431811215342 -8002.0,0.17947231986280324 -8003.0,0.17941034302319217 -8004.0,0.17934838758592694 -8005.0,0.17928645354361664 -8006.0,0.17922454088887302 -8007.0,0.17916264961431033 -8008.0,0.17910077971254543 -8009.0,0.17903893117619762 -8010.0,0.17897710399788894 -8011.0,0.1789152981702437 -8012.0,0.1788535136858891 -8013.0,0.1787917505374545 -8014.0,0.1787300087175722 -8015.0,0.17866828821887668 -8016.0,0.17860658903400523 -8017.0,0.17854491115559762 -8018.0,0.17848325457629605 -8019.0,0.1784216192887454 -8020.0,0.17836000528559295 -8021.0,0.1782984125594887 -8022.0,0.178236841103085 -8023.0,0.1781752909090369 -8024.0,0.1781137619700018 -8025.0,0.17805225427863988 -8026.0,0.17799076782761364 -8027.0,0.17792930260958822 -8028.0,0.17786785861723126 -8029.0,0.17780643584321293 -8030.0,0.17774503428020594 -8031.0,0.1776836539208856 -8032.0,0.17762229475792954 -8033.0,0.1775609567840182 -8034.0,0.17749963999183432 -8035.0,0.17743834437406328 -8036.0,0.17737706992339297 -8037.0,0.17731581663251378 -8038.0,0.17725458449411868 -8039.0,0.17719337350090306 -8040.0,0.17713218364556496 -8041.0,0.1770710149208048 -8042.0,0.17700986731932566 -8043.0,0.17694874083383302 -8044.0,0.176887635457035 -8045.0,0.17682655118164212 -8046.0,0.1767654880003675 -8047.0,0.17670444590592677 -8048.0,0.17664342489103801 -8049.0,0.17658242494842188 -8050.0,0.17652144607080153 -8051.0,0.1764604882509026 -8052.0,0.17639955148145334 -8053.0,0.17633863575518433 -8054.0,0.1762777410648288 -8055.0,0.17621686740312253 -8056.0,0.17615601476280368 -8057.0,0.176095183136613 -8058.0,0.17603437251729365 -8059.0,0.17597358289759146 -8060.0,0.17591281427025457 -8061.0,0.17585206662803385 -8062.0,0.17579133996368243 -8063.0,0.17573063426995617 -8064.0,0.17566994953961323 -8065.0,0.17560928576541443 -8066.0,0.17554864294012296 -8067.0,0.17548802105650466 -8068.0,0.17542742010732768 -8069.0,0.17536684008536285 -8070.0,0.17530628098338336 -8071.0,0.17524574279416502 -8072.0,0.175185225510486 -8073.0,0.175124729125127 -8074.0,0.17506425363087136 -8075.0,0.1750037990205047 -8076.0,0.17494336528681526 -8077.0,0.17488295242259372 -8078.0,0.1748225604206333 -8079.0,0.1747621892737296 -8080.0,0.1747018389746809 -8081.0,0.1746415095162877 -8082.0,0.1745812008913533 -8083.0,0.17452091309268317 -8084.0,0.17446064611308554 -8085.0,0.1744003999453709 -8086.0,0.1743401745823524 -8087.0,0.1742799700168455 -8088.0,0.17421978624166834 -8089.0,0.17415962324964135 -8090.0,0.1740994810335876 -8091.0,0.1740393595863325 -8092.0,0.17397925890070398 -8093.0,0.17391917896953257 -8094.0,0.17385911978565105 -8095.0,0.17379908134189492 -8096.0,0.17373906363110192 -8097.0,0.17367906664611246 -8098.0,0.17361909037976925 -8099.0,0.17355913482491767 -8100.0,0.17349919997440535 -8101.0,0.1734392858210826 -8102.0,0.17337939235780198 -8103.0,0.17331951957741876 -8104.0,0.17325966747279042 -8105.0,0.1731998360367772 -8106.0,0.1731400252622415 -8107.0,0.17308023514204846 -8108.0,0.17302046566906543 -8109.0,0.17296071683616243 -8110.0,0.1729009886362118 -8111.0,0.17284128106208846 -8112.0,0.17278159410666974 -8113.0,0.17272192776283532 -8114.0,0.1726622820234676 -8115.0,0.1726026568814511 -8116.0,0.17254305232967312 -8117.0,0.17248346836102318 -8118.0,0.17242390496839344 -8119.0,0.1723643621446783 -8120.0,0.17230483988277484 -8121.0,0.1722453381755824 -8122.0,0.17218585701600295 -8123.0,0.17212639639694075 -8124.0,0.17206695631130264 -8125.0,0.17200753675199779 -8126.0,0.17194813771193795 -8127.0,0.17188875918403718 -8128.0,0.1718294011612121 -8129.0,0.17177006363638167 -8130.0,0.17171074660246743 -8131.0,0.17165145005239327 -8132.0,0.17159217397908552 -8133.0,0.17153291837547302 -8134.0,0.17147368323448695 -8135.0,0.17141446854906103 -8136.0,0.17135527431213135 -8137.0,0.17129610051663652 -8138.0,0.17123694715551746 -8139.0,0.1711778142217177 -8140.0,0.17111870170818302 -8141.0,0.17105960960786182 -8142.0,0.17100053791370476 -8143.0,0.17094148661866507 -8144.0,0.17088245571569832 -8145.0,0.1708234451977626 -8146.0,0.17076445505781834 -8147.0,0.1707054852888285 -8148.0,0.17064653588375836 -8149.0,0.1705876068355757 -8150.0,0.17052869813725074 -8151.0,0.17046980978175608 -8152.0,0.1704109417620668 -8153.0,0.1703520940711603 -8154.0,0.1702932667020166 -8155.0,0.1702344596476179 -8156.0,0.17017567290094904 -8157.0,0.1701169064549971 -8158.0,0.17005816030275178 -8159.0,0.169999434437205 -8160.0,0.16994072885135125 -8161.0,0.1698820435381873 -8162.0,0.16982337849071255 -8163.0,0.16976473370192857 -8164.0,0.16970610916483955 -8165.0,0.16964750487245192 -8166.0,0.1695889208177747 -8167.0,0.1695303569938192 -8168.0,0.16947181339359915 -8169.0,0.1694132900101308 -8170.0,0.16935478683643268 -8171.0,0.16929630386552585 -8172.0,0.16923784109043366 -8173.0,0.16917939850418195 -8174.0,0.1691209760997989 -8175.0,0.16906257387031523 -8176.0,0.1690041918087639 -8177.0,0.1689458299081804 -8178.0,0.16888748816160254 -8179.0,0.16882916656207067 -8180.0,0.16877086510262732 -8181.0,0.16871258377631765 -8182.0,0.16865432257618904 -8183.0,0.16859608149529146 -8184.0,0.16853786052667705 -8185.0,0.1684796596634006 -8186.0,0.16842147889851905 -8187.0,0.16836331822509193 -8188.0,0.1683051776361811 -8189.0,0.16824705712485077 -8190.0,0.16818895668416764 -8191.0,0.1681308763072007 -8192.0,0.16807281598702142 -8193.0,0.1680147757167036 -8194.0,0.16795675548932348 -8195.0,0.16789875529795964 -8196.0,0.16784077513569315 -8197.0,0.16778281499560732 -8198.0,0.16772487487078797 -8199.0,0.16766695475432322 -8200.0,0.16760905463930373 -8201.0,0.1675511745188223 -8202.0,0.16749331438597434 -8203.0,0.16743547423385755 -8204.0,0.167377654055572 -8205.0,0.16731985384422016 -8206.0,0.1672620735929069 -8207.0,0.16720431329473948 -8208.0,0.16714657294282748 -8209.0,0.1670888525302829 -8210.0,0.16703115205022015 -8211.0,0.16697347149575598 -8212.0,0.16691581086000945 -8213.0,0.16685817013610216 -8214.0,0.1668005493171579 -8215.0,0.16674294839630302 -8216.0,0.1666853673666661 -8217.0,0.16662780622137816 -8218.0,0.16657026495357252 -8219.0,0.166512743556385 -8220.0,0.16645524202295367 -8221.0,0.16639776034641907 -8222.0,0.16634029851992396 -8223.0,0.1662828565366137 -8224.0,0.16622543438963575 -8225.0,0.1661680320721401 -8226.0,0.16611064957727914 -8227.0,0.16605328689820745 -8228.0,0.1659959440280822 -8229.0,0.1659386209600627 -8230.0,0.1658813176873108 -8231.0,0.16582403420299058 -8232.0,0.16576677050026858 -8233.0,0.1657095265723136 -8234.0,0.16565230241229695 -8235.0,0.16559509801339212 -8236.0,0.1655379133687751 -8237.0,0.16548074847162414 -8238.0,0.1654236033151199 -8239.0,0.16536647789244535 -8240.0,0.16530937219678593 -8241.0,0.16525228622132923 -8242.0,0.16519521995926542 -8243.0,0.1651381734037868 -8244.0,0.16508114654808823 -8245.0,0.16502413938536678 -8246.0,0.16496715190882189 -8247.0,0.16491018411165542 -8248.0,0.16485323598707147 -8249.0,0.16479630752827662 -8250.0,0.16473939872847962 -8251.0,0.16468250958089178 -8252.0,0.16462564007872652 -8253.0,0.16456879021519982 -8254.0,0.16451195998352985 -8255.0,0.16445514937693723 -8256.0,0.16439835838864478 -8257.0,0.16434158701187784 -8258.0,0.16428483523986395 -8259.0,0.16422810306583305 -8260.0,0.1641713904830174 -8261.0,0.16411469748465163 -8262.0,0.16405802406397263 -8263.0,0.16400137021421968 -8264.0,0.16394473592863446 -8265.0,0.1638881212004608 -8266.0,0.1638315260229451 -8267.0,0.16377495038933587 -8268.0,0.16371839429288412 -8269.0,0.16366185772684302 -8270.0,0.1636053406844683 -8271.0,0.1635488431590178 -8272.0,0.16349236514375182 -8273.0,0.16343590663193286 -8274.0,0.16337946761682598 -8275.0,0.16332304809169826 -8276.0,0.16326664804981939 -8277.0,0.16321026748446116 -8278.0,0.16315390638889787 -8279.0,0.16309756475640594 -8280.0,0.16304124258026434 -8281.0,0.16298493985375417 -8282.0,0.16292865657015893 -8283.0,0.1628723927227645 -8284.0,0.1628161483048589 -8285.0,0.1627599233097327 -8286.0,0.1627037177306786 -8287.0,0.16264753156099174 -8288.0,0.1625913647939694 -8289.0,0.16253521742291144 -8290.0,0.16247908944111977 -8291.0,0.16242298084189882 -8292.0,0.1623668916185552 -8293.0,0.16231082176439787 -8294.0,0.1622547712727381 -8295.0,0.16219874013688954 -8296.0,0.16214272835016796 -8297.0,0.1620867359058917 -8298.0,0.16203076279738116 -8299.0,0.16197480901795924 -8300.0,0.161918874560951 -8301.0,0.1618629594196839 -8302.0,0.16180706358748767 -8303.0,0.1617511870576943 -8304.0,0.16169532982363824 -8305.0,0.16163949187865598 -8306.0,0.16158367321608658 -8307.0,0.1615278738292712 -8308.0,0.16147209371155347 -8309.0,0.1614163328562791 -8310.0,0.16136059125679636 -8311.0,0.1613048689064556 -8312.0,0.16124916579860957 -8313.0,0.16119348192661329 -8314.0,0.16113781728382412 -8315.0,0.16108217186360163 -8316.0,0.16102654565930774 -8317.0,0.16097093866430665 -8318.0,0.16091535087196485 -8319.0,0.1608597822756511 -8320.0,0.1608042328687365 -8321.0,0.16074870264459443 -8322.0,0.1606931915966005 -8323.0,0.16063769971813266 -8324.0,0.16058222700257113 -8325.0,0.16052677344329846 -8326.0,0.16047133903369937 -8327.0,0.160415923767161 -8328.0,0.16036052763707265 -8329.0,0.16030515063682604 -8330.0,0.16024979275981505 -8331.0,0.16019445399943594 -8332.0,0.1601391343490871 -8333.0,0.16008383380216942 -8334.0,0.16002855235208585 -8335.0,0.15997328999224178 -8336.0,0.15991804671604476 -8337.0,0.15986282251690473 -8338.0,0.15980761738823376 -8339.0,0.15975243132344635 -8340.0,0.15969726431595924 -8341.0,0.15964211635919132 -8342.0,0.1595869874465639 -8343.0,0.15953187757150045 -8344.0,0.15947678672742682 -8345.0,0.15942171490777104 -8346.0,0.15936666210596348 -8347.0,0.15931162831543666 -8348.0,0.15925661352962556 -8349.0,0.15920161774196723 -8350.0,0.1591466409459011 -8351.0,0.15909168313486885 -8352.0,0.15903674430231443 -8353.0,0.158981824441684 -8354.0,0.15892692354642604 -8355.0,0.15887204160999124 -8356.0,0.15881717862583267 -8357.0,0.1587623345874055 -8358.0,0.15870750948816723 -8359.0,0.1586527033215777 -8360.0,0.15859791608109883 -8361.0,0.158543147760195 -8362.0,0.1584883983523327 -8363.0,0.15843366785098073 -8364.0,0.15837895624961015 -8365.0,0.15832426354169427 -8366.0,0.1582695897207086 -8367.0,0.15821493478013102 -8368.0,0.15816029871344153 -8369.0,0.15810568151412252 -8370.0,0.15805108317565847 -8371.0,0.15799650369153628 -8372.0,0.15794194305524495 -8373.0,0.15788740126027584 -8374.0,0.15783287830012246 -8375.0,0.1577783741682807 -8376.0,0.1577238888582485 -8377.0,0.15766942236352624 -8378.0,0.15761497467761648 -8379.0,0.15756054579402395 -8380.0,0.15750613570625574 -8381.0,0.15745174440782106 -8382.0,0.1573973718922315 -8383.0,0.1573430181530007 -8384.0,0.15728868318364478 -8385.0,0.1572343669776819 -8386.0,0.15718006952863256 -8387.0,0.15712579083001946 -8388.0,0.15707153087536757 -8389.0,0.15701728965820402 -8390.0,0.1569630671720583 -8391.0,0.15690886341046198 -8392.0,0.15685467836694902 -8393.0,0.1568005120350555 -8394.0,0.1567463644083198 -8395.0,0.15669223548028244 -8396.0,0.15663812524448628 -8397.0,0.1565840336944764 -8398.0,0.15652996082380002 -8399.0,0.15647590662600666 -8400.0,0.15642187109464803 -8401.0,0.15636785422327812 -8402.0,0.15631385600545308 -8403.0,0.15625987643473133 -8404.0,0.15620591550467347 -8405.0,0.15615197320884242 -8406.0,0.1560980495408032 -8407.0,0.15604414449412313 -8408.0,0.1559902580623717 -8409.0,0.15593639023912073 -8410.0,0.1558825410179441 -8411.0,0.15582871039241805 -8412.0,0.1557748983561209 -8413.0,0.15572110490263338 -8414.0,0.15566733002553823 -8415.0,0.15561357371842052 -8416.0,0.15555983597486756 -8417.0,0.15550611678846873 -8418.0,0.15545241615281585 -8419.0,0.15539873406150273 -8420.0,0.15534507050812554 -8421.0,0.15529142548628258 -8422.0,0.1552377989895744 -8423.0,0.15518419101160374 -8424.0,0.1551306015459756 -8425.0,0.1550770305862971 -8426.0,0.15502347812617764 -8427.0,0.15496994415922877 -8428.0,0.15491642867906433 -8429.0,0.15486293167930024 -8430.0,0.1548094531535548 -8431.0,0.1547559930954483 -8432.0,0.15470255149860346 -8433.0,0.15464912835664496 -8434.0,0.15459572366319987 -8435.0,0.15454233741189746 -8436.0,0.15448896959636907 -8437.0,0.15443562021024834 -8438.0,0.154382289247171 -8439.0,0.1543289767007752 -8440.0,0.15427568256470098 -8441.0,0.15422240683259086 -8442.0,0.15416914949808935 -8443.0,0.15411591055484333 -8444.0,0.1540626899965017 -8445.0,0.15400948781671567 -8446.0,0.1539563040091386 -8447.0,0.15390313856742605 -8448.0,0.15384999148523576 -8449.0,0.15379686275622773 -8450.0,0.15374375237406399 -8451.0,0.15369066033240894 -8452.0,0.15363758662492905 -8453.0,0.153584531245293 -8454.0,0.15353149418717174 -8455.0,0.15347847544423823 -8456.0,0.15342547501016784 -8457.0,0.15337249287863788 -8458.0,0.1533195290433281 -8459.0,0.1532665834979202 -8460.0,0.1532136562360982 -8461.0,0.15316074725154824 -8462.0,0.1531078565379587 -8463.0,0.15305498408902007 -8464.0,0.1530021298984251 -8465.0,0.1529492939598686 -8466.0,0.1528964762670477 -8467.0,0.15284367681366157 -8468.0,0.15279089559341166 -8469.0,0.15273813260000155 -8470.0,0.152685387827137 -8471.0,0.1526326612685259 -8472.0,0.15257995291787843 -8473.0,0.15252726276890682 -8474.0,0.15247459081532555 -8475.0,0.15242193705085122 -8476.0,0.1523693014692026 -8477.0,0.1523166840641007 -8478.0,0.1522640848292686 -8479.0,0.15221150375843162 -8480.0,0.1521589408453172 -8481.0,0.152106396083655 -8482.0,0.15205386946717678 -8483.0,0.15200136098961653 -8484.0,0.15194887064471033 -8485.0,0.1518963984261965 -8486.0,0.15184394432781548 -8487.0,0.15179150834330987 -8488.0,0.15173909046642445 -8489.0,0.15168669069090615 -8490.0,0.151634309010504 -8491.0,0.15158194541896935 -8492.0,0.15152959991005555 -8493.0,0.15147727247751816 -8494.0,0.1514249631151149 -8495.0,0.15137267181660566 -8496.0,0.15132039857575247 -8497.0,0.15126814338631947 -8498.0,0.15121590624207307 -8499.0,0.1511636871367817 -8500.0,0.15111148606421604 -8501.0,0.15105930301814882 -8502.0,0.15100713799235507 -8503.0,0.15095499098061183 -8504.0,0.15090286197669836 -8505.0,0.15085075097439601 -8506.0,0.15079865796748837 -8507.0,0.1507465829497611 -8508.0,0.15069452591500204 -8509.0,0.15064248685700113 -8510.0,0.1505904657695505 -8511.0,0.15053846264644452 -8512.0,0.15048647748147945 -8513.0,0.15043451026845392 -8514.0,0.15038256100116856 -8515.0,0.15033062967342628 -8516.0,0.15027871627903197 -8517.0,0.15022682081179284 -8518.0,0.150174943265518 -8519.0,0.150123083634019 -8520.0,0.1500712419111092 -8521.0,0.15001941809060443 -8522.0,0.14996761216632232 -8523.0,0.14991582413208293 -8524.0,0.14986405398170824 -8525.0,0.1498123017090225 -8526.0,0.149760567307852 -8527.0,0.14970885077202525 -8528.0,0.1496571520953728 -8529.0,0.1496054712717274 -8530.0,0.14955380829492393 -8531.0,0.1495021631587993 -8532.0,0.1494505358571927 -8533.0,0.1493989263839453 -8534.0,0.14934733473290057 -8535.0,0.14929576089790386 -8536.0,0.1492442048728029 -8537.0,0.14919266665144737 -8538.0,0.14914114622768918 -8539.0,0.14908964359538227 -8540.0,0.14903815874838283 -8541.0,0.14898669168054898 -8542.0,0.14893524238574118 -8543.0,0.14888381085782185 -8544.0,0.1488323970906556 -8545.0,0.1487810010781091 -8546.0,0.14872962281405128 -8547.0,0.14867826229235298 -8548.0,0.14862691950688728 -8549.0,0.14857559445152946 -8550.0,0.1485242871201567 -8551.0,0.1484729975066485 -8552.0,0.14842172560488628 -8553.0,0.14837047140875378 -8554.0,0.14831923491213667 -8555.0,0.14826801610892285 -8556.0,0.14821681499300227 -8557.0,0.14816563155826706 -8558.0,0.14811446579861132 -8559.0,0.14806331770793144 -8560.0,0.14801218728012575 -8561.0,0.14796107450909482 -8562.0,0.14790997938874123 -8563.0,0.14785890191296974 -8564.0,0.14780784207568715 -8565.0,0.14775679987080242 -8566.0,0.14770577529222653 -8567.0,0.1476547683338727 -8568.0,0.14760377898965613 -8569.0,0.14755280725349412 -8570.0,0.14750185311930622 -8571.0,0.14745091658101386 -8572.0,0.1473999976325408 -8573.0,0.14734909626781267 -8574.0,0.14729821248075736 -8575.0,0.1472473462653048 -8576.0,0.14719649761538703 -8577.0,0.14714566652493816 -8578.0,0.14709485298789443 -8579.0,0.14704405699819412 -8580.0,0.1469932785497777 -8581.0,0.14694251763658758 -8582.0,0.14689177425256847 -8583.0,0.14684104839166695 -8584.0,0.14679034004783187 -8585.0,0.14673964921501403 -8586.0,0.1466889758871664 -8587.0,0.1466383200582441 -8588.0,0.14658768172220413 -8589.0,0.1465370608730058 -8590.0,0.14648645750461037 -8591.0,0.14643587161098126 -8592.0,0.1463853031860839 -8593.0,0.1463347522238859 -8594.0,0.1462842187183568 -8595.0,0.14623370266346847 -8596.0,0.14618320405319457 -8597.0,0.14613272288151108 -8598.0,0.1460822591423959 -8599.0,0.1460318128298291 -8600.0,0.1459813839377928 -8601.0,0.14593097246027126 -8602.0,0.14588057839125065 -8603.0,0.14583020172471942 -8604.0,0.1457798424546679 -8605.0,0.14572950057508868 -8606.0,0.14567917607997635 -8607.0,0.1456288689633275 -8608.0,0.1455785792191409 -8609.0,0.14552830684141735 -8610.0,0.1454780518241597 -8611.0,0.1454278141613729 -8612.0,0.14537759384706397 -8613.0,0.145327390875242 -8614.0,0.14527720523991813 -8615.0,0.14522703693510555 -8616.0,0.14517688595481965 -8617.0,0.14512675229307764 -8618.0,0.14507663594389905 -8619.0,0.1450265369013053 -8620.0,0.14497645515932 -8621.0,0.1449263907119687 -8622.0,0.14487634355327914 -8623.0,0.14482631367728097 -8624.0,0.14477630107800607 -8625.0,0.14472630574948828 -8626.0,0.14467632768576352 -8627.0,0.14462636688086977 -8628.0,0.14457642332884707 -8629.0,0.14452649702373754 -8630.0,0.1444765879595853 -8631.0,0.14442669613043657 -8632.0,0.14437682153033962 -8633.0,0.1443269641533448 -8634.0,0.14427712399350445 -8635.0,0.14422730104487305 -8636.0,0.14417749530150703 -8637.0,0.14412770675746497 -8638.0,0.1440779354068074 -8639.0,0.14402818124359706 -8640.0,0.14397844426189854 -8641.0,0.14392872445577867 -8642.0,0.14387902181930617 -8643.0,0.1438293363465519 -8644.0,0.14377966803158876 -8645.0,0.14373001686849166 -8646.0,0.1436803828513376 -8647.0,0.1436307659742056 -8648.0,0.14358116623117673 -8649.0,0.14353158361633406 -8650.0,0.14348201812376282 -8651.0,0.1434324697475501 -8652.0,0.1433829384817853 -8653.0,0.14333342432055954 -8654.0,0.14328392725796624 -8655.0,0.14323444728810072 -8656.0,0.14318498440506042 -8657.0,0.1431355386029447 -8658.0,0.14308610987585513 -8659.0,0.14303669821789516 -8660.0,0.1429873036231704 -8661.0,0.1429379260857883 -8662.0,0.14288856559985863 -8663.0,0.14283922215949302 -8664.0,0.14278989575880507 -8665.0,0.14274058639191062 -8666.0,0.1426912940529273 -8667.0,0.14264201873597498 -8668.0,0.14259276043517544 -8669.0,0.14254351914465255 -8670.0,0.1424942948585321 -8671.0,0.14244508757094212 -8672.0,0.14239589727601243 -8673.0,0.1423467239678751 -8674.0,0.14229756764066395 -8675.0,0.14224842828851517 -8676.0,0.14219930590556662 -8677.0,0.1421502004859585 -8678.0,0.1421011120238328 -8679.0,0.1420520405133337 -8680.0,0.14200298594860725 -8681.0,0.14195394832380162 -8682.0,0.14190492763306703 -8683.0,0.1418559238705556 -8684.0,0.14180693703042158 -8685.0,0.14175796710682118 -8686.0,0.14170901409391268 -8687.0,0.14166007798585628 -8688.0,0.14161115877681432 -8689.0,0.14156225646095105 -8690.0,0.14151337103243283 -8691.0,0.1414645024854279 -8692.0,0.1414156508141067 -8693.0,0.1413668160126415 -8694.0,0.14131799807520676 -8695.0,0.14126919699597873 -8696.0,0.14122041276913588 -8697.0,0.1411716453888586 -8698.0,0.14112289484932927 -8699.0,0.14107416114473234 -8700.0,0.14102544426925417 -8701.0,0.1409767442170833 -8702.0,0.14092806098241006 -8703.0,0.140879394559427 -8704.0,0.14083074494232845 -8705.0,0.14078211212531097 -8706.0,0.14073349610257296 -8707.0,0.14068489686831492 -8708.0,0.14063631441673927 -8709.0,0.14058774874205052 -8710.0,0.14053919983845511 -8711.0,0.14049066770016155 -8712.0,0.14044215232138024 -8713.0,0.14039365369632376 -8714.0,0.14034517181920644 -8715.0,0.14029670668424485 -8716.0,0.1402482582856574 -8717.0,0.14019982661766459 -8718.0,0.14015141167448883 -8719.0,0.14010301345035459 -8720.0,0.14005463193948836 -8721.0,0.14000626713611847 -8722.0,0.1399579190344755 -8723.0,0.13990958762879172 -8724.0,0.13986127291330167 -8725.0,0.13981297488224165 -8726.0,0.13976469352985016 -8727.0,0.1397164288503675 -8728.0,0.13966818083803612 -8729.0,0.1396199494871003 -8730.0,0.13957173479180648 -8731.0,0.13952353674640294 -8732.0,0.13947535534514005 -8733.0,0.13942719058227004 -8734.0,0.1393790424520473 -8735.0,0.13933091094872804 -8736.0,0.13928279606657057 -8737.0,0.1392346977998351 -8738.0,0.13918661614278385 -8739.0,0.1391385510896811 -8740.0,0.13909050263479295 -8741.0,0.13904247077238766 -8742.0,0.13899445549673528 -8743.0,0.13894645680210801 -8744.0,0.1388984746827799 -8745.0,0.1388505091330271 -8746.0,0.1388025601471276 -8747.0,0.13875462771936153 -8748.0,0.1387067118440108 -8749.0,0.13865881251535944 -8750.0,0.1386109297276934 -8751.0,0.13856306347530065 -8752.0,0.13851521375247103 -8753.0,0.13846738055349647 -8754.0,0.1384195638726708 -8755.0,0.1383717637042898 -8756.0,0.13832398004265134 -8757.0,0.1382762128820551 -8758.0,0.13822846221680288 -8759.0,0.1381807280411983 -8760.0,0.13813301034954706 -8761.0,0.13808530913615677 -8762.0,0.13803762439533707 -8763.0,0.13798995612139947 -8764.0,0.1379423043086575 -8765.0,0.13789466895142663 -8766.0,0.13784705004402437 -8767.0,0.13779944758077006 -8768.0,0.13775186155598515 -8769.0,0.13770429196399286 -8770.0,0.13765673879911863 -8771.0,0.13760920205568958 -8772.0,0.137561681728035 -8773.0,0.13751417781048605 -8774.0,0.13746669029737582 -8775.0,0.13741921918303948 -8776.0,0.13737176446181398 -8777.0,0.13732432612803838 -8778.0,0.1372769041760536 -8779.0,0.1372294986002026 -8780.0,0.1371821093948301 -8781.0,0.1371347365542831 -8782.0,0.13708738007291024 -8783.0,0.13704003994506228 -8784.0,0.13699271616509187 -8785.0,0.13694540872735367 -8786.0,0.13689811762620419 -8787.0,0.136850842856002 -8788.0,0.1368035844111075 -8789.0,0.13675634228588318 -8790.0,0.1367091164746933 -8791.0,0.13666190697190428 -8792.0,0.1366147137718843 -8793.0,0.13656753686900355 -8794.0,0.13652037625763422 -8795.0,0.13647323193215033 -8796.0,0.13642610388692797 -8797.0,0.13637899211634505 -8798.0,0.13633189661478154 -8799.0,0.1362848173766192 -8800.0,0.13623775439624194 -8801.0,0.1361907076680354 -8802.0,0.13614367718638729 -8803.0,0.13609666294568715 -8804.0,0.13604966494032664 -8805.0,0.1360026831646991 -8806.0,0.13595571761320008 -8807.0,0.13590876828022685 -8808.0,0.13586183516017875 -8809.0,0.13581491824745692 -8810.0,0.1357680175364646 -8811.0,0.13572113302160682 -8812.0,0.13567426469729063 -8813.0,0.135627412557925 -8814.0,0.13558057659792075 -8815.0,0.13553375681169075 -8816.0,0.13548695319364967 -8817.0,0.1354401657382143 -8818.0,0.1353933944398031 -8819.0,0.1353466392928367 -8820.0,0.1352999002917375 -8821.0,0.13525317743092985 -8822.0,0.13520647070484018 -8823.0,0.13515978010789656 -8824.0,0.13511310563452922 -8825.0,0.13506644727917022 -8826.0,0.13501980503625363 -8827.0,0.13497317890021523 -8828.0,0.13492656886549298 -8829.0,0.13487997492652656 -8830.0,0.13483339707775777 -8831.0,0.1347868353136301 -8832.0,0.13474028962858908 -8833.0,0.13469376001708216 -8834.0,0.13464724647355875 -8835.0,0.13460074899247013 -8836.0,0.1345542675682694 -8837.0,0.1345078021954117 -8838.0,0.13446135286835406 -8839.0,0.1344149195815555 -8840.0,0.1343685023294767 -8841.0,0.1343221011065805 -8842.0,0.1342757159073316 -8843.0,0.13422934672619657 -8844.0,0.13418299355764388 -8845.0,0.13413665639614392 -8846.0,0.13409033523616906 -8847.0,0.13404403007219354 -8848.0,0.1339977408986934 -8849.0,0.1339514677101467 -8850.0,0.13390521050103343 -8851.0,0.13385896926583543 -8852.0,0.13381274399903653 -8853.0,0.13376653469512223 -8854.0,0.1337203413485802 -8855.0,0.1336741639538999 -8856.0,0.13362800250557272 -8857.0,0.13358185699809189 -8858.0,0.1335357274259526 -8859.0,0.13348961378365193 -8860.0,0.13344351606568894 -8861.0,0.13339743426656436 -8862.0,0.13335136838078107 -8863.0,0.1333053184028437 -8864.0,0.13325928432725892 -8865.0,0.13321326614853504 -8866.0,0.13316726386118252 -8867.0,0.1331212774597136 -8868.0,0.13307530693864253 -8869.0,0.13302935229248522 -8870.0,0.13298341351575968 -8871.0,0.13293749060298574 -8872.0,0.13289158354868513 -8873.0,0.13284569234738156 -8874.0,0.13279981699360038 -8875.0,0.1327539574818691 -8876.0,0.132708113806717 -8877.0,0.1326622859626753 -8878.0,0.13261647394427697 -8879.0,0.13257067774605705 -8880.0,0.13252489736255235 -8881.0,0.1324791327883017 -8882.0,0.13243338401784557 -8883.0,0.13238765104572653 -8884.0,0.132341933866489 -8885.0,0.13229623247467928 -8886.0,0.13225054686484541 -8887.0,0.13220487703153752 -8888.0,0.1321592229693075 -8889.0,0.13211358467270917 -8890.0,0.13206796213629826 -8891.0,0.13202235535463222 -8892.0,0.13197676432227057 -8893.0,0.1319311890337746 -8894.0,0.13188562948370758 -8895.0,0.1318400856666345 -8896.0,0.13179455757712236 -8897.0,0.13174904520973996 -8898.0,0.13170354855905808 -8899.0,0.1316580676196492 -8900.0,0.13161260238608782 -8901.0,0.1315671528529503 -8902.0,0.13152171901481485 -8903.0,0.13147630086626144 -8904.0,0.1314308984018721 -8905.0,0.13138551161623066 -8906.0,0.13134014050392281 -8907.0,0.131294785059536 -8908.0,0.13124944527765978 -8909.0,0.13120412115288538 -8910.0,0.13115881267980598 -8911.0,0.13111351985301667 -8912.0,0.13106824266711423 -8913.0,0.13102298111669747 -8914.0,0.13097773519636705 -8915.0,0.13093250490072547 -8916.0,0.130887290224377 -8917.0,0.1308420911619279 -8918.0,0.1307969077079863 -8919.0,0.13075173985716212 -8920.0,0.13070658760406711 -8921.0,0.130661450943315 -8922.0,0.13061632986952126 -8923.0,0.13057122437730337 -8924.0,0.13052613446128047 -8925.0,0.13048106011607372 -8926.0,0.130436001336306 -8927.0,0.13039095811660223 -8928.0,0.1303459304515891 -8929.0,0.13030091833589502 -8930.0,0.1302559217641504 -8931.0,0.13021094073098755 -8932.0,0.13016597523104054 -8933.0,0.13012102525894526 -8934.0,0.13007609080933952 -8935.0,0.130031171876863 -8936.0,0.12998626845615724 -8937.0,0.12994138054186546 -8938.0,0.12989650812863293 -8939.0,0.12985165121110673 -8940.0,0.12980680978393577 -8941.0,0.1297619838417707 -8942.0,0.12971717337926417 -8943.0,0.1296723783910706 -8944.0,0.12962759887184636 -8945.0,0.12958283481624944 -8946.0,0.1295380862189399 -8947.0,0.12949335307457951 -8948.0,0.129448635377832 -8949.0,0.12940393312336285 -8950.0,0.12935924630583936 -8951.0,0.12931457491993076 -8952.0,0.12926991896030807 -8953.0,0.12922527842164422 -8954.0,0.1291806532986138 -8955.0,0.12913604358589345 -8956.0,0.1290914492781615 -8957.0,0.12904687037009824 -8958.0,0.12900230685638567 -8959.0,0.12895775873170767 -8960.0,0.12891322599075006 -8961.0,0.12886870862820038 -8962.0,0.128824206638748 -8963.0,0.12877972001708413 -8964.0,0.1287352487579019 -8965.0,0.12869079285589619 -8966.0,0.12864635230576382 -8967.0,0.1286019271022032 -8968.0,0.1285575172399148 -8969.0,0.12851312271360085 -8970.0,0.1284687435179655 -8971.0,0.12842437964771444 -8972.0,0.12838003109755552 -8973.0,0.12833569786219823 -8974.0,0.12829137993635403 -8975.0,0.12824707731473597 -8976.0,0.12820278999205917 -8977.0,0.12815851796304042 -8978.0,0.12811426122239847 -8979.0,0.12807001976485372 -8980.0,0.12802579358512853 -8981.0,0.12798158267794701 -8982.0,0.12793738703803523 -8983.0,0.12789320666012083 -8984.0,0.12784904153893348 -8985.0,0.12780489166920458 -8986.0,0.1277607570456674 -8987.0,0.12771663766305705 -8988.0,0.12767253351611027 -8989.0,0.12762844459956585 -8990.0,0.1275843709081643 -8991.0,0.12754031243664798 -8992.0,0.12749626917976095 -8993.0,0.1274522411322492 -8994.0,0.12740822828886053 -8995.0,0.1273642306443446 -8996.0,0.12732024819345264 -8997.0,0.12727628093093799 -8998.0,0.1272323288515556 -8999.0,0.12718839195006243 -9000.0,0.127144470221217 -9001.0,0.12710056365977979 -9002.0,0.1270566722605131 -9003.0,0.12701279601818102 -9004.0,0.12696893492754943 -9005.0,0.12692508898338598 -9006.0,0.1268812581804602 -9007.0,0.12683744251354337 -9008.0,0.12679364197740867 -9009.0,0.1267498565668309 -9010.0,0.1267060862765869 -9011.0,0.12666233110145508 -9012.0,0.1266185910362159 -9013.0,0.12657486607565135 -9014.0,0.12653115621454541 -9015.0,0.12648746144768386 -9016.0,0.12644378176985424 -9017.0,0.1264001171758458 -9018.0,0.12635646766044967 -9019.0,0.12631283321845885 -9020.0,0.1262692138446681 -9021.0,0.12622560953387385 -9022.0,0.12618202028087447 -9023.0,0.12613844608047006 -9024.0,0.12609488692746254 -9025.0,0.1260513428166557 -9026.0,0.1260078137428549 -9027.0,0.12596429970086756 -9028.0,0.12592080068550268 -9029.0,0.1258773166915713 -9030.0,0.1258338477138859 -9031.0,0.12579039374726103 -9032.0,0.12574695478651296 -9033.0,0.12570353082645977 -9034.0,0.12566012186192124 -9035.0,0.12561672788771902 -9036.0,0.1255733488986765 -9037.0,0.12552998488961897 -9038.0,0.1254866358553733 -9039.0,0.12544330179076835 -9040.0,0.12539998269063463 -9041.0,0.1253566785498045 -9042.0,0.12531338936311218 -9043.0,0.12527011512539346 -9044.0,0.12522685583148607 -9045.0,0.12518361147622953 -9046.0,0.12514038205446512 -9047.0,0.1250971675610358 -9048.0,0.12505396799078647 -9049.0,0.12501078333856366 -9050.0,0.12496761359921592 -9051.0,0.12492445876759323 -9052.0,0.1248813188385476 -9053.0,0.12483819380693274 -9054.0,0.12479508366760424 -9055.0,0.12475198841541923 -9056.0,0.12470890804523685 -9057.0,0.12466584255191789 -9058.0,0.12462279193032504 -9059.0,0.12457975617532252 -9060.0,0.12453673528177657 -9061.0,0.12449372924455511 -9062.0,0.12445073805852781 -9063.0,0.12440776171856621 -9064.0,0.12436480021954344 -9065.0,0.12432185355633454 -9066.0,0.1242789217238163 -9067.0,0.12423600471686733 -9068.0,0.1241931025303678 -9069.0,0.12415021515919988 -9070.0,0.12410734259824742 -9071.0,0.12406448484239607 -9072.0,0.12402164188653311 -9073.0,0.12397881372554774 -9074.0,0.12393600035433089 -9075.0,0.12389320176777527 -9076.0,0.12385041796077523 -9077.0,0.123807648928227 -9078.0,0.12376489466502857 -9079.0,0.12372215516607968 -9080.0,0.12367943042628185 -9081.0,0.12363672044053822 -9082.0,0.12359402520375387 -9083.0,0.12355134471083555 -9084.0,0.12350867895669188 -9085.0,0.12346602793623299 -9086.0,0.12342339164437101 -9087.0,0.12338077007601972 -9088.0,0.12333816322609475 -9089.0,0.12329557108951332 -9090.0,0.12325299366119451 -9091.0,0.12321043093605917 -9092.0,0.12316788290902994 -9093.0,0.12312534957503102 -9094.0,0.12308283092898856 -9095.0,0.12304032696583038 -9096.0,0.12299783768048615 -9097.0,0.12295536306788707 -9098.0,0.12291290312296631 -9099.0,0.12287045784065868 -9100.0,0.12282802721590079 -9101.0,0.12278561124363102 -9102.0,0.12274320991878936 -9103.0,0.12270082323631766 -9104.0,0.12265845119115953 -9105.0,0.12261609377826034 -9106.0,0.12257375099256704 -9107.0,0.12253142282902851 -9108.0,0.12248910928259532 -9109.0,0.1224468103482198 -9110.0,0.12240452602085591 -9111.0,0.12236225629545948 -9112.0,0.12232000116698805 -9113.0,0.12227776063040091 -9114.0,0.12223553468065902 -9115.0,0.12219332331272514 -9116.0,0.12215112652156379 -9117.0,0.1221089443021412 -9118.0,0.12206677664942536 -9119.0,0.1220246235583859 -9120.0,0.12198248502399432 -9121.0,0.12194036104122377 -9122.0,0.12189825160504926 -9123.0,0.12185615671044729 -9124.0,0.12181407635239634 -9125.0,0.12177201052587651 -9126.0,0.1217299592258697 -9127.0,0.1216879224473594 -9128.0,0.12164590018533099 -9129.0,0.12160389243477152 -9130.0,0.1215618991906698 -9131.0,0.12151992044801625 -9132.0,0.12147795620180318 -9133.0,0.12143600644702454 -9134.0,0.12139407117867611 -9135.0,0.12135215039175518 -9136.0,0.12131024408126097 -9137.0,0.12126835224219437 -9138.0,0.12122647486955798 -9139.0,0.12118461195835621 -9140.0,0.12114276350359499 -9141.0,0.12110092950028215 -9142.0,0.12105910994342722 -9143.0,0.12101730482804149 -9144.0,0.12097551414913778 -9145.0,0.12093373790173084 -9146.0,0.12089197608083707 -9147.0,0.12085022868147463 -9148.0,0.12080849569866327 -9149.0,0.12076677712742458 -9150.0,0.12072507296278186 -9151.0,0.12068338319976014 -9152.0,0.12064170783338606 -9153.0,0.12060004685868807 -9154.0,0.12055840027069634 -9155.0,0.12051676806444273 -9156.0,0.12047515023496087 -9157.0,0.12043354677728597 -9158.0,0.12039195768645507 -9159.0,0.12035038295750691 -9160.0,0.12030882258548198 -9161.0,0.12026727656542231 -9162.0,0.12022574489237182 -9163.0,0.12018422756137612 -9164.0,0.12014272456748248 -9165.0,0.12010123590573986 -9166.0,0.12005976157119896 -9167.0,0.12001830155891224 -9168.0,0.11997685586393385 -9169.0,0.11993542448131952 -9170.0,0.11989400740612684 -9171.0,0.11985260463341506 -9172.0,0.11981121615824518 -9173.0,0.11976984197567976 -9174.0,0.1197284820807832 -9175.0,0.11968713646862156 -9176.0,0.11964580513426264 -9177.0,0.11960448807277593 -9178.0,0.11956318527923254 -9179.0,0.11952189674870536 -9180.0,0.119480622476269 -9181.0,0.11943936245699979 -9182.0,0.11939811668597558 -9183.0,0.11935688515827612 -9184.0,0.1193156678689828 -9185.0,0.11927446481317874 -9186.0,0.11923327598594861 -9187.0,0.11919210138237893 -9188.0,0.11915094099755788 -9189.0,0.11910979482657537 -9190.0,0.11906866286452286 -9191.0,0.11902754510649367 -9192.0,0.11898644154758274 -9193.0,0.11894535218288671 -9194.0,0.11890427700750399 -9195.0,0.11886321601653449 -9196.0,0.11882216920507999 -9197.0,0.11878113656824389 -9198.0,0.11874011810113139 -9199.0,0.11869911379884913 -9200.0,0.11865812365650569 -9201.0,0.11861714766921122 -9202.0,0.11857618583207764 -9203.0,0.1185352381402184 -9204.0,0.1184943045887488 -9205.0,0.11845338517278574 -9206.0,0.11841247988744791 -9207.0,0.11837158872785548 -9208.0,0.11833071168913052 -9209.0,0.11828984876639667 -9210.0,0.11824899995477935 -9211.0,0.11820816524940546 -9212.0,0.1181673446454038 -9213.0,0.11812653813790476 -9214.0,0.11808574572204042 -9215.0,0.1180449673929446 -9216.0,0.11800420314575262 -9217.0,0.11796345297560167 -9218.0,0.11792271687763055 -9219.0,0.1178819948469798 -9220.0,0.11784128687879146 -9221.0,0.11780059296820944 -9222.0,0.11775991311037921 -9223.0,0.11771924730044807 -9224.0,0.11767859553356473 -9225.0,0.11763795780487982 -9226.0,0.11759733410954552 -9227.0,0.11755672444271581 -9228.0,0.11751612879954612 -9229.0,0.11747554717519375 -9230.0,0.1174349795648176 -9231.0,0.11739442596357826 -9232.0,0.11735388636663803 -9233.0,0.11731336076916071 -9234.0,0.11727284916631198 -9235.0,0.11723235155325908 -9236.0,0.11719186792517097 -9237.0,0.11715139827721818 -9238.0,0.11711094260457303 -9239.0,0.11707050090240942 -9240.0,0.11703007316590303 -9241.0,0.11698965939023101 -9242.0,0.11694925957057234 -9243.0,0.11690887370210762 -9244.0,0.11686850178001917 -9245.0,0.1168281437994908 -9246.0,0.11678779975570816 -9247.0,0.11674746964385849 -9248.0,0.11670715345913074 -9249.0,0.11666685119671541 -9250.0,0.11662656285180478 -9251.0,0.11658628841959272 -9252.0,0.11654602789527481 -9253.0,0.1165057812740483 -9254.0,0.11646554855111196 -9255.0,0.11642532972166637 -9256.0,0.11638512478091373 -9257.0,0.11634493372405792 -9258.0,0.11630475654630434 -9259.0,0.11626459324286022 -9260.0,0.11622444380893433 -9261.0,0.11618430823973722 -9262.0,0.11614418653048088 -9263.0,0.11610407867637916 -9264.0,0.11606398467264746 -9265.0,0.11602390451450294 -9266.0,0.1159838381971642 -9267.0,0.11594378571585166 -9268.0,0.1159037470657874 -9269.0,0.11586372224219506 -9270.0,0.11582371124030004 -9271.0,0.11578371405532921 -9272.0,0.11574373068251124 -9273.0,0.11570376111707643 -9274.0,0.11566380535425673 -9275.0,0.11562386338928561 -9276.0,0.11558393521739835 -9277.0,0.1155440208338318 -9278.0,0.11550412023382452 -9279.0,0.11546423341261655 -9280.0,0.11542436036544974 -9281.0,0.11538450108756752 -9282.0,0.11534465557421503 -9283.0,0.11530482382063888 -9284.0,0.11526500582208749 -9285.0,0.11522520157381085 -9286.0,0.11518541107106062 -9287.0,0.11514563430909013 -9288.0,0.11510587128315419 -9289.0,0.11506612198850942 -9290.0,0.11502638642041403 -9291.0,0.11498666457412789 -9292.0,0.11494695644491237 -9293.0,0.11490726202803064 -9294.0,0.11486758131874746 -9295.0,0.11482791431232922 -9296.0,0.11478826100404387 -9297.0,0.1147486213891611 -9298.0,0.11470899546295218 -9299.0,0.1146693832206901 -9300.0,0.11462978465764931 -9301.0,0.114590199769106 -9302.0,0.11455062855033803 -9303.0,0.11451107099662486 -9304.0,0.11447152710324747 -9305.0,0.1144319968654886 -9306.0,0.11439248027863262 -9307.0,0.11435297733796546 -9308.0,0.11431348803877475 -9309.0,0.11427401237634961 -9310.0,0.11423455034598096 -9311.0,0.11419510194296123 -9312.0,0.11415566716258457 -9313.0,0.11411624600014662 -9314.0,0.11407683845094475 -9315.0,0.11403744451027795 -9316.0,0.11399806417344684 -9317.0,0.11395869743575353 -9318.0,0.11391934429250192 -9319.0,0.11388000473899745 -9320.0,0.11384067877054727 -9321.0,0.11380136638245997 -9322.0,0.11376206757004591 -9323.0,0.11372278232861703 -9324.0,0.1136835106534869 -9325.0,0.11364425253997074 -9326.0,0.11360500798338523 -9327.0,0.11356577697904885 -9328.0,0.11352655952228162 -9329.0,0.11348735560840523 -9330.0,0.11344816523274283 -9331.0,0.11340898839061936 -9332.0,0.1133698250773613 -9333.0,0.11333067528829681 -9334.0,0.11329153901875551 -9335.0,0.11325241626406875 -9336.0,0.1132133070195695 -9337.0,0.11317421128059235 -9338.0,0.11313512904247337 -9339.0,0.11309606030055037 -9340.0,0.11305700505016275 -9341.0,0.11301796328665155 -9342.0,0.11297893500535927 -9343.0,0.11293992020163016 -9344.0,0.11290091887081005 -9345.0,0.11286193100824637 -9346.0,0.11282295660928819 -9347.0,0.11278399566928606 -9348.0,0.11274504818359227 -9349.0,0.11270611414756065 -9350.0,0.11266719355654674 -9351.0,0.11262828640590747 -9352.0,0.11258939269100156 -9353.0,0.11255051240718926 -9354.0,0.1125116455498325 -9355.0,0.11247279211429466 -9356.0,0.11243395209594084 -9357.0,0.1123951254901377 -9358.0,0.11235631229225358 -9359.0,0.11231751249765824 -9360.0,0.11227872610172321 -9361.0,0.11223995309982152 -9362.0,0.11220119348732786 -9363.0,0.11216244725961855 -9364.0,0.11212371441207132 -9365.0,0.1120849949400657 -9366.0,0.11204628883898272 -9367.0,0.11200759610420509 -9368.0,0.11196891673111693 -9369.0,0.11193025071510415 -9370.0,0.11189159805155414 -9371.0,0.111852958735856 -9372.0,0.11181433276340023 -9373.0,0.11177572012957909 -9374.0,0.11173712082978636 -9375.0,0.1116985348594175 -9376.0,0.11165996221386934 -9377.0,0.11162140288854054 -9378.0,0.11158285687883124 -9379.0,0.1115443241801432 -9380.0,0.1115058047878797 -9381.0,0.11146729869744569 -9382.0,0.11142880590424767 -9383.0,0.11139032640369373 -9384.0,0.11135186019119359 -9385.0,0.11131340726215842 -9386.0,0.1112749676120011 -9387.0,0.11123654123613609 -9388.0,0.11119812812997944 -9389.0,0.11115972828894864 -9390.0,0.11112134170846293 -9391.0,0.11108296838394305 -9392.0,0.11104460831081141 -9393.0,0.11100626148449183 -9394.0,0.11096792790040985 -9395.0,0.11092960755399259 -9396.0,0.11089130044066871 -9397.0,0.1108530065558684 -9398.0,0.11081472589502349 -9399.0,0.1107764584535674 -9400.0,0.1107382042269351 -9401.0,0.11069996321056318 -9402.0,0.11066173539988967 -9403.0,0.11062352079035433 -9404.0,0.11058531937739842 -9405.0,0.11054713115646485 -9406.0,0.11050895612299795 -9407.0,0.11047079427244375 -9408.0,0.11043264560024982 -9409.0,0.11039451010186536 -9410.0,0.110356387772741 -9411.0,0.11031827860832905 -9412.0,0.11028018260408337 -9413.0,0.11024209975545943 -9414.0,0.11020403005791414 -9415.0,0.11016597350690609 -9416.0,0.11012793009789543 -9417.0,0.1100898998263439 -9418.0,0.11005188268771467 -9419.0,0.11001387867747262 -9420.0,0.10997588779108414 -9421.0,0.10993791002401722 -9422.0,0.1098999453717414 -9423.0,0.10986199382972772 -9424.0,0.10982405539344885 -9425.0,0.10978613005837903 -9426.0,0.10974821781999408 -9427.0,0.10971031867377126 -9428.0,0.10967243261518954 -9429.0,0.10963455963972936 -9430.0,0.10959669974287281 -9431.0,0.1095588529201034 -9432.0,0.10952101916690629 -9433.0,0.10948319847876822 -9434.0,0.10944539085117751 -9435.0,0.10940759627962388 -9436.0,0.10936981475959874 -9437.0,0.10933204628659506 -9438.0,0.10929429085610733 -9439.0,0.10925654846363164 -9440.0,0.10921881910466551 -9441.0,0.10918110277470815 -9442.0,0.10914339946926029 -9443.0,0.10910570918382421 -9444.0,0.10906803191390367 -9445.0,0.1090303676550041 -9446.0,0.10899271640263239 -9447.0,0.10895507815229712 -9448.0,0.10891745289950817 -9449.0,0.10887984063977722 -9450.0,0.10884224136861738 -9451.0,0.10880465508154337 -9452.0,0.10876708177407134 -9453.0,0.1087295214417191 -9454.0,0.10869197408000598 -9455.0,0.10865443968445292 -9456.0,0.10861691825058223 -9457.0,0.10857940977391792 -9458.0,0.10854191424998551 -9459.0,0.10850443167431206 -9460.0,0.10846696204242622 -9461.0,0.10842950534985801 -9462.0,0.10839206159213922 -9463.0,0.10835463076480305 -9464.0,0.10831721286338432 -9465.0,0.10827980788341926 -9466.0,0.10824241582044579 -9467.0,0.1082050366700033 -9468.0,0.10816767042763276 -9469.0,0.10813031708887656 -9470.0,0.10809297664927879 -9471.0,0.10805564910438499 -9472.0,0.1080183344497423 -9473.0,0.10798103268089927 -9474.0,0.10794374379340611 -9475.0,0.10790646778281454 -9476.0,0.1078692046446778 -9477.0,0.10783195437455069 -9478.0,0.10779471696798947 -9479.0,0.107757492420552 -9480.0,0.1077202807277977 -9481.0,0.10768308188528751 -9482.0,0.10764589588858378 -9483.0,0.10760872273325056 -9484.0,0.10757156241485334 -9485.0,0.10753441492895922 -9486.0,0.1074972802711367 -9487.0,0.10746015843695592 -9488.0,0.10742304942198849 -9489.0,0.10738595322180768 -9490.0,0.10734886983198803 -9491.0,0.10731179924810584 -9492.0,0.10727474146573886 -9493.0,0.10723769648046641 -9494.0,0.10720066428786919 -9495.0,0.10716364488352959 -9496.0,0.10712663826303145 -9497.0,0.10708964442196017 -9498.0,0.10705266335590269 -9499.0,0.10701569506044735 -9500.0,0.10697873953118413 -9501.0,0.10694179676370454 -9502.0,0.10690486675360159 -9503.0,0.1068679494964697 -9504.0,0.106831044987905 -9505.0,0.10679415322350502 -9506.0,0.10675727419886889 -9507.0,0.10672040790959714 -9508.0,0.1066835543512919 -9509.0,0.10664671351955683 -9510.0,0.10660988540999715 -9511.0,0.10657307001821942 -9512.0,0.10653626733983187 -9513.0,0.10649947737044424 -9514.0,0.10646270010566773 -9515.0,0.10642593554111514 -9516.0,0.10638918367240062 -9517.0,0.10635244449513999 -9518.0,0.10631571800495054 -9519.0,0.10627900419745112 -9520.0,0.10624230306826193 -9521.0,0.10620561461300486 -9522.0,0.10616893882730322 -9523.0,0.10613227570678192 -9524.0,0.10609562524706723 -9525.0,0.10605898744378704 -9526.0,0.10602236229257075 -9527.0,0.10598574978904929 -9528.0,0.10594914992885494 -9529.0,0.10591256270762167 -9530.0,0.10587598812098489 -9531.0,0.10583942616458157 -9532.0,0.10580287683405003 -9533.0,0.10576634012503025 -9534.0,0.10572981603316367 -9535.0,0.10569330455409325 -9536.0,0.10565680568346345 -9537.0,0.10562031941692013 -9538.0,0.10558384575011082 -9539.0,0.10554738467868445 -9540.0,0.10551093619829155 -9541.0,0.10547450030458398 -9542.0,0.10543807699321524 -9543.0,0.1054016662598403 -9544.0,0.10536526810011568 -9545.0,0.10532888250969923 -9546.0,0.1052925094842505 -9547.0,0.10525614901943041 -9548.0,0.10521980111090148 -9549.0,0.1051834657543276 -9550.0,0.10514714294537425 -9551.0,0.1051108326797084 -9552.0,0.1050745349529985 -9553.0,0.10503824976091451 -9554.0,0.10500197709912781 -9555.0,0.10496571696331138 -9556.0,0.10492946934913965 -9557.0,0.10489323425228857 -9558.0,0.10485701166843547 -9559.0,0.10482080159325934 -9560.0,0.10478460402244054 -9561.0,0.10474841895166104 -9562.0,0.1047122463766041 -9563.0,0.10467608629295468 -9564.0,0.10463993869639912 -9565.0,0.10460380358262533 -9566.0,0.10456768094732255 -9567.0,0.10453157078618168 -9568.0,0.10449547309489503 -9569.0,0.10445938786915646 -9570.0,0.10442331510466116 -9571.0,0.10438725479710598 -9572.0,0.10435120694218916 -9573.0,0.10431517153561047 -9574.0,0.1042791485730712 -9575.0,0.10424313805027398 -9576.0,0.10420713996292305 -9577.0,0.10417115430672412 -9578.0,0.1041351810773844 -9579.0,0.10409922027061244 -9580.0,0.10406327188211843 -9581.0,0.10402733590761401 -9582.0,0.10399141234281231 -9583.0,0.10395550118342783 -9584.0,0.10391960242517666 -9585.0,0.10388371606377635 -9586.0,0.10384784209494595 -9587.0,0.10381198051440589 -9588.0,0.10377613131787816 -9589.0,0.10374029450108625 -9590.0,0.10370447005975507 -9591.0,0.10366865798961106 -9592.0,0.10363285828638202 -9593.0,0.10359707094579736 -9594.0,0.1035612959635879 -9595.0,0.10352553333548599 -9596.0,0.10348978305722534 -9597.0,0.1034540451245412 -9598.0,0.10341831953317035 -9599.0,0.103382606278851 -9600.0,0.10334690535732274 -9601.0,0.10331121676432675 -9602.0,0.10327554049560565 -9603.0,0.10323987654690356 -9604.0,0.10320422491396594 -9605.0,0.10316858559253986 -9606.0,0.10313295857837379 -9607.0,0.10309734386721776 -9608.0,0.1030617414548231 -9609.0,0.10302615133694272 -9610.0,0.102990573509331 -9611.0,0.10295500796774376 -9612.0,0.10291945470793835 -9613.0,0.10288391372567342 -9614.0,0.10284838501670923 -9615.0,0.10281286857680746 -9616.0,0.10277736440173134 -9617.0,0.10274187248724535 -9618.0,0.10270639282911562 -9619.0,0.1026709254231097 -9620.0,0.10263547026499661 -9621.0,0.10260002735054673 -9622.0,0.10256459667553203 -9623.0,0.10252917823572587 -9624.0,0.10249377202690316 -9625.0,0.10245837804484008 -9626.0,0.10242299628531444 -9627.0,0.10238762674410545 -9628.0,0.10235226941699381 -9629.0,0.10231692429976166 -9630.0,0.10228159138819251 -9631.0,0.10224627067807145 -9632.0,0.10221096216518497 -9633.0,0.10217566584532106 -9634.0,0.10214038171426905 -9635.0,0.10210510976781983 -9636.0,0.10206985000176574 -9637.0,0.10203460241190056 -9638.0,0.10199936699401944 -9639.0,0.1019641437439191 -9640.0,0.10192893265739765 -9641.0,0.1018937337302547 -9642.0,0.10185854695829122 -9643.0,0.10182337233730969 -9644.0,0.10178820986311406 -9645.0,0.10175305953150975 -9646.0,0.10171792133830346 -9647.0,0.10168279527930354 -9648.0,0.1016476813503197 -9649.0,0.10161257954716309 -9650.0,0.10157748986564637 -9651.0,0.10154241230158352 -9652.0,0.10150734685079008 -9653.0,0.10147229350908299 -9654.0,0.10143725227228069 -9655.0,0.10140222313620294 -9656.0,0.10136720609667105 -9657.0,0.10133220114950774 -9658.0,0.10129720829053722 -9659.0,0.10126222751558502 -9660.0,0.10122725882047823 -9661.0,0.10119230220104533 -9662.0,0.1011573576531163 -9663.0,0.10112242517252243 -9664.0,0.10108750475509656 -9665.0,0.10105259639667295 -9666.0,0.10101770009308728 -9667.0,0.10098281584017672 -9668.0,0.10094794363377975 -9669.0,0.10091308346973642 -9670.0,0.10087823534388814 -9671.0,0.10084339925207786 -9672.0,0.10080857519014977 -9673.0,0.10077376315394967 -9674.0,0.10073896313932475 -9675.0,0.10070417514212365 -9676.0,0.10066939915819634 -9677.0,0.10063463518339433 -9678.0,0.10059988321357054 -9679.0,0.10056514324457935 -9680.0,0.10053041527227646 -9681.0,0.10049569929251911 -9682.0,0.10046099530116594 -9683.0,0.10042630329407705 -9684.0,0.10039162326711387 -9685.0,0.10035695521613934 -9686.0,0.10032229913701785 -9687.0,0.10028765502561515 -9688.0,0.10025302287779853 -9689.0,0.10021840268943649 -9690.0,0.10018379445639918 -9691.0,0.10014919817455807 -9692.0,0.10011461383978613 -9693.0,0.10008004144795761 -9694.0,0.10004548099494831 -9695.0,0.10001093247663544 -9696.0,0.09997639588889763 -9697.0,0.09994187122761486 -9698.0,0.09990735848866862 -9699.0,0.09987285766794178 -9700.0,0.0998383687613187 -9701.0,0.09980389176468502 -9702.0,0.09976942667392792 -9703.0,0.09973497348493597 -9704.0,0.09970053219359916 -9705.0,0.09966610279580893 -9706.0,0.09963168528745803 -9707.0,0.09959727966444072 -9708.0,0.0995628859226527 -9709.0,0.09952850405799106 -9710.0,0.09949413406635421 -9711.0,0.09945977594364211 -9712.0,0.0994254296857561 -9713.0,0.09939109528859894 -9714.0,0.09935677274807471 -9715.0,0.09932246206008903 -9716.0,0.09928816322054888 -9717.0,0.0992538762253627 -9718.0,0.09921960107044023 -9719.0,0.0991853377516927 -9720.0,0.09915108626503279 -9721.0,0.09911684660637457 -9722.0,0.09908261877163341 -9723.0,0.09904840275672623 -9724.0,0.0990141985575713 -9725.0,0.09898000617008831 -9726.0,0.09894582559019842 -9727.0,0.09891165681382401 -9728.0,0.09887749983688908 -9729.0,0.09884335465531892 -9730.0,0.09880922126504033 -9731.0,0.09877509966198132 -9732.0,0.09874098984207151 -9733.0,0.09870689180124183 -9734.0,0.09867280553542469 -9735.0,0.09863873104055375 -9736.0,0.0986046683125642 -9737.0,0.09857061734739264 -9738.0,0.09853657814097706 -9739.0,0.09850255068925674 -9740.0,0.0984685349881725 -9741.0,0.09843453103366652 -9742.0,0.09840053882168238 -9743.0,0.09836655834816509 -9744.0,0.09833258960906094 -9745.0,0.09829863260031776 -9746.0,0.09826468731788472 -9747.0,0.09823075375771245 -9748.0,0.09819683191575282 -9749.0,0.09816292178795924 -9750.0,0.0981290233702865 -9751.0,0.09809513665869081 -9752.0,0.09806126164912964 -9753.0,0.09802739833756197 -9754.0,0.09799354671994817 -9755.0,0.09795970679225005 -9756.0,0.09792587855043064 -9757.0,0.09789206199045454 -9758.0,0.09785825710828766 -9759.0,0.0978244638998974 -9760.0,0.09779068236125234 -9761.0,0.09775691248832268 -9762.0,0.0977231542770799 -9763.0,0.0976894077234969 -9764.0,0.09765567282354799 -9765.0,0.09762194957320876 -9766.0,0.09758823796845634 -9767.0,0.09755453800526914 -9768.0,0.09752084967962707 -9769.0,0.09748717298751128 -9770.0,0.09745350792490441 -9771.0,0.09741985448779046 -9772.0,0.09738621267215489 -9773.0,0.09735258247398436 -9774.0,0.0973189638892671 -9775.0,0.09728535691399263 -9776.0,0.09725176154415197 -9777.0,0.09721817777573731 -9778.0,0.0971846056047424 -9779.0,0.09715104502716235 -9780.0,0.0971174960389936 -9781.0,0.09708395863623406 -9782.0,0.09705043281488288 -9783.0,0.09701691857094069 -9784.0,0.09698341590040951 -9785.0,0.09694992479929276 -9786.0,0.0969164452635951 -9787.0,0.0968829772893227 -9788.0,0.0968495208724831 -9789.0,0.0968160760090852 -9790.0,0.09678264269513923 -9791.0,0.09674922092665685 -9792.0,0.0967158106996511 -9793.0,0.09668241201013641 -9794.0,0.0966490248541285 -9795.0,0.09661564922764455 -9796.0,0.0965822851267031 -9797.0,0.09654893254732409 -9798.0,0.09651559148552873 -9799.0,0.09648226193733969 -9800.0,0.09644894389878103 -9801.0,0.09641563736587813 -9802.0,0.09638234233465783 -9803.0,0.09634905880114815 -9804.0,0.09631578676137868 -9805.0,0.0962825262113803 -9806.0,0.09624927714718531 -9807.0,0.09621603956482726 -9808.0,0.09618281346034117 -9809.0,0.09614959882976346 -9810.0,0.09611639566913184 -9811.0,0.09608320397448539 -9812.0,0.09605002374186458 -9813.0,0.09601685496731129 -9814.0,0.09598369764686873 -9815.0,0.09595055177658142 -9816.0,0.09591741735249533 -9817.0,0.09588429437065776 -9818.0,0.09585118282711738 -9819.0,0.09581808271792427 -9820.0,0.09578499403912977 -9821.0,0.09575191678678663 -9822.0,0.09571885095694901 -9823.0,0.09568579654567246 -9824.0,0.09565275354901369 -9825.0,0.09561972196303099 -9826.0,0.09558670178378392 -9827.0,0.09555369300733348 -9828.0,0.09552069562974184 -9829.0,0.09548770964707272 -9830.0,0.09545473505539114 -9831.0,0.09542177185076349 -9832.0,0.09538882002925743 -9833.0,0.0953558795869421 -9834.0,0.09532295051988791 -9835.0,0.09529003282416675 -9836.0,0.09525712649585166 -9837.0,0.09522423153101722 -9838.0,0.09519134792573929 -9839.0,0.09515847567609509 -9840.0,0.09512561477816325 -9841.0,0.09509276522802362 -9842.0,0.09505992702175754 -9843.0,0.09502710015544763 -9844.0,0.09499428462517794 -9845.0,0.09496148042703371 -9846.0,0.09492868755710172 -9847.0,0.09489590601147 -9848.0,0.09486313578622799 -9849.0,0.09483037687746636 -9850.0,0.09479762928127725 -9851.0,0.0947648929937541 -9852.0,0.09473216801099178 -9853.0,0.09469945432908633 -9854.0,0.0946667519441353 -9855.0,0.09463406085223752 -9856.0,0.09460138104949321 -9857.0,0.09456871253200393 -9858.0,0.09453605529587247 -9859.0,0.09450340933720312 -9860.0,0.09447077465210145 -9861.0,0.09443815123667441 -9862.0,0.0944055390870302 -9863.0,0.09437293819927846 -9864.0,0.09434034856953015 -9865.0,0.09430777019389759 -9866.0,0.09427520306849434 -9867.0,0.09424264718943544 -9868.0,0.09421010255283718 -9869.0,0.09417756915481729 -9870.0,0.09414504699149467 -9871.0,0.09411253605898971 -9872.0,0.09408003635342412 -9873.0,0.09404754787092091 -9874.0,0.0940150706076044 -9875.0,0.09398260455960034 -9876.0,0.09395014972303571 -9877.0,0.09391770609403895 -9878.0,0.09388527366873976 -9879.0,0.09385285244326914 -9880.0,0.09382044241375952 -9881.0,0.09378804357634458 -9882.0,0.09375565592715945 -9883.0,0.09372327946234042 -9884.0,0.09369091417802528 -9885.0,0.09365856007035306 -9886.0,0.0936262171354642 -9887.0,0.09359388536950035 -9888.0,0.0935615647686046 -9889.0,0.09352925532892133 -9890.0,0.09349695704659632 -9891.0,0.09346466991777652 -9892.0,0.09343239393861036 -9893.0,0.09340012910524755 -9894.0,0.09336787541383913 -9895.0,0.09333563286053752 -9896.0,0.09330340144149632 -9897.0,0.09327118115287061 -9898.0,0.09323897199081675 -9899.0,0.09320677395149245 -9900.0,0.09317458703105663 -9901.0,0.09314241122566969 -9902.0,0.09311024653149326 -9903.0,0.0930780929446904 -9904.0,0.09304595046142532 -9905.0,0.09301381907786369 -9906.0,0.0929816987901725 -9907.0,0.09294958959452004 -9908.0,0.09291749148707586 -9909.0,0.09288540446401092 -9910.0,0.09285332852149748 -9911.0,0.09282126365570914 -9912.0,0.09278920986282073 -9913.0,0.0927571671390085 -9914.0,0.09272513548044999 -9915.0,0.09269311488332405 -9916.0,0.0926611053438109 -9917.0,0.09262910685809195 -9918.0,0.09259711942235006 -9919.0,0.09256514303276937 -9920.0,0.09253317768553536 -9921.0,0.09250122337683471 -9922.0,0.09246928010285554 -9923.0,0.09243734785978729 -9924.0,0.09240542664382068 -9925.0,0.09237351645114766 -9926.0,0.09234161727796164 -9927.0,0.09230972912045726 -9928.0,0.09227785197483054 -9929.0,0.09224598583727871 -9930.0,0.09221413070400038 -9931.0,0.09218228657119548 -9932.0,0.09215045343506524 -9933.0,0.09211863129181223 -9934.0,0.09208682013764023 -9935.0,0.09205501996875444 -9936.0,0.09202323078136132 -9937.0,0.09199145257166871 -9938.0,0.09195968533588561 -9939.0,0.09192792907022246 -9940.0,0.09189618377089097 -9941.0,0.09186444943410421 -9942.0,0.0918327260560764 -9943.0,0.09180101363302323 -9944.0,0.09176931216116163 -9945.0,0.0917376216367099 -9946.0,0.0917059420558875 -9947.0,0.09167427341491532 -9948.0,0.09164261571001554 -9949.0,0.09161096893741166 -9950.0,0.09157933309332836 -9951.0,0.09154770817399177 -9952.0,0.09151609417562927 -9953.0,0.09148449109446952 -9954.0,0.09145289892674255 -9955.0,0.09142131766867957 -9956.0,0.09138974731651321 -9957.0,0.09135818786647734 -9958.0,0.09132663931480721 -9959.0,0.09129510165773923 -9960.0,0.0912635748915112 -9961.0,0.09123205901236223 -9962.0,0.09120055401653272 -9963.0,0.0911690599002643 -9964.0,0.09113757665979999 -9965.0,0.09110610429138406 -9966.0,0.09107464279126212 -9967.0,0.09104319215568098 -9968.0,0.09101175238088884 -9969.0,0.09098032346313514 -9970.0,0.09094890539867069 -9971.0,0.09091749818374754 -9972.0,0.09088610181461898 -9973.0,0.09085471628753967 -9974.0,0.09082334159876558 -9975.0,0.09079197774455396 -9976.0,0.09076062472116324 -9977.0,0.0907292825248533 -9978.0,0.09069795115188521 -9979.0,0.09066663059852142 -9980.0,0.09063532086102556 -9981.0,0.09060402193566262 -9982.0,0.09057273381869888 -9983.0,0.09054145650640191 -9984.0,0.0905101899950405 -9985.0,0.09047893428088483 -9986.0,0.0904476893602063 -9987.0,0.09041645522927766 -9988.0,0.09038523188437284 -9989.0,0.09035401932176715 -9990.0,0.09032281753773717 -9991.0,0.09029162652856075 -9992.0,0.09026044629051706 -9993.0,0.09022927681988646 -9994.0,0.0901981181129507 -9995.0,0.09016697016599276 -9996.0,0.09013583297529697 -9997.0,0.09010470653714879 -9998.0,0.09007359084783513 -9999.0,0.0900424859036441 -10000.0,0.09001139170086514 -10001.0,0.08998030823578887 -10002.0,0.0899492355047073 -10003.0,0.08991817350391368 -10004.0,0.08988712222970258 -10005.0,0.08985608167836971 -10006.0,0.08982505184621221 -10007.0,0.08979403272952848 -10008.0,0.08976302432461811 -10009.0,0.08973202662778211 -10010.0,0.08970103963532257 -10011.0,0.08967006334354302 -10012.0,0.0896390977487482 -10013.0,0.08960814284724421 -10014.0,0.08957719863533826 -10015.0,0.08954626510933897 -10016.0,0.08951534226555619 -10017.0,0.08948443010030109 -10018.0,0.08945352860988602 -10019.0,0.08942263779062466 -10020.0,0.08939175763883199 -10021.0,0.08936088815082426 -10022.0,0.08933002932291888 -10023.0,0.08929918115143468 -10024.0,0.08926834363269166 -10025.0,0.0892375167630112 -10026.0,0.0892067005387158 -10027.0,0.08917589495612932 -10028.0,0.08914510001157691 -10029.0,0.08911431570138494 -10030.0,0.08908354202188111 -10031.0,0.08905277896939427 -10032.0,0.08902202654025465 -10033.0,0.08899128473079371 -10034.0,0.08896055353734421 -10035.0,0.08892983295624006 -10036.0,0.08889912298381657 -10037.0,0.08886842361641026 -10038.0,0.08883773485035895 -10039.0,0.08880705668200163 -10040.0,0.08877638910767865 -10041.0,0.0887457321237316 -10042.0,0.08871508572650336 -10043.0,0.08868444991233794 -10044.0,0.08865382467758078 -10045.0,0.0886232100185785 -10046.0,0.08859260593167899 -10047.0,0.08856201241323144 -10048.0,0.08853142945958621 -10049.0,0.088500857067095 -10050.0,0.08847029523211074 -10051.0,0.08843974395098769 -10052.0,0.0884092032200812 -10053.0,0.08837867303574802 -10054.0,0.08834815339434617 -10055.0,0.08831764429223486 -10056.0,0.08828714572577452 -10057.0,0.08825665769132694 -10058.0,0.08822618018525512 -10059.0,0.08819571320392335 -10060.0,0.08816525674369706 -10061.0,0.08813481080094306 -10062.0,0.08810437537202936 -10063.0,0.08807395045332529 -10064.0,0.08804353604120128 -10065.0,0.08801313213202919 -10066.0,0.08798273872218201 -10067.0,0.08795235580803405 -10068.0,0.0879219833859609 -10069.0,0.08789162145233925 -10070.0,0.0878612700035472 -10071.0,0.08783092903596404 -10072.0,0.08780059854597033 -10073.0,0.08777027852994781 -10074.0,0.08773996898427958 -10075.0,0.08770966990534988 -10076.0,0.08767938128954433 -10077.0,0.08764910313324964 -10078.0,0.08761883543285386 -10079.0,0.0875885781847463 -10080.0,0.08755833138531752 -10081.0,0.08752809503095921 -10082.0,0.08749786911806444 -10083.0,0.08746765364302748 -10084.0,0.08743744860224385 -10085.0,0.08740725399211034 -10086.0,0.08737706980902488 -10087.0,0.08734689604938675 -10088.0,0.08731673270959645 -10089.0,0.08728657978605574 -10090.0,0.08725643727516752 -10091.0,0.08722630517333606 -10092.0,0.08719618347696681 -10093.0,0.08716607218246651 -10094.0,0.08713597128624304 -10095.0,0.08710588078470559 -10096.0,0.0870758006742646 -10097.0,0.08704573095133178 -10098.0,0.08701567161231993 -10099.0,0.08698562265364326 -10100.0,0.08695558407171712 -10101.0,0.08692555586295819 -10102.0,0.08689553802378422 -10103.0,0.08686553055061436 -10104.0,0.08683553343986893 -10105.0,0.08680554668796948 -10106.0,0.08677557029133888 -10107.0,0.08674560424640106 -10108.0,0.08671564854958133 -10109.0,0.0866857031973062 -10110.0,0.08665576818600346 -10111.0,0.08662584351210198 -10112.0,0.08659592917203202 -10113.0,0.086566025162225 -10114.0,0.08653613147911364 -10115.0,0.08650624811913177 -10116.0,0.08647637507871456 -10117.0,0.08644651235429836 -10118.0,0.08641665994232081 -10119.0,0.08638681783922067 -10120.0,0.08635698604143802 -10121.0,0.08632716454541414 -10122.0,0.08629735334759156 -10123.0,0.08626755244441404 -10124.0,0.0862377618323265 -10125.0,0.08620798150777514 -10126.0,0.08617821146720742 -10127.0,0.086148451707072 -10128.0,0.08611870222381869 -10129.0,0.08608896301389865 -10130.0,0.08605923407376419 -10131.0,0.0860295153998689 -10132.0,0.08599980698866751 -10133.0,0.08597010883661602 -10134.0,0.08594042094017168 -10135.0,0.08591074329579299 -10136.0,0.08588107589993951 -10137.0,0.08585141874907222 -10138.0,0.08582177183965321 -10139.0,0.08579213516814586 -10140.0,0.08576250873101467 -10141.0,0.08573289252472543 -10142.0,0.08570328654574517 -10143.0,0.08567369079054211 -10144.0,0.08564410525558572 -10145.0,0.08561452993734658 -10146.0,0.08558496483229663 -10147.0,0.08555540993690897 -10148.0,0.08552586524765791 -10149.0,0.08549633076101897 -10150.0,0.08546680647346888 -10151.0,0.08543729238148565 -10152.0,0.08540778848154848 -10153.0,0.08537829477013771 -10154.0,0.08534881124373499 -10155.0,0.08531933789882312 -10156.0,0.08528987473188623 -10157.0,0.08526042173940948 -10158.0,0.08523097891787938 -10159.0,0.08520154626378361 -10160.0,0.08517212377361108 -10161.0,0.08514271144385194 -10162.0,0.08511330927099743 -10163.0,0.08508391725154013 -10164.0,0.08505453538197379 -10165.0,0.0850251636587934 -10166.0,0.08499580207849503 -10167.0,0.08496645063757613 -10168.0,0.08493710933253527 -10169.0,0.08490777815987229 -10170.0,0.0848784571160881 -10171.0,0.084849146197685 -10172.0,0.08481984540116634 -10173.0,0.08479055472303684 -10174.0,0.08476127415980225 -10175.0,0.08473200370796966 -10176.0,0.08470274336404728 -10177.0,0.08467349312454463 -10178.0,0.0846442529859723 -10179.0,0.08461502294484217 -10180.0,0.08458580299766733 -10181.0,0.08455659314096203 -10182.0,0.08452739337124182 -10183.0,0.08449820368502327 -10184.0,0.08446902407882433 -10185.0,0.08443985454916406 -10186.0,0.08441069509256278 -10187.0,0.08438154570554195 -10188.0,0.08435240638462425 -10189.0,0.08432327712633361 -10190.0,0.08429415792719512 -10191.0,0.08426504878373503 -10192.0,0.08423594969248085 -10193.0,0.08420686064996127 -10194.0,0.08417778165270623 -10195.0,0.08414871269724675 -10196.0,0.08411965378011511 -10197.0,0.08409060489784484 -10198.0,0.0840615660469706 -10199.0,0.08403253722402831 -10200.0,0.08400351842555495 -10201.0,0.08397450964808886 -10202.0,0.08394551088816947 -10203.0,0.0839165221423375 -10204.0,0.08388754340713472 -10205.0,0.08385857467910422 -10206.0,0.08382961595479023 -10207.0,0.08380066723073824 -10208.0,0.08377172850349479 -10209.0,0.08374279976960775 -10210.0,0.08371388102562612 -10211.0,0.08368497226810015 -10212.0,0.08365607349358116 -10213.0,0.08362718469862178 -10214.0,0.08359830587977576 -10215.0,0.08356943703359815 -10216.0,0.08354057815664499 -10217.0,0.0835117292454737 -10218.0,0.08348289029664278 -10219.0,0.08345406130671199 -10220.0,0.08342524227224225 -10221.0,0.0833964331897956 -10222.0,0.08336763405593535 -10223.0,0.08333884486722598 -10224.0,0.0833100656202332 -10225.0,0.08328129631152377 -10226.0,0.08325253693766575 -10227.0,0.08322378749522837 -10228.0,0.08319504798078206 -10229.0,0.08316631839089834 -10230.0,0.08313759872215001 -10231.0,0.08310888897111102 -10232.0,0.08308018913435655 -10233.0,0.08305149920846285 -10234.0,0.08302281919000744 -10235.0,0.08299414907556901 -10236.0,0.08296548886172743 -10237.0,0.08293683854506378 -10238.0,0.08290819812216021 -10239.0,0.08287956758960018 -10240.0,0.08285094694396825 -10241.0,0.08282233618185023 -10242.0,0.08279373529983299 -10243.0,0.0827651442945047 -10244.0,0.08273656316245466 -10245.0,0.08270799190027338 -10246.0,0.08267943050455245 -10247.0,0.08265087897188474 -10248.0,0.08262233729886424 -10249.0,0.0825938054820862 -10250.0,0.0825652835181469 -10251.0,0.08253677140364392 -10252.0,0.08250826913517595 -10253.0,0.08247977670934294 -10254.0,0.08245129412274586 -10255.0,0.08242282137198699 -10256.0,0.08239435845366974 -10257.0,0.0823659053643987 -10258.0,0.08233746210077963 -10259.0,0.08230902865941943 -10260.0,0.08228060503692619 -10261.0,0.08225219122990919 -10262.0,0.08222378723497892 -10263.0,0.08219539304874691 -10264.0,0.08216700866782597 -10265.0,0.08213863408883007 -10266.0,0.08211026930837434 -10267.0,0.08208191432307502 -10268.0,0.08205356912954959 -10269.0,0.08202523372441668 -10270.0,0.0819969081042961 -10271.0,0.08196859226580877 -10272.0,0.08194028620557685 -10273.0,0.0819119899202236 -10274.0,0.0818837034063735 -10275.0,0.08185542666065222 -10276.0,0.08182715967968647 -10277.0,0.08179890246010424 -10278.0,0.08177065499853464 -10279.0,0.08174241729160801 -10280.0,0.08171418933595571 -10281.0,0.08168597112821041 -10282.0,0.08165776266500585 -10283.0,0.08162956394297703 -10284.0,0.08160137495875995 -10285.0,0.08157319570899194 -10286.0,0.08154502619031138 -10287.0,0.08151686639935792 -10288.0,0.08148871633277222 -10289.0,0.08146057598719621 -10290.0,0.08143244535927296 -10291.0,0.0814043244456467 -10292.0,0.08137621324296283 -10293.0,0.08134811174786782 -10294.0,0.08132001995700942 -10295.0,0.08129193786703647 -10296.0,0.08126386547459899 -10297.0,0.08123580277634812 -10298.0,0.08120774976893622 -10299.0,0.08117970644901673 -10300.0,0.08115167281324435 -10301.0,0.08112364885827482 -10302.0,0.08109563458076507 -10303.0,0.08106762997737325 -10304.0,0.08103963504475864 -10305.0,0.08101164977958154 -10306.0,0.0809836741785036 -10307.0,0.0809557082381875 -10308.0,0.08092775195529717 -10309.0,0.08089980532649751 -10310.0,0.08087186834845479 -10311.0,0.08084394101783628 -10312.0,0.08081602333131048 -10313.0,0.08078811528554705 -10314.0,0.08076021687721667 -10315.0,0.08073232810299133 -10316.0,0.08070444895954408 -10317.0,0.08067657944354918 -10318.0,0.08064871955168194 -10319.0,0.0806208692806189 -10320.0,0.08059302862703774 -10321.0,0.0805651975876173 -10322.0,0.08053737615903746 -10323.0,0.08050956433797937 -10324.0,0.08048176212112529 -10325.0,0.08045396950515865 -10326.0,0.08042618648676392 -10327.0,0.08039841306262682 -10328.0,0.08037064922943418 -10329.0,0.080342894983874 -10330.0,0.0803151503226354 -10331.0,0.08028741524240862 -10332.0,0.08025968973988507 -10333.0,0.0802319738117573 -10334.0,0.08020426745471904 -10335.0,0.08017657066546506 -10336.0,0.08014888344069136 -10337.0,0.08012120577709507 -10338.0,0.08009353767137448 -10339.0,0.0800658791202289 -10340.0,0.08003823012035892 -10341.0,0.0800105906684662 -10342.0,0.07998296076125361 -10343.0,0.07995534039542501 -10344.0,0.07992772956768554 -10345.0,0.07990012827474144 -10346.0,0.07987253651330009 -10347.0,0.07984495428006994 -10348.0,0.07981738157176066 -10349.0,0.07978981838508302 -10350.0,0.07976226471674894 -10351.0,0.0797347205634715 -10352.0,0.07970718592196482 -10353.0,0.07967966078894426 -10354.0,0.07965214516112624 -10355.0,0.07962463903522843 -10356.0,0.07959714240796943 -10357.0,0.07956965527606916 -10358.0,0.07954217763624859 -10359.0,0.07951470948522989 -10360.0,0.07948725081973622 -10361.0,0.07945980163649201 -10362.0,0.07943236193222276 -10363.0,0.07940493170365516 -10364.0,0.07937751094751691 -10365.0,0.07935009966053695 -10366.0,0.0793226978394453 -10367.0,0.07929530548097316 -10368.0,0.0792679225818528 -10369.0,0.07924054913881763 -10370.0,0.07921318514860219 -10371.0,0.07918583060794217 -10372.0,0.0791584855135744 -10373.0,0.07913114986223675 -10374.0,0.07910382365066831 -10375.0,0.07907650687560926 -10376.0,0.07904919953380093 -10377.0,0.07902190162198572 -10378.0,0.07899461313690719 -10379.0,0.07896733407531002 -10380.0,0.07894006443394007 -10381.0,0.07891280420954419 -10382.0,0.07888555339887048 -10383.0,0.0788583119986681 -10384.0,0.0788310800056874 -10385.0,0.07880385741667974 -10386.0,0.07877664422839767 -10387.0,0.07874944043759488 -10388.0,0.07872224604102614 -10389.0,0.07869506103544739 -10390.0,0.0786678854176156 -10391.0,0.07864071918428896 -10392.0,0.07861356233222672 -10393.0,0.07858641485818929 -10394.0,0.07855927675893812 -10395.0,0.07853214803123587 -10396.0,0.07850502867184628 -10397.0,0.07847791867753424 -10398.0,0.07845081804506565 -10399.0,0.07842372677120765 -10400.0,0.07839664485272843 -10401.0,0.07836957228639736 -10402.0,0.07834250906898482 -10403.0,0.07831545519726239 -10404.0,0.07828841066800274 -10405.0,0.07826137547797965 -10406.0,0.07823434962396807 -10407.0,0.07820733310274393 -10408.0,0.07818032591108438 -10409.0,0.07815332804576769 -10410.0,0.07812633950357323 -10411.0,0.07809936028128138 -10412.0,0.07807239037567376 -10413.0,0.07804542978353307 -10414.0,0.07801847850164315 -10415.0,0.0779915365267888 -10416.0,0.0779646038557561 -10417.0,0.07793768048533217 -10418.0,0.0779107664123053 -10419.0,0.07788386163346474 -10420.0,0.077856966145601 -10421.0,0.07783007994550566 -10422.0,0.07780320302997139 -10423.0,0.07777633539579192 -10424.0,0.07774947703976216 -10425.0,0.07772262795867813 -10426.0,0.0776957881493369 -10427.0,0.07766895760853675 -10428.0,0.07764213633307687 -10429.0,0.07761532431975776 -10430.0,0.07758852156538092 -10431.0,0.077561728066749 -10432.0,0.07753494382066568 -10433.0,0.07750816882393584 -10434.0,0.07748140307336539 -10435.0,0.07745464656576143 -10436.0,0.077427899297932 -10437.0,0.07740116126668642 -10438.0,0.07737443246883502 -10439.0,0.07734771290118929 -10440.0,0.07732100256056171 -10441.0,0.07729430144376595 -10442.0,0.07726760954761679 -10443.0,0.07724092686893004 -10444.0,0.07721425340452273 -10445.0,0.07718758915121282 -10446.0,0.07716093410581949 -10447.0,0.077134288265163 -10448.0,0.07710765162606473 -10449.0,0.07708102418534703 -10450.0,0.0770544059398335 -10451.0,0.07702779688634877 -10452.0,0.0770011970217186 -10453.0,0.07697460634276977 -10454.0,0.07694802484633023 -10455.0,0.076921452529229 -10456.0,0.07689488938829622 -10457.0,0.07686833542036306 -10458.0,0.07684179062226183 -10459.0,0.07681525499082596 -10460.0,0.07678872852288994 -10461.0,0.07676221121528932 -10462.0,0.0767357030648608 -10463.0,0.07670920406844214 -10464.0,0.07668271422287222 -10465.0,0.07665623352499101 -10466.0,0.07662976197163952 -10467.0,0.07660329955965989 -10468.0,0.07657684628589535 -10469.0,0.07655040214719028 -10470.0,0.07652396714038998 -10471.0,0.07649754126234101 -10472.0,0.07647112450989094 -10473.0,0.07644471687988848 -10474.0,0.07641831836918332 -10475.0,0.07639192897462635 -10476.0,0.07636554869306952 -10477.0,0.07633917752136588 -10478.0,0.07631281545636945 -10479.0,0.0762864624949355 -10480.0,0.07626011863392029 -10481.0,0.07623378387018119 -10482.0,0.0762074582005767 -10483.0,0.07618114162196629 -10484.0,0.0761548341312106 -10485.0,0.07612853572517136 -10486.0,0.07610224640071139 -10487.0,0.0760759661546945 -10488.0,0.07604969498398567 -10489.0,0.07602343288545095 -10490.0,0.0759971798559575 -10491.0,0.07597093589237344 -10492.0,0.07594470099156811 -10493.0,0.07591847515041188 -10494.0,0.0758922583657762 -10495.0,0.07586605063453357 -10496.0,0.07583985195355762 -10497.0,0.07581366231972303 -10498.0,0.0757874817299056 -10499.0,0.07576131018098212 -10500.0,0.07573514766983054 -10501.0,0.07570899419332987 -10502.0,0.07568284974836019 -10503.0,0.0756567143318027 -10504.0,0.07563058794053953 -10505.0,0.07560447057145409 -10506.0,0.0755783622214307 -10507.0,0.0755522628873549 -10508.0,0.07552617256611316 -10509.0,0.07550009125459312 -10510.0,0.07547401894968347 -10511.0,0.075447955648274 -10512.0,0.0754219013472555 -10513.0,0.0753958560435199 -10514.0,0.07536981973396019 -10515.0,0.07534379241547046 -10516.0,0.07531777408494578 -10517.0,0.07529176473928238 -10518.0,0.07526576437537753 -10519.0,0.0752397729901296 -10520.0,0.075213790580438 -10521.0,0.07518781714320319 -10522.0,0.07516185267532674 -10523.0,0.07513589717371129 -10524.0,0.07510995063526056 -10525.0,0.07508401305687926 -10526.0,0.07505808443547325 -10527.0,0.07503216476794945 -10528.0,0.07500625405121585 -10529.0,0.07498035228218143 -10530.0,0.07495445945775633 -10531.0,0.07492857557485172 -10532.0,0.07490270063037989 -10533.0,0.07487683462125407 -10534.0,0.07485097754438867 -10535.0,0.07482512939669912 -10536.0,0.07479929017510198 -10537.0,0.07477345987651472 -10538.0,0.07474763849785604 -10539.0,0.07472182603604562 -10540.0,0.07469602248800422 -10541.0,0.0746702278506537 -10542.0,0.07464444212091689 -10543.0,0.07461866529571777 -10544.0,0.07459289737198135 -10545.0,0.07456713834663374 -10546.0,0.074541388216602 -10547.0,0.07451564697881437 -10548.0,0.07448991463020012 -10549.0,0.07446419116768957 -10550.0,0.07443847658821406 -10551.0,0.07441277088870606 -10552.0,0.07438707406609904 -10553.0,0.07436138611732762 -10554.0,0.07433570703932733 -10555.0,0.07431003682903489 -10556.0,0.07428437548338802 -10557.0,0.07425872299932552 -10558.0,0.07423307937378726 -10559.0,0.07420744460371408 -10560.0,0.07418181868604797 -10561.0,0.07415620161773194 -10562.0,0.0741305933957101 -10563.0,0.07410499401692751 -10564.0,0.07407940347833038 -10565.0,0.07405382177686595 -10566.0,0.07402824890948255 -10567.0,0.07400268487312943 -10568.0,0.07397712966475704 -10569.0,0.07395158328131685 -10570.0,0.07392604571976134 -10571.0,0.07390051697704406 -10572.0,0.0738749970501196 -10573.0,0.07384948593594366 -10574.0,0.07382398363147295 -10575.0,0.07379849013366518 -10576.0,0.0737730054394792 -10577.0,0.07374752954587488 -10578.0,0.0737220624498131 -10579.0,0.07369660414825588 -10580.0,0.07367115463816615 -10581.0,0.07364571391650801 -10582.0,0.07362028198024656 -10583.0,0.07359485882634799 -10584.0,0.07356944445177944 -10585.0,0.07354403885350921 -10586.0,0.07351864202850658 -10587.0,0.07349325397374191 -10588.0,0.07346787468618657 -10589.0,0.07344250416281298 -10590.0,0.07341714240059465 -10591.0,0.07339178939650613 -10592.0,0.07336644514752293 -10593.0,0.0733411096506217 -10594.0,0.0733157829027801 -10595.0,0.07329046490097682 -10596.0,0.07326515564219166 -10597.0,0.07323985512340532 -10598.0,0.0732145633415997 -10599.0,0.07318928029375765 -10600.0,0.07316400597686312 -10601.0,0.07313874038790101 -10602.0,0.07311348352385735 -10603.0,0.07308823538171917 -10604.0,0.07306299595847461 -10605.0,0.0730377652511127 -10606.0,0.07301254325662364 -10607.0,0.07298732997199864 -10608.0,0.07296212539422996 -10609.0,0.07293692952031082 -10610.0,0.07291174234723555 -10611.0,0.07288656387199953 -10612.0,0.07286139409159917 -10613.0,0.07283623300303184 -10614.0,0.07281108060329604 -10615.0,0.07278593688939125 -10616.0,0.07276080185831803 -10617.0,0.07273567550707799 -10618.0,0.07271055783267366 -10619.0,0.07268544883210873 -10620.0,0.07266034850238785 -10621.0,0.0726352568405168 -10622.0,0.07261017384350227 -10623.0,0.07258509950835204 -10624.0,0.07256003383207493 -10625.0,0.07253497681168085 -10626.0,0.07250992844418058 -10627.0,0.07248488872658608 -10628.0,0.0724598576559103 -10629.0,0.07243483522916723 -10630.0,0.07240982144337184 -10631.0,0.07238481629554018 -10632.0,0.07235981978268932 -10633.0,0.07233483190183736 -10634.0,0.07230985265000346 -10635.0,0.07228488202420771 -10636.0,0.07225992002147134 -10637.0,0.07223496663881657 -10638.0,0.07221002187326665 -10639.0,0.0721850857218458 -10640.0,0.07216015818157935 -10641.0,0.07213523924949362 -10642.0,0.07211032892261603 -10643.0,0.07208542719797484 -10644.0,0.07206053407259953 -10645.0,0.07203564954352051 -10646.0,0.0720107736077693 -10647.0,0.07198590626237826 -10648.0,0.07196104750438098 -10649.0,0.07193619733081198 -10650.0,0.07191135573870684 -10651.0,0.07188652272510208 -10652.0,0.07186169828703533 -10653.0,0.07183688242154522 -10654.0,0.0718120751256714 -10655.0,0.07178727639645456 -10656.0,0.07176248623093635 -10657.0,0.0717377046261595 -10658.0,0.07171293157916774 -10659.0,0.07168816708700587 -10660.0,0.0716634111467196 -10661.0,0.07163866375535577 -10662.0,0.07161392490996217 -10663.0,0.07158919460758768 -10664.0,0.07156447284528211 -10665.0,0.07153975962009634 -10666.0,0.07151505492908228 -10667.0,0.07149035876929286 -10668.0,0.07146567113778195 -10669.0,0.07144099203160453 -10670.0,0.07141632144781655 -10671.0,0.07139165938347501 -10672.0,0.07136700583563793 -10673.0,0.07134236080136425 -10674.0,0.07131772427771402 -10675.0,0.0712930962617483 -10676.0,0.07126847675052919 -10677.0,0.07124386574111967 -10678.0,0.07121926323058386 -10679.0,0.0711946692159869 -10680.0,0.07117008369439488 -10681.0,0.0711455066628749 -10682.0,0.07112093811849513 -10683.0,0.0710963780583247 -10684.0,0.0710718264794338 -10685.0,0.07104728337889359 -10686.0,0.07102274875377623 -10687.0,0.07099822260115496 -10688.0,0.07097370491810401 -10689.0,0.07094919570169853 -10690.0,0.07092469494901478 -10691.0,0.07090020265713 -10692.0,0.07087571882312245 -10693.0,0.0708512434440714 -10694.0,0.07082677651705706 -10695.0,0.07080231803916075 -10696.0,0.07077786800746472 -10697.0,0.07075342641905231 -10698.0,0.07072899327100778 -10699.0,0.07070456856041642 -10700.0,0.07068015228436456 -10701.0,0.07065574443993955 -10702.0,0.07063134502422964 -10703.0,0.07060695403432421 -10704.0,0.07058257146731356 -10705.0,0.07055819732028909 -10706.0,0.07053383159034306 -10707.0,0.07050947427456886 -10708.0,0.07048512537006082 -10709.0,0.07046078487391431 -10710.0,0.07043645278322572 -10711.0,0.07041212909509234 -10712.0,0.07038781380661256 -10713.0,0.07036350691488574 -10714.0,0.0703392084170123 -10715.0,0.07031491831009351 -10716.0,0.0702906365912318 -10717.0,0.07026636325753051 -10718.0,0.07024209830609407 -10719.0,0.07021784173402774 -10720.0,0.07019359353843797 -10721.0,0.07016935371643211 -10722.0,0.07014512226511854 -10723.0,0.07012089918160658 -10724.0,0.0700966844630066 -10725.0,0.07007247810643 -10726.0,0.07004828010898913 -10727.0,0.07002409046779731 -10728.0,0.06999990917996891 -10729.0,0.0699757362426193 -10730.0,0.0699515716528648 -10731.0,0.06992741540782277 -10732.0,0.06990326750461152 -10733.0,0.0698791279403504 -10734.0,0.06985499671215972 -10735.0,0.06983087381716084 -10736.0,0.06980675925247602 -10737.0,0.06978265301522861 -10738.0,0.06975855510254288 -10739.0,0.06973446551154418 -10740.0,0.06971038423935873 -10741.0,0.06968631128311382 -10742.0,0.06966224663993775 -10743.0,0.06963819030695982 -10744.0,0.06961414228131019 -10745.0,0.06959010256012016 -10746.0,0.06956607114052196 -10747.0,0.06954204801964882 -10748.0,0.06951803319463498 -10749.0,0.0694940266626156 -10750.0,0.0694700284207269 -10751.0,0.06944603846610604 -10752.0,0.06942205679589127 -10753.0,0.06939808340722166 -10754.0,0.06937411829723739 -10755.0,0.06935016146307961 -10756.0,0.06932621290189046 -10757.0,0.069302272610813 -10758.0,0.06927834058699137 -10759.0,0.06925441682757062 -10760.0,0.06923050132969688 -10761.0,0.06920659409051715 -10762.0,0.06918269510717946 -10763.0,0.06915880437683287 -10764.0,0.06913492189662743 -10765.0,0.06911104766371405 -10766.0,0.06908718167524473 -10767.0,0.06906332392837247 -10768.0,0.06903947442025117 -10769.0,0.06901563314803583 -10770.0,0.06899180010888226 -10771.0,0.06896797529994741 -10772.0,0.06894415871838915 -10773.0,0.06892035036136634 -10774.0,0.0688965502260388 -10775.0,0.06887275830956735 -10776.0,0.06884897460911378 -10777.0,0.06882519912184093 -10778.0,0.06880143184491246 -10779.0,0.06877767277549317 -10780.0,0.06875392191074875 -10781.0,0.06873017924784594 -10782.0,0.06870644478395235 -10783.0,0.06868271851623665 -10784.0,0.0686590004418685 -10785.0,0.06863529055801848 -10786.0,0.06861158886185821 -10787.0,0.06858789535056019 -10788.0,0.06856421002129799 -10789.0,0.06854053287124613 -10790.0,0.0685168638975801 -10791.0,0.06849320309747635 -10792.0,0.0684695504681123 -10793.0,0.0684459060066664 -10794.0,0.06842226971031805 -10795.0,0.06839864157624756 -10796.0,0.06837502160163629 -10797.0,0.06835140978366655 -10798.0,0.06832780611952166 -10799.0,0.0683042106063858 -10800.0,0.06828062324144425 -10801.0,0.0682570440218832 -10802.0,0.06823347294488984 -10803.0,0.06820991000765225 -10804.0,0.06818635520735959 -10805.0,0.06816280854120195 -10806.0,0.06813927000637035 -10807.0,0.06811573960005687 -10808.0,0.06809221731945446 -10809.0,0.06806870316175707 -10810.0,0.06804519712415967 -10811.0,0.06802169920385817 -10812.0,0.06799820939804939 -10813.0,0.06797472770393119 -10814.0,0.06795125411870238 -10815.0,0.06792778863956277 -10816.0,0.06790433126371302 -10817.0,0.06788088198835489 -10818.0,0.06785744081069103 -10819.0,0.06783400772792511 -10820.0,0.06781058273726169 -10821.0,0.06778716583590637 -10822.0,0.06776375702106566 -10823.0,0.06774035628994708 -10824.0,0.06771696363975913 -10825.0,0.06769357906771115 -10826.0,0.06767020257101358 -10827.0,0.06764683414687778 -10828.0,0.06762347379251608 -10829.0,0.0676001215051417 -10830.0,0.06757677728196894 -10831.0,0.06755344112021298 -10832.0,0.06753011301709001 -10833.0,0.06750679296981713 -10834.0,0.06748348097561242 -10835.0,0.06746017703169495 -10836.0,0.06743688113528476 -10837.0,0.06741359328360275 -10838.0,0.06739031347387088 -10839.0,0.06736704170331205 -10840.0,0.06734377796915013 -10841.0,0.06732052226860986 -10842.0,0.06729727459891705 -10843.0,0.0672740349572984 -10844.0,0.06725080334098162 -10845.0,0.06722757974719534 -10846.0,0.06720436417316913 -10847.0,0.06718115661613355 -10848.0,0.06715795707332012 -10849.0,0.06713476554196134 -10850.0,0.06711158201929053 -10851.0,0.06708840650254214 -10852.0,0.06706523898895148 -10853.0,0.06704207947575487 -10854.0,0.06701892796018948 -10855.0,0.06699578443949354 -10856.0,0.0669726489109062 -10857.0,0.06694952137166757 -10858.0,0.06692640181901867 -10859.0,0.06690329025020153 -10860.0,0.0668801866624591 -10861.0,0.06685709105303528 -10862.0,0.06683400341917499 -10863.0,0.06681092375812396 -10864.0,0.066787852067129 -10865.0,0.06676478834343781 -10866.0,0.06674173258429911 -10867.0,0.06671868478696244 -10868.0,0.06669564494867838 -10869.0,0.06667261306669849 -10870.0,0.06664958913827522 -10871.0,0.06662657316066194 -10872.0,0.06660356513111304 -10873.0,0.06658056504688384 -10874.0,0.06655757290523061 -10875.0,0.06653458870341052 -10876.0,0.06651161243868171 -10877.0,0.06648864410830332 -10878.0,0.06646568370953543 -10879.0,0.06644273123963892 -10880.0,0.06641978669587582 -10881.0,0.06639685007550897 -10882.0,0.06637392137580221 -10883.0,0.06635100059402035 -10884.0,0.06632808772742906 -10885.0,0.06630518277329499 -10886.0,0.06628228572888578 -10887.0,0.06625939659147001 -10888.0,0.0662365153583171 -10889.0,0.06621364202669752 -10890.0,0.06619077659388264 -10891.0,0.06616791905714484 -10892.0,0.06614506941375728 -10893.0,0.06612222766099422 -10894.0,0.0660993937961308 -10895.0,0.06607656781644315 -10896.0,0.06605374971920822 -10897.0,0.06603093950170401 -10898.0,0.06600813716120943 -10899.0,0.06598534269500432 -10900.0,0.06596255610036951 -10901.0,0.06593977737458666 -10902.0,0.06591700651493845 -10903.0,0.0658942435187085 -10904.0,0.06587148838318138 -10905.0,0.0658487411056425 -10906.0,0.06582600168337831 -10907.0,0.06580327011367616 -10908.0,0.06578054639382437 -10909.0,0.06575783052111212 -10910.0,0.06573512249282958 -10911.0,0.06571242230626785 -10912.0,0.06568972995871901 -10913.0,0.06566704544747595 -10914.0,0.06564436876983262 -10915.0,0.06562169992308385 -10916.0,0.06559903890452544 -10917.0,0.06557638571145404 -10918.0,0.0655537403411673 -10919.0,0.06553110279096383 -10920.0,0.0655084730581431 -10921.0,0.0654858511400056 -10922.0,0.06546323703385264 -10923.0,0.06544063073698653 -10924.0,0.06541803224671051 -10925.0,0.0653954415603288 -10926.0,0.06537285867514642 -10927.0,0.06535028358846941 -10928.0,0.06532771629760475 -10929.0,0.06530515679986035 -10930.0,0.06528260509254495 -10931.0,0.06526006117296837 -10932.0,0.06523752503844124 -10933.0,0.0652149966862752 -10934.0,0.06519247611378275 -10935.0,0.06516996331827735 -10936.0,0.06514745829707339 -10937.0,0.0651249610474862 -10938.0,0.06510247156683205 -10939.0,0.06507998985242804 -10940.0,0.0650575159015923 -10941.0,0.06503504971164385 -10942.0,0.06501259127990267 -10943.0,0.06499014060368957 -10944.0,0.06496769768032638 -10945.0,0.06494526250713582 -10946.0,0.06492283508144157 -10947.0,0.06490041540056815 -10948.0,0.06487800346184108 -10949.0,0.06485559926258677 -10950.0,0.06483320280013259 -10951.0,0.06481081407180676 -10952.0,0.06478843307493849 -10953.0,0.0647660598068579 -10954.0,0.06474369426489604 -10955.0,0.06472133644638481 -10956.0,0.0646989863486571 -10957.0,0.06467664396904674 -10958.0,0.06465430930488841 -10959.0,0.0646319823535178 -10960.0,0.06460966311227141 -10961.0,0.06458735157848673 -10962.0,0.06456504774950217 -10963.0,0.06454275162265707 -10964.0,0.0645204631952916 -10965.0,0.06449818246474696 -10966.0,0.0644759094283652 -10967.0,0.06445364408348936 -10968.0,0.06443138642746328 -10969.0,0.0644091364576318 -10970.0,0.06438689417134068 -10971.0,0.06436465956593658 -10972.0,0.06434243263876706 -10973.0,0.0643202133871806 -10974.0,0.0642980018085266 -10975.0,0.06427579790015542 -10976.0,0.06425360165941829 -10977.0,0.06423141308366732 -10978.0,0.0642092321702556 -10979.0,0.0641870589165371 -10980.0,0.06416489331986676 -10981.0,0.06414273537760032 -10982.0,0.0641205850870945 -10983.0,0.06409844244570698 -10984.0,0.0640763074507963 -10985.0,0.06405418009972187 -10986.0,0.06403206038984409 -10987.0,0.06400994831852423 -10988.0,0.06398784388312452 -10989.0,0.06396574708100801 -10990.0,0.06394365790953871 -10991.0,0.06392157636608158 -10992.0,0.06389950244800245 -10993.0,0.06387743615266804 -10994.0,0.063855377477446 -10995.0,0.0638333264197049 -10996.0,0.06381128297681422 -10997.0,0.06378924714614437 -10998.0,0.06376721892506655 -10999.0,0.063745198310953 -11000.0,0.06372318530117682 -11001.0,0.06370117989311207 -11002.0,0.06367918208413356 -11003.0,0.06365719187161718 -11004.0,0.06363520925293964 -11005.0,0.06361323422547861 -11006.0,0.06359126678661257 -11007.0,0.063569306933721 -11008.0,0.06354735466418422 -11009.0,0.06352540997538356 -11010.0,0.06350347286470108 -11011.0,0.0634815433295199 -11012.0,0.06345962136722397 -11013.0,0.06343770697519815 -11014.0,0.06341580015082827 -11015.0,0.06339390089150093 -11016.0,0.06337200919460376 -11017.0,0.0633501250575252 -11018.0,0.06332824847765468 -11019.0,0.06330637945238243 -11020.0,0.06328451797909966 -11021.0,0.06326266405519847 -11022.0,0.06324081767807185 -11023.0,0.06321897884511364 -11024.0,0.06319714755371866 -11025.0,0.0631753238012826 -11026.0,0.06315350758520205 -11027.0,0.06313169890287446 -11028.0,0.06310989775169824 -11029.0,0.06308810412907266 -11030.0,0.06306631803239794 -11031.0,0.0630445394590751 -11032.0,0.06302276840650613 -11033.0,0.06300100487209391 -11034.0,0.06297924885324221 -11035.0,0.06295750034735573 -11036.0,0.06293575935183997 -11037.0,0.06291402586410141 -11038.0,0.0628922998815474 -11039.0,0.06287058140158625 -11040.0,0.06284887042162701 -11041.0,0.06282716693907976 -11042.0,0.06280547095135543 -11043.0,0.06278378245586588 -11044.0,0.06276210145002377 -11045.0,0.06274042793124274 -11046.0,0.06271876189693731 -11047.0,0.06269710334452289 -11048.0,0.06267545227141573 -11049.0,0.06265380867503305 -11050.0,0.0626321725527929 -11051.0,0.06261054390211426 -11052.0,0.06258892272041704 -11053.0,0.0625673090051219 -11054.0,0.06254570275365054 -11055.0,0.06252410396342546 -11056.0,0.06250251263187014 -11057.0,0.06248092875640882 -11058.0,0.062459352334466735 -11059.0,0.06243778336346997 -11060.0,0.06241622184084553 -11061.0,0.062394667764021236 -11062.0,0.06237312113042586 -11063.0,0.062351581937489055 -11064.0,0.06233005018264138 -11065.0,0.06230852586331419 -11066.0,0.06228700897693982 -11067.0,0.06226549952095147 -11068.0,0.06224399749278325 -11069.0,0.06222250288987005 -11070.0,0.06220101570964776 -11071.0,0.062179535949553125 -11072.0,0.06215806360702376 -11073.0,0.06213659867949818 -11074.0,0.06211514116441575 -11075.0,0.062093691059216756 -11076.0,0.062072248361342355 -11077.0,0.06205081306823463 -11078.0,0.06202938517733644 -11079.0,0.06200796468609162 -11080.0,0.061986551591944876 -11081.0,0.06196514589234179 -11082.0,0.06194374758472878 -11083.0,0.061922356666553206 -11084.0,0.06190097313526328 -11085.0,0.06187959698830814 -11086.0,0.06185822822313771 -11087.0,0.061836866837202874 -11088.0,0.06181551282795538 -11089.0,0.06179416619284785 -11090.0,0.061772826929333814 -11091.0,0.0617514950348676 -11092.0,0.06173017050690449 -11093.0,0.061708853342900626 -11094.0,0.061687543540313056 -11095.0,0.061666241096599614 -11096.0,0.06164494600921911 -11097.0,0.06162365827563119 -11098.0,0.06160237789329641 -11099.0,0.061581104859676127 -11100.0,0.06155983917223264 -11101.0,0.06153858082842912 -11102.0,0.06151732982572961 -11103.0,0.06149608616159899 -11104.0,0.061474849833503056 -11105.0,0.06145362083890848 -11106.0,0.06143239917528281 -11107.0,0.06141118484009441 -11108.0,0.0613899778308126 -11109.0,0.06136877814490753 -11110.0,0.06134758577985023 -11111.0,0.06132640073311263 -11112.0,0.06130522300216747 -11113.0,0.06128405258448841 -11114.0,0.06126288947754998 -11115.0,0.061241733678827605 -11116.0,0.0612205851857975 -11117.0,0.06119944399593683 -11118.0,0.0611783101067236 -11119.0,0.061157183515636725 -11120.0,0.0611360642201559 -11121.0,0.06111495221776177 -11122.0,0.06109384750593583 -11123.0,0.06107275008216047 -11124.0,0.06105165994391886 -11125.0,0.061030577088695144 -11126.0,0.061009501513974274 -11127.0,0.060988433217242094 -11128.0,0.060967372195985345 -11129.0,0.06094631844769153 -11130.0,0.060925271969849135 -11131.0,0.06090423275994745 -11132.0,0.06088320081547669 -11133.0,0.060862176133927845 -11134.0,0.060841158712792845 -11135.0,0.06082014854956447 -11136.0,0.06079914564173638 -11137.0,0.06077814998680303 -11138.0,0.06075716158225982 -11139.0,0.06073618042560299 -11140.0,0.06071520651432966 -11141.0,0.060694239845937754 -11142.0,0.06067328041792611 -11143.0,0.06065232822779444 -11144.0,0.060631383273043314 -11145.0,0.0606104455511741 -11146.0,0.06058951505968911 -11147.0,0.060568591796091496 -11148.0,0.06054767575788525 -11149.0,0.06052676694257528 -11150.0,0.060505865347667255 -11151.0,0.0604849709706678 -11152.0,0.060464083809084364 -11153.0,0.060443203860425294 -11154.0,0.060422331122199704 -11155.0,0.060401465591917655 -11156.0,0.06038060726709005 -11157.0,0.06035975614522866 -11158.0,0.06033891222384605 -11159.0,0.06031807550045572 -11160.0,0.060297245972571994 -11161.0,0.060276423637710096 -11162.0,0.06025560849338601 -11163.0,0.060234800537116676 -11164.0,0.060213999766419855 -11165.0,0.06019320617881417 -11166.0,0.06017241977181912 -11167.0,0.06015164054295498 -11168.0,0.06013086848974297 -11169.0,0.060110103609705146 -11170.0,0.06008934590036442 -11171.0,0.060068595359244505 -11172.0,0.06004785198387003 -11173.0,0.060027115771766476 -11174.0,0.06000638672046018 -11175.0,0.05998566482747827 -11176.0,0.059964950090348794 -11177.0,0.059944242506600645 -11178.0,0.059923542073763575 -11179.0,0.05990284878936813 -11180.0,0.059882162650945765 -11181.0,0.059861483656028794 -11182.0,0.059840811802150375 -11183.0,0.05982014708684446 -11184.0,0.05979948950764592 -11185.0,0.059778839062090465 -11186.0,0.05975819574771465 -11187.0,0.059737559562055884 -11188.0,0.059716930502652386 -11189.0,0.059696308567043284 -11190.0,0.05967569375276853 -11191.0,0.059655086057368946 -11192.0,0.059634485478386144 -11193.0,0.05961389201336264 -11194.0,0.05959330565984179 -11195.0,0.059572726415367816 -11196.0,0.05955215427748572 -11197.0,0.059531589243741405 -11198.0,0.059511031311681624 -11199.0,0.059490480478853996 -11200.0,0.05946993674280689 -11201.0,0.05944940010108963 -11202.0,0.05942887055125234 -11203.0,0.05940834809084598 -11204.0,0.059387832717422415 -11205.0,0.05936732442853425 -11206.0,0.05934682322173502 -11207.0,0.059326329094579085 -11208.0,0.05930584204462167 -11209.0,0.05928536206941877 -11210.0,0.059264889166527286 -11211.0,0.05924442333350497 -11212.0,0.05922396456791041 -11213.0,0.05920351286730297 -11214.0,0.05918306822924295 -11215.0,0.059162630651291445 -11216.0,0.059142200131010424 -11217.0,0.05912177666596263 -11218.0,0.05910136025371172 -11219.0,0.05908095089182216 -11220.0,0.059060548577859286 -11221.0,0.0590401533093892 -11222.0,0.05901976508397892 -11223.0,0.05899938389919629 -11224.0,0.05897900975260997 -11225.0,0.05895864264178951 -11226.0,0.0589382825643052 -11227.0,0.058917929517728264 -11228.0,0.05889758349963073 -11229.0,0.05887724450758549 -11230.0,0.058856912539166195 -11231.0,0.058836587591947424 -11232.0,0.05881626966350456 -11233.0,0.05879595875141384 -11234.0,0.05877565485325228 -11235.0,0.05875535796659778 -11236.0,0.05873506808902909 -11237.0,0.05871478521812579 -11238.0,0.05869450935146823 -11239.0,0.05867424048663767 -11240.0,0.05865397862121619 -11241.0,0.0586337237527867 -11242.0,0.05861347587893296 -11243.0,0.05859323499723949 -11244.0,0.05857300110529174 -11245.0,0.05855277420067594 -11246.0,0.058532554280979206 -11247.0,0.058512341343789395 -11248.0,0.05849213538669527 -11249.0,0.05847193640728641 -11250.0,0.05845174440315325 -11251.0,0.05843155937188698 -11252.0,0.0584113813110797 -11253.0,0.058391210218324316 -11254.0,0.05837104609121459 -11255.0,0.058350888927345024 -11256.0,0.05833073872431106 -11257.0,0.05831059547970892 -11258.0,0.05829045919113568 -11259.0,0.05827032985618918 -11260.0,0.05825020747246816 -11261.0,0.05823009203757218 -11262.0,0.0582099835491016 -11263.0,0.058189882004657655 -11264.0,0.058169787401842324 -11265.0,0.058149699738258495 -11266.0,0.05812961901150986 -11267.0,0.058109545219200955 -11268.0,0.058089478358937074 -11269.0,0.058069418428324415 -11270.0,0.05804936542496997 -11271.0,0.05802931934648158 -11272.0,0.05800928019046786 -11273.0,0.057989247954538296 -11274.0,0.0579692226363032 -11275.0,0.05794920423337372 -11276.0,0.057929192743361745 -11277.0,0.05790918816388009 -11278.0,0.05788919049254234 -11279.0,0.05786919972696294 -11280.0,0.057849215864757136 -11281.0,0.05782923890354097 -11282.0,0.05780926884093135 -11283.0,0.057789305674545995 -11284.0,0.05776934940200347 -11285.0,0.057749400020923096 -11286.0,0.05772945752892507 -11287.0,0.0577095219236304 -11288.0,0.05768959320266094 -11289.0,0.0576696713636393 -11290.0,0.057649756404188957 -11291.0,0.05762984832193421 -11292.0,0.0576099471145002 -11293.0,0.0575900527795128 -11294.0,0.057570165314598784 -11295.0,0.057550284717385734 -11296.0,0.05753041098550206 -11297.0,0.05751054411657691 -11298.0,0.05749068410824035 -11299.0,0.05747083095812321 -11300.0,0.05745098466385718 -11301.0,0.05743114522307474 -11302.0,0.05741131263340916 -11303.0,0.05739148689249457 -11304.0,0.057371667997965906 -11305.0,0.05735185594745894 -11306.0,0.05733205073861019 -11307.0,0.05731225236905707 -11308.0,0.05729246083643778 -11309.0,0.05727267613839135 -11310.0,0.05725289827255756 -11311.0,0.05723312723657709 -11312.0,0.0572133630280914 -11313.0,0.057193605644742775 -11314.0,0.05717385508417426 -11315.0,0.057154111344029784 -11316.0,0.057134374421954064 -11317.0,0.05711464431559263 -11318.0,0.05709492102259184 -11319.0,0.057075204540598806 -11320.0,0.05705549486726152 -11321.0,0.05703579200022876 -11322.0,0.057016095937150145 -11323.0,0.05699640667567603 -11324.0,0.056976724213457654 -11325.0,0.05695704854814703 -11326.0,0.05693737967739704 -11327.0,0.056917717598861266 -11328.0,0.0568980623101942 -11329.0,0.05687841380905111 -11330.0,0.05685877209308808 -11331.0,0.056839137159961965 -11332.0,0.05681950900733048 -11333.0,0.05679988763285213 -11334.0,0.056780273034186236 -11335.0,0.05676066520899293 -11336.0,0.056741064154933095 -11337.0,0.0567214698696685 -11338.0,0.05670188235086168 -11339.0,0.05668230159617602 -11340.0,0.056662727603275634 -11341.0,0.056643160369825495 -11342.0,0.05662359989349139 -11343.0,0.05660404617193991 -11344.0,0.0565844992028384 -11345.0,0.05656495898385507 -11346.0,0.05654542551265891 -11347.0,0.05652589878691975 -11348.0,0.05650637880430814 -11349.0,0.05648686556249551 -11350.0,0.05646735905915408 -11351.0,0.05644785929195689 -11352.0,0.05642836625857771 -11353.0,0.05640887995669119 -11354.0,0.05638940038397274 -11355.0,0.056369927538098615 -11356.0,0.05635046141674585 -11357.0,0.056331002017592245 -11358.0,0.05631154933831645 -11359.0,0.0562921033765979 -11360.0,0.056272664130116876 -11361.0,0.05625323159655434 -11362.0,0.05623380577359218 -11363.0,0.05621438665891303 -11364.0,0.05619497425020036 -11365.0,0.05617556854513835 -11366.0,0.05615616954141208 -11367.0,0.056136777236707375 -11368.0,0.05611739162871091 -11369.0,0.05609801271511008 -11370.0,0.056078640493593124 -11371.0,0.0560592749618491 -11372.0,0.056039916117567826 -11373.0,0.05602056395843997 -11374.0,0.0560012184821569 -11375.0,0.05598187968641088 -11376.0,0.05596254756889492 -11377.0,0.055943222127302863 -11378.0,0.055923903359329286 -11379.0,0.05590459126266962 -11380.0,0.055885285835020074 -11381.0,0.05586598707407767 -11382.0,0.05584669497754017 -11383.0,0.05582740954310617 -11384.0,0.05580813076847509 -11385.0,0.05578885865134711 -11386.0,0.05576959318942317 -11387.0,0.05575033438040506 -11388.0,0.055731082221995354 -11389.0,0.055711836711897424 -11390.0,0.05569259784781537 -11391.0,0.055673365627454174 -11392.0,0.05565414004851956 -11393.0,0.055634921108718066 -11394.0,0.05561570880575703 -11395.0,0.05559650313734452 -11396.0,0.05557730410118946 -11397.0,0.05555811169500154 -11398.0,0.05553892591649129 -11399.0,0.05551974676336992 -11400.0,0.055500574233349524 -11401.0,0.055481408324142965 -11402.0,0.0554622490334639 -11403.0,0.055443096359026736 -11404.0,0.055423950298546715 -11405.0,0.05540481084973985 -11406.0,0.055385678010322965 -11407.0,0.055366551778013605 -11408.0,0.05534743215053018 -11409.0,0.05532831912559186 -11410.0,0.055309212700918584 -11411.0,0.055290112874231134 -11412.0,0.05527101964325099 -11413.0,0.05525193300570049 -11414.0,0.05523285295930273 -11415.0,0.05521377950178164 -11416.0,0.05519471263086184 -11417.0,0.05517565234426881 -11418.0,0.0551565986397288 -11419.0,0.055137551514968866 -11420.0,0.055118510967716784 -11421.0,0.05509947699570117 -11422.0,0.055080449596651405 -11423.0,0.0550614287682977 -11424.0,0.055042414508370954 -11425.0,0.055023406814602924 -11426.0,0.05500440568472613 -11427.0,0.054985411116473905 -11428.0,0.054966423107580285 -11429.0,0.054947441655780166 -11430.0,0.05492846675880919 -11431.0,0.054909498414403804 -11432.0,0.05489053662030124 -11433.0,0.05487158137423944 -11434.0,0.054852632673957215 -11435.0,0.05483369051719412 -11436.0,0.054814754901690514 -11437.0,0.05479582582518748 -11438.0,0.05477690328542693 -11439.0,0.054757987280151535 -11440.0,0.0547390778071048 -11441.0,0.05472017486403089 -11442.0,0.05470127844867487 -11443.0,0.05468238855878252 -11444.0,0.05466350519210044 -11445.0,0.054644628346375936 -11446.0,0.054625758019357165 -11447.0,0.05460689420879303 -11448.0,0.05458803691243322 -11449.0,0.05456918612802821 -11450.0,0.05455034185332921 -11451.0,0.05453150408608824 -11452.0,0.054512672824058105 -11453.0,0.05449384806499239 -11454.0,0.0544750298066454 -11455.0,0.05445621804677226 -11456.0,0.05443741278312888 -11457.0,0.05441861401347194 -11458.0,0.05439982173555886 -11459.0,0.054381035947147854 -11460.0,0.054362256645997926 -11461.0,0.05434348382986887 -11462.0,0.05432471749652117 -11463.0,0.05430595764371618 -11464.0,0.05428720426921597 -11465.0,0.054268457370783424 -11466.0,0.05424971694618213 -11467.0,0.05423098299317651 -11468.0,0.05421225550953175 -11469.0,0.0541935344930138 -11470.0,0.05417481994138938 -11471.0,0.05415611185242596 -11472.0,0.05413741022389182 -11473.0,0.05411871505355598 -11474.0,0.05410002633918826 -11475.0,0.05408134407855921 -11476.0,0.05406266826944019 -11477.0,0.05404399890960329 -11478.0,0.05402533599682144 -11479.0,0.054006679528868236 -11480.0,0.053988029503518116 -11481.0,0.05396938591854627 -11482.0,0.05395074877172868 -11483.0,0.05393211806084202 -11484.0,0.053913493783663814 -11485.0,0.05389487593797231 -11486.0,0.05387626452154654 -11487.0,0.05385765953216633 -11488.0,0.05383906096761218 -11489.0,0.05382046882566544 -11490.0,0.05380188310410821 -11491.0,0.053783303800723374 -11492.0,0.053764730913294506 -11493.0,0.05374616443960602 -11494.0,0.05372760437744307 -11495.0,0.053709050724591596 -11496.0,0.05369050347883825 -11497.0,0.05367196263797048 -11498.0,0.05365342819977652 -11499.0,0.05363490016204536 -11500.0,0.053616378522566704 -11501.0,0.05359786327913106 -11502.0,0.05357935442952971 -11503.0,0.05356085197155471 -11504.0,0.05354235590299879 -11505.0,0.05352386622165554 -11506.0,0.05350538292531926 -11507.0,0.053486906011785046 -11508.0,0.05346843547884875 -11509.0,0.05344997132430692 -11510.0,0.05343151354595695 -11511.0,0.05341306214159697 -11512.0,0.05339461710902587 -11513.0,0.05337617844604325 -11514.0,0.053357746150449525 -11515.0,0.05333932022004588 -11516.0,0.05332090065263424 -11517.0,0.05330248744601725 -11518.0,0.05328408059799836 -11519.0,0.053265680106381774 -11520.0,0.05324728596897247 -11521.0,0.053228898183576116 -11522.0,0.05321051674799921 -11523.0,0.05319214166004897 -11524.0,0.0531737729175334 -11525.0,0.05315541051826125 -11526.0,0.05313705446004197 -11527.0,0.053118704740685856 -11528.0,0.0531003613580039 -11529.0,0.05308202430980792 -11530.0,0.053063693593910374 -11531.0,0.05304536920812457 -11532.0,0.053027051150264536 -11533.0,0.053008739418145094 -11534.0,0.052990434009581734 -11535.0,0.05297213492239078 -11536.0,0.05295384215438929 -11537.0,0.05293555570339508 -11538.0,0.05291727556722668 -11539.0,0.05289900174370342 -11540.0,0.052880734230645356 -11541.0,0.05286247302587334 -11542.0,0.052844218127208895 -11543.0,0.05282596953247437 -11544.0,0.05280772723949284 -11545.0,0.05278949124608813 -11546.0,0.052771261550084846 -11547.0,0.05275303814930826 -11548.0,0.052734821041584494 -11549.0,0.05271661022474037 -11550.0,0.052698405696603494 -11551.0,0.052680207455002154 -11552.0,0.05266201549776545 -11553.0,0.052643829822723226 -11554.0,0.052625650427706075 -11555.0,0.052607477310545284 -11556.0,0.05258931046907296 -11557.0,0.05257114990112193 -11558.0,0.052552995604525796 -11559.0,0.05253484757711883 -11560.0,0.052516705816736134 -11561.0,0.05249857032121352 -11562.0,0.052480441088387564 -11563.0,0.0524623181160956 -11564.0,0.05244420140217564 -11565.0,0.05242609094446653 -11566.0,0.05240798674080781 -11567.0,0.0523898887890398 -11568.0,0.05237179708700351 -11569.0,0.05235371163254076 -11570.0,0.05233563242349407 -11571.0,0.05231755945770676 -11572.0,0.052299492733022805 -11573.0,0.052281432247287006 -11574.0,0.052263377998344865 -11575.0,0.052245329984042674 -11576.0,0.05222728820222739 -11577.0,0.05220925265074679 -11578.0,0.05219122332744934 -11579.0,0.052173200230184326 -11580.0,0.05215518335680166 -11581.0,0.052137172705152085 -11582.0,0.052119168273087074 -11583.0,0.05210117005845881 -11584.0,0.05208317805912027 -11585.0,0.0520651922729251 -11586.0,0.052047212697727746 -11587.0,0.05202923933138337 -11588.0,0.052011272171747905 -11589.0,0.051993311216677954 -11590.0,0.05197535646403094 -11591.0,0.05195740791166497 -11592.0,0.05193946555743896 -11593.0,0.051921529399212456 -11594.0,0.05190359943484583 -11595.0,0.05188567566220017 -11596.0,0.05186775807913733 -11597.0,0.051849846683519815 -11598.0,0.051831941473210956 -11599.0,0.05181404244607479 -11600.0,0.0517961495999761 -11601.0,0.051778262932780414 -11602.0,0.05176038244235394 -11603.0,0.05174250812656369 -11604.0,0.05172463998327739 -11605.0,0.05170677801036352 -11606.0,0.05168892220569123 -11607.0,0.05167107256713049 -11608.0,0.05165322909255194 -11609.0,0.05163539177982703 -11610.0,0.051617560626827846 -11611.0,0.051599735631427286 -11612.0,0.051581916791498955 -11613.0,0.05156410410491722 -11614.0,0.05154629756955711 -11615.0,0.051528497183294455 -11616.0,0.05151070294400581 -11617.0,0.051492914849568465 -11618.0,0.05147513289786038 -11619.0,0.05145735708676034 -11620.0,0.0514395874141478 -11621.0,0.05142182387790298 -11622.0,0.05140406647590683 -11623.0,0.05138631520604099 -11624.0,0.051368570066187884 -11625.0,0.05135083105423063 -11626.0,0.05133309816805314 -11627.0,0.05131537140553995 -11628.0,0.0512976507645764 -11629.0,0.05127993624304857 -11630.0,0.05126222783884325 -11631.0,0.05124452554984793 -11632.0,0.05122682937395086 -11633.0,0.05120913930904102 -11634.0,0.05119145535300814 -11635.0,0.051173777503742614 -11636.0,0.051156105759135616 -11637.0,0.051138440117079034 -11638.0,0.0511207805754655 -11639.0,0.05110312713218836 -11640.0,0.05108547978514167 -11641.0,0.05106783853222023 -11642.0,0.051050203371319575 -11643.0,0.051032574300335976 -11644.0,0.05101495131716638 -11645.0,0.0509973344197085 -11646.0,0.05097972360586079 -11647.0,0.050962118873522415 -11648.0,0.05094452022059322 -11649.0,0.05092692764497383 -11650.0,0.05090934114456558 -11651.0,0.05089176071727056 -11652.0,0.050874186360991495 -11653.0,0.05085661807363193 -11654.0,0.05083905585309609 -11655.0,0.05082149969728895 -11656.0,0.05080394960411614 -11657.0,0.05078640557148409 -11658.0,0.05076886759729993 -11659.0,0.050751335679471495 -11660.0,0.05073380981590739 -11661.0,0.050716290004516856 -11662.0,0.05069877624320993 -11663.0,0.05068126852989735 -11664.0,0.05066376686249059 -11665.0,0.050646271238901794 -11666.0,0.05062878165704387 -11667.0,0.05061129811483045 -11668.0,0.0505938206101759 -11669.0,0.05057634914099522 -11670.0,0.050558883705204234 -11671.0,0.05054142430071942 -11672.0,0.050523970925458045 -11673.0,0.05050652357733799 -11674.0,0.05048908225427794 -11675.0,0.050471646954197265 -11676.0,0.050454217675016066 -11677.0,0.05043679441465518 -11678.0,0.050419377171036096 -11679.0,0.05040196594208109 -11680.0,0.050384560725713116 -11681.0,0.05036716151985589 -11682.0,0.05034976832243376 -11683.0,0.05033238113137189 -11684.0,0.05031499994459609 -11685.0,0.05029762476003294 -11686.0,0.05028025557560967 -11687.0,0.05026289238925428 -11688.0,0.05024553519889547 -11689.0,0.05022818400246267 -11690.0,0.05021083879788597 -11691.0,0.05019349958309624 -11692.0,0.05017616635602503 -11693.0,0.050158839114604635 -11694.0,0.050141517856768 -11695.0,0.05012420258044885 -11696.0,0.050106893283581595 -11697.0,0.05008958996410136 -11698.0,0.05007229261994402 -11699.0,0.05005500124904606 -11700.0,0.050037715849344785 -11701.0,0.05002043641877817 -11702.0,0.05000316295528493 -11703.0,0.04998589545680442 -11704.0,0.049968633921276776 -11705.0,0.049951378346642816 -11706.0,0.0499341287308441 -11707.0,0.04991688507182284 -11708.0,0.049899647367522004 -11709.0,0.04988241561588527 -11710.0,0.049865189814857026 -11711.0,0.049847969962382326 -11712.0,0.04983075605640698 -11713.0,0.04981354809487751 -11714.0,0.049796346075741106 -11715.0,0.049779149996945736 -11716.0,0.04976195985643998 -11717.0,0.04974477565217321 -11718.0,0.049727597382095465 -11719.0,0.049710425044157534 -11720.0,0.04969325863631083 -11721.0,0.04967609815650755 -11722.0,0.049658943602700574 -11723.0,0.04964179497284352 -11724.0,0.04962465226489062 -11725.0,0.04960751547679691 -11726.0,0.049590384606518094 -11727.0,0.04957325965201061 -11728.0,0.049556140611231515 -11729.0,0.04953902748213866 -11730.0,0.04952192026269059 -11731.0,0.049504818950846546 -11732.0,0.049487723544566424 -11733.0,0.04947063404181089 -11734.0,0.04945355044054129 -11735.0,0.04943647273871967 -11736.0,0.04941940093430882 -11737.0,0.049402335025272144 -11738.0,0.04938527500957383 -11739.0,0.04936822088517873 -11740.0,0.049351172650052455 -11741.0,0.049334130302161217 -11742.0,0.04931709383947201 -11743.0,0.049300063259952516 -11744.0,0.049283038561571124 -11745.0,0.04926601974229687 -11746.0,0.04924900680009956 -11747.0,0.04923199973294967 -11748.0,0.0492149985388184 -11749.0,0.0491980032156776 -11750.0,0.04918101376149986 -11751.0,0.04916403017425846 -11752.0,0.049147052451927395 -11753.0,0.04913008059248136 -11754.0,0.049113114593895696 -11755.0,0.0490961544541465 -11756.0,0.04907920017121056 -11757.0,0.04906225174306537 -11758.0,0.04904530916768906 -11759.0,0.049028372443060526 -11760.0,0.04901144156715934 -11761.0,0.0489945165379658 -11762.0,0.04897759735346083 -11763.0,0.04896068401162611 -11764.0,0.048943776510444 -11765.0,0.04892687484789759 -11766.0,0.04890997902197058 -11767.0,0.04889308903064745 -11768.0,0.04887620487191335 -11769.0,0.048859326543754134 -11770.0,0.048842454044156304 -11771.0,0.04882558737110712 -11772.0,0.048808726522594506 -11773.0,0.04879187149660708 -11774.0,0.048775022291134194 -11775.0,0.04875817890416581 -11776.0,0.04874134133369265 -11777.0,0.04872450957770613 -11778.0,0.048707683634198355 -11779.0,0.04869086350116208 -11780.0,0.04867404917659079 -11781.0,0.04865724065847867 -11782.0,0.048640437944820605 -11783.0,0.048623641033612115 -11784.0,0.048606849922849464 -11785.0,0.04859006461052961 -11786.0,0.04857328509465019 -11787.0,0.0485565113732095 -11788.0,0.04853974344420658 -11789.0,0.04852298130564113 -11790.0,0.04850622495551355 -11791.0,0.04848947439182496 -11792.0,0.048472729612577085 -11793.0,0.048455990615772424 -11794.0,0.04843925739941413 -11795.0,0.04842252996150609 -11796.0,0.04840580830005278 -11797.0,0.048389092413059456 -11798.0,0.048372382298532045 -11799.0,0.04835567795447716 -11800.0,0.04833897937890205 -11801.0,0.048322286569814736 -11802.0,0.04830559952522387 -11803.0,0.048288918243138836 -11804.0,0.04827224272156964 -11805.0,0.048255572958527025 -11806.0,0.04823890895202242 -11807.0,0.048222250700067956 -11808.0,0.04820559820067637 -11809.0,0.04818895145186117 -11810.0,0.04817231045163651 -11811.0,0.04815567519801725 -11812.0,0.048139045689018944 -11813.0,0.04812242192265777 -11814.0,0.048105803896950655 -11815.0,0.048089191609915184 -11816.0,0.04807258505956966 -11817.0,0.04805598424393301 -11818.0,0.04803938916102488 -11819.0,0.048022799808865604 -11820.0,0.04800621618547622 -11821.0,0.04798963828887838 -11822.0,0.047973066117094475 -11823.0,0.04795649966814757 -11824.0,0.04793993894006143 -11825.0,0.047923383930860444 -11826.0,0.04790683463856973 -11827.0,0.04789029106121508 -11828.0,0.04787375319682298 -11829.0,0.04785722104342059 -11830.0,0.047840694599035706 -11831.0,0.047824173861696864 -11832.0,0.04780765882943326 -11833.0,0.0477911495002748 -11834.0,0.04777464587225199 -11835.0,0.0477581479433961 -11836.0,0.04774165571173903 -11837.0,0.04772516917531341 -11838.0,0.04770868833215247 -11839.0,0.04769221318029019 -11840.0,0.047675743717761204 -11841.0,0.04765927994260084 -11842.0,0.04764282185284505 -11843.0,0.04762636944653054 -11844.0,0.04760992272169464 -11845.0,0.0475934816763754 -11846.0,0.04757704630861149 -11847.0,0.04756061661644229 -11848.0,0.04754419259790789 -11849.0,0.047527774251048996 -11850.0,0.047511361573907056 -11851.0,0.04749495456452411 -11852.0,0.04747855322094293 -11853.0,0.04746215754120698 -11854.0,0.04744576752336038 -11855.0,0.04742938316544788 -11856.0,0.047413004465514975 -11857.0,0.04739663142160779 -11858.0,0.04738026403177317 -11859.0,0.047363902294058575 -11860.0,0.047347546206512166 -11861.0,0.0473311957671828 -11862.0,0.04731485097412 -11863.0,0.04729851182537391 -11864.0,0.047282178318995415 -11865.0,0.047265850453036044 -11866.0,0.047249528225547996 -11867.0,0.04723321163458418 -11868.0,0.0472169006781981 -11869.0,0.04720059535444399 -11870.0,0.04718429566137675 -11871.0,0.04716800159705198 -11872.0,0.04715171315952585 -11873.0,0.04713543034685531 -11874.0,0.04711915315709792 -11875.0,0.04710288158831197 -11876.0,0.047086615638556324 -11877.0,0.0470703553058906 -11878.0,0.04705410058837506 -11879.0,0.04703785148407066 -11880.0,0.047021607991038945 -11881.0,0.047005370107342216 -11882.0,0.04698913783104341 -11883.0,0.04697291116020615 -11884.0,0.04695669009289468 -11885.0,0.04694047462717396 -11886.0,0.046924264761109606 -11887.0,0.0469080604927679 -11888.0,0.046891861820215805 -11889.0,0.0468756687415209 -11890.0,0.0468594812547515 -11891.0,0.046843299357976535 -11892.0,0.04682712304926566 -11893.0,0.04681095232668911 -11894.0,0.04679478718831786 -11895.0,0.04677862763222352 -11896.0,0.046762473656478405 -11897.0,0.04674632525915541 -11898.0,0.04673018243832818 -11899.0,0.04671404519207099 -11900.0,0.046697913518458804 -11901.0,0.04668178741556719 -11902.0,0.04666566688147244 -11903.0,0.0466495519142515 -11904.0,0.04663344251198196 -11905.0,0.04661733867274211 -11906.0,0.04660124039461085 -11907.0,0.04658514767566778 -11908.0,0.04656906051399316 -11909.0,0.04655297890766793 -11910.0,0.04653690285477363 -11911.0,0.04652083235339253 -11912.0,0.04650476740160752 -11913.0,0.04648870799750221 -11914.0,0.046472654139160775 -11915.0,0.04645660582466813 -11916.0,0.04644056305210983 -11917.0,0.04642452581957211 -11918.0,0.0464084941251418 -11919.0,0.046392467966906464 -11920.0,0.0463764473429543 -11921.0,0.046360432251374165 -11922.0,0.04634442269025556 -11923.0,0.04632841865768866 -11924.0,0.046312420151764316 -11925.0,0.046296427170574014 -11926.0,0.04628043971220993 -11927.0,0.04626445777476484 -11928.0,0.046248481356332236 -11929.0,0.04623251045500624 -11930.0,0.04621654506888167 -11931.0,0.04620058519605392 -11932.0,0.04618463083461912 -11933.0,0.046168681982674036 -11934.0,0.0461527386383161 -11935.0,0.04613680079964336 -11936.0,0.04612086846475454 -11937.0,0.04610494163174905 -11938.0,0.046089020298726954 -11939.0,0.046073104463788914 -11940.0,0.04605719412503629 -11941.0,0.046041289280571114 -11942.0,0.046025389928496044 -11943.0,0.04600949606691443 -11944.0,0.045993607693930204 -11945.0,0.04597772480764802 -11946.0,0.04596184740617317 -11947.0,0.04594597548761161 -11948.0,0.0459301090500699 -11949.0,0.04591424809165531 -11950.0,0.04589839261047574 -11951.0,0.04588254260463977 -11952.0,0.045866698072256566 -11953.0,0.04585085901143601 -11954.0,0.045835025420288625 -11955.0,0.045819197296925594 -11956.0,0.045803374639458695 -11957.0,0.045787557446000424 -11958.0,0.0457717457146639 -11959.0,0.04575593944356293 -11960.0,0.045740138630811895 -11961.0,0.04572434327452589 -11962.0,0.04570855337282064 -11963.0,0.045692768923812535 -11964.0,0.045676989925618625 -11965.0,0.04566121637635655 -11966.0,0.04564544827414465 -11967.0,0.045629685617101914 -11968.0,0.04561392840334799 -11969.0,0.04559817663100313 -11970.0,0.04558243029818826 -11971.0,0.04556668940302497 -11972.0,0.0455509539436355 -11973.0,0.0455352239181427 -11974.0,0.045519499324670094 -11975.0,0.04550378016134186 -11976.0,0.045488066426282836 -11977.0,0.04547235811761845 -11978.0,0.04545665523347483 -11979.0,0.04544095777197874 -11980.0,0.04542526573125759 -11981.0,0.045409579109439456 -11982.0,0.04539389790465299 -11983.0,0.04537822211502755 -11984.0,0.045362551738693156 -11985.0,0.045346886773780445 -11986.0,0.04533122721842067 -11987.0,0.045315573070745775 -11988.0,0.04529992432888834 -11989.0,0.0452842809909816 -11990.0,0.045268643055159374 -11991.0,0.0452530105195562 -11992.0,0.04523738338230723 -11993.0,0.04522176164154827 -11994.0,0.04520614529541573 -11995.0,0.045190534342046715 -11996.0,0.04517492877957894 -11997.0,0.04515932860615081 -11998.0,0.04514373381990129 -11999.0,0.045128144418970055 -12000.0,0.0451125604014974 -12001.0,0.04509698176562428 -12002.0,0.045081408509492285 -12003.0,0.0450658406312436 -12004.0,0.04505027812902111 -12005.0,0.04503472100096833 -12006.0,0.04501916924522942 -12007.0,0.04500362285994913 -12008.0,0.044988081843272916 -12009.0,0.044972546193346834 -12010.0,0.04495701590831763 -12011.0,0.044941490986332606 -12012.0,0.04492597142553977 -12013.0,0.04491045722408776 -12014.0,0.04489494838012586 -12015.0,0.04487944489180394 -12016.0,0.04486394675727256 -12017.0,0.044848453974682914 -12018.0,0.04483296654218682 -12019.0,0.04481748445793676 -12020.0,0.0448020077200858 -12021.0,0.044786536326787696 -12022.0,0.04477107027619682 -12023.0,0.04475560956646821 -12024.0,0.04474015419575747 -12025.0,0.044724704162220914 -12026.0,0.04470925946401546 -12027.0,0.04469382009929869 -12028.0,0.04467838606622876 -12029.0,0.04466295736296452 -12030.0,0.044647533987665446 -12031.0,0.04463211593849166 -12032.0,0.04461670321360385 -12033.0,0.04460129581116342 -12034.0,0.04458589372933238 -12035.0,0.044570496966273396 -12036.0,0.04455510552014969 -12037.0,0.04453971938912522 -12038.0,0.044524338571364515 -12039.0,0.044508963065032756 -12040.0,0.04449359286829578 -12041.0,0.04447822797932 -12042.0,0.04446286839627252 -12043.0,0.044447514117321035 -12044.0,0.044432165140633924 -12045.0,0.04441682146438013 -12046.0,0.044401483086729275 -12047.0,0.0443861500058516 -12048.0,0.04437082221991802 -12049.0,0.04435549972709998 -12050.0,0.04434018252556965 -12051.0,0.044324870613499795 -12052.0,0.04430956398906384 -12053.0,0.04429426265043577 -12054.0,0.044278966595790274 -12055.0,0.04426367582330264 -12056.0,0.04424839033114878 -12057.0,0.04423311011750529 -12058.0,0.044217835180549295 -12059.0,0.04420256551845863 -12060.0,0.04418730112941173 -12061.0,0.0441720420115877 -12062.0,0.04415678816316618 -12063.0,0.044141539582327534 -12064.0,0.04412629626725271 -12065.0,0.04411105821612331 -12066.0,0.0440958254271215 -12067.0,0.044080597898430156 -12068.0,0.04406537562823273 -12069.0,0.04405015861471334 -12070.0,0.04403494685605667 -12071.0,0.04401974035044809 -12072.0,0.04400453909607357 -12073.0,0.04398934309111973 -12074.0,0.04397415233377376 -12075.0,0.043958966822223534 -12076.0,0.043943786554657534 -12077.0,0.04392861152926486 -12078.0,0.04391344174423526 -12079.0,0.04389827719775906 -12080.0,0.04388311788802725 -12081.0,0.04386796381323143 -12082.0,0.04385281497156386 -12083.0,0.043837671361217356 -12084.0,0.04382253298038541 -12085.0,0.043807399827262124 -12086.0,0.04379227190004224 -12087.0,0.04377714919692107 -12088.0,0.043762031716094614 -12089.0,0.04374691945575945 -12090.0,0.04373181241411282 -12091.0,0.04371671058935254 -12092.0,0.043701613979677076 -12093.0,0.043686522583285516 -12094.0,0.04367143639837756 -12095.0,0.043656355423153576 -12096.0,0.043641279655814456 -12097.0,0.043626209094561795 -12098.0,0.043611143737597786 -12099.0,0.043596083583125264 -12100.0,0.043581028629347617 -12101.0,0.04356597887446892 -12102.0,0.04355093431669385 -12103.0,0.04353589495422772 -12104.0,0.04352086078527641 -12105.0,0.043505831808046465 -12106.0,0.043490808020745036 -12107.0,0.04347578942157992 -12108.0,0.043460776008759465 -12109.0,0.043445767780492694 -12110.0,0.043430764734989254 -12111.0,0.043415766870459394 -12112.0,0.04340077418511394 -12113.0,0.0433857866771644 -12114.0,0.04337080434482287 -12115.0,0.043355827186302064 -12116.0,0.04334085519981534 -12117.0,0.043325888383576615 -12118.0,0.04331092673580047 -12119.0,0.04329597025470209 -12120.0,0.04328101893849729 -12121.0,0.04326607278540246 -12122.0,0.04325113179363464 -12123.0,0.0432361959614115 -12124.0,0.04322126528695129 -12125.0,0.04320633976847288 -12126.0,0.04319141940419577 -12127.0,0.043176504192340065 -12128.0,0.043161594131126524 -12129.0,0.043146689218776436 -12130.0,0.043131789453511774 -12131.0,0.04311689483355511 -12132.0,0.043102005357129616 -12133.0,0.04308712102245911 -12134.0,0.043072241827767956 -12135.0,0.043057367771281205 -12136.0,0.04304249885122448 -12137.0,0.04302763506582405 -12138.0,0.04301277641330674 -12139.0,0.042997922891900034 -12140.0,0.04298307449983201 -12141.0,0.0429682312353314 -12142.0,0.042953393096627455 -12143.0,0.04293856008195012 -12144.0,0.042923732189529926 -12145.0,0.04290890941759803 -12146.0,0.04289409176438615 -12147.0,0.042879279228126656 -12148.0,0.04286447180705252 -12149.0,0.042849669499397364 -12150.0,0.042834872303395326 -12151.0,0.042820080217281224 -12152.0,0.042805293239290484 -12153.0,0.042790511367659115 -12154.0,0.042775734600623776 -12155.0,0.04276096293642166 -12156.0,0.04274619637329064 -12157.0,0.04273143490946917 -12158.0,0.042716678543196336 -12159.0,0.04270192727271178 -12160.0,0.04268718109625578 -12161.0,0.04267244001206924 -12162.0,0.04265770401839368 -12163.0,0.04264297311347116 -12164.0,0.0426282472955444 -12165.0,0.04261352656285673 -12166.0,0.04259881091365209 -12167.0,0.04258410034617497 -12168.0,0.042569394858670534 -12169.0,0.042554694449384506 -12170.0,0.042539999116563254 -12171.0,0.042525308858453736 -12172.0,0.04251062367330348 -12173.0,0.04249594355936068 -12174.0,0.04248126851487408 -12175.0,0.04246659853809309 -12176.0,0.04245193362726766 -12177.0,0.04243727378064837 -12178.0,0.04242261899648642 -12179.0,0.04240796927303362 -12180.0,0.04239332460854233 -12181.0,0.042378685001265556 -12182.0,0.0423640504494569 -12183.0,0.042349420951370606 -12184.0,0.04233479650526142 -12185.0,0.04232017710938478 -12186.0,0.0423055627619967 -12187.0,0.042290953461353815 -12188.0,0.0422763492057133 -12189.0,0.042261749993332993 -12190.0,0.04224715582247132 -12191.0,0.042232566691387294 -12192.0,0.042217982598340566 -12193.0,0.042203403541591314 -12194.0,0.04218882951940039 -12195.0,0.042174260530029206 -12196.0,0.042159696571739826 -12197.0,0.042145137642794823 -12198.0,0.04213058374145744 -12199.0,0.04211603486599152 -12200.0,0.04210149101466149 -12201.0,0.04208695218573235 -12202.0,0.042072418377469736 -12203.0,0.042057889588139864 -12204.0,0.042043365816009586 -12205.0,0.04202884705934627 -12206.0,0.042014333316417976 -12207.0,0.0419998245854933 -12208.0,0.04198532086484146 -12209.0,0.04197082215273229 -12210.0,0.041956328447436166 -12211.0,0.041941839747224104 -12212.0,0.04192735605036771 -12213.0,0.04191287735513921 -12214.0,0.04189840365981136 -12215.0,0.04188393496265756 -12216.0,0.04186947126195183 -12217.0,0.04185501255596874 -12218.0,0.04184055884298346 -12219.0,0.04182611012127178 -12220.0,0.041811666389110054 -12221.0,0.041797227644775295 -12222.0,0.04178279388654502 -12223.0,0.0417683651126974 -12224.0,0.04175394132151119 -12225.0,0.04173952251126576 -12226.0,0.041725108680241006 -12227.0,0.04171069982671749 -12228.0,0.041696295948976336 -12229.0,0.04168189704529927 -12230.0,0.04166750311396862 -12231.0,0.04165311415326726 -12232.0,0.04163873016147872 -12233.0,0.041624351136887075 -12234.0,0.04160997707777705 -12235.0,0.04159560798243388 -12236.0,0.04158124384914345 -12237.0,0.04156688467619223 -12238.0,0.0415525304618673 -12239.0,0.04153818120445625 -12240.0,0.04152383690224736 -12241.0,0.041509497553529444 -12242.0,0.04149516315659194 -12243.0,0.041480833709724836 -12244.0,0.04146650921121874 -12245.0,0.04145218965936485 -12246.0,0.04143787505245494 -12247.0,0.041423565388781405 -12248.0,0.04140926066663717 -12249.0,0.04139496088431581 -12250.0,0.04138066604011145 -12251.0,0.041366376132318854 -12252.0,0.041352091159233294 -12253.0,0.0413378111191507 -12254.0,0.04132353601036756 -12255.0,0.04130926583118098 -12256.0,0.04129500057988861 -12257.0,0.0412807402547887 -12258.0,0.041266484854180115 -12259.0,0.0412522343763623 -12260.0,0.04123798881963525 -12261.0,0.04122374818229958 -12262.0,0.0412095124626565 -12263.0,0.0411952816590078 -12264.0,0.04118105576965581 -12265.0,0.04116683479290351 -12266.0,0.041152618727054446 -12267.0,0.04113840757041274 -12268.0,0.04112420132128312 -12269.0,0.041109999977970844 -12270.0,0.04109580353878182 -12271.0,0.04108161200202252 -12272.0,0.041067425366000006 -12273.0,0.041053243629021886 -12274.0,0.041039066789396395 -12275.0,0.04102489484543235 -12276.0,0.04101072779543914 -12277.0,0.04099656563772673 -12278.0,0.04098240837060567 -12279.0,0.04096825599238712 -12280.0,0.040954108501382806 -12281.0,0.04093996589590502 -12282.0,0.04092582817426665 -12283.0,0.04091169533478118 -12284.0,0.04089756737576266 -12285.0,0.040883444295525755 -12286.0,0.04086932609238564 -12287.0,0.04085521276465813 -12288.0,0.04084110431065962 -12289.0,0.04082700072870708 -12290.0,0.040812902017118034 -12291.0,0.04079880817421062 -12292.0,0.04078471919830353 -12293.0,0.04077063508771609 -12294.0,0.040756555840768136 -12295.0,0.04074248145578011 -12296.0,0.040728411931073065 -12297.0,0.040714347264968614 -12298.0,0.04070028745578891 -12299.0,0.04068623250185674 -12300.0,0.040672182401495456 -12301.0,0.04065813715302899 -12302.0,0.04064409675478182 -12303.0,0.04063006120507904 -12304.0,0.04061603050224632 -12305.0,0.04060200464460989 -12306.0,0.040587983630496594 -12307.0,0.04057396745823378 -12308.0,0.040559956126149446 -12309.0,0.040545949632572145 -12310.0,0.040531947975831026 -12311.0,0.040517951154255744 -12312.0,0.0405039591661766 -12313.0,0.04048997200992446 -12314.0,0.04047598968383078 -12315.0,0.040462012186227525 -12316.0,0.0404480395154473 -12317.0,0.04043407166982327 -12318.0,0.04042010864768919 -12319.0,0.04040615044737934 -12320.0,0.040392197067228616 -12321.0,0.04037824850557249 -12322.0,0.040364304760747004 -12323.0,0.04035036583108879 -12324.0,0.040336431714934985 -12325.0,0.04032250241062338 -12326.0,0.040308577916492304 -12327.0,0.040294658230880694 -12328.0,0.04028074335212799 -12329.0,0.04026683327857427 -12330.0,0.04025292800856016 -12331.0,0.04023902754042688 -12332.0,0.040225131872516175 -12333.0,0.0402112410031704 -12334.0,0.04019735493073249 -12335.0,0.04018347365354595 -12336.0,0.04016959716995481 -12337.0,0.04015572547830371 -12338.0,0.04014185857693788 -12339.0,0.04012799646420309 -12340.0,0.04011413913844571 -12341.0,0.04010028659801263 -12342.0,0.040086438841251355 -12343.0,0.04007259586650995 -12344.0,0.04005875767213706 -12345.0,0.040044924256481866 -12346.0,0.040031095617894155 -12347.0,0.040017271754724276 -12348.0,0.04000345266532315 -12349.0,0.039989638348042235 -12350.0,0.0399758288012336 -12351.0,0.03996202402324985 -12352.0,0.039948224012444224 -12353.0,0.03993442876717042 -12354.0,0.039920638285782795 -12355.0,0.039906852566636244 -12356.0,0.03989307160808624 -12357.0,0.0398792954084888 -12358.0,0.03986552396620052 -12359.0,0.039851757279578584 -12360.0,0.039837995346980716 -12361.0,0.03982423816676524 -12362.0,0.039810485737290985 -12363.0,0.039796738056917406 -12364.0,0.03978299512400451 -12365.0,0.039769256936912876 -12366.0,0.03975552349400361 -12367.0,0.03974179479363842 -12368.0,0.039728070834179584 -12369.0,0.039714351613989944 -12370.0,0.03970063713143287 -12371.0,0.039686927384872325 -12372.0,0.03967322237267285 -12373.0,0.039659522093199555 -12374.0,0.039645826544818054 -12375.0,0.039632135725894586 -12376.0,0.039618449634795945 -12377.0,0.03960476826988947 -12378.0,0.0395910916295431 -12379.0,0.03957741971212527 -12380.0,0.03956375251600504 -12381.0,0.03955009003955201 -12382.0,0.039536432281136374 -12383.0,0.03952277923912881 -12384.0,0.03950913091190064 -12385.0,0.03949548729782371 -12386.0,0.03948184839527046 -12387.0,0.03946821420261384 -12388.0,0.03945458471822739 -12389.0,0.039440959940485215 -12390.0,0.03942733986776201 -12391.0,0.03941372449843295 -12392.0,0.03940011383087385 -12393.0,0.03938650786346105 -12394.0,0.039372906594571475 -12395.0,0.039359310022582555 -12396.0,0.03934571814587234 -12397.0,0.03933213096281942 -12398.0,0.03931854847180294 -12399.0,0.03930497067120262 -12400.0,0.03929139755939871 -12401.0,0.039277829134772034 -12402.0,0.03926426539570398 -12403.0,0.03925070634057653 -12404.0,0.03923715196777213 -12405.0,0.039223602275673876 -12406.0,0.039210057262665375 -12407.0,0.03919651692713083 -12408.0,0.039182981267454946 -12409.0,0.03916945028202303 -12410.0,0.039155923969220935 -12411.0,0.039142402327435086 -12412.0,0.03912888535505242 -12413.0,0.03911537305046048 -12414.0,0.03910186541204733 -12415.0,0.03908836243820163 -12416.0,0.03907486412731257 -12417.0,0.039061370477769884 -12418.0,0.039047881487963884 -12419.0,0.039034397156285434 -12420.0,0.03902091748112597 -12421.0,0.03900744246087743 -12422.0,0.03899397209393236 -12423.0,0.03898050637868384 -12424.0,0.03896704531352553 -12425.0,0.03895358889685159 -12426.0,0.038940137127056774 -12427.0,0.0389266900025364 -12428.0,0.03891324752168633 -12429.0,0.03889980968290294 -12430.0,0.03888637648458322 -12431.0,0.03887294792512468 -12432.0,0.03885952400292541 -12433.0,0.038846104716384 -12434.0,0.03883269006389964 -12435.0,0.038819280043872056 -12436.0,0.03880587465470155 -12437.0,0.03879247389478895 -12438.0,0.03877907776253563 -12439.0,0.03876568625634353 -12440.0,0.03875229937461515 -12441.0,0.03873891711575354 -12442.0,0.03872553947816228 -12443.0,0.0387121664602455 -12444.0,0.03869879806040793 -12445.0,0.038685434277054814 -12446.0,0.03867207510859193 -12447.0,0.038658720553425625 -12448.0,0.038645370609962815 -12449.0,0.03863202527661096 -12450.0,0.03861868455177802 -12451.0,0.03860534843387257 -12452.0,0.0385920169213037 -12453.0,0.038578690012481064 -12454.0,0.03856536770581487 -12455.0,0.038552049999715836 -12456.0,0.03853873689259527 -12457.0,0.038525428382865025 -12458.0,0.038512124468937495 -12459.0,0.03849882514922559 -12460.0,0.038485530422142825 -12461.0,0.03847224028610322 -12462.0,0.03845895473952139 -12463.0,0.03844567378081243 -12464.0,0.03843239740839202 -12465.0,0.038419125620676405 -12466.0,0.03840585841608237 -12467.0,0.038392595793027194 -12468.0,0.038379337749928764 -12469.0,0.03836608428520549 -12470.0,0.038352835397276346 -12471.0,0.03833959108456081 -12472.0,0.038326351345478946 -12473.0,0.03831311617845134 -12474.0,0.038299885581899146 -12475.0,0.03828665955424406 -12476.0,0.03827343809390828 -12477.0,0.038260221199314604 -12478.0,0.038247008868886344 -12479.0,0.03823380110104739 -12480.0,0.038220597894222115 -12481.0,0.03820739924683549 -12482.0,0.03819420515731301 -12483.0,0.038181015624080744 -12484.0,0.038167830645565226 -12485.0,0.03815465022019361 -12486.0,0.038141474346393575 -12487.0,0.03812830302259334 -12488.0,0.03811513624722163 -12489.0,0.03810197401870777 -12490.0,0.03808881633548159 -12491.0,0.03807566319597348 -12492.0,0.03806251459861439 -12493.0,0.03804937054183575 -12494.0,0.038036231024069576 -12495.0,0.038023096043748435 -12496.0,0.03800996559930543 -12497.0,0.03799683968917416 -12498.0,0.03798371831178882 -12499.0,0.03797060146558412 -12500.0,0.037957489148995334 -12501.0,0.037944381360458225 -12502.0,0.037931278098409155 -12503.0,0.037918179361284984 -12504.0,0.03790508514752316 -12505.0,0.03789199545556159 -12506.0,0.03787891028383881 -12507.0,0.03786582963079383 -12508.0,0.03785275349486625 -12509.0,0.03783968187449615 -12510.0,0.03782661476812419 -12511.0,0.03781355217419157 -12512.0,0.037800494091140016 -12513.0,0.037787440517411806 -12514.0,0.03777439145144971 -12515.0,0.03776134689169709 -12516.0,0.03774830683659783 -12517.0,0.03773527128459635 -12518.0,0.037722240234137575 -12519.0,0.03770921368366702 -12520.0,0.0376961916316307 -12521.0,0.037683174076475215 -12522.0,0.037670161016647614 -12523.0,0.03765715245059555 -12524.0,0.03764414837676722 -12525.0,0.03763114879361132 -12526.0,0.03761815369957707 -12527.0,0.03760516309311428 -12528.0,0.037592176972673245 -12529.0,0.03757919533670483 -12530.0,0.03756621818366044 -12531.0,0.03755324551199195 -12532.0,0.03754027732015183 -12533.0,0.03752731360659308 -12534.0,0.03751435436976924 -12535.0,0.03750139960813433 -12536.0,0.037488449320142954 -12537.0,0.037475503504250246 -12538.0,0.037462562158911875 -12539.0,0.037449625282584 -12540.0,0.037436692873723365 -12541.0,0.03742376493078722 -12542.0,0.03741084145223339 -12543.0,0.037397922436520147 -12544.0,0.03738500788210637 -12545.0,0.037372097787451444 -12546.0,0.03735919215101532 -12547.0,0.03734629097125839 -12548.0,0.03733339424664168 -12549.0,0.03732050197562669 -12550.0,0.03730761415667547 -12551.0,0.037294730788250616 -12552.0,0.03728185186881519 -12553.0,0.03726897739683287 -12554.0,0.03725610737076781 -12555.0,0.037243241789084724 -12556.0,0.03723038065024882 -12557.0,0.037217523952725866 -12558.0,0.03720467169498215 -12559.0,0.03719182387548452 -12560.0,0.037178980492700284 -12561.0,0.03716614154509733 -12562.0,0.03715330703114408 -12563.0,0.03714047694930947 -12564.0,0.03712765129806294 -12565.0,0.03711483007587451 -12566.0,0.03710201328121469 -12567.0,0.03708920091255452 -12568.0,0.03707639296836562 -12569.0,0.037063589447120036 -12570.0,0.03705079034729043 -12571.0,0.03703799566734997 -12572.0,0.03702520540577235 -12573.0,0.03701241956103176 -12574.0,0.03699963813160295 -12575.0,0.036986861115961195 -12576.0,0.036974088512582305 -12577.0,0.036961320319942564 -12578.0,0.036948556536518844 -12579.0,0.036935797160788514 -12580.0,0.03692304219122949 -12581.0,0.03691029162632016 -12582.0,0.0368975454645395 -12583.0,0.03688480370436698 -12584.0,0.036872066344282625 -12585.0,0.036859333382766916 -12586.0,0.03684660481830093 -12587.0,0.03683388064936624 -12588.0,0.03682116087444494 -12589.0,0.03680844549201967 -12590.0,0.03679573450057356 -12591.0,0.036783027898590274 -12592.0,0.036770325684554024 -12593.0,0.03675762785694954 -12594.0,0.03674493441426203 -12595.0,0.03673224535497727 -12596.0,0.036719560677581566 -12597.0,0.036706880380561725 -12598.0,0.03669420446240506 -12599.0,0.03668153292159944 -12600.0,0.03666886575663323 -12601.0,0.036656202965995366 -12602.0,0.03664354454817522 -12603.0,0.036630890501662766 -12604.0,0.03661824082494845 -12605.0,0.03660559551652328 -12606.0,0.03659295457487877 -12607.0,0.0365803179985069 -12608.0,0.03656768578590026 -12609.0,0.0365550579355519 -12610.0,0.03654243444595544 -12611.0,0.03652981531560494 -12612.0,0.036517200542995065 -12613.0,0.03650459012662095 -12614.0,0.03649198406497829 -12615.0,0.036479382356563235 -12616.0,0.03646678499987251 -12617.0,0.036454191993403356 -12618.0,0.036441603335653515 -12619.0,0.036429019025121225 -12620.0,0.0364164390603053 -12621.0,0.03640386343970502 -12622.0,0.03639129216182023 -12623.0,0.036378725225151246 -12624.0,0.03636616262819893 -12625.0,0.03635360436946466 -12626.0,0.03634105044745032 -12627.0,0.03632850086065834 -12628.0,0.03631595560759161 -12629.0,0.036303414686753605 -12630.0,0.036290878096648264 -12631.0,0.03627834583578009 -12632.0,0.03626581790265404 -12633.0,0.03625329429577564 -12634.0,0.03624077501365091 -12635.0,0.03622826005478642 -12636.0,0.03621574941768918 -12637.0,0.03620324310086678 -12638.0,0.03619074110282732 -12639.0,0.03617824342207941 -12640.0,0.03616575005713214 -12641.0,0.03615326100649515 -12642.0,0.0361407762686786 -12643.0,0.03612829584219314 -12644.0,0.03611581972554996 -12645.0,0.036103347917260734 -12646.0,0.03609088041583767 -12647.0,0.03607841721979349 -12648.0,0.03606595832764144 -12649.0,0.03605350373789523 -12650.0,0.036041053449069146 -12651.0,0.036028607459677946 -12652.0,0.036016165768236935 -12653.0,0.036003728373261885 -12654.0,0.03599129527326911 -12655.0,0.035978866466775436 -12656.0,0.035966441952298214 -12657.0,0.03595402172835526 -12658.0,0.03594160579346494 -12659.0,0.035929194146146134 -12660.0,0.035916786784918234 -12661.0,0.0359043837083011 -12662.0,0.03589198491481515 -12663.0,0.035879590402981304 -12664.0,0.03586720017132098 -12665.0,0.03585481421835613 -12666.0,0.03584243254260918 -12667.0,0.03583005514260309 -12668.0,0.03581768201686132 -12669.0,0.035805313163907886 -12670.0,0.03579294858226722 -12671.0,0.03578058827046435 -12672.0,0.03576823222702476 -12673.0,0.0357558804504745 -12674.0,0.03574353293934005 -12675.0,0.03573118969214847 -12676.0,0.03571885070742729 -12677.0,0.03570651598370457 -12678.0,0.03569418551950885 -12679.0,0.0356818593133692 -12680.0,0.0356695373638152 -12681.0,0.03565721966937693 -12682.0,0.035644906228584995 -12683.0,0.03563259703997045 -12684.0,0.03562029210206494 -12685.0,0.03560799141340054 -12686.0,0.03559569497250991 -12687.0,0.03558340277792614 -12688.0,0.03557111482818287 -12689.0,0.03555883112181423 -12690.0,0.035546551657354895 -12691.0,0.03553427643333997 -12692.0,0.03552200544830514 -12693.0,0.035509738700786546 -12694.0,0.035497476189320885 -12695.0,0.0354852179124453 -12696.0,0.03547296386869747 -12697.0,0.035460714056615585 -12698.0,0.03544846847473835 -12699.0,0.03543622712160492 -12700.0,0.03542398999575501 -12701.0,0.03541175709572882 -12702.0,0.03539952842006705 -12703.0,0.03538730396731093 -12704.0,0.035375083736002136 -12705.0,0.035362867724682896 -12706.0,0.03535065593189594 -12707.0,0.03533844835618449 -12708.0,0.03532624499609226 -12709.0,0.03531404585016348 -12710.0,0.03530185091694287 -12711.0,0.03528966019497571 -12712.0,0.03527747368280768 -12713.0,0.03526529137898504 -12714.0,0.035253113282054535 -12715.0,0.035240939390563414 -12716.0,0.035228769703059395 -12717.0,0.03521660421809073 -12718.0,0.03520444293420619 -12719.0,0.035192285849954985 -12720.0,0.03518013296388691 -12721.0,0.03516798427455217 -12722.0,0.03515583978050153 -12723.0,0.03514369948028625 -12724.0,0.03513156337245808 -12725.0,0.035119431455569255 -12726.0,0.035107303728172536 -12727.0,0.03509518018882117 -12728.0,0.03508306083606893 -12729.0,0.03507094566847003 -12730.0,0.03505883468457923 -12731.0,0.03504672788295178 -12732.0,0.03503462526214345 -12733.0,0.03502252682071045 -12734.0,0.035010432557209537 -12735.0,0.03499834247019796 -12736.0,0.03498625655823346 -12737.0,0.03497417481987426 -12738.0,0.03496209725367911 -12739.0,0.034950023858207245 -12740.0,0.03493795463201839 -12741.0,0.0349258895736728 -12742.0,0.03491382868173116 -12743.0,0.03490177195475471 -12744.0,0.034889719391305175 -12745.0,0.03487767098994479 -12746.0,0.03486562674923623 -12747.0,0.03485358666774273 -12748.0,0.034841550744027984 -12749.0,0.034829518976656225 -12750.0,0.034817491364192106 -12751.0,0.03480546790520084 -12752.0,0.034793448598248115 -12753.0,0.034781433441900135 -12754.0,0.03476942243472355 -12755.0,0.03475741557528554 -12756.0,0.03474541286215378 -12757.0,0.03473341429389644 -12758.0,0.034721419869082185 -12759.0,0.03470942958628014 -12760.0,0.03469744344405997 -12761.0,0.034685461440991806 -12762.0,0.034673483575646306 -12763.0,0.03466150984659457 -12764.0,0.034649540252408226 -12765.0,0.034637574791659395 -12766.0,0.034625613462920694 -12767.0,0.0346136562647652 -12768.0,0.034601703195766526 -12769.0,0.03458975425449874 -12770.0,0.03457780943953645 -12771.0,0.03456586874945469 -12772.0,0.034553932182829046 -12773.0,0.03454199973823557 -12774.0,0.03453007141425082 -12775.0,0.034518147209451795 -12776.0,0.03450622712241606 -12777.0,0.034494311151721614 -12778.0,0.034482399295946986 -12779.0,0.034470491553671184 -12780.0,0.03445858792347367 -12781.0,0.03444668840393445 -12782.0,0.034434792993634 -12783.0,0.034422901691153286 -12784.0,0.03441101449507374 -12785.0,0.03439913140397733 -12786.0,0.034387252416446475 -12787.0,0.03437537753106412 -12788.0,0.03436350674641365 -12789.0,0.03435164006107898 -12790.0,0.034339777473644494 -12791.0,0.03432791898269509 -12792.0,0.03431606458681612 -12793.0,0.03430421428459344 -12794.0,0.0342923680746134 -12795.0,0.03428052595546284 -12796.0,0.03426868792572908 -12797.0,0.03425685398399992 -12798.0,0.03424502412886366 -12799.0,0.03423319835890909 -12800.0,0.03422137667272549 -12801.0,0.03420955906890259 -12802.0,0.03419774554603066 -12803.0,0.034185936102700425 -12804.0,0.03417413073750312 -12805.0,0.034162329449030415 -12806.0,0.03415053223587453 -12807.0,0.034138739096628144 -12808.0,0.034126950029884424 -12809.0,0.034115165034237 -12810.0,0.03410338410828002 -12811.0,0.0340916072506081 -12812.0,0.03407983445981637 -12813.0,0.034068065734500386 -12814.0,0.034056301073256245 -12815.0,0.03404454047468051 -12816.0,0.03403278393737022 -12817.0,0.034021031459922926 -12818.0,0.03400928304093661 -12819.0,0.033997538679009794 -12820.0,0.033985798372741446 -12821.0,0.03397406212073106 -12822.0,0.033962329921578556 -12823.0,0.033950601773884384 -12824.0,0.03393887767624945 -12825.0,0.03392715762727518 -12826.0,0.03391544162556343 -12827.0,0.03390372966971658 -12828.0,0.03389202175833748 -12829.0,0.03388031789002946 -12830.0,0.033868618063396326 -12831.0,0.03385692227704237 -12832.0,0.03384523052957239 -12833.0,0.03383354281959163 -12834.0,0.03382185914570585 -12835.0,0.03381017950652125 -12836.0,0.033798503900644546 -12837.0,0.03378683232668291 -12838.0,0.03377516478324405 -12839.0,0.033763501268936055 -12840.0,0.03375184178236759 -12841.0,0.03374018632214775 -12842.0,0.03372853488688614 -12843.0,0.0337168874751928 -12844.0,0.0337052440856783 -12845.0,0.033693604716953665 -12846.0,0.03368196936763041 -12847.0,0.0336703380363205 -12848.0,0.033658710721636426 -12849.0,0.033647087422191115 -12850.0,0.03363546813659802 -12851.0,0.033623852863471006 -12852.0,0.03361224160142448 -12853.0,0.0336006343490733 -12854.0,0.03358903110503281 -12855.0,0.033577431867918825 -12856.0,0.03356583663634763 -12857.0,0.033554245408936006 -12858.0,0.0335426581843012 -12859.0,0.03353107496106097 -12860.0,0.03351949573783347 -12861.0,0.033507920513237414 -12862.0,0.03349634928589196 -12863.0,0.033484782054416753 -12864.0,0.03347321881743189 -12865.0,0.03346165957355796 -12866.0,0.03345010432141604 -12867.0,0.03343855305962769 -12868.0,0.03342700578681489 -12869.0,0.03341546250160015 -12870.0,0.03340392320260644 -12871.0,0.03339238788845721 -12872.0,0.0333808565577764 -12873.0,0.03336932920918838 -12874.0,0.03335780584131801 -12875.0,0.03334628645279067 -12876.0,0.03333477104223217 -12877.0,0.03332325960826879 -12878.0,0.03331175214952731 -12879.0,0.03330024866463497 -12880.0,0.033288749152219514 -12881.0,0.033277253610909094 -12882.0,0.033265762039332396 -12883.0,0.03325427443611856 -12884.0,0.033242790799897205 -12885.0,0.0332313111292984 -12886.0,0.033219835422952704 -12887.0,0.03320836367949116 -12888.0,0.033196895897545285 -12889.0,0.033185432075747034 -12890.0,0.03317397221272886 -12891.0,0.033162516307123684 -12892.0,0.0331510643575649 -12893.0,0.033139616362686405 -12894.0,0.033128172321122494 -12895.0,0.03311673223150799 -12896.0,0.03310529609247817 -12897.0,0.033093863902668816 -12898.0,0.03308243566071611 -12899.0,0.03307101136525676 -12900.0,0.03305959101492794 -12901.0,0.033048174608367294 -12902.0,0.033036762144212896 -12903.0,0.033025353621103336 -12904.0,0.033013949037677674 -12905.0,0.03300254839257542 -12906.0,0.03299115168443655 -12907.0,0.032979758911901524 -12908.0,0.032968370073611274 -12909.0,0.032956985168207185 -12910.0,0.032945604194331145 -12911.0,0.03293422715062545 -12912.0,0.032922854035732925 -12913.0,0.03291148484829683 -12914.0,0.03290011958696092 -12915.0,0.03288875825036939 -12916.0,0.032877400837166906 -12917.0,0.03286604734599863 -12918.0,0.03285469777551017 -12919.0,0.03284335212434759 -12920.0,0.03283201039115745 -12921.0,0.032820672574586755 -12922.0,0.032809338673283006 -12923.0,0.03279800868589413 -12924.0,0.03278668261106854 -12925.0,0.03277536044745513 -12926.0,0.03276404219370326 -12927.0,0.03275272784846272 -12928.0,0.0327414174103838 -12929.0,0.032730110878117245 -12930.0,0.03271880825031428 -12931.0,0.03270750952562658 -12932.0,0.032696214702706276 -12933.0,0.03268492378020599 -12934.0,0.03267363675677879 -12935.0,0.032662353631078236 -12936.0,0.0326510744017583 -12937.0,0.032639799067473475 -12938.0,0.03262852762687869 -12939.0,0.03261726007862937 -12940.0,0.032605996421381324 -12941.0,0.032594736653790916 -12942.0,0.032583480774514936 -12943.0,0.032572228782210645 -12944.0,0.03256098067553574 -12945.0,0.03254973645314842 -12946.0,0.03253849611370732 -12947.0,0.03252725965587156 -12948.0,0.03251602707830073 -12949.0,0.03250479837965483 -12950.0,0.03249357355859437 -12951.0,0.03248235261378032 -12952.0,0.032471135543874104 -12953.0,0.032459922347537584 -12954.0,0.032448713023433134 -12955.0,0.032437507570223546 -12956.0,0.03242630598657212 -12957.0,0.032415108271142544 -12958.0,0.032403914422599045 -12959.0,0.03239272443960626 -12960.0,0.03238153832082934 -12961.0,0.03237035606493381 -12962.0,0.03235917767058574 -12963.0,0.03234800313645163 -12964.0,0.03233683246119844 -12965.0,0.03232566564349358 -12966.0,0.03231450268200493 -12967.0,0.03230334357540083 -12968.0,0.03229218832235009 -12969.0,0.032281036921521976 -12970.0,0.03226988937158618 -12971.0,0.032258745671212896 -12972.0,0.03224760581907277 -12973.0,0.03223646981383689 -12974.0,0.0322253376541768 -12975.0,0.03221420933876454 -12976.0,0.03220308486627256 -12977.0,0.032191964235373814 -12978.0,0.032180847444741666 -12979.0,0.03216973449304998 -12980.0,0.03215862537897306 -12981.0,0.03214752010118568 -12982.0,0.03213641865836303 -12983.0,0.03212532104918082 -12984.0,0.032114227272315166 -12985.0,0.032103137326442675 -12986.0,0.032092051210240405 -12987.0,0.032080968922385836 -12988.0,0.03206989046155695 -12989.0,0.03205881582643216 -12990.0,0.03204774501569036 -12991.0,0.03203667802801086 -12992.0,0.032025614862073455 -12993.0,0.0320145555165584 -12994.0,0.0320034999901464 -12995.0,0.031992448281518586 -12996.0,0.03198140038935658 -12997.0,0.031970356312342456 -12998.0,0.031959316049158755 -12999.0,0.03194827959848841 -13000.0,0.03193724695901488 -13001.0,0.03192621812942205 -13002.0,0.03191519310839427 -13003.0,0.03190417189461631 -13004.0,0.03189315448677343 -13005.0,0.03188214088355133 -13006.0,0.031871131083636185 -13007.0,0.031860125085714605 -13008.0,0.031849122888473635 -13009.0,0.031838124490600805 -13010.0,0.03182712989078408 -13011.0,0.0318161390877119 -13012.0,0.031805152080073125 -13013.0,0.03179416886655709 -13014.0,0.03178318944585357 -13015.0,0.03177221381665283 -13016.0,0.03176124197764552 -13017.0,0.031750273927522804 -13018.0,0.03173930966497626 -13019.0,0.03172834918869795 -13020.0,0.03171739249738034 -13021.0,0.031706439589716404 -13022.0,0.03169549046439952 -13023.0,0.03168454512012355 -13024.0,0.031673603555582804 -13025.0,0.031662665769472 -13026.0,0.031651731760486364 -13027.0,0.031640801527321544 -13028.0,0.03162987506867366 -13029.0,0.031618952383239224 -13030.0,0.031608033469715274 -13031.0,0.03159711832679925 -13032.0,0.03158620695318907 -13033.0,0.031575299347583054 -13034.0,0.03156439550868003 -13035.0,0.03155349543517924 -13036.0,0.03154259912578041 -13037.0,0.03153170657918365 -13038.0,0.03152081779408958 -13039.0,0.031509932769199236 -13040.0,0.031499051503214144 -13041.0,0.03148817399483621 -13042.0,0.03147730024276784 -13043.0,0.031466430245711885 -13044.0,0.03145556400237162 -13045.0,0.031444701511450804 -13046.0,0.031433842771653585 -13047.0,0.03142298778168462 -13048.0,0.031412136540248985 -13049.0,0.03140128904605221 -13050.0,0.03139044529780025 -13051.0,0.03137960529419954 -13052.0,0.03136876903395694 -13053.0,0.031357936515779776 -13054.0,0.03134710773837578 -13055.0,0.03133628270045319 -13056.0,0.03132546140072063 -13057.0,0.03131464383788723 -13058.0,0.031303830010662496 -13059.0,0.031293019917756446 -13060.0,0.031282213557879496 -13061.0,0.03127141092974253 -13062.0,0.0312606120320569 -13063.0,0.03124981686353434 -13064.0,0.03123902542288708 -13065.0,0.031228237708827777 -13066.0,0.031217453720069552 -13067.0,0.031206673455325924 -13068.0,0.0311958969133109 -13069.0,0.03118512409273892 -13070.0,0.031174354992324873 -13071.0,0.031163589610784064 -13072.0,0.031152827946832273 -13073.0,0.031142069999185708 -13074.0,0.03113131576656104 -13075.0,0.03112056524767534 -13076.0,0.03110981844124617 -13077.0,0.031099075345991503 -13078.0,0.031088335960629786 -13079.0,0.031077600283879857 -13080.0,0.03106686831446105 -13081.0,0.031056140051093112 -13082.0,0.031045415492496238 -13083.0,0.03103469463739109 -13084.0,0.03102397748449871 -13085.0,0.03101326403254064 -13086.0,0.03100255428023884 -13087.0,0.03099184822631573 -13088.0,0.030981145869494128 -13089.0,0.030970447208497336 -13090.0,0.030959752242049075 -13091.0,0.030949060968873537 -13092.0,0.0309383733876953 -13093.0,0.030927689497239425 -13094.0,0.030917009296231403 -13095.0,0.030906332783397175 -13096.0,0.03089565995746309 -13097.0,0.030884990817155965 -13098.0,0.030874325361203055 -13099.0,0.030863663588332042 -13100.0,0.030853005497271074 -13101.0,0.03084235108674869 -13102.0,0.030831700355493905 -13103.0,0.03082105330223617 -13104.0,0.030810409925705384 -13105.0,0.030799770224631838 -13106.0,0.030789134197746308 -13107.0,0.030778501843779994 -13108.0,0.030767873161464548 -13109.0,0.030757248149532016 -13110.0,0.030746626806714927 -13111.0,0.030736009131746234 -13112.0,0.03072539512335934 -13113.0,0.030714784780288037 -13114.0,0.03070417810126661 -13115.0,0.030693575085029755 -13116.0,0.030682975730312624 -13117.0,0.030672380035850762 -13118.0,0.0306617880003802 -13119.0,0.03065119962263738 -13120.0,0.03064061490135919 -13121.0,0.030630033835282955 -13122.0,0.03061945642314641 -13123.0,0.03060888266368776 -13124.0,0.030598312555645636 -13125.0,0.03058774609775911 -13126.0,0.030577183288767653 -13127.0,0.030566624127411214 -13128.0,0.030556068612430164 -13129.0,0.030545516742565317 -13130.0,0.030534968516557886 -13131.0,0.03052442393314956 -13132.0,0.030513882991082444 -13133.0,0.0305033456890991 -13134.0,0.030492812025942468 -13135.0,0.03048228200035598 -13136.0,0.030471755611083475 -13137.0,0.03046123285686924 -13138.0,0.030450713736457993 -13139.0,0.030440198248594855 -13140.0,0.03042968639202542 -13141.0,0.030419178165495695 -13142.0,0.030408673567752145 -13143.0,0.030398172597541618 -13144.0,0.03038767525361144 -13145.0,0.030377181534709353 -13146.0,0.030366691439583548 -13147.0,0.030356204966982603 -13148.0,0.03034572211565557 -13149.0,0.03033524288435193 -13150.0,0.030324767271821592 -13151.0,0.03031429527681487 -13152.0,0.030303826898082545 -13153.0,0.03029336213437581 -13154.0,0.030282900984446314 -13155.0,0.03027244344704609 -13156.0,0.03026198952092764 -13157.0,0.030251539204843893 -13158.0,0.030241092497548198 -13159.0,0.030230649397794355 -13160.0,0.030220209904336548 -13161.0,0.030209774015929437 -13162.0,0.0301993417313281 -13163.0,0.030188913049288047 -13164.0,0.030178487968565194 -13165.0,0.030168066487915913 -13166.0,0.030157648606096998 -13167.0,0.030147234321865685 -13168.0,0.0301368236339796 -13169.0,0.03012641654119684 -13170.0,0.030116013042275912 -13171.0,0.030105613135975765 -13172.0,0.030095216821055742 -13173.0,0.030084824096275654 -13174.0,0.03007443496039572 -13175.0,0.030064049412176594 -13176.0,0.03005366745037937 -13177.0,0.03004328907376553 -13178.0,0.030032914281097018 -13179.0,0.0300225430711362 -13180.0,0.03001217544264588 -13181.0,0.03000181139438925 -13182.0,0.029991450925129965 -13183.0,0.0299810940336321 -13184.0,0.029970740718660162 -13185.0,0.029960390978979054 -13186.0,0.029950044813354136 -13187.0,0.02993970222055119 -13188.0,0.029929363199336433 -13189.0,0.029919027748476462 -13190.0,0.029908695866738357 -13191.0,0.029898367552889597 -13192.0,0.0298880428056981 -13193.0,0.02987772162393217 -13194.0,0.029867404006360582 -13195.0,0.029857089951752517 -13196.0,0.02984677945887759 -13197.0,0.029836472526505838 -13198.0,0.029826169153407703 -13199.0,0.029815869338354072 -13200.0,0.029805573080116256 -13201.0,0.029795280377466 -13202.0,0.029784991229175432 -13203.0,0.029774705634017146 -13204.0,0.029764423590764144 -13205.0,0.02975414509818987 -13206.0,0.029743870155068144 -13207.0,0.029733598760173258 -13208.0,0.029723330912279904 -13209.0,0.02971306661016322 -13210.0,0.029702805852598716 -13211.0,0.029692548638362383 -13212.0,0.029682294966230604 -13213.0,0.029672044834980187 -13214.0,0.02966179824338839 -13215.0,0.029651555190232833 -13216.0,0.02964131567429161 -13217.0,0.029631079694343223 -13218.0,0.029620847249166606 -13219.0,0.02961061833754108 -13220.0,0.02960039295824642 -13221.0,0.02959017111006281 -13222.0,0.029579952791770878 -13223.0,0.029569738002151624 -13224.0,0.029559526739986512 -13225.0,0.02954931900405741 -13226.0,0.029539114793146626 -13227.0,0.029528914106036842 -13228.0,0.029518716941511206 -13229.0,0.029508523298353274 -13230.0,0.029498333175347027 -13231.0,0.02948814657127683 -13232.0,0.029477963484927514 -13233.0,0.029467783915084308 -13234.0,0.02945760786053286 -13235.0,0.02944743532005926 -13236.0,0.029437266292449974 -13237.0,0.029427100776491914 -13238.0,0.029416938770972418 -13239.0,0.029406780274679238 -13240.0,0.02939662528640052 -13241.0,0.02938647380492486 -13242.0,0.029376325829041254 -13243.0,0.029366181357539142 -13244.0,0.029356040389208336 -13245.0,0.0293459029228391 -13246.0,0.029335768957222116 -13247.0,0.029325638491148484 -13248.0,0.029315511523409686 -13249.0,0.029305388052797667 -13250.0,0.029295268078104765 -13251.0,0.029285151598123744 -13252.0,0.029275038611647795 -13253.0,0.029264929117470483 -13254.0,0.029254823114385837 -13255.0,0.02924472060118828 -13256.0,0.029234621576672674 -13257.0,0.029224526039634244 -13258.0,0.02921443398886869 -13259.0,0.029204345423172098 -13260.0,0.02919426034134099 -13261.0,0.02918417874217226 -13262.0,0.029174100624463264 -13263.0,0.029164025987011757 -13264.0,0.029153954828615915 -13265.0,0.029143887148074303 -13266.0,0.029133822944185928 -13267.0,0.029123762215750207 -13268.0,0.02911370496156698 -13269.0,0.029103651180436466 -13270.0,0.02909360087115933 -13271.0,0.029083554032536648 -13272.0,0.029073510663369904 -13273.0,0.029063470762461015 -13274.0,0.02905343432861226 -13275.0,0.029043401360626383 -13276.0,0.029033371857306523 -13277.0,0.029023345817456248 -13278.0,0.029013323239879495 -13279.0,0.02900330412338066 -13280.0,0.028993288466764536 -13281.0,0.028983276268836337 -13282.0,0.028973267528401656 -13283.0,0.02896326224426654 -13284.0,0.02895326041523743 -13285.0,0.028943262040121192 -13286.0,0.028933267117725064 -13287.0,0.028923275646856747 -13288.0,0.02891328762632432 -13289.0,0.028903303054936297 -13290.0,0.028893321931501594 -13291.0,0.028883344254829513 -13292.0,0.028873370023729805 -13293.0,0.028863399237012616 -13294.0,0.028853431893488515 -13295.0,0.028843467991968446 -13296.0,0.028833507531263805 -13297.0,0.028823550510186372 -13298.0,0.028813596927548372 -13299.0,0.02880364678216238 -13300.0,0.028793700072841433 -13301.0,0.02878375679839896 -13302.0,0.02877381695764881 -13303.0,0.028763880549405218 -13304.0,0.028753947572482844 -13305.0,0.02874401802569676 -13306.0,0.028734091907862462 -13307.0,0.028724169217795803 -13308.0,0.028714249954313095 -13309.0,0.02870433411623104 -13310.0,0.028694421702366756 -13311.0,0.02868451271153777 -13312.0,0.02867460714256199 -13313.0,0.028664704994257766 -13314.0,0.028654806265443845 -13315.0,0.028644910954939394 -13316.0,0.028635019061563946 -13317.0,0.028625130584137487 -13318.0,0.028615245521480388 -13319.0,0.028605363872413452 -13320.0,0.02859548563575784 -13321.0,0.028585610810335164 -13322.0,0.028575739394967433 -13323.0,0.02856587138847707 -13324.0,0.028556006789686866 -13325.0,0.028546145597420063 -13326.0,0.02853628781050029 -13327.0,0.028526433427751584 -13328.0,0.028516582447998404 -13329.0,0.02850673487006557 -13330.0,0.02849689069277836 -13331.0,0.028487049914962426 -13332.0,0.02847721253544385 -13333.0,0.028467378553049084 -13334.0,0.02845754796660501 -13335.0,0.028447720774938918 -13336.0,0.028437896976878506 -13337.0,0.028428076571251838 -13338.0,0.028418259556887426 -13339.0,0.028408445932614174 -13340.0,0.0283986356972614 -13341.0,0.02838882884965879 -13342.0,0.028379025388636465 -13343.0,0.02836922531302495 -13344.0,0.028359428621655178 -13345.0,0.028349635313358452 -13346.0,0.02833984538696651 -13347.0,0.028330058841311487 -13348.0,0.028320275675225923 -13349.0,0.028310495887542763 -13350.0,0.028300719477095334 -13351.0,0.028290946442717384 -13352.0,0.02828117678324307 -13353.0,0.02827141049750695 -13354.0,0.02826164758434395 -13355.0,0.028251888042589445 -13356.0,0.028242131871079188 -13357.0,0.028232379068649355 -13358.0,0.028222629634136482 -13359.0,0.028212883566377543 -13360.0,0.028203140864209903 -13361.0,0.028193401526471342 -13362.0,0.028183665552000005 -13363.0,0.02817393293963447 -13364.0,0.02816420368821371 -13365.0,0.028154477796577097 -13366.0,0.028144755263564414 -13367.0,0.028135036088015805 -13368.0,0.028125320268771865 -13369.0,0.028115607804673558 -13370.0,0.028105898694562276 -13371.0,0.028096192937279767 -13372.0,0.028086490531668215 -13373.0,0.028076791476570197 -13374.0,0.028067095770828696 -13375.0,0.028057403413287062 -13376.0,0.02804771440278908 -13377.0,0.028038028738178924 -13378.0,0.02802834641830117 -13379.0,0.02801866744200077 -13380.0,0.0280089918081231 -13381.0,0.027999319515513932 -13382.0,0.02798965056301943 -13383.0,0.02797998494948617 -13384.0,0.02797032267376109 -13385.0,0.027960663734691568 -13386.0,0.027951008131125357 -13387.0,0.027941355861910627 -13388.0,0.027931706925895913 -13389.0,0.02792206132193017 -13390.0,0.02791241904886276 -13391.0,0.027902780105543434 -13392.0,0.02789314449082231 -13393.0,0.02788351220354995 -13394.0,0.027873883242577287 -13395.0,0.02786425760675567 -13396.0,0.027854635294936807 -13397.0,0.027845016305972834 -13398.0,0.02783540063871628 -13399.0,0.02782578829202008 -13400.0,0.027816179264737523 -13401.0,0.027806573555722334 -13402.0,0.027796971163828624 -13403.0,0.0277873720879109 -13404.0,0.027777776326824065 -13405.0,0.0277681838794234 -13406.0,0.027758594744564605 -13407.0,0.02774900892110377 -13408.0,0.027739426407897377 -13409.0,0.02772984720380229 -13410.0,0.027720271307675785 -13411.0,0.027710698718375528 -13412.0,0.027701129434759594 -13413.0,0.027691563455686415 -13414.0,0.027682000780014843 -13415.0,0.027672441406604128 -13416.0,0.027662885334313915 -13417.0,0.02765333256200421 -13418.0,0.02764378308853545 -13419.0,0.027634236912768458 -13420.0,0.027624694033564434 -13421.0,0.027615154449785 -13422.0,0.027605618160292132 -13423.0,0.027596085163948226 -13424.0,0.027586555459616066 -13425.0,0.027577029046158847 -13426.0,0.027567505922440103 -13427.0,0.027557986087323814 -13428.0,0.027548469539674332 -13429.0,0.02753895627835641 -13430.0,0.02752944630223517 -13431.0,0.027519939610176142 -13432.0,0.027510436201045256 -13433.0,0.02750093607370883 -13434.0,0.02749143922703355 -13435.0,0.02748194565988652 -13436.0,0.027472455371135227 -13437.0,0.027462968359647563 -13438.0,0.027453484624291768 -13439.0,0.027444004163936518 -13440.0,0.02743452697745086 -13441.0,0.027425053063704238 -13442.0,0.02741558242156649 -13443.0,0.027406115049907823 -13444.0,0.027396650947598848 -13445.0,0.027387190113510578 -13446.0,0.02737773254651441 -13447.0,0.0273682782454821 -13448.0,0.027358827209285837 -13449.0,0.027349379436798178 -13450.0,0.02733993492689208 -13451.0,0.027330493678440867 -13452.0,0.02732105569031827 -13453.0,0.027311620961398414 -13454.0,0.027302189490555812 -13455.0,0.027292761276665335 -13456.0,0.02728333631860228 -13457.0,0.027273914615242312 -13458.0,0.027264496165461494 -13459.0,0.027255080968136287 -13460.0,0.027245669022143506 -13461.0,0.027236260326360378 -13462.0,0.02722685487966452 -13463.0,0.02721745268093394 -13464.0,0.027208053729047003 -13465.0,0.02719865802288249 -13466.0,0.027189265561319568 -13467.0,0.02717987634323779 -13468.0,0.027170490367517074 -13469.0,0.02716110763303775 -13470.0,0.027151728138680525 -13471.0,0.027142351883326508 -13472.0,0.027132978865857152 -13473.0,0.027123609085154342 -13474.0,0.027114242540100326 -13475.0,0.02710487922957776 -13476.0,0.027095519152469643 -13477.0,0.0270861623076594 -13478.0,0.027076808694030823 -13479.0,0.027067458310468098 -13480.0,0.027058111155855807 -13481.0,0.027048767229078872 -13482.0,0.027039426529022647 -13483.0,0.027030089054572857 -13484.0,0.027020754804615615 -13485.0,0.02701142377803739 -13486.0,0.027002095973725073 -13487.0,0.026992771390565926 -13488.0,0.026983450027447606 -13489.0,0.026974131883258114 -13490.0,0.026964816956885882 -13491.0,0.0269555052472197 -13492.0,0.026946196753148768 -13493.0,0.02693689147356262 -13494.0,0.02692758940735122 -13495.0,0.0269182905534049 -13496.0,0.02690899491061437 -13497.0,0.026899702477870747 -13498.0,0.02689041325406548 -13499.0,0.026881127238090448 -13500.0,0.026871844428837895 -13501.0,0.026862564825200465 -13502.0,0.02685328842607114 -13503.0,0.02684401523034333 -13504.0,0.02683474523691081 -13505.0,0.026825478444667747 -13506.0,0.026816214852508655 -13507.0,0.026806954459328472 -13508.0,0.026797697264022494 -13509.0,0.026788443265486423 -13510.0,0.0267791924626163 -13511.0,0.02676994485430858 -13512.0,0.02676070043946009 -13513.0,0.026751459216968056 -13514.0,0.026742221185730043 -13515.0,0.02673298634464403 -13516.0,0.026723754692608365 -13517.0,0.026714526228521787 -13518.0,0.026705300951283414 -13519.0,0.026696078859792718 -13520.0,0.026686859952949577 -13521.0,0.026677644229654247 -13522.0,0.02666843168880737 -13523.0,0.026659222329309933 -13524.0,0.02665001615006334 -13525.0,0.02664081314996936 -13526.0,0.02663161332793015 -13527.0,0.026622416682848222 -13528.0,0.02661322321362649 -13529.0,0.02660403291916824 -13530.0,0.026594845798377155 -13531.0,0.026585661850157247 -13532.0,0.026576481073412955 -13533.0,0.026567303467049073 -13534.0,0.02655812902997079 -13535.0,0.026548957761083663 -13536.0,0.02653978965929361 -13537.0,0.02653062472350695 -13538.0,0.02652146295263038 -13539.0,0.026512304345570975 -13540.0,0.026503148901236152 -13541.0,0.026493996618533754 -13542.0,0.026484847496371977 -13543.0,0.026475701533659406 -13544.0,0.026466558729304975 -13545.0,0.026457419082218023 -13546.0,0.026448282591308256 -13547.0,0.026439149255485773 -13548.0,0.026430019073661007 -13549.0,0.026420892044744806 -13550.0,0.026411768167648387 -13551.0,0.02640264744128334 -13552.0,0.026393529864561612 -13553.0,0.026384415436395553 -13554.0,0.02637530415569788 -13555.0,0.02636619602138168 -13556.0,0.026357091032360433 -13557.0,0.026347989187547955 -13558.0,0.026338890485858475 -13559.0,0.026329794926206587 -13560.0,0.026320702507507263 -13561.0,0.026311613228675826 -13562.0,0.026302527088628 -13563.0,0.026293444086279878 -13564.0,0.026284364220547928 -13565.0,0.026275287490348975 -13566.0,0.026266213894600234 -13567.0,0.0262571434322193 -13568.0,0.026248076102124134 -13569.0,0.026239011903233054 -13570.0,0.026229950834464777 -13571.0,0.026220892894738383 -13572.0,0.026211838082973324 -13573.0,0.026202786398089446 -13574.0,0.026193737839006918 -13575.0,0.026184692404646326 -13576.0,0.026175650093928617 -13577.0,0.026166610905775118 -13578.0,0.0261575748391075 -13579.0,0.02614854189284784 -13580.0,0.026139512065918573 -13581.0,0.02613048535724251 -13582.0,0.02612146176574281 -13583.0,0.026112441290343045 -13584.0,0.026103423929967128 -13585.0,0.02609440968353937 -13586.0,0.026085398549984415 -13587.0,0.026076390528227307 -13588.0,0.026067385617193455 -13589.0,0.026058383815808658 -13590.0,0.026049385122999036 -13591.0,0.026040389537691125 -13592.0,0.026031397058811814 -13593.0,0.026022407685288372 -13594.0,0.02601342141604844 -13595.0,0.02600443825002 -13596.0,0.025995458186131432 -13597.0,0.025986481223311486 -13598.0,0.025977507360489288 -13599.0,0.025968536596594295 -13600.0,0.025959568930556374 -13601.0,0.025950604361305744 -13602.0,0.025941642887773012 -13603.0,0.025932684508889116 -13604.0,0.0259237292235854 -13605.0,0.02591477703079356 -13606.0,0.02590582792944568 -13607.0,0.025896881918474172 -13608.0,0.02588793899681185 -13609.0,0.025878999163391897 -13610.0,0.025870062417147854 -13611.0,0.02586112875701364 -13612.0,0.02585219818192351 -13613.0,0.025843270690812128 -13614.0,0.02583434628261451 -13615.0,0.025825424956266045 -13616.0,0.025816506710702465 -13617.0,0.0258075915448599 -13618.0,0.025798679457674837 -13619.0,0.025789770448084136 -13620.0,0.025780864515024995 -13621.0,0.025771961657435012 -13622.0,0.025763061874252147 -13623.0,0.025754165164414727 -13624.0,0.025745271526861416 -13625.0,0.025736380960531283 -13626.0,0.025727493464363746 -13627.0,0.0257186090372986 -13628.0,0.025709727678275982 -13629.0,0.025700849386236416 -13630.0,0.02569197416012079 -13631.0,0.02568310199887035 -13632.0,0.025674232901426727 -13633.0,0.02566536686673188 -13634.0,0.025656503893728165 -13635.0,0.025647643981358294 -13636.0,0.025638787128565356 -13637.0,0.02562993333429277 -13638.0,0.025621082597484354 -13639.0,0.02561223491708428 -13640.0,0.0256033902920371 -13641.0,0.02559454872128768 -13642.0,0.025585710203781312 -13643.0,0.025576874738463613 -13644.0,0.025568042324280595 -13645.0,0.025559212960178587 -13646.0,0.025550386645104325 -13647.0,0.025541563378004895 -13648.0,0.025532743157827744 -13649.0,0.025523925983520695 -13650.0,0.0255151118540319 -13651.0,0.02550630076830991 -13652.0,0.02549749272530363 -13653.0,0.02548868772396233 -13654.0,0.025479885763235618 -13655.0,0.025471086842073495 -13656.0,0.025462290959426315 -13657.0,0.025453498114244806 -13658.0,0.02544470830548002 -13659.0,0.025435921532083405 -13660.0,0.02542713779300677 -13661.0,0.02541835708720229 -13662.0,0.02540957941362246 -13663.0,0.02540080477122019 -13664.0,0.02539203315894872 -13665.0,0.025383264575761677 -13666.0,0.02537449902061301 -13667.0,0.02536573649245706 -13668.0,0.025356976990248525 -13669.0,0.025348220512942457 -13670.0,0.02533946705949429 -13671.0,0.02533071662885977 -13672.0,0.02532196921999505 -13673.0,0.025313224831856624 -13674.0,0.02530448346340137 -13675.0,0.025295745113586475 -13676.0,0.025287009781369534 -13677.0,0.025278277465708484 -13678.0,0.025269548165561633 -13679.0,0.02526082187988762 -13680.0,0.02525209860764547 -13681.0,0.025243378347794564 -13682.0,0.02523466109929465 -13683.0,0.025225946861105797 -13684.0,0.025217235632188476 -13685.0,0.0252085274115035 -13686.0,0.025199822198012038 -13687.0,0.025191119990675637 -13688.0,0.025182420788456162 -13689.0,0.02517372459031587 -13690.0,0.025165031395217377 -13691.0,0.025156341202123653 -13692.0,0.025147654009998 -13693.0,0.02513896981780411 -13694.0,0.025130288624506024 -13695.0,0.025121610429068148 -13696.0,0.025112935230455213 -13697.0,0.025104263027632346 -13698.0,0.025095593819565016 -13699.0,0.02508692760521906 -13700.0,0.025078264383560638 -13701.0,0.025069604153556302 -13702.0,0.02506094691417295 -13703.0,0.02505229266437785 -13704.0,0.02504364140313859 -13705.0,0.025034993129423148 -13706.0,0.02502634784219985 -13707.0,0.02501770554043737 -13708.0,0.02500906622310476 -13709.0,0.02500042988917139 -13710.0,0.02499179653760702 -13711.0,0.024983166167381755 -13712.0,0.024974538777466065 -13713.0,0.02496591436683074 -13714.0,0.024957292934446967 -13715.0,0.024948674479286267 -13716.0,0.024940059000320536 -13717.0,0.024931446496521986 -13718.0,0.024922836966863218 -13719.0,0.024914230410317182 -13720.0,0.024905626825857185 -13721.0,0.024897026212456864 -13722.0,0.024888428569090237 -13723.0,0.024879833894731668 -13724.0,0.024871242188355878 -13725.0,0.024862653448937944 -13726.0,0.024854067675453277 -13727.0,0.024845484866877664 -13728.0,0.024836905022187238 -13729.0,0.0248283281403585 -13730.0,0.024819754220368265 -13731.0,0.024811183261193737 -13732.0,0.024802615261812468 -13733.0,0.024794050221202367 -13734.0,0.024785488138341666 -13735.0,0.02477692901220898 -13736.0,0.024768372841783265 -13737.0,0.02475981962604385 -13738.0,0.024751269363970374 -13739.0,0.02474272205454286 -13740.0,0.024734177696741685 -13741.0,0.024725636289547572 -13742.0,0.024717097831941575 -13743.0,0.02470856232290513 -13744.0,0.02470002976142001 -13745.0,0.024691500146468346 -13746.0,0.024682973477032626 -13747.0,0.024674449752095658 -13748.0,0.024665928970640637 -13749.0,0.024657411131651097 -13750.0,0.024648896234110925 -13751.0,0.024640384277004344 -13752.0,0.024631875259315945 -13753.0,0.024623369180030667 -13754.0,0.024614866038133804 -13755.0,0.024606365832610975 -13756.0,0.024597868562448173 -13757.0,0.024589374226631745 -13758.0,0.02458088282414838 -13759.0,0.0245723943539851 -13760.0,0.0245639088151293 -13761.0,0.024555426206568715 -13762.0,0.02454694652729144 -13763.0,0.024538469776285914 -13764.0,0.024529995952540903 -13765.0,0.024521525055045554 -13766.0,0.02451305708278935 -13767.0,0.024504592034762133 -13768.0,0.024496129909954062 -13769.0,0.024487670707355684 -13770.0,0.024479214425957872 -13771.0,0.024470761064751864 -13772.0,0.024462310622729216 -13773.0,0.024453863098881867 -13774.0,0.02444541849220208 -13775.0,0.024436976801682494 -13776.0,0.02442853802631605 -13777.0,0.024420102165096075 -13778.0,0.024411669217016232 -13779.0,0.024403239181070548 -13780.0,0.02439481205625335 -13781.0,0.024386387841559366 -13782.0,0.02437796653598364 -13783.0,0.02436954813852157 -13784.0,0.024361132648168922 -13785.0,0.02435272006392176 -13786.0,0.02434431038477654 -13787.0,0.02433590360973005 -13788.0,0.024327499737779427 -13789.0,0.02431909876792213 -13790.0,0.024310700699156 -13791.0,0.024302305530479205 -13792.0,0.024293913260890275 -13793.0,0.024285523889388053 -13794.0,0.024277137414971756 -13795.0,0.024268753836640938 -13796.0,0.024260373153395513 -13797.0,0.024251995364235706 -13798.0,0.024243620468162114 -13799.0,0.024235248464175678 -13800.0,0.024226879351277677 -13801.0,0.024218513128469746 -13802.0,0.024210149794753832 -13803.0,0.02420178934913227 -13804.0,0.02419343179060771 -13805.0,0.024185077118183174 -13806.0,0.024176725330861983 -13807.0,0.024168376427647846 -13808.0,0.0241600304075448 -13809.0,0.02415168726955723 -13810.0,0.02414334701268984 -13811.0,0.024135009635947717 -13812.0,0.024126675138336263 -13813.0,0.02411834351886125 -13814.0,0.024110014776528754 -13815.0,0.024101688910345226 -13816.0,0.024093365919317454 -13817.0,0.024085045802452573 -13818.0,0.02407672855875803 -13819.0,0.02406841418724166 -13820.0,0.024060102686911607 -13821.0,0.024051794056776373 -13822.0,0.024043488295844812 -13823.0,0.02403518540312609 -13824.0,0.02402688537762973 -13825.0,0.024018588218365614 -13826.0,0.02401029392434395 -13827.0,0.024002002494575278 -13828.0,0.0239937139280705 -13829.0,0.02398542822384084 -13830.0,0.023977145380897895 -13831.0,0.02396886539825356 -13832.0,0.023960588274920102 -13833.0,0.02395231400991012 -13834.0,0.023944042602236565 -13835.0,0.023935774050912698 -13836.0,0.02392750835495215 -13837.0,0.023919245513368888 -13838.0,0.023910985525177213 -13839.0,0.023902728389391777 -13840.0,0.023894474105027548 -13841.0,0.023886222671099855 -13842.0,0.023877974086624364 -13843.0,0.02386972835061709 -13844.0,0.023861485462094354 -13845.0,0.023853245420072854 -13846.0,0.02384500822356961 -13847.0,0.023836773871601998 -13848.0,0.023828542363187696 -13849.0,0.023820313697344754 -13850.0,0.023812087873091557 -13851.0,0.02380386488944683 -13852.0,0.02379564474542961 -13853.0,0.023787427440059312 -13854.0,0.023779212972355662 -13855.0,0.023771001341338745 -13856.0,0.02376279254602896 -13857.0,0.023754586585447064 -13858.0,0.023746383458614143 -13859.0,0.023738183164551625 -13860.0,0.023729985702281287 -13861.0,0.023721791070825213 -13862.0,0.023713599269205847 -13863.0,0.023705410296445968 -13864.0,0.02369722415156871 -13865.0,0.023689040833597495 -13866.0,0.023680860341556125 -13867.0,0.02367268267446873 -13868.0,0.023664507831359784 -13869.0,0.023656335811254068 -13870.0,0.023648166613176726 -13871.0,0.023640000236153234 -13872.0,0.023631836679209414 -13873.0,0.023623675941371394 -13874.0,0.023615518021665664 -13875.0,0.023607362919119045 -13876.0,0.023599210632758695 -13877.0,0.023591061161612113 -13878.0,0.023582914504707106 -13879.0,0.023574770661071852 -13880.0,0.023566629629734843 -13881.0,0.02355849140972493 -13882.0,0.023550356000071257 -13883.0,0.02354222339980334 -13884.0,0.023534093607951022 -13885.0,0.02352596662354449 -13886.0,0.023517842445614227 -13887.0,0.023509721073191093 -13888.0,0.023501602505306262 -13889.0,0.023493486740991266 -13890.0,0.02348537377927793 -13891.0,0.023477263619198444 -13892.0,0.02346915625978533 -13893.0,0.023461051700071445 -13894.0,0.023452949939089952 -13895.0,0.023444850975874388 -13896.0,0.0234367548094586 -13897.0,0.023428661438876775 -13898.0,0.023420570863163445 -13899.0,0.023412483081353443 -13900.0,0.023404398092481963 -13901.0,0.023396315895584528 -13902.0,0.023388236489696995 -13903.0,0.023380159873855538 -13904.0,0.023372086047096678 -13905.0,0.02336401500845727 -13906.0,0.023355946756974513 -13907.0,0.023347881291685895 -13908.0,0.023339818611629277 -13909.0,0.02333175871584284 -13910.0,0.02332370160336511 -13911.0,0.023315647273234912 -13912.0,0.02330759572449143 -13913.0,0.023299546956174175 -13914.0,0.023291500967322985 -13915.0,0.02328345775697805 -13916.0,0.023275417324179842 -13917.0,0.023267379667969216 -13918.0,0.023259344787387334 -13919.0,0.023251312681475702 -13920.0,0.02324328334927613 -13921.0,0.023235256789830787 -13922.0,0.023227233002182164 -13923.0,0.023219211985373092 -13924.0,0.023211193738446698 -13925.0,0.02320317826044648 -13926.0,0.023195165550416244 -13927.0,0.023187155607400145 -13928.0,0.023179148430442633 -13929.0,0.023171144018588524 -13930.0,0.02316314237088295 -13931.0,0.023155143486371377 -13932.0,0.023147147364099584 -13933.0,0.023139154003113695 -13934.0,0.023131163402460162 -13935.0,0.02312317556118577 -13936.0,0.023115190478337634 -13937.0,0.023107208152963167 -13938.0,0.023099228584110156 -13939.0,0.023091251770826687 -13940.0,0.0230832777121612 -13941.0,0.023075306407162426 -13942.0,0.023067337854879456 -13943.0,0.0230593720543617 -13944.0,0.02305140900465891 -13945.0,0.023043448704821126 -13946.0,0.023035491153898757 -13947.0,0.023027536350942523 -13948.0,0.023019584295003483 -13949.0,0.023011634985132996 -13950.0,0.02300368842038278 -13951.0,0.02299574459980486 -13952.0,0.022987803522451604 -13953.0,0.022979865187375707 -13954.0,0.022971929593630164 -13955.0,0.022963996740268323 -13956.0,0.02295606662634386 -13957.0,0.02294813925091077 -13958.0,0.02294021461302336 -13959.0,0.02293229271173629 -13960.0,0.022924373546104538 -13961.0,0.022916457115183406 -13962.0,0.022908543418028508 -13963.0,0.022900632453695807 -13964.0,0.02289272422124158 -13965.0,0.022884818719722443 -13966.0,0.02287691594819531 -13967.0,0.02286901590571745 -13968.0,0.022861118591346437 -13969.0,0.022853224004140197 -13970.0,0.022845332143156937 -13971.0,0.022837443007455233 -13972.0,0.022829556596093963 -13973.0,0.022821672908132334 -13974.0,0.022813791942629898 -13975.0,0.022805913698646485 -13976.0,0.02279803817524229 -13977.0,0.022790165371477822 -13978.0,0.022782295286413925 -13979.0,0.022774427919111728 -13980.0,0.022766563268632727 -13981.0,0.02275870133403873 -13982.0,0.022750842114391864 -13983.0,0.022742985608754575 -13984.0,0.02273513181618964 -13985.0,0.02272728073576016 -13986.0,0.02271943236652957 -13987.0,0.0227115867075616 -13988.0,0.02270374375792032 -13989.0,0.022695903516670134 -13990.0,0.022688065982875753 -13991.0,0.022680231155602228 -13992.0,0.0226723990339149 -13993.0,0.022664569616879467 -13994.0,0.022656742903561934 -13995.0,0.02264891889302864 -13996.0,0.022641097584346223 -13997.0,0.022633278976581662 -13998.0,0.022625463068802254 -13999.0,0.022617649860075632 -14000.0,0.022609839349469717 -14001.0,0.02260203153605278 -14002.0,0.022594226418893405 -14003.0,0.022586423997060512 -14004.0,0.022578624269623305 -14005.0,0.022570827235651344 -14006.0,0.022563032894214505 -14007.0,0.022555241244382983 -14008.0,0.02254745228522727 -14009.0,0.02253966601581822 -14010.0,0.02253188243522698 -14011.0,0.022524101542525026 -14012.0,0.022516323336784168 -14013.0,0.022508547817076497 -14014.0,0.022500774982474464 -14015.0,0.022493004832050828 -14016.0,0.02248523736487867 -14017.0,0.02247747258003138 -14018.0,0.02246971047658267 -14019.0,0.02246195105360659 -14020.0,0.022454194310177502 -14021.0,0.022446440245370066 -14022.0,0.022438688858259285 -14023.0,0.022430940147920478 -14024.0,0.02242319411342929 -14025.0,0.022415450753861654 -14026.0,0.022407710068293854 -14027.0,0.022399972055802485 -14028.0,0.022392236715464454 -14029.0,0.022384504046357005 -14030.0,0.022376774047557668 -14031.0,0.022369046718144315 -14032.0,0.022361322057195137 -14033.0,0.02235360006378865 -14034.0,0.022345880737003648 -14035.0,0.02233816407591929 -14036.0,0.022330450079615028 -14037.0,0.022322738747170653 -14038.0,0.02231503007766624 -14039.0,0.02230732407018221 -14040.0,0.02229962072379929 -14041.0,0.02229192003759854 -14042.0,0.022284222010661298 -14043.0,0.022276526642069264 -14044.0,0.02226883393090443 -14045.0,0.02226114387624913 -14046.0,0.022253456477185966 -14047.0,0.022245771732797907 -14048.0,0.02223808964216821 -14049.0,0.022230410204380463 -14050.0,0.022222733418518575 -14051.0,0.02221505928366674 -14052.0,0.022207387798909503 -14053.0,0.022199718963331706 -14054.0,0.022192052776018528 -14055.0,0.022184389236055427 -14056.0,0.022176728342528207 -14057.0,0.02216907009452298 -14058.0,0.022161414491126182 -14059.0,0.022153761531424537 -14060.0,0.022146111214505115 -14061.0,0.022138463539455287 -14062.0,0.022130818505362748 -14063.0,0.022123176111315482 -14064.0,0.022115536356401823 -14065.0,0.022107899239710394 -14066.0,0.022100264760330154 -14067.0,0.022092632917350363 -14068.0,0.02208500370986059 -14069.0,0.02207737713695073 -14070.0,0.022069753197710987 -14071.0,0.022062131891231896 -14072.0,0.022054513216604264 -14073.0,0.022046897172919255 -14074.0,0.022039283759268325 -14075.0,0.022031672974743264 -14076.0,0.022024064818436138 -14077.0,0.02201645928943936 -14078.0,0.022008856386845646 -14079.0,0.022001256109748034 -14080.0,0.021993658457239846 -14081.0,0.02198606342841475 -14082.0,0.02197847102236672 -14083.0,0.02197088123819003 -14084.0,0.021963294074979274 -14085.0,0.021955709531829355 -14086.0,0.0219481276078355 -14087.0,0.021940548302093233 -14088.0,0.021932971613698414 -14089.0,0.02192539754174718 -14090.0,0.021917826085336007 -14091.0,0.021910257243561673 -14092.0,0.021902691015521288 -14093.0,0.021895127400312228 -14094.0,0.021887566397032224 -14095.0,0.0218800080047793 -14096.0,0.021872452222651807 -14097.0,0.021864899049748376 -14098.0,0.021857348485167977 -14099.0,0.021849800528009885 -14100.0,0.02184225517737369 -14101.0,0.02183471243235927 -14102.0,0.02182717229206684 -14103.0,0.02181963475559691 -14104.0,0.021812099822050315 -14105.0,0.021804567490528202 -14106.0,0.021797037760131994 -14107.0,0.02178951062996346 -14108.0,0.021781986099124673 -14109.0,0.021774464166718018 -14110.0,0.02176694483184616 -14111.0,0.021759428093612112 -14112.0,0.02175191395111918 -14113.0,0.021744402403470996 -14114.0,0.02173689344977146 -14115.0,0.02172938708912482 -14116.0,0.021721883320635627 -14117.0,0.02171438214340874 -14118.0,0.02170688355654931 -14119.0,0.02169938755916281 -14120.0,0.021691894150355034 -14121.0,0.021684403329232074 -14122.0,0.021676915094900315 -14123.0,0.021669429446466472 -14124.0,0.021661946383037565 -14125.0,0.021654465903720915 -14126.0,0.02164698800762417 -14127.0,0.021639512693855247 -14128.0,0.02163203996152241 -14129.0,0.02162456980973421 -14130.0,0.02161710223759953 -14131.0,0.021609637244227518 -14132.0,0.021602174828727665 -14133.0,0.021594714990209762 -14134.0,0.021587257727783915 -14135.0,0.0215798030405605 -14136.0,0.02157235092765025 -14137.0,0.02156490138816417 -14138.0,0.021557454421213595 -14139.0,0.021550010025910147 -14140.0,0.021542568201365762 -14141.0,0.02153512894669269 -14142.0,0.021527692261003484 -14143.0,0.02152025814341101 -14144.0,0.021512826593028406 -14145.0,0.021505397608969162 -14146.0,0.021497971190347052 -14147.0,0.021490547336276162 -14148.0,0.021483126045870864 -14149.0,0.021475707318245864 -14150.0,0.021468291152516163 -14151.0,0.02146087754779707 -14152.0,0.021453466503204184 -14153.0,0.021446058017853424 -14154.0,0.02143865209086102 -14155.0,0.0214312487213435 -14156.0,0.02142384790841768 -14157.0,0.02141644965120071 -14158.0,0.021409053948810028 -14159.0,0.02140166080036339 -14160.0,0.02139427020497883 -14161.0,0.021386882161774715 -14162.0,0.0213794966698697 -14163.0,0.021372113728382755 -14164.0,0.021364733336433156 -14165.0,0.021357355493140454 -14166.0,0.021349980197624543 -14167.0,0.021342607449005596 -14168.0,0.021335237246404116 -14169.0,0.021327869588940864 -14170.0,0.021320504475736947 -14171.0,0.021313141905913758 -14172.0,0.02130578187859301 -14173.0,0.02129842439289668 -14174.0,0.021291069447947085 -14175.0,0.02128371704286684 -14176.0,0.021276367176778856 -14177.0,0.021269019848806338 -14178.0,0.021261675058072804 -14179.0,0.02125433280370208 -14180.0,0.02124699308481829 -14181.0,0.021239655900545863 -14182.0,0.02123232125000951 -14183.0,0.02122498913233427 -14184.0,0.02121765954664548 -14185.0,0.021210332492068773 -14186.0,0.021203007967730076 -14187.0,0.02119568597275563 -14188.0,0.021188366506271972 -14189.0,0.02118104956740596 -14190.0,0.02117373515528471 -14191.0,0.021166423269035683 -14192.0,0.02115911390778662 -14193.0,0.02115180707066558 -14194.0,0.021144502756800885 -14195.0,0.0211372009653212 -14196.0,0.02112990169535547 -14197.0,0.02112260494603296 -14198.0,0.021115310716483197 -14199.0,0.021108019005836042 -14200.0,0.021100729813221652 -14201.0,0.021093443137770472 -14202.0,0.02108615897861327 -14203.0,0.02107887733488108 -14204.0,0.021071598205705266 -14205.0,0.021064321590217473 -14206.0,0.02105704748754967 -14207.0,0.02104977589683409 -14208.0,0.02104250681720329 -14209.0,0.02103524024779013 -14210.0,0.021027976187727764 -14211.0,0.021020714636149625 -14212.0,0.021013455592189475 -14213.0,0.02100619905498136 -14214.0,0.020998945023659638 -14215.0,0.02099169349735894 -14216.0,0.020984444475214217 -14217.0,0.020977197956360716 -14218.0,0.02096995393993398 -14219.0,0.02096271242506986 -14220.0,0.020955473410904476 -14221.0,0.020948236896574275 -14222.0,0.020941002881215996 -14223.0,0.020933771363966684 -14224.0,0.020926542343963652 -14225.0,0.02091931582034454 -14226.0,0.020912091792247272 -14227.0,0.02090487025881009 -14228.0,0.020897651219171493 -14229.0,0.02089043467247032 -14230.0,0.020883220617845682 -14231.0,0.020876009054437004 -14232.0,0.020868799981383985 -14233.0,0.020861593397826644 -14234.0,0.020854389302905285 -14235.0,0.020847187695760525 -14236.0,0.02083998857553324 -14237.0,0.020832791941364646 -14238.0,0.020825597792396226 -14239.0,0.020818406127769782 -14240.0,0.020811216946627402 -14241.0,0.020804030248111453 -14242.0,0.020796846031364623 -14243.0,0.020789664295529888 -14244.0,0.02078248503975053 -14245.0,0.020775308263170096 -14246.0,0.020768133964932458 -14247.0,0.02076096214418177 -14248.0,0.020753792800062506 -14249.0,0.02074662593171939 -14250.0,0.020739461538297477 -14251.0,0.020732299618942105 -14252.0,0.020725140172798924 -14253.0,0.02071798319901384 -14254.0,0.020710828696733092 -14255.0,0.020703676665103195 -14256.0,0.02069652710327097 -14257.0,0.02068938001038353 -14258.0,0.020682235385588266 -14259.0,0.02067509322803288 -14260.0,0.020667953536865367 -14261.0,0.020660816311234027 -14262.0,0.020653681550287416 -14263.0,0.020646549253174423 -14264.0,0.02063941941904421 -14265.0,0.02063229204704626 -14266.0,0.020625167136330304 -14267.0,0.0206180446860464 -14268.0,0.020610924695344895 -14269.0,0.020603807163376436 -14270.0,0.02059669208929193 -14271.0,0.020589579472242617 -14272.0,0.020582469311380008 -14273.0,0.020575361605855925 -14274.0,0.020568256354822446 -14275.0,0.020561153557431985 -14276.0,0.020554053212837223 -14277.0,0.020546955320191143 -14278.0,0.020539859878647027 -14279.0,0.020532766887358424 -14280.0,0.0205256763454792 -14281.0,0.020518588252163503 -14282.0,0.020511502606565785 -14283.0,0.020504419407840764 -14284.0,0.020497338655143475 -14285.0,0.020490260347629234 -14286.0,0.02048318448445366 -14287.0,0.020476111064772637 -14288.0,0.020469040087742363 -14289.0,0.020461971552519328 -14290.0,0.02045490545826031 -14291.0,0.020447841804122364 -14292.0,0.020440780589262852 -14293.0,0.020433721812839426 -14294.0,0.020426665474010022 -14295.0,0.02041961157193288 -14296.0,0.020412560105766503 -14297.0,0.020405511074669713 -14298.0,0.02039846447780161 -14299.0,0.020391420314321597 -14300.0,0.02038437858338934 -14301.0,0.020377339284164814 -14302.0,0.02037030241580829 -14303.0,0.020363267977480327 -14304.0,0.020356235968341747 -14305.0,0.020349206387553696 -14306.0,0.020342179234277592 -14307.0,0.02033515450767516 -14308.0,0.02032813220690838 -14309.0,0.020321112331139556 -14310.0,0.020314094879531265 -14311.0,0.020307079851246385 -14312.0,0.020300067245448052 -14313.0,0.020293057061299732 -14314.0,0.020286049297965156 -14315.0,0.020279043954608347 -14316.0,0.02027204103039363 -14317.0,0.02026504052448559 -14318.0,0.020258042436049124 -14319.0,0.020251046764249412 -14320.0,0.020244053508251935 -14321.0,0.020237062667222423 -14322.0,0.020230074240326933 -14323.0,0.020223088226731797 -14324.0,0.02021610462560364 -14325.0,0.020209123436109352 -14326.0,0.02020214465741614 -14327.0,0.020195168288691487 -14328.0,0.02018819432910317 -14329.0,0.020181222777819228 -14330.0,0.020174253634008016 -14331.0,0.020167286896838166 -14332.0,0.020160322565478596 -14333.0,0.02015336063909852 -14334.0,0.020146401116867416 -14335.0,0.02013944399795507 -14336.0,0.02013248928153155 -14337.0,0.020125536966767218 -14338.0,0.020118587052832697 -14339.0,0.020111639538898916 -14340.0,0.020104694424137096 -14341.0,0.020097751707718735 -14342.0,0.02009081138881561 -14343.0,0.020083873466599792 -14344.0,0.02007693794024364 -14345.0,0.020070004808919805 -14346.0,0.0200630740718012 -14347.0,0.020056145728061043 -14348.0,0.020049219776872837 -14349.0,0.020042296217410376 -14350.0,0.020035375048847705 -14351.0,0.020028456270359197 -14352.0,0.020021539881119484 -14353.0,0.020014625880303498 -14354.0,0.020007714267086456 -14355.0,0.020000805040643832 -14356.0,0.01999389820015142 -14357.0,0.019986993744785277 -14358.0,0.019980091673721768 -14359.0,0.019973191986137506 -14360.0,0.019966294681209414 -14361.0,0.0199593997581147 -14362.0,0.01995250721603085 -14363.0,0.01994561705413563 -14364.0,0.019938729271607086 -14365.0,0.019931843867623568 -14366.0,0.019924960841363703 -14367.0,0.019918080192006377 -14368.0,0.01991120191873079 -14369.0,0.019904326020716415 -14370.0,0.019897452497143 -14371.0,0.0198905813471906 -14372.0,0.019883712570039517 -14373.0,0.019876846164870367 -14374.0,0.019869982130864033 -14375.0,0.0198631204672017 -14376.0,0.0198562611730648 -14377.0,0.01984940424763508 -14378.0,0.01984254969009456 -14379.0,0.01983569749962554 -14380.0,0.019828847675410603 -14381.0,0.019822000216632614 -14382.0,0.01981515512247472 -14383.0,0.019808312392120362 -14384.0,0.019801472024753235 -14385.0,0.019794634019557344 -14386.0,0.01978779837571696 -14387.0,0.01978096509241664 -14388.0,0.01977413416884124 -14389.0,0.019767305604175854 -14390.0,0.0197604793976059 -14391.0,0.019753655548317057 -14392.0,0.019746834055495297 -14393.0,0.019740014918326852 -14394.0,0.019733198135998258 -14395.0,0.01972638370769632 -14396.0,0.01971957163260813 -14397.0,0.01971276190992105 -14398.0,0.019705954538822734 -14399.0,0.01969914951850111 -14400.0,0.019692346848144398 -14401.0,0.019685546526941076 -14402.0,0.01967874855407992 -14403.0,0.019671952928749983 -14404.0,0.019665159650140603 -14405.0,0.019658368717441376 -14406.0,0.0196515801298422 -14407.0,0.019644793886533247 -14408.0,0.01963800998670497 -14409.0,0.019631228429548106 -14410.0,0.019624449214253648 -14411.0,0.019617672340012892 -14412.0,0.019610897806017404 -14413.0,0.019604125611459047 -14414.0,0.019597355755529927 -14415.0,0.019590588237422456 -14416.0,0.019583823056329323 -14417.0,0.019577060211443495 -14418.0,0.0195702997019582 -14419.0,0.019563541527066963 -14420.0,0.019556785685963588 -14421.0,0.01955003217784216 -14422.0,0.019543281001897016 -14423.0,0.0195365321573228 -14424.0,0.01952978564331442 -14425.0,0.01952304145906707 -14426.0,0.019516299603776228 -14427.0,0.01950956007663762 -14428.0,0.01950282287684728 -14429.0,0.019496088003601503 -14430.0,0.019489355456096882 -14431.0,0.019482625233530258 -14432.0,0.019475897335098767 -14433.0,0.019469171759999824 -14434.0,0.019462448507431125 -14435.0,0.019455727576590618 -14436.0,0.01944900896667655 -14437.0,0.01944229267688745 -14438.0,0.019435578706422107 -14439.0,0.019428867054479586 -14440.0,0.019422157720259244 -14441.0,0.0194154507029607 -14442.0,0.019408746001783873 -14443.0,0.01940204361592892 -14444.0,0.019395343544596304 -14445.0,0.019388645786986753 -14446.0,0.019381950342301276 -14447.0,0.019375257209741165 -14448.0,0.01936856638850796 -14449.0,0.0193618778778035 -14450.0,0.019355191676829895 -14451.0,0.019348507784789543 -14452.0,0.019341826200885086 -14453.0,0.019335146924319466 -14454.0,0.019328469954295897 -14455.0,0.01932179529001787 -14456.0,0.01931512293068913 -14457.0,0.019308452875513724 -14458.0,0.01930178512369596 -14459.0,0.019295119674440437 -14460.0,0.019288456526951995 -14461.0,0.019281795680435775 -14462.0,0.019275137134097193 -14463.0,0.01926848088714193 -14464.0,0.019261826938775952 -14465.0,0.019255175288205473 -14466.0,0.019248525934637013 -14467.0,0.019241878877277345 -14468.0,0.01923523411533354 -14469.0,0.019228591648012907 -14470.0,0.019221951474523054 -14471.0,0.01921531359407186 -14472.0,0.01920867800586748 -14473.0,0.01920204470911832 -14474.0,0.019195413703033088 -14475.0,0.019188784986820747 -14476.0,0.019182158559690556 -14477.0,0.019175534420852007 -14478.0,0.019168912569514897 -14479.0,0.019162293004889294 -14480.0,0.019155675726185532 -14481.0,0.019149060732614208 -14482.0,0.01914244802338621 -14483.0,0.019135837597712684 -14484.0,0.019129229454805056 -14485.0,0.019122623593875034 -14486.0,0.019116020014134573 -14487.0,0.019109418714795913 -14488.0,0.019102819695071577 -14489.0,0.01909622295417435 -14490.0,0.01908962849131728 -14491.0,0.0190830363057137 -14492.0,0.01907644639657721 -14493.0,0.01906985876312169 -14494.0,0.019063273404561265 -14495.0,0.019056690320110363 -14496.0,0.01905010950898367 -14497.0,0.019043530970396145 -14498.0,0.019036954703563008 -14499.0,0.01903038070769976 -14500.0,0.01902380898202217 -14501.0,0.01901723952574629 -14502.0,0.019010672338088428 -14503.0,0.019004107418265158 -14504.0,0.018997544765493334 -14505.0,0.018990984378990085 -14506.0,0.018984426257972812 -14507.0,0.018977870401659158 -14508.0,0.018971316809267072 -14509.0,0.018964765480014755 -14510.0,0.01895821641312069 -14511.0,0.018951669607803607 -14512.0,0.018945125063282522 -14513.0,0.01893858277877672 -14514.0,0.018932042753505768 -14515.0,0.018925504986689465 -14516.0,0.01891896947754792 -14517.0,0.018912436225301484 -14518.0,0.018905905229170804 -14519.0,0.018899376488376758 -14520.0,0.01889285000214053 -14521.0,0.01888632576968355 -14522.0,0.018879803790227526 -14523.0,0.018873284062994447 -14524.0,0.018866766587206537 -14525.0,0.018860251362086317 -14526.0,0.018853738386856566 -14527.0,0.018847227660740346 -14528.0,0.018840719182960954 -14529.0,0.01883421295274199 -14530.0,0.018827708969307303 -14531.0,0.018821207231881024 -14532.0,0.01881470773968753 -14533.0,0.018808210491951485 -14534.0,0.018801715487897816 -14535.0,0.01879522272675172 -14536.0,0.018788732207738648 -14537.0,0.018782243930084333 -14538.0,0.01877575789301477 -14539.0,0.018769274095756225 -14540.0,0.018762792537535235 -14541.0,0.01875631321757858 -14542.0,0.018749836135113333 -14543.0,0.018743361289366826 -14544.0,0.018736888679566664 -14545.0,0.018730418304940696 -14546.0,0.018723950164717066 -14547.0,0.018717484258124164 -14548.0,0.01871102058439067 -14549.0,0.018704559142745495 -14550.0,0.018698099932417844 -14551.0,0.01869164295263718 -14552.0,0.018685188202633242 -14553.0,0.01867873568163601 -14554.0,0.01867228538887575 -14555.0,0.01866583732358299 -14556.0,0.018659391484988536 -14557.0,0.018652947872323425 -14558.0,0.018646506484818987 -14559.0,0.01864006732170682 -14560.0,0.01863363038221877 -14561.0,0.01862719566558697 -14562.0,0.01862076317104379 -14563.0,0.01861433289782188 -14564.0,0.018607904845154167 -14565.0,0.018601479012273832 -14566.0,0.018595055398414308 -14567.0,0.018588634002809308 -14568.0,0.018582214824692807 -14569.0,0.018575797863299055 -14570.0,0.018569383117862538 -14571.0,0.018562970587618032 -14572.0,0.018556560271800568 -14573.0,0.01855015216964545 -14574.0,0.018543746280388226 -14575.0,0.01853734260326472 -14576.0,0.01853094113751103 -14577.0,0.018524541882363497 -14578.0,0.018518144837058752 -14579.0,0.018511750000833656 -14580.0,0.01850535737292536 -14581.0,0.01849896695257127 -14582.0,0.018492578739009065 -14583.0,0.01848619273147666 -14584.0,0.018479808929212256 -14585.0,0.018473427331454316 -14586.0,0.01846704793744157 -14587.0,0.018460670746412985 -14588.0,0.018454295757607816 -14589.0,0.018447922970265578 -14590.0,0.018441552383626044 -14591.0,0.01843518399692924 -14592.0,0.018428817809415472 -14593.0,0.018422453820325296 -14594.0,0.018416092028899544 -14595.0,0.018409732434379288 -14596.0,0.01840337503600588 -14597.0,0.018397019833020924 -14598.0,0.018390666824666297 -14599.0,0.01838431601018414 -14600.0,0.018377967388816828 -14601.0,0.018371620959807024 -14602.0,0.01836527672239765 -14603.0,0.018358934675831887 -14604.0,0.018352594819353165 -14605.0,0.018346257152205187 -14606.0,0.01833992167363192 -14607.0,0.018333588382877596 -14608.0,0.01832725727918668 -14609.0,0.018320928361803927 -14610.0,0.018314601629974354 -14611.0,0.018308277082943206 -14612.0,0.018301954719956024 -14613.0,0.018295634540258596 -14614.0,0.018289316543096967 -14615.0,0.01828300072771745 -14616.0,0.01827668709336661 -14617.0,0.01827037563929128 -14618.0,0.018264066364738565 -14619.0,0.018257759268955783 -14620.0,0.018251454351190556 -14621.0,0.01824515161069076 -14622.0,0.018238851046704516 -14623.0,0.018232552658480217 -14624.0,0.01822625644526651 -14625.0,0.018219962406312306 -14626.0,0.018213670540866783 -14627.0,0.018207380848179338 -14628.0,0.01820109332749967 -14629.0,0.01819480797807773 -14630.0,0.018188524799163715 -14631.0,0.01818224379000809 -14632.0,0.018175964949861578 -14633.0,0.018169688277975157 -14634.0,0.018163413773600066 -14635.0,0.01815714143598782 -14636.0,0.01815087126439014 -14637.0,0.01814460325805906 -14638.0,0.018138337416246847 -14639.0,0.018132073738206037 -14640.0,0.018125812223189416 -14641.0,0.018119552870450036 -14642.0,0.018113295679241193 -14643.0,0.018107040648816474 -14644.0,0.01810078777842966 -14645.0,0.018094537067334854 -14646.0,0.018088288514786385 -14647.0,0.018082042120038846 -14648.0,0.018075797882347092 -14649.0,0.01806955580096623 -14650.0,0.01806331587515162 -14651.0,0.018057078104158908 -14652.0,0.018050842487243937 -14653.0,0.01804460902366286 -14654.0,0.01803837771267207 -14655.0,0.018032148553528218 -14656.0,0.018025921545488207 -14657.0,0.018019696687809207 -14658.0,0.01801347397974863 -14659.0,0.018007253420564164 -14660.0,0.018001035009513746 -14661.0,0.017994818745855536 -14662.0,0.017988604628847996 -14663.0,0.01798239265774983 -14664.0,0.01797618283181999 -14665.0,0.017969975150317695 -14666.0,0.017963769612502407 -14667.0,0.017957566217633857 -14668.0,0.017951364964972037 -14669.0,0.017945165853777152 -14670.0,0.01793896888330971 -14671.0,0.017932774052830454 -14672.0,0.017926581361600392 -14673.0,0.017920390808880776 -14674.0,0.01791420239393312 -14675.0,0.017908016116019193 -14676.0,0.017901831974401015 -14677.0,0.01789564996834088 -14678.0,0.017889470097101283 -14679.0,0.017883292359945034 -14680.0,0.01787711675613517 -14681.0,0.01787094328493499 -14682.0,0.017864771945608034 -14683.0,0.017858602737418117 -14684.0,0.017852435659629295 -14685.0,0.017846270711505893 -14686.0,0.01784010789231245 -14687.0,0.0178339472013138 -14688.0,0.017827788637775017 -14689.0,0.017821632200961432 -14690.0,0.017815477890138622 -14691.0,0.01780932570457243 -14692.0,0.01780317564352894 -14693.0,0.01779702770627449 -14694.0,0.017790881892075706 -14695.0,0.017784738200199393 -14696.0,0.01777859662991267 -14697.0,0.017772457180482898 -14698.0,0.017766319851177683 -14699.0,0.017760184641264883 -14700.0,0.01775405155001262 -14701.0,0.017747920576689252 -14702.0,0.01774179172056342 -14703.0,0.017735664980903967 -14704.0,0.017729540356980024 -14705.0,0.017723417848060977 -14706.0,0.01771729745341645 -14707.0,0.01771117917231633 -14708.0,0.017705063004030745 -14709.0,0.01769894894783008 -14710.0,0.01769283700298498 -14711.0,0.017686727168766344 -14712.0,0.017680619444445284 -14713.0,0.01767451382929321 -14714.0,0.017668410322581766 -14715.0,0.017662308923582844 -14716.0,0.017656209631568595 -14717.0,0.017650112445811418 -14718.0,0.017644017365583967 -14719.0,0.01763792439015915 -14720.0,0.017631833518810095 -14721.0,0.017625744750810222 -14722.0,0.017619658085433178 -14723.0,0.017613573521952877 -14724.0,0.017607491059643467 -14725.0,0.01760141069777936 -14726.0,0.017595332435635214 -14727.0,0.017589256272485948 -14728.0,0.017583182207606688 -14729.0,0.017577110240272864 -14730.0,0.017571040369760132 -14731.0,0.017564972595344397 -14732.0,0.017558906916301822 -14733.0,0.017552843331908815 -14734.0,0.01754678184144203 -14735.0,0.017540722444178383 -14736.0,0.017534665139395045 -14737.0,0.017528609926369388 -14738.0,0.017522556804379093 -14739.0,0.017516505772702057 -14740.0,0.017510456830616444 -14741.0,0.017504409977400655 -14742.0,0.017498365212333347 -14743.0,0.017492322534693423 -14744.0,0.017486281943760052 -14745.0,0.0174802434388126 -14746.0,0.017474207019130737 -14747.0,0.01746817268399436 -14748.0,0.01746214043268362 -14749.0,0.01745611026447891 -14750.0,0.01745008217866088 -14751.0,0.017444056174510416 -14752.0,0.017438032251308664 -14753.0,0.01743201040833703 -14754.0,0.017425990644877116 -14755.0,0.01741997296021083 -14756.0,0.017413957353620304 -14757.0,0.017407943824387918 -14758.0,0.017401932371796304 -14759.0,0.01739592299512834 -14760.0,0.017389915693667147 -14761.0,0.017383910466696118 -14762.0,0.01737790731349884 -14763.0,0.017371906233359196 -14764.0,0.017365907225561302 -14765.0,0.01735991028938952 -14766.0,0.017353915424128456 -14767.0,0.01734792262906297 -14768.0,0.017341931903478165 -14769.0,0.01733594324665939 -14770.0,0.01732995665789226 -14771.0,0.017323972136462584 -14772.0,0.01731798968165647 -14773.0,0.01731200929276025 -14774.0,0.017306030969060516 -14775.0,0.01730005470984409 -14776.0,0.017294080514398052 -14777.0,0.01728810838200972 -14778.0,0.01728213831196668 -14779.0,0.01727617030355672 -14780.0,0.017270204356067905 -14781.0,0.017264240468788553 -14782.0,0.017258278641007204 -14783.0,0.017252318872012666 -14784.0,0.017246361161093973 -14785.0,0.01724040550754042 -14786.0,0.01723445191064154 -14787.0,0.017228500369687122 -14788.0,0.017222550883967166 -14789.0,0.01721660345277196 -14790.0,0.01721065807539201 -14791.0,0.017204714751118077 -14792.0,0.01719877347924117 -14793.0,0.01719283425905254 -14794.0,0.017186897089843677 -14795.0,0.017180961970906336 -14796.0,0.017175028901532472 -14797.0,0.017169097881014325 -14798.0,0.01716316890864437 -14799.0,0.017157241983715328 -14800.0,0.01715131710552015 -14801.0,0.01714539427335205 -14802.0,0.017139473486504474 -14803.0,0.01713355474427113 -14804.0,0.017127638045945925 -14805.0,0.017121723390823056 -14806.0,0.017115810778196947 -14807.0,0.017109900207362267 -14808.0,0.01710399167761393 -14809.0,0.017098085188247087 -14810.0,0.017092180738557138 -14811.0,0.017086278327839727 -14812.0,0.017080377955390757 -14813.0,0.01707447962050632 -14814.0,0.017068583322482806 -14815.0,0.017062689060616833 -14816.0,0.017056796834205253 -14817.0,0.017050906642545167 -14818.0,0.017045018484933925 -14819.0,0.0170391323606691 -14820.0,0.017033248269048548 -14821.0,0.017027366209370304 -14822.0,0.017021486180932695 -14823.0,0.01701560818303428 -14824.0,0.017009732214973854 -14825.0,0.017003858276050457 -14826.0,0.016997986365563374 -14827.0,0.016992116482812125 -14828.0,0.016986248627096474 -14829.0,0.01698038279771645 -14830.0,0.01697451899397227 -14831.0,0.01696865721516444 -14832.0,0.01696279746059369 -14833.0,0.016956939729560996 -14834.0,0.016951084021367573 -14835.0,0.016945230335314875 -14836.0,0.016939378670704608 -14837.0,0.016933529026838718 -14838.0,0.016927681403019357 -14839.0,0.016921835798548963 -14840.0,0.0169159922127302 -14841.0,0.016910150644865965 -14842.0,0.016904311094259404 -14843.0,0.016898473560213904 -14844.0,0.016892638042033083 -14845.0,0.016886804539020816 -14846.0,0.016880973050481213 -14847.0,0.0168751435757186 -14848.0,0.016869316114037573 -14849.0,0.016863490664742957 -14850.0,0.01685766722713982 -14851.0,0.016851845800533467 -14852.0,0.016846026384229447 -14853.0,0.016840208977533546 -14854.0,0.0168343935797518 -14855.0,0.016828580190190453 -14856.0,0.01682276880815602 -14857.0,0.01681695943295524 -14858.0,0.016811152063895107 -14859.0,0.016805346700282837 -14860.0,0.016799543341425898 -14861.0,0.016793741986631985 -14862.0,0.016787942635209045 -14863.0,0.01678214528646527 -14864.0,0.016776349939709046 -14865.0,0.016770556594249048 -14866.0,0.016764765249394176 -14867.0,0.016758975904453556 -14868.0,0.01675318855873657 -14869.0,0.016747403211552825 -14870.0,0.016741619862212172 -14871.0,0.016735838510024716 -14872.0,0.01673005915430075 -14873.0,0.01672428179435086 -14874.0,0.016718506429485844 -14875.0,0.016712733059016743 -14876.0,0.016706961682254842 -14877.0,0.01670119229851165 -14878.0,0.016695424907098928 -14879.0,0.01668965950732868 -14880.0,0.016683896098513108 -14881.0,0.01667813467996469 -14882.0,0.016672375250996133 -14883.0,0.01666661781092038 -14884.0,0.016660862359050614 -14885.0,0.016655108894700243 -14886.0,0.016649357417182927 -14887.0,0.016643607925812556 -14888.0,0.01663786041990327 -14889.0,0.016632114898769406 -14890.0,0.01662637136172558 -14891.0,0.016620629808086627 -14892.0,0.016614890237167626 -14893.0,0.016609152648283883 -14894.0,0.01660341704075095 -14895.0,0.01659768341388461 -14896.0,0.016591951767000894 -14897.0,0.016586222099416032 -14898.0,0.016580494410446532 -14899.0,0.01657476869940912 -14900.0,0.016569044965620765 -14901.0,0.01656332320839866 -14902.0,0.01655760342706025 -14903.0,0.016551885620923197 -14904.0,0.016546169789305416 -14905.0,0.01654045593152506 -14906.0,0.016534744046900484 -14907.0,0.01652903413475031 -14908.0,0.016523326194393388 -14909.0,0.016517620225148806 -14910.0,0.016511916226335882 -14911.0,0.016506214197274167 -14912.0,0.016500514137283456 -14913.0,0.016494816045683786 -14914.0,0.016489119921795387 -14915.0,0.016483425764938765 -14916.0,0.01647773357443465 -14917.0,0.016472043349604008 -14918.0,0.016466355089768035 -14919.0,0.01646066879424816 -14920.0,0.016454984462366054 -14921.0,0.016449302093443616 -14922.0,0.016443621686802995 -14923.0,0.01643794324176653 -14924.0,0.016432266757656838 -14925.0,0.01642659223379676 -14926.0,0.01642091966950936 -14927.0,0.01641524906411795 -14928.0,0.01640958041694606 -14929.0,0.016403913727317473 -14930.0,0.016398248994556195 -14931.0,0.016392586217986446 -14932.0,0.01638692539693271 -14933.0,0.01638126653071969 -14934.0,0.016375609618672324 -14935.0,0.016369954660115787 -14936.0,0.016364301654375486 -14937.0,0.01635865060077705 -14938.0,0.016353001498646356 -14939.0,0.01634735434730952 -14940.0,0.01634170914609285 -14941.0,0.016336065894322925 -14942.0,0.016330424591326553 -14943.0,0.016324785236430765 -14944.0,0.016319147828962825 -14945.0,0.01631351236825023 -14946.0,0.016307878853620717 -14947.0,0.01630224728440226 -14948.0,0.016296617659923022 -14949.0,0.01629098997951145 -14950.0,0.016285364242496197 -14951.0,0.016279740448206157 -14952.0,0.01627411859597045 -14953.0,0.016268498685118433 -14954.0,0.01626288071497969 -14955.0,0.016257264684884053 -14956.0,0.016251650594161542 -14957.0,0.01624603844214245 -14958.0,0.016240428228157286 -14959.0,0.0162348199515368 -14960.0,0.01622921361161196 -14961.0,0.016223609207713968 -14962.0,0.016218006739174264 -14963.0,0.016212406205324516 -14964.0,0.01620680760549663 -14965.0,0.016201210939022707 -14966.0,0.016195616205235124 -14967.0,0.016190023403466466 -14968.0,0.01618443253304955 -14969.0,0.016178843593317435 -14970.0,0.016173256583603392 -14971.0,0.016167671503240933 -14972.0,0.016162088351563818 -14973.0,0.016156507127905985 -14974.0,0.016150927831601648 -14975.0,0.01614535046198524 -14976.0,0.016139775018391422 -14977.0,0.016134201500155085 -14978.0,0.016128629906611347 -14979.0,0.016123060237095557 -14980.0,0.016117492490943294 -14981.0,0.01611192666749038 -14982.0,0.01610636276607283 -14983.0,0.01610080078602692 -14984.0,0.016095240726689143 -14985.0,0.016089682587396233 -14986.0,0.01608412636748514 -14987.0,0.016078572066293047 -14988.0,0.01607301968315737 -14989.0,0.01606746921741576 -14990.0,0.01606192066840606 -14991.0,0.01605637403546638 -14992.0,0.016050829317935056 -14993.0,0.016045286515150636 -14994.0,0.016039745626451905 -14995.0,0.016034206651177874 -14996.0,0.01602866958866779 -14997.0,0.016023134438261116 -14998.0,0.016017601199297564 -14999.0,0.016012069871117033 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516205000_theo_VPR_VPR.png b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516205000_theo_VPR_VPR.png deleted file mode 100644 index 6c35c25..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516205000_theo_VPR_VPR.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516205500_theo_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516205500_theo_VPR_VPR.csv deleted file mode 100644 index 6d38a09..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516205500_theo_VPR_VPR.csv +++ /dev/null @@ -1,15008 +0,0 @@ -# Height Profile -# ============== -# -# Datatype (Unit) : normalized reflectivity (-) -# Fill value : -9999.0 -# Time : 2020-05-16 20:55:00 -# Sector specification: None -Altitude [m MSL],Znorm -0.0,1.0 -1.0,1.0 -2.0,1.0 -3.0,1.0 -4.0,1.0 -5.0,1.0 -6.0,1.0 -7.0,1.0 -8.0,1.0 -9.0,1.0 -10.0,1.0 -11.0,1.0 -12.0,1.0 -13.0,1.0 -14.0,1.0 -15.0,1.0 -16.0,1.0 -17.0,1.0 -18.0,1.0 -19.0,1.0 -20.0,1.0 -21.0,1.0 -22.0,1.0 -23.0,1.0 -24.0,1.0 -25.0,1.0 -26.0,1.0 -27.0,1.0 -28.0,1.0 -29.0,1.0 -30.0,1.0 -31.0,1.0 -32.0,1.0 -33.0,1.0 -34.0,1.0 -35.0,1.0 -36.0,1.0 -37.0,1.0 -38.0,1.0 -39.0,1.0 -40.0,1.0 -41.0,1.0 -42.0,1.0 -43.0,1.0 -44.0,1.0 -45.0,1.0 -46.0,1.0 -47.0,1.0 -48.0,1.0 -49.0,1.0 -50.0,1.0 -51.0,1.0 -52.0,1.0 -53.0,1.0 -54.0,1.0 -55.0,1.0 -56.0,1.0 -57.0,1.0 -58.0,1.0 -59.0,1.0 -60.0,1.0 -61.0,1.0 -62.0,1.0 -63.0,1.0 -64.0,1.0 -65.0,1.0 -66.0,1.0 -67.0,1.0 -68.0,1.0 -69.0,1.0 -70.0,1.0 -71.0,1.0 -72.0,1.0 -73.0,1.0 -74.0,1.0 -75.0,1.0 -76.0,1.0 -77.0,1.0 -78.0,1.0 -79.0,1.0 -80.0,1.0 -81.0,1.0 -82.0,1.0 -83.0,1.0 -84.0,1.0 -85.0,1.0 -86.0,1.0 -87.0,1.0 -88.0,1.0 -89.0,1.0 -90.0,1.0 -91.0,1.0 -92.0,1.0 -93.0,1.0 -94.0,1.0 -95.0,1.0 -96.0,1.0 -97.0,1.0 -98.0,1.0 -99.0,1.0 -100.0,1.0 -101.0,1.0 -102.0,1.0 -103.0,1.0 -104.0,1.0 -105.0,1.0 -106.0,1.0 -107.0,1.0 -108.0,1.0 -109.0,1.0 -110.0,1.0 -111.0,1.0 -112.0,1.0 -113.0,1.0 -114.0,1.0 -115.0,1.0 -116.0,1.0 -117.0,1.0 -118.0,1.0 -119.0,1.0 -120.0,1.0 -121.0,1.0 -122.0,1.0 -123.0,1.0 -124.0,1.0 -125.0,1.0 -126.0,1.0 -127.0,1.0 -128.0,1.0 -129.0,1.0 -130.0,1.0 -131.0,1.0 -132.0,1.0 -133.0,1.0 -134.0,1.0 -135.0,1.0 -136.0,1.0 -137.0,1.0 -138.0,1.0 -139.0,1.0 -140.0,1.0 -141.0,1.0 -142.0,1.0 -143.0,1.0 -144.0,1.0 -145.0,1.0 -146.0,1.0 -147.0,1.0 -148.0,1.0 -149.0,1.0 -150.0,1.0 -151.0,1.0 -152.0,1.0 -153.0,1.0 -154.0,1.0 -155.0,1.0 -156.0,1.0 -157.0,1.0 -158.0,1.0 -159.0,1.0 -160.0,1.0 -161.0,1.0 -162.0,1.0 -163.0,1.0 -164.0,1.0 -165.0,1.0 -166.0,1.0 -167.0,1.0 -168.0,1.0 -169.0,1.0 -170.0,1.0 -171.0,1.0 -172.0,1.0 -173.0,1.0 -174.0,1.0 -175.0,1.0 -176.0,1.0 -177.0,1.0 -178.0,1.0 -179.0,1.0 -180.0,1.0 -181.0,1.0 -182.0,1.0 -183.0,1.0 -184.0,1.0 -185.0,1.0 -186.0,1.0 -187.0,1.0 -188.0,1.0 -189.0,1.0 -190.0,1.0 -191.0,1.0 -192.0,1.0 -193.0,1.0 -194.0,1.0 -195.0,1.0 -196.0,1.0 -197.0,1.0 -198.0,1.0 -199.0,1.0 -200.0,1.0 -201.0,1.0 -202.0,1.0 -203.0,1.0 -204.0,1.0 -205.0,1.0 -206.0,1.0 -207.0,1.0 -208.0,1.0 -209.0,1.0 -210.0,1.0 -211.0,1.0 -212.0,1.0 -213.0,1.0 -214.0,1.0 -215.0,1.0 -216.0,1.0 -217.0,1.0 -218.0,1.0 -219.0,1.0 -220.0,1.0 -221.0,1.0 -222.0,1.0 -223.0,1.0 -224.0,1.0 -225.0,1.0 -226.0,1.0 -227.0,1.0 -228.0,1.0 -229.0,1.0 -230.0,1.0 -231.0,1.0 -232.0,1.0 -233.0,1.0 -234.0,1.0 -235.0,1.0 -236.0,1.0 -237.0,1.0 -238.0,1.0 -239.0,1.0 -240.0,1.0 -241.0,1.0 -242.0,1.0 -243.0,1.0 -244.0,1.0 -245.0,1.0 -246.0,1.0 -247.0,1.0 -248.0,1.0 -249.0,1.0 -250.0,1.0 -251.0,1.0 -252.0,1.0 -253.0,1.0 -254.0,1.0 -255.0,1.0 -256.0,1.0 -257.0,1.0 -258.0,1.0 -259.0,1.0 -260.0,1.0 -261.0,1.0 -262.0,1.0 -263.0,1.0 -264.0,1.0 -265.0,1.0 -266.0,1.0 -267.0,1.0 -268.0,1.0 -269.0,1.0 -270.0,1.0 -271.0,1.0 -272.0,1.0 -273.0,1.0 -274.0,1.0 -275.0,1.0 -276.0,1.0 -277.0,1.0 -278.0,1.0 -279.0,1.0 -280.0,1.0 -281.0,1.0 -282.0,1.0 -283.0,1.0 -284.0,1.0 -285.0,1.0 -286.0,1.0 -287.0,1.0 -288.0,1.0 -289.0,1.0 -290.0,1.0 -291.0,1.0 -292.0,1.0 -293.0,1.0 -294.0,1.0 -295.0,1.0 -296.0,1.0 -297.0,1.0 -298.0,1.0 -299.0,1.0 -300.0,1.0 -301.0,1.0 -302.0,1.0 -303.0,1.0 -304.0,1.0 -305.0,1.0 -306.0,1.0 -307.0,1.0 -308.0,1.0 -309.0,1.0 -310.0,1.0 -311.0,1.0 -312.0,1.0 -313.0,1.0 -314.0,1.0 -315.0,1.0 -316.0,1.0 -317.0,1.0 -318.0,1.0 -319.0,1.0 -320.0,1.0 -321.0,1.0 -322.0,1.0 -323.0,1.0 -324.0,1.0 -325.0,1.0 -326.0,1.0 -327.0,1.0 -328.0,1.0 -329.0,1.0 -330.0,1.0 -331.0,1.0 -332.0,1.0 -333.0,1.0 -334.0,1.0 -335.0,1.0 -336.0,1.0 -337.0,1.0 -338.0,1.0 -339.0,1.0 -340.0,1.0 -341.0,1.0 -342.0,1.0 -343.0,1.0 -344.0,1.0 -345.0,1.0 -346.0,1.0 -347.0,1.0 -348.0,1.0 -349.0,1.0 -350.0,1.0 -351.0,1.0 -352.0,1.0 -353.0,1.0 -354.0,1.0 -355.0,1.0 -356.0,1.0 -357.0,1.0 -358.0,1.0 -359.0,1.0 -360.0,1.0 -361.0,1.0 -362.0,1.0 -363.0,1.0 -364.0,1.0 -365.0,1.0 -366.0,1.0 -367.0,1.0 -368.0,1.0 -369.0,1.0 -370.0,1.0 -371.0,1.0 -372.0,1.0 -373.0,1.0 -374.0,1.0 -375.0,1.0 -376.0,1.0 -377.0,1.0 -378.0,1.0 -379.0,1.0 -380.0,1.0 -381.0,1.0 -382.0,1.0 -383.0,1.0 -384.0,1.0 -385.0,1.0 -386.0,1.0 -387.0,1.0 -388.0,1.0 -389.0,1.0 -390.0,1.0 -391.0,1.0 -392.0,1.0 -393.0,1.0 -394.0,1.0 -395.0,1.0 -396.0,1.0 -397.0,1.0 -398.0,1.0 -399.0,1.0 -400.0,1.0 -401.0,1.0 -402.0,1.0 -403.0,1.0 -404.0,1.0 -405.0,1.0 -406.0,1.0 -407.0,1.0 -408.0,1.0 -409.0,1.0 -410.0,1.0 -411.0,1.0 -412.0,1.0 -413.0,1.0 -414.0,1.0 -415.0,1.0 -416.0,1.0 -417.0,1.0 -418.0,1.0 -419.0,1.0 -420.0,1.0 -421.0,1.0 -422.0,1.0 -423.0,1.0 -424.0,1.0 -425.0,1.0 -426.0,1.0 -427.0,1.0 -428.0,1.0 -429.0,1.0 -430.0,1.0 -431.0,1.0 -432.0,1.0 -433.0,1.0 -434.0,1.0 -435.0,1.0 -436.0,1.0 -437.0,1.0 -438.0,1.0 -439.0,1.0 -440.0,1.0 -441.0,1.0 -442.0,1.0 -443.0,1.0 -444.0,1.0 -445.0,1.0 -446.0,1.0 -447.0,1.0 -448.0,1.0 -449.0,1.0 -450.0,1.0 -451.0,1.0 -452.0,1.0 -453.0,1.0 -454.0,1.0 -455.0,1.0 -456.0,1.0 -457.0,1.0 -458.0,1.0 -459.0,1.0 -460.0,1.0 -461.0,1.0 -462.0,1.0 -463.0,1.0 -464.0,1.0 -465.0,1.0 -466.0,1.0 -467.0,1.0 -468.0,1.0 -469.0,1.0 -470.0,1.0 -471.0,1.0 -472.0,1.0 -473.0,1.0 -474.0,1.0 -475.0,1.0 -476.0,1.0 -477.0,1.0 -478.0,1.0 -479.0,1.0 -480.0,1.0 -481.0,1.0 -482.0,1.0 -483.0,1.0 -484.0,1.0 -485.0,1.0 -486.0,1.0 -487.0,1.0 -488.0,1.0 -489.0,1.0 -490.0,1.0 -491.0,1.0 -492.0,1.0 -493.0,1.0 -494.0,1.0 -495.0,1.0 -496.0,1.0 -497.0,1.0 -498.0,1.0 -499.0,1.0 -500.0,1.0 -501.0,1.0 -502.0,1.0 -503.0,1.0 -504.0,1.0 -505.0,1.0 -506.0,1.0 -507.0,1.0 -508.0,1.0 -509.0,1.0 -510.0,1.0 -511.0,1.0 -512.0,1.0 -513.0,1.0 -514.0,1.0 -515.0,1.0 -516.0,1.0 -517.0,1.0 -518.0,1.0 -519.0,1.0 -520.0,1.0 -521.0,1.0 -522.0,1.0 -523.0,1.0 -524.0,1.0 -525.0,1.0 -526.0,1.0 -527.0,1.0 -528.0,1.0 -529.0,1.0 -530.0,1.0 -531.0,1.0 -532.0,1.0 -533.0,1.0 -534.0,1.0 -535.0,1.0 -536.0,1.0 -537.0,1.0 -538.0,1.0 -539.0,1.0 -540.0,1.0 -541.0,1.0 -542.0,1.0 -543.0,1.0 -544.0,1.0 -545.0,1.0 -546.0,1.0 -547.0,1.0 -548.0,1.0 -549.0,1.0 -550.0,1.0 -551.0,1.0 -552.0,1.0 -553.0,1.0 -554.0,1.0 -555.0,1.0 -556.0,1.0 -557.0,1.0 -558.0,1.0 -559.0,1.0 -560.0,1.0 -561.0,1.0 -562.0,1.0 -563.0,1.0 -564.0,1.0 -565.0,1.0 -566.0,1.0 -567.0,1.0 -568.0,1.0 -569.0,1.0 -570.0,1.0 -571.0,1.0 -572.0,1.0 -573.0,1.0 -574.0,1.0 -575.0,1.0 -576.0,1.0 -577.0,1.0 -578.0,1.0 -579.0,1.0 -580.0,1.0 -581.0,1.0 -582.0,1.0 -583.0,1.0 -584.0,1.0 -585.0,1.0 -586.0,1.0 -587.0,1.0 -588.0,1.0 -589.0,1.0 -590.0,1.0 -591.0,1.0 -592.0,1.0 -593.0,1.0 -594.0,1.0 -595.0,1.0 -596.0,1.0 -597.0,1.0 -598.0,1.0 -599.0,1.0 -600.0,1.0 -601.0,1.0 -602.0,1.0 -603.0,1.0 -604.0,1.0 -605.0,1.0 -606.0,1.0 -607.0,1.0 -608.0,1.0 -609.0,1.0 -610.0,1.0 -611.0,1.0 -612.0,1.0 -613.0,1.0 -614.0,1.0 -615.0,1.0 -616.0,1.0 -617.0,1.0 -618.0,1.0 -619.0,1.0 -620.0,1.0 -621.0,1.0 -622.0,1.0 -623.0,1.0 -624.0,1.0 -625.0,1.0 -626.0,1.0 -627.0,1.0 -628.0,1.0 -629.0,1.0 -630.0,1.0 -631.0,1.0 -632.0,1.0 -633.0,1.0 -634.0,1.0 -635.0,1.0 -636.0,1.0 -637.0,1.0 -638.0,1.0 -639.0,1.0 -640.0,1.0 -641.0,1.0 -642.0,1.0 -643.0,1.0 -644.0,1.0 -645.0,1.0 -646.0,1.0 -647.0,1.0 -648.0,1.0 -649.0,1.0 -650.0,1.0 -651.0,1.0 -652.0,1.0 -653.0,1.0 -654.0,1.0 -655.0,1.0 -656.0,1.0 -657.0,1.0 -658.0,1.0 -659.0,1.0 -660.0,1.0 -661.0,1.0 -662.0,1.0 -663.0,1.0 -664.0,1.0 -665.0,1.0 -666.0,1.0 -667.0,1.0 -668.0,1.0 -669.0,1.0 -670.0,1.0 -671.0,1.0 -672.0,1.0 -673.0,1.0 -674.0,1.0 -675.0,1.0 -676.0,1.0 -677.0,1.0 -678.0,1.0 -679.0,1.0 -680.0,1.0 -681.0,1.0 -682.0,1.0 -683.0,1.0 -684.0,1.0 -685.0,1.0 -686.0,1.0 -687.0,1.0 -688.0,1.0 -689.0,1.0 -690.0,1.0 -691.0,1.0 -692.0,1.0 -693.0,1.0 -694.0,1.0 -695.0,1.0 -696.0,1.0 -697.0,1.0 -698.0,1.0 -699.0,1.0 -700.0,1.0 -701.0,1.0 -702.0,1.0 -703.0,1.0 -704.0,1.0 -705.0,1.0 -706.0,1.0 -707.0,1.0 -708.0,1.0 -709.0,1.0 -710.0,1.0 -711.0,1.0 -712.0,1.0 -713.0,1.0 -714.0,1.0 -715.0,1.0 -716.0,1.0 -717.0,1.0 -718.0,1.0 -719.0,1.0 -720.0,1.0 -721.0,1.0 -722.0,1.0 -723.0,1.0 -724.0,1.0 -725.0,1.0 -726.0,1.0 -727.0,1.0 -728.0,1.0 -729.0,1.0 -730.0,1.0 -731.0,1.0 -732.0,1.0 -733.0,1.0 -734.0,1.0 -735.0,1.0 -736.0,1.0 -737.0,1.0 -738.0,1.0 -739.0,1.0 -740.0,1.0 -741.0,1.0 -742.0,1.0 -743.0,1.0 -744.0,1.0 -745.0,1.0 -746.0,1.0 -747.0,1.0 -748.0,1.0 -749.0,1.0 -750.0,1.0 -751.0,1.0 -752.0,1.0 -753.0,1.0 -754.0,1.0 -755.0,1.0 -756.0,1.0 -757.0,1.0 -758.0,1.0 -759.0,1.0 -760.0,1.0 -761.0,1.0 -762.0,1.0 -763.0,1.0 -764.0,1.0 -765.0,1.0 -766.0,1.0 -767.0,1.0 -768.0,1.0 -769.0,1.0 -770.0,1.0 -771.0,1.0 -772.0,1.0 -773.0,1.0 -774.0,1.0 -775.0,1.0 -776.0,1.0 -777.0,1.0 -778.0,1.0 -779.0,1.0 -780.0,1.0 -781.0,1.0 -782.0,1.0 -783.0,1.0 -784.0,1.0 -785.0,1.0 -786.0,1.0 -787.0,1.0 -788.0,1.0 -789.0,1.0 -790.0,1.0 -791.0,1.0 -792.0,1.0 -793.0,1.0 -794.0,1.0 -795.0,1.0 -796.0,1.0 -797.0,1.0 -798.0,1.0 -799.0,1.0 -800.0,1.0 -801.0,1.0 -802.0,1.0 -803.0,1.0 -804.0,1.0 -805.0,1.0 -806.0,1.0 -807.0,1.0 -808.0,1.0 -809.0,1.0 -810.0,1.0 -811.0,1.0 -812.0,1.0 -813.0,1.0 -814.0,1.0 -815.0,1.0 -816.0,1.0 -817.0,1.0 -818.0,1.0 -819.0,1.0 -820.0,1.0 -821.0,1.0 -822.0,1.0 -823.0,1.0 -824.0,1.0 -825.0,1.0 -826.0,1.0 -827.0,1.0 -828.0,1.0 -829.0,1.0 -830.0,1.0 -831.0,1.0 -832.0,1.0 -833.0,1.0 -834.0,1.0 -835.0,1.0 -836.0,1.0 -837.0,1.0 -838.0,1.0 -839.0,1.0 -840.0,1.0 -841.0,1.0 -842.0,1.0 -843.0,1.0 -844.0,1.0 -845.0,1.0 -846.0,1.0 -847.0,1.0 -848.0,1.0 -849.0,1.0 -850.0,1.0 -851.0,1.0 -852.0,1.0 -853.0,1.0 -854.0,1.0 -855.0,1.0 -856.0,1.0 -857.0,1.0 -858.0,1.0 -859.0,1.0 -860.0,1.0 -861.0,1.0 -862.0,1.0 -863.0,1.0 -864.0,1.0 -865.0,1.0 -866.0,1.0 -867.0,1.0 -868.0,1.0 -869.0,1.0 -870.0,1.0 -871.0,1.0 -872.0,1.0 -873.0,1.0 -874.0,1.0 -875.0,1.0 -876.0,1.0 -877.0,1.0 -878.0,1.0 -879.0,1.0 -880.0,1.0 -881.0,1.0 -882.0,1.0 -883.0,1.0 -884.0,1.0 -885.0,1.0 -886.0,1.0 -887.0,1.0 -888.0,1.0 -889.0,1.0 -890.0,1.0 -891.0,1.0 -892.0,1.0 -893.0,1.0 -894.0,1.0 -895.0,1.0 -896.0,1.0 -897.0,1.0 -898.0,1.0 -899.0,1.0 -900.0,1.0 -901.0,1.0 -902.0,1.0 -903.0,1.0 -904.0,1.0 -905.0,1.0 -906.0,1.0 -907.0,1.0 -908.0,1.0 -909.0,1.0 -910.0,1.0 -911.0,1.0 -912.0,1.0 -913.0,1.0 -914.0,1.0 -915.0,1.0 -916.0,1.0 -917.0,1.0 -918.0,1.0 -919.0,1.0 -920.0,1.0 -921.0,1.0 -922.0,1.0 -923.0,1.0 -924.0,1.0 -925.0,1.0 -926.0,1.0 -927.0,1.0 -928.0,1.0 -929.0,1.0 -930.0,1.0 -931.0,1.0 -932.0,1.0 -933.0,1.0 -934.0,1.0 -935.0,1.0 -936.0,1.0 -937.0,1.0 -938.0,1.0 -939.0,1.0 -940.0,1.0 -941.0,1.0 -942.0,1.0 -943.0,1.0 -944.0,1.0 -945.0,1.0 -946.0,1.0 -947.0,1.0 -948.0,1.0 -949.0,1.0 -950.0,1.0 -951.0,1.0 -952.0,1.0 -953.0,1.0 -954.0,1.0 -955.0,1.0 -956.0,1.0 -957.0,1.0 -958.0,1.0 -959.0,1.0 -960.0,1.0 -961.0,1.0 -962.0,1.0 -963.0,1.0 -964.0,1.0 -965.0,1.0 -966.0,1.0 -967.0,1.0 -968.0,1.0 -969.0,1.0 -970.0,1.0 -971.0,1.0 -972.0,1.0 -973.0,1.0 -974.0,1.0 -975.0,1.0 -976.0,1.0 -977.0,1.0 -978.0,1.0 -979.0,1.0 -980.0,1.0 -981.0,1.0 -982.0,1.0 -983.0,1.0 -984.0,1.0 -985.0,1.0 -986.0,1.0 -987.0,1.0 -988.0,1.0 -989.0,1.0 -990.0,1.0 -991.0,1.0 -992.0,1.0 -993.0,1.0 -994.0,1.0 -995.0,1.0 -996.0,1.0 -997.0,1.0 -998.0,1.0 -999.0,1.0 -1000.0,1.0 -1001.0,1.0 -1002.0,1.0 -1003.0,1.0 -1004.0,1.0 -1005.0,1.0 -1006.0,1.0 -1007.0,1.0 -1008.0,1.0 -1009.0,1.0 -1010.0,1.0 -1011.0,1.0 -1012.0,1.0 -1013.0,1.0 -1014.0,1.0 -1015.0,1.0 -1016.0,1.0 -1017.0,1.0 -1018.0,1.0 -1019.0,1.0 -1020.0,1.0 -1021.0,1.0 -1022.0,1.0 -1023.0,1.0 -1024.0,1.0 -1025.0,1.0 -1026.0,1.0 -1027.0,1.0 -1028.0,1.0 -1029.0,1.0 -1030.0,1.0 -1031.0,1.0 -1032.0,1.0 -1033.0,1.0 -1034.0,1.0 -1035.0,1.0 -1036.0,1.0 -1037.0,1.0 -1038.0,1.0 -1039.0,1.0 -1040.0,1.0 -1041.0,1.0 -1042.0,1.0 -1043.0,1.0 -1044.0,1.0 -1045.0,1.0 -1046.0,1.0 -1047.0,1.0 -1048.0,1.0 -1049.0,1.0 -1050.0,1.0 -1051.0,1.0 -1052.0,1.0 -1053.0,1.0 -1054.0,1.0 -1055.0,1.0 -1056.0,1.0 -1057.0,1.0 -1058.0,1.0 -1059.0,1.0 -1060.0,1.0 -1061.0,1.0 -1062.0,1.0 -1063.0,1.0 -1064.0,1.0 -1065.0,1.0 -1066.0,1.0 -1067.0,1.0 -1068.0,1.0 -1069.0,1.0 -1070.0,1.0 -1071.0,1.0 -1072.0,1.0 -1073.0,1.0 -1074.0,1.0 -1075.0,1.0 -1076.0,1.0 -1077.0,1.0 -1078.0,1.0 -1079.0,1.0 -1080.0,1.0 -1081.0,1.0 -1082.0,1.0 -1083.0,1.0 -1084.0,1.0 -1085.0,1.0 -1086.0,1.0 -1087.0,1.0 -1088.0,1.0 -1089.0,1.0 -1090.0,1.0 -1091.0,1.0 -1092.0,1.0 -1093.0,1.0 -1094.0,1.0 -1095.0,1.0 -1096.0,1.0 -1097.0,1.0 -1098.0,1.0 -1099.0,1.0 -1100.0,1.0 -1101.0,1.0 -1102.0,1.0 -1103.0,1.0 -1104.0,1.0 -1105.0,1.0 -1106.0,1.0 -1107.0,1.0 -1108.0,1.0 -1109.0,1.0 -1110.0,1.0 -1111.0,1.0 -1112.0,1.0 -1113.0,1.0 -1114.0,1.0 -1115.0,1.0 -1116.0,1.0 -1117.0,1.0 -1118.0,1.0 -1119.0,1.0 -1120.0,1.0 -1121.0,1.0 -1122.0,1.0 -1123.0,1.0 -1124.0,1.0 -1125.0,1.0 -1126.0,1.0 -1127.0,1.0 -1128.0,1.0 -1129.0,1.0 -1130.0,1.0 -1131.0,1.0 -1132.0,1.0 -1133.0,1.0 -1134.0,1.0 -1135.0,1.0 -1136.0,1.0 -1137.0,1.0 -1138.0,1.0 -1139.0,1.0 -1140.0,1.0 -1141.0,1.0 -1142.0,1.0 -1143.0,1.0 -1144.0,1.0 -1145.0,1.0 -1146.0,1.0 -1147.0,1.0 -1148.0,1.0 -1149.0,1.0 -1150.0,1.0 -1151.0,1.0 -1152.0,1.0 -1153.0,1.0 -1154.0,1.0 -1155.0,1.0 -1156.0,1.0 -1157.0,1.0 -1158.0,1.0 -1159.0,1.0 -1160.0,1.0 -1161.0,1.0 -1162.0,1.0 -1163.0,1.0 -1164.0,1.0 -1165.0,1.0 -1166.0,1.0 -1167.0,1.0 -1168.0,1.0 -1169.0,1.0 -1170.0,1.0 -1171.0,1.0 -1172.0,1.0 -1173.0,1.0 -1174.0,1.0 -1175.0,1.0 -1176.0,1.0 -1177.0,1.0 -1178.0,1.0 -1179.0,1.0 -1180.0,1.0 -1181.0,1.0 -1182.0,1.0 -1183.0,1.0 -1184.0,1.0 -1185.0,1.0 -1186.0,1.0 -1187.0,1.0 -1188.0,1.0 -1189.0,1.0 -1190.0,1.0 -1191.0,1.0 -1192.0,1.0 -1193.0,1.0 -1194.0,1.0 -1195.0,1.0 -1196.0,1.0 -1197.0,1.0 -1198.0,1.0 -1199.0,1.0 -1200.0,1.0 -1201.0,1.0 -1202.0,1.0 -1203.0,1.0 -1204.0,1.0 -1205.0,1.0 -1206.0,1.0 -1207.0,1.0 -1208.0,1.0 -1209.0,1.0 -1210.0,1.0 -1211.0,1.0 -1212.0,1.0 -1213.0,1.0 -1214.0,1.0 -1215.0,1.0 -1216.0,1.0 -1217.0,1.0 -1218.0,1.0 -1219.0,1.0 -1220.0,1.0 -1221.0,1.0 -1222.0,1.0 -1223.0,1.0 -1224.0,1.0 -1225.0,1.0 -1226.0,1.0 -1227.0,1.0 -1228.0,1.0 -1229.0,1.0 -1230.0,1.0 -1231.0,1.0 -1232.0,1.0 -1233.0,1.0 -1234.0,1.0 -1235.0,1.0 -1236.0,1.0 -1237.0,1.0 -1238.0,1.0 -1239.0,1.0 -1240.0,1.0 -1241.0,1.0 -1242.0,1.0 -1243.0,1.0 -1244.0,1.0 -1245.0,1.0 -1246.0,1.0 -1247.0,1.0 -1248.0,1.0 -1249.0,1.0 -1250.0,1.0 -1251.0,1.0 -1252.0,1.0 -1253.0,1.0 -1254.0,1.0 -1255.0,1.0 -1256.0,1.0 -1257.0,1.0 -1258.0,1.0 -1259.0,1.0 -1260.0,1.0 -1261.0,1.0 -1262.0,1.0 -1263.0,1.0 -1264.0,1.0 -1265.0,1.0 -1266.0,1.0 -1267.0,1.0 -1268.0,1.0 -1269.0,1.0 -1270.0,1.0 -1271.0,1.0 -1272.0,1.0 -1273.0,1.0 -1274.0,1.0 -1275.0,1.0 -1276.0,1.0 -1277.0,1.0 -1278.0,1.0 -1279.0,1.0 -1280.0,1.0 -1281.0,1.0 -1282.0,1.0 -1283.0,1.0 -1284.0,1.0 -1285.0,1.0 -1286.0,1.0 -1287.0,1.0 -1288.0,1.0 -1289.0,1.0 -1290.0,1.0 -1291.0,1.0 -1292.0,1.0 -1293.0,1.0 -1294.0,1.0 -1295.0,1.0 -1296.0,1.0 -1297.0,1.0 -1298.0,1.0 -1299.0,1.0 -1300.0,1.0 -1301.0,1.0 -1302.0,1.0 -1303.0,1.0 -1304.0,1.0 -1305.0,1.0 -1306.0,1.0 -1307.0,1.0 -1308.0,1.0 -1309.0,1.0 -1310.0,1.0 -1311.0,1.0 -1312.0,1.0 -1313.0,1.0 -1314.0,1.0 -1315.0,1.0 -1316.0,1.0 -1317.0,1.0 -1318.0,1.0 -1319.0,1.0 -1320.0,1.0 -1321.0,1.0 -1322.0,1.0 -1323.0,1.0 -1324.0,1.0 -1325.0,1.0 -1326.0,1.0 -1327.0,1.0 -1328.0,1.0 -1329.0,1.0 -1330.0,1.0 -1331.0,1.0 -1332.0,1.0 -1333.0,1.0 -1334.0,1.0 -1335.0,1.0 -1336.0,1.0 -1337.0,1.0 -1338.0,1.0 -1339.0,1.0 -1340.0,1.0 -1341.0,1.0 -1342.0,1.0 -1343.0,1.0 -1344.0,1.0 -1345.0,1.0 -1346.0,1.0 -1347.0,1.0 -1348.0,1.0 -1349.0,1.0 -1350.0,1.0 -1351.0,1.0 -1352.0,1.0 -1353.0,1.0 -1354.0,1.0 -1355.0,1.0 -1356.0,1.0 -1357.0,1.0 -1358.0,1.0 -1359.0,1.0 -1360.0,1.0 -1361.0,1.0 -1362.0,1.0 -1363.0,1.0 -1364.0,1.0 -1365.0,1.0 -1366.0,1.0 -1367.0,1.0 -1368.0,1.0 -1369.0,1.0 -1370.0,1.0 -1371.0,1.0 -1372.0,1.0 -1373.0,1.0 -1374.0,1.0 -1375.0,1.0 -1376.0,1.0 -1377.0,1.0 -1378.0,1.0 -1379.0,1.0 -1380.0,1.0 -1381.0,1.0 -1382.0,1.0 -1383.0,1.0 -1384.0,1.0 -1385.0,1.0 -1386.0,1.0 -1387.0,1.0 -1388.0,1.0 -1389.0,1.0 -1390.0,1.0 -1391.0,1.0 -1392.0,1.0 -1393.0,1.0 -1394.0,1.0 -1395.0,1.0 -1396.0,1.0 -1397.0,1.0 -1398.0,1.0 -1399.0,1.0 -1400.0,1.0 -1401.0,1.0 -1402.0,1.0 -1403.0,1.0 -1404.0,1.0 -1405.0,1.0 -1406.0,1.0 -1407.0,1.0 -1408.0,1.0 -1409.0,1.0 -1410.0,1.0 -1411.0,1.0 -1412.0,1.0 -1413.0,1.0 -1414.0,1.0 -1415.0,1.0 -1416.0,1.0 -1417.0,1.0 -1418.0,1.0 -1419.0,1.0 -1420.0,1.0 -1421.0,1.0 -1422.0,1.0 -1423.0,1.0 -1424.0,1.0 -1425.0,1.0 -1426.0,1.0 -1427.0,1.0 -1428.0,1.0 -1429.0,1.0 -1430.0,1.0 -1431.0,1.0 -1432.0,1.0 -1433.0,1.0 -1434.0,1.0 -1435.0,1.0 -1436.0,1.0 -1437.0,1.0 -1438.0,1.0 -1439.0,1.0 -1440.0,1.0 -1441.0,1.0 -1442.0,1.0 -1443.0,1.0 -1444.0,1.0 -1445.0,1.0 -1446.0,1.0 -1447.0,1.0 -1448.0,1.0 -1449.0,1.0 -1450.0,1.0 -1451.0,1.0 -1452.0,1.0 -1453.0,1.0 -1454.0,1.0 -1455.0,1.0 -1456.0,1.0 -1457.0,1.0 -1458.0,1.0 -1459.0,1.0 -1460.0,1.0 -1461.0,1.0 -1462.0,1.0 -1463.0,1.0 -1464.0,1.0 -1465.0,1.0 -1466.0,1.0 -1467.0,1.0 -1468.0,1.0 -1469.0,1.0 -1470.0,1.0 -1471.0,1.0 -1472.0,1.0 -1473.0,1.0 -1474.0,1.0 -1475.0,1.0 -1476.0,1.0 -1477.0,1.0 -1478.0,1.0 -1479.0,1.0 -1480.0,1.0 -1481.0,1.0 -1482.0,1.0 -1483.0,1.0 -1484.0,1.0 -1485.0,1.0 -1486.0,1.0 -1487.0,1.0 -1488.0,1.0 -1489.0,1.0 -1490.0,1.0 -1491.0,1.0 -1492.0,1.0 -1493.0,1.0 -1494.0,1.0 -1495.0,1.0 -1496.0,1.0 -1497.0,1.0 -1498.0,1.0 -1499.0,1.0 -1500.0,1.0 -1501.0,1.0 -1502.0,1.0 -1503.0,1.0 -1504.0,1.0 -1505.0,1.0 -1506.0,1.0 -1507.0,1.0 -1508.0,1.0 -1509.0,1.0 -1510.0,1.0 -1511.0,1.0 -1512.0,1.0 -1513.0,1.0 -1514.0,1.0 -1515.0,1.0 -1516.0,1.0 -1517.0,1.0 -1518.0,1.0 -1519.0,1.0 -1520.0,1.0 -1521.0,1.0 -1522.0,1.0 -1523.0,1.0 -1524.0,1.0 -1525.0,1.0 -1526.0,1.0 -1527.0,1.0 -1528.0,1.0 -1529.0,1.0 -1530.0,1.0 -1531.0,1.0 -1532.0,1.0 -1533.0,1.0 -1534.0,1.0 -1535.0,1.0 -1536.0,1.0 -1537.0,1.0 -1538.0,1.0 -1539.0,1.0 -1540.0,1.0 -1541.0,1.0 -1542.0,1.0 -1543.0,1.0 -1544.0,1.0 -1545.0,1.0 -1546.0,1.0 -1547.0,1.0 -1548.0,1.0 -1549.0,1.0 -1550.0,1.0 -1551.0,1.0 -1552.0,1.0 -1553.0,1.0 -1554.0,1.0 -1555.0,1.0 -1556.0,1.0 -1557.0,1.0 -1558.0,1.0 -1559.0,1.0 -1560.0,1.0 -1561.0,1.0 -1562.0,1.0 -1563.0,1.0 -1564.0,1.0 -1565.0,1.0 -1566.0,1.0 -1567.0,1.0 -1568.0,1.0 -1569.0,1.0 -1570.0,1.0 -1571.0,1.0 -1572.0,1.0 -1573.0,1.0 -1574.0,1.0 -1575.0,1.0 -1576.0,1.0 -1577.0,1.0 -1578.0,1.0 -1579.0,1.0 -1580.0,1.0 -1581.0,1.0 -1582.0,1.0 -1583.0,1.0 -1584.0,1.0 -1585.0,1.0 -1586.0,1.0 -1587.0,1.0 -1588.0,1.0 -1589.0,1.0 -1590.0,1.0 -1591.0,1.0 -1592.0,1.0 -1593.0,1.0 -1594.0,1.0 -1595.0,1.0 -1596.0,1.0 -1597.0,1.0 -1598.0,1.0 -1599.0,1.0 -1600.0,1.0 -1601.0,1.0 -1602.0,1.0 -1603.0,1.0 -1604.0,1.0 -1605.0,1.0 -1606.0,1.0 -1607.0,1.0 -1608.0,1.0 -1609.0,1.0 -1610.0,1.0 -1611.0,1.0 -1612.0,1.0 -1613.0,1.0 -1614.0,1.0 -1615.0,1.0 -1616.0,1.0 -1617.0,1.0 -1618.0,1.0 -1619.0,1.0 -1620.0,1.0 -1621.0,1.0 -1622.0,1.0 -1623.0,1.0 -1624.0,1.0 -1625.0,1.0 -1626.0,1.0 -1627.0,1.0 -1628.0,1.0 -1629.0,1.0 -1630.0,1.0 -1631.0,1.0 -1632.0,1.0 -1633.0,1.0 -1634.0,1.0 -1635.0,1.0 -1636.0,1.0 -1637.0,1.0 -1638.0,1.0 -1639.0,1.0 -1640.0,1.0 -1641.0,1.0 -1642.0,1.0 -1643.0,1.0 -1644.0,1.0 -1645.0,1.0 -1646.0,1.0 -1647.0,1.0 -1648.0,1.0 -1649.0,1.0 -1650.0,1.0 -1651.0,1.0 -1652.0,1.0 -1653.0,1.0 -1654.0,1.0 -1655.0,1.0 -1656.0,1.0 -1657.0,1.0 -1658.0,1.0 -1659.0,1.0 -1660.0,1.0 -1661.0,1.0 -1662.0,1.0 -1663.0,1.0 -1664.0,1.0 -1665.0,1.0 -1666.0,1.0 -1667.0,1.0 -1668.0,1.0 -1669.0,1.0 -1670.0,1.0 -1671.0,1.0 -1672.0,1.0 -1673.0,1.0 -1674.0,1.0 -1675.0,1.0 -1676.0,1.0 -1677.0,1.0 -1678.0,1.0 -1679.0,1.0 -1680.0,1.0 -1681.0,1.0 -1682.0,1.0 -1683.0,1.0 -1684.0,1.0 -1685.0,1.0 -1686.0,1.0 -1687.0,1.0 -1688.0,1.0 -1689.0,1.0 -1690.0,1.0 -1691.0,1.0 -1692.0,1.0 -1693.0,1.0 -1694.0,1.0 -1695.0,1.0 -1696.0,1.0 -1697.0,1.0 -1698.0,1.0 -1699.0,1.0 -1700.0,1.0 -1701.0,1.0 -1702.0,1.0 -1703.0,1.0 -1704.0,1.0 -1705.0,1.0 -1706.0,1.0 -1707.0,1.0 -1708.0,1.0 -1709.0,1.0 -1710.0,1.0 -1711.0,1.0 -1712.0,1.0 -1713.0,1.0 -1714.0,1.0 -1715.0,1.0 -1716.0,1.0 -1717.0,1.0 -1718.0,1.0 -1719.0,1.0 -1720.0,1.0 -1721.0,1.0 -1722.0,1.0 -1723.0,1.0 -1724.0,1.0 -1725.0,1.0 -1726.0,1.0 -1727.0,1.0 -1728.0,1.0 -1729.0,1.0 -1730.0,1.0 -1731.0,1.0 -1732.0,1.0 -1733.0,1.0 -1734.0,1.0 -1735.0,1.0 -1736.0,1.0 -1737.0,1.0 -1738.0,1.0 -1739.0,1.0 -1740.0,1.0 -1741.0,1.0 -1742.0,1.0 -1743.0,1.0 -1744.0,1.0 -1745.0,1.0 -1746.0,1.0 -1747.0,1.0 -1748.0,1.0 -1749.0,1.0 -1750.0,1.0 -1751.0,1.0 -1752.0,1.0 -1753.0,1.0 -1754.0,1.0 -1755.0,1.0 -1756.0,1.0 -1757.0,1.0 -1758.0,1.0 -1759.0,1.0 -1760.0,1.0 -1761.0,1.0 -1762.0,1.0 -1763.0,1.0 -1764.0,1.0 -1765.0,1.0 -1766.0,1.0 -1767.0,1.0 -1768.0,1.0 -1769.0,1.0 -1770.0,1.0 -1771.0,1.0 -1772.0,1.0 -1773.0,1.0 -1774.0,1.0 -1775.0,1.0 -1776.0,1.0 -1777.0,1.0 -1778.0,1.0 -1779.0,1.0 -1780.0,1.0 -1781.0,1.0 -1782.0,1.0 -1783.0,1.0 -1784.0,1.0 -1785.0,1.0 -1786.0,1.0 -1787.0,1.0 -1788.0,1.0 -1789.0,1.0 -1790.0,1.0 -1791.0,1.0 -1792.0,1.0 -1793.0,1.0 -1794.0,1.0 -1795.0,1.0 -1796.0,1.0 -1797.0,1.0 -1798.0,1.0 -1799.0,1.0 -1800.0,1.0 -1801.0,1.0 -1802.0,1.0 -1803.0,1.0 -1804.0,1.0 -1805.0,1.0 -1806.0,1.0 -1807.0,1.0 -1808.0,1.0 -1809.0,1.0 -1810.0,1.0 -1811.0,1.0 -1812.0,1.0 -1813.0,1.0 -1814.0,1.0 -1815.0,1.0 -1816.0,1.0 -1817.0,1.0 -1818.0,1.0 -1819.0,1.0 -1820.0,1.0 -1821.0,1.0 -1822.0,1.0 -1823.0,1.0 -1824.0,1.0 -1825.0,1.0 -1826.0,1.0 -1827.0,1.0 -1828.0,1.0 -1829.0,1.0 -1830.0,1.0 -1831.0,1.0 -1832.0,1.0 -1833.0,1.0 -1834.0,1.0 -1835.0,1.0 -1836.0,1.0 -1837.0,1.0 -1838.0,1.0 -1839.0,1.0 -1840.0,1.0 -1841.0,1.0 -1842.0,1.0 -1843.0,1.0 -1844.0,1.0 -1845.0,1.0 -1846.0,1.0 -1847.0,1.0 -1848.0,1.0 -1849.0,1.0 -1850.0,1.0 -1851.0,1.0 -1852.0,1.0 -1853.0,1.0 -1854.0,1.0 -1855.0,1.0 -1856.0,1.0 -1857.0,1.0 -1858.0,1.0 -1859.0,1.0 -1860.0,1.0 -1861.0,1.0 -1862.0,1.0 -1863.0,1.0 -1864.0,1.0 -1865.0,1.0 -1866.0,1.0 -1867.0,1.0 -1868.0,1.0 -1869.0,1.0 -1870.0,1.0 -1871.0,1.0 -1872.0,1.0 -1873.0,1.0 -1874.0,1.0 -1875.0,1.0 -1876.0,1.0 -1877.0,1.0 -1878.0,1.0 -1879.0,1.0 -1880.0,1.0 -1881.0,1.0 -1882.0,1.0 -1883.0,1.0 -1884.0,1.0 -1885.0,1.0 -1886.0,1.0 -1887.0,1.0 -1888.0,1.0 -1889.0,1.0 -1890.0,1.0 -1891.0,1.0 -1892.0,1.0 -1893.0,1.0 -1894.0,1.0 -1895.0,1.0 -1896.0,1.0 -1897.0,1.0 -1898.0,1.0 -1899.0,1.0 -1900.0,1.0 -1901.0,1.0 -1902.0,1.0 -1903.0,1.0 -1904.0,1.0 -1905.0,1.0 -1906.0,1.0 -1907.0,1.0 -1908.0,1.0 -1909.0,1.0 -1910.0,1.0 -1911.0,1.0 -1912.0,1.0 -1913.0,1.0 -1914.0,1.0 -1915.0,1.0 -1916.0,1.0 -1917.0,1.0 -1918.0,1.0 -1919.0,1.0 -1920.0,1.0 -1921.0,1.0 -1922.0,1.0 -1923.0,1.0 -1924.0,1.0 -1925.0,1.0 -1926.0,1.0 -1927.0,1.0 -1928.0,1.0 -1929.0,1.0 -1930.0,1.0 -1931.0,1.0 -1932.0,1.0 -1933.0,1.0 -1934.0,1.0 -1935.0,1.0 -1936.0,1.0 -1937.0,1.0 -1938.0,1.0 -1939.0,1.0 -1940.0,1.0 -1941.0,1.0 -1942.0,1.0 -1943.0,1.0 -1944.0,1.0 -1945.0,1.0 -1946.0,1.0 -1947.0,1.0 -1948.0,1.0 -1949.0,1.0 -1950.0,1.0 -1951.0,1.0 -1952.0,1.0 -1953.0,1.0 -1954.0,1.0 -1955.0,1.0 -1956.0,1.0 -1957.0,1.0 -1958.0,1.0 -1959.0,1.0 -1960.0,1.0 -1961.0,1.0 -1962.0,1.0 -1963.0,1.0 -1964.0,1.0 -1965.0,1.0 -1966.0,1.0 -1967.0,1.0 -1968.0,1.0 -1969.0,1.0 -1970.0,1.0 -1971.0,1.0 -1972.0,1.0 -1973.0,1.0 -1974.0,1.0 -1975.0,1.0 -1976.0,1.0 -1977.0,1.0 -1978.0,1.0 -1979.0,1.0 -1980.0,1.0 -1981.0,1.0 -1982.0,1.0 -1983.0,1.0 -1984.0,1.0 -1985.0,1.0 -1986.0,1.0 -1987.0,1.0 -1988.0,1.0 -1989.0,1.0 -1990.0,1.0 -1991.0,1.0 -1992.0,1.0 -1993.0,1.0 -1994.0,1.0 -1995.0,1.0 -1996.0,1.0 -1997.0,1.0 -1998.0,1.0 -1999.0,1.0 -2000.0,1.0 -2001.0,1.0 -2002.0,1.0 -2003.0,1.0 -2004.0,1.0 -2005.0,1.0 -2006.0,1.0 -2007.0,1.0 -2008.0,1.0 -2009.0,1.0 -2010.0,1.0 -2011.0,1.0 -2012.0,1.0 -2013.0,1.0 -2014.0,1.0 -2015.0,1.0 -2016.0,1.0 -2017.0,1.0 -2018.0,1.0 -2019.0,1.0 -2020.0,1.0 -2021.0,1.0 -2022.0,1.0 -2023.0,1.0 -2024.0,1.0 -2025.0,1.0 -2026.0,1.0 -2027.0,1.0 -2028.0,1.0 -2029.0,1.0 -2030.0,1.0 -2031.0,1.0 -2032.0,1.0 -2033.0,1.0 -2034.0,1.0 -2035.0,1.0 -2036.0,1.0 -2037.0,1.0 -2038.0,1.0 -2039.0,1.0 -2040.0,1.0 -2041.0,1.0 -2042.0,1.0 -2043.0,1.0 -2044.0,1.0 -2045.0,1.0 -2046.0,1.0 -2047.0,1.0 -2048.0,1.0 -2049.0,1.0 -2050.0,1.0 -2051.0,1.0 -2052.0,1.0 -2053.0,1.0 -2054.0,1.0 -2055.0,1.0 -2056.0,1.0 -2057.0,1.0 -2058.0,1.0 -2059.0,1.0 -2060.0,1.0 -2061.0,1.0 -2062.0,1.0 -2063.0,1.0 -2064.0,1.0 -2065.0,1.0 -2066.0,1.0 -2067.0,1.0 -2068.0,1.0 -2069.0,1.0 -2070.0,1.0 -2071.0,1.0 -2072.0,1.0 -2073.0,1.0 -2074.0,1.0 -2075.0,1.0 -2076.0,1.0 -2077.0,1.0 -2078.0,1.0 -2079.0,1.0 -2080.0,1.0 -2081.0,1.0 -2082.0,1.0 -2083.0,1.0 -2084.0,1.0 -2085.0,1.0 -2086.0,1.0 -2087.0,1.0 -2088.0,1.0 -2089.0,1.0 -2090.0,1.0 -2091.0,1.0 -2092.0,1.0 -2093.0,1.0 -2094.0,1.0 -2095.0,1.0 -2096.0,1.0 -2097.0,1.0 -2098.0,1.0 -2099.0,1.0 -2100.0,1.0 -2101.0,1.0 -2102.0,1.0 -2103.0,1.0 -2104.0,1.0 -2105.0,1.0 -2106.0,1.0 -2107.0,1.0 -2108.0,1.0 -2109.0,1.0 -2110.0,1.0 -2111.0,1.0 -2112.0,1.0 -2113.0,1.0 -2114.0,1.0 -2115.0,1.0 -2116.0,1.0 -2117.0,1.0 -2118.0,1.0 -2119.0,1.0 -2120.0,1.0 -2121.0,1.0 -2122.0,1.0 -2123.0,1.0 -2124.0,1.0 -2125.0,1.0 -2126.0,1.0 -2127.0,1.0 -2128.0,1.0 -2129.0,1.0 -2130.0,1.0 -2131.0,1.0 -2132.0,1.0 -2133.0,1.0 -2134.0,1.0 -2135.0,1.0 -2136.0,1.0 -2137.0,1.0 -2138.0,1.0 -2139.0,1.0 -2140.0,1.0 -2141.0,1.0 -2142.0,1.0 -2143.0,1.0 -2144.0,1.0 -2145.0,1.0 -2146.0,1.0 -2147.0,1.0 -2148.0,1.0 -2149.0,1.0 -2150.0,1.0 -2151.0,1.0 -2152.0,1.0 -2153.0,1.0 -2154.0,1.0 -2155.0,1.0 -2156.0,1.0 -2157.0,1.0 -2158.0,1.0 -2159.0,1.0 -2160.0,1.0 -2161.0,1.0 -2162.0,1.0 -2163.0,1.0 -2164.0,1.0 -2165.0,1.0 -2166.0,1.0 -2167.0,1.0 -2168.0,1.0 -2169.0,1.0 -2170.0,1.0 -2171.0,1.0 -2172.0,1.0 -2173.0,1.0 -2174.0,1.0 -2175.0,1.0 -2176.0,1.0 -2177.0,1.0 -2178.0,1.0 -2179.0,1.0 -2180.0,1.0 -2181.0,1.0 -2182.0,1.0 -2183.0,1.0 -2184.0,1.0 -2185.0,1.0 -2186.0,1.0 -2187.0,1.0 -2188.0,1.0 -2189.0,1.0 -2190.0,1.0 -2191.0,1.0 -2192.0,1.0 -2193.0,1.0 -2194.0,1.0 -2195.0,1.0 -2196.0,1.0 -2197.0,1.0 -2198.0,1.0 -2199.0,1.0 -2200.0,1.0 -2201.0,1.0 -2202.0,1.0 -2203.0,1.0 -2204.0,1.0 -2205.0,1.0 -2206.0,1.0 -2207.0,1.0 -2208.0,1.0 -2209.0,1.0 -2210.0,1.0 -2211.0,1.0 -2212.0,1.0 -2213.0,1.0 -2214.0,1.0 -2215.0,1.0 -2216.0,1.0 -2217.0,1.0 -2218.0,1.0 -2219.0,1.0 -2220.0,1.0 -2221.0,1.0 -2222.0,1.0 -2223.0,1.0 -2224.0,1.0 -2225.0,1.0 -2226.0,1.0 -2227.0,1.0 -2228.0,1.0 -2229.0,1.0 -2230.0,1.0 -2231.0,1.0 -2232.0,1.0 -2233.0,1.0 -2234.0,1.0 -2235.0,1.0 -2236.0,1.0 -2237.0,1.0 -2238.0,1.0 -2239.0,1.0 -2240.0,1.0 -2241.0,1.0 -2242.0,1.0 -2243.0,1.0 -2244.0,1.0 -2245.0,1.0 -2246.0,1.0 -2247.0,1.0 -2248.0,1.0 -2249.0,1.0 -2250.0,1.0 -2251.0,1.0 -2252.0,1.0 -2253.0,1.0 -2254.0,1.0 -2255.0,1.0 -2256.0,1.0 -2257.0,1.0 -2258.0,1.0 -2259.0,1.0 -2260.0,1.0 -2261.0,1.0 -2262.0,1.0 -2263.0,1.0 -2264.0,1.0 -2265.0,1.0 -2266.0,1.0 -2267.0,1.0 -2268.0,1.0 -2269.0,1.0 -2270.0,1.0 -2271.0,1.0 -2272.0,1.0 -2273.0,1.0 -2274.0,1.0 -2275.0,1.0 -2276.0,1.0 -2277.0,1.0 -2278.0,1.0 -2279.0,1.0 -2280.0,1.0 -2281.0,1.0 -2282.0,1.0 -2283.0,1.0 -2284.0,1.0 -2285.0,1.0 -2286.0,1.0 -2287.0,1.0 -2288.0,1.0 -2289.0,1.0 -2290.0,1.0 -2291.0,1.0 -2292.0,1.0 -2293.0,1.0 -2294.0,1.0 -2295.0,1.0 -2296.0,1.0 -2297.0,1.0 -2298.0,1.0 -2299.0,1.0 -2300.0,1.0 -2301.0,1.0 -2302.0,1.0 -2303.0,1.0 -2304.0,1.0 -2305.0,1.0 -2306.0,1.0 -2307.0,1.0 -2308.0,1.0 -2309.0,1.0 -2310.0,1.0 -2311.0,1.0 -2312.0,1.0 -2313.0,1.0 -2314.0,1.0 -2315.0,1.0 -2316.0,1.0 -2317.0,1.0 -2318.0,1.0 -2319.0,1.0 -2320.0,1.0 -2321.0,1.0 -2322.0,1.0 -2323.0,1.0 -2324.0,1.0 -2325.0,1.0 -2326.0,1.0 -2327.0,1.0 -2328.0,1.0 -2329.0,1.0 -2330.0,1.0 -2331.0,1.0 -2332.0,1.0 -2333.0,1.0 -2334.0,1.0 -2335.0,1.0 -2336.0,1.0 -2337.0,1.0 -2338.0,1.0 -2339.0,1.0 -2340.0,1.0 -2341.0,1.0 -2342.0,1.0 -2343.0,1.0 -2344.0,1.0 -2345.0,1.0 -2346.0,1.0 -2347.0,1.0 -2348.0,1.0 -2349.0,1.0 -2350.0,1.0 -2351.0,1.0 -2352.0,1.0 -2353.0,1.0 -2354.0,1.0 -2355.0,1.0 -2356.0,1.0 -2357.0,1.0 -2358.0,1.0 -2359.0,1.0 -2360.0,1.0 -2361.0,1.0 -2362.0,1.0 -2363.0,1.0 -2364.0,1.0 -2365.0,1.0 -2366.0,1.0 -2367.0,1.0 -2368.0,1.0 -2369.0,1.0 -2370.0,1.0 -2371.0,1.0 -2372.0,1.0 -2373.0,1.0 -2374.0,1.0 -2375.0,1.0 -2376.0,1.0 -2377.0,1.0 -2378.0,1.0 -2379.0,1.0 -2380.0,1.0 -2381.0,1.0 -2382.0,1.0 -2383.0,1.0 -2384.0,1.0 -2385.0,1.0 -2386.0,1.0 -2387.0,1.0 -2388.0,1.0 -2389.0,1.0 -2390.0,1.0 -2391.0,1.0 -2392.0,1.0 -2393.0,1.0 -2394.0,1.0 -2395.0,1.0 -2396.0,1.0 -2397.0,1.0 -2398.0,1.0 -2399.0,1.0 -2400.0,1.0 -2401.0,1.0 -2402.0,1.0 -2403.0,1.0 -2404.0,1.0 -2405.0,1.0 -2406.0,1.0 -2407.0,1.0 -2408.0,1.0 -2409.0,1.0 -2410.0,1.0 -2411.0,1.0 -2412.0,1.0 -2413.0,1.0 -2414.0,1.0 -2415.0,1.0 -2416.0,1.0 -2417.0,1.0 -2418.0,1.0 -2419.0,1.0 -2420.0,1.0 -2421.0,1.0 -2422.0,1.0 -2423.0,1.0 -2424.0,1.0 -2425.0,1.0 -2426.0,1.0 -2427.0,1.0 -2428.0,1.0 -2429.0,1.0 -2430.0,1.0 -2431.0,1.0 -2432.0,1.0 -2433.0,1.0 -2434.0,1.0 -2435.0,1.0 -2436.0,1.0 -2437.0,1.0 -2438.0,1.0 -2439.0,1.0 -2440.0,1.0 -2441.0,1.0 -2442.0,1.0 -2443.0,1.0 -2444.0,1.0 -2445.0,1.0 -2446.0,1.0 -2447.0,1.0 -2448.0,1.0 -2449.0,1.0 -2450.0,1.0 -2451.0,1.0 -2452.0,1.0 -2453.0,1.0 -2454.0,1.0 -2455.0,1.0 -2456.0,1.0 -2457.0,1.0 -2458.0,1.0 -2459.0,1.0 -2460.0,1.0 -2461.0,1.0 -2462.0,1.0 -2463.0,1.0 -2464.0,1.0 -2465.0,1.0 -2466.0,1.0 -2467.0,1.0 -2468.0,1.0 -2469.0,1.0 -2470.0,1.0 -2471.0,1.0 -2472.0,1.0 -2473.0,1.0 -2474.0,1.0 -2475.0,1.0 -2476.0,1.0 -2477.0,1.0 -2478.0,1.0 -2479.0,1.0 -2480.0,1.0 -2481.0,1.0 -2482.0,1.0 -2483.0,1.0 -2484.0,1.0 -2485.0,1.0 -2486.0,1.0 -2487.0,1.0 -2488.0,1.0 -2489.0,1.0 -2490.0,1.0 -2491.0,1.0 -2492.0,1.0 -2493.0,1.0 -2494.0,1.0 -2495.0,1.0 -2496.0,1.0 -2497.0,1.0 -2498.0,1.0 -2499.0,1.0 -2500.0,1.0 -2501.0,1.0 -2502.0,1.0 -2503.0,1.0 -2504.0,1.0 -2505.0,1.0 -2506.0,1.0 -2507.0,1.0 -2508.0,1.0 -2509.0,1.0 -2510.0,1.0 -2511.0,1.0 -2512.0,1.0 -2513.0,1.0 -2514.0,1.0 -2515.0,1.0 -2516.0,1.0 -2517.0,1.0 -2518.0,1.0 -2519.0,1.0 -2520.0,1.0 -2521.0,1.0 -2522.0,1.0 -2523.0,1.0 -2524.0,1.0 -2525.0,1.0 -2526.0,1.0 -2527.0,1.0 -2528.0,1.0 -2529.0,1.0 -2530.0,1.0 -2531.0,1.0 -2532.0,1.0 -2533.0,1.0 -2534.0,1.0 -2535.0,1.0 -2536.0,1.0 -2537.0,1.0 -2538.0,1.0 -2539.0,1.0 -2540.0,1.0 -2541.0,1.0 -2542.0,1.0 -2543.0,1.0 -2544.0,1.0 -2545.0,1.0 -2546.0,1.0 -2547.0,1.0 -2548.0,1.0 -2549.0,1.0 -2550.0,1.0 -2551.0,1.0 -2552.0,1.0 -2553.0,1.0 -2554.0,1.0 -2555.0,1.0 -2556.0,1.0 -2557.0,1.0 -2558.0,1.0 -2559.0,1.0 -2560.0,1.0 -2561.0,1.0 -2562.0,1.0 -2563.0,1.0 -2564.0,1.0 -2565.0,1.0 -2566.0,1.0 -2567.0,1.0 -2568.0,1.0 -2569.0,1.0 -2570.0,1.0 -2571.0,1.0 -2572.0,1.0 -2573.0,1.0 -2574.0,1.0 -2575.0,1.0 -2576.0,1.0 -2577.0,1.0 -2578.0,1.0 -2579.0,1.0 -2580.0,1.0 -2581.0,1.0 -2582.0,1.0 -2583.0,1.0 -2584.0,1.0 -2585.0,1.0 -2586.0,1.0 -2587.0,1.0 -2588.0,1.0 -2589.0,1.0 -2590.0,1.0 -2591.0,1.0 -2592.0,1.0 -2593.0,1.0 -2594.0,1.0 -2595.0,1.0 -2596.0,1.0 -2597.0,1.0 -2598.0,1.0 -2599.0,1.0 -2600.0,1.0 -2601.0,1.0 -2602.0,1.0 -2603.0,1.0 -2604.0,1.0 -2605.0,1.0 -2606.0,1.0 -2607.0,1.0 -2608.0,1.0 -2609.0,1.0 -2610.0,1.0 -2611.0,1.0 -2612.0,1.0 -2613.0,1.0 -2614.0,1.0 -2615.0,1.0 -2616.0,1.0 -2617.0,1.0 -2618.0,1.0 -2619.0,1.0 -2620.0,1.0 -2621.0,1.0 -2622.0,1.0 -2623.0,1.0 -2624.0,1.0 -2625.0,1.0 -2626.0,1.0 -2627.0,1.0 -2628.0,1.0 -2629.0,1.0 -2630.0,1.0 -2631.0,1.0 -2632.0,1.0 -2633.0,1.0 -2634.0,1.0 -2635.0,1.0 -2636.0,1.0 -2637.0,1.0 -2638.0,1.0 -2639.0,1.0 -2640.0,1.0 -2641.0,1.0 -2642.0,1.0 -2643.0,1.0 -2644.0,1.0 -2645.0,1.0 -2646.0,1.0 -2647.0,1.0 -2648.0,1.0 -2649.0,1.0 -2650.0,1.0 -2651.0,1.0 -2652.0,1.0 -2653.0,1.0 -2654.0,1.0 -2655.0,1.0 -2656.0,1.0 -2657.0,1.0 -2658.0,1.0 -2659.0,1.0 -2660.0,1.0 -2661.0,1.0 -2662.0,1.0 -2663.0,1.0 -2664.0,1.0 -2665.0,1.0 -2666.0,1.0 -2667.0,1.0 -2668.0,1.0 -2669.0,1.0 -2670.0,1.0 -2671.0,1.0 -2672.0,1.0 -2673.0,1.0 -2674.0,1.0 -2675.0,1.0 -2676.0,1.0 -2677.0,1.0 -2678.0,1.0 -2679.0,1.0 -2680.0,1.0 -2681.0,1.0 -2682.0,1.0 -2683.0,1.0 -2684.0,1.0 -2685.0,1.0 -2686.0,1.0 -2687.0,1.0 -2688.0,1.0 -2689.0,1.0 -2690.0,1.0 -2691.0,1.0 -2692.0,1.0 -2693.0,1.0 -2694.0,1.0 -2695.0,1.0 -2696.0,1.0 -2697.0,1.0 -2698.0,1.0 -2699.0,1.0 -2700.0,1.0 -2701.0,1.0 -2702.0,1.0 -2703.0,1.0 -2704.0,1.0 -2705.0,1.0 -2706.0,1.0 -2707.0,1.0 -2708.0,1.0 -2709.0,1.0 -2710.0,1.0 -2711.0,1.0 -2712.0,1.0 -2713.0,1.0 -2714.0,1.0 -2715.0,1.005682505276418 -2716.0,1.045682505276418 -2717.0,1.0856825052764179 -2718.0,1.1256825052764179 -2719.0,1.165682505276418 -2720.0,1.205682505276418 -2721.0,1.245682505276418 -2722.0,1.285682505276418 -2723.0,1.325682505276418 -2724.0,1.3656825052764179 -2725.0,1.405682505276418 -2726.0,1.445682505276418 -2727.0,1.485682505276418 -2728.0,1.5256825052764178 -2729.0,1.5656825052764178 -2730.0,1.6056825052764179 -2731.0,1.645682505276418 -2732.0,1.685682505276418 -2733.0,1.725682505276418 -2734.0,1.765682505276418 -2735.0,1.805682505276418 -2736.0,1.845682505276418 -2737.0,1.8856825052764181 -2738.0,1.925682505276418 -2739.0,1.965682505276418 -2740.0,2.0056825052764182 -2741.0,2.0456825052764183 -2742.0,2.0856825052764183 -2743.0,2.125682505276418 -2744.0,2.165682505276418 -2745.0,2.205682505276418 -2746.0,2.245682505276418 -2747.0,2.285682505276418 -2748.0,2.325682505276418 -2749.0,2.3656825052764177 -2750.0,2.4056825052764177 -2751.0,2.4456825052764177 -2752.0,2.4856825052764178 -2753.0,2.525682505276418 -2754.0,2.565682505276418 -2755.0,2.605682505276418 -2756.0,2.645682505276418 -2757.0,2.685682505276418 -2758.0,2.725682505276418 -2759.0,2.765682505276418 -2760.0,2.805682505276418 -2761.0,2.845682505276418 -2762.0,2.885682505276418 -2763.0,2.925682505276418 -2764.0,2.965682505276418 -2765.0,3.005682505276418 -2766.0,3.045682505276418 -2767.0,3.085682505276418 -2768.0,3.125682505276418 -2769.0,3.165682505276418 -2770.0,3.205682505276418 -2771.0,3.245682505276418 -2772.0,3.285682505276418 -2773.0,3.325682505276418 -2774.0,3.365682505276418 -2775.0,3.405682505276418 -2776.0,3.445682505276418 -2777.0,3.485682505276418 -2778.0,3.525682505276418 -2779.0,3.565682505276418 -2780.0,3.605682505276418 -2781.0,3.645682505276418 -2782.0,3.685682505276418 -2783.0,3.725682505276418 -2784.0,3.765682505276418 -2785.0,3.805682505276418 -2786.0,3.845682505276418 -2787.0,3.885682505276418 -2788.0,3.925682505276418 -2789.0,3.965682505276418 -2790.0,4.005682505276418 -2791.0,4.045682505276417 -2792.0,4.085682505276418 -2793.0,4.1256825052764174 -2794.0,4.165682505276418 -2795.0,4.2056825052764175 -2796.0,4.245682505276418 -2797.0,4.285682505276418 -2798.0,4.3256825052764185 -2799.0,4.365682505276418 -2800.0,4.405682505276419 -2801.0,4.445682505276418 -2802.0,4.485682505276419 -2803.0,4.525682505276418 -2804.0,4.565682505276418 -2805.0,4.605682505276418 -2806.0,4.645682505276418 -2807.0,4.685682505276418 -2808.0,4.725682505276418 -2809.0,4.765682505276418 -2810.0,4.805682505276418 -2811.0,4.845682505276418 -2812.0,4.885682505276418 -2813.0,4.925682505276418 -2814.0,4.965682505276418 -2815.0,4.994317494723582 -2816.0,4.954317494723582 -2817.0,4.914317494723582 -2818.0,4.874317494723582 -2819.0,4.834317494723582 -2820.0,4.7943174947235825 -2821.0,4.7543174947235824 -2822.0,4.714317494723582 -2823.0,4.674317494723582 -2824.0,4.634317494723582 -2825.0,4.594317494723582 -2826.0,4.554317494723582 -2827.0,4.514317494723582 -2828.0,4.474317494723582 -2829.0,4.434317494723582 -2830.0,4.394317494723582 -2831.0,4.354317494723582 -2832.0,4.314317494723582 -2833.0,4.274317494723582 -2834.0,4.234317494723582 -2835.0,4.194317494723582 -2836.0,4.154317494723582 -2837.0,4.114317494723582 -2838.0,4.074317494723582 -2839.0,4.034317494723582 -2840.0,3.9943174947235818 -2841.0,3.9543174947235817 -2842.0,3.9143174947235817 -2843.0,3.874317494723582 -2844.0,3.834317494723582 -2845.0,3.794317494723582 -2846.0,3.754317494723582 -2847.0,3.714317494723582 -2848.0,3.674317494723582 -2849.0,3.6343174947235823 -2850.0,3.5943174947235823 -2851.0,3.5543174947235823 -2852.0,3.5143174947235822 -2853.0,3.474317494723582 -2854.0,3.434317494723582 -2855.0,3.394317494723582 -2856.0,3.354317494723582 -2857.0,3.314317494723582 -2858.0,3.274317494723582 -2859.0,3.234317494723582 -2860.0,3.194317494723582 -2861.0,3.154317494723582 -2862.0,3.114317494723582 -2863.0,3.074317494723582 -2864.0,3.034317494723582 -2865.0,2.994317494723582 -2866.0,2.954317494723582 -2867.0,2.914317494723582 -2868.0,2.874317494723582 -2869.0,2.834317494723582 -2870.0,2.794317494723582 -2871.0,2.754317494723582 -2872.0,2.714317494723582 -2873.0,2.674317494723582 -2874.0,2.634317494723582 -2875.0,2.594317494723582 -2876.0,2.554317494723582 -2877.0,2.514317494723582 -2878.0,2.474317494723582 -2879.0,2.434317494723582 -2880.0,2.394317494723582 -2881.0,2.354317494723582 -2882.0,2.314317494723582 -2883.0,2.274317494723582 -2884.0,2.234317494723582 -2885.0,2.194317494723582 -2886.0,2.154317494723582 -2887.0,2.114317494723582 -2888.0,2.074317494723582 -2889.0,2.034317494723582 -2890.0,1.9943174947235818 -2891.0,1.9543174947235822 -2892.0,1.9143174947235821 -2893.0,1.8743174947235821 -2894.0,1.834317494723582 -2895.0,1.794317494723582 -2896.0,1.754317494723582 -2897.0,1.714317494723582 -2898.0,1.674317494723582 -2899.0,1.634317494723582 -2900.0,1.5943174947235819 -2901.0,1.5543174947235818 -2902.0,1.5143174947235818 -2903.0,1.4743174947235822 -2904.0,1.4343174947235822 -2905.0,1.3943174947235821 -2906.0,1.354317494723582 -2907.0,1.314317494723582 -2908.0,1.274317494723582 -2909.0,1.234317494723582 -2910.0,1.194317494723582 -2911.0,1.154317494723582 -2912.0,1.1143174947235819 -2913.0,1.0743174947235818 -2914.0,1.0343174947235818 -2915.0,0.9999509345089743 -2916.0,0.9996056233282066 -2917.0,0.9992604313931012 -2918.0,0.9989153586624793 -2919.0,0.9985704050951763 -2920.0,0.9982255706500417 -2921.0,0.9978808552859393 -2922.0,0.997536258961747 -2923.0,0.9971917816363571 -2924.0,0.9968474232686759 -2925.0,0.9965031838176239 -2926.0,0.996159063242136 -2927.0,0.995815061501161 -2928.0,0.995471178553662 -2929.0,0.9951274143586162 -2930.0,0.9947837688750152 -2931.0,0.9944402420618645 -2932.0,0.9940968338781839 -2933.0,0.9937535442830074 -2934.0,0.9934103732353828 -2935.0,0.9930673206943725 -2936.0,0.9927243866190528 -2937.0,0.9923815709685142 -2938.0,0.9920388737018612 -2939.0,0.9916962947782125 -2940.0,0.991353834156701 -2941.0,0.9910114917964736 -2942.0,0.9906692676566915 -2943.0,0.9903271616965297 -2944.0,0.9899851738751774 -2945.0,0.9896433041518381 -2946.0,0.9893015524857292 -2947.0,0.988959918836082 -2948.0,0.9886184031621424 -2949.0,0.9882770054231701 -2950.0,0.9879357255784386 -2951.0,0.9875945635872357 -2952.0,0.9872535194088635 -2953.0,0.9869125930026377 -2954.0,0.9865717843278884 -2955.0,0.9862310933439594 -2956.0,0.985890520010209 -2957.0,0.9855500642860092 -2958.0,0.9852097261307462 -2959.0,0.9848695055038199 -2960.0,0.9845294023646446 -2961.0,0.9841894166726486 -2962.0,0.9838495483872738 -2963.0,0.9835097974679766 -2964.0,0.9831701638742272 -2965.0,0.9828306475655098 -2966.0,0.9824912485013223 -2967.0,0.9821519666411772 -2968.0,0.9818128019446005 -2969.0,0.9814737543711324 -2970.0,0.9811348238803269 -2971.0,0.9807960104317522 -2972.0,0.9804573139849901 -2973.0,0.9801187344996368 -2974.0,0.9797802719353023 -2975.0,0.9794419262516101 -2976.0,0.9791036974081984 -2977.0,0.9787655853647188 -2978.0,0.978427590080837 -2979.0,0.9780897115162327 -2980.0,0.9777519496305994 -2981.0,0.9774143043836446 -2982.0,0.9770767757350897 -2983.0,0.9767393636446698 -2984.0,0.9764020680721345 -2985.0,0.9760648889772464 -2986.0,0.9757278263197829 -2987.0,0.9753908800595347 -2988.0,0.9750540501563065 -2989.0,0.9747173365699172 -2990.0,0.9743807392601991 -2991.0,0.9740442581869987 -2992.0,0.9737078933101762 -2993.0,0.9733716445896057 -2994.0,0.9730355119851752 -2995.0,0.9726994954567867 -2996.0,0.9723635949643556 -2997.0,0.9720278104678116 -2998.0,0.9716921419270981 -2999.0,0.9713565893021721 -3000.0,0.9710211525530048 -3001.0,0.9706858316395809 -3002.0,0.9703506265218992 -3003.0,0.970015537159972 -3004.0,0.9696805635138257 -3005.0,0.9693457055435004 -3006.0,0.96901096320905 -3007.0,0.9686763364705421 -3008.0,0.9683418252880581 -3009.0,0.9680074296216935 -3010.0,0.9676731494315571 -3011.0,0.9673389846777719 -3012.0,0.9670049353204743 -3013.0,0.9666710013198148 -3014.0,0.9663371826359574 -3015.0,0.96600347922908 -3016.0,0.9656698910593742 -3017.0,0.9653364180870454 -3018.0,0.9650030602723128 -3019.0,0.964669817575409 -3020.0,0.9643366899565808 -3021.0,0.9640036773760884 -3022.0,0.9636707797942058 -3023.0,0.9633379971712208 -3024.0,0.9630053294674349 -3025.0,0.9626727766431632 -3026.0,0.9623403386587346 -3027.0,0.9620080154744916 -3028.0,0.9616758070507906 -3029.0,0.9613437133480014 -3030.0,0.9610117343265078 -3031.0,0.960679869946707 -3032.0,0.96034812016901 -3033.0,0.9600164849538417 -3034.0,0.9596849642616402 -3035.0,0.9593535580528575 -3036.0,0.9590222662879593 -3037.0,0.958691088927425 -3038.0,0.9583600259317474 -3039.0,0.9580290772614333 -3040.0,0.9576982428770027 -3041.0,0.9573675227389895 -3042.0,0.9570369168079415 -3043.0,0.9567064250444195 -3044.0,0.9563760474089983 -3045.0,0.9560457838622664 -3046.0,0.9557156343648255 -3047.0,0.9553855988772916 -3048.0,0.9550556773602934 -3049.0,0.954725869774474 -3050.0,0.9543961760804897 -3051.0,0.9540665962390102 -3052.0,0.9537371302107194 -3053.0,0.953407777956314 -3054.0,0.9530785394365051 -3055.0,0.9527494146120167 -3056.0,0.9524204034435866 -3057.0,0.9520915058919663 -3058.0,0.9517627219179206 -3059.0,0.951434051482228 -3060.0,0.9511054945456805 -3061.0,0.9507770510690837 -3062.0,0.9504487210132567 -3063.0,0.9501205043390321 -3064.0,0.949792401007256 -3065.0,0.9494644109787881 -3066.0,0.9491365342145015 -3067.0,0.948808770675283 -3068.0,0.9484811203220328 -3069.0,0.9481535831156646 -3070.0,0.9478261590171055 -3071.0,0.9474988479872963 -3072.0,0.947171649987191 -3073.0,0.9468445649777576 -3074.0,0.946517592919977 -3075.0,0.9461907337748439 -3076.0,0.9458639875033662 -3077.0,0.9455373540665657 -3078.0,0.9452108334254773 -3079.0,0.9448844255411495 -3080.0,0.9445581303746442 -3081.0,0.9442319478870368 -3082.0,0.9439058780394161 -3083.0,0.9435799207928842 -3084.0,0.9432540761085569 -3085.0,0.9429283439475634 -3086.0,0.9426027242710462 -3087.0,0.9422772170401611 -3088.0,0.9419518222160775 -3089.0,0.9416265397599782 -3090.0,0.9413013696330594 -3091.0,0.9409763117965307 -3092.0,0.940651366211615 -3093.0,0.9403265328395487 -3094.0,0.9400018116415816 -3095.0,0.9396772025789767 -3096.0,0.9393527056130105 -3097.0,0.9390283207049731 -3098.0,0.9387040478161676 -3099.0,0.9383798869079105 -3100.0,0.9380558379415319 -3101.0,0.9377319008783751 -3102.0,0.9374080756797967 -3103.0,0.9370843623071669 -3104.0,0.9367607607218689 -3105.0,0.9364372708852994 -3106.0,0.9361138927588684 -3107.0,0.9357906263039993 -3108.0,0.9354674714821288 -3109.0,0.9351444282547069 -3110.0,0.9348214965831967 -3111.0,0.9344986764290751 -3112.0,0.9341759677538318 -3113.0,0.9338533705189701 -3114.0,0.9335308846860064 -3115.0,0.9332085102164706 -3116.0,0.9328862470719057 -3117.0,0.9325640952138682 -3118.0,0.9322420546039275 -3119.0,0.9319201252036667 -3120.0,0.9315983069746819 -3121.0,0.9312765998785826 -3122.0,0.9309550038769914 -3123.0,0.9306335189315441 -3124.0,0.9303121450038903 -3125.0,0.929990882055692 -3126.0,0.9296697300486251 -3127.0,0.9293486889443785 -3128.0,0.9290277587046543 -3129.0,0.9287069392911679 -3130.0,0.9283862306656477 -3131.0,0.9280656327898358 -3132.0,0.927745145625487 -3133.0,0.9274247691343697 -3134.0,0.9271045032782651 -3135.0,0.9267843480189679 -3136.0,0.9264643033182859 -3137.0,0.9261443691380402 -3138.0,0.9258245454400649 -3139.0,0.9255048321862074 -3140.0,0.9251852293383281 -3141.0,0.924865736858301 -3142.0,0.9245463547080127 -3143.0,0.9242270828493634 -3144.0,0.9239079212442662 -3145.0,0.9235888698546475 -3146.0,0.9232699286424468 -3147.0,0.9229510975696167 -3148.0,0.922632376598123 -3149.0,0.9223137656899447 -3150.0,0.9219952648070736 -3151.0,0.9216768739115152 -3152.0,0.9213585929652874 -3153.0,0.921040421930422 -3154.0,0.9207223607689632 -3155.0,0.9204044094429689 -3156.0,0.9200865679145095 -3157.0,0.9197688361456691 -3158.0,0.9194512140985445 -3159.0,0.9191337017352457 -3160.0,0.9188162990178959 -3161.0,0.918499005908631 -3162.0,0.9181818223696006 -3163.0,0.9178647483629667 -3164.0,0.917547783850905 -3165.0,0.9172309287956036 -3166.0,0.9169141831592643 -3167.0,0.9165975469041014 -3168.0,0.9162810199923428 -3169.0,0.9159646023862289 -3170.0,0.9156482940480134 -3171.0,0.9153320949399631 -3172.0,0.9150160050243579 -3173.0,0.9147000242634903 -3174.0,0.9143841526196662 -3175.0,0.9140683900552045 -3176.0,0.9137527365324368 -3177.0,0.9134371920137082 -3178.0,0.9131217564613765 -3179.0,0.9128064298378123 -3180.0,0.9124912121053999 -3181.0,0.9121761032265355 -3182.0,0.9118611031636294 -3183.0,0.9115462118791043 -3184.0,0.9112314293353958 -3185.0,0.9109167554949528 -3186.0,0.9106021903202368 -3187.0,0.9102877337737227 -3188.0,0.9099733858178981 -3189.0,0.9096591464152635 -3190.0,0.9093450155283322 -3191.0,0.9090309931196312 -3192.0,0.9087170791516995 -3193.0,0.9084032735870896 -3194.0,0.9080895763883668 -3195.0,0.9077759875181094 -3196.0,0.9074625069389083 -3197.0,0.9071491346133677 -3198.0,0.9068358705041044 -3199.0,0.9065227145737486 -3200.0,0.9062096667849427 -3201.0,0.9058967271003427 -3202.0,0.9055838954826171 -3203.0,0.9052711718944473 -3204.0,0.9049585562985276 -3205.0,0.9046460486575654 -3206.0,0.9043336489342807 -3207.0,0.9040213570914065 -3208.0,0.9037091730916887 -3209.0,0.903397096897886 -3210.0,0.90308512847277 -3211.0,0.9027732677791251 -3212.0,0.9024615147797488 -3213.0,0.9021498694374509 -3214.0,0.9018383317150546 -3215.0,0.9015269015753957 -3216.0,0.9012155789813228 -3217.0,0.9009043638956974 -3218.0,0.9005932562813939 -3219.0,0.9002822561012992 -3220.0,0.8999713633183135 -3221.0,0.8996605778953495 -3222.0,0.8993498997953326 -3223.0,0.8990393289812014 -3224.0,0.8987288654159069 -3225.0,0.8984185090624132 -3226.0,0.8981082598836968 -3227.0,0.8977981178427475 -3228.0,0.8974880829025675 -3229.0,0.8971781550261719 -3230.0,0.8968683341765887 -3231.0,0.8965586203168583 -3232.0,0.8962490134100342 -3233.0,0.8959395134191825 -3234.0,0.8956301203073823 -3235.0,0.895320834037725 -3236.0,0.8950116545733152 -3237.0,0.8947025818772699 -3238.0,0.8943936159127192 -3239.0,0.8940847566428054 -3240.0,0.893776004030684 -3241.0,0.8934673580395232 -3242.0,0.8931588186325035 -3243.0,0.8928503857728186 -3244.0,0.8925420594236746 -3245.0,0.8922338395482906 -3246.0,0.8919257261098981 -3247.0,0.8916177190717413 -3248.0,0.8913098183970772 -3249.0,0.8910020240491758 -3250.0,0.8906943359913192 -3251.0,0.8903867541868026 -3252.0,0.8900792785989337 -3253.0,0.8897719091910328 -3254.0,0.889464645926433 -3255.0,0.8891574887684801 -3256.0,0.8888504376805325 -3257.0,0.8885434926259612 -3258.0,0.88823665356815 -3259.0,0.887929920470495 -3260.0,0.8876232932964054 -3261.0,0.8873167720093028 -3262.0,0.8870103565726213 -3263.0,0.8867040469498079 -3264.0,0.886397843104322 -3265.0,0.8860917449996358 -3266.0,0.885785752599234 -3267.0,0.8854798658666139 -3268.0,0.8851740847652855 -3269.0,0.8848684092587713 -3270.0,0.8845628393106064 -3271.0,0.8842573748843388 -3272.0,0.8839520159435283 -3273.0,0.8836467624517483 -3274.0,0.8833416143725842 -3275.0,0.8830365716696338 -3276.0,0.8827316343065079 -3277.0,0.8824268022468298 -3278.0,0.882122075454235 -3279.0,0.8818174538923721 -3280.0,0.8815129375249017 -3281.0,0.8812085263154974 -3282.0,0.8809042202278451 -3283.0,0.8806000192256433 -3284.0,0.8802959232726031 -3285.0,0.879991932332448 -3286.0,0.8796880463689142 -3287.0,0.8793842653457501 -3288.0,0.879080589226717 -3289.0,0.8787770179755885 -3290.0,0.8784735515561509 -3291.0,0.8781701899322027 -3292.0,0.8778669330675551 -3293.0,0.8775637809260318 -3294.0,0.877260733471469 -3295.0,0.8769577906677154 -3296.0,0.8766549524786319 -3297.0,0.8763522188680923 -3298.0,0.8760495897999827 -3299.0,0.8757470652382014 -3300.0,0.8754446451466599 -3301.0,0.8751423294892813 -3302.0,0.8748401182300015 -3303.0,0.8745380113327692 -3304.0,0.8742360087615452 -3305.0,0.8739341104803026 -3306.0,0.8736323164530272 -3307.0,0.8733306266437172 -3308.0,0.8730290410163832 -3309.0,0.8727275595350483 -3310.0,0.872426182163748 -3311.0,0.87212490886653 -3312.0,0.8718237396074547 -3313.0,0.8715226743505948 -3314.0,0.8712217130600354 -3315.0,0.8709208556998739 -3316.0,0.8706201022342204 -3317.0,0.8703194526271971 -3318.0,0.8700189068429387 -3319.0,0.8697184648455923 -3320.0,0.8694181265993174 -3321.0,0.8691178920682857 -3322.0,0.8688177612166816 -3323.0,0.8685177340087016 -3324.0,0.8682178104085545 -3325.0,0.8679179903804618 -3326.0,0.867618273888657 -3327.0,0.8673186608973863 -3328.0,0.8670191513709078 -3329.0,0.8667197452734925 -3330.0,0.8664204425694232 -3331.0,0.8661212432229952 -3332.0,0.8658221471985166 -3333.0,0.865523154460307 -3334.0,0.8652242649726989 -3335.0,0.8649254787000371 -3336.0,0.8646267956066783 -3337.0,0.864328215656992 -3338.0,0.8640297388153598 -3339.0,0.8637313650461755 -3340.0,0.8634330943138452 -3341.0,0.8631349265827876 -3342.0,0.8628368618174332 -3343.0,0.8625388999822253 -3344.0,0.8622410410416191 -3345.0,0.8619432849600822 -3346.0,0.8616456317020945 -3347.0,0.8613480812321481 -3348.0,0.8610506335147474 -3349.0,0.8607532885144091 -3350.0,0.8604560461956621 -3351.0,0.8601589065230475 -3352.0,0.8598618694611189 -3353.0,0.8595649349744415 -3354.0,0.8592681030275937 -3355.0,0.8589713735851653 -3356.0,0.8586747466117588 -3357.0,0.8583782220719887 -3358.0,0.8580817999304816 -3359.0,0.8577854801518768 -3360.0,0.8574892627008254 -3361.0,0.8571931475419908 -3362.0,0.8568971346400486 -3363.0,0.8566012239596866 -3364.0,0.8563054154656049 -3365.0,0.8560097091225157 -3366.0,0.8557141048951433 -3367.0,0.8554186027482243 -3368.0,0.8551232026465077 -3369.0,0.8548279045547539 -3370.0,0.8545327084377364 -3371.0,0.8542376142602404 -3372.0,0.853942621987063 -3373.0,0.8536477315830143 -3374.0,0.8533529430129156 -3375.0,0.853058256241601 -3376.0,0.8527636712339165 -3377.0,0.85246918795472 -3378.0,0.8521748063688822 -3379.0,0.8518805264412852 -3380.0,0.8515863481368237 -3381.0,0.8512922714204043 -3382.0,0.8509982962569459 -3383.0,0.8507044226113792 -3384.0,0.8504106504486475 -3385.0,0.8501169797337057 -3386.0,0.8498234104315212 -3387.0,0.8495299425070731 -3388.0,0.849236575925353 -3389.0,0.8489433106513643 -3390.0,0.8486501466501227 -3391.0,0.8483570838866558 -3392.0,0.8480641223260033 -3393.0,0.8477712619332171 -3394.0,0.8474785026733611 -3395.0,0.8471858445115111 -3396.0,0.8468932874127554 -3397.0,0.8466008313421939 -3398.0,0.8463084762649387 -3399.0,0.8460162221461139 -3400.0,0.845724068950856 -3401.0,0.845432016644313 -3402.0,0.8451400651916452 -3403.0,0.8448482145580251 -3404.0,0.8445564647086369 -3405.0,0.8442648156086769 -3406.0,0.8439732672233536 -3407.0,0.8436818195178875 -3408.0,0.8433904724575109 -3409.0,0.8430992260074681 -3410.0,0.8428080801330158 -3411.0,0.8425170347994222 -3412.0,0.8422260899719678 -3413.0,0.8419352456159449 -3414.0,0.841644501696658 -3415.0,0.8413538581794237 -3416.0,0.8410633150295698 -3417.0,0.840772872212437 -3418.0,0.8404825296933776 -3419.0,0.8401922874377556 -3420.0,0.8399021454109474 -3421.0,0.8396121035783413 -3422.0,0.8393221619053371 -3423.0,0.8390323203573471 -3424.0,0.8387425788997953 -3425.0,0.8384529374981176 -3426.0,0.8381633961177618 -3427.0,0.8378739547241879 -3428.0,0.8375846132828676 -3429.0,0.8372953717592846 -3430.0,0.8370062301189344 -3431.0,0.8367171883273246 -3432.0,0.8364282463499745 -3433.0,0.8361394041524156 -3434.0,0.8358506617001911 -3435.0,0.835562018958856 -3436.0,0.8352734758939774 -3437.0,0.8349850324711342 -3438.0,0.8346966886559173 -3439.0,0.8344084444139293 -3440.0,0.8341202997107846 -3441.0,0.83383225451211 -3442.0,0.8335443087835436 -3443.0,0.8332564624907355 -3444.0,0.8329687155993479 -3445.0,0.8326810680750546 -3446.0,0.8323935198835414 -3447.0,0.8321060709905058 -3448.0,0.8318187213616575 -3449.0,0.8315314709627174 -3450.0,0.8312443197594188 -3451.0,0.8309572677175068 -3452.0,0.830670314802738 -3453.0,0.8303834609808811 -3454.0,0.8300967062177165 -3455.0,0.8298100504790363 -3456.0,0.8295234937306448 -3457.0,0.8292370359383578 -3458.0,0.828950677068003 -3459.0,0.8286644170854197 -3460.0,0.8283782559564594 -3461.0,0.828092193646985 -3462.0,0.8278062301228715 -3463.0,0.8275203653500053 -3464.0,0.827234599294285 -3465.0,0.8269489319216208 -3466.0,0.8266633631979347 -3467.0,0.8263778930891602 -3468.0,0.826092521561243 -3469.0,0.8258072485801403 -3470.0,0.8255220741118212 -3471.0,0.8252369981222664 -3472.0,0.8249520205774683 -3473.0,0.8246671414434312 -3474.0,0.8243823606861713 -3475.0,0.8240976782717162 -3476.0,0.8238130941661053 -3477.0,0.8235286083353898 -3478.0,0.8232442207456327 -3479.0,0.8229599313629086 -3480.0,0.8226757401533038 -3481.0,0.8223916470829165 -3482.0,0.8221076521178562 -3483.0,0.8218237552242447 -3484.0,0.8215399563682149 -3485.0,0.8212562555159119 -3486.0,0.8209726526334921 -3487.0,0.8206891476871236 -3488.0,0.8204057406429867 -3489.0,0.8201224314672727 -3490.0,0.819839220126185 -3491.0,0.8195561065859387 -3492.0,0.8192730908127601 -3493.0,0.8189901727728878 -3494.0,0.8187073524325714 -3495.0,0.8184246297580727 -3496.0,0.8181420047156651 -3497.0,0.8178594772716332 -3498.0,0.8175770473922737 -3499.0,0.8172947150438946 -3500.0,0.817012480192816 -3501.0,0.8167303428053692 -3502.0,0.816448302847897 -3503.0,0.8161663602867546 -3504.0,0.815884515088308 -3505.0,0.8156027672189351 -3506.0,0.8153211166450255 -3507.0,0.8150395633329803 -3508.0,0.8147581072492124 -3509.0,0.8144767483601459 -3510.0,0.814195486632217 -3511.0,0.813914322031873 -3512.0,0.8136332545255731 -3513.0,0.8133522840797881 -3514.0,0.8130714106610001 -3515.0,0.812790634235703 -3516.0,0.8125099547704022 -3517.0,0.8122293722316148 -3518.0,0.8119488865858693 -3519.0,0.8116684977997057 -3520.0,0.8113882058396759 -3521.0,0.8111080106723427 -3522.0,0.8108279122642813 -3523.0,0.8105479105820779 -3524.0,0.8102680055923301 -3525.0,0.8099881972616475 -3526.0,0.8097084855566509 -3527.0,0.8094288704439728 -3528.0,0.8091493518902572 -3529.0,0.8088699298621594 -3530.0,0.8085906043263466 -3531.0,0.808311375249497 -3532.0,0.8080322425983011 -3533.0,0.8077532063394599 -3534.0,0.8074742664396867 -3535.0,0.8071954228657059 -3536.0,0.8069166755842535 -3537.0,0.806638024562077 -3538.0,0.8063594697659354 -3539.0,0.8060810111625991 -3540.0,0.8058026487188501 -3541.0,0.8055243824014816 -3542.0,0.8052462121772986 -3543.0,0.8049681380131175 -3544.0,0.8046901598757659 -3545.0,0.8044122777320831 -3546.0,0.8041344915489199 -3547.0,0.8038568012931383 -3548.0,0.8035792069316118 -3549.0,0.8033017084312256 -3550.0,0.8030243057588761 -3551.0,0.8027469988814712 -3552.0,0.80246978776593 -3553.0,0.8021926723791836 -3554.0,0.8019156526881739 -3555.0,0.8016387286598544 -3556.0,0.8013619002611904 -3557.0,0.801085167459158 -3558.0,0.8008085302207452 -3559.0,0.800531988512951 -3560.0,0.8002555423027862 -3561.0,0.7999791915572726 -3562.0,0.7997029362434437 -3563.0,0.799426776328344 -3564.0,0.7991507117790301 -3565.0,0.7988747425625691 -3566.0,0.79859886864604 -3567.0,0.7983230899965332 -3568.0,0.7980474065811501 -3569.0,0.7977718183670038 -3570.0,0.7974963253212187 -3571.0,0.7972209274109303 -3572.0,0.7969456246032858 -3573.0,0.7966704168654435 -3574.0,0.7963953041645732 -3575.0,0.7961202864678558 -3576.0,0.7958453637424838 -3577.0,0.795570535955661 -3578.0,0.7952958030746023 -3579.0,0.7950211650665343 -3580.0,0.7947466218986944 -3581.0,0.7944721735383318 -3582.0,0.7941978199527067 -3583.0,0.7939235611090908 -3584.0,0.7936493969747669 -3585.0,0.7933753275170293 -3586.0,0.7931013527031836 -3587.0,0.7928274725005465 -3588.0,0.7925536868764461 -3589.0,0.7922799957982218 -3590.0,0.7920063992332241 -3591.0,0.7917328971488152 -3592.0,0.7914594895123681 -3593.0,0.7911861762912673 -3594.0,0.7909129574529085 -3595.0,0.7906398329646988 -3596.0,0.7903668027940562 -3597.0,0.7900938669084105 -3598.0,0.7898210252752023 -3599.0,0.7895482778618834 -3600.0,0.7892756246359174 -3601.0,0.7890030655647784 -3602.0,0.7887306006159523 -3603.0,0.7884582297569359 -3604.0,0.7881859529552375 -3605.0,0.7879137701783764 -3606.0,0.787641681393883 -3607.0,0.7873696865692993 -3608.0,0.7870977856721783 -3609.0,0.7868259786700841 -3610.0,0.786554265530592 -3611.0,0.786282646221289 -3612.0,0.7860111207097725 -3613.0,0.7857396889636517 -3614.0,0.7854683509505467 -3615.0,0.7851971066380887 -3616.0,0.7849259559939206 -3617.0,0.7846548989856958 -3618.0,0.7843839355810793 -3619.0,0.7841130657477471 -3620.0,0.7838422894533864 -3621.0,0.7835716066656957 -3622.0,0.7833010173523842 -3623.0,0.7830305214811729 -3624.0,0.7827601190197935 -3625.0,0.7824898099359888 -3626.0,0.7822195941975132 -3627.0,0.7819494717721317 -3628.0,0.7816794426276207 -3629.0,0.7814095067317678 -3630.0,0.7811396640523715 -3631.0,0.7808699145572415 -3632.0,0.7806002582141988 -3633.0,0.7803306949910753 -3634.0,0.780061224855714 -3635.0,0.7797918477759692 -3636.0,0.7795225637197062 -3637.0,0.7792533726548012 -3638.0,0.7789842745491418 -3639.0,0.7787152693706264 -3640.0,0.7784463570871649 -3641.0,0.7781775376666779 -3642.0,0.7779088110770971 -3643.0,0.7776401772863656 -3644.0,0.7773716362624371 -3645.0,0.7771031879732768 -3646.0,0.7768348323868607 -3647.0,0.776566569471176 -3648.0,0.7762983991942207 -3649.0,0.7760303215240043 -3650.0,0.7757623364285469 -3651.0,0.7754944438758798 -3652.0,0.7752266438340456 -3653.0,0.7749589362710976 -3654.0,0.7746913211551002 -3655.0,0.7744237984541289 -3656.0,0.7741563681362701 -3657.0,0.7738890301696215 -3658.0,0.7736217845222915 -3659.0,0.7733546311623996 -3660.0,0.7730875700580764 -3661.0,0.7728206011774634 -3662.0,0.7725537244887134 -3663.0,0.7722869399599898 -3664.0,0.772020247559467 -3665.0,0.7717536472553308 -3666.0,0.7714871390157775 -3667.0,0.7712207228090148 -3668.0,0.7709543986032611 -3669.0,0.7706881663667459 -3670.0,0.7704220260677095 -3671.0,0.7701559776744035 -3672.0,0.7698900211550902 -3673.0,0.7696241564780428 -3674.0,0.7693583836115457 -3675.0,0.7690927025238942 -3676.0,0.7688271131833944 -3677.0,0.7685616155583633 -3678.0,0.7682962096171293 -3679.0,0.768030895328031 -3680.0,0.7677656726594186 -3681.0,0.7675005415796531 -3682.0,0.7672355020571059 -3683.0,0.76697055406016 -3684.0,0.766705697557209 -3685.0,0.7664409325166573 -3686.0,0.7661762589069206 -3687.0,0.7659116766964251 -3688.0,0.7656471858536081 -3689.0,0.7653827863469178 -3690.0,0.7651184781448133 -3691.0,0.7648542612157645 -3692.0,0.7645901355282522 -3693.0,0.7643261010507683 -3694.0,0.7640621577518152 -3695.0,0.7637983055999065 -3696.0,0.7635345445635666 -3697.0,0.7632708746113307 -3698.0,0.7630072957117447 -3699.0,0.7627438078333659 -3700.0,0.7624804109447619 -3701.0,0.7622171050145116 -3702.0,0.7619538900112042 -3703.0,0.7616907659034402 -3704.0,0.761427732659831 -3705.0,0.7611647902489983 -3706.0,0.7609019386395752 -3707.0,0.7606391778002055 -3708.0,0.7603765076995436 -3709.0,0.7601139283062549 -3710.0,0.7598514395890156 -3711.0,0.7595890415165127 -3712.0,0.7593267340574441 -3713.0,0.7590645171805183 -3714.0,0.7588023908544549 -3715.0,0.7585403550479839 -3716.0,0.7582784097298466 -3717.0,0.7580165548687947 -3718.0,0.7577547904335908 -3719.0,0.7574931163930084 -3720.0,0.7572315327158318 -3721.0,0.7569700393708556 -3722.0,0.7567086363268859 -3723.0,0.7564473235527391 -3724.0,0.7561861010172425 -3725.0,0.7559249686892341 -3726.0,0.7556639265375629 -3727.0,0.7554029745310882 -3728.0,0.7551421126386805 -3729.0,0.7548813408292208 -3730.0,0.754620659071601 -3731.0,0.7543600673347237 -3732.0,0.7540995655875021 -3733.0,0.7538391537988604 -3734.0,0.7535788319377331 -3735.0,0.7533185999730659 -3736.0,0.753058457873815 -3737.0,0.7527984056089473 -3738.0,0.7525384431474406 -3739.0,0.7522785704582831 -3740.0,0.7520187875104739 -3741.0,0.7517590942730228 -3742.0,0.7514994907149504 -3743.0,0.7512399768052879 -3744.0,0.7509805525130769 -3745.0,0.7507212178073703 -3746.0,0.7504619726572311 -3747.0,0.7502028170317335 -3748.0,0.749943750899962 -3749.0,0.7496847742310119 -3750.0,0.749425886993989 -3751.0,0.7491670891580103 -3752.0,0.7489083806922029 -3753.0,0.7486497615657047 -3754.0,0.7483912317476644 -3755.0,0.7481327912072413 -3756.0,0.7478744399136054 -3757.0,0.747616177835937 -3758.0,0.7473580049434276 -3759.0,0.747099921205279 -3760.0,0.7468419265907037 -3761.0,0.7465840210689246 -3762.0,0.7463262046091758 -3763.0,0.7460684771807014 -3764.0,0.7458108387527564 -3765.0,0.7455532892946066 -3766.0,0.7452958287755282 -3767.0,0.745038457164808 -3768.0,0.7447811744317433 -3769.0,0.7445239805456424 -3770.0,0.7442668754758237 -3771.0,0.7440098591916166 -3772.0,0.7437529316623609 -3773.0,0.7434960928574069 -3774.0,0.7432393427461158 -3775.0,0.742982681297859 -3776.0,0.7427261084820188 -3777.0,0.7424696242679879 -3778.0,0.7422132286251696 -3779.0,0.7419569215229778 -3780.0,0.7417007029308367 -3781.0,0.7414445728181817 -3782.0,0.7411885311544579 -3783.0,0.7409325779091218 -3784.0,0.7406767130516397 -3785.0,0.7404209365514891 -3786.0,0.7401652483781574 -3787.0,0.7399096485011433 -3788.0,0.7396541368899552 -3789.0,0.7393987135141126 -3790.0,0.7391433783431453 -3791.0,0.7388881313465936 -3792.0,0.7386329724940086 -3793.0,0.7383779017549515 -3794.0,0.7381229190989945 -3795.0,0.7378680244957199 -3796.0,0.7376132179147203 -3797.0,0.7373584993255996 -3798.0,0.7371038686979716 -3799.0,0.7368493260014606 -3800.0,0.7365948712057016 -3801.0,0.7363405042803399 -3802.0,0.7360862251950315 -3803.0,0.7358320339194427 -3804.0,0.7355779304232504 -3805.0,0.7353239146761418 -3806.0,0.7350699866478148 -3807.0,0.7348161463079775 -3808.0,0.7345623936263488 -3809.0,0.7343087285726576 -3810.0,0.7340551511166437 -3811.0,0.733801661228057 -3812.0,0.7335482588766581 -3813.0,0.7332949440322181 -3814.0,0.733041716664518 -3815.0,0.73278857674335 -3816.0,0.7325355242385162 -3817.0,0.7322825591198293 -3818.0,0.7320296813571123 -3819.0,0.7317768909201989 -3820.0,0.7315241877789329 -3821.0,0.7312715719031688 -3822.0,0.7310190432627712 -3823.0,0.7307666018276154 -3824.0,0.730514247567587 -3825.0,0.7302619804525818 -3826.0,0.7300098004525063 -3827.0,0.7297577075372773 -3828.0,0.7295057016768219 -3829.0,0.7292537828410777 -3830.0,0.7290019509999925 -3831.0,0.7287502061235246 -3832.0,0.7284985481816428 -3833.0,0.7282469771443262 -3834.0,0.7279954929815639 -3835.0,0.727744095663356 -3836.0,0.7274927851597124 -3837.0,0.7272415614406537 -3838.0,0.7269904244762107 -3839.0,0.7267393742364247 -3840.0,0.7264884106913471 -3841.0,0.7262375338110397 -3842.0,0.725986743565575 -3843.0,0.7257360399250353 -3844.0,0.7254854228595137 -3845.0,0.7252348923391132 -3846.0,0.7249844483339475 -3847.0,0.7247340908141404 -3848.0,0.724483819749826 -3849.0,0.7242336351111488 -3850.0,0.7239835368682638 -3851.0,0.7237335249913358 -3852.0,0.7234835994505404 -3853.0,0.7232337602160632 -3854.0,0.7229840072581004 -3855.0,0.722734340546858 -3856.0,0.7224847600525529 -3857.0,0.7222352657454117 -3858.0,0.7219858575956717 -3859.0,0.7217365355735802 -3860.0,0.721487299649395 -3861.0,0.7212381497933841 -3862.0,0.7209890859758256 -3863.0,0.7207401081670082 -3864.0,0.7204912163372305 -3865.0,0.7202424104568015 -3866.0,0.7199936904960406 -3867.0,0.7197450564252772 -3868.0,0.7194965082148512 -3869.0,0.7192480458351126 -3870.0,0.7189996692564214 -3871.0,0.7187513784491485 -3872.0,0.7185031733836743 -3873.0,0.7182550540303899 -3874.0,0.7180070203596963 -3875.0,0.7177590723420051 -3876.0,0.7175112099477379 -3877.0,0.7172634331473262 -3878.0,0.7170157419112124 -3879.0,0.7167681362098486 -3880.0,0.7165206160136973 -3881.0,0.716273181293231 -3882.0,0.7160258320189328 -3883.0,0.7157785681612955 -3884.0,0.7155313896908224 -3885.0,0.715284296578027 -3886.0,0.7150372887934326 -3887.0,0.7147903663075733 -3888.0,0.714543529090993 -3889.0,0.7142967771142457 -3890.0,0.7140501103478957 -3891.0,0.7138035287625174 -3892.0,0.7135570323286957 -3893.0,0.713310621017025 -3894.0,0.7130642947981106 -3895.0,0.7128180536425672 -3896.0,0.7125718975210203 -3897.0,0.7123258264041052 -3898.0,0.7120798402624674 -3899.0,0.7118339390667625 -3900.0,0.7115881227876563 -3901.0,0.7113423913958248 -3902.0,0.7110967448619538 -3903.0,0.7108511831567398 -3904.0,0.7106057062508888 -3905.0,0.7103603141151174 -3906.0,0.7101150067201518 -3907.0,0.709869784036729 -3908.0,0.7096246460355954 -3909.0,0.709379592687508 -3910.0,0.7091346239632338 -3911.0,0.7088897398335496 -3912.0,0.7086449402692427 -3913.0,0.7084002252411102 -3914.0,0.7081555947199594 -3915.0,0.7079110486766076 -3916.0,0.7076665870818822 -3917.0,0.707422209906621 -3918.0,0.7071779171216713 -3919.0,0.7069337086978909 -3920.0,0.7066895846061474 -3921.0,0.7064455448173186 -3922.0,0.7062015893022925 -3923.0,0.7059577180319667 -3924.0,0.7057139309772494 -3925.0,0.7054702281090586 -3926.0,0.7052266093983219 -3927.0,0.7049830748159779 -3928.0,0.7047396243329743 -3929.0,0.7044962579202695 -3930.0,0.7042529755488316 -3931.0,0.7040097771896386 -3932.0,0.703766662813679 -3933.0,0.7035236323919507 -3934.0,0.7032806858954623 -3935.0,0.7030378232952318 -3936.0,0.7027950445622875 -3937.0,0.7025523496676678 -3938.0,0.7023097385824207 -3939.0,0.7020672112776049 -3940.0,0.7018247677242883 -3941.0,0.7015824078935491 -3942.0,0.7013401317564759 -3943.0,0.7010979392841666 -3944.0,0.7008558304477296 -3945.0,0.7006138052182829 -3946.0,0.7003718635669548 -3947.0,0.7001300054648834 -3948.0,0.6998882308832168 -3949.0,0.699646539793113 -3950.0,0.6994049321657401 -3951.0,0.6991634079722759 -3952.0,0.6989219671839085 -3953.0,0.6986806097718358 -3954.0,0.6984393357072654 -3955.0,0.6981981449614152 -3956.0,0.697957037505513 -3957.0,0.6977160133107964 -3958.0,0.6974750723485127 -3959.0,0.6972342145899197 -3960.0,0.6969934400062848 -3961.0,0.6967527485688852 -3962.0,0.6965121402490083 -3963.0,0.6962716150179513 -3964.0,0.6960311728470211 -3965.0,0.6957908137075349 -3966.0,0.6955505375708195 -3967.0,0.6953103444082118 -3968.0,0.6950702341910584 -3969.0,0.694830206890716 -3970.0,0.694590262478551 -3971.0,0.6943504009259399 -3972.0,0.6941106222042688 -3973.0,0.693870926284934 -3974.0,0.6936313131393415 -3975.0,0.693391782738907 -3976.0,0.6931523350550566 -3977.0,0.6929129700592257 -3978.0,0.6926736877228599 -3979.0,0.6924344880174145 -3980.0,0.6921953709143548 -3981.0,0.6919563363851557 -3982.0,0.6917173844013024 -3983.0,0.6914785149342895 -3984.0,0.6912397279556216 -3985.0,0.6910010234368131 -3986.0,0.6907624013493885 -3987.0,0.6905238616648818 -3988.0,0.690285404354837 -3989.0,0.6900470293908078 -3990.0,0.6898087367443577 -3991.0,0.6895705263870605 -3992.0,0.6893323982904991 -3993.0,0.6890943524262666 -3994.0,0.688856388765966 -3995.0,0.68861850728121 -3996.0,0.6883807079436208 -3997.0,0.688142990724831 -3998.0,0.6879053555964825 -3999.0,0.6876678025302271 -4000.0,0.6874303314977266 -4001.0,0.6871929424706523 -4002.0,0.6869556354206855 -4003.0,0.6867184103195172 -4004.0,0.6864812671388482 -4005.0,0.6862442058503889 -4006.0,0.6860072264258598 -4007.0,0.685770328836991 -4008.0,0.6855335130555221 -4009.0,0.685296779053203 -4010.0,0.6850601268017927 -4011.0,0.6848235562730607 -4012.0,0.6845870674387856 -4013.0,0.6843506602707562 -4014.0,0.6841143347407707 -4015.0,0.6838780908206372 -4016.0,0.6836419284821736 -4017.0,0.6834058476972075 -4018.0,0.6831698484375759 -4019.0,0.6829339306751261 -4020.0,0.6826980943817148 -4021.0,0.6824623395292082 -4022.0,0.6822266660894828 -4023.0,0.6819910740344243 -4024.0,0.6817555633359282 -4025.0,0.6815201339659 -4026.0,0.6812847858962546 -4027.0,0.6810495190989168 -4028.0,0.6808143335458208 -4029.0,0.6805792292089107 -4030.0,0.6803442060601402 -4031.0,0.680109264071473 -4032.0,0.6798744032148821 -4033.0,0.6796396234623503 -4034.0,0.6794049247858701 -4035.0,0.6791703071574438 -4036.0,0.6789357705490829 -4037.0,0.6787013149328092 -4038.0,0.6784669402806537 -4039.0,0.6782326465646572 -4040.0,0.6779984337568702 -4041.0,0.6777643018293529 -4042.0,0.6775302507541751 -4043.0,0.677296280503416 -4044.0,0.6770623910491648 -4045.0,0.6768285823635202 -4046.0,0.6765948544185905 -4047.0,0.6763612071864935 -4048.0,0.6761276406393572 -4049.0,0.6758941547493182 -4050.0,0.6756607494885241 -4051.0,0.6754274248291307 -4052.0,0.6751941807433044 -4053.0,0.6749610172032208 -4054.0,0.6747279341810651 -4055.0,0.6744949316490324 -4056.0,0.674262009579327 -4057.0,0.6740291679441631 -4058.0,0.6737964067157645 -4059.0,0.6735637258663641 -4060.0,0.6733311253682053 -4061.0,0.67309860519354 -4062.0,0.6728661653146307 -4063.0,0.6726338057037488 -4064.0,0.6724015263331755 -4065.0,0.6721693271752016 -4066.0,0.6719372082021274 -4067.0,0.6717051693862629 -4068.0,0.6714732106999274 -4069.0,0.6712413321154501 -4070.0,0.6710095336051694 -4071.0,0.6707778151414335 -4072.0,0.6705461766966001 -4073.0,0.6703146182430365 -4074.0,0.6700831397531193 -4075.0,0.6698517411992349 -4076.0,0.6696204225537791 -4077.0,0.6693891837891572 -4078.0,0.6691580248777843 -4079.0,0.6689269457920847 -4080.0,0.6686959465044923 -4081.0,0.6684650269874507 -4082.0,0.6682341872134128 -4083.0,0.6680034271548412 -4084.0,0.6677727467842077 -4085.0,0.667542146073994 -4086.0,0.667311624996691 -4087.0,0.6670811835247994 -4088.0,0.666850821630829 -4089.0,0.6666205392872994 -4090.0,0.6663903364667396 -4091.0,0.666160213141688 -4092.0,0.6659301692846927 -4093.0,0.6657002048683112 -4094.0,0.6654703198651102 -4095.0,0.6652405142476662 -4096.0,0.6650107879885649 -4097.0,0.664781141060402 -4098.0,0.664551573435782 -4099.0,0.6643220850873193 -4100.0,0.6640926759876375 -4101.0,0.6638633461093699 -4102.0,0.663634095425159 -4103.0,0.6634049239076569 -4104.0,0.6631758315295252 -4105.0,0.6629468182634347 -4106.0,0.6627178840820658 -4107.0,0.6624890289581085 -4108.0,0.6622602528642618 -4109.0,0.6620315557732346 -4110.0,0.6618029376577449 -4111.0,0.6615743984905202 -4112.0,0.6613459382442975 -4113.0,0.6611175568918233 -4114.0,0.660889254405853 -4115.0,0.6606610307591521 -4116.0,0.660432885924495 -4117.0,0.6602048198746658 -4118.0,0.6599768325824579 -4119.0,0.6597489240206739 -4120.0,0.6595210941621261 -4121.0,0.6592933429796362 -4122.0,0.6590656704460348 -4123.0,0.6588380765341625 -4124.0,0.6586105612168689 -4125.0,0.6583831244670132 -4126.0,0.6581557662574636 -4127.0,0.6579284865610983 -4128.0,0.6577012853508041 -4129.0,0.6574741625994778 -4130.0,0.6572471182800252 -4131.0,0.6570201523653616 -4132.0,0.6567932648284117 -4133.0,0.6565664556421094 -4134.0,0.656339724779398 -4135.0,0.65611307221323 -4136.0,0.6558864979165678 -4137.0,0.6556600018623825 -4138.0,0.6554335840236547 -4139.0,0.6552072443733745 -4140.0,0.6549809828845413 -4141.0,0.6547547995301636 -4142.0,0.6545286942832594 -4143.0,0.6543026671168563 -4144.0,0.6540767180039904 -4145.0,0.6538508469177079 -4146.0,0.6536250538310641 -4147.0,0.6533993387171233 -4148.0,0.6531737015489596 -4149.0,0.6529481422996559 -4150.0,0.6527226609423047 -4151.0,0.6524972574500078 -4152.0,0.6522719317958761 -4153.0,0.6520466839530299 -4154.0,0.6518215138945989 -4155.0,0.6515964215937218 -4156.0,0.6513714070235468 -4157.0,0.6511464701572314 -4158.0,0.650921610967942 -4159.0,0.6506968294288548 -4160.0,0.6504721255131549 -4161.0,0.6502474991940368 -4162.0,0.650022950444704 -4163.0,0.6497984792383699 -4164.0,0.6495740855482564 -4165.0,0.6493497693475949 -4166.0,0.6491255306096264 -4167.0,0.6489013693076008 -4168.0,0.6486772854147771 -4169.0,0.6484532789044238 -4170.0,0.6482293497498186 -4171.0,0.6480054979242484 -4172.0,0.6477817234010093 -4173.0,0.6475580261534066 -4174.0,0.6473344061547548 -4175.0,0.6471108633783779 -4176.0,0.6468873977976085 -4177.0,0.646664009385789 -4178.0,0.6464406981162709 -4179.0,0.6462174639624146 -4180.0,0.6459943068975901 -4181.0,0.6457712268951761 -4182.0,0.6455482239285609 -4183.0,0.645325297971142 -4184.0,0.645102448996326 -4185.0,0.6448796769775283 -4186.0,0.6446569818881741 -4187.0,0.6444343637016975 -4188.0,0.6442118223915416 -4189.0,0.643989357931159 -4190.0,0.6437669702940113 -4191.0,0.6435446594535692 -4192.0,0.6433224253833126 -4193.0,0.6431002680567308 -4194.0,0.6428781874473218 -4195.0,0.6426561835285933 -4196.0,0.6424342562740616 -4197.0,0.6422124056572525 -4198.0,0.6419906316517007 -4199.0,0.6417689342309504 -4200.0,0.6415473133685545 -4201.0,0.6413257690380755 -4202.0,0.6411043012130845 -4203.0,0.6408829098671622 -4204.0,0.6406615949738982 -4205.0,0.6404403565068911 -4206.0,0.640219194439749 -4207.0,0.6399981087460886 -4208.0,0.6397770993995362 -4209.0,0.6395561663737269 -4210.0,0.6393353096423051 -4211.0,0.6391145291789241 -4212.0,0.6388938249572464 -4213.0,0.6386731969509438 -4214.0,0.6384526451336967 -4215.0,0.6382321694791949 -4216.0,0.6380117699611375 -4217.0,0.6377914465532323 -4218.0,0.6375711992291963 -4219.0,0.6373510279627557 -4220.0,0.6371309327276454 -4221.0,0.63691091349761 -4222.0,0.6366909702464025 -4223.0,0.6364711029477856 -4224.0,0.6362513115755305 -4225.0,0.6360315961034178 -4226.0,0.6358119565052369 -4227.0,0.6355923927547866 -4228.0,0.6353729048258744 -4229.0,0.635153492692317 -4230.0,0.6349341563279401 -4231.0,0.6347148957065787 -4232.0,0.6344957108020763 -4233.0,0.634276601588286 -4234.0,0.6340575680390695 -4235.0,0.6338386101282978 -4236.0,0.6336197278298508 -4237.0,0.6334009211176173 -4238.0,0.6331821899654954 -4239.0,0.6329635343473918 -4240.0,0.632744954237223 -4241.0,0.6325264496089136 -4242.0,0.6323080204363977 -4243.0,0.6320896666936182 -4244.0,0.6318713883545272 -4245.0,0.6316531853930857 -4246.0,0.6314350577832635 -4247.0,0.6312170054990398 -4248.0,0.6309990285144024 -4249.0,0.6307811268033483 -4250.0,0.6305633003398834 -4251.0,0.6303455490980225 -4252.0,0.6301278730517896 -4253.0,0.6299102721752176 -4254.0,0.6296927464423481 -4255.0,0.6294752958272319 -4256.0,0.6292579203039289 -4257.0,0.6290406198465076 -4258.0,0.6288233944290457 -4259.0,0.6286062440256298 -4260.0,0.6283891686103554 -4261.0,0.6281721681573271 -4262.0,0.6279552426406583 -4263.0,0.6277383920344712 -4264.0,0.6275216163128973 -4265.0,0.6273049154500767 -4266.0,0.6270882894201586 -4267.0,0.6268717381973011 -4268.0,0.6266552617556714 -4269.0,0.6264388600694452 -4270.0,0.6262225331128074 -4271.0,0.6260062808599518 -4272.0,0.6257901032850812 -4273.0,0.625574000362407 -4274.0,0.6253579720661497 -4275.0,0.625142018370539 -4276.0,0.6249261392498128 -4277.0,0.6247103346782185 -4278.0,0.624494604630012 -4279.0,0.6242789490794587 -4280.0,0.6240633680008321 -4281.0,0.6238478613684151 -4282.0,0.6236324291564992 -4283.0,0.6234170713393851 -4284.0,0.6232017878913819 -4285.0,0.6229865787868082 -4286.0,0.6227714439999907 -4287.0,0.6225563835052659 -4288.0,0.6223413972769782 -4289.0,0.6221264852894817 -4290.0,0.6219116475171387 -4291.0,0.6216968839343207 -4292.0,0.6214821945154079 -4293.0,0.6212675792347894 -4294.0,0.6210530380668633 -4295.0,0.6208385709860365 -4296.0,0.6206241779667242 -4297.0,0.6204098589833513 -4298.0,0.6201956140103511 -4299.0,0.6199814430221654 -4300.0,0.6197673459932455 -4301.0,0.6195533228980509 -4302.0,0.6193393737110504 -4303.0,0.6191254984067215 -4304.0,0.6189116969595502 -4305.0,0.6186979693440317 -4306.0,0.6184843155346698 -4307.0,0.6182707355059771 -4308.0,0.6180572292324752 -4309.0,0.6178437966886943 -4310.0,0.6176304378491734 -4311.0,0.6174171526884604 -4312.0,0.617203941181112 -4313.0,0.6169908033016934 -4314.0,0.6167777390247791 -4315.0,0.6165647483249518 -4316.0,0.6163518311768035 -4317.0,0.6161389875549347 -4318.0,0.6159262174339545 -4319.0,0.6157135207884812 -4320.0,0.6155008975931415 -4321.0,0.6152883478225711 -4322.0,0.6150758714514143 -4323.0,0.6148634684543243 -4324.0,0.6146511388059629 -4325.0,0.6144388824810006 -4326.0,0.6142266994541171 -4327.0,0.6140145897000002 -4328.0,0.613802553193347 -4329.0,0.6135905899088628 -4330.0,0.6133786998212623 -4331.0,0.6131668829052681 -4332.0,0.6129551391356123 -4333.0,0.6127434684870354 -4334.0,0.6125318709342865 -4335.0,0.6123203464521237 -4336.0,0.6121088950153136 -4337.0,0.6118975165986316 -4338.0,0.6116862111768617 -4339.0,0.6114749787247968 -4340.0,0.6112638192172385 -4341.0,0.6110527326289968 -4342.0,0.6108417189348908 -4343.0,0.610630778109748 -4344.0,0.6104199101284047 -4345.0,0.610209114965706 -4346.0,0.6099983925965053 -4347.0,0.6097877429956653 -4348.0,0.6095771661380568 -4349.0,0.6093666619985596 -4350.0,0.609156230552062 -4351.0,0.6089458717734613 -4352.0,0.608735585637663 -4353.0,0.6085253721195816 -4354.0,0.6083152311941401 -4355.0,0.6081051628362703 -4356.0,0.6078951670209125 -4357.0,0.6076852437230157 -4358.0,0.6074753929175377 -4359.0,0.6072656145794448 -4360.0,0.607055908683712 -4361.0,0.6068462752053227 -4362.0,0.6066367141192694 -4363.0,0.6064272254005529 -4364.0,0.6062178090241828 -4365.0,0.6060084649651771 -4366.0,0.6057991931985628 -4367.0,0.605589993699375 -4368.0,0.605380866442658 -4369.0,0.6051718114034642 -4370.0,0.6049628285568551 -4371.0,0.6047539178779004 -4372.0,0.6045450793416788 -4373.0,0.6043363129232772 -4374.0,0.6041276185977912 -4375.0,0.6039189963403252 -4376.0,0.6037104461259921 -4377.0,0.6035019679299134 -4378.0,0.6032935617272192 -4379.0,0.603085227493048 -4380.0,0.6028769652025472 -4381.0,0.6026687748308726 -4382.0,0.6024606563531886 -4383.0,0.6022526097446681 -4384.0,0.6020446349804928 -4385.0,0.6018367320358526 -4386.0,0.6016289008859464 -4387.0,0.6014211415059815 -4388.0,0.6012134538711735 -4389.0,0.601005837956747 -4390.0,0.6007982937379348 -4391.0,0.6005908211899784 -4392.0,0.600383420288128 -4393.0,0.6001760910076419 -4394.0,0.5999688333237874 -4395.0,0.5997616472118401 -4396.0,0.5995545326470842 -4397.0,0.5993474896048127 -4398.0,0.5991405180603265 -4399.0,0.5989336179889357 -4400.0,0.5987267893659585 -4401.0,0.5985200321667217 -4402.0,0.5983133463665607 -4403.0,0.5981067319408195 -4404.0,0.5979001888648504 -4405.0,0.5976937171140143 -4406.0,0.5974873166636807 -4407.0,0.5972809874892275 -4408.0,0.5970747295660412 -4409.0,0.5968685428695166 -4410.0,0.5966624273750573 -4411.0,0.596456383058075 -4412.0,0.5962504098939903 -4413.0,0.596044507858232 -4414.0,0.5958386769262375 -4415.0,0.5956329170734528 -4416.0,0.5954272282753321 -4417.0,0.5952216105073382 -4418.0,0.5950160637449426 -4419.0,0.594810587963625 -4420.0,0.5946051831388734 -4421.0,0.5943998492461848 -4422.0,0.5941945862610643 -4423.0,0.5939893941590254 -4424.0,0.5937842729155902 -4425.0,0.5935792225062894 -4426.0,0.5933742429066617 -4427.0,0.5931693340922549 -4428.0,0.5929644960386246 -4429.0,0.5927597287213351 -4430.0,0.5925550321159593 -4431.0,0.5923504061980782 -4432.0,0.5921458509432816 -4433.0,0.5919413663271675 -4434.0,0.5917369523253424 -4435.0,0.5915326089134212 -4436.0,0.5913283360670271 -4437.0,0.591124133761792 -4438.0,0.5909200019733558 -4439.0,0.5907159406773674 -4440.0,0.5905119498494836 -4441.0,0.5903080294653698 -4442.0,0.5901041795006998 -4443.0,0.5899003999311557 -4444.0,0.5896966907324283 -4445.0,0.5894930518802163 -4446.0,0.5892894833502272 -4447.0,0.5890859851181768 -4448.0,0.5888825571597892 -4449.0,0.5886791994507969 -4450.0,0.5884759119669409 -4451.0,0.5882726946839705 -4452.0,0.5880695475776431 -4453.0,0.587866470623725 -4454.0,0.5876634637979905 -4455.0,0.5874605270762224 -4456.0,0.5872576604342118 -4457.0,0.5870548638477583 -4458.0,0.5868521372926695 -4459.0,0.5866494807447619 -4460.0,0.5864468941798597 -4461.0,0.5862443775737962 -4462.0,0.5860419309024124 -4463.0,0.5858395541415579 -4464.0,0.5856372472670907 -4465.0,0.5854350102548769 -4466.0,0.5852328430807913 -4467.0,0.5850307457207168 -4468.0,0.5848287181505445 -4469.0,0.5846267603461742 -4470.0,0.5844248722835137 -4471.0,0.5842230539384792 -4472.0,0.5840213052869953 -4473.0,0.5838196263049947 -4474.0,0.5836180169684189 -4475.0,0.583416477253217 -4476.0,0.583215007135347 -4477.0,0.583013606590775 -4478.0,0.5828122755954753 -4479.0,0.5826110141254306 -4480.0,0.5824098221566318 -4481.0,0.5822086996650784 -4482.0,0.5820076466267777 -4483.0,0.5818066630177456 -4484.0,0.5816057488140063 -4485.0,0.5814049039915922 -4486.0,0.5812041285265439 -4487.0,0.5810034223949103 -4488.0,0.5808027855727488 -4489.0,0.5806022180361248 -4490.0,0.580401719761112 -4491.0,0.5802012907237925 -4492.0,0.5800009309002565 -4493.0,0.5798006402666026 -4494.0,0.5796004187989375 -4495.0,0.5794002664733765 -4496.0,0.5792001832660425 -4497.0,0.5790001691530673 -4498.0,0.5788002241105906 -4499.0,0.5786003481147605 -4500.0,0.578400541141733 -4501.0,0.5782008031676729 -4502.0,0.5780011341687527 -4503.0,0.5778015341211533 -4504.0,0.5776020030010641 -4505.0,0.5774025407846824 -4506.0,0.5772031474482138 -4507.0,0.577003822967872 -4508.0,0.5768045673198793 -4509.0,0.5766053804804656 -4510.0,0.5764062624258697 -4511.0,0.5762072131323381 -4512.0,0.5760082325761258 -4513.0,0.5758093207334957 -4514.0,0.5756104775807191 -4515.0,0.5754117030940756 -4516.0,0.5752129972498528 -4517.0,0.5750143600243465 -4518.0,0.5748157913938606 -4519.0,0.5746172913347076 -4520.0,0.5744188598232076 -4521.0,0.5742204968356894 -4522.0,0.5740222023484896 -4523.0,0.5738239763379531 -4524.0,0.5736258187804332 -4525.0,0.5734277296522908 -4526.0,0.5732297089298957 -4527.0,0.5730317565896251 -4528.0,0.5728338726078649 -4529.0,0.572636056961009 -4530.0,0.5724383096254595 -4531.0,0.5722406305776264 -4532.0,0.5720430197939282 -4533.0,0.5718454772507913 -4534.0,0.5716480029246503 -4535.0,0.571450596791948 -4536.0,0.5712532588291352 -4537.0,0.5710559890126711 -4538.0,0.5708587873190227 -4539.0,0.5706616537246653 -4540.0,0.5704645882060823 -4541.0,0.5702675907397652 -4542.0,0.5700706613022136 -4543.0,0.5698737998699355 -4544.0,0.5696770064194464 -4545.0,0.5694802809272707 -4546.0,0.5692836233699401 -4547.0,0.5690870337239948 -4548.0,0.5688905119659834 -4549.0,0.5686940580724621 -4550.0,0.5684976720199953 -4551.0,0.5683013537851558 -4552.0,0.568105103344524 -4553.0,0.5679089206746889 -4554.0,0.5677128057522473 -4555.0,0.5675167585538038 -4556.0,0.5673207790559718 -4557.0,0.5671248672353721 -4558.0,0.5669290230686341 -4559.0,0.5667332465323949 -4560.0,0.5665375376032997 -4561.0,0.5663418962580019 -4562.0,0.566146322473163 -4563.0,0.5659508162254524 -4564.0,0.5657553774915477 -4565.0,0.5655600062481343 -4566.0,0.565364702471906 -4567.0,0.5651694661395644 -4568.0,0.5649742972278193 -4569.0,0.5647791957133885 -4570.0,0.5645841615729978 -4571.0,0.564389194783381 -4572.0,0.56419429532128 -4573.0,0.5639994631634446 -4574.0,0.5638046982866328 -4575.0,0.5636100006676108 -4576.0,0.5634153702831524 -4577.0,0.5632208071100395 -4578.0,0.5630263111250623 -4579.0,0.5628318823050189 -4580.0,0.5626375206267151 -4581.0,0.5624432260669653 -4582.0,0.5622489986025914 -4583.0,0.5620548382104233 -4584.0,0.5618607448672995 -4585.0,0.5616667185500657 -4586.0,0.5614727592355762 -4587.0,0.561278866900693 -4588.0,0.5610850415222861 -4589.0,0.5608912830772337 -4590.0,0.5606975915424216 -4591.0,0.560503966894744 -4592.0,0.5603104091111029 -4593.0,0.5601169181684081 -4594.0,0.5599234940435777 -4595.0,0.5597301367135374 -4596.0,0.5595368461552215 -4597.0,0.5593436223455714 -4598.0,0.5591504652615371 -4599.0,0.5589573748800765 -4600.0,0.558764351178155 -4601.0,0.5585713941327465 -4602.0,0.5583785037208326 -4603.0,0.5581856799194029 -4604.0,0.5579929227054549 -4605.0,0.557800232055994 -4606.0,0.5576076079480338 -4607.0,0.5574150503585955 -4608.0,0.5572225592647083 -4609.0,0.5570301346434097 -4610.0,0.5568377764717445 -4611.0,0.5566454847267661 -4612.0,0.5564532593855352 -4613.0,0.556261100425121 -4614.0,0.5560690078226 -4615.0,0.5558769815550574 -4616.0,0.5556850215995854 -4617.0,0.555493127933285 -4618.0,0.5553013005332643 -4619.0,0.55510953937664 -4620.0,0.5549178444405363 -4621.0,0.5547262157020851 -4622.0,0.554534653138427 -4623.0,0.5543431567267095 -4624.0,0.5541517264440888 -4625.0,0.5539603622677287 -4626.0,0.5537690641748005 -4627.0,0.5535778321424841 -4628.0,0.5533866661479667 -4629.0,0.5531955661684437 -4630.0,0.5530045321811181 -4631.0,0.5528135641632012 -4632.0,0.5526226620919116 -4633.0,0.5524318259444764 -4634.0,0.5522410556981299 -4635.0,0.5520503513301148 -4636.0,0.5518597128176815 -4637.0,0.5516691401380882 -4638.0,0.5514786332686008 -4639.0,0.5512881921864935 -4640.0,0.5510978168690478 -4641.0,0.5509075072935534 -4642.0,0.5507172634373076 -4643.0,0.5505270852776162 -4644.0,0.5503369727917918 -4645.0,0.5501469259571556 -4646.0,0.5499569447510364 -4647.0,0.5497670291507708 -4648.0,0.5495771791337032 -4649.0,0.549387394677186 -4650.0,0.5491976757585791 -4651.0,0.5490080223552507 -4652.0,0.5488184344445762 -4653.0,0.5486289120039394 -4654.0,0.5484394550107315 -4655.0,0.5482500634423518 -4656.0,0.5480607372762073 -4657.0,0.5478714764897125 -4658.0,0.5476822810602902 -4659.0,0.5474931509653707 -4660.0,0.5473040861823921 -4661.0,0.5471150866888004 -4662.0,0.5469261524620495 -4663.0,0.5467372834796006 -4664.0,0.5465484797189233 -4665.0,0.5463597411574944 -4666.0,0.5461710677727991 -4667.0,0.5459824595423298 -4668.0,0.545793916443587 -4669.0,0.5456054384540788 -4670.0,0.5454170255513213 -4671.0,0.5452286777128381 -4672.0,0.5450403949161607 -4673.0,0.5448521771388285 -4674.0,0.5446640243583882 -4675.0,0.5444759365523947 -4676.0,0.5442879136984105 -4677.0,0.5440999557740058 -4678.0,0.5439120627567586 -4679.0,0.5437242346242547 -4680.0,0.5435364713540873 -4681.0,0.5433487729238581 -4682.0,0.5431611393111756 -4683.0,0.5429735704936568 -4684.0,0.5427860664489259 -4685.0,0.542598627154615 -4686.0,0.5424112525883642 -4687.0,0.5422239427278209 -4688.0,0.5420366975506404 -4689.0,0.5418495170344858 -4690.0,0.5416624011570277 -4691.0,0.5414753498959447 -4692.0,0.5412883632289228 -4693.0,0.541101441133656 -4694.0,0.5409145835878457 -4695.0,0.5407277905692013 -4696.0,0.5405410620554396 -4697.0,0.5403543980242854 -4698.0,0.540167798453471 -4699.0,0.5399812633207364 -4700.0,0.5397947926038292 -4701.0,0.5396083862805051 -4702.0,0.539422044328527 -4703.0,0.5392357667256658 -4704.0,0.5390495534496996 -4705.0,0.5388634044784149 -4706.0,0.5386773197896052 -4707.0,0.5384912993610722 -4708.0,0.5383053431706248 -4709.0,0.53811945119608 -4710.0,0.537933623415262 -4711.0,0.537747859806003 -4712.0,0.5375621603461429 -4713.0,0.537376525013529 -4714.0,0.5371909537860162 -4715.0,0.5370054466414674 -4716.0,0.536820003557753 -4717.0,0.5366346245127508 -4718.0,0.5364493094843464 -4719.0,0.5362640584504333 -4720.0,0.5360788713889124 -4721.0,0.5358937482776921 -4722.0,0.5357086890946886 -4723.0,0.5355236938178256 -4724.0,0.5353387624250346 -4725.0,0.5351538948942547 -4726.0,0.5349690912034324 -4727.0,0.5347843513305222 -4728.0,0.5345996752534856 -4729.0,0.5344150629502924 -4730.0,0.5342305143989197 -4731.0,0.534046029577352 -4732.0,0.5338616084635818 -4733.0,0.5336772510356089 -4734.0,0.5334929572714409 -4735.0,0.5333087271490927 -4736.0,0.5331245606465872 -4737.0,0.5329404577419545 -4738.0,0.5327564184132327 -4739.0,0.532572442638467 -4740.0,0.5323885303957107 -4741.0,0.5322046816630241 -4742.0,0.5320208964184757 -4743.0,0.531837174640141 -4744.0,0.5316535163061035 -4745.0,0.5314699213944539 -4746.0,0.5312863898832909 -4747.0,0.5311029217507205 -4748.0,0.5309195169748561 -4749.0,0.530736175533819 -4750.0,0.5305528974057379 -4751.0,0.530369682568749 -4752.0,0.5301865310009961 -4753.0,0.5300034426806306 -4754.0,0.5298204175858114 -4755.0,0.5296374556947049 -4756.0,0.529454556985485 -4757.0,0.5292717214363335 -4758.0,0.5290889490254392 -4759.0,0.5289062397309988 -4760.0,0.5287235935312163 -4761.0,0.5285410104043036 -4762.0,0.5283584903284795 -4763.0,0.5281760332819708 -4764.0,0.5279936392430119 -4765.0,0.5278113081898443 -4766.0,0.5276290401007174 -4767.0,0.5274468349538879 -4768.0,0.52726469272762 -4769.0,0.5270826134001854 -4770.0,0.5269005969498635 -4771.0,0.526718643354941 -4772.0,0.5265367525937121 -4773.0,0.5263549246444787 -4774.0,0.52617315948555 -4775.0,0.5259914570952426 -4776.0,0.525809817451881 -4777.0,0.5256282405337968 -4778.0,0.5254467263193291 -4779.0,0.5252652747868246 -4780.0,0.5250838859146376 -4781.0,0.5249025596811295 -4782.0,0.5247212960646697 -4783.0,0.5245400950436345 -4784.0,0.5243589565964081 -4785.0,0.5241778807013819 -4786.0,0.5239968673369549 -4787.0,0.5238159164815336 -4788.0,0.5236350281135318 -4789.0,0.5234542022113708 -4790.0,0.5232734387534795 -4791.0,0.5230927377182941 -4792.0,0.5229120990842583 -4793.0,0.522731522829823 -4794.0,0.5225510089334472 -4795.0,0.5223705573735965 -4796.0,0.5221901681287446 -4797.0,0.5220098411773724 -4798.0,0.521829576497968 -4799.0,0.5216493740690273 -4800.0,0.5214692338690534 -4801.0,0.5212891558765569 -4802.0,0.5211091400700557 -4803.0,0.5209291864280754 -4804.0,0.5207492949291488 -4805.0,0.520569465551816 -4806.0,0.520389698274625 -4807.0,0.5202099930761306 -4808.0,0.5200303499348953 -4809.0,0.5198507688294891 -4810.0,0.5196712497384891 -4811.0,0.5194917926404803 -4812.0,0.5193123975140543 -4813.0,0.519133064337811 -4814.0,0.5189537930903572 -4815.0,0.5187745837503069 -4816.0,0.518595436296282 -4817.0,0.5184163507069113 -4818.0,0.5182373269608314 -4819.0,0.5180583650366859 -4820.0,0.517879464913126 -4821.0,0.5177006265688103 -4822.0,0.5175218499824046 -4823.0,0.5173431351325821 -4824.0,0.5171644819980237 -4825.0,0.516985890557417 -4826.0,0.5168073607894575 -4827.0,0.5166288926728481 -4828.0,0.5164504861862986 -4829.0,0.5162721413085265 -4830.0,0.5160938580182566 -4831.0,0.5159156362942208 -4832.0,0.5157374761151587 -4833.0,0.5155593774598173 -4834.0,0.5153813403069504 -4835.0,0.5152033646353196 -4836.0,0.5150254504236936 -4837.0,0.5148475976508488 -4838.0,0.5146698062955684 -4839.0,0.5144920763366432 -4840.0,0.5143144077528713 -4841.0,0.5141368005230583 -4842.0,0.513959254626017 -4843.0,0.5137817700405671 -4844.0,0.5136043467455363 -4845.0,0.5134269847197593 -4846.0,0.5132496839420779 -4847.0,0.5130724443913416 -4848.0,0.5128952660464069 -4849.0,0.5127181488861378 -4850.0,0.5125410928894053 -4851.0,0.5123640980350882 -4852.0,0.5121871643020722 -4853.0,0.5120102916692504 -4854.0,0.5118334801155231 -4855.0,0.511656729619798 -4856.0,0.5114800401609901 -4857.0,0.5113034117180217 -4858.0,0.5111268442698222 -4859.0,0.5109503377953285 -4860.0,0.5107738922734845 -4861.0,0.5105975076832416 -4862.0,0.5104211840035585 -4863.0,0.5102449212134009 -4864.0,0.5100687192917421 -4865.0,0.5098925782175625 -4866.0,0.5097164979698496 -4867.0,0.5095404785275984 -4868.0,0.5093645198698111 -4869.0,0.5091886219754971 -4870.0,0.509012784823673 -4871.0,0.5088370083933628 -4872.0,0.5086612926635975 -4873.0,0.5084856376134157 -4874.0,0.5083100432218629 -4875.0,0.508134509467992 -4876.0,0.507959036330863 -4877.0,0.5077836237895436 -4878.0,0.5076082718231079 -4879.0,0.5074329804106379 -4880.0,0.5072577495312226 -4881.0,0.5070825791639583 -4882.0,0.5069074692879483 -4883.0,0.5067324198823034 -4884.0,0.5065574309261415 -4885.0,0.5063825023985876 -4886.0,0.506207634278774 -4887.0,0.5060328265458403 -4888.0,0.505858079178933 -4889.0,0.5056833921572063 -4890.0,0.5055087654598212 -4891.0,0.5053341990659459 -4892.0,0.505159692954756 -4893.0,0.5049852471054344 -4894.0,0.5048108614971705 -4895.0,0.5046365361091617 -4896.0,0.5044622709206122 -4897.0,0.5042880659107335 -4898.0,0.5041139210587441 -4899.0,0.5039398363438697 -4900.0,0.5037658117453435 -4901.0,0.5035918472424056 -4902.0,0.5034179428143031 -4903.0,0.5032440984402906 -4904.0,0.5030703140996298 -4905.0,0.5028965897715894 -4906.0,0.5027229254354453 -4907.0,0.5025493210704807 -4908.0,0.5023757766559858 -4909.0,0.5022022921712581 -4910.0,0.5020288675956022 -4911.0,0.5018555029083297 -4912.0,0.5016821980887596 -4913.0,0.5015089531162177 -4914.0,0.5013357679700373 -4915.0,0.5011626426295586 -4916.0,0.5009895770741289 -4917.0,0.5008165712831031 -4918.0,0.5006436252358425 -4919.0,0.500470738911716 -4920.0,0.5002979122900997 -4921.0,0.5001251453503763 -4922.0,0.49995243807193634 -4923.0,0.49977979043417686 -4924.0,0.4996072024165023 -4925.0,0.4994346739983242 -4926.0,0.4992622051590611 -4927.0,0.4990897958781389 -4928.0,0.49891744613499023 -4929.0,0.49874515590905516 -4930.0,0.4985729251797807 -4931.0,0.4984007539266209 -4932.0,0.4982286421290371 -4933.0,0.4980565897664975 -4934.0,0.49788459681847763 -4935.0,0.49771266326445984 -4936.0,0.49754078908393384 -4937.0,0.49736897425639626 -4938.0,0.4971972187613508 -4939.0,0.49702552257830834 -4940.0,0.4968538856867867 -4941.0,0.4966823080663109 -4942.0,0.496510789696413 -4943.0,0.4963393305566321 -4944.0,0.4961679306265144 -4945.0,0.49599658988561296 -4946.0,0.4958253083134883 -4947.0,0.4956540858897077 -4948.0,0.4954829225938456 -4949.0,0.4953118184054834 -4950.0,0.49514077330420964 -4951.0,0.49496978726961993 -4952.0,0.49479886028131687 -4953.0,0.4946279923189101 -4954.0,0.4944571833620163 -4955.0,0.49428643339025924 -4956.0,0.49411574238326966 -4957.0,0.4939451103206854 -4958.0,0.49377453718215125 -4959.0,0.49360402294731914 -4960.0,0.49343356759584794 -4961.0,0.4932631711074036 -4962.0,0.493092833461659 -4963.0,0.4929225546382941 -4964.0,0.49275233461699586 -4965.0,0.4925821733774584 -4966.0,0.49241207089938266 -4967.0,0.4922420271624766 -4968.0,0.49207204214645534 -4969.0,0.4919021158310408 -4970.0,0.49173224819596206 -4971.0,0.49156243922095516 -4972.0,0.49139268888576315 -4973.0,0.49122299717013596 -4974.0,0.4910533640538307 -4975.0,0.4908837895166113 -4976.0,0.49071427353824887 -4977.0,0.49054481609852124 -4978.0,0.4903754171772135 -4979.0,0.49020607675411754 -4980.0,0.49003679480903223 -4981.0,0.48986757132176356 -4982.0,0.48969840627212435 -4983.0,0.4895292996399344 -4984.0,0.48936025140502065 -4985.0,0.4891912615472168 -4986.0,0.4890223300463636 -4987.0,0.48885345688230875 -4988.0,0.4886846420349069 -4989.0,0.4885158854840197 -4990.0,0.4883471872095157 -4991.0,0.48817854719127046 -4992.0,0.4880099654091664 -4993.0,0.48784144184309297 -4994.0,0.48767297647294655 -4995.0,0.48750456927863045 -4996.0,0.4873362202400549 -4997.0,0.4871679293371371 -4998.0,0.48699969654980113 -4999.0,0.4868315218579781 -5000.0,0.48666340524160606 -5001.0,0.48649534668062977 -5002.0,0.4863273461550011 -5003.0,0.4861594036446789 -5004.0,0.4859915191296288 -5005.0,0.48582369258982344 -5006.0,0.48565592400524227 -5007.0,0.4854882133558718 -5008.0,0.4853205606217053 -5009.0,0.48515296578274303 -5010.0,0.4849854288189922 -5011.0,0.4848179497104668 -5012.0,0.4846505284371879 -5013.0,0.48448316497918326 -5014.0,0.4843158593164877 -5015.0,0.48414861142914284 -5016.0,0.4839814212971972 -5017.0,0.48381428890070627 -5018.0,0.4836472142197324 -5019.0,0.4834801972343447 -5020.0,0.48331323792461933 -5021.0,0.48314633627063924 -5022.0,0.48297949225249426 -5023.0,0.4828127058502812 -5024.0,0.4826459770441036 -5025.0,0.48247930581407195 -5026.0,0.48231269214030353 -5027.0,0.4821461360029226 -5028.0,0.4819796373820602 -5029.0,0.4818131962578543 -5030.0,0.4816468126104496 -5031.0,0.4814804864199978 -5032.0,0.48131421766665744 -5033.0,0.4811480063305938 -5034.0,0.48098185239197916 -5035.0,0.48081575583099245 -5036.0,0.48064971662781963 -5037.0,0.48048373476265344 -5038.0,0.4803178102156935 -5039.0,0.4801519429671461 -5040.0,0.4799861329972245 -5041.0,0.4798203802861489 -5042.0,0.47965468481414614 -5043.0,0.4794890465614499 -5044.0,0.4793234655083009 -5045.0,0.47915794163494635 -5046.0,0.4789924749216406 -5047.0,0.4788270653486446 -5048.0,0.47866171289622617 -5049.0,0.47849641754466005 -5050.0,0.47833117927422764 -5051.0,0.4781659980652173 -5052.0,0.478000873897924 -5053.0,0.47783580675264975 -5054.0,0.4776707966097032 -5055.0,0.4775058434493998 -5056.0,0.47734094725206183 -5057.0,0.47717610799801846 -5058.0,0.4770113256676055 -5059.0,0.4768466002411656 -5060.0,0.4766819316990483 -5061.0,0.4765173200216099 -5062.0,0.47635276518921327 -5063.0,0.4761882671822283 -5064.0,0.4760238259810315 -5065.0,0.47585944156600635 -5066.0,0.47569511391754293 -5067.0,0.4755308430160381 -5068.0,0.4753666288418956 -5069.0,0.47520247137552596 -5070.0,0.4750383705973462 -5071.0,0.47487432648778044 -5072.0,0.47471033902725934 -5073.0,0.47454640819622046 -5074.0,0.47438253397510793 -5075.0,0.4742187163443729 -5076.0,0.474054955284473 -5077.0,0.4738912507758728 -5078.0,0.47372760279904347 -5079.0,0.4735640113344631 -5080.0,0.47340047636261634 -5081.0,0.4732369978639947 -5082.0,0.47307357581909637 -5083.0,0.47291021020842633 -5084.0,0.4727469010124962 -5085.0,0.47258364821182447 -5086.0,0.47242045178693615 -5087.0,0.47225731171836316 -5088.0,0.4720942279866441 -5089.0,0.47193120057232424 -5090.0,0.4717682294559556 -5091.0,0.4716053146180969 -5092.0,0.4714424560393136 -5093.0,0.4712796537001779 -5094.0,0.47111690758126856 -5095.0,0.4709542176631713 -5096.0,0.4707915839264783 -5097.0,0.4706290063517885 -5098.0,0.4704664849197077 -5099.0,0.4703040196108483 -5100.0,0.4701416104058292 -5101.0,0.4699792572852763 -5102.0,0.46981696022982206 -5103.0,0.46965471922010554 -5104.0,0.4694925342367726 -5105.0,0.4693304052604758 -5106.0,0.4691683322718743 -5107.0,0.469006315251634 -5108.0,0.4688443541804274 -5109.0,0.46868244903893375 -5110.0,0.468520599807839 -5111.0,0.4683588064678356 -5112.0,0.46819706899962293 -5113.0,0.46803538738390676 -5114.0,0.4678737616013997 -5115.0,0.467712191632821 -5116.0,0.4675506774588965 -5117.0,0.46738921906035874 -5118.0,0.467227816417947 -5119.0,0.467066469512407 -5120.0,0.46690517832449124 -5121.0,0.46674394283495896 -5122.0,0.46658276302457585 -5123.0,0.46642163887411436 -5124.0,0.4662605703643536 -5125.0,0.4660995574760792 -5126.0,0.4659386001900835 -5127.0,0.46577769848716544 -5128.0,0.46561685234813077 -5129.0,0.46545606175379156 -5130.0,0.46529532668496676 -5131.0,0.46513464712248176 -5132.0,0.4649740230471688 -5133.0,0.46481345443986644 -5134.0,0.4646529412814201 -5135.0,0.4644924835526817 -5136.0,0.4643320812345098 -5137.0,0.46417173430776965 -5138.0,0.46401144275333295 -5139.0,0.4638512065520781 -5140.0,0.4636910256848902 -5141.0,0.46353090013266063 -5142.0,0.46337082987628775 -5143.0,0.46321081489667626 -5144.0,0.46305085517473754 -5145.0,0.46289095069138964 -5146.0,0.462731101427557 -5147.0,0.4625713073641709 -5148.0,0.46241156848216897 -5149.0,0.46225188476249557 -5150.0,0.4620922561861016 -5151.0,0.46193268273394456 -5152.0,0.46177316438698846 -5153.0,0.46161370112620387 -5154.0,0.46145429293256807 -5155.0,0.4612949397870648 -5156.0,0.4611356416706844 -5157.0,0.4609763985644238 -5158.0,0.46081721044928636 -5159.0,0.4606580773062822 -5160.0,0.46049899911642783 -5161.0,0.46033997586074643 -5162.0,0.46018100752026764 -5163.0,0.46002209407602773 -5164.0,0.45986323550906943 -5165.0,0.4597044318004422 -5166.0,0.45954568293120174 -5167.0,0.4593869888824106 -5168.0,0.45922834963513764 -5169.0,0.4590697651704585 -5170.0,0.45891123546945506 -5171.0,0.4587527605132159 -5172.0,0.45859434028283624 -5173.0,0.4584359747594175 -5174.0,0.458277663924068 -5175.0,0.4581194077579024 -5176.0,0.4579612062420418 -5177.0,0.45780305935761395 -5178.0,0.45764496708575314 -5179.0,0.45748692940760005 -5180.0,0.45732894630430193 -5181.0,0.4571710177570126 -5182.0,0.4570131437468922 -5183.0,0.4568553242551077 -5184.0,0.4566975592628323 -5185.0,0.4565398487512458 -5186.0,0.45638219270153446 -5187.0,0.45622459109489105 -5188.0,0.4560670439125149 -5189.0,0.45590955113561177 -5190.0,0.45575211274539384 -5191.0,0.45559472872308 -5192.0,0.45543739904989533 -5193.0,0.45528012370707166 -5194.0,0.45512290267584715 -5195.0,0.4549657359374665 -5196.0,0.4548086234731808 -5197.0,0.45465156526424777 -5198.0,0.45449456129193144 -5199.0,0.4543376115375024 -5200.0,0.4541807159822377 -5201.0,0.45402387460742083 -5202.0,0.4538670873943418 -5203.0,0.45371035432429696 -5204.0,0.4535536753785892 -5205.0,0.45339705053852797 -5206.0,0.453240479785429 -5207.0,0.4530839631006145 -5208.0,0.45292750046541325 -5209.0,0.4527710918611604 -5210.0,0.45261473726919743 -5211.0,0.45245843667087243 -5212.0,0.45230219004753996 -5213.0,0.4521459973805609 -5214.0,0.45198985865130253 -5215.0,0.4518337738411387 -5216.0,0.4516777429314497 -5217.0,0.45152176590362203 -5218.0,0.45136584273904884 -5219.0,0.45120997341912966 -5220.0,0.45105415792527037 -5221.0,0.45089839623888334 -5222.0,0.4507426883413873 -5223.0,0.4505870342142075 -5224.0,0.4504314338387755 -5225.0,0.45027588719652933 -5226.0,0.45012039426891337 -5227.0,0.4499649550373785 -5228.0,0.44980956948338185 -5229.0,0.4496542375883872 -5230.0,0.44949895933386447 -5231.0,0.4493437347012902 -5232.0,0.4491885636721471 -5233.0,0.4490334462279245 -5234.0,0.448878382350118 -5235.0,0.4487233720202296 -5236.0,0.44856841521976765 -5237.0,0.44841351193024703 -5238.0,0.4482586621331888 -5239.0,0.44810386581012057 -5240.0,0.4479491229425763 -5241.0,0.44779443351209625 -5242.0,0.4476397975002271 -5243.0,0.44748521488852183 -5244.0,0.44733068565854 -5245.0,0.4471762097918473 -5246.0,0.44702178727001596 -5247.0,0.44686741807462443 -5248.0,0.4467131021872576 -5249.0,0.44655883958950676 -5250.0,0.44640463026296945 -5251.0,0.4462504741892497 -5252.0,0.4460963713499577 -5253.0,0.4459423217267102 -5254.0,0.4457883253011302 -5255.0,0.445634382054847 -5256.0,0.4454804919694963 -5257.0,0.44532665502672014 -5258.0,0.4451728712081669 -5259.0,0.44501914049549135 -5260.0,0.4448654628703544 -5261.0,0.44471183831442357 -5262.0,0.4445582668093725 -5263.0,0.4444047483368812 -5264.0,0.44425128287863613 -5265.0,0.44409787041632987 -5266.0,0.44394451093166154 -5267.0,0.4437912044063364 -5268.0,0.44363795082206603 -5269.0,0.4434847501605686 -5270.0,0.4433316024035682 -5271.0,0.44317850753279553 -5272.0,0.44302546552998745 -5273.0,0.4428724763768872 -5274.0,0.4427195400552442 -5275.0,0.4425666565468143 -5276.0,0.4424138258333597 -5277.0,0.44226104789664866 -5278.0,0.442108322718456 -5279.0,0.4419556502805627 -5280.0,0.441803030564756 -5281.0,0.44165046355282955 -5282.0,0.44149794922658314 -5283.0,0.441345487567823 -5284.0,0.44119307855836154 -5285.0,0.44104072218001744 -5286.0,0.44088841841461573 -5287.0,0.4407361672439876 -5288.0,0.4405839686499708 -5289.0,0.44043182261440894 -5290.0,0.44027972911915225 -5291.0,0.44012768814605696 -5292.0,0.43997569967698574 -5293.0,0.43982376369380755 -5294.0,0.4396718801783974 -5295.0,0.4395200491126368 -5296.0,0.4393682704784134 -5297.0,0.4392165442576211 -5298.0,0.43906487043215997 -5299.0,0.4389132489839366 -5300.0,0.43876167989486353 -5301.0,0.4386101631468597 -5302.0,0.43845869872185034 -5303.0,0.43830728660176677 -5304.0,0.43815592676854664 -5305.0,0.43800461920413375 -5306.0,0.4378533638904784 -5307.0,0.4377021608095368 -5308.0,0.43755100994327156 -5309.0,0.43739991127365146 -5310.0,0.43724886478265157 -5311.0,0.4370978704522531 -5312.0,0.43694692826444365 -5313.0,0.4367960382012167 -5314.0,0.4366452002445723 -5315.0,0.43649441437651665 -5316.0,0.4363436805790619 -5317.0,0.4361929988342268 -5318.0,0.436042369124036 -5319.0,0.43589179143052054 -5320.0,0.43574126573571753 -5321.0,0.4355907920216704 -5322.0,0.4354403702704287 -5323.0,0.43529000046404825 -5324.0,0.435139682584591 -5325.0,0.43498941661412516 -5326.0,0.4348392025347251 -5327.0,0.4346890403284713 -5328.0,0.4345389299774505 -5329.0,0.43438887146375577 -5330.0,0.43423886476948614 -5331.0,0.43408890987674686 -5332.0,0.43393900676764946 -5333.0,0.43378915542431157 -5334.0,0.433639355828857 -5335.0,0.4334896079634158 -5336.0,0.4333399118101241 -5337.0,0.43319026735112426 -5338.0,0.4330406745685648 -5339.0,0.4328911334446004 -5340.0,0.4327416439613918 -5341.0,0.4325922061011061 -5342.0,0.4324428198459164 -5343.0,0.432293485178002 -5344.0,0.4321442020795484 -5345.0,0.43199497053274727 -5346.0,0.43184579051979627 -5347.0,0.4316966620228993 -5348.0,0.43154758502426654 -5349.0,0.43139855950611405 -5350.0,0.43124958545066433 -5351.0,0.4311006628401457 -5352.0,0.43095179165679287 -5353.0,0.43080297188284655 -5354.0,0.4306542035005537 -5355.0,0.43050548649216724 -5356.0,0.4303568208399464 -5357.0,0.4302082065261564 -5358.0,0.43005964353306864 -5359.0,0.42991113184296065 -5360.0,0.4297626714381161 -5361.0,0.42961426230082467 -5362.0,0.4294659044133822 -5363.0,0.42931759775809086 -5364.0,0.4291693423172586 -5365.0,0.4290211380731997 -5366.0,0.4288729850082344 -5367.0,0.42872488310468915 -5368.0,0.4285768323448965 -5369.0,0.4284288327111951 -5370.0,0.4282808841859296 -5371.0,0.4281329867514508 -5372.0,0.42798514039011565 -5373.0,0.4278373450842872 -5374.0,0.42768960081633456 -5375.0,0.4275419075686328 -5376.0,0.42739426532356334 -5377.0,0.4272466740635134 -5378.0,0.4270991337708765 -5379.0,0.42695164442805217 -5380.0,0.42680420601744595 -5381.0,0.42665681852146947 -5382.0,0.4265094819225406 -5383.0,0.42636219620308313 -5384.0,0.4262149613455269 -5385.0,0.4260677773323079 -5386.0,0.4259206441458681 -5387.0,0.42577356176865566 -5388.0,0.4256265301831247 -5389.0,0.4254795493717353 -5390.0,0.42533261931695393 -5391.0,0.4251857400012528 -5392.0,0.42503891140711025 -5393.0,0.4248921335170108 -5394.0,0.42474540631344476 -5395.0,0.4245987297789088 -5396.0,0.4244521038959053 -5397.0,0.4243055286469431 -5398.0,0.42415900401453666 -5399.0,0.42401252998120675 -5400.0,0.42386610652948 -5401.0,0.42371973364188925 -5402.0,0.4235734113009732 -5403.0,0.4234271394892768 -5404.0,0.4232809181893507 -5405.0,0.4231347473837519 -5406.0,0.42298862705504325 -5407.0,0.42284255718579367 -5408.0,0.4226965377585781 -5409.0,0.4225505687559774 -5410.0,0.4224046501605786 -5411.0,0.42225878195497474 -5412.0,0.4221129641217647 -5413.0,0.4219671966435535 -5414.0,0.4218214795029522 -5415.0,0.4216758126825777 -5416.0,0.42153019616505316 -5417.0,0.42138462993300746 -5418.0,0.42123911396907565 -5419.0,0.42109364825589873 -5420.0,0.4209482327761237 -5421.0,0.42080286751240364 -5422.0,0.42065755244739744 -5423.0,0.42051228756377007 -5424.0,0.42036707284419256 -5425.0,0.42022190827134176 -5426.0,0.42007679382790064 -5427.0,0.41993172949655816 -5428.0,0.4197867152600091 -5429.0,0.41964175110095436 -5430.0,0.41949683700210083 -5431.0,0.4193519729461612 -5432.0,0.41920715891585436 -5433.0,0.419062394893905 -5434.0,0.4189176808630438 -5435.0,0.4187730168060075 -5436.0,0.41862840270553864 -5437.0,0.4184838385443859 -5438.0,0.41833932430530374 -5439.0,0.41819485997105277 -5440.0,0.4180504455243994 -5441.0,0.41790608094811604 -5442.0,0.41776176622498107 -5443.0,0.4176175013377787 -5444.0,0.4174732862692993 -5445.0,0.41732912100233904 -5446.0,0.4171850055197 -5447.0,0.41704093980419027 -5448.0,0.4168969238386239 -5449.0,0.4167529576058208 -5450.0,0.4166090410886069 -5451.0,0.41646517426981394 -5452.0,0.4163213571322797 -5453.0,0.4161775896588478 -5454.0,0.4160338718323679 -5455.0,0.41589020363569545 -5456.0,0.4157465850516919 -5457.0,0.41560301606322453 -5458.0,0.4154594966531667 -5459.0,0.41531602680439766 -5460.0,0.41517260649980237 -5461.0,0.4150292357222719 -5462.0,0.4148859144547031 -5463.0,0.41474264267999883 -5464.0,0.4145994203810678 -5465.0,0.41445624754082466 -5466.0,0.4143131241421899 -5467.0,0.41417005016809 -5468.0,0.4140270256014572 -5469.0,0.41388405042522974 -5470.0,0.41374112462235174 -5471.0,0.4135982481757732 -5472.0,0.41345542106844996 -5473.0,0.41331264328334383 -5474.0,0.4131699148034224 -5475.0,0.4130272356116593 -5476.0,0.41288460569103386 -5477.0,0.41274202502453144 -5478.0,0.41259949359514314 -5479.0,0.41245701138586605 -5480.0,0.41231457837970303 -5481.0,0.4121721945596629 -5482.0,0.4120298599087603 -5483.0,0.4118875744100158 -5484.0,0.41174533804645563 -5485.0,0.41160315080111215 -5486.0,0.41146101265702345 -5487.0,0.41131892359723343 -5488.0,0.41117688360479193 -5489.0,0.41103489266275467 -5490.0,0.4108929507541831 -5491.0,0.41075105786214455 -5492.0,0.4106092139697123 -5493.0,0.4104674190599654 -5494.0,0.4103256731159888 -5495.0,0.41018397612087304 -5496.0,0.41004232805771496 -5497.0,0.4099007289096168 -5498.0,0.4097591786596869 -5499.0,0.4096176772910394 -5500.0,0.409476224786794 -5501.0,0.40933482113007674 -5502.0,0.409193466304019 -5503.0,0.40905216029175817 -5504.0,0.40891090307643757 -5505.0,0.4087696946412062 -5506.0,0.4086285349692189 -5507.0,0.4084874240436364 -5508.0,0.4083463618476252 -5509.0,0.40820534836435757 -5510.0,0.40806438357701164 -5511.0,0.4079234674687713 -5512.0,0.40778260002282635 -5513.0,0.4076417812223723 -5514.0,0.4075010110506105 -5515.0,0.4073602894907481 -5516.0,0.40721961652599803 -5517.0,0.40707899213957904 -5518.0,0.40693841631471567 -5519.0,0.40679788903463826 -5520.0,0.4066574102825829 -5521.0,0.40651698004179154 -5522.0,0.4063765982955118 -5523.0,0.4062362650269973 -5524.0,0.4060959802195071 -5525.0,0.40595574385630645 -5526.0,0.40581555592066604 -5527.0,0.4056754163958625 -5528.0,0.40553532526517827 -5529.0,0.4053952825119015 -5530.0,0.405255288119326 -5531.0,0.4051153420707515 -5532.0,0.4049754443494835 -5533.0,0.40483559493883314 -5534.0,0.40469579382211757 -5535.0,0.40455604098265935 -5536.0,0.40441633640378716 -5537.0,0.4042766800688351 -5538.0,0.4041370719611433 -5539.0,0.4039975120640575 -5540.0,0.40385800036092917 -5541.0,0.4037185368351156 -5542.0,0.4035791214699799 -5543.0,0.4034397542488907 -5544.0,0.4033004351552226 -5545.0,0.4031611641723558 -5546.0,0.40302194128367635 -5547.0,0.40288276647257587 -5548.0,0.4027436397224519 -5549.0,0.40260456101670766 -5550.0,0.402465530338752 -5551.0,0.4023265476719996 -5552.0,0.40218761299987077 -5553.0,0.40204872630579175 -5554.0,0.40190988757319435 -5555.0,0.40177109678551604 -5556.0,0.4016323539262001 -5557.0,0.4014936589786956 -5558.0,0.4013550119264572 -5559.0,0.4012164127529453 -5560.0,0.401077861441626 -5561.0,0.4009393579759712 -5562.0,0.4008009023394585 -5563.0,0.40066249451557095 -5564.0,0.4005241344877977 -5565.0,0.40038582223963337 -5566.0,0.40024755775457826 -5567.0,0.40010934101613843 -5568.0,0.39997117200782567 -5569.0,0.39983305071315745 -5570.0,0.3996949771156568 -5571.0,0.3995569511988526 -5572.0,0.3994189729462794 -5573.0,0.39928104234147743 -5574.0,0.3991431593679925 -5575.0,0.39900532400937616 -5576.0,0.39886753624918575 -5577.0,0.39872979607098413 -5578.0,0.3985921034583399 -5579.0,0.39845445839482735 -5580.0,0.3983168608640264 -5581.0,0.39817931084952274 -5582.0,0.39804180833490754 -5583.0,0.3979043533037779 -5584.0,0.3977669457397363 -5585.0,0.3976295856263911 -5586.0,0.39749227294735623 -5587.0,0.3973550076862512 -5588.0,0.3972177898267014 -5589.0,0.39708061935233774 -5590.0,0.3969434962467966 -5591.0,0.3968064204937204 -5592.0,0.3966693920767569 -5593.0,0.3965324109795596 -5594.0,0.3963954771857877 -5595.0,0.396258590679106 -5596.0,0.3961217514431849 -5597.0,0.39598495946170054 -5598.0,0.39584821471833453 -5599.0,0.3957115171967743 -5600.0,0.3955748668807128 -5601.0,0.39543826375384866 -5602.0,0.3953017077998861 -5603.0,0.395165199002535 -5604.0,0.3950287373455109 -5605.0,0.39489232281253484 -5606.0,0.39475595538733366 -5607.0,0.3946196350536396 -5608.0,0.3944833617951907 -5609.0,0.39434713559573054 -5610.0,0.3942109564390084 -5611.0,0.39407482430877905 -5612.0,0.39393873918880284 -5613.0,0.39380270106284593 -5614.0,0.3936667099146799 -5615.0,0.39353076572808204 -5616.0,0.39339486848683514 -5617.0,0.3932590181747277 -5618.0,0.39312321477555373 -5619.0,0.3929874582731129 -5620.0,0.3928517486512104 -5621.0,0.39271608589365714 -5622.0,0.3925804699842695 -5623.0,0.3924449009068695 -5624.0,0.3923093786452847 -5625.0,0.3921739031833484 -5626.0,0.3920384745048992 -5627.0,0.39190309259378153 -5628.0,0.39176775743384534 -5629.0,0.3916324690089461 -5630.0,0.3914972273029449 -5631.0,0.39136203229970834 -5632.0,0.39122688398310873 -5633.0,0.3910917823370238 -5634.0,0.39095672734533693 -5635.0,0.3908217189919371 -5636.0,0.3906867572607186 -5637.0,0.3905518421355817 -5638.0,0.3904169736004319 -5639.0,0.39028215163918045 -5640.0,0.39014737623574397 -5641.0,0.3900126473740448 -5642.0,0.3898779650380107 -5643.0,0.3897433292115752 -5644.0,0.389608739878677 -5645.0,0.3894741970232608 -5646.0,0.3893397006292765 -5647.0,0.3892052506806796 -5648.0,0.38907084716143137 -5649.0,0.38893649005549835 -5650.0,0.38880217934685274 -5651.0,0.38866791501947223 -5652.0,0.38853369705734003 -5653.0,0.38839952544444506 -5654.0,0.38826540016478145 -5655.0,0.3881313212023491 -5656.0,0.38799728854115345 -5657.0,0.38786330216520526 -5658.0,0.387729362058521 -5659.0,0.38759546820512253 -5660.0,0.3874616205890374 -5661.0,0.38732781919429843 -5662.0,0.38719406400494416 -5663.0,0.3870603550050186 -5664.0,0.38692669217857123 -5665.0,0.38679307550965697 -5666.0,0.38665950498233637 -5667.0,0.3865259805806755 -5668.0,0.3863925022887458 -5669.0,0.3862590700906243 -5670.0,0.38612568397039354 -5671.0,0.38599234391214154 -5672.0,0.3858590498999617 -5673.0,0.3857258019179532 -5674.0,0.3855925999502203 -5675.0,0.3854594439808732 -5676.0,0.3853263339940272 -5677.0,0.3851932699738033 -5678.0,0.3850602519043279 -5679.0,0.384927279769733 -5680.0,0.384794353554156 -5681.0,0.3846614732417396 -5682.0,0.38452863881663235 -5683.0,0.38439585026298795 -5684.0,0.38426310756496573 -5685.0,0.3841304107067304 -5686.0,0.3839977596724523 -5687.0,0.3838651544463071 -5688.0,0.38373259501247586 -5689.0,0.38360008135514534 -5690.0,0.3834676134585076 -5691.0,0.38333519130676014 -5692.0,0.38320281488410596 -5693.0,0.38307048417475353 -5694.0,0.38293819916291677 -5695.0,0.38280595983281507 -5696.0,0.3826737661686732 -5697.0,0.38254161815472143 -5698.0,0.3824095157751955 -5699.0,0.3822774590143365 -5700.0,0.38214544785639104 -5701.0,0.38201348228561116 -5702.0,0.38188156228625436 -5703.0,0.3817496878425835 -5704.0,0.3816178589388669 -5705.0,0.3814860755593784 -5706.0,0.3813543376883972 -5707.0,0.3812226453102079 -5708.0,0.38109099840910055 -5709.0,0.38095939696937065 -5710.0,0.38082784097531913 -5711.0,0.3806963304112523 -5712.0,0.38056486526148187 -5713.0,0.38043344551032504 -5714.0,0.38030207114210446 -5715.0,0.380170742141148 -5716.0,0.38003945849178916 -5717.0,0.3799082201783667 -5718.0,0.3797770271852249 -5719.0,0.37964587949671336 -5720.0,0.37951477709718706 -5721.0,0.37938371997100656 -5722.0,0.37925270810253764 -5723.0,0.37912174147615146 -5724.0,0.3789908200762248 -5725.0,0.37885994388713967 -5726.0,0.3787291128932834 -5727.0,0.3785983270790489 -5728.0,0.3784675864288343 -5729.0,0.37833689092704326 -5730.0,0.3782062405580847 -5731.0,0.37807563530637306 -5732.0,0.37794507515632797 -5733.0,0.3778145600923747 -5734.0,0.3776840900989436 -5735.0,0.3775536651604707 -5736.0,0.3774232852613971 -5737.0,0.3772929503861696 -5738.0,0.3771626605192401 -5739.0,0.37703241564506595 -5740.0,0.37690221574810995 -5741.0,0.37677206081284015 -5742.0,0.37664195082373 -5743.0,0.3765118857652584 -5744.0,0.3763818656219095 -5745.0,0.37625189037817286 -5746.0,0.37612196001854337 -5747.0,0.37599207452752126 -5748.0,0.37586223388961215 -5749.0,0.37573243808932705 -5750.0,0.37560268711118217 -5751.0,0.3754729809396993 -5752.0,0.37534331955940525 -5753.0,0.37521370295483253 -5754.0,0.3750841311105188 -5755.0,0.374954604011007 -5756.0,0.3748251216408456 -5757.0,0.3746956839845882 -5758.0,0.37456629102679384 -5759.0,0.37443694275202694 -5760.0,0.37430763914485715 -5761.0,0.3741783801898595 -5762.0,0.3740491658716144 -5763.0,0.37391999617470745 -5764.0,0.37379087108372966 -5765.0,0.37366179058327736 -5766.0,0.3735327546579522 -5767.0,0.37340376329236113 -5768.0,0.3732748164711164 -5769.0,0.3731459141788356 -5770.0,0.37301705640014166 -5771.0,0.37288824311966273 -5772.0,0.3727594743220323 -5773.0,0.37263074999188933 -5774.0,0.37250207011387787 -5775.0,0.3723734346726473 -5776.0,0.3722448436528524 -5777.0,0.37211629703915317 -5778.0,0.37198779481621497 -5779.0,0.3718593369687084 -5780.0,0.3717309234813093 -5781.0,0.3716025543386991 -5782.0,0.3714742295255641 -5783.0,0.3713459490265961 -5784.0,0.3712177128264923 -5785.0,0.3710895209099549 -5786.0,0.37096137326169165 -5787.0,0.3708332698664154 -5788.0,0.3707052107088444 -5789.0,0.3705771957737021 -5790.0,0.37044922504571726 -5791.0,0.37032129850962386 -5792.0,0.37019341615016127 -5793.0,0.37006557795207407 -5794.0,0.369937783900112 -5795.0,0.36981003397903023 -5796.0,0.3696823281735891 -5797.0,0.3695546664685542 -5798.0,0.36942704884869654 -5799.0,0.3692994752987921 -5800.0,0.36917194580362245 -5801.0,0.36904446034797417 -5802.0,0.3689170189166392 -5803.0,0.3687896214944147 -5804.0,0.368662268066103 -5805.0,0.3685349586165119 -5806.0,0.3684076931304543 -5807.0,0.36828047159274824 -5808.0,0.3681532939882172 -5809.0,0.36802616030168983 -5810.0,0.36789907051799997 -5811.0,0.3677720246219867 -5812.0,0.36764502259849446 -5813.0,0.36751806443237284 -5814.0,0.36739115010847656 -5815.0,0.36726427961166574 -5816.0,0.3671374529268056 -5817.0,0.36701067003876675 -5818.0,0.3668839309324247 -5819.0,0.3667572355926607 -5820.0,0.36663058400436066 -5821.0,0.36650397615241614 -5822.0,0.3663774120217236 -5823.0,0.366250891597185 -5824.0,0.3661244148637072 -5825.0,0.3659979818062027 -5826.0,0.3658715924095887 -5827.0,0.36574524665878805 -5828.0,0.36561894453872856 -5829.0,0.36549268603434326 -5830.0,0.3653664711305706 -5831.0,0.3652402998123538 -5832.0,0.36511417206464175 -5833.0,0.3649880878723882 -5834.0,0.3648620472205524 -5835.0,0.3647360500940984 -5836.0,0.3646100964779958 -5837.0,0.3644841863572192 -5838.0,0.3643583197167485 -5839.0,0.3642324965415686 -5840.0,0.3641067168166699 -5841.0,0.36398098052704764 -5842.0,0.3638552876577025 -5843.0,0.3637296381936401 -5844.0,0.3636040321198716 -5845.0,0.3634784694214128 -5846.0,0.3633529500832852 -5847.0,0.36322747409051537 -5848.0,0.3631020414281346 -5849.0,0.36297665208118 -5850.0,0.3628513060346934 -5851.0,0.36272600327372195 -5852.0,0.36260074378331786 -5853.0,0.36247552754853873 -5854.0,0.3623503545544471 -5855.0,0.36222522478611074 -5856.0,0.3621001382286026 -5857.0,0.36197509486700075 -5858.0,0.3618500946863884 -5859.0,0.3617251376718541 -5860.0,0.36160022380849116 -5861.0,0.36147535308139844 -5862.0,0.36135052547567964 -5863.0,0.36122574097644383 -5864.0,0.3611009995688051 -5865.0,0.36097630123788266 -5866.0,0.3608516459688011 -5867.0,0.3607270337466897 -5868.0,0.3606024645566833 -5869.0,0.3604779383839216 -5870.0,0.36035345521354967 -5871.0,0.36022901503071736 -5872.0,0.3601046178205801 -5873.0,0.3599802635682981 -5874.0,0.3598559522590368 -5875.0,0.3597316838779667 -5876.0,0.3596074584102637 -5877.0,0.3594832758411084 -5878.0,0.3593591361556868 -5879.0,0.35923503933918993 -5880.0,0.359110985376814 -5881.0,0.35898697425376014 -5882.0,0.35886300595523496 -5883.0,0.35873908046644964 -5884.0,0.35861519777262096 -5885.0,0.3584913578589707 -5886.0,0.35836756071072545 -5887.0,0.3582438063131173 -5888.0,0.3581200946513831 -5889.0,0.35799642571076506 -5890.0,0.3578727994765103 -5891.0,0.35774921593387127 -5892.0,0.35762567506810505 -5893.0,0.35750217686447444 -5894.0,0.35737872130824677 -5895.0,0.3572553083846949 -5896.0,0.3571319380790964 -5897.0,0.35700861037673415 -5898.0,0.35688532526289596 -5899.0,0.356762082722875 -5900.0,0.3566388827419692 -5901.0,0.3565157253054818 -5902.0,0.3563926103987209 -5903.0,0.35626953800699984 -5904.0,0.35614650811563703 -5905.0,0.3560235207099558 -5906.0,0.3559005757752848 -5907.0,0.35577767329695736 -5908.0,0.3556548132603124 -5909.0,0.3555319956506934 -5910.0,0.3554092204534492 -5911.0,0.3552864876539335 -5912.0,0.3551637972375054 -5913.0,0.3550411491895286 -5914.0,0.3549185434953723 -5915.0,0.35479598014041025 -5916.0,0.3546734591100218 -5917.0,0.35455098038959093 -5918.0,0.35442854396450696 -5919.0,0.3543061498201639 -5920.0,0.35418379794196125 -5921.0,0.35406148831530315 -5922.0,0.35393922092559904 -5923.0,0.35381699575826336 -5924.0,0.35369481279871545 -5925.0,0.3535726720323798 -5926.0,0.35345057344468583 -5927.0,0.35332851702106827 -5928.0,0.3532065027469665 -5929.0,0.35308453060782524 -5930.0,0.3529626005890939 -5931.0,0.35284071267622735 -5932.0,0.35271886685468506 -5933.0,0.3525970631099319 -5934.0,0.3524753014274373 -5935.0,0.35235358179267634 -5936.0,0.35223190419112843 -5937.0,0.35211026860827854 -5938.0,0.3519886750296163 -5939.0,0.35186712344063653 -5940.0,0.35174561382683894 -5941.0,0.35162414617372845 -5942.0,0.3515027204668148 -5943.0,0.35138133669161276 -5944.0,0.3512599948336422 -5945.0,0.3511386948784278 -5946.0,0.3510174368114995 -5947.0,0.35089622061839193 -5948.0,0.3507750462846451 -5949.0,0.3506539137958036 -5950.0,0.3505328231374173 -5951.0,0.35041177429504095 -5952.0,0.3502907672542343 -5953.0,0.3501698020005621 -5954.0,0.3500488785195941 -5955.0,0.34992799679690495 -5956.0,0.34980715681807445 -5957.0,0.3496863585686871 -5958.0,0.34956560203433273 -5959.0,0.3494448872006058 -5960.0,0.34932421405310604 -5961.0,0.349203582577438 -5962.0,0.3490829927592112 -5963.0,0.34896244458404013 -5964.0,0.3488419380375443 -5965.0,0.34872147310534823 -5966.0,0.34860104977308115 -5967.0,0.3484806680263776 -5968.0,0.34836032785087684 -5969.0,0.34824002923222325 -5970.0,0.34811977215606593 -5971.0,0.3479995566080592 -5972.0,0.3478793825738622 -5973.0,0.34775925003913905 -5974.0,0.34763915898955877 -5975.0,0.34751910941079545 -5976.0,0.34739910128852797 -5977.0,0.3472791346084403 -5978.0,0.34715920935622124 -5979.0,0.34703932551756456 -5980.0,0.3469194830781691 -5981.0,0.34679968202373845 -5982.0,0.3466799223399813 -5983.0,0.346560204012611 -5984.0,0.3464405270273463 -5985.0,0.34632089136991034 -5986.0,0.34620129702603164 -5987.0,0.34608174398144337 -5988.0,0.3459622322218838 -5989.0,0.34584276173309597 -5990.0,0.34572333250082804 -5991.0,0.3456039445108328 -5992.0,0.3454845977488683 -5993.0,0.3453652922006972 -5994.0,0.34524602785208736 -5995.0,0.3451268046888113 -5996.0,0.34500762269664664 -5997.0,0.3448884818613758 -5998.0,0.34476938216878605 -5999.0,0.34465032360466985 -6000.0,0.3445313061548243 -6001.0,0.3444123298050515 -6002.0,0.34429339454115837 -6003.0,0.3441745003489569 -6004.0,0.3440556472142638 -6005.0,0.34393683512290085 -6006.0,0.3438180640606945 -6007.0,0.34369933401347635 -6008.0,0.3435806449670827 -6009.0,0.34346199690735485 -6010.0,0.3433433898201389 -6011.0,0.343224823691286 -6012.0,0.34310629850665186 -6013.0,0.34298781425209757 -6014.0,0.3428693709134886 -6015.0,0.3427509684766957 -6016.0,0.3426326069275941 -6017.0,0.3425142862520643 -6018.0,0.34239600643599155 -6019.0,0.3422777674652658 -6020.0,0.34215956932578206 -6021.0,0.34204141200344007 -6022.0,0.34192329548414474 -6023.0,0.34180521975380534 -6024.0,0.34168718479833654 -6025.0,0.3415691906036575 -6026.0,0.3414512371556924 -6027.0,0.34133332444037023 -6028.0,0.34121545244362494 -6029.0,0.3410976211513952 -6030.0,0.3409798305496246 -6031.0,0.3408620806242616 -6032.0,0.3407443713612595 -6033.0,0.34062670274657636 -6034.0,0.3405090747661753 -6035.0,0.34039148740602404 -6036.0,0.3402739406520953 -6037.0,0.34015643449036675 -6038.0,0.3400389689068205 -6039.0,0.33992154388744406 -6040.0,0.33980415941822917 -6041.0,0.339686815485173 -6042.0,0.3395695120742771 -6043.0,0.3394522491715481 -6044.0,0.3393350267629973 -6045.0,0.33921784483464107 -6046.0,0.3391007033725003 -6047.0,0.33898360236260106 -6048.0,0.3388665417909738 -6049.0,0.33874952164365435 -6050.0,0.33863254190668274 -6051.0,0.33851560256610447 -6052.0,0.3383987036079692 -6053.0,0.338281845018332 -6054.0,0.3381650267832523 -6055.0,0.33804824888879464 -6056.0,0.3379315113210283 -6057.0,0.33781481406602726 -6058.0,0.33769815710987044 -6059.0,0.3375815404386414 -6060.0,0.33746496403842885 -6061.0,0.3373484278953259 -6062.0,0.33723193199543067 -6063.0,0.337115476324846 -6064.0,0.33699906086967973 -6065.0,0.3368826856160442 -6066.0,0.33676635055005677 -6067.0,0.33665005565783945 -6068.0,0.3365338009255192 -6069.0,0.3364175863392276 -6070.0,0.3363014118851011 -6071.0,0.3361852775492809 -6072.0,0.3360691833179132 -6073.0,0.3359531291771486 -6074.0,0.33583711511314274 -6075.0,0.3357211411120561 -6076.0,0.3356052071600536 -6077.0,0.33548931324330544 -6078.0,0.3353734593479861 -6079.0,0.33525764546027526 -6080.0,0.33514187156635694 -6081.0,0.33502613765242034 -6082.0,0.3349104437046591 -6083.0,0.33479478970927196 -6084.0,0.334679175652462 -6085.0,0.33456360152043757 -6086.0,0.3344480672994113 -6087.0,0.334332572975601 -6088.0,0.3342171185352288 -6089.0,0.334101703964522 -6090.0,0.33398632924971244 -6091.0,0.33387099437703677 -6092.0,0.3337556993327363 -6093.0,0.33364044410305727 -6094.0,0.3335252286742506 -6095.0,0.33341005303257176 -6096.0,0.3332949171642814 -6097.0,0.3331798210556443 -6098.0,0.3330647646929307 -6099.0,0.33294974806241495 -6100.0,0.3328347711503766 -6101.0,0.3327198339430995 -6102.0,0.3326049364268727 -6103.0,0.3324900785879896 -6104.0,0.33237526041274873 -6105.0,0.3322604818874529 -6106.0,0.33214574299840993 -6107.0,0.33203104373193226 -6108.0,0.33191638407433727 -6109.0,0.3318017640119467 -6110.0,0.3316871835310874 -6111.0,0.33157264261809055 -6112.0,0.33145814125929235 -6113.0,0.3313436794410337 -6114.0,0.33122925714966 -6115.0,0.3311148743715217 -6116.0,0.3310005310929735 -6117.0,0.33088622730037537 -6118.0,0.3307719629800914 -6119.0,0.33065773811849103 -6120.0,0.33054355270194774 -6121.0,0.3304294067168403 -6122.0,0.3303153001495517 -6123.0,0.33020123298647003 -6124.0,0.3300872052139878 -6125.0,0.32997321681850245 -6126.0,0.32985926778641583 -6127.0,0.32974535810413486 -6128.0,0.3296314877580707 -6129.0,0.32951765673463973 -6130.0,0.3294038650202625 -6131.0,0.32929011260136454 -6132.0,0.3291763994643761 -6133.0,0.32906272559573196 -6134.0,0.3289490909818717 -6135.0,0.3288354956092395 -6136.0,0.32872193946428435 -6137.0,0.3286084225334596 -6138.0,0.32849494480322383 -6139.0,0.3283815062600397 -6140.0,0.32826810689037506 -6141.0,0.32815474668070194 -6142.0,0.3280414256174975 -6143.0,0.32792814368724316 -6144.0,0.32781490087642545 -6145.0,0.32770169717153513 -6146.0,0.32758853255906795 -6147.0,0.32747540702552413 -6148.0,0.32736232055740866 -6149.0,0.3272492731412311 -6150.0,0.32713626476350566 -6151.0,0.3270232954107515 -6152.0,0.32691036506949195 -6153.0,0.3267974737262554 -6154.0,0.32668462136757465 -6155.0,0.3265718079799873 -6156.0,0.3264590335500354 -6157.0,0.326346298064266 -6158.0,0.32623360150923036 -6159.0,0.3261209438714848 -6160.0,0.3260083251375899 -6161.0,0.32589574529411125 -6162.0,0.32578320432761876 -6163.0,0.32567070222468714 -6164.0,0.32555823897189573 -6165.0,0.3254458145558285 -6166.0,0.32533342896307393 -6167.0,0.32522108218022544 -6168.0,0.3251087741938807 -6169.0,0.3249965049906422 -6170.0,0.32488427455711716 -6171.0,0.32477208287991716 -6172.0,0.32465992994565873 -6173.0,0.32454781574096264 -6174.0,0.3244357402524547 -6175.0,0.3243237034667649 -6176.0,0.32421170537052824 -6177.0,0.32409974595038404 -6178.0,0.3239878251929765 -6179.0,0.3238759430849541 -6180.0,0.3237640996129703 -6181.0,0.3236522947636829 -6182.0,0.3235405285237544 -6183.0,0.3234288008798519 -6184.0,0.32331711181864714 -6185.0,0.3232054613268164 -6186.0,0.32309384939104063 -6187.0,0.3229822759980052 -6188.0,0.3228707411344004 -6189.0,0.32275924478692086 -6190.0,0.32264778694226587 -6191.0,0.3225363675871394 -6192.0,0.32242498670824976 -6193.0,0.3223136442923102 -6194.0,0.3222023403260383 -6195.0,0.3220910747961563 -6196.0,0.32197984768939103 -6197.0,0.32186865899247397 -6198.0,0.32175750869214104 -6199.0,0.3216463967751329 -6200.0,0.3215353232281946 -6201.0,0.32142428803807604 -6202.0,0.32131329119153135 -6203.0,0.32120233267531956 -6204.0,0.321091412476204 -6205.0,0.3209805305809528 -6206.0,0.3208696869763385 -6207.0,0.3207588816491383 -6208.0,0.32064811458613396 -6209.0,0.32053738577411167 -6210.0,0.32042669519986244 -6211.0,0.32031604285018156 -6212.0,0.32020542871186913 -6213.0,0.32009485277172955 -6214.0,0.31998431501657204 -6215.0,0.31987381543321014 -6216.0,0.3197633540084622 -6217.0,0.3196529307291508 -6218.0,0.3195425455821034 -6219.0,0.3194321985541517 -6220.0,0.31932188963213237 -6221.0,0.31921161880288607 -6222.0,0.3191013860532585 -6223.0,0.3189911913700995 -6224.0,0.31888103474026386 -6225.0,0.31877091615061054 -6226.0,0.31866083558800323 -6227.0,0.3185507930393102 -6228.0,0.3184407884914041 -6229.0,0.3183308219311623 -6230.0,0.3182208933454664 -6231.0,0.31811100272120285 -6232.0,0.31800115004526247 -6233.0,0.31789133530454067 -6234.0,0.31778155848593725 -6235.0,0.31767181957635676 -6236.0,0.31756211856270805 -6237.0,0.31745245543190476 -6238.0,0.3173428301708646 -6239.0,0.3172332427665103 -6240.0,0.3171236932057688 -6241.0,0.3170141814755717 -6242.0,0.3169047075628549 -6243.0,0.31679527145455916 -6244.0,0.3166858731376293 -6245.0,0.31657651259901515 -6246.0,0.3164671898256707 -6247.0,0.31635790480455445 -6248.0,0.31624865752262965 -6249.0,0.3161394479668638 -6250.0,0.316030276124229 -6251.0,0.31592114198170185 -6252.0,0.3158120455262635 -6253.0,0.31570298674489944 -6254.0,0.3155939656245999 -6255.0,0.31548498215235926 -6256.0,0.31537603631517674 -6257.0,0.3152671281000558 -6258.0,0.31515825749400456 -6259.0,0.31504942448403545 -6260.0,0.3149406290571657 -6261.0,0.3148318712004165 -6262.0,0.3147231509008141 -6263.0,0.3146144681453888 -6264.0,0.3145058229211755 -6265.0,0.3143972152152139 -6266.0,0.31428864501454756 -6267.0,0.3141801123062251 -6268.0,0.31407161707729914 -6269.0,0.3139631593148272 -6270.0,0.31385473900587085 -6271.0,0.3137463561374966 -6272.0,0.3136380106967748 -6273.0,0.313529702670781 -6274.0,0.3134214320465946 -6275.0,0.3133131988112999 -6276.0,0.31320500295198517 -6277.0,0.31309684445574376 -6278.0,0.3129887233096729 -6279.0,0.31288063950087475 -6280.0,0.31277259301645544 -6281.0,0.312664583843526 -6282.0,0.3125566119692017 -6283.0,0.3124486773806022 -6284.0,0.31234078006485183 -6285.0,0.31223292000907904 -6286.0,0.31212509720041715 -6287.0,0.31201731162600344 -6288.0,0.31190956327298003 -6289.0,0.3118018521284932 -6290.0,0.311694178179694 -6291.0,0.31158654141373754 -6292.0,0.31147894181778363 -6293.0,0.3113713793789963 -6294.0,0.31126385408454427 -6295.0,0.3111563659216005 -6296.0,0.3110489148773425 -6297.0,0.31094150093895195 -6298.0,0.3108341240936154 -6299.0,0.3107267843285234 -6300.0,0.3106194816308712 -6301.0,0.3105122159878583 -6302.0,0.3104049873866887 -6303.0,0.3102977958145709 -6304.0,0.3101906412587176 -6305.0,0.3100835237063461 -6306.0,0.3099764431446781 -6307.0,0.3098693995609396 -6308.0,0.30976239294236113 -6309.0,0.30965542327617757 -6310.0,0.30954849054962813 -6311.0,0.3094415947499567 -6312.0,0.3093347358644112 -6313.0,0.3092279138802443 -6314.0,0.30912112878471276 -6315.0,0.309014380565078 -6316.0,0.30890766920860574 -6317.0,0.3088009947025661 -6318.0,0.3086943570342335 -6319.0,0.3085877561908869 -6320.0,0.3084811921598096 -6321.0,0.3083746649282893 -6322.0,0.3082681744836181 -6323.0,0.3081617208130924 -6324.0,0.3080553039040131 -6325.0,0.3079489237436854 -6326.0,0.30784258031941897 -6327.0,0.30773627361852773 -6328.0,0.30763000362833026 -6329.0,0.307523770336149 -6330.0,0.3074175737293115 -6331.0,0.3073114137951489 -6332.0,0.3072052905209974 -6333.0,0.307099203894197 -6334.0,0.3069931539020925 -6335.0,0.30688714053203286 -6336.0,0.3067811637713715 -6337.0,0.3066752236074661 -6338.0,0.30656932002767884 -6339.0,0.3064634530193761 -6340.0,0.3063576225699288 -6341.0,0.3062518286667122 -6342.0,0.3061460712971057 -6343.0,0.30604035044849337 -6344.0,0.3059346661082633 -6345.0,0.3058290182638083 -6346.0,0.30572340690252525 -6347.0,0.3056178320118156 -6348.0,0.3055122935790848 -6349.0,0.30540679159174317 -6350.0,0.30530132603720483 -6351.0,0.3051958969028888 -6352.0,0.3050905041762178 -6353.0,0.30498514784461955 -6354.0,0.30487982789552565 -6355.0,0.3047745443163723 -6356.0,0.3046692970945998 -6357.0,0.304564086217653 -6358.0,0.304458911672981 -6359.0,0.30435377344803727 -6360.0,0.3042486715302796 -6361.0,0.30414360590717004 -6362.0,0.3040385765661751 -6363.0,0.30393358349476546 -6364.0,0.30382862668041627 -6365.0,0.3037237061106069 -6366.0,0.3036188217728212 -6367.0,0.303513973654547 -6368.0,0.303409161743277 -6369.0,0.3033043860265076 -6370.0,0.3031996464917401 -6371.0,0.30309494312647955 -6372.0,0.30299027591823585 -6373.0,0.3028856448545228 -6374.0,0.3027810499228588 -6375.0,0.3026764911107664 -6376.0,0.30257196840577244 -6377.0,0.3024674817954081 -6378.0,0.302363031267209 -6379.0,0.3022586168087149 -6380.0,0.3021542384074699 -6381.0,0.3020498960510225 -6382.0,0.3019455897269253 -6383.0,0.3018413194227354 -6384.0,0.30173708512601405 -6385.0,0.30163288682432693 -6386.0,0.3015287245052439 -6387.0,0.30142459815633915 -6388.0,0.30132050776519115 -6389.0,0.30121645331938274 -6390.0,0.3011124348065009 -6391.0,0.3010084522141371 -6392.0,0.3009045055298868 -6393.0,0.30080059474135007 -6394.0,0.300696719836131 -6395.0,0.3005928808018382 -6396.0,0.3004890776260843 -6397.0,0.3003853102964864 -6398.0,0.30028157880066586 -6399.0,0.30017788312624816 -6400.0,0.3000742232608633 -6401.0,0.29997059919214525 -6402.0,0.2998670109077326 -6403.0,0.2997634583952678 -6404.0,0.299659941642398 -6405.0,0.29955646063677427 -6406.0,0.29945301536605223 -6407.0,0.2993496058178914 -6408.0,0.2992462319799559 -6409.0,0.299142893839914 -6410.0,0.29903959138543823 -6411.0,0.2989363246042052 -6412.0,0.2988330934838962 -6413.0,0.29872989801219624 -6414.0,0.2986267381767951 -6415.0,0.2985236139653863 -6416.0,0.29842052536566804 -6417.0,0.2983174723653426 -6418.0,0.2982144549521165 -6419.0,0.2981114731137005 -6420.0,0.2980085268378096 -6421.0,0.2979056161121631 -6422.0,0.2978027409244844 -6423.0,0.2976999012625014 -6424.0,0.29759709711394594 -6425.0,0.2974943284665543 -6426.0,0.2973915953080669 -6427.0,0.2972888976262285 -6428.0,0.29718623540878786 -6429.0,0.2970836086434983 -6430.0,0.2969810173181171 -6431.0,0.2968784614204059 -6432.0,0.2967759409381305 -6433.0,0.2966734558590609 -6434.0,0.2965710061709715 -6435.0,0.2964685918616407 -6436.0,0.2963662129188513 -6437.0,0.2962638693303902 -6438.0,0.2961615610840485 -6439.0,0.29605928816762167 -6440.0,0.29595705056890925 -6441.0,0.295854848275715 -6442.0,0.2957526812758471 -6443.0,0.2956505495571175 -6444.0,0.29554845310734285 -6445.0,0.2954463919143437 -6446.0,0.29534436596594493 -6447.0,0.29524237524997554 -6448.0,0.29514041975426886 -6449.0,0.29503849946666216 -6450.0,0.29493661437499735 -6451.0,0.2948347644671201 -6452.0,0.29473294973088054 -6453.0,0.29463117015413287 -6454.0,0.2945294257247355 -6455.0,0.2944277164305512 -6456.0,0.29432604225944664 -6457.0,0.294224403199293 -6458.0,0.29412279923796525 -6459.0,0.29402123036334293 -6460.0,0.2939196965633096 -6461.0,0.293818197825753 -6462.0,0.2937167341385651 -6463.0,0.293615305489642 -6464.0,0.29351391186688397 -6465.0,0.29341255325819554 -6466.0,0.2933112296514853 -6467.0,0.29320994103466624 -6468.0,0.29310868739565515 -6469.0,0.2930074687223734 -6470.0,0.2929062850027461 -6471.0,0.2928051362247031 -6472.0,0.2927040223761778 -6473.0,0.2926029434451082 -6474.0,0.29250189941943633 -6475.0,0.29240089028710825 -6476.0,0.29229991603607447 -6477.0,0.29219897665428934 -6478.0,0.2920980721297117 -6479.0,0.2919972024503042 -6480.0,0.291896367604034 -6481.0,0.29179556757887204 -6482.0,0.29169480236279377 -6483.0,0.29159407194377857 -6484.0,0.29149337630981004 -6485.0,0.2913927154488759 -6486.0,0.29129208934896816 -6487.0,0.2911914979980827 -6488.0,0.2910909413842198 -6489.0,0.29099041949538373 -6490.0,0.2908899323195831 -6491.0,0.29078947984483033 -6492.0,0.29068906205914224 -6493.0,0.29058867895053986 -6494.0,0.290488330507048 -6495.0,0.29038801671669595 -6496.0,0.29028773756751697 -6497.0,0.29018749304754854 -6498.0,0.2900872831448321 -6499.0,0.28998710784741355 -6500.0,0.28988696714334244 -6501.0,0.28978686102067297 -6502.0,0.289686789467463 -6503.0,0.28958675247177484 -6504.0,0.2894867500216748 -6505.0,0.2893867821052333 -6506.0,0.2892868487105248 -6507.0,0.28918694982562815 -6508.0,0.289087085438626 -6509.0,0.2889872555376054 -6510.0,0.2888874601106572 -6511.0,0.2887876991458766 -6512.0,0.288687972631363 -6513.0,0.28858828055521946 -6514.0,0.2884886229055537 -6515.0,0.2883889996704771 -6516.0,0.28828941083810555 -6517.0,0.2881898563965586 -6518.0,0.28809033633396025 -6519.0,0.28799085063843843 -6520.0,0.28789139929812535 -6521.0,0.28779198230115705 -6522.0,0.28769259963567384 -6523.0,0.2875932512898201 -6524.0,0.2874939372517443 -6525.0,0.287394657509599 -6526.0,0.2872954120515409 -6527.0,0.28719620086573067 -6528.0,0.28709702394033315 -6529.0,0.2869978812635173 -6530.0,0.286898772823456 -6531.0,0.2867996986083265 -6532.0,0.28670065860630983 -6533.0,0.28660165280559136 -6534.0,0.28650268119436034 -6535.0,0.28640374376081024 -6536.0,0.2863048404931385 -6537.0,0.2862059713795467 -6538.0,0.28610713640824037 -6539.0,0.2860083355674294 -6540.0,0.2859095688453274 -6541.0,0.2858108362301524 -6542.0,0.28571213771012616 -6543.0,0.28561347327347475 -6544.0,0.2855148429084282 -6545.0,0.2854162466032206 -6546.0,0.28531768434609023 -6547.0,0.2852191561252792 -6548.0,0.28512066192903385 -6549.0,0.28502220174560455 -6550.0,0.28492377556324583 -6551.0,0.28482538337021596 -6552.0,0.2847270251547776 -6553.0,0.2846287009051973 -6554.0,0.28453041060974577 -6555.0,0.28443215425669754 -6556.0,0.2843339318343315 -6557.0,0.28423574333093027 -6558.0,0.2841375887347808 -6559.0,0.2840394680341739 -6560.0,0.28394138121740453 -6561.0,0.28384332827277164 -6562.0,0.2837453091885782 -6563.0,0.28364732395313125 -6564.0,0.28354937255474194 -6565.0,0.28345145498172525 -6566.0,0.2833535712224005 -6567.0,0.2832557212650907 -6568.0,0.2831579050981231 -6569.0,0.28306012270982905 -6570.0,0.2829623740885437 -6571.0,0.28286465922260645 -6572.0,0.28276697810036056 -6573.0,0.2826693307101535 -6574.0,0.28257171704033646 -6575.0,0.28247413707926494 -6576.0,0.28237659081529837 -6577.0,0.28227907823680026 -6578.0,0.2821815993321379 -6579.0,0.2820841540896829 -6580.0,0.2819867424978107 -6581.0,0.2818893645449009 -6582.0,0.2817920202193368 -6583.0,0.2816947095095062 -6584.0,0.2815974324038005 -6585.0,0.2815001888906152 -6586.0,0.2814029789583499 -6587.0,0.28130580259540827 -6588.0,0.2812086597901978 -6589.0,0.28111155053113 -6590.0,0.28101447480662056 -6591.0,0.28091743260508895 -6592.0,0.2808204239149588 -6593.0,0.2807234487246577 -6594.0,0.2806265070226172 -6595.0,0.28052959879727274 -6596.0,0.2804327240370641 -6597.0,0.28033588273043464 -6598.0,0.28023907486583205 -6599.0,0.2801423004317077 -6600.0,0.2800455594165172 -6601.0,0.27994885180872003 -6602.0,0.2798521775967797 -6603.0,0.27975553676916365 -6604.0,0.2796589293143433 -6605.0,0.2795623552207942 -6606.0,0.27946581447699564 -6607.0,0.27936930707143115 -6608.0,0.2792728329925879 -6609.0,0.2791763922289575 -6610.0,0.27907998476903506 -6611.0,0.27898361060131993 -6612.0,0.2788872697143154 -6613.0,0.2787909620965287 -6614.0,0.278694687736471 -6615.0,0.2785984466226575 -6616.0,0.2785022387436073 -6617.0,0.2784060640878436 -6618.0,0.2783099226438933 -6619.0,0.2782138144002876 -6620.0,0.2781177393455614 -6621.0,0.2780216974682536 -6622.0,0.2779256887569072 -6623.0,0.277829713200069 -6624.0,0.27773377078628986 -6625.0,0.2776378615041245 -6626.0,0.27754198534213176 -6627.0,0.2774461422888741 -6628.0,0.27735033233291834 -6629.0,0.27725455546283495 -6630.0,0.27715881166719847 -6631.0,0.27706310093458736 -6632.0,0.2769674232535841 -6633.0,0.2768717786127749 -6634.0,0.27677616700075014 -6635.0,0.27668058840610404 -6636.0,0.2765850428174348 -6637.0,0.27648953022334444 -6638.0,0.2763940506124391 -6639.0,0.27629860397332867 -6640.0,0.2762031902946272 -6641.0,0.27610780956495234 -6642.0,0.276012461772926 -6643.0,0.2759171469071739 -6644.0,0.27582186495632555 -6645.0,0.27572661590901465 -6646.0,0.27563139975387857 -6647.0,0.2755362164795588 -6648.0,0.2754410660747006 -6649.0,0.2753459485279533 -6650.0,0.2752508638279699 -6651.0,0.27515581196340777 -6652.0,0.2750607929229276 -6653.0,0.2749658066951946 -6654.0,0.2748708532688774 -6655.0,0.2747759326326489 -6656.0,0.27468104477518557 -6657.0,0.2745861896851682 -6658.0,0.27449136735128105 -6659.0,0.2743965777622127 -6660.0,0.27430182090665534 -6661.0,0.2742070967733051 -6662.0,0.27411240535086234 -6663.0,0.27401774662803075 -6664.0,0.2739231205935185 -6665.0,0.2738285272360372 -6666.0,0.27373396654430265 -6667.0,0.27363943850703437 -6668.0,0.273544943112956 -6669.0,0.2734504803507948 -6670.0,0.27335605020928205 -6671.0,0.27326165267715297 -6672.0,0.2731672877431467 -6673.0,0.273072955396006 -6674.0,0.2729786556244779 -6675.0,0.27288438841731294 -6676.0,0.27279015376326593 -6677.0,0.27269595165109517 -6678.0,0.27260178206956315 -6679.0,0.27250764500743613 -6680.0,0.27241354045348415 -6681.0,0.2723194683964814 -6682.0,0.27222542882520556 -6683.0,0.27213142172843857 -6684.0,0.27203744709496597 -6685.0,0.27194350491357727 -6686.0,0.2718495951730659 -6687.0,0.2717557178622291 -6688.0,0.27166187296986793 -6689.0,0.2715680604847875 -6690.0,0.2714742803957965 -6691.0,0.27138053269170787 -6692.0,0.271286817361338 -6693.0,0.2711931343935074 -6694.0,0.2710994837770403 -6695.0,0.27100586550076505 -6696.0,0.2709122795535135 -6697.0,0.27081872592412165 -6698.0,0.2707252046014291 -6699.0,0.2706317155742795 -6700.0,0.2705382588315204 -6701.0,0.2704448343620029 -6702.0,0.27035144215458234 -6703.0,0.27025808219811753 -6704.0,0.2701647544814714 -6705.0,0.27007145899351065 -6706.0,0.2699781957231058 -6707.0,0.2698849646591311 -6708.0,0.26979176579046493 -6709.0,0.26969859910598926 -6710.0,0.26960546459459006 -6711.0,0.2695123622451569 -6712.0,0.26941929204658355 -6713.0,0.2693262539877672 -6714.0,0.26923324805760934 -6715.0,0.2691402742450148 -6716.0,0.2690473325388927 -6717.0,0.2689544229281555 -6718.0,0.26886154540172 -6719.0,0.2687686999485066 -6720.0,0.2686758865574393 -6721.0,0.2685831052174463 -6722.0,0.26849035591745946 -6723.0,0.2683976386464144 -6724.0,0.2683049533932506 -6725.0,0.26821230014691155 -6726.0,0.2681196788963442 -6727.0,0.26802708963049965 -6728.0,0.2679345323383326 -6729.0,0.2678420070088017 -6730.0,0.2677495136308692 -6731.0,0.2676570521935015 -6732.0,0.26756462268566855 -6733.0,0.2674722250963442 -6734.0,0.26737985941450604 -6735.0,0.26728752562913555 -6736.0,0.267195223729218 -6737.0,0.26710295370374243 -6738.0,0.2670107155417017 -6739.0,0.2669185092320925 -6740.0,0.2668263347639152 -6741.0,0.26673419212617416 -6742.0,0.2666420813078774 -6743.0,0.26655000229803677 -6744.0,0.2664579550856679 -6745.0,0.2663659396597902 -6746.0,0.26627395600942705 -6747.0,0.26618200412360526 -6748.0,0.26609008399135575 -6749.0,0.2659981956017131 -6750.0,0.2659063389437158 -6751.0,0.2658145140064058 -6752.0,0.2657227207788293 -6753.0,0.2656309592500358 -6754.0,0.26553922940907904 -6755.0,0.26544753124501613 -6756.0,0.26535586474690825 -6757.0,0.2652642299038203 -6758.0,0.2651726267048208 -6759.0,0.2650810551389822 -6760.0,0.26498951519538066 -6761.0,0.2648980068630963 -6762.0,0.2648065301312125 -6763.0,0.26471508498881713 -6764.0,0.26462367142500115 -6765.0,0.26453228942885976 -6766.0,0.26444093898949167 -6767.0,0.26434962009599955 -6768.0,0.2642583327374896 -6769.0,0.26416707690307195 -6770.0,0.26407585258186045 -6771.0,0.26398465976297275 -6772.0,0.26389349843553006 -6773.0,0.2638023685886577 -6774.0,0.2637112702114844 -6775.0,0.2636202032931428 -6776.0,0.2635291678227693 -6777.0,0.2634381637895041 -6778.0,0.263347191182491 -6779.0,0.26325624999087766 -6780.0,0.2631653402038155 -6781.0,0.2630744618104595 -6782.0,0.26298361479996873 -6783.0,0.26289279916150565 -6784.0,0.2628020148842367 -6785.0,0.26271126195733197 -6786.0,0.26262054036996524 -6787.0,0.26252985011131413 -6788.0,0.26243919117055997 -6789.0,0.26234856353688774 -6790.0,0.2622579671994863 -6791.0,0.26216740214754813 -6792.0,0.2620768683702695 -6793.0,0.26198636585685037 -6794.0,0.2618958945964944 -6795.0,0.2618054545784092 -6796.0,0.2617150457918057 -6797.0,0.261624668225899 -6798.0,0.2615343218699076 -6799.0,0.26144400671305396 -6800.0,0.2613537227445639 -6801.0,0.26126346995366745 -6802.0,0.26117324832959793 -6803.0,0.2610830578615927 -6804.0,0.26099289853889257 -6805.0,0.26090277035074233 -6806.0,0.2608126732863902 -6807.0,0.2607226073350884 -6808.0,0.2606325724860925 -6809.0,0.26054256872866227 -6810.0,0.2604525960520607 -6811.0,0.2603626544455549 -6812.0,0.26027274389841526 -6813.0,0.2601828643999163 -6814.0,0.260093015939336 -6815.0,0.260003198505956 -6816.0,0.25991341208906193 -6817.0,0.2598236566779427 -6818.0,0.25973393226189134 -6819.0,0.2596442388302042 -6820.0,0.2595545763721817 -6821.0,0.25946494487712757 -6822.0,0.2593753443343496 -6823.0,0.25928577473315895 -6824.0,0.25919623606287073 -6825.0,0.25910672831280357 -6826.0,0.2590172514722799 -6827.0,0.2589278055306257 -6828.0,0.25883839047717083 -6829.0,0.2587490063012486 -6830.0,0.2586596529921963 -6831.0,0.2585703305393545 -6832.0,0.25848103893206786 -6833.0,0.2583917781596845 -6834.0,0.25830254821155624 -6835.0,0.2582133490770387 -6836.0,0.25812418074549087 -6837.0,0.25803504320627585 -6838.0,0.25794593644875996 -6839.0,0.2578568604623136 -6840.0,0.2577678152363105 -6841.0,0.25767880076012833 -6842.0,0.25758981702314826 -6843.0,0.25750086401475525 -6844.0,0.2574119417243377 -6845.0,0.257323050141288 -6846.0,0.25723418925500185 -6847.0,0.257145359054879 -6848.0,0.2570565595303225 -6849.0,0.2569677906707393 -6850.0,0.2568790524655399 -6851.0,0.25679034490413843 -6852.0,0.2567016679759528 -6853.0,0.2566130216704044 -6854.0,0.2565244059769185 -6855.0,0.2564358208849238 -6856.0,0.2563472663838528 -6857.0,0.25625874246314156 -6858.0,0.25617024911222985 -6859.0,0.25608178632056094 -6860.0,0.2559933540775821 -6861.0,0.25590495237274374 -6862.0,0.25581658119550044 -6863.0,0.2557282405353099 -6864.0,0.25563993038163396 -6865.0,0.2555516507239377 -6866.0,0.2554634015516901 -6867.0,0.2553751828543636 -6868.0,0.25528699462143445 -6869.0,0.2551988368423823 -6870.0,0.2551107095066907 -6871.0,0.2550226126038466 -6872.0,0.25493454612334077 -6873.0,0.2548465100546675 -6874.0,0.25475850438732467 -6875.0,0.2546705291108139 -6876.0,0.25458258421464036 -6877.0,0.2544946696883129 -6878.0,0.2544067855213439 -6879.0,0.2543189317032495 -6880.0,0.2542311082235492 -6881.0,0.2541433150717666 -6882.0,0.2540555522374283 -6883.0,0.25396781971006505 -6884.0,0.2538801174792109 -6885.0,0.2537924455344037 -6886.0,0.2537048038651847 -6887.0,0.25361719246109904 -6888.0,0.2535296113116951 -6889.0,0.2534420604065253 -6890.0,0.25335453973514543 -6891.0,0.25326704928711474 -6892.0,0.2531795890519965 -6893.0,0.2530921590193571 -6894.0,0.253004759178767 -6895.0,0.25291738951979986 -6896.0,0.25283005003203324 -6897.0,0.2527427407050481 -6898.0,0.2526554615284291 -6899.0,0.2525682124917644 -6900.0,0.252480993584646 -6901.0,0.2523938047966691 -6902.0,0.2523066461174329 -6903.0,0.25221951753653993 -6904.0,0.2521324190435964 -6905.0,0.25204535062821204 -6906.0,0.2519583122800003 -6907.0,0.25187130398857804 -6908.0,0.2517843257435659 -6909.0,0.25169737753458804 -6910.0,0.251610459351272 -6911.0,0.2515235711832493 -6912.0,0.25143671302015463 -6913.0,0.25134988485162657 -6914.0,0.25126308666730707 -6915.0,0.25117631845684174 -6916.0,0.2510895802098798 -6917.0,0.25100287191607407 -6918.0,0.2509161935650807 -6919.0,0.2508295451465598 -6920.0,0.2507429266501747 -6921.0,0.25065633806559257 -6922.0,0.2505697793824839 -6923.0,0.25048325059052295 -6924.0,0.2503967516793874 -6925.0,0.2503102826387587 -6926.0,0.2502238434583215 -6927.0,0.2501374341277644 -6928.0,0.2500510546367794 -6929.0,0.24996470497506196 -6930.0,0.2498783851323113 -6931.0,0.24979209509823 -6932.0,0.24970583486252437 -6933.0,0.2496196044149041 -6934.0,0.24953340374508262 -6935.0,0.24944723284277676 -6936.0,0.24936109169770698 -6937.0,0.24927498029959724 -6938.0,0.24918889863817517 -6939.0,0.2491028467031717 -6940.0,0.24901682448432164 -6941.0,0.248930831971363 -6942.0,0.24884486915403764 -6943.0,0.2487589360220907 -6944.0,0.2486730325652711 -6945.0,0.24858715877333107 -6946.0,0.24850131463602657 -6947.0,0.24841550014311703 -6948.0,0.24832971528436534 -6949.0,0.24824396004953808 -6950.0,0.24815823442840518 -6951.0,0.2480725384107403 -6952.0,0.2479868719863204 -6953.0,0.24790123514492626 -6954.0,0.24781562787634187 -6955.0,0.24773005017035502 -6956.0,0.24764450201675683 -6957.0,0.24755898340534213 -6958.0,0.24747349432590907 -6959.0,0.24738803476825952 -6960.0,0.2473026047221987 -6961.0,0.24721720417753548 -6962.0,0.24713183312408213 -6963.0,0.24704649155165462 -6964.0,0.24696117945007218 -6965.0,0.24687589680915778 -6966.0,0.24679064361873787 -6967.0,0.24670541986864228 -6968.0,0.2466202255487045 -6969.0,0.2465350606487614 -6970.0,0.24644992515865352 -6971.0,0.2463648190682247 -6972.0,0.24627974236732253 -6973.0,0.24619469504579786 -6974.0,0.24610967709350526 -6975.0,0.24602468850030262 -6976.0,0.24593972925605156 -6977.0,0.24585479935061688 -6978.0,0.24576989877386723 -6979.0,0.24568502751567445 -6980.0,0.24560018556591415 -6981.0,0.24551537291446518 -6982.0,0.2454305895512101 -6983.0,0.2453458354660348 -6984.0,0.24526111064882877 -6985.0,0.24517641508948504 -6986.0,0.24509174877789988 -6987.0,0.24500711170397338 -6988.0,0.2449225038576088 -6989.0,0.2448379252287132 -6990.0,0.24475337580719683 -6991.0,0.24466885558297366 -6992.0,0.24458436454596094 -6993.0,0.24449990268607963 -6994.0,0.24441546999325392 -6995.0,0.24433106645741173 -6996.0,0.2442466920684842 -6997.0,0.24416234681640622 -6998.0,0.2440780306911159 -6999.0,0.24399374368255503 -7000.0,0.2439094857806687 -7001.0,0.24382525697540564 -7002.0,0.24374105725671788 -7003.0,0.24365688661456106 -7004.0,0.24357274503889426 -7005.0,0.24348863251967995 -7006.0,0.2434045490468842 -7007.0,0.2433204946104763 -7008.0,0.2432364692004294 -7009.0,0.24315247280671967 -7010.0,0.2430685054193271 -7011.0,0.24298456702823487 -7012.0,0.24290065762342988 -7013.0,0.24281677719490222 -7014.0,0.24273292573264568 -7015.0,0.24264910322665725 -7016.0,0.24256530966693768 -7017.0,0.24248154504349087 -7018.0,0.24239780934632443 -7019.0,0.2423141025654492 -7020.0,0.24223042469087966 -7021.0,0.24214677571263354 -7022.0,0.2420631556207322 -7023.0,0.2419795644052004 -7024.0,0.24189600205606623 -7025.0,0.24181246856336144 -7026.0,0.24172896391712095 -7027.0,0.24164548810738337 -7028.0,0.24156204112419058 -7029.0,0.241478622957588 -7030.0,0.24139523359762444 -7031.0,0.24131187303435217 -7032.0,0.24122854125782683 -7033.0,0.24114523825810763 -7034.0,0.24106196402525704 -7035.0,0.24097871854934114 -7036.0,0.24089550182042926 -7037.0,0.24081231382859436 -7038.0,0.24072915456391258 -7039.0,0.2406460240164638 -7040.0,0.24056292217633096 -7041.0,0.24047984903360073 -7042.0,0.24039680457836313 -7043.0,0.24031378880071144 -7044.0,0.2402308016907426 -7045.0,0.24014784323855676 -7046.0,0.24006491343425768 -7047.0,0.2399820122679523 -7048.0,0.23989913972975127 -7049.0,0.23981629580976838 -7050.0,0.23973348049812104 -7051.0,0.2396506937849299 -7052.0,0.2395679356603192 -7053.0,0.2394852061144164 -7054.0,0.2394025051373526 -7055.0,0.239319832719262 -7056.0,0.23923718885028258 -7057.0,0.23915457352055539 -7058.0,0.2390719867202251 -7059.0,0.2389894284394396 -7060.0,0.23890689866835038 -7061.0,0.23882439739711228 -7062.0,0.2387419246158834 -7063.0,0.23865948031482542 -7064.0,0.23857706448410324 -7065.0,0.23849467711388536 -7066.0,0.23841231819434347 -7067.0,0.23832998771565286 -7068.0,0.23824768566799198 -7069.0,0.23816541204154293 -7070.0,0.23808316682649092 -7071.0,0.23800095001302482 -7072.0,0.23791876159133665 -7073.0,0.2378366015516221 -7074.0,0.23775446988407986 -7075.0,0.23767236657891241 -7076.0,0.23759029162632528 -7077.0,0.23750824501652765 -7078.0,0.23742622673973185 -7079.0,0.23734423678615377 -7080.0,0.2372622751460126 -7081.0,0.23718034180953085 -7082.0,0.2370984367669346 -7083.0,0.237016560008453 -7084.0,0.23693471152431894 -7085.0,0.2368528913047683 -7086.0,0.2367710993400407 -7087.0,0.23668933562037883 -7088.0,0.23660760013602897 -7089.0,0.23652589287724055 -7090.0,0.23644421383426661 -7091.0,0.23636256299736336 -7092.0,0.23628094035679054 -7093.0,0.23619934590281103 -7094.0,0.23611777962569133 -7095.0,0.23603624151570107 -7096.0,0.23595473156311347 -7097.0,0.23587324975820487 -7098.0,0.2357917960912551 -7099.0,0.23571037055254748 -7100.0,0.23562897313236833 -7101.0,0.2355476038210077 -7102.0,0.2354662626087587 -7103.0,0.235384949485918 -7104.0,0.23530366444278547 -7105.0,0.2352224074696645 -7106.0,0.23514117855686156 -7107.0,0.2350599776946868 -7108.0,0.23497880487345346 -7109.0,0.23489766008347826 -7110.0,0.23481654331508114 -7111.0,0.23473545455858555 -7112.0,0.23465439380431813 -7113.0,0.23457336104260898 -7114.0,0.23449235626379142 -7115.0,0.23441137945820223 -7116.0,0.2343304306161814 -7117.0,0.23424950972807237 -7118.0,0.2341686167842219 -7119.0,0.23408775177497995 -7120.0,0.23400691469070004 -7121.0,0.2339261055217388 -7122.0,0.23384532425845633 -7123.0,0.23376457089121597 -7124.0,0.23368384541038453 -7125.0,0.2336031478063319 -7126.0,0.2335224780694316 -7127.0,0.23344183619006018 -7128.0,0.23336122215859778 -7129.0,0.2332806359654276 -7130.0,0.23320007760093642 -7131.0,0.23311954705551413 -7132.0,0.23303904431955408 -7133.0,0.2329585693834528 -7134.0,0.23287812223761034 -7135.0,0.23279770287242982 -7136.0,0.23271731127831785 -7137.0,0.23263694744568433 -7138.0,0.23255661136494238 -7139.0,0.23247630302650854 -7140.0,0.23239602242080257 -7141.0,0.23231576953824762 -7142.0,0.23223554436927005 -7143.0,0.23215534690429968 -7144.0,0.2320751771337694 -7145.0,0.2319950350481157 -7146.0,0.23191492063777805 -7147.0,0.2318348338931995 -7148.0,0.23175477480482623 -7149.0,0.23167474336310784 -7150.0,0.23159473955849708 -7151.0,0.23151476338145013 -7152.0,0.23143481482242637 -7153.0,0.23135489387188862 -7154.0,0.23127500052030275 -7155.0,0.23119513475813813 -7156.0,0.23111529657586743 -7157.0,0.23103548596396645 -7158.0,0.2309557029129144 -7159.0,0.2308759474131937 -7160.0,0.2307962194552902 -7161.0,0.23071651902969278 -7162.0,0.23063684612689395 -7163.0,0.23055720073738914 -7164.0,0.23047758285167735 -7165.0,0.23039799246026066 -7166.0,0.23031842955364462 -7167.0,0.23023889412233783 -7168.0,0.23015938615685244 -7169.0,0.2300799056477036 -7170.0,0.23000045258540994 -7171.0,0.22992102696049324 -7172.0,0.22984162876347866 -7173.0,0.2297622579848945 -7174.0,0.22968291461527243 -7175.0,0.22960359864514746 -7176.0,0.2295243100650576 -7177.0,0.22944504886554448 -7178.0,0.22936581503715267 -7179.0,0.22928660857043026 -7180.0,0.2292074294559284 -7181.0,0.22912827768420171 -7182.0,0.22904915324580782 -7183.0,0.22897005613130791 -7184.0,0.22889098633126617 -7185.0,0.2288119438362502 -7186.0,0.22873292863683073 -7187.0,0.22865394072358194 -7188.0,0.22857498008708105 -7189.0,0.2284960467179087 -7190.0,0.22841714060664867 -7191.0,0.22833826174388805 -7192.0,0.22825941012021714 -7193.0,0.22818058572622954 -7194.0,0.22810178855252214 -7195.0,0.22802301858969487 -7196.0,0.22794427582835122 -7197.0,0.22786556025909757 -7198.0,0.2277868718725439 -7199.0,0.2277082106593031 -7200.0,0.22762957660999159 -7201.0,0.22755096971522878 -7202.0,0.2274723899656376 -7203.0,0.2273938373518439 -7204.0,0.22731531186447704 -7205.0,0.2272368134941694 -7206.0,0.22715834223155681 -7207.0,0.2270798980672781 -7208.0,0.22700148099197556 -7209.0,0.22692309099629454 -7210.0,0.22684472807088374 -7211.0,0.22676639220639494 -7212.0,0.22668808339348331 -7213.0,0.22660980162280722 -7214.0,0.22653154688502813 -7215.0,0.22645331917081093 -7216.0,0.2263751184708235 -7217.0,0.22629694477573717 -7218.0,0.2262187980762263 -7219.0,0.22614067836296867 -7220.0,0.22606258562664502 -7221.0,0.22598451985793963 -7222.0,0.22590648104753966 -7223.0,0.22582846918613578 -7224.0,0.22575048426442162 -7225.0,0.22567252627309425 -7226.0,0.2255945952028538 -7227.0,0.2255166910444037 -7228.0,0.2254388137884505 -7229.0,0.22536096342570405 -7230.0,0.22528313994687732 -7231.0,0.22520534334268658 -7232.0,0.22512757360385127 -7233.0,0.225049830721094 -7234.0,0.22497211468514067 -7235.0,0.22489442548672023 -7236.0,0.22481676311656498 -7237.0,0.22473912756541034 -7238.0,0.22466151882399504 -7239.0,0.22458393688306078 -7240.0,0.22450638173335272 -7241.0,0.22442885336561902 -7242.0,0.2243513517706112 -7243.0,0.22427387693908374 -7244.0,0.2241964288617946 -7245.0,0.2241190075295047 -7246.0,0.22404161293297833 -7247.0,0.22396424506298276 -7248.0,0.22388690391028868 -7249.0,0.22380958946566976 -7250.0,0.223732301719903 -7251.0,0.22365504066376854 -7252.0,0.22357780628804969 -7253.0,0.22350059858353297 -7254.0,0.223423417541008 -7255.0,0.22334626315126774 -7256.0,0.22326913540510812 -7257.0,0.2231920342933285 -7258.0,0.22311495980673116 -7259.0,0.22303791193612174 -7260.0,0.22296089067230895 -7261.0,0.22288389600610475 -7262.0,0.2228069279283242 -7263.0,0.22272998642978564 -7264.0,0.22265307150131042 -7265.0,0.22257618313372324 -7266.0,0.22249932131785177 -7267.0,0.22242248604452708 -7268.0,0.22234567730458318 -7269.0,0.22226889508885736 -7270.0,0.22219213938819016 -7271.0,0.22211541019342504 -7272.0,0.2220387074954089 -7273.0,0.2219620312849916 -7274.0,0.22188538155302623 -7275.0,0.221808758290369 -7276.0,0.22173216148787941 -7277.0,0.22165559113641992 -7278.0,0.22157904722685634 -7279.0,0.2215025297500574 -7280.0,0.2214260386968953 -7281.0,0.22134957405824507 -7282.0,0.22127313582498515 -7283.0,0.2211967239879969 -7284.0,0.22112033853816507 -7285.0,0.2210439794663773 -7286.0,0.22096764676352462 -7287.0,0.22089134042050101 -7288.0,0.2208150604282037 -7289.0,0.22073880677753316 -7290.0,0.2206625794593927 -7291.0,0.22058637846468912 -7292.0,0.22051020378433206 -7293.0,0.22043405540923455 -7294.0,0.22035793333031253 -7295.0,0.22028183753848532 -7296.0,0.22020576802467515 -7297.0,0.22012972477980752 -7298.0,0.220053707794811 -7299.0,0.21997771706061736 -7300.0,0.2199017525681614 -7301.0,0.21982581430838122 -7302.0,0.21974990227221777 -7303.0,0.2196740164506155 -7304.0,0.21959815683452158 -7305.0,0.21952232341488664 -7306.0,0.21944651618266428 -7307.0,0.21937073512881122 -7308.0,0.2192949802442874 -7309.0,0.21921925152005572 -7310.0,0.2191435489470824 -7311.0,0.21906787251633658 -7312.0,0.21899222221879072 -7313.0,0.21891659804542016 -7314.0,0.21884099998720358 -7315.0,0.21876542803512264 -7316.0,0.21868988218016222 -7317.0,0.21861436241331014 -7318.0,0.21853886872555756 -7319.0,0.21846340110789852 -7320.0,0.21838795955133042 -7321.0,0.2183125440468535 -7322.0,0.21823715458547133 -7323.0,0.21816179115819043 -7324.0,0.21808645375602057 -7325.0,0.21801114236997443 -7326.0,0.21793585699106802 -7327.0,0.21786059761032034 -7328.0,0.2177853642187534 -7329.0,0.21771015680739256 -7330.0,0.21763497536726595 -7331.0,0.2175598198894051 -7332.0,0.2174846903648444 -7333.0,0.21740958678462158 -7334.0,0.2173345091397772 -7335.0,0.21725945742135516 -7336.0,0.21718443162040224 -7337.0,0.21710943172796848 -7338.0,0.21703445773510688 -7339.0,0.21695950963287364 -7340.0,0.21688458741232797 -7341.0,0.2168096910645322 -7342.0,0.2167348205805517 -7343.0,0.2166599759514551 -7344.0,0.2165851571683138 -7345.0,0.2165103642222026 -7346.0,0.2164355971041992 -7347.0,0.21636085580538444 -7348.0,0.21628614031684223 -7349.0,0.21621145062965952 -7350.0,0.21613678673492642 -7351.0,0.21606214862373604 -7352.0,0.21598753628718464 -7353.0,0.21591294971637143 -7354.0,0.2158383889023989 -7355.0,0.21576385383637234 -7356.0,0.2156893445094004 -7357.0,0.21561486091259455 -7358.0,0.21554040303706953 -7359.0,0.21546597087394298 -7360.0,0.21539156441433577 -7361.0,0.21531718364937164 -7362.0,0.21524282857017762 -7363.0,0.2151684991678836 -7364.0,0.21509419543362268 -7365.0,0.215019917358531 -7366.0,0.21494566493374762 -7367.0,0.21487143815041487 -7368.0,0.21479723699967795 -7369.0,0.2147230614726853 -7370.0,0.2146489115605882 -7371.0,0.21457478725454127 -7372.0,0.21450068854570184 -7373.0,0.2144266154252306 -7374.0,0.21435256788429108 -7375.0,0.21427854591405004 -7376.0,0.21420454950567713 -7377.0,0.21413057865034518 -7378.0,0.21405663333922992 -7379.0,0.21398271356351029 -7380.0,0.21390881931436811 -7381.0,0.2138349505829885 -7382.0,0.21376110736055925 -7383.0,0.21368728963827152 -7384.0,0.21361349740731944 -7385.0,0.21353973065890003 -7386.0,0.21346598938421352 -7387.0,0.21339227357446305 -7388.0,0.21331858322085498 -7389.0,0.21324491831459844 -7390.0,0.21317127884690587 -7391.0,0.21309766480899253 -7392.0,0.21302407619207686 -7393.0,0.21295051298738024 -7394.0,0.21287697518612714 -7395.0,0.21280346277954498 -7396.0,0.21272997575886438 -7397.0,0.21265651411531875 -7398.0,0.21258307784014474 -7399.0,0.21250966692458184 -7400.0,0.2124362813598728 -7401.0,0.21236292113726313 -7402.0,0.21228958624800157 -7403.0,0.21221627668333978 -7404.0,0.21214299243453244 -7405.0,0.21206973349283734 -7406.0,0.2119964998495151 -7407.0,0.21192329149582964 -7408.0,0.21185010842304758 -7409.0,0.21177695062243884 -7410.0,0.21170381808527614 -7411.0,0.21163071080283535 -7412.0,0.21155762876639528 -7413.0,0.21148457196723783 -7414.0,0.21141154039664775 -7415.0,0.21133853404591302 -7416.0,0.2112655529063244 -7417.0,0.2111925969691759 -7418.0,0.21111966622576428 -7419.0,0.21104676066738956 -7420.0,0.21097388028535452 -7421.0,0.21090102507096514 -7422.0,0.21082819501553032 -7423.0,0.21075539011036193 -7424.0,0.21068261034677493 -7425.0,0.21060985571608715 -7426.0,0.21053712620961954 -7427.0,0.21046442181869598 -7428.0,0.2103917425346434 -7429.0,0.21031908834879165 -7430.0,0.21024645925247368 -7431.0,0.21017385523702525 -7432.0,0.2101012762937854 -7433.0,0.2100287224140958 -7434.0,0.20995619358930145 -7435.0,0.2098836898107501 -7436.0,0.20981121106979264 -7437.0,0.20973875735778283 -7438.0,0.20966632866607754 -7439.0,0.20959392498603646 -7440.0,0.20952154630902242 -7441.0,0.20944919262640121 -7442.0,0.2093768639295415 -7443.0,0.20930456020981503 -7444.0,0.20923228145859643 -7445.0,0.2091600276672635 -7446.0,0.20908779882719677 -7447.0,0.20901559492977995 -7448.0,0.20894341596639954 -7449.0,0.20887126192844524 -7450.0,0.20879913280730952 -7451.0,0.20872702859438794 -7452.0,0.20865494928107892 -7453.0,0.20858289485878403 -7454.0,0.2085108653189076 -7455.0,0.20843886065285716 -7456.0,0.2083668808520429 -7457.0,0.20829492590787835 -7458.0,0.20822299581177964 -7459.0,0.20815109055516612 -7460.0,0.20807921012946007 -7461.0,0.20800735452608654 -7462.0,0.2079355237364738 -7463.0,0.20786371775205287 -7464.0,0.20779193656425793 -7465.0,0.20772018016452587 -7466.0,0.20764844854429682 -7467.0,0.20757674169501358 -7468.0,0.20750505960812218 -7469.0,0.20743340227507134 -7470.0,0.20736176968731299 -7471.0,0.20729016183630178 -7472.0,0.20721857871349547 -7473.0,0.20714702031035467 -7474.0,0.20707548661834307 -7475.0,0.20700397762892714 -7476.0,0.2069324933335764 -7477.0,0.2068610337237633 -7478.0,0.20678959879096323 -7479.0,0.20671818852665455 -7480.0,0.2066468029223185 -7481.0,0.2065754419694393 -7482.0,0.2065041056595041 -7483.0,0.20643279398400308 -7484.0,0.20636150693442915 -7485.0,0.2062902445022784 -7486.0,0.20621900667904963 -7487.0,0.20614779345624482 -7488.0,0.2060766048253686 -7489.0,0.20600544077792882 -7490.0,0.20593430130543602 -7491.0,0.2058631863994039 -7492.0,0.20579209605134882 -7493.0,0.20572103025279037 -7494.0,0.2056499889952508 -7495.0,0.2055789722702555 -7496.0,0.20550798006933263 -7497.0,0.20543701238401332 -7498.0,0.20536606920583172 -7499.0,0.20529515052632477 -7500.0,0.20522425633703242 -7501.0,0.20515338662949748 -7502.0,0.20508254139526574 -7503.0,0.20501172062588582 -7504.0,0.20494092431290942 -7505.0,0.20487015244789095 -7506.0,0.20479940502238794 -7507.0,0.20472868202796066 -7508.0,0.20465798345617242 -7509.0,0.20458730929858934 -7510.0,0.20451665954678058 -7511.0,0.20444603419231808 -7512.0,0.20437543322677681 -7513.0,0.20430485664173453 -7514.0,0.20423430442877202 -7515.0,0.20416377657947285 -7516.0,0.2040932730854236 -7517.0,0.20402279393821376 -7518.0,0.20395233912943558 -7519.0,0.20388190865068445 -7520.0,0.2038115024935584 -7521.0,0.20374112064965857 -7522.0,0.20367076311058885 -7523.0,0.2036004298679562 -7524.0,0.20353012091337025 -7525.0,0.20345983623844377 -7526.0,0.20338957583479222 -7527.0,0.20331933969403415 -7528.0,0.20324912780779078 -7529.0,0.20317894016768642 -7530.0,0.20310877676534816 -7531.0,0.20303863759240606 -7532.0,0.20296852264049298 -7533.0,0.2028984319012448 -7534.0,0.20282836536630006 -7535.0,0.20275832302730043 -7536.0,0.20268830487589043 -7537.0,0.20261831090371726 -7538.0,0.20254834110243128 -7539.0,0.2024783954636855 -7540.0,0.20240847397913603 -7541.0,0.2023385766404416 -7542.0,0.20226870343926412 -7543.0,0.2021988543672681 -7544.0,0.20212902941612115 -7545.0,0.20205922857749356 -7546.0,0.20198945184305872 -7547.0,0.20191969920449268 -7548.0,0.20184997065347451 -7549.0,0.20178026618168607 -7550.0,0.20171058578081216 -7551.0,0.20164092944254036 -7552.0,0.20157129715856126 -7553.0,0.20150168892056813 -7554.0,0.20143210472025727 -7555.0,0.20136254454932787 -7556.0,0.20129300839948175 -7557.0,0.20122349626242392 -7558.0,0.20115400812986195 -7559.0,0.2010845439935065 -7560.0,0.20101510384507096 -7561.0,0.20094568767627166 -7562.0,0.2008762954788277 -7563.0,0.2008069272444612 -7564.0,0.20073758296489688 -7565.0,0.20066826263186266 -7566.0,0.20059896623708895 -7567.0,0.20052969377230936 -7568.0,0.20046044522926004 -7569.0,0.20039122059968026 -7570.0,0.20032201987531195 -7571.0,0.20025284304790003 -7572.0,0.20018369010919213 -7573.0,0.20011456105093883 -7574.0,0.20004545586489364 -7575.0,0.1999763745428127 -7576.0,0.19990731707645518 -7577.0,0.19983828345758295 -7578.0,0.1997692736779609 -7579.0,0.19970028772935658 -7580.0,0.19963132560354052 -7581.0,0.199562387292286 -7582.0,0.19949347278736926 -7583.0,0.1994245820805692 -7584.0,0.19935571516366776 -7585.0,0.19928687202844952 -7586.0,0.19921805266670212 -7587.0,0.19914925707021577 -7588.0,0.19908048523078375 -7589.0,0.19901173714020207 -7590.0,0.19894301279026957 -7591.0,0.1988743121727879 -7592.0,0.1988056352795616 -7593.0,0.1987369821023981 -7594.0,0.19866835263310748 -7595.0,0.1985997468635028 -7596.0,0.1985311647853998 -7597.0,0.19846260639061725 -7598.0,0.19839407167097656 -7599.0,0.19832556061830212 -7600.0,0.19825707322442093 -7601.0,0.19818860948116307 -7602.0,0.19812016938036123 -7603.0,0.19805175291385108 -7604.0,0.19798336007347095 -7605.0,0.19791499085106215 -7606.0,0.19784664523846865 -7607.0,0.1977783232275374 -7608.0,0.19771002481011804 -7609.0,0.19764174997806302 -7610.0,0.19757349872322777 -7611.0,0.19750527103747031 -7612.0,0.19743706691265164 -7613.0,0.19736888634063543 -7614.0,0.19730072931328832 -7615.0,0.1972325958224796 -7616.0,0.1971644858600815 -7617.0,0.19709639941796894 -7618.0,0.1970283364880198 -7619.0,0.19696029706211454 -7620.0,0.19689228113213667 -7621.0,0.19682428868997226 -7622.0,0.19675631972751045 -7623.0,0.19668837423664293 -7624.0,0.19662045220926436 -7625.0,0.1965525536372721 -7626.0,0.19648467851256637 -7627.0,0.1964168268270501 -7628.0,0.19634899857262916 -7629.0,0.19628119374121214 -7630.0,0.19621341232471035 -7631.0,0.19614565431503803 -7632.0,0.19607791970411206 -7633.0,0.19601020848385228 -7634.0,0.19594252064618117 -7635.0,0.19587485618302414 -7636.0,0.1958072150863092 -7637.0,0.19573959734796736 -7638.0,0.19567200295993228 -7639.0,0.19560443191414045 -7640.0,0.1955368842025311 -7641.0,0.19546935981704636 -7642.0,0.19540185874963098 -7643.0,0.19533438099223263 -7644.0,0.19526692653680167 -7645.0,0.1951994953752913 -7646.0,0.19513208749965744 -7647.0,0.19506470290185884 -7648.0,0.19499734157385706 -7649.0,0.1949300035076163 -7650.0,0.1948626886951037 -7651.0,0.19479539712828903 -7652.0,0.19472812879914494 -7653.0,0.19466088369964676 -7654.0,0.1945936618217727 -7655.0,0.1945264631575036 -7656.0,0.19445928769882326 -7657.0,0.19439213543771802 -7658.0,0.19432500636617722 -7659.0,0.19425790047619274 -7660.0,0.19419081775975944 -7661.0,0.19412375820887473 -7662.0,0.19405672181553899 -7663.0,0.1939897085717552 -7664.0,0.19392271846952924 -7665.0,0.19385575150086962 -7666.0,0.19378880765778767 -7667.0,0.19372188693229753 -7668.0,0.19365498931641598 -7669.0,0.1935881148021627 -7670.0,0.19352126338155995 -7671.0,0.19345443504663293 -7672.0,0.19338762978940943 -7673.0,0.19332084760192017 -7674.0,0.1932540884761984 -7675.0,0.19318735240428037 -7676.0,0.19312063937820484 -7677.0,0.19305394939001352 -7678.0,0.1929872824317507 -7679.0,0.1929206384954636 -7680.0,0.19285401757320195 -7681.0,0.19278741965701848 -7682.0,0.1927208447389685 -7683.0,0.19265429281111013 -7684.0,0.1925877638655041 -7685.0,0.19252125789421412 -7686.0,0.1924547748893065 -7687.0,0.19238831484285027 -7688.0,0.19232187774691722 -7689.0,0.1922554635935819 -7690.0,0.1921890723749216 -7691.0,0.1921227040830163 -7692.0,0.1920563587099488 -7693.0,0.1919900362478045 -7694.0,0.19192373668867171 -7695.0,0.1918574600246413 -7696.0,0.19179120624780702 -7697.0,0.19172497535026517 -7698.0,0.191658767324115 -7699.0,0.19159258216145827 -7700.0,0.19152641985439967 -7701.0,0.19146028039504645 -7702.0,0.19139416377550872 -7703.0,0.19132806998789917 -7704.0,0.19126199902433333 -7705.0,0.19119595087692945 -7706.0,0.19112992553780841 -7707.0,0.19106392299909394 -7708.0,0.19099794325291233 -7709.0,0.19093198629139277 -7710.0,0.19086605210666696 -7711.0,0.19080014069086956 -7712.0,0.1907342520361377 -7713.0,0.19066838613461146 -7714.0,0.19060254297843343 -7715.0,0.19053672255974904 -7716.0,0.19047092487070638 -7717.0,0.19040514990345628 -7718.0,0.19033939765015223 -7719.0,0.19027366810295054 -7720.0,0.19020796125401007 -7721.0,0.19014227709549253 -7722.0,0.1900766156195622 -7723.0,0.19001097681838625 -7724.0,0.18994536068413442 -7725.0,0.18987976720897914 -7726.0,0.18981419638509564 -7727.0,0.18974864820466172 -7728.0,0.18968312265985807 -7729.0,0.18961761974286787 -7730.0,0.18955213944587715 -7731.0,0.18948668176107458 -7732.0,0.18942124668065155 -7733.0,0.18935583419680208 -7734.0,0.189290444301723 -7735.0,0.18922507698761373 -7736.0,0.18915973224667648 -7737.0,0.18909441007111602 -7738.0,0.18902911045313997 -7739.0,0.1889638333849585 -7740.0,0.18889857885878458 -7741.0,0.18883334686683376 -7742.0,0.18876813740132437 -7743.0,0.18870295045447744 -7744.0,0.18863778601851655 -7745.0,0.18857264408566818 -7746.0,0.18850752464816126 -7747.0,0.18844242769822758 -7748.0,0.1883773532281015 -7749.0,0.18831230123002018 -7750.0,0.18824727169622332 -7751.0,0.18818226461895343 -7752.0,0.18811727999045558 -7753.0,0.18805231780297763 -7754.0,0.18798737804877 -7755.0,0.18792246072008595 -7756.0,0.18785756580918123 -7757.0,0.18779269330831438 -7758.0,0.1877278432097466 -7759.0,0.18766301550574171 -7760.0,0.18759821018856626 -7761.0,0.18753342725048944 -7762.0,0.18746866668378315 -7763.0,0.18740392848072185 -7764.0,0.18733921263358286 -7765.0,0.18727451913464593 -7766.0,0.1872098479761937 -7767.0,0.18714519915051128 -7768.0,0.18708057264988662 -7769.0,0.18701596846661017 -7770.0,0.1869513865929752 -7771.0,0.18688682702127749 -7772.0,0.18682228974381565 -7773.0,0.18675777475289074 -7774.0,0.18669328204080668 -7775.0,0.18662881159986988 -7776.0,0.18656436342238958 -7777.0,0.1864999375006775 -7778.0,0.18643553382704817 -7779.0,0.18637115239381863 -7780.0,0.18630679319330865 -7781.0,0.18624245621784075 -7782.0,0.18617814145973985 -7783.0,0.18611384891133378 -7784.0,0.18604957856495286 -7785.0,0.18598533041293014 -7786.0,0.1859211044476012 -7787.0,0.18585690066130447 -7788.0,0.18579271904638078 -7789.0,0.18572855959517387 -7790.0,0.18566442230002986 -7791.0,0.18560030715329773 -7792.0,0.1855362141473289 -7793.0,0.1854721432744777 -7794.0,0.18540809452710078 -7795.0,0.18534406789755772 -7796.0,0.1852800633782105 -7797.0,0.18521608096142397 -7798.0,0.18515212063956538 -7799.0,0.18508818240500477 -7800.0,0.18502426625011484 -7801.0,0.18496037216727074 -7802.0,0.18489650014885048 -7803.0,0.1848326501872345 -7804.0,0.18476882227480607 -7805.0,0.18470501640395087 -7806.0,0.18464123256705742 -7807.0,0.1845774707565167 -7808.0,0.18451373096472248 -7809.0,0.18445001318407098 -7810.0,0.18438631740696118 -7811.0,0.1843226436257946 -7812.0,0.18425899183297548 -7813.0,0.18419536202091055 -7814.0,0.18413175418200933 -7815.0,0.18406816830868378 -7816.0,0.18400460439334865 -7817.0,0.18394106242842112 -7818.0,0.18387754240632118 -7819.0,0.18381404431947138 -7820.0,0.18375056816029678 -7821.0,0.18368711392122522 -7822.0,0.18362368159468698 -7823.0,0.18356027117311513 -7824.0,0.1834968826489452 -7825.0,0.18343351601461547 -7826.0,0.1833701712625667 -7827.0,0.18330684838524236 -7828.0,0.18324354737508847 -7829.0,0.18318026822455372 -7830.0,0.18311701092608929 -7831.0,0.18305377547214916 -7832.0,0.1829905618551897 -7833.0,0.18292737006767004 -7834.0,0.18286420010205182 -7835.0,0.1828010519507994 -7836.0,0.18273792560637955 -7837.0,0.18267482106126184 -7838.0,0.18261173830791838 -7839.0,0.1825486773388238 -7840.0,0.1824856381464554 -7841.0,0.18242262072329304 -7842.0,0.1823596250618193 -7843.0,0.18229665115451912 -7844.0,0.18223369899388028 -7845.0,0.18217076857239298 -7846.0,0.18210785988255013 -7847.0,0.1820449729168471 -7848.0,0.18198210766778206 -7849.0,0.1819192641278555 -7850.0,0.1818564422895708 -7851.0,0.18179364214543361 -7852.0,0.18173086368795247 -7853.0,0.18166810690963825 -7854.0,0.18160537180300465 -7855.0,0.1815426583605677 -7856.0,0.18147996657484622 -7857.0,0.18141729643836155 -7858.0,0.18135464794363754 -7859.0,0.18129202108320075 -7860.0,0.1812294158495802 -7861.0,0.18116683223530758 -7862.0,0.18110427023291703 -7863.0,0.18104172983494551 -7864.0,0.18097921103393227 -7865.0,0.18091671382241936 -7866.0,0.18085423819295124 -7867.0,0.18079178413807512 -7868.0,0.1807293516503406 -7869.0,0.18066694072230002 -7870.0,0.1806045513465081 -7871.0,0.18054218351552237 -7872.0,0.1804798372219027 -7873.0,0.1804175124582117 -7874.0,0.18035520921701442 -7875.0,0.18029292749087858 -7876.0,0.18023066727237444 -7877.0,0.18016842855407475 -7878.0,0.18010621132855498 -7879.0,0.18004401558839295 -7880.0,0.17998184132616923 -7881.0,0.17991968853446688 -7882.0,0.17985755720587154 -7883.0,0.17979544733297134 -7884.0,0.1797333589083571 -7885.0,0.17967129192462203 -7886.0,0.17960924637436207 -7887.0,0.1795472222501756 -7888.0,0.17948521954466365 -7889.0,0.17942323825042963 -7890.0,0.17936127836007978 -7891.0,0.1792993398662226 -7892.0,0.17923742276146937 -7893.0,0.17917552703843379 -7894.0,0.17911365268973212 -7895.0,0.1790517997079833 -7896.0,0.1789899680858086 -7897.0,0.17892815781583207 -7898.0,0.1788663688906801 -7899.0,0.1788046013029818 -7900.0,0.1787428550453687 -7901.0,0.17868113011047496 -7902.0,0.17861942649093715 -7903.0,0.17855774417939463 -7904.0,0.178496083168489 -7905.0,0.17843444345086468 -7906.0,0.17837282501916837 -7907.0,0.17831122786604958 -7908.0,0.1782496519841601 -7909.0,0.17818809736615446 -7910.0,0.17812656400468954 -7911.0,0.178065051892425 -7912.0,0.17800356102202278 -7913.0,0.1779420913861475 -7914.0,0.17788064297746634 -7915.0,0.17781921578864884 -7916.0,0.1777578098123673 -7917.0,0.17769642504129635 -7918.0,0.17763506146811328 -7919.0,0.17757371908549782 -7920.0,0.17751239788613235 -7921.0,0.17745109786270158 -7922.0,0.177389819007893 -7923.0,0.17732856131439637 -7924.0,0.17726732477490417 -7925.0,0.17720610938211126 -7926.0,0.1771449151287152 -7927.0,0.17708374200741583 -7928.0,0.17702259001091575 -7929.0,0.17696145913191988 -7930.0,0.17690034936313584 -7931.0,0.17683926069727363 -7932.0,0.1767781931270458 -7933.0,0.1767171466451675 -7934.0,0.17665612124435626 -7935.0,0.17659511691733226 -7936.0,0.17653413365681808 -7937.0,0.1764731714555389 -7938.0,0.1764122303062223 -7939.0,0.17635131020159855 -7940.0,0.17629041113440022 -7941.0,0.1762295330973626 -7942.0,0.1761686760832233 -7943.0,0.17610784008472258 -7944.0,0.17604702509460307 -7945.0,0.1759862311056101 -7946.0,0.1759254581104913 -7947.0,0.17586470610199692 -7948.0,0.17580397507287968 -7949.0,0.17574326501589485 -7950.0,0.1756825759238001 -7951.0,0.17562190778935569 -7952.0,0.1755612606053244 -7953.0,0.1755006343644714 -7954.0,0.17544002905956446 -7955.0,0.1753794446833738 -7956.0,0.17531888122867215 -7957.0,0.17525833868823468 -7958.0,0.1751978170548392 -7959.0,0.17513731632126583 -7960.0,0.17507683648029737 -7961.0,0.17501637752471888 -7962.0,0.1749559394473182 -7963.0,0.1748955222408854 -7964.0,0.17483512589821318 -7965.0,0.1747747504120967 -7966.0,0.17471439577533363 -7967.0,0.17465406198072403 -7968.0,0.1745937490210706 -7969.0,0.1745334568891784 -7970.0,0.174473185577855 -7971.0,0.17441293507991054 -7972.0,0.1743527053881575 -7973.0,0.17429249649541098 -7974.0,0.17423230839448844 -7975.0,0.17417214107820994 -7976.0,0.17411199453939788 -7977.0,0.1740518687708773 -7978.0,0.17399176376547557 -7979.0,0.17393167951602265 -7980.0,0.17387161601535087 -7981.0,0.17381157325629518 -7982.0,0.1737515512316928 -7983.0,0.17369154993438365 -7984.0,0.17363156935720994 -7985.0,0.17357160949301648 -7986.0,0.1735116703346504 -7987.0,0.17345175187496154 -7988.0,0.1733918541068019 -7989.0,0.17333197702302625 -7990.0,0.17327212061649164 -7991.0,0.1732122848800576 -7992.0,0.17315246980658625 -7993.0,0.173092675388942 -7994.0,0.17303290161999188 -7995.0,0.17297314849260523 -7996.0,0.17291341599965404 -7997.0,0.17285370413401258 -7998.0,0.17279401288855772 -7999.0,0.17273434225616868 -8000.0,0.17267469222972723 -8001.0,0.1726150628021175 -8002.0,0.1725554539662262 -8003.0,0.17249586571494238 -8004.0,0.17243629804115765 -8005.0,0.17237675093776592 -8006.0,0.17231722439766378 -8007.0,0.17225771841375007 -8008.0,0.17219823297892614 -8009.0,0.1721387680860959 -8010.0,0.17207932372816556 -8011.0,0.17201989989804387 -8012.0,0.17196049658864196 -8013.0,0.1719011137928735 -8014.0,0.1718417515036545 -8015.0,0.17178240971390352 -8016.0,0.17172308841654146 -8017.0,0.17166378760449183 -8018.0,0.17160450727068033 -8019.0,0.17154524740803537 -8020.0,0.1714860080094876 -8021.0,0.17142678906797026 -8022.0,0.1713675905764189 -8023.0,0.17130841252777163 -8024.0,0.17124925491496884 -8025.0,0.1711901177309536 -8026.0,0.17113100096867115 -8027.0,0.17107190462106936 -8028.0,0.17101282868109846 -8029.0,0.1709537731417111 -8030.0,0.17089473799586244 -8031.0,0.17083572323650992 -8032.0,0.17077672885661357 -8033.0,0.1707177548491358 -8034.0,0.1706588012070414 -8035.0,0.17059986792329768 -8036.0,0.17054095499087432 -8037.0,0.17048206240274338 -8038.0,0.17042319015187946 -8039.0,0.17036433823125952 -8040.0,0.17030550663386296 -8041.0,0.17024669535267153 -8042.0,0.1701879043806696 -8043.0,0.1701291337108437 -8044.0,0.17007038333618305 -8045.0,0.17001165324967907 -8046.0,0.16995294344432568 -8047.0,0.1698942539131193 -8048.0,0.16983558464905862 -8049.0,0.1697769356451449 -8050.0,0.1697183068943817 -8051.0,0.16965969838977504 -8052.0,0.16960111012433332 -8053.0,0.16954254209106745 -8054.0,0.16948399428299066 -8055.0,0.16942546669311861 -8056.0,0.1693669593144694 -8057.0,0.16930847214006356 -8058.0,0.16925000516292393 -8059.0,0.16919155837607588 -8060.0,0.16913313177254707 -8061.0,0.16907472534536774 -8062.0,0.1690163390875703 -8063.0,0.16895797299218981 -8064.0,0.16889962705226355 -8065.0,0.16884130126083127 -8066.0,0.16878299561093518 -8067.0,0.1687247100956198 -8068.0,0.16866644470793213 -8069.0,0.16860819944092148 -8070.0,0.16854997428763968 -8071.0,0.16849176924114084 -8072.0,0.16843358429448155 -8073.0,0.16837541944072074 -8074.0,0.16831727467291982 -8075.0,0.1682591499841425 -8076.0,0.16820104536745495 -8077.0,0.16814296081592567 -8078.0,0.16808489632262566 -8079.0,0.1680268518806282 -8080.0,0.16796882748300906 -8081.0,0.16791082312284628 -8082.0,0.16785283879322044 -8083.0,0.1677948744872144 -8084.0,0.1677369301979134 -8085.0,0.16767900591840518 -8086.0,0.16762110164177974 -8087.0,0.16756321736112958 -8088.0,0.16750535306954945 -8089.0,0.16744750876013664 -8090.0,0.1673896844259907 -8091.0,0.16733188006021363 -8092.0,0.16727409565590975 -8093.0,0.16721633120618587 -8094.0,0.16715858670415104 -8095.0,0.16710086214291683 -8096.0,0.16704315751559703 -8097.0,0.166985472815308 -8098.0,0.16692780803516832 -8099.0,0.16687016316829903 -8100.0,0.1668125382078235 -8101.0,0.16675493314686748 -8102.0,0.1666973479785591 -8103.0,0.1666397826960289 -8104.0,0.16658223729240976 -8105.0,0.1665247117608369 -8106.0,0.166467206094448 -8107.0,0.166409720286383 -8108.0,0.16635225432978432 -8109.0,0.1662948082177966 -8110.0,0.16623738194356702 -8111.0,0.166179975500245 -8112.0,0.1661225888809824 -8113.0,0.16606522207893337 -8114.0,0.16600787508725454 -8115.0,0.16595054789910474 -8116.0,0.16589324050764537 -8117.0,0.16583595290603995 -8118.0,0.16577868508745458 -8119.0,0.16572143704505757 -8120.0,0.1656642087720197 -8121.0,0.165607000261514 -8122.0,0.16554981150671594 -8123.0,0.16549264250080334 -8124.0,0.16543549323695628 -8125.0,0.16537836370835737 -8126.0,0.16532125390819138 -8127.0,0.1652641638296456 -8128.0,0.16520709346590953 -8129.0,0.1651500428101752 -8130.0,0.16509301185563674 -8131.0,0.16503600059549092 -8132.0,0.16497900902293658 -8133.0,0.16492203713117515 -8134.0,0.16486508491341018 -8135.0,0.16480815236284782 -8136.0,0.16475123947269632 -8137.0,0.16469434623616647 -8138.0,0.16463747264647127 -8139.0,0.16458061869682614 -8140.0,0.1645237843804488 -8141.0,0.1644669696905593 -8142.0,0.16441017462038016 -8143.0,0.16435339916313604 -8144.0,0.16429664331205415 -8145.0,0.16423990706036382 -8146.0,0.1641831904012969 -8147.0,0.16412649332808743 -8148.0,0.16406981583397198 -8149.0,0.1640131579121892 -8150.0,0.16395651955598037 -8151.0,0.1638999007585888 -8152.0,0.16384330151326038 -8153.0,0.16378672181324314 -8154.0,0.16373016165178764 -8155.0,0.16367362102214658 -8156.0,0.16361709991757514 -8157.0,0.16356059833133071 -8158.0,0.16350411625667313 -8159.0,0.1634476536868644 -8160.0,0.16339121061516904 -8161.0,0.16333478703485377 -8162.0,0.16327838293918764 -8163.0,0.1632219983214421 -8164.0,0.16316563317489083 -8165.0,0.16310928749280995 -8166.0,0.16305296126847774 -8167.0,0.16299665449517498 -8168.0,0.16294036716618457 -8169.0,0.16288409927479197 -8170.0,0.16282785081428475 -8171.0,0.16277162177795293 -8172.0,0.16271541215908872 -8173.0,0.1626592219509868 -8174.0,0.16260305114694404 -8175.0,0.1625468997402597 -8176.0,0.16249076772423532 -8177.0,0.16243465509217475 -8178.0,0.16237856183738417 -8179.0,0.16232248795317203 -8180.0,0.16226643343284922 -8181.0,0.16221039826972872 -8182.0,0.16215438245712605 -8183.0,0.16209838598835885 -8184.0,0.16204240885674723 -8185.0,0.16198645105561343 -8186.0,0.1619305125782822 -8187.0,0.1618745934180804 -8188.0,0.1618186935683373 -8189.0,0.1617628130223845 -8190.0,0.16170695177355582 -8191.0,0.1616511098151874 -8192.0,0.16159528714061777 -8193.0,0.1615394837431876 -8194.0,0.16148369961624007 -8195.0,0.16142793475312042 -8196.0,0.1613721891471764 -8197.0,0.1613164627917579 -8198.0,0.1612607556802172 -8199.0,0.16120506780590885 -8200.0,0.16114939916218968 -8201.0,0.16109374974241888 -8202.0,0.16103811953995778 -8203.0,0.16098250854817023 -8204.0,0.1609269167604221 -8205.0,0.1608713441700818 -8206.0,0.1608157907705199 -8207.0,0.16076025655510928 -8208.0,0.1607047415172251 -8209.0,0.16064924565024485 -8210.0,0.16059376894754823 -8211.0,0.16053831140251734 -8212.0,0.16048287300853642 -8213.0,0.16042745375899217 -8214.0,0.16037205364727336 -8215.0,0.1603166726667713 -8216.0,0.1602613108108793 -8217.0,0.16020596807299317 -8218.0,0.16015064444651095 -8219.0,0.16009533992483288 -8220.0,0.16004005450136158 -8221.0,0.15998478816950185 -8222.0,0.15992954092266085 -8223.0,0.159874312754248 -8224.0,0.15981910365767496 -8225.0,0.15976391362635567 -8226.0,0.1597087426537064 -8227.0,0.15965359073314564 -8228.0,0.15959845785809418 -8229.0,0.15954334402197504 -8230.0,0.15948824921821358 -8231.0,0.15943317344023733 -8232.0,0.15937811668147625 -8233.0,0.15932307893536235 -8234.0,0.15926806019533016 -8235.0,0.1592130604548162 -8236.0,0.1591580797072595 -8237.0,0.15910311794610127 -8238.0,0.1590481751647849 -8239.0,0.15899325135675618 -8240.0,0.15893834651546307 -8241.0,0.15888346063435585 -8242.0,0.15882859370688696 -8243.0,0.15877374572651126 -8244.0,0.15871891668668575 -8245.0,0.15866410658086974 -8246.0,0.15860931540252474 -8247.0,0.15855454314511463 -8248.0,0.1584997898021054 -8249.0,0.1584450553669655 -8250.0,0.15839033983316533 -8251.0,0.1583356431941779 -8252.0,0.1582809654434782 -8253.0,0.1582263065745436 -8254.0,0.1581716665808537 -8255.0,0.1581170454558903 -8256.0,0.1580624431931376 -8257.0,0.15800785978608184 -8258.0,0.1579532952282117 -8259.0,0.15789874951301797 -8260.0,0.15784422263399378 -8261.0,0.15778971458463445 -8262.0,0.1577352253584376 -8263.0,0.15768075494890296 -8264.0,0.15762630334953276 -8265.0,0.1575718705538312 -8266.0,0.15751745655530494 -8267.0,0.15746306134746269 -8268.0,0.15740868492381554 -8269.0,0.1573543272778768 -8270.0,0.157299988403162 -8271.0,0.15724566829318884 -8272.0,0.15719136694147745 -8273.0,0.15713708434154994 -8274.0,0.15708282048693084 -8275.0,0.15702857537114695 -8276.0,0.1569743489877271 -8277.0,0.15692014133020257 -8278.0,0.1568659523921067 -8279.0,0.15681178216697525 -8280.0,0.156757630648346 -8281.0,0.15670349782975915 -8282.0,0.15664938370475698 -8283.0,0.15659528826688413 -8284.0,0.15654121150968736 -8285.0,0.15648715342671576 -8286.0,0.15643311401152052 -8287.0,0.15637909325765523 -8288.0,0.1563250911586755 -8289.0,0.15627110770813937 -8290.0,0.15621714289960695 -8291.0,0.15616319672664064 -8292.0,0.15610926918280507 -8293.0,0.15605536026166705 -8294.0,0.15600146995679567 -8295.0,0.15594759826176222 -8296.0,0.15589374517014015 -8297.0,0.1558399106755052 -8298.0,0.15578609477143537 -8299.0,0.1557322974515107 -8300.0,0.15567851870931365 -8301.0,0.15562475853842878 -8302.0,0.15557101693244288 -8303.0,0.15551729388494498 -8304.0,0.1554635893895263 -8305.0,0.1554099034397803 -8306.0,0.15535623602930268 -8307.0,0.15530258715169123 -8308.0,0.1552489568005461 -8309.0,0.1551953449694695 -8310.0,0.15514175165206598 -8311.0,0.15508817684194226 -8312.0,0.1550346205327072 -8313.0,0.154981082717972 -8314.0,0.15492756339134994 -8315.0,0.15487406254645658 -8316.0,0.1548205801769096 -8317.0,0.15476711627632905 -8318.0,0.15471367083833698 -8319.0,0.1546602438565578 -8320.0,0.15460683532461797 -8321.0,0.15455344523614636 -8322.0,0.15450007358477386 -8323.0,0.15444672036413362 -8324.0,0.15439338556786097 -8325.0,0.15434006918959353 -8326.0,0.15428677122297096 -8327.0,0.1542334916616353 -8328.0,0.15418023049923057 -8329.0,0.1541269877294032 -8330.0,0.15407376334580164 -8331.0,0.15402055734207665 -8332.0,0.15396736971188116 -8333.0,0.15391420044887022 -8334.0,0.15386104954670118 -8335.0,0.15380791699903348 -8336.0,0.15375480279952886 -8337.0,0.15370170694185106 -8338.0,0.15364862941966628 -8339.0,0.15359557022664264 -8340.0,0.15354252935645066 -8341.0,0.15348950680276285 -8342.0,0.1534365025592541 -8343.0,0.1533835166196013 -8344.0,0.15333054897748374 -8345.0,0.15327759962658263 -8346.0,0.1532246685605816 -8347.0,0.15317175577316627 -8348.0,0.1531188612580246 -8349.0,0.15306598500884663 -8350.0,0.15301312701932462 -8351.0,0.152960287283153 -8352.0,0.15290746579402836 -8353.0,0.15285466254564953 -8354.0,0.15280187753171737 -8355.0,0.1527491107459351 -8356.0,0.152696362182008 -8357.0,0.15264363183364357 -8358.0,0.1525909196945514 -8359.0,0.1525382257584434 -8360.0,0.15248555001903347 -8361.0,0.15243289247003788 -8362.0,0.15238025310517492 -8363.0,0.15232763191816512 -8364.0,0.1522750289027311 -8365.0,0.15222244405259774 -8366.0,0.15216987736149207 -8367.0,0.15211732882314324 -8368.0,0.1520647984312826 -8369.0,0.15201228617964363 -8370.0,0.15195979206196208 -8371.0,0.15190731607197572 -8372.0,0.15185485820342456 -8373.0,0.15180241845005074 -8374.0,0.15174999680559864 -8375.0,0.15169759326381466 -8376.0,0.1516452078184475 -8377.0,0.15159284046324795 -8378.0,0.15154049119196894 -8379.0,0.15148815999836557 -8380.0,0.15143584687619518 -8381.0,0.15138355181921714 -8382.0,0.15133127482119305 -8383.0,0.15127901587588663 -8384.0,0.1512267749770638 -8385.0,0.15117455211849254 -8386.0,0.1511223472939431 -8387.0,0.15107016049718783 -8388.0,0.15101799172200117 -8389.0,0.15096584096215984 -8390.0,0.15091370821144257 -8391.0,0.15086159346363034 -8392.0,0.1508094967125062 -8393.0,0.15075741795185546 -8394.0,0.15070535717546543 -8395.0,0.1506533143771257 -8396.0,0.15060128955062788 -8397.0,0.15054928268976583 -8398.0,0.15049729378833548 -8399.0,0.150445322840135 -8400.0,0.15039336983896456 -8401.0,0.1503414347786266 -8402.0,0.15028951765292559 -8403.0,0.15023761845566824 -8404.0,0.1501857371806633 -8405.0,0.15013387382172183 -8406.0,0.15008202837265677 -8407.0,0.15003020082728338 -8408.0,0.1499783911794191 -8409.0,0.1499265994228833 -8410.0,0.14987482555149767 -8411.0,0.14982306955908592 -8412.0,0.149771331439474 -8413.0,0.14971961118648983 -8414.0,0.14966790879396366 -8415.0,0.1496162242557277 -8416.0,0.14956455756561643 -8417.0,0.1495129087174663 -8418.0,0.1494612777051161 -8419.0,0.1494096645224065 -8420.0,0.14935806916318053 -8421.0,0.14930649162128318 -8422.0,0.14925493189056163 -8423.0,0.14920338996486518 -8424.0,0.1491518658380453 -8425.0,0.14910035950395542 -8426.0,0.14904887095645133 -8427.0,0.1489974001893908 -8428.0,0.1489459471966337 -8429.0,0.14889451197204212 -8430.0,0.14884309450948013 -8431.0,0.14879169480281412 -8432.0,0.14874031284591235 -8433.0,0.14868894863264542 -8434.0,0.1486376021568859 -8435.0,0.14858627341250857 -8436.0,0.14853496239339026 -8437.0,0.14848366909340996 -8438.0,0.14843239350644868 -8439.0,0.14838113562638974 -8440.0,0.14832989544711836 -8441.0,0.148278672962522 -8442.0,0.14822746816649016 -8443.0,0.14817628105291453 -8444.0,0.14812511161568878 -8445.0,0.14807395984870883 -8446.0,0.14802282574587264 -8447.0,0.14797170930108028 -8448.0,0.14792061050823394 -8449.0,0.14786952936123787 -8450.0,0.14781846585399852 -8451.0,0.1477674199804243 -8452.0,0.14771639173442594 -8453.0,0.147665381109916 -8454.0,0.1476143881008094 -8455.0,0.14756341270102294 -8456.0,0.14751245490447573 -8457.0,0.1474615147050888 -8458.0,0.14741059209678542 -8459.0,0.1473596870734908 -8460.0,0.14730879962913246 -8461.0,0.1472579297576398 -8462.0,0.14720707745294448 -8463.0,0.14715624270898012 -8464.0,0.1471054255196826 -8465.0,0.14705462587898974 -8466.0,0.14700384378084147 -8467.0,0.14695307921918 -8468.0,0.14690233218794932 -8469.0,0.14685160268109582 -8470.0,0.14680089069256771 -8471.0,0.14675019621631555 -8472.0,0.14669951924629177 -8473.0,0.146648859776451 -8474.0,0.1465982178007499 -8475.0,0.14654759331314735 -8476.0,0.14649698630760413 -8477.0,0.14644639677808322 -8478.0,0.14639582471854964 -8479.0,0.14634527012297058 -8480.0,0.14629473298531512 -8481.0,0.1462442132995547 -8482.0,0.14619371105966253 -8483.0,0.14614322625961418 -8484.0,0.14609275889338716 -8485.0,0.14604230895496104 -8486.0,0.14599187643831757 -8487.0,0.14594146133744046 -8488.0,0.1458910636463156 -8489.0,0.14584068335893086 -8490.0,0.1457903204692763 -8491.0,0.14573997497134394 -8492.0,0.145689646859128 -8493.0,0.14563933612662464 -8494.0,0.14558904276783216 -8495.0,0.14553876677675096 -8496.0,0.14548850814738346 -8497.0,0.14543826687373418 -8498.0,0.1453880429498097 -8499.0,0.14533783636961867 -8500.0,0.14528764712717182 -8501.0,0.1452374752164819 -8502.0,0.1451873206315638 -8503.0,0.1451371833664345 -8504.0,0.14508706341511288 -8505.0,0.1450369607716201 -8506.0,0.14498687542997915 -8507.0,0.14493680738421535 -8508.0,0.14488675662835587 -8509.0,0.14483672315643006 -8510.0,0.14478670696246926 -8511.0,0.14473670804050692 -8512.0,0.1446867263845785 -8513.0,0.1446367619887216 -8514.0,0.1445868148469758 -8515.0,0.1445368849533828 -8516.0,0.1444869723019863 -8517.0,0.14443707688683208 -8518.0,0.144387198701968 -8519.0,0.14433733774144397 -8520.0,0.14428749399931187 -8521.0,0.1442376674696258 -8522.0,0.14418785814644178 -8523.0,0.14413806602381787 -8524.0,0.14408829109581434 -8525.0,0.1440385333564933 -8526.0,0.14398879279991908 -8527.0,0.14393906942015797 -8528.0,0.14388936321127835 -8529.0,0.14383967416735058 -8530.0,0.14379000228244718 -8531.0,0.1437403475506426 -8532.0,0.14369070996601346 -8533.0,0.1436410895226383 -8534.0,0.1435914862145978 -8535.0,0.14354190003597464 -8536.0,0.14349233098085354 -8537.0,0.14344277904332126 -8538.0,0.14339324421746666 -8539.0,0.14334372649738053 -8540.0,0.1432942258771558 -8541.0,0.14324474235088744 -8542.0,0.1431952759126724 -8543.0,0.14314582655660968 -8544.0,0.14309639427680035 -8545.0,0.1430469790673475 -8546.0,0.14299758092235623 -8547.0,0.14294819983593376 -8548.0,0.1428988358021892 -8549.0,0.14284948881523388 -8550.0,0.14280015886918096 -8551.0,0.14275084595814586 -8552.0,0.14270155007624577 -8553.0,0.14265227121760016 -8554.0,0.14260300937633036 -8555.0,0.14255376454655982 -8556.0,0.14250453672241398 -8557.0,0.14245532589802035 -8558.0,0.14240613206750838 -8559.0,0.14235695522500963 -8560.0,0.1423077953646577 -8561.0,0.14225865248058814 -8562.0,0.14220952656693855 -8563.0,0.1421604176178486 -8564.0,0.14211132562745993 -8565.0,0.1420622505899162 -8566.0,0.14201319249936317 -8567.0,0.14196415134994853 -8568.0,0.14191512713582205 -8569.0,0.14186611985113545 -8570.0,0.1418171294900426 -8571.0,0.14176815604669923 -8572.0,0.14171919951526324 -8573.0,0.14167025988989437 -8574.0,0.1416213371647546 -8575.0,0.1415724313340077 -8576.0,0.14152354239181966 -8577.0,0.14147467033235828 -8578.0,0.14142581514979355 -8579.0,0.1413769768382974 -8580.0,0.14132815539204374 -8581.0,0.14127935080520856 -8582.0,0.1412305630719698 -8583.0,0.14118179218650748 -8584.0,0.14113303814300354 -8585.0,0.14108430093564206 -8586.0,0.14103558055860893 -8587.0,0.14098687700609225 -8588.0,0.140938190272282 -8589.0,0.14088952035137023 -8590.0,0.14084086723755096 -8591.0,0.14079223092502027 -8592.0,0.14074361140797612 -8593.0,0.14069500868061863 -8594.0,0.1406464227371498 -8595.0,0.14059785357177373 -8596.0,0.14054930117869643 -8597.0,0.14050076555212596 -8598.0,0.1404522466862724 -8599.0,0.14040374457534777 -8600.0,0.14035525921356617 -8601.0,0.1403067905951436 -8602.0,0.14025833871429813 -8603.0,0.14020990356524976 -8604.0,0.14016148514222063 -8605.0,0.14011308343943465 -8606.0,0.140064698451118 -8607.0,0.14001633017149853 -8608.0,0.1399679785948064 -8609.0,0.13991964371527352 -8610.0,0.139871325527134 -8611.0,0.1398230240246237 -8612.0,0.13977473920198072 -8613.0,0.13972647105344493 -8614.0,0.1396782195732584 -8615.0,0.139629984755665 -8616.0,0.13958176659491067 -8617.0,0.1395335650852434 -8618.0,0.13948538022091303 -8619.0,0.1394372119961715 -8620.0,0.13938906040527269 -8621.0,0.13934092544247245 -8622.0,0.1392928071020286 -8623.0,0.13924470537820105 -8624.0,0.13919662026525156 -8625.0,0.13914855175744395 -8626.0,0.13910049984904396 -8627.0,0.1390524645343194 -8628.0,0.13900444580753996 -8629.0,0.1389564436629774 -8630.0,0.13890845809490537 -8631.0,0.1388604890975996 -8632.0,0.13881253666533766 -8633.0,0.13876460079239922 -8634.0,0.1387166814730659 -8635.0,0.13866877870162123 -8636.0,0.1386208924723508 -8637.0,0.1385730227795421 -8638.0,0.13852516961748462 -8639.0,0.13847733298046985 -8640.0,0.13842951286279126 -8641.0,0.13838170925874416 -8642.0,0.13833392216262605 -8643.0,0.13828615156873617 -8644.0,0.1382383974713759 -8645.0,0.1381906598648485 -8646.0,0.13814293874345923 -8647.0,0.1380952341015153 -8648.0,0.13804754593332594 -8649.0,0.1379998742332022 -8650.0,0.13795221899545732 -8651.0,0.13790458021440624 -8652.0,0.13785695788436608 -8653.0,0.13780935199965588 -8654.0,0.13776176255459655 -8655.0,0.13771418954351103 -8656.0,0.13766663296072418 -8657.0,0.1376190928005629 -8658.0,0.13757156905735593 -8659.0,0.13752406172543408 -8660.0,0.13747657079913006 -8661.0,0.13742909627277858 -8662.0,0.1373816381407162 -8663.0,0.1373341963972816 -8664.0,0.13728677103681522 -8665.0,0.1372393620536597 -8666.0,0.13719196944215933 -8667.0,0.13714459319666067 -8668.0,0.13709723331151197 -8669.0,0.13704988978106364 -8670.0,0.1370025625996678 -8671.0,0.1369552517616788 -8672.0,0.13690795726145277 -8673.0,0.13686067909334776 -8674.0,0.13681341725172388 -8675.0,0.13676617173094313 -8676.0,0.13671894252536948 -8677.0,0.13667172962936877 -8678.0,0.13662453303730893 -8679.0,0.13657735274355967 -8680.0,0.1365301887424928 -8681.0,0.1364830410284819 -8682.0,0.1364359095959027 -8683.0,0.1363887944391327 -8684.0,0.13634169555255146 -8685.0,0.13629461293054032 -8686.0,0.13624754656748278 -8687.0,0.1362004964577641 -8688.0,0.1361534625957716 -8689.0,0.13610644497589441 -8690.0,0.1360594435925237 -8691.0,0.13601245844005258 -8692.0,0.13596548951287604 -8693.0,0.13591853680539104 -8694.0,0.1358716003119964 -8695.0,0.13582468002709308 -8696.0,0.13577777594508367 -8697.0,0.13573088806037298 -8698.0,0.13568401636736754 -8699.0,0.13563716086047597 -8700.0,0.1355903215341087 -8701.0,0.13554349838267815 -8702.0,0.13549669140059864 -8703.0,0.1354499005822865 -8704.0,0.1354031259221599 -8705.0,0.13535636741463894 -8706.0,0.13530962505414565 -8707.0,0.13526289883510406 -8708.0,0.1352161887519401 -8709.0,0.13516949479908152 -8710.0,0.13512281697095807 -8711.0,0.13507615526200148 -8712.0,0.13502950966664534 -8713.0,0.1349828801793252 -8714.0,0.1349362667944784 -8715.0,0.13488966950654438 -8716.0,0.1348430883099644 -8717.0,0.13479652319918173 -8718.0,0.13474997416864137 -8719.0,0.1347034412127904 -8720.0,0.13465692432607784 -8721.0,0.13461042350295455 -8722.0,0.13456393873787326 -8723.0,0.1345174700252887 -8724.0,0.1344710173596575 -8725.0,0.13442458073543828 -8726.0,0.1343781601470913 -8727.0,0.1343317555890791 -8728.0,0.13428536705586583 -8729.0,0.13423899454191776 -8730.0,0.134192638041703 -8731.0,0.13414629754969146 -8732.0,0.13409997306035512 -8733.0,0.13405366456816778 -8734.0,0.13400737206760527 -8735.0,0.1339610955531451 -8736.0,0.13391483501926688 -8737.0,0.13386859046045205 -8738.0,0.13382236187118401 -8739.0,0.133776149245948 -8740.0,0.13372995257923115 -8741.0,0.13368377186552258 -8742.0,0.13363760709931333 -8743.0,0.13359145827509614 -8744.0,0.13354532538736585 -8745.0,0.1334992084306192 -8746.0,0.13345310739935476 -8747.0,0.1334070222880729 -8748.0,0.13336095309127613 -8749.0,0.13331489980346867 -8750.0,0.1332688624191567 -8751.0,0.1332228409328484 -8752.0,0.13317683533905356 -8753.0,0.13313084563228414 -8754.0,0.13308487180705392 -8755.0,0.1330389138578786 -8756.0,0.1329929717792756 -8757.0,0.13294704556576445 -8758.0,0.13290113521186647 -8759.0,0.13285524071210494 -8760.0,0.1328093620610049 -8761.0,0.1327634992530934 -8762.0,0.13271765228289933 -8763.0,0.13267182114495354 -8764.0,0.1326260058337886 -8765.0,0.13258020634393916 -8766.0,0.13253442266994162 -8767.0,0.13248865480633437 -8768.0,0.1324429027476577 -8769.0,0.13239716648845354 -8770.0,0.132351446023266 -8771.0,0.13230574134664097 -8772.0,0.13226005245312625 -8773.0,0.13221437933727137 -8774.0,0.13216872199362795 -8775.0,0.13212308041674936 -8776.0,0.13207745460119097 -8777.0,0.13203184454150982 -8778.0,0.13198625023226507 -8779.0,0.1319406716680176 -8780.0,0.13189510884333028 -8781.0,0.1318495617527677 -8782.0,0.13180403039089653 -8783.0,0.13175851475228512 -8784.0,0.13171301483150386 -8785.0,0.1316675306231249 -8786.0,0.13162206212172226 -8787.0,0.13157660932187196 -8788.0,0.13153117221815178 -8789.0,0.13148575080514147 -8790.0,0.13144034507742247 -8791.0,0.13139495502957824 -8792.0,0.13134958065619412 -8793.0,0.13130422195185731 -8794.0,0.13125887891115676 -8795.0,0.1312135515286834 -8796.0,0.13116823979903 -8797.0,0.13112294371679128 -8798.0,0.13107766327656364 -8799.0,0.1310323984729455 -8800.0,0.1309871493005371 -8801.0,0.1309419157539406 -8802.0,0.1308966978277598 -8803.0,0.13085149551660072 -8804.0,0.1308063088150709 -8805.0,0.13076113771778003 -8806.0,0.1307159822193395 -8807.0,0.1306708423143625 -8808.0,0.13062571799746422 -8809.0,0.13058060926326165 -8810.0,0.13053551610637373 -8811.0,0.13049043852142106 -8812.0,0.13044537650302626 -8813.0,0.13040033004581375 -8814.0,0.13035529914440985 -8815.0,0.13031028379344264 -8816.0,0.13026528398754217 -8817.0,0.13022029972134025 -8818.0,0.13017533098947068 -8819.0,0.13013037778656886 -8820.0,0.1300854401072723 -8821.0,0.13004051794622026 -8822.0,0.1299956112980539 -8823.0,0.12995072015741604 -8824.0,0.12990584451895162 -8825.0,0.12986098437730725 -8826.0,0.12981613972713146 -8827.0,0.12977131056307464 -8828.0,0.12972649687978893 -8829.0,0.12968169867192844 -8830.0,0.12963691593414903 -8831.0,0.12959214866110852 -8832.0,0.12954739684746638 -8833.0,0.1295026604878841 -8834.0,0.129457939577025 -8835.0,0.12941323410955421 -8836.0,0.12936854408013862 -8837.0,0.12932386948344707 -8838.0,0.12927921031415018 -8839.0,0.12923456656692053 -8840.0,0.12918993823643232 -8841.0,0.1291453253173618 -8842.0,0.12910072780438692 -8843.0,0.12905614569218757 -8844.0,0.12901157897544546 -8845.0,0.128967027648844 -8846.0,0.1289224917070686 -8847.0,0.12887797114480642 -8848.0,0.1288334659567466 -8849.0,0.12878897613757984 -8850.0,0.12874450168199886 -8851.0,0.12870004258469825 -8852.0,0.12865559884037436 -8853.0,0.12861117044372528 -8854.0,0.12856675738945111 -8855.0,0.12852235967225364 -8856.0,0.12847797728683666 -8857.0,0.12843361022790556 -8858.0,0.12838925849016766 -8859.0,0.1283449220683322 -8860.0,0.12830060095711018 -8861.0,0.12825629515121434 -8862.0,0.12821200464535934 -8863.0,0.12816772943426166 -8864.0,0.1281234695126396 -8865.0,0.12807922487521328 -8866.0,0.12803499551670458 -8867.0,0.1279907814318373 -8868.0,0.12794658261533703 -8869.0,0.12790239906193124 -8870.0,0.127858230766349 -8871.0,0.12781407772332143 -8872.0,0.1277699399275814 -8873.0,0.12772581737386365 -8874.0,0.1276817100569046 -8875.0,0.12763761797144255 -8876.0,0.12759354111221768 -8877.0,0.127549479473972 -8878.0,0.12750543305144915 -8879.0,0.1274614018393948 -8880.0,0.1274173858325563 -8881.0,0.1273733850256829 -8882.0,0.1273293994135257 -8883.0,0.12728542899083733 -8884.0,0.1272414737523726 -8885.0,0.12719753369288794 -8886.0,0.12715360880714163 -8887.0,0.1271096990898937 -8888.0,0.12706580453590607 -8889.0,0.12702192513994245 -8890.0,0.12697806089676839 -8891.0,0.12693421180115108 -8892.0,0.12689037784785975 -8893.0,0.12684655903166528 -8894.0,0.12680275534734048 -8895.0,0.12675896678965978 -8896.0,0.1267151933533996 -8897.0,0.12667143503333803 -8898.0,0.12662769182425512 -8899.0,0.1265839637209325 -8900.0,0.1265402507181538 -8901.0,0.12649655281070438 -8902.0,0.12645286999337135 -8903.0,0.12640920226094376 -8904.0,0.12636554960821225 -8905.0,0.12632191202996945 -8906.0,0.1262782895210097 -8907.0,0.12623468207612923 -8908.0,0.12619108969012582 -8909.0,0.12614751235779934 -8910.0,0.12610395007395128 -8911.0,0.12606040283338504 -8912.0,0.1260168706309057 -8913.0,0.12597335346132016 -8914.0,0.12592985131943718 -8915.0,0.12588636420006732 -8916.0,0.1258428920980228 -8917.0,0.12579943500811772 -8918.0,0.12575599292516798 -8919.0,0.1257125658439913 -8920.0,0.12566915375940715 -8921.0,0.12562575666623668 -8922.0,0.12558237455930304 -8923.0,0.125539007433431 -8924.0,0.12549565528344725 -8925.0,0.12545231810418012 -8926.0,0.12540899589045978 -8927.0,0.12536568863711828 -8928.0,0.1253223963389894 -8929.0,0.1252791189909086 -8930.0,0.12523585658771322 -8931.0,0.1251926091242424 -8932.0,0.1251493765953371 -8933.0,0.12510615899583985 -8934.0,0.12506295632059516 -8935.0,0.12501976856444932 -8936.0,0.12497659572225037 -8937.0,0.12493343778884797 -8938.0,0.12489029475909376 -8939.0,0.12484716662784111 -8940.0,0.12480405338994513 -8941.0,0.12476095504026279 -8942.0,0.12471787157365266 -8943.0,0.12467480298497526 -8944.0,0.12463174926909279 -8945.0,0.12458871042086934 -8946.0,0.12454568643517057 -8947.0,0.1245026773068641 -8948.0,0.12445968303081922 -8949.0,0.12441670360190712 -8950.0,0.12437373901500054 -8951.0,0.12433078926497418 -8952.0,0.12428785434670443 -8953.0,0.12424493425506955 -8954.0,0.12420202898494935 -8955.0,0.12415913853122561 -8956.0,0.12411626288878182 -8957.0,0.12407340205250321 -8958.0,0.12403055601727686 -8959.0,0.12398772477799144 -8960.0,0.12394490832953756 -8961.0,0.12390210666680752 -8962.0,0.12385931978469544 -8963.0,0.12381654767809706 -8964.0,0.12377379034191004 -8965.0,0.12373104777103372 -8966.0,0.1236883199603693 -8967.0,0.12364560690481954 -8968.0,0.12360290859928914 -8969.0,0.12356022503868451 -8970.0,0.12351755621791387 -8971.0,0.12347490213188701 -8972.0,0.1234322627755157 -8973.0,0.12338963814371333 -8974.0,0.12334702823139519 -8975.0,0.12330443303347809 -8976.0,0.1232618525448808 -8977.0,0.12321928676052378 -8978.0,0.12317673567532923 -8979.0,0.12313419928422117 -8980.0,0.12309167758212523 -8981.0,0.12304917056396893 -8982.0,0.12300667822468149 -8983.0,0.12296420055919392 -8984.0,0.12292173756243885 -8985.0,0.12287928922935082 -8986.0,0.12283685555486604 -8987.0,0.12279443653392252 -8988.0,0.12275203216145991 -8989.0,0.1227096424324197 -8990.0,0.12266726734174513 -8991.0,0.12262490688438119 -8992.0,0.12258256105527449 -8993.0,0.12254022984937353 -8994.0,0.12249791326162851 -8995.0,0.12245561128699137 -8996.0,0.12241332392041586 -8997.0,0.12237105115685727 -8998.0,0.12232879299127283 -8999.0,0.12228654941862147 -9000.0,0.12224432043386388 -9001.0,0.12220210603196233 -9002.0,0.12215990620788102 -9003.0,0.1221177209565858 -9004.0,0.12207555027304436 -9005.0,0.1220333941522259 -9006.0,0.1219912525891016 -9007.0,0.12194912557864424 -9008.0,0.12190701311582845 -9009.0,0.1218649151956304 -9010.0,0.12182283181302819 -9011.0,0.12178076296300155 -9012.0,0.12173870864053206 -9013.0,0.1216966688406028 -9014.0,0.12165464355819881 -9015.0,0.12161263278830678 -9016.0,0.12157063652591511 -9017.0,0.12152865476601404 -9018.0,0.12148668750359531 -9019.0,0.1214447347336526 -9020.0,0.12140279645118125 -9021.0,0.1213608726511784 -9022.0,0.1213189633286427 -9023.0,0.12127706847857475 -9024.0,0.1212351880959768 -9025.0,0.1211933221758529 -9026.0,0.1211514707132086 -9027.0,0.1211096337030514 -9028.0,0.12106781114039046 -9029.0,0.1210260030202367 -9030.0,0.1209842093376026 -9031.0,0.12094243008750252 -9032.0,0.12090066526495254 -9033.0,0.1208589148649704 -9034.0,0.12081717888257563 -9035.0,0.12077545731278932 -9036.0,0.12073375015063448 -9037.0,0.1206920573911357 -9038.0,0.12065037902931942 -9039.0,0.1206087150602136 -9040.0,0.1205670654788481 -9041.0,0.12052543028025442 -9042.0,0.12048380945946582 -9043.0,0.12044220301151716 -9044.0,0.12040061093144513 -9045.0,0.1203590332142881 -9046.0,0.12031746985508622 -9047.0,0.12027592084888115 -9048.0,0.12023438619071648 -9049.0,0.12019286587563742 -9050.0,0.12015135989869094 -9051.0,0.12010986825492558 -9052.0,0.12006839093939173 -9053.0,0.12002692794714147 -9054.0,0.11998547927322856 -9055.0,0.11994404491270852 -9056.0,0.11990262486063843 -9057.0,0.11986121911207726 -9058.0,0.11981982766208556 -9059.0,0.11977845050572572 -9060.0,0.11973708763806162 -9061.0,0.11969573905415903 -9062.0,0.11965440474908537 -9063.0,0.11961308471790982 -9064.0,0.11957177895570308 -9065.0,0.11953048745753773 -9066.0,0.119489210218488 -9067.0,0.11944794723362986 -9068.0,0.11940669849804085 -9069.0,0.11936546400680034 -9070.0,0.11932424375498935 -9071.0,0.1192830377376906 -9072.0,0.11924184594998857 -9073.0,0.11920066838696929 -9074.0,0.11915950504372061 -9075.0,0.11911835591533204 -9076.0,0.11907722099689487 -9077.0,0.11903610028350188 -9078.0,0.1189949937702477 -9079.0,0.11895390145222867 -9080.0,0.1189128233245428 -9081.0,0.11887175938228967 -9082.0,0.11883070962057068 -9083.0,0.11878967403448894 -9084.0,0.11874865261914921 -9085.0,0.11870764536965787 -9086.0,0.11866665228112308 -9087.0,0.11862567334865466 -9088.0,0.1185847085673642 -9089.0,0.11854375793236475 -9090.0,0.1185028214387713 -9091.0,0.1184618990817004 -9092.0,0.11842099085627034 -9093.0,0.11838009675760107 -9094.0,0.11833921678081415 -9095.0,0.11829835092103293 -9096.0,0.11825749917338244 -9097.0,0.11821666153298939 -9098.0,0.11817583799498205 -9099.0,0.11813502855449053 -9100.0,0.11809423320664655 -9101.0,0.11805345194658358 -9102.0,0.11801268476943662 -9103.0,0.11797193167034248 -9104.0,0.1179311926444396 -9105.0,0.1178904676868682 -9106.0,0.11784975679276995 -9107.0,0.11780905995728841 -9108.0,0.11776837717556873 -9109.0,0.11772770844275778 -9110.0,0.1176870537540041 -9111.0,0.11764641310445777 -9112.0,0.11760578648927074 -9113.0,0.11756517390359653 -9114.0,0.11752457534259042 -9115.0,0.11748399080140917 -9116.0,0.11744342027521143 -9117.0,0.11740286375915739 -9118.0,0.11736232124840904 -9119.0,0.11732179273812983 -9120.0,0.11728127822348505 -9121.0,0.11724077769964164 -9122.0,0.11720029116176822 -9123.0,0.11715981860503494 -9124.0,0.11711936002461376 -9125.0,0.11707891541567829 -9126.0,0.11703848477340381 -9127.0,0.11699806809296714 -9128.0,0.11695766536954692 -9129.0,0.11691727659832342 -9130.0,0.11687690177447853 -9131.0,0.11683654089319588 -9132.0,0.1167961939496606 -9133.0,0.11675586093905968 -9134.0,0.11671554185658166 -9135.0,0.11667523669741682 -9136.0,0.11663494545675696 -9137.0,0.11659466812979566 -9138.0,0.11655440471172814 -9139.0,0.11651415519775131 -9140.0,0.1164739195830636 -9141.0,0.11643369786286525 -9142.0,0.1163934900323581 -9143.0,0.1163532960867457 -9144.0,0.1163131160212331 -9145.0,0.11627294983102718 -9146.0,0.11623279751133637 -9147.0,0.11619265905737082 -9148.0,0.11615253446434234 -9149.0,0.11611242372746428 -9150.0,0.11607232684195175 -9151.0,0.11603224380302149 -9152.0,0.11599217460589194 -9153.0,0.11595211924578303 -9154.0,0.11591207771791649 -9155.0,0.11587205001751567 -9156.0,0.11583203613980562 -9157.0,0.11579203608001286 -9158.0,0.11575204983336572 -9159.0,0.11571207739509415 -9160.0,0.11567211876042975 -9161.0,0.11563217392460567 -9162.0,0.11559224288285684 -9163.0,0.11555232563041976 -9164.0,0.11551242216253259 -9165.0,0.1154725324744352 -9166.0,0.11543265656136893 -9167.0,0.11539279441857694 -9168.0,0.11535294604130396 -9169.0,0.1153131114247964 -9170.0,0.11527329056430222 -9171.0,0.11523348345507109 -9172.0,0.11519369009235433 -9173.0,0.11515391047140495 -9174.0,0.1151141445874774 -9175.0,0.11507439243582797 -9176.0,0.11503465401171452 -9177.0,0.11499492931039658 -9178.0,0.11495521832713518 -9179.0,0.11491552105719316 -9180.0,0.11487583749583492 -9181.0,0.11483616763832655 -9182.0,0.11479651147993561 -9183.0,0.11475686901593146 -9184.0,0.11471724024158507 -9185.0,0.114677625152169 -9186.0,0.1146380237429575 -9187.0,0.11459843600922633 -9188.0,0.11455886194625299 -9189.0,0.11451930154931661 -9190.0,0.11447975481369795 -9191.0,0.11444022173467927 -9192.0,0.11440070230754464 -9193.0,0.11436119652757964 -9194.0,0.1143217043900716 -9195.0,0.11428222589030929 -9196.0,0.11424276102358326 -9197.0,0.11420330978518563 -9198.0,0.11416387217041021 -9199.0,0.11412444817455229 -9200.0,0.11408503779290893 -9201.0,0.11404564102077873 -9202.0,0.11400625785346197 -9203.0,0.11396688828626057 -9204.0,0.11392753231447791 -9205.0,0.11388818993341918 -9206.0,0.11384886113839111 -9207.0,0.1138095459247021 -9208.0,0.11377024428766207 -9209.0,0.11373095622258264 -9210.0,0.11369168172477703 -9211.0,0.11365242078956014 -9212.0,0.11361317341224833 -9213.0,0.11357393958815971 -9214.0,0.11353471931261398 -9215.0,0.11349551258093249 -9216.0,0.11345631938843807 -9217.0,0.11341713973045532 -9218.0,0.11337797360231036 -9219.0,0.11333882099933104 -9220.0,0.11329968191684661 -9221.0,0.11326055635018814 -9222.0,0.11322144429468821 -9223.0,0.11318234574568106 -9224.0,0.11314326069850256 -9225.0,0.11310418914849003 -9226.0,0.1130651310909826 -9227.0,0.11302608652132091 -9228.0,0.11298705543484729 -9229.0,0.11294803782690549 -9230.0,0.11290903369284107 -9231.0,0.11287004302800112 -9232.0,0.11283106582773438 -9233.0,0.11279210208739104 -9234.0,0.11275315180232308 -9235.0,0.11271421496788402 -9236.0,0.11267529157942902 -9237.0,0.1126363816323147 -9238.0,0.11259748512189943 -9239.0,0.11255860204354315 -9240.0,0.1125197323926074 -9241.0,0.11248087616445536 -9242.0,0.11244203335445165 -9243.0,0.11240320395796267 -9244.0,0.11236438797035636 -9245.0,0.1123255853870023 -9246.0,0.11228679620327152 -9247.0,0.1122480204145368 -9248.0,0.11220925801617249 -9249.0,0.11217050900355455 -9250.0,0.11213177337206041 -9251.0,0.11209305111706926 -9252.0,0.11205434223396178 -9253.0,0.11201564671812037 -9254.0,0.11197696456492881 -9255.0,0.11193829576977266 -9256.0,0.11189964032803902 -9257.0,0.11186099823511662 -9258.0,0.11182236948639565 -9259.0,0.11178375407726802 -9260.0,0.11174515200312721 -9261.0,0.11170656325936826 -9262.0,0.11166798784138787 -9263.0,0.11162942574458416 -9264.0,0.11159087696435703 -9265.0,0.11155234149610786 -9266.0,0.11151381933523973 -9267.0,0.1114753104771571 -9268.0,0.11143681491726622 -9269.0,0.11139833265097483 -9270.0,0.11135986367369233 -9271.0,0.11132140798082955 -9272.0,0.11128296556779908 -9273.0,0.11124453643001499 -9274.0,0.11120612056289303 -9275.0,0.11116771796185036 -9276.0,0.11112932862230589 -9277.0,0.11109095253968003 -9278.0,0.11105258970939481 -9279.0,0.11101424012687387 -9280.0,0.1109759037875423 -9281.0,0.11093758068682688 -9282.0,0.11089927082015597 -9283.0,0.1108609741829595 -9284.0,0.11082269077066886 -9285.0,0.11078442057871721 -9286.0,0.11074616360253917 -9287.0,0.11070791983757099 -9288.0,0.1106696892792504 -9289.0,0.11063147192301681 -9290.0,0.11059326776431118 -9291.0,0.11055507679857607 -9292.0,0.11051689902125547 -9293.0,0.11047873442779511 -9294.0,0.11044058301364224 -9295.0,0.1104024447742457 -9296.0,0.11036431970505581 -9297.0,0.11032620780152454 -9298.0,0.11028810905910545 -9299.0,0.11025002347325362 -9300.0,0.11021195103942576 -9301.0,0.11017389175308002 -9302.0,0.11013584560967626 -9303.0,0.11009781260467585 -9304.0,0.11005979273354177 -9305.0,0.11002178599173842 -9306.0,0.10998379237473195 -9307.0,0.10994581187798998 -9308.0,0.10990784449698175 -9309.0,0.10986989022717795 -9310.0,0.10983194906405097 -9311.0,0.10979402100307468 -9312.0,0.1097561060397246 -9313.0,0.10971820416947767 -9314.0,0.10968031538781249 -9315.0,0.10964243969020923 -9316.0,0.10960457707214957 -9317.0,0.10956672752911686 -9318.0,0.1095288910565958 -9319.0,0.10949106765007284 -9320.0,0.1094532573050359 -9321.0,0.10941546001697455 -9322.0,0.10937767578137976 -9323.0,0.10933990459374417 -9324.0,0.10930214644956196 -9325.0,0.10926440134432892 -9326.0,0.10922666927354223 -9327.0,0.10918895023270078 -9328.0,0.10915124421730495 -9329.0,0.10911355122285675 -9330.0,0.10907587124485958 -9331.0,0.10903820427881855 -9332.0,0.10900055032024025 -9333.0,0.10896290936463289 -9334.0,0.10892528140750608 -9335.0,0.10888766644437115 -9336.0,0.10885006447074087 -9337.0,0.10881247548212963 -9338.0,0.10877489947405339 -9339.0,0.10873733644202947 -9340.0,0.10869978638157697 -9341.0,0.1086622492882164 -9342.0,0.10862472515746995 -9343.0,0.10858721398486113 -9344.0,0.10854971576591518 -9345.0,0.10851223049615887 -9346.0,0.1084747581711205 -9347.0,0.10843729878632981 -9348.0,0.1083998523373182 -9349.0,0.10836241881961861 -9350.0,0.10832499822876553 -9351.0,0.10828759056029484 -9352.0,0.10825019580974415 -9353.0,0.10821281397265255 -9354.0,0.10817544504456061 -9355.0,0.10813808902101059 -9356.0,0.10810074589754608 -9357.0,0.10806341566971234 -9358.0,0.10802609833305617 -9359.0,0.10798879388312592 -9360.0,0.10795150231547136 -9361.0,0.10791422362564392 -9362.0,0.10787695780919651 -9363.0,0.10783970486168365 -9364.0,0.10780246477866123 -9365.0,0.10776523755568684 -9366.0,0.10772802318831955 -9367.0,0.10769082167211999 -9368.0,0.10765363300265018 -9369.0,0.10761645717547387 -9370.0,0.10757929418615624 -9371.0,0.10754214403026403 -9372.0,0.10750500670336545 -9373.0,0.10746788220103032 -9374.0,0.10743077051882993 -9375.0,0.10739367165233717 -9376.0,0.10735658559712644 -9377.0,0.10731951234877354 -9378.0,0.10728245190285597 -9379.0,0.10724540425495269 -9380.0,0.10720836940064421 -9381.0,0.10717134733551247 -9382.0,0.10713433805514104 -9383.0,0.107097341555115 -9384.0,0.10706035783102096 -9385.0,0.10702338687844694 -9386.0,0.10698642869298265 -9387.0,0.10694948327021922 -9388.0,0.10691255060574939 -9389.0,0.10687563069516727 -9390.0,0.10683872353406862 -9391.0,0.1068018291180507 -9392.0,0.10676494744271225 -9393.0,0.10672807850365364 -9394.0,0.10669122229647654 -9395.0,0.10665437881678436 -9396.0,0.10661754806018191 -9397.0,0.1065807300222756 -9398.0,0.10654392469867323 -9399.0,0.10650713208498422 -9400.0,0.1064703521768195 -9401.0,0.10643358496979152 -9402.0,0.10639683045951415 -9403.0,0.10636008864160287 -9404.0,0.10632335951167467 -9405.0,0.10628664306534805 -9406.0,0.10624993929824295 -9407.0,0.10621324820598088 -9408.0,0.10617656978418491 -9409.0,0.10613990402847959 -9410.0,0.10610325093449086 -9411.0,0.10606661049784634 -9412.0,0.10602998271417509 -9413.0,0.10599336757910767 -9414.0,0.10595676508827623 -9415.0,0.10592017523731424 -9416.0,0.10588359802185686 -9417.0,0.10584703343754069 -9418.0,0.1058104814800039 -9419.0,0.10577394214488599 -9420.0,0.10573741542782815 -9421.0,0.10570090132447302 -9422.0,0.10566439983046474 -9423.0,0.1056279109414489 -9424.0,0.10559143465307265 -9425.0,0.10555497096098466 -9426.0,0.10551851986083513 -9427.0,0.10548208134827558 -9428.0,0.10544565541895924 -9429.0,0.10540924206854076 -9430.0,0.10537284129267628 -9431.0,0.1053364530870235 -9432.0,0.10530007744724149 -9433.0,0.10526371436899094 -9434.0,0.105227363847934 -9435.0,0.10519102587973436 -9436.0,0.1051547004600571 -9437.0,0.10511838758456887 -9438.0,0.10508208724893783 -9439.0,0.10504579944883366 -9440.0,0.1050095241799274 -9441.0,0.10497326143789171 -9442.0,0.10493701121840071 -9443.0,0.10490077351713006 -9444.0,0.1048645483297568 -9445.0,0.10482833565195952 -9446.0,0.10479213547941837 -9447.0,0.10475594780781496 -9448.0,0.10471977263283225 -9449.0,0.10468360995015487 -9450.0,0.10464745975546888 -9451.0,0.10461132204446183 -9452.0,0.10457519681282278 -9453.0,0.10453908405624217 -9454.0,0.10450298377041206 -9455.0,0.10446689595102594 -9456.0,0.10443082059377887 -9457.0,0.1043947576943672 -9458.0,0.10435870724848895 -9459.0,0.10432266925184355 -9460.0,0.104286643700132 -9461.0,0.1042506305890566 -9462.0,0.10421462991432132 -9463.0,0.1041786416716315 -9464.0,0.1041426658566941 -9465.0,0.10410670246521735 -9466.0,0.10407075149291112 -9467.0,0.10403481293548672 -9468.0,0.10399888678865697 -9469.0,0.10396297304813616 -9470.0,0.10392707170963997 -9471.0,0.10389118276888565 -9472.0,0.10385530622159195 -9473.0,0.10381944206347907 -9474.0,0.10378359029026861 -9475.0,0.10374775089768375 -9476.0,0.1037119238814491 -9477.0,0.10367610923729083 -9478.0,0.10364030696093642 -9479.0,0.10360451704811494 -9480.0,0.10356873949455693 -9481.0,0.10353297429599444 -9482.0,0.10349722144816083 -9483.0,0.10346148094679111 -9484.0,0.10342575278762171 -9485.0,0.10339003696639054 -9486.0,0.1033543334788369 -9487.0,0.10331864232070163 -9488.0,0.10328296348772707 -9489.0,0.10324729697565699 -9490.0,0.10321164278023667 -9491.0,0.10317600089721274 -9492.0,0.10314037132233342 -9493.0,0.10310475405134838 -9494.0,0.10306914908000876 -9495.0,0.10303355640406708 -9496.0,0.10299797601927742 -9497.0,0.10296240792139531 -9498.0,0.10292685210617777 -9499.0,0.10289130856938318 -9500.0,0.10285577730677148 -9501.0,0.10282025831410406 -9502.0,0.10278475158714381 -9503.0,0.10274925712165493 -9504.0,0.10271377491340326 -9505.0,0.10267830495815601 -9506.0,0.10264284725168188 -9507.0,0.10260740178975107 -9508.0,0.10257196856813511 -9509.0,0.10253654758260711 -9510.0,0.1025011388289416 -9511.0,0.10246574230291465 -9512.0,0.10243035800030358 -9513.0,0.10239498591688738 -9514.0,0.1023596260484464 -9515.0,0.1023242783907625 -9516.0,0.1022889429396189 -9517.0,0.10225361969080037 -9518.0,0.1022183086400931 -9519.0,0.1021830097832848 -9520.0,0.10214772311616446 -9521.0,0.1021124486345227 -9522.0,0.10207718633415153 -9523.0,0.10204193621084445 -9524.0,0.1020066982603963 -9525.0,0.10197147247860348 -9526.0,0.10193625886126383 -9527.0,0.1019010574041766 -9528.0,0.10186586810314258 -9529.0,0.10183069095396383 -9530.0,0.10179552595244404 -9531.0,0.10176037309438826 -9532.0,0.10172523237560308 -9533.0,0.10169010379189636 -9534.0,0.10165498733907757 -9535.0,0.10161988301295756 -9536.0,0.10158479080934871 -9537.0,0.10154971072406466 -9538.0,0.10151464275292067 -9539.0,0.10147958689173338 -9540.0,0.10144454313632094 -9541.0,0.10140951148250277 -9542.0,0.10137449192609992 -9543.0,0.1013394844629348 -9544.0,0.10130448908883127 -9545.0,0.1012695057996147 -9546.0,0.10123453459111173 -9547.0,0.1011995754591506 -9548.0,0.10116462839956096 -9549.0,0.1011296934081739 -9550.0,0.10109477048082184 -9551.0,0.1010598596133388 -9552.0,0.10102496080156013 -9553.0,0.10099007404132274 -9554.0,0.10095519932846478 -9555.0,0.10092033665882601 -9556.0,0.10088548602824754 -9557.0,0.10085064743257202 -9558.0,0.10081582086764336 -9559.0,0.10078100632930706 -9560.0,0.10074620381340997 -9561.0,0.10071141331580047 -9562.0,0.10067663483232822 -9563.0,0.10064186835884444 -9564.0,0.10060711389120172 -9565.0,0.10057237142525416 -9566.0,0.10053764095685723 -9567.0,0.10050292248186778 -9568.0,0.10046821599614417 -9569.0,0.10043352149554619 -9570.0,0.10039883897593507 -9571.0,0.10036416843317335 -9572.0,0.10032950986312515 -9573.0,0.10029486326165593 -9574.0,0.10026022862463266 -9575.0,0.1002256059479236 -9576.0,0.10019099522739854 -9577.0,0.10015639645892868 -9578.0,0.10012180963838671 -9579.0,0.10008723476164655 -9580.0,0.10005267182458373 -9581.0,0.10001812082307514 -9582.0,0.09998358175299911 -9583.0,0.0999490546102354 -9584.0,0.09991453939066511 -9585.0,0.09988003609017085 -9586.0,0.09984554470463665 -9587.0,0.09981106522994795 -9588.0,0.09977659766199155 -9589.0,0.09974214199665575 -9590.0,0.09970769822983022 -9591.0,0.09967326635740614 -9592.0,0.09963884637527595 -9593.0,0.09960443827933363 -9594.0,0.09957004206547454 -9595.0,0.09953565772959552 -9596.0,0.09950128526759468 -9597.0,0.09946692467537167 -9598.0,0.09943257594882753 -9599.0,0.09939823908386475 -9600.0,0.0993639140763871 -9601.0,0.09932960092229991 -9602.0,0.09929529961750985 -9603.0,0.09926101015792506 -9604.0,0.09922673253945508 -9605.0,0.09919246675801074 -9606.0,0.09915821280950445 -9607.0,0.09912397068984995 -9608.0,0.09908974039496245 -9609.0,0.09905552192075844 -9610.0,0.09902131526315594 -9611.0,0.09898712041807436 -9612.0,0.09895293738143454 -9613.0,0.09891876614915862 -9614.0,0.09888460671717024 -9615.0,0.09885045908139445 -9616.0,0.09881632323775771 -9617.0,0.0987821991821878 -9618.0,0.09874808691061399 -9619.0,0.09871398641896695 -9620.0,0.09867989770317873 -9621.0,0.09864582075918284 -9622.0,0.09861175558291406 -9623.0,0.09857770217030871 -9624.0,0.09854366051730448 -9625.0,0.09850963061984047 -9626.0,0.09847561247385708 -9627.0,0.09844160607529624 -9628.0,0.09840761142010125 -9629.0,0.09837362850421681 -9630.0,0.09833965732358893 -9631.0,0.09830569787416515 -9632.0,0.09827175015189435 -9633.0,0.09823781415272685 -9634.0,0.09820388987261425 -9635.0,0.09816997730750968 -9636.0,0.0981360764533676 -9637.0,0.09810218730614395 -9638.0,0.0980683098617959 -9639.0,0.09803444411628219 -9640.0,0.09800059006556285 -9641.0,0.09796674770559934 -9642.0,0.09793291703235457 -9643.0,0.09789909804179271 -9644.0,0.09786529072987943 -9645.0,0.09783149509258175 -9646.0,0.09779771112586817 -9647.0,0.09776393882570841 -9648.0,0.09773017818807371 -9649.0,0.0976964292089367 -9650.0,0.09766269188427139 -9651.0,0.0976289662100531 -9652.0,0.09759525218225862 -9653.0,0.09756154979686614 -9654.0,0.09752785904985523 -9655.0,0.09749417993720676 -9656.0,0.09746051245490309 -9657.0,0.09742685659892794 -9658.0,0.09739321236526641 -9659.0,0.09735957974990504 -9660.0,0.0973259587488316 -9661.0,0.09729234935803541 -9662.0,0.09725875157350711 -9663.0,0.09722516539123877 -9664.0,0.0971915908072237 -9665.0,0.09715802781745678 -9666.0,0.09712447641793416 -9667.0,0.09709093660465345 -9668.0,0.09705740837361351 -9669.0,0.09702389172081471 -9670.0,0.09699038664225877 -9671.0,0.09695689313394881 -9672.0,0.09692341119188921 -9673.0,0.09688994081208586 -9674.0,0.096856481990546 -9675.0,0.09682303472327827 -9676.0,0.09678959900629257 -9677.0,0.0967561748356003 -9678.0,0.09672276220721421 -9679.0,0.09668936111714842 -9680.0,0.09665597156141846 -9681.0,0.09662259353604111 -9682.0,0.09658922703703467 -9683.0,0.09655587206041874 -9684.0,0.09652252860221437 -9685.0,0.09648919665844384 -9686.0,0.09645587622513095 -9687.0,0.09642256729830079 -9688.0,0.09638926987397992 -9689.0,0.09635598394819608 -9690.0,0.09632270951697858 -9691.0,0.09628944657635799 -9692.0,0.09625619512236634 -9693.0,0.09622295515103689 -9694.0,0.0961897266584044 -9695.0,0.09615650964050496 -9696.0,0.096123304093376 -9697.0,0.09609011001305638 -9698.0,0.09605692739558623 -9699.0,0.09602375623700715 -9700.0,0.09599059653336203 -9701.0,0.09595744828069523 -9702.0,0.0959243114750523 -9703.0,0.09589118611248032 -9704.0,0.09585807218902767 -9705.0,0.09582496970074414 -9706.0,0.09579187864368076 -9707.0,0.09575879901389006 -9708.0,0.09572573080742586 -9709.0,0.09569267402034343 -9710.0,0.09565962864869924 -9711.0,0.09562659468855127 -9712.0,0.09559357213595879 -9713.0,0.0955605609869825 -9714.0,0.09552756123768434 -9715.0,0.0954945728841277 -9716.0,0.09546159592237734 -9717.0,0.09542863034849933 -9718.0,0.09539567615856115 -9719.0,0.09536273334863153 -9720.0,0.09532980191478069 -9721.0,0.09529688185308013 -9722.0,0.09526397315960278 -9723.0,0.09523107583042278 -9724.0,0.09519818986161578 -9725.0,0.0951653152492587 -9726.0,0.09513245198942988 -9727.0,0.09509960007820892 -9728.0,0.09506675951167683 -9729.0,0.09503393028591599 -9730.0,0.09500111239701015 -9731.0,0.09496830584104429 -9732.0,0.09493551061410488 -9733.0,0.09490272671227967 -9734.0,0.0948699541316578 -9735.0,0.09483719286832977 -9736.0,0.09480444291838731 -9737.0,0.09477170427792365 -9738.0,0.0947389769430333 -9739.0,0.09470626090981217 -9740.0,0.09467355617435738 -9741.0,0.09464086273276755 -9742.0,0.09460818058114258 -9743.0,0.09457550971558379 -9744.0,0.09454285013219367 -9745.0,0.09451020182707624 -9746.0,0.09447756479633677 -9747.0,0.09444493903608198 -9748.0,0.09441232454241973 -9749.0,0.0943797213114594 -9750.0,0.09434712933931168 -9751.0,0.0943145486220886 -9752.0,0.09428197915590347 -9753.0,0.094249420936871 -9754.0,0.09421687396110726 -9755.0,0.0941843382247296 -9756.0,0.09415181372385681 -9757.0,0.09411930045460885 -9758.0,0.0940867984131072 -9759.0,0.09405430759547458 -9760.0,0.09402182799783511 -9761.0,0.09398935961631413 -9762.0,0.09395690244703846 -9763.0,0.09392445648613616 -9764.0,0.09389202172973675 -9765.0,0.09385959817397088 -9766.0,0.09382718581497071 -9767.0,0.09379478464886969 -9768.0,0.09376239467180263 -9769.0,0.09373001587990555 -9770.0,0.09369764826931597 -9771.0,0.09366529183617263 -9772.0,0.09363294657661567 -9773.0,0.09360061248678656 -9774.0,0.093568289562828 -9775.0,0.09353597780088417 -9776.0,0.09350367719710048 -9777.0,0.09347138774762376 -9778.0,0.09343910944860201 -9779.0,0.09340684229618473 -9780.0,0.09337458628652269 -9781.0,0.093342341415768 -9782.0,0.093310107680074 -9783.0,0.0932778850755955 -9784.0,0.09324567359848858 -9785.0,0.09321347324491067 -9786.0,0.09318128401102041 -9787.0,0.09314910589297794 -9788.0,0.09311693888694461 -9789.0,0.09308478298908318 -9790.0,0.09305263819555762 -9791.0,0.09302050450253332 -9792.0,0.09298838190617696 -9793.0,0.09295627040265655 -9794.0,0.09292416998814147 -9795.0,0.09289208065880228 -9796.0,0.09286000241081101 -9797.0,0.09282793524034096 -9798.0,0.09279587914356678 -9799.0,0.09276383411666433 -9800.0,0.09273180015581094 -9801.0,0.09269977725718515 -9802.0,0.09266776541696693 -9803.0,0.09263576463133741 -9804.0,0.09260377489647918 -9805.0,0.09257179620857608 -9806.0,0.09253982856381335 -9807.0,0.09250787195837737 -9808.0,0.09247592638845603 -9809.0,0.09244399185023842 -9810.0,0.092412068339915 -9811.0,0.09238015585367758 -9812.0,0.09234825438771913 -9813.0,0.09231636393823409 -9814.0,0.09228448450141816 -9815.0,0.0922526160734684 -9816.0,0.09222075865058303 -9817.0,0.09218891222896178 -9818.0,0.09215707680480556 -9819.0,0.09212525237431671 -9820.0,0.0920934389336987 -9821.0,0.09206163647915648 -9822.0,0.09202984500689623 -9823.0,0.09199806451312553 -9824.0,0.09196629499405308 -9825.0,0.09193453644588907 -9826.0,0.09190278886484494 -9827.0,0.09187105224713346 -9828.0,0.09183932658896862 -9829.0,0.0918076118865658 -9830.0,0.09177590813614168 -9831.0,0.09174421533391425 -9832.0,0.0917125334761028 -9833.0,0.09168086255892784 -9834.0,0.09164920257861131 -9835.0,0.09161755353137642 -9836.0,0.09158591541344767 -9837.0,0.09155428822105083 -9838.0,0.091522671950413 -9839.0,0.09149106659776263 -9840.0,0.09145947215932944 -9841.0,0.09142788863134438 -9842.0,0.09139631601003981 -9843.0,0.09136475429164932 -9844.0,0.0913332034724079 -9845.0,0.09130166354855168 -9846.0,0.09127013451631821 -9847.0,0.0912386163719463 -9848.0,0.09120710911167608 -9849.0,0.09117561273174898 -9850.0,0.09114412722840767 -9851.0,0.09111265259789617 -9852.0,0.09108118883645978 -9853.0,0.09104973594034517 -9854.0,0.09101829390580013 -9855.0,0.09098686272907391 -9856.0,0.09095544240641702 -9857.0,0.09092403293408124 -9858.0,0.0908926343083196 -9859.0,0.0908612465253865 -9860.0,0.09082986958153763 -9861.0,0.09079850347302995 -9862.0,0.09076714819612167 -9863.0,0.09073580374707234 -9864.0,0.09070447012214282 -9865.0,0.09067314731759527 -9866.0,0.09064183532969303 -9867.0,0.09061053415470084 -9868.0,0.0905792437888847 -9869.0,0.09054796422851191 -9870.0,0.09051669546985107 -9871.0,0.09048543750917197 -9872.0,0.09045419034274582 -9873.0,0.09042295396684503 -9874.0,0.0903917283777434 -9875.0,0.09036051357171584 -9876.0,0.0903293095450387 -9877.0,0.09029811629398958 -9878.0,0.09026693381484736 -9879.0,0.09023576210389216 -9880.0,0.09020460115740543 -9881.0,0.09017345097166991 -9882.0,0.09014231154296964 -9883.0,0.09011118286758985 -9884.0,0.09008006494181714 -9885.0,0.09004895776193937 -9886.0,0.09001786132424569 -9887.0,0.08998677562502656 -9888.0,0.0899557006605736 -9889.0,0.08992463642717982 -9890.0,0.0898935829211395 -9891.0,0.08986254013874823 -9892.0,0.08983150807630272 -9893.0,0.08980048673010115 -9894.0,0.08976947609644288 -9895.0,0.0897384761716286 -9896.0,0.08970748695196018 -9897.0,0.08967650843374086 -9898.0,0.08964554061327515 -9899.0,0.08961458348686883 -9900.0,0.08958363705082888 -9901.0,0.08955270130146364 -9902.0,0.08952177623508271 -9903.0,0.08949086184799698 -9904.0,0.08945995813651854 -9905.0,0.08942906509696082 -9906.0,0.0893981827256385 -9907.0,0.08936731101886755 -9908.0,0.08933644997296523 -9909.0,0.08930559958424998 -9910.0,0.08927475984904161 -9911.0,0.08924393076366115 -9912.0,0.08921311232443097 -9913.0,0.08918230452767456 -9914.0,0.08915150736971683 -9915.0,0.0891207208468839 -9916.0,0.08908994495550318 -9917.0,0.08905917969190329 -9918.0,0.08902842505241416 -9919.0,0.08899768103336701 -9920.0,0.08896694763109435 -9921.0,0.0889362248419298 -9922.0,0.0889055126622084 -9923.0,0.08887481108826645 -9924.0,0.08884412011644142 -9925.0,0.08881343974307218 -9926.0,0.0887827699644987 -9927.0,0.08875211077706233 -9928.0,0.08872146217710564 -9929.0,0.08869082416097254 -9930.0,0.08866019672500805 -9931.0,0.08862957986555858 -9932.0,0.08859897357897176 -9933.0,0.08856837786159652 -9934.0,0.08853779270978294 -9935.0,0.08850721811988248 -9936.0,0.0884766540882478 -9937.0,0.08844610061123287 -9938.0,0.08841555768519282 -9939.0,0.08838502530648414 -9940.0,0.08835450347146453 -9941.0,0.088323992176493 -9942.0,0.0882934914179297 -9943.0,0.08826300119213616 -9944.0,0.0882325214954751 -9945.0,0.08820205232431053 -9946.0,0.08817159367500772 -9947.0,0.08814114554393311 -9948.0,0.0881107079274545 -9949.0,0.0880802808219409 -9950.0,0.08804986422376261 -9951.0,0.0880194581292911 -9952.0,0.08798906253489916 -9953.0,0.08795867743696081 -9954.0,0.0879283028318514 -9955.0,0.08789793871594735 -9956.0,0.0878675850856265 -9957.0,0.08783724193726788 -9958.0,0.08780690926725182 -9959.0,0.08777658707195976 -9960.0,0.08774627534777454 -9961.0,0.08771597409108017 -9962.0,0.08768568329826194 -9963.0,0.08765540296570644 -9964.0,0.08762513308980134 -9965.0,0.0875948736669357 -9966.0,0.08756462469349983 -9967.0,0.08753438616588524 -9968.0,0.08750415808048466 -9969.0,0.08747394043369211 -9970.0,0.08744373322190284 -9971.0,0.08741353644151341 -9972.0,0.08738335008892148 -9973.0,0.08735317416052608 -9974.0,0.08732300865272744 -9975.0,0.08729285356192705 -9976.0,0.08726270888452758 -9977.0,0.08723257461693303 -9978.0,0.08720245075554857 -9979.0,0.08717233729678071 -9980.0,0.08714223423703706 -9981.0,0.08711214157272656 -9982.0,0.08708205930025939 -9983.0,0.08705198741604694 -9984.0,0.08702192591650192 -9985.0,0.08699187479803812 -9986.0,0.08696183405707068 -9987.0,0.08693180369001598 -9988.0,0.08690178369329166 -9989.0,0.08687177406331646 -9990.0,0.08684177479651049 -9991.0,0.08681178588929507 -9992.0,0.08678180733809276 -9993.0,0.0867518391393273 -9994.0,0.08672188128942368 -9995.0,0.0866919337848082 -9996.0,0.08666199662190835 -9997.0,0.08663206979715278 -9998.0,0.08660215330697148 -9999.0,0.08657224714779561 -10000.0,0.08654235131605761 -10001.0,0.08651246580819116 -10002.0,0.08648259062063104 -10003.0,0.08645272574981341 -10004.0,0.08642287119217561 -10005.0,0.08639302694415624 -10006.0,0.08636319300219503 -10007.0,0.08633336936273303 -10008.0,0.08630355602221253 -10009.0,0.08627375297707701 -10010.0,0.08624396022377115 -10011.0,0.0862141777587409 -10012.0,0.08618440557843346 -10013.0,0.08615464367929723 -10014.0,0.08612489205778177 -10015.0,0.08609515071033798 -10016.0,0.0860654196334179 -10017.0,0.08603569882347491 -10018.0,0.08600598827696343 -10019.0,0.08597628799033925 -10020.0,0.08594659796005935 -10021.0,0.08591691818258192 -10022.0,0.08588724865436642 -10023.0,0.0858575893718734 -10024.0,0.0858279403315648 -10025.0,0.08579830152990367 -10026.0,0.08576867296335437 -10027.0,0.08573905462838234 -10028.0,0.08570944652145439 -10029.0,0.08567984863903846 -10030.0,0.08565026097760381 -10031.0,0.08562068353362073 -10032.0,0.08559111630356092 -10033.0,0.0855615592838972 -10034.0,0.0855320124711037 -10035.0,0.0855024758616556 -10036.0,0.08547294945202945 -10037.0,0.08544343323870295 -10038.0,0.08541392721815505 -10039.0,0.08538443138686591 -10040.0,0.08535494574131684 -10041.0,0.08532547027799044 -10042.0,0.0852960049933705 -10043.0,0.0852665498839421 -10044.0,0.08523710494619133 -10045.0,0.0852076701766057 -10046.0,0.08517824557167385 -10047.0,0.08514883112788565 -10048.0,0.08511942684173214 -10049.0,0.08509003270970561 -10050.0,0.08506064872829956 -10051.0,0.08503127489400875 -10052.0,0.08500191120332899 -10053.0,0.08497255765275746 -10054.0,0.08494321423879252 -10055.0,0.0849138809579337 -10056.0,0.0848845578066817 -10057.0,0.08485524478153855 -10058.0,0.08482594187900738 -10059.0,0.08479664909559259 -10060.0,0.08476736642779979 -10061.0,0.08473809387213571 -10062.0,0.08470883142510836 -10063.0,0.08467957908322697 -10064.0,0.08465033684300198 -10065.0,0.08462110470094492 -10066.0,0.08459188265356864 -10067.0,0.08456267069738718 -10068.0,0.0845334688289158 -10069.0,0.08450427704467085 -10070.0,0.08447509534117001 -10071.0,0.0844459237149321 -10072.0,0.0844167621624772 -10073.0,0.08438761068032649 -10074.0,0.08435846926500243 -10075.0,0.08432933791302867 -10076.0,0.08430021662093005 -10077.0,0.08427110538523265 -10078.0,0.08424200420246362 -10079.0,0.08421291306915148 -10080.0,0.08418383198182583 -10081.0,0.08415476093701757 -10082.0,0.08412569993125865 -10083.0,0.08409664896108235 -10084.0,0.08406760802302309 -10085.0,0.08403857711361652 -10086.0,0.08400955622939943 -10087.0,0.08398054536690985 -10088.0,0.08395154452268701 -10089.0,0.08392255369327135 -10090.0,0.0838935728752044 -10091.0,0.08386460206502899 -10092.0,0.08383564125928913 -10093.0,0.08380669045453004 -10094.0,0.08377774964729802 -10095.0,0.08374881883414068 -10096.0,0.08371989801160677 -10097.0,0.08369098717624629 -10098.0,0.08366208632461038 -10099.0,0.08363319545325133 -10100.0,0.0836043145587227 -10101.0,0.08357544363757922 -10102.0,0.08354658268637682 -10103.0,0.08351773170167252 -10104.0,0.08348889068002467 -10105.0,0.08346005961799274 -10106.0,0.08343123851213742 -10107.0,0.08340242735902048 -10108.0,0.08337362615520502 -10109.0,0.08334483489725526 -10110.0,0.08331605358173663 -10111.0,0.08328728220521568 -10112.0,0.08325852076426023 -10113.0,0.08322976925543923 -10114.0,0.08320102767532285 -10115.0,0.08317229602048247 -10116.0,0.08314357428749053 -10117.0,0.08311486247292077 -10118.0,0.08308616057334808 -10119.0,0.08305746858534858 -10120.0,0.08302878650549946 -10121.0,0.08300011433037915 -10122.0,0.08297145205656732 -10123.0,0.08294279968064479 -10124.0,0.08291415719919344 -10125.0,0.0828855246087965 -10126.0,0.08285690190603831 -10127.0,0.0828282890875044 -10128.0,0.08279968614978143 -10129.0,0.08277109308945729 -10130.0,0.08274250990312104 -10131.0,0.08271393658736297 -10132.0,0.08268537313877439 -10133.0,0.08265681955394795 -10134.0,0.08262827582947739 -10135.0,0.08259974196195768 -10136.0,0.08257121794798496 -10137.0,0.08254270378415644 -10138.0,0.08251419946707064 -10139.0,0.0824857049933272 -10140.0,0.08245722035952698 -10141.0,0.08242874556227188 -10142.0,0.08240028059816511 -10143.0,0.08237182546381101 -10144.0,0.08234338015581512 -10145.0,0.08231494467078405 -10146.0,0.08228651900532571 -10147.0,0.0822581031560491 -10148.0,0.08222969711956446 -10149.0,0.08220130089248309 -10150.0,0.08217291447141756 -10151.0,0.08214453785298158 -10152.0,0.08211617103379001 -10153.0,0.08208781401045896 -10154.0,0.08205946677960554 -10155.0,0.0820311293378482 -10156.0,0.08200280168180647 -10157.0,0.08197448380810111 -10158.0,0.08194617571335393 -10159.0,0.081917877394188 -10160.0,0.08188958884722757 -10161.0,0.08186131006909804 -10162.0,0.08183304105642587 -10163.0,0.08180478180583885 -10164.0,0.08177653231396582 -10165.0,0.08174829257743688 -10166.0,0.08172006259288314 -10167.0,0.08169184235693704 -10168.0,0.08166363186623207 -10169.0,0.08163543111740296 -10170.0,0.08160724010708559 -10171.0,0.08157905883191689 -10172.0,0.0815508872885351 -10173.0,0.08152272547357954 -10174.0,0.08149457338369076 -10175.0,0.08146643101551035 -10176.0,0.08143829836568116 -10177.0,0.08141017543084716 -10178.0,0.08138206220765355 -10179.0,0.08135395869274654 -10180.0,0.08132586488277362 -10181.0,0.0812977807743834 -10182.0,0.08126970636422572 -10183.0,0.08124164164895138 -10184.0,0.08121358662521254 -10185.0,0.08118554128966243 -10186.0,0.08115750563895549 -10187.0,0.08112947966974718 -10188.0,0.08110146337869426 -10189.0,0.08107345676245457 -10190.0,0.08104545981768714 -10191.0,0.08101747254105218 -10192.0,0.08098949492921094 -10193.0,0.08096152697882592 -10194.0,0.08093356868656075 -10195.0,0.08090562004908025 -10196.0,0.08087768106305027 -10197.0,0.08084975172513793 -10198.0,0.08082183203201149 -10199.0,0.08079392198034033 -10200.0,0.08076602156679494 -10201.0,0.08073813078804702 -10202.0,0.08071024964076942 -10203.0,0.08068237812163616 -10204.0,0.0806545162273223 -10205.0,0.08062666395450413 -10206.0,0.0805988212998591 -10207.0,0.08057098826006577 -10208.0,0.08054316483180392 -10209.0,0.08051535101175432 -10210.0,0.08048754679659904 -10211.0,0.08045975218302123 -10212.0,0.08043196716770523 -10213.0,0.08040419174733643 -10214.0,0.08037642591860145 -10215.0,0.08034866967818802 -10216.0,0.08032092302278508 -10217.0,0.08029318594908257 -10218.0,0.0802654584537717 -10219.0,0.08023774053354478 -10220.0,0.0802100321850953 -10221.0,0.0801823334051178 -10222.0,0.08015464419030803 -10223.0,0.08012696453736287 -10224.0,0.0800992944429804 -10225.0,0.08007163390385968 -10226.0,0.08004398291670106 -10227.0,0.08001634147820598 -10228.0,0.079988709585077 -10229.0,0.07996108723401789 -10230.0,0.07993347442173343 -10231.0,0.07990587114492965 -10232.0,0.07987827740031368 -10233.0,0.07985069318459381 -10234.0,0.0798231184944794 -10235.0,0.07979555332668099 -10236.0,0.07976799767791029 -10237.0,0.07974045154488013 -10238.0,0.07971291492430439 -10239.0,0.07968538781289819 -10240.0,0.07965787020737775 -10241.0,0.07963036210446044 -10242.0,0.07960286350086468 -10243.0,0.07957537439331012 -10244.0,0.07954789477851754 -10245.0,0.07952042465320877 -10246.0,0.0794929640141069 -10247.0,0.07946551285793599 -10248.0,0.07943807118142135 -10249.0,0.0794106389812894 -10250.0,0.07938321625426771 -10251.0,0.07935580299708486 -10252.0,0.07932839920647071 -10253.0,0.07930100487915617 -10254.0,0.07927362001187334 -10255.0,0.07924624460135533 -10256.0,0.07921887864433651 -10257.0,0.07919152213755228 -10258.0,0.07916417507773926 -10259.0,0.07913683746163509 -10260.0,0.07910950928597862 -10261.0,0.0790821905475098 -10262.0,0.07905488124296972 -10263.0,0.07902758136910053 -10264.0,0.07900029092264557 -10265.0,0.0789730099003493 -10266.0,0.0789457382989573 -10267.0,0.0789184761152163 -10268.0,0.07889122334587403 -10269.0,0.07886397998767951 -10270.0,0.07883674603738275 -10271.0,0.07880952149173502 -10272.0,0.07878230634748853 -10273.0,0.07875510060139677 -10274.0,0.07872790425021428 -10275.0,0.07870071729069678 -10276.0,0.07867353971960098 -10277.0,0.07864637153368483 -10278.0,0.07861921272970736 -10279.0,0.07859206330442878 -10280.0,0.07856492325461026 -10281.0,0.07853779257701425 -10282.0,0.07851067126840425 -10283.0,0.07848355932554489 -10284.0,0.07845645674520194 -10285.0,0.07842936352414219 -10286.0,0.07840227965913366 -10287.0,0.07837520514694543 -10288.0,0.07834813998434775 -10289.0,0.07832108416811187 -10290.0,0.07829403769501028 -10291.0,0.07826700056181651 -10292.0,0.07823997276530527 -10293.0,0.07821295430225228 -10294.0,0.07818594516943446 -10295.0,0.07815894536362981 -10296.0,0.0781319548816175 -10297.0,0.07810497372017769 -10298.0,0.07807800187609176 -10299.0,0.07805103934614215 -10300.0,0.07802408612711248 -10301.0,0.07799714221578735 -10302.0,0.07797020760895258 -10303.0,0.07794328230339508 -10304.0,0.07791636629590284 -10305.0,0.07788945958326503 -10306.0,0.07786256216227178 -10307.0,0.07783567402971449 -10308.0,0.07780879518238558 -10309.0,0.07778192561707864 -10310.0,0.07775506533058825 -10311.0,0.07772821431971022 -10312.0,0.07770137258124142 -10313.0,0.07767454011197987 -10314.0,0.07764771690872455 -10315.0,0.07762090296827572 -10316.0,0.07759409828743463 -10317.0,0.07756730286300376 -10318.0,0.0775405166917865 -10319.0,0.07751373977058752 -10320.0,0.07748697209621253 -10321.0,0.0774602136654683 -10322.0,0.07743346447516282 -10323.0,0.07740672452210502 -10324.0,0.07737999380310506 -10325.0,0.07735327231497417 -10326.0,0.07732656005452468 -10327.0,0.07729985701856996 -10328.0,0.07727316320392456 -10329.0,0.0772464786074041 -10330.0,0.07721980322582536 -10331.0,0.07719313705600607 -10332.0,0.07716648009476519 -10333.0,0.07713983233892273 -10334.0,0.07711319378529986 -10335.0,0.07708656443071872 -10336.0,0.07705994427200265 -10337.0,0.07703333330597605 -10338.0,0.07700673152946448 -10339.0,0.07698013893929447 -10340.0,0.07695355553229374 -10341.0,0.0769269813052911 -10342.0,0.07690041625511643 -10343.0,0.07687386037860075 -10344.0,0.07684731367257605 -10345.0,0.07682077613387557 -10346.0,0.07679424775933355 -10347.0,0.07676772854578538 -10348.0,0.07674121849006747 -10349.0,0.07671471758901738 -10350.0,0.07668822583947373 -10351.0,0.0766617432382763 -10352.0,0.07663526978226586 -10353.0,0.07660880546828432 -10354.0,0.07658235029317469 -10355.0,0.07655590425378109 -10356.0,0.07652946734694864 -10357.0,0.07650303956952365 -10358.0,0.07647662091835347 -10359.0,0.07645021139028656 -10360.0,0.07642381098217246 -10361.0,0.07639741969086175 -10362.0,0.07637103751320617 -10363.0,0.07634466444605853 -10364.0,0.07631830048627274 -10365.0,0.0762919456307037 -10366.0,0.07626559987620748 -10367.0,0.07623926321964128 -10368.0,0.07621293565786331 -10369.0,0.07618661718773284 -10370.0,0.07616030780611031 -10371.0,0.07613400750985719 -10372.0,0.07610771629583607 -10373.0,0.07608143416091055 -10374.0,0.07605516110194539 -10375.0,0.0760288971158064 -10376.0,0.07600264219936052 -10377.0,0.07597639634947567 -10378.0,0.07595015956302094 -10379.0,0.07592393183686645 -10380.0,0.07589771316788345 -10381.0,0.07587150355294427 -10382.0,0.07584530298892223 -10383.0,0.07581911147269182 -10384.0,0.07579292900112858 -10385.0,0.07576675557110918 -10386.0,0.07574059117951125 -10387.0,0.07571443582321359 -10388.0,0.07568828949909606 -10389.0,0.07566215220403964 -10390.0,0.07563602393492627 -10391.0,0.07560990468863907 -10392.0,0.0755837944620622 -10393.0,0.07555769325208093 -10394.0,0.07553160105558152 -10395.0,0.0755055178694514 -10396.0,0.075479443690579 -10397.0,0.07545337851585392 -10398.0,0.07542732234216674 -10399.0,0.07540127516640914 -10400.0,0.0753752369854739 -10401.0,0.07534920779625483 -10402.0,0.07532318759564689 -10403.0,0.07529717638054599 -10404.0,0.07527117414784922 -10405.0,0.0752451808944547 -10406.0,0.07521919661726165 -10407.0,0.07519322131317027 -10408.0,0.07516725497908196 -10409.0,0.07514129761189907 -10410.0,0.07511534920852515 -10411.0,0.07508940976586467 -10412.0,0.07506347928082327 -10413.0,0.07503755775030764 -10414.0,0.07501164517122556 -10415.0,0.07498574154048578 -10416.0,0.07495984685499822 -10417.0,0.07493396111167383 -10418.0,0.07490808430742463 -10419.0,0.07488221643916375 -10420.0,0.07485635750380526 -10421.0,0.07483050749826442 -10422.0,0.0748046664194575 -10423.0,0.07477883426430192 -10424.0,0.07475301102971597 -10425.0,0.0747271967126192 -10426.0,0.07470139130993213 -10427.0,0.07467559481857641 -10428.0,0.07464980723547464 -10429.0,0.07462402855755057 -10430.0,0.07459825878172899 -10431.0,0.07457249790493581 -10432.0,0.07454674592409785 -10433.0,0.07452100283614314 -10434.0,0.07449526863800073 -10435.0,0.07446954332660068 -10436.0,0.0744438268988742 -10437.0,0.07441811935175344 -10438.0,0.07439242068217172 -10439.0,0.07436673088706336 -10440.0,0.0743410499633638 -10441.0,0.07431537790800942 -10442.0,0.07428971471793777 -10443.0,0.07426406039008741 -10444.0,0.07423841492139802 -10445.0,0.07421277830881018 -10446.0,0.0741871505492657 -10447.0,0.07416153163970733 -10448.0,0.074135921577079 -10449.0,0.07411032035832554 -10450.0,0.07408472798039292 -10451.0,0.07405914444022818 -10452.0,0.07403356973477943 -10453.0,0.0740080038609957 -10454.0,0.0739824468158272 -10455.0,0.07395689859622519 -10456.0,0.07393135919914193 -10457.0,0.0739058286215308 -10458.0,0.07388030686034613 -10459.0,0.07385479391254338 -10460.0,0.07382928977507904 -10461.0,0.07380379444491068 -10462.0,0.07377830791899685 -10463.0,0.07375283019429721 -10464.0,0.07372736126777245 -10465.0,0.07370190113638436 -10466.0,0.07367644979709566 -10467.0,0.07365100724687021 -10468.0,0.07362557348267292 -10469.0,0.07360014850146974 -10470.0,0.07357473230022761 -10471.0,0.07354932487591459 -10472.0,0.07352392622549975 -10473.0,0.07349853634595323 -10474.0,0.0734731552342462 -10475.0,0.07344778288735086 -10476.0,0.0734224193022405 -10477.0,0.0733970644758894 -10478.0,0.07337171840527296 -10479.0,0.07334638108736752 -10480.0,0.07332105251915055 -10481.0,0.07329573269760054 -10482.0,0.07327042161969705 -10483.0,0.07324511928242058 -10484.0,0.07321982568275279 -10485.0,0.07319454081767635 -10486.0,0.07316926468417495 -10487.0,0.0731439972792333 -10488.0,0.07311873859983722 -10489.0,0.07309348864297352 -10490.0,0.0730682474056301 -10491.0,0.0730430148847958 -10492.0,0.07301779107746058 -10493.0,0.07299257598061545 -10494.0,0.07296736959125243 -10495.0,0.07294217190636458 -10496.0,0.07291698292294599 -10497.0,0.07289180263799178 -10498.0,0.07286663104849815 -10499.0,0.07284146815146235 -10500.0,0.07281631394388255 -10501.0,0.07279116842275808 -10502.0,0.07276603158508926 -10503.0,0.07274090342787748 -10504.0,0.07271578394812506 -10505.0,0.07269067314283548 -10506.0,0.07266557100901319 -10507.0,0.07264047754366372 -10508.0,0.07261539274379356 -10509.0,0.07259031660641027 -10510.0,0.07256524912852248 -10511.0,0.07254019030713982 -10512.0,0.07251514013927297 -10513.0,0.07249009862193359 -10514.0,0.07246506575213442 -10515.0,0.07244004152688922 -10516.0,0.07241502594321284 -10517.0,0.072390018998121 -10518.0,0.07236502068863061 -10519.0,0.07234003101175956 -10520.0,0.07231504996452678 -10521.0,0.07229007754395217 -10522.0,0.07226511374705671 -10523.0,0.07224015857086241 -10524.0,0.07221521201239234 -10525.0,0.07219027406867047 -10526.0,0.07216534473672195 -10527.0,0.07214042401357287 -10528.0,0.07211551189625041 -10529.0,0.07209060838178266 -10530.0,0.07206571346719887 -10531.0,0.07204082714952922 -10532.0,0.072015949425805 -10533.0,0.07199108029305847 -10534.0,0.07196621974832289 -10535.0,0.07194136778863258 -10536.0,0.0719165244110229 -10537.0,0.07189168961253026 -10538.0,0.07186686339019197 -10539.0,0.07184204574104647 -10540.0,0.0718172366621332 -10541.0,0.07179243615049266 -10542.0,0.07176764420316627 -10543.0,0.07174286081719654 -10544.0,0.071718085989627 -10545.0,0.07169331971750224 -10546.0,0.07166856199786774 -10547.0,0.07164381282777013 -10548.0,0.07161907220425702 -10549.0,0.07159434012437703 -10550.0,0.07156961658517981 -10551.0,0.071544901583716 -10552.0,0.07152019511703728 -10553.0,0.07149549718219636 -10554.0,0.071470807776247 -10555.0,0.07144612689624384 -10556.0,0.0714214545392427 -10557.0,0.07139679070230032 -10558.0,0.07137213538247453 -10559.0,0.07134748857682405 -10560.0,0.07132285028240876 -10561.0,0.07129822049628945 -10562.0,0.07127359921552802 -10563.0,0.07124898643718727 -10564.0,0.07122438215833111 -10565.0,0.07119978637602441 -10566.0,0.07117519908733312 -10567.0,0.0711506202893241 -10568.0,0.07112604997906528 -10569.0,0.07110148815362563 -10570.0,0.07107693481007508 -10571.0,0.07105238994548466 -10572.0,0.07102785355692624 -10573.0,0.07100332564147288 -10574.0,0.07097880619619855 -10575.0,0.0709542952181783 -10576.0,0.07092979270448808 -10577.0,0.07090529865220498 -10578.0,0.070880813058407 -10579.0,0.07085633592017324 -10580.0,0.07083186723458368 -10581.0,0.07080740699871942 -10582.0,0.07078295520966255 -10583.0,0.07075851186449615 -10584.0,0.07073407696030426 -10585.0,0.07070965049417202 -10586.0,0.0706852324631855 -10587.0,0.07066082286443184 -10588.0,0.07063642169499916 -10589.0,0.07061202895197653 -10590.0,0.0705876446324541 -10591.0,0.07056326873352298 -10592.0,0.07053890125227537 -10593.0,0.07051454218580432 -10594.0,0.07049019153120399 -10595.0,0.07046584928556957 -10596.0,0.0704415154459972 -10597.0,0.07041719000958398 -10598.0,0.07039287297342808 -10599.0,0.07036856433462868 -10600.0,0.07034426409028596 -10601.0,0.07031997223750101 -10602.0,0.07029568877337602 -10603.0,0.07027141369501415 -10604.0,0.07024714699951959 -10605.0,0.07022288868399745 -10606.0,0.0701986387455539 -10607.0,0.07017439718129613 -10608.0,0.07015016398833226 -10609.0,0.07012593916377151 -10610.0,0.07010172270472395 -10611.0,0.07007751460830078 -10612.0,0.07005331487161415 -10613.0,0.07002912349177721 -10614.0,0.0700049404659041 -10615.0,0.06998076579110993 -10616.0,0.06995659946451088 -10617.0,0.0699324414832241 -10618.0,0.06990829184436766 -10619.0,0.0698841505450607 -10620.0,0.06986001758242337 -10621.0,0.06983589295357678 -10622.0,0.069811776655643 -10623.0,0.06978766868574515 -10624.0,0.06976356904100733 -10625.0,0.06973947771855463 -10626.0,0.06971539471551316 -10627.0,0.06969132002900993 -10628.0,0.06966725365617304 -10629.0,0.06964319559413154 -10630.0,0.06961914584001551 -10631.0,0.06959510439095594 -10632.0,0.06957107124408488 -10633.0,0.06954704639653535 -10634.0,0.0695230298454414 -10635.0,0.06949902158793797 -10636.0,0.06947502162116106 -10637.0,0.06945102994224768 -10638.0,0.0694270465483358 -10639.0,0.06940307143656434 -10640.0,0.06937910460407325 -10641.0,0.06935514604800348 -10642.0,0.06933119576549697 -10643.0,0.06930725375369658 -10644.0,0.0692833200097462 -10645.0,0.06925939453079075 -10646.0,0.06923547731397606 -10647.0,0.06921156835644902 -10648.0,0.06918766765535743 -10649.0,0.06916377520785011 -10650.0,0.06913989101107687 -10651.0,0.06911601506218855 -10652.0,0.06909214735833684 -10653.0,0.06906828789667453 -10654.0,0.06904443667435539 -10655.0,0.06902059368853414 -10656.0,0.06899675893636642 -10657.0,0.06897293241500897 -10658.0,0.06894911412161946 -10659.0,0.06892530405335656 -10660.0,0.06890150220737985 -10661.0,0.06887770858084996 -10662.0,0.0688539231709285 -10663.0,0.06883014597477805 -10664.0,0.06880637698956217 -10665.0,0.06878261621244534 -10666.0,0.06875886364059311 -10667.0,0.06873511927117197 -10668.0,0.06871138310134943 -10669.0,0.06868765512829385 -10670.0,0.06866393534917471 -10671.0,0.06864022376116241 -10672.0,0.06861652036142835 -10673.0,0.06859282514714483 -10674.0,0.06856913811548522 -10675.0,0.06854545926362383 -10676.0,0.06852178858873598 -10677.0,0.06849812608799785 -10678.0,0.06847447175858673 -10679.0,0.06845082559768081 -10680.0,0.06842718760245933 -10681.0,0.06840355777010237 -10682.0,0.0683799360977911 -10683.0,0.06835632258270762 -10684.0,0.06833271722203502 -10685.0,0.06830912001295739 -10686.0,0.06828553095265966 -10687.0,0.0682619500383279 -10688.0,0.06823837726714904 -10689.0,0.06821481263631109 -10690.0,0.06819125614300287 -10691.0,0.0681677077844143 -10692.0,0.06814416755773624 -10693.0,0.06812063546016053 -10694.0,0.06809711148887992 -10695.0,0.0680735956410882 -10696.0,0.06805008791398008 -10697.0,0.0680265883047513 -10698.0,0.06800309681059849 -10699.0,0.06797961342871928 -10700.0,0.0679561381563123 -10701.0,0.0679326709905771 -10702.0,0.06790921192871427 -10703.0,0.06788576096792523 -10704.0,0.06786231810541252 -10705.0,0.06783888333837954 -10706.0,0.06781545666403073 -10707.0,0.0677920380795714 -10708.0,0.06776862758220793 -10709.0,0.06774522516914762 -10710.0,0.06772183083759874 -10711.0,0.06769844458477046 -10712.0,0.067675066407873 -10713.0,0.06765169630411755 -10714.0,0.06762833427071621 -10715.0,0.06760498030488202 -10716.0,0.06758163440382904 -10717.0,0.0675582965647723 -10718.0,0.06753496678492778 -10719.0,0.06751164506151235 -10720.0,0.06748833139174391 -10721.0,0.06746502577284133 -10722.0,0.06744172820202442 -10723.0,0.06741843867651398 -10724.0,0.06739515719353166 -10725.0,0.0673718837503002 -10726.0,0.06734861834404325 -10727.0,0.06732536097198544 -10728.0,0.06730211163135226 -10729.0,0.06727887031937027 -10730.0,0.06725563703326697 -10731.0,0.06723241177027081 -10732.0,0.06720919452761114 -10733.0,0.06718598530251832 -10734.0,0.06716278409222366 -10735.0,0.06713959089395949 -10736.0,0.06711640570495894 -10737.0,0.06709322852245622 -10738.0,0.06707005934368647 -10739.0,0.06704689816588576 -10740.0,0.06702374498629118 -10741.0,0.06700059980214065 -10742.0,0.06697746261067315 -10743.0,0.06695433340912858 -10744.0,0.06693121219474785 -10745.0,0.06690809896477268 -10746.0,0.06688499371644585 -10747.0,0.06686189644701111 -10748.0,0.06683880715371313 -10749.0,0.06681572583379745 -10750.0,0.06679265248451072 -10751.0,0.0667695871031004 -10752.0,0.06674652968681502 -10753.0,0.06672348023290393 -10754.0,0.06670043873861753 -10755.0,0.06667740520120714 -10756.0,0.06665437961792504 -10757.0,0.06663136198602441 -10758.0,0.06660835230275944 -10759.0,0.06658535056538523 -10760.0,0.06656235677115785 -10761.0,0.06653937091733432 -10762.0,0.06651639300117257 -10763.0,0.0664934230199315 -10764.0,0.06647046097087098 -10765.0,0.06644750685125181 -10766.0,0.0664245606583357 -10767.0,0.06640162238938535 -10768.0,0.0663786920416644 -10769.0,0.06635576961243744 -10770.0,0.06633285509896995 -10771.0,0.06630994849852842 -10772.0,0.06628704980838025 -10773.0,0.06626415902579384 -10774.0,0.06624127614803842 -10775.0,0.06621840117238426 -10776.0,0.06619553409610253 -10777.0,0.06617267491646536 -10778.0,0.06614982363074587 -10779.0,0.06612698023621798 -10780.0,0.06610414473015667 -10781.0,0.06608131710983785 -10782.0,0.06605849737253836 -10783.0,0.06603568551553593 -10784.0,0.06601288153610929 -10785.0,0.0659900854315381 -10786.0,0.06596729719910298 -10787.0,0.06594451683608539 -10788.0,0.06592174433976783 -10789.0,0.06589897970743372 -10790.0,0.06587622293636743 -10791.0,0.06585347402385418 -10792.0,0.06583073296718023 -10793.0,0.06580799976363272 -10794.0,0.06578527441049978 -10795.0,0.06576255690507038 -10796.0,0.06573984724463454 -10797.0,0.06571714542648313 -10798.0,0.06569445144790802 -10799.0,0.06567176530620199 -10800.0,0.06564908699865869 -10801.0,0.06562641652257281 -10802.0,0.06560375387523991 -10803.0,0.06558109905395654 -10804.0,0.0655584520560201 -10805.0,0.06553581287872896 -10806.0,0.06551318151938246 -10807.0,0.06549055797528086 -10808.0,0.0654679422437253 -10809.0,0.06544533432201789 -10810.0,0.06542273420746168 -10811.0,0.06540014189736068 -10812.0,0.06537755738901972 -10813.0,0.06535498067974467 -10814.0,0.06533241176684229 -10815.0,0.06530985064762028 -10816.0,0.06528729731938727 -10817.0,0.06526475177945279 -10818.0,0.06524221402512731 -10819.0,0.06521968405372228 -10820.0,0.06519716186255003 -10821.0,0.0651746474489238 -10822.0,0.0651521408101578 -10823.0,0.06512964194356714 -10824.0,0.06510715084646793 -10825.0,0.06508466751617706 -10826.0,0.06506219195001246 -10827.0,0.065039724145293 -10828.0,0.0650172640993384 -10829.0,0.06499481180946934 -10830.0,0.06497236727300741 -10831.0,0.06494993048727518 -10832.0,0.06492750144959611 -10833.0,0.06490508015729451 -10834.0,0.06488266660769575 -10835.0,0.06486026079812603 -10836.0,0.06483786272591249 -10837.0,0.06481547238838327 -10838.0,0.06479308978286727 -10839.0,0.06477071490669446 -10840.0,0.06474834775719568 -10841.0,0.0647259883317027 -10842.0,0.06470363662754818 -10843.0,0.06468129264206572 -10844.0,0.06465895637258985 -10845.0,0.06463662781645607 -10846.0,0.06461430697100068 -10847.0,0.06459199383356097 -10848.0,0.06456968840147517 -10849.0,0.06454739067208243 -10850.0,0.06452510064272272 -10851.0,0.06450281831073706 -10852.0,0.06448054367346731 -10853.0,0.06445827672825627 -10854.0,0.06443601747244768 -10855.0,0.06441376590338613 -10856.0,0.06439152201841718 -10857.0,0.06436928581488731 -10858.0,0.06434705729014392 -10859.0,0.06432483644153528 -10860.0,0.0643026232664106 -10861.0,0.06428041776212004 -10862.0,0.06425821992601465 -10863.0,0.06423602975544633 -10864.0,0.064213847247768 -10865.0,0.06419167240033345 -10866.0,0.0641695052104974 -10867.0,0.0641473456756154 -10868.0,0.06412519379304403 -10869.0,0.06410304956014072 -10870.0,0.06408091297426385 -10871.0,0.06405878403277265 -10872.0,0.0640366627330273 -10873.0,0.0640145490723889 -10874.0,0.06399244304821947 -10875.0,0.06397034465788191 -10876.0,0.06394825389874002 -10877.0,0.06392617076815856 -10878.0,0.06390409526350316 -10879.0,0.06388202738214041 -10880.0,0.06385996712143771 -10881.0,0.06383791447876346 -10882.0,0.06381586945148694 -10883.0,0.06379383203697839 -10884.0,0.06377180223260882 -10885.0,0.06374978003575027 -10886.0,0.06372776544377567 -10887.0,0.06370575845405885 -10888.0,0.06368375906397448 -10889.0,0.06366176727089824 -10890.0,0.06363978307220665 -10891.0,0.06361780646527716 -10892.0,0.06359583744748816 -10893.0,0.06357387601621883 -10894.0,0.06355192216884938 -10895.0,0.06352997590276085 -10896.0,0.06350803721533527 -10897.0,0.06348610610395544 -10898.0,0.06346418256600517 -10899.0,0.06344226659886915 -10900.0,0.06342035819993297 -10901.0,0.06339845736658309 -10902.0,0.0633765640962069 -10903.0,0.06335467838619273 -10904.0,0.06333280023392976 -10905.0,0.06331092963680805 -10906.0,0.06328906659221864 -10907.0,0.0632672110975534 -10908.0,0.06324536315020517 -10909.0,0.0632235227475676 -10910.0,0.06320168988703531 -10911.0,0.06317986456600379 -10912.0,0.06315804678186945 -10913.0,0.06313623653202963 -10914.0,0.06311443381388243 -10915.0,0.06309263862482702 -10916.0,0.06307085096226335 -10917.0,0.06304907082359236 -10918.0,0.06302729820621578 -10919.0,0.06300553310753633 -10920.0,0.06298377552495758 -10921.0,0.06296202545588404 -10922.0,0.06294028289772104 -10923.0,0.06291854784787486 -10924.0,0.0628968203037527 -10925.0,0.0628751002627626 -10926.0,0.06285338772231351 -10927.0,0.06283168267981529 -10928.0,0.06280998513267869 -10929.0,0.06278829507831533 -10930.0,0.0627666125141378 -10931.0,0.06274493743755948 -10932.0,0.06272326984599468 -10933.0,0.06270160973685864 -10934.0,0.06267995710756749 -10935.0,0.06265831195553818 -10936.0,0.06263667427818863 -10937.0,0.06261504407293761 -10938.0,0.06259342133720483 -10939.0,0.0625718060684108 -10940.0,0.062550198263977 -10941.0,0.06252859792132578 -10942.0,0.0625070050378804 -10943.0,0.06248541961106494 -10944.0,0.06246384163830444 -10945.0,0.0624422711170248 -10946.0,0.06242070804465284 -10947.0,0.0623991524186162 -10948.0,0.06237760423634346 -10949.0,0.062356063495264104 -10950.0,0.062334530192808456 -10951.0,0.06231300432640778 -10952.0,0.06229148589349416 -10953.0,0.06226997489150061 -10954.0,0.062248471317861036 -10955.0,0.062226975170010246 -10956.0,0.06220548644538385 -10957.0,0.062184005141418426 -10958.0,0.062162531255551406 -10959.0,0.06214106478522115 -10960.0,0.0621196057278668 -10961.0,0.06209815408092848 -10962.0,0.06207670984184717 -10963.0,0.062055273008064744 -10964.0,0.0620338435770239 -10965.0,0.06201242154616828 -10966.0,0.061991006912942404 -10967.0,0.061969599674791646 -10968.0,0.061948199829162325 -10969.0,0.06192680737350153 -10970.0,0.06190542230525732 -10971.0,0.061884044621878624 -10972.0,0.06186267432081526 -10973.0,0.06184131139951785 -10974.0,0.061819955855437994 -10975.0,0.061798607686028115 -10976.0,0.06177726688874157 -10977.0,0.061755933461032496 -10978.0,0.06173460740035601 -10979.0,0.06171328870416805 -10980.0,0.06169197736992549 -10981.0,0.06167067339508599 -10982.0,0.061649376777108154 -10983.0,0.061628087513451474 -10984.0,0.0616068056015763 -10985.0,0.06158553103894382 -10986.0,0.061564263823016156 -10987.0,0.061543003951256274 -10988.0,0.061521751421128035 -10989.0,0.06150050623009619 -10990.0,0.06147926837562629 -10991.0,0.06145803785518485 -10992.0,0.06143681466623921 -10993.0,0.061415598806257625 -10994.0,0.061394390272709154 -10995.0,0.0613731890630638 -10996.0,0.0613519951747924 -10997.0,0.06133080860536672 -10998.0,0.0613096293522593 -10999.0,0.06128845741294363 -11000.0,0.061267292784894054 -11001.0,0.06124613546558581 -11002.0,0.06122498545249494 -11003.0,0.061203842743098424 -11004.0,0.06118270733487409 -11005.0,0.06116157922530063 -11006.0,0.06114045841185766 -11007.0,0.06111934489202555 -11008.0,0.06109823866328565 -11009.0,0.06107713972312013 -11010.0,0.06105604806901207 -11011.0,0.06103496369844534 -11012.0,0.061013886608904756 -11013.0,0.06099281679787597 -11014.0,0.06097175426284554 -11015.0,0.0609506990013008 -11016.0,0.060929651010730036 -11017.0,0.06090861028862238 -11018.0,0.06088757683246786 -11019.0,0.060866550639757266 -11020.0,0.060845531707982375 -11021.0,0.060824520034635766 -11022.0,0.06080351561721094 -11023.0,0.06078251845320216 -11024.0,0.060761528540104644 -11025.0,0.06074054587541445 -11026.0,0.0607195704566285 -11027.0,0.0606986022812446 -11028.0,0.06067764134676136 -11029.0,0.06065668765067831 -11030.0,0.06063574119049583 -11031.0,0.06061480196371519 -11032.0,0.06059386996783842 -11033.0,0.060572945200368544 -11034.0,0.06055202765880936 -11035.0,0.06053111734066561 -11036.0,0.06051021424344277 -11037.0,0.06048931836464729 -11038.0,0.06046842970178645 -11039.0,0.0604475482523684 -11040.0,0.060426674013902094 -11041.0,0.0604058069838974 -11042.0,0.06038494715986504 -11043.0,0.06036409453931659 -11044.0,0.06034324911976452 -11045.0,0.06032241089872205 -11046.0,0.060301579873703375 -11047.0,0.0602807560422235 -11048.0,0.060259939401798315 -11049.0,0.06023912994994451 -11050.0,0.06021832768417967 -11051.0,0.06019753260202226 -11052.0,0.060176744700991595 -11053.0,0.06015596397860778 -11054.0,0.06013519043239185 -11055.0,0.06011442405986567 -11056.0,0.060093664858552 -11057.0,0.06007291282597435 -11058.0,0.06005216795965719 -11059.0,0.06003143025712581 -11060.0,0.060010699715906377 -11061.0,0.05998997633352584 -11062.0,0.059969260107512065 -11063.0,0.05994855103539377 -11064.0,0.059927849114700504 -11065.0,0.05990715434296272 -11066.0,0.05988646671771161 -11067.0,0.05986578623647933 -11068.0,0.05984511289679885 -11069.0,0.059824446696204014 -11070.0,0.05980378763222944 -11071.0,0.059783135702410686 -11072.0,0.05976249090428412 -11073.0,0.059741853235387 -11074.0,0.059721222693257345 -11075.0,0.059700599275434106 -11076.0,0.05967998297945707 -11077.0,0.05965937380286688 -11078.0,0.05963877174320496 -11079.0,0.05961817679801367 -11080.0,0.059597588964836176 -11081.0,0.05957700824121649 -11082.0,0.05955643462469953 -11083.0,0.059535868112830945 -11084.0,0.05951530870315733 -11085.0,0.05949475639322609 -11086.0,0.059474211180585525 -11087.0,0.059453673062784686 -11088.0,0.05943314203737354 -11089.0,0.059412618101902896 -11090.0,0.05939210125392442 -11091.0,0.05937159149099055 -11092.0,0.059351088810654644 -11093.0,0.05933059321047089 -11094.0,0.05931010468799433 -11095.0,0.059289623240780784 -11096.0,0.05926914886638699 -11097.0,0.05924868156237051 -11098.0,0.059228221326289764 -11099.0,0.05920776815570394 -11100.0,0.059187322048173154 -11101.0,0.05916688300125834 -11102.0,0.05914645101252125 -11103.0,0.059126026079524545 -11104.0,0.05910560819983162 -11105.0,0.05908519737100679 -11106.0,0.0590647935906152 -11107.0,0.05904439685622285 -11108.0,0.0590240071653965 -11109.0,0.05900362451570385 -11110.0,0.05898324890471338 -11111.0,0.05896288032999448 -11112.0,0.05894251878911725 -11113.0,0.05892216427965274 -11114.0,0.058901816799172814 -11115.0,0.05888147634525018 -11116.0,0.058861142915458325 -11117.0,0.05884081650737165 -11118.0,0.058820497118565344 -11119.0,0.058800184746615476 -11120.0,0.05877987938909894 -11121.0,0.058759581043593405 -11122.0,0.05873928970767745 -11123.0,0.058719005378930475 -11124.0,0.058698728054932724 -11125.0,0.058678457733265216 -11126.0,0.05865819441150987 -11127.0,0.05863793808724942 -11128.0,0.058617688758067464 -11129.0,0.05859744642154835 -11130.0,0.05857721107527734 -11131.0,0.0585569827168405 -11132.0,0.058536761343824774 -11133.0,0.05851654695381783 -11134.0,0.058496339544408284 -11135.0,0.05847613911318553 -11136.0,0.05845594565773982 -11137.0,0.05843575917566218 -11138.0,0.05841557966454455 -11139.0,0.05839540712197963 -11140.0,0.05837524154556101 -11141.0,0.05835508293288309 -11142.0,0.05833493128154106 -11143.0,0.058314786589130994 -11144.0,0.058294648853249774 -11145.0,0.05827451807149514 -11146.0,0.058254394241465585 -11147.0,0.05823427736076052 -11148.0,0.05821416742698013 -11149.0,0.058194064437725485 -11150.0,0.058173968390598386 -11151.0,0.05815387928320156 -11152.0,0.058133797113138506 -11153.0,0.0581137218780136 -11154.0,0.05809365357543197 -11155.0,0.05807359220299962 -11156.0,0.05805353775832339 -11157.0,0.05803349023901093 -11158.0,0.05801344964267074 -11159.0,0.05799341596691207 -11160.0,0.057973389209345076 -11161.0,0.057953369367580714 -11162.0,0.05793335643923078 -11163.0,0.057913350421907844 -11164.0,0.05789335131322534 -11165.0,0.05787335911079753 -11166.0,0.05785337381223951 -11167.0,0.05783339541516713 -11168.0,0.057813423917197154 -11169.0,0.05779345931594711 -11170.0,0.05777350160903539 -11171.0,0.05775355079408114 -11172.0,0.05773360686870441 -11173.0,0.05771366983052601 -11174.0,0.05769373967716765 -11175.0,0.05767381640625174 -11176.0,0.05765390001540161 -11177.0,0.057633990502241376 -11178.0,0.05761408786439598 -11179.0,0.05759419209949121 -11180.0,0.057574303205153596 -11181.0,0.05755442117901056 -11182.0,0.05753454601869032 -11183.0,0.05751467772182194 -11184.0,0.057494816286035234 -11185.0,0.057474961708960895 -11186.0,0.057455113988230416 -11187.0,0.057435273121476144 -11188.0,0.057415439106331144 -11189.0,0.0573956119404294 -11190.0,0.057375791621405665 -11191.0,0.05735597814689555 -11192.0,0.057336171514535406 -11193.0,0.05731637172196247 -11194.0,0.05729657876681476 -11195.0,0.05727679264673113 -11196.0,0.057257013359351266 -11197.0,0.05723724090231559 -11198.0,0.05721747527326542 -11199.0,0.057197716469842855 -11200.0,0.05717796448969085 -11201.0,0.05715821933045307 -11202.0,0.0571384809897741 -11203.0,0.0571187494652993 -11204.0,0.05709902475467486 -11205.0,0.057079306855547726 -11206.0,0.05705959576556572 -11207.0,0.05703989148237744 -11208.0,0.05702019400363234 -11209.0,0.05700050332698062 -11210.0,0.05698081945007332 -11211.0,0.05696114237056232 -11212.0,0.056941472086100293 -11213.0,0.05692180859434072 -11214.0,0.05690215189293786 -11215.0,0.05688250197954682 -11216.0,0.056862858851823524 -11217.0,0.056843222507424705 -11218.0,0.05682359294400784 -11219.0,0.056803970159231304 -11220.0,0.056784354150754224 -11221.0,0.05676474491623659 -11222.0,0.05674514245333911 -11223.0,0.05672554675972337 -11224.0,0.05670595783305176 -11225.0,0.05668637567098748 -11226.0,0.05666680027119447 -11227.0,0.056647231631337565 -11228.0,0.05662766974908236 -11229.0,0.05660811462209528 -11230.0,0.05658856624804351 -11231.0,0.05656902462459508 -11232.0,0.056549489749418834 -11233.0,0.05652996162018439 -11234.0,0.056510440234562205 -11235.0,0.05649092559022349 -11236.0,0.0564714176848403 -11237.0,0.05645191651608549 -11238.0,0.05643242208163273 -11239.0,0.05641293437915644 -11240.0,0.056393453406331895 -11241.0,0.056373979160835155 -11242.0,0.056354511640343115 -11243.0,0.05633505084253339 -11244.0,0.05631559676508447 -11245.0,0.05629614940567563 -11246.0,0.05627670876198696 -11247.0,0.056257274831699296 -11248.0,0.05623784761249433 -11249.0,0.056218427102054526 -11250.0,0.05619901329806318 -11251.0,0.05617960619820437 -11252.0,0.05616020580016294 -11253.0,0.056140812101624575 -11254.0,0.05612142510027575 -11255.0,0.05610204479380376 -11256.0,0.05608267117989664 -11257.0,0.05606330425624328 -11258.0,0.05604394402053333 -11259.0,0.0560245904704573 -11260.0,0.05600524360370639 -11261.0,0.05598590341797268 -11262.0,0.055966569910949046 -11263.0,0.05594724308032916 -11264.0,0.05592792292380741 -11265.0,0.055908609439079084 -11266.0,0.05588930262384021 -11267.0,0.05587000247578766 -11268.0,0.055850708992619014 -11269.0,0.05583142217203273 -11270.0,0.055812142011728016 -11271.0,0.0557928685094049 -11272.0,0.055773601662764224 -11273.0,0.055754341469507536 -11274.0,0.055735087927337265 -11275.0,0.0557158410339566 -11276.0,0.05569660078706955 -11277.0,0.05567736718438084 -11278.0,0.05565814022359608 -11279.0,0.05563891990242163 -11280.0,0.055619706218564664 -11281.0,0.055600499169733086 -11282.0,0.055581298753635655 -11283.0,0.055562104967981904 -11284.0,0.05554291781048218 -11285.0,0.055523737278847546 -11286.0,0.055504563370789926 -11287.0,0.05548539608402201 -11288.0,0.05546623541625729 -11289.0,0.05544708136521005 -11290.0,0.05542793392859532 -11291.0,0.05540879310412896 -11292.0,0.05538965888952761 -11293.0,0.05537053128250873 -11294.0,0.055351410280790485 -11295.0,0.055332295882091896 -11296.0,0.05531318808413276 -11297.0,0.055294086884633685 -11298.0,0.05527499228131598 -11299.0,0.05525590427190182 -11300.0,0.05523682285411416 -11301.0,0.055217748025676736 -11302.0,0.055198679784314024 -11303.0,0.05517961812775133 -11304.0,0.05516056305371475 -11305.0,0.05514151455993117 -11306.0,0.0551224726441282 -11307.0,0.0551034373040343 -11308.0,0.05508440853737869 -11309.0,0.055065386341891384 -11310.0,0.055046370715303196 -11311.0,0.05502736165534564 -11312.0,0.055008359159751115 -11313.0,0.05498936322625275 -11314.0,0.0549703738525845 -11315.0,0.054951391036481015 -11316.0,0.05493241477567781 -11317.0,0.05491344506791116 -11318.0,0.05489448191091814 -11319.0,0.054875525302436536 -11320.0,0.054856575240204986 -11321.0,0.05483763172196288 -11322.0,0.054818694745450425 -11323.0,0.05479976430840853 -11324.0,0.05478084040857895 -11325.0,0.05476192304370421 -11326.0,0.0547430122115276 -11327.0,0.05472410790979322 -11328.0,0.05470521013624588 -11329.0,0.054686318888631236 -11330.0,0.0546674341646957 -11331.0,0.054648555962186485 -11332.0,0.05462968427885151 -11333.0,0.05461081911243955 -11334.0,0.05459196046070012 -11335.0,0.054573108321383554 -11336.0,0.05455426269224087 -11337.0,0.05453542357102396 -11338.0,0.05451659095548544 -11339.0,0.054497764843378746 -11340.0,0.05447894523245802 -11341.0,0.054460132120478226 -11342.0,0.054441325505195114 -11343.0,0.054422525384365206 -11344.0,0.05440373175574575 -11345.0,0.0543849446170948 -11346.0,0.054366163966171215 -11347.0,0.05434738980073459 -11348.0,0.054328622118545326 -11349.0,0.054309860917364526 -11350.0,0.05429110619495415 -11351.0,0.05427235794907688 -11352.0,0.054253616177496224 -11353.0,0.05423488087797637 -11354.0,0.05421615204828237 -11355.0,0.05419742968617999 -11356.0,0.05417871378943583 -11357.0,0.054160004355817165 -11358.0,0.05414130138309212 -11359.0,0.054122604869029575 -11360.0,0.05410391481139918 -11361.0,0.05408523120797131 -11362.0,0.054066554056517176 -11363.0,0.05404788335480872 -11364.0,0.05402921910061867 -11365.0,0.054010561291720535 -11366.0,0.05399190992588853 -11367.0,0.053973265000897705 -11368.0,0.05395462651452386 -11369.0,0.05393599446454358 -11370.0,0.053917368848734146 -11371.0,0.053898749664873694 -11372.0,0.05388013691074108 -11373.0,0.05386153058411597 -11374.0,0.053842930682778706 -11375.0,0.05382433720451049 -11376.0,0.053805750147093254 -11377.0,0.05378716950830971 -11378.0,0.05376859528594329 -11379.0,0.053750027477778246 -11380.0,0.053731466081599566 -11381.0,0.05371291109519304 -11382.0,0.05369436251634515 -11383.0,0.053675820342843204 -11384.0,0.053657284572475254 -11385.0,0.053638755203030124 -11386.0,0.053620232232297414 -11387.0,0.05360171565806742 -11388.0,0.05358320547813128 -11389.0,0.05356470169028086 -11390.0,0.053546204292308816 -11391.0,0.0535277132820085 -11392.0,0.053509228657174085 -11393.0,0.0534907504156005 -11394.0,0.05347227855508344 -11395.0,0.053453813073419315 -11396.0,0.05343535396840533 -11397.0,0.05341690123783946 -11398.0,0.053398454879520454 -11399.0,0.053380014891247746 -11400.0,0.0533615812708216 -11401.0,0.053343154016043025 -11402.0,0.05332473312471379 -11403.0,0.053306318594636415 -11404.0,0.053287910423614165 -11405.0,0.05326950860945108 -11406.0,0.05325111314995197 -11407.0,0.05323272404292241 -11408.0,0.05321434128616867 -11409.0,0.053195964877497844 -11410.0,0.05317759481471775 -11411.0,0.05315923109563701 -11412.0,0.053140873718064925 -11413.0,0.053122522679811594 -11414.0,0.05310417797868789 -11415.0,0.053085839612505445 -11416.0,0.05306750757907657 -11417.0,0.05304918187621442 -11418.0,0.05303086250173287 -11419.0,0.05301254945344657 -11420.0,0.052994242729170866 -11421.0,0.05297594232672192 -11422.0,0.05295764824391663 -11423.0,0.052939360478572645 -11424.0,0.05292107902850839 -11425.0,0.05290280389154298 -11426.0,0.052884535065496334 -11427.0,0.052866272548189125 -11428.0,0.05284801633744279 -11429.0,0.05282976643107944 -11430.0,0.05281152282692204 -11431.0,0.05279328552279424 -11432.0,0.052775054516520495 -11433.0,0.05275682980592593 -11434.0,0.052738611388836495 -11435.0,0.05272039926307886 -11436.0,0.052702193426480484 -11437.0,0.052683993876869485 -11438.0,0.05266580061207483 -11439.0,0.05264761362992617 -11440.0,0.05262943292825395 -11441.0,0.05261125850488937 -11442.0,0.052593090357664296 -11443.0,0.05257492848441143 -11444.0,0.05255677288296418 -11445.0,0.052538623551156766 -11446.0,0.052520480486824034 -11447.0,0.052502343687801684 -11448.0,0.05248421315192612 -11449.0,0.05246608887703453 -11450.0,0.05244797086096477 -11451.0,0.052429859101555516 -11452.0,0.052411753596646175 -11453.0,0.05239365434407691 -11454.0,0.05237556134168856 -11455.0,0.052357474587322796 -11456.0,0.052339394078821995 -11457.0,0.05232131981402931 -11458.0,0.052303251790788555 -11459.0,0.052285190006944385 -11460.0,0.052267134460342146 -11461.0,0.05224908514882796 -11462.0,0.05223104207024869 -11463.0,0.052213005222451876 -11464.0,0.052194974603285885 -11465.0,0.052176950210599794 -11466.0,0.05215893204224345 -11467.0,0.05214092009606736 -11468.0,0.05212291436992287 -11469.0,0.052104914861662015 -11470.0,0.05208692156913761 -11471.0,0.052068934490203146 -11472.0,0.05205095362271292 -11473.0,0.05203297896452193 -11474.0,0.05201501051348597 -11475.0,0.05199704826746148 -11476.0,0.051979092224305724 -11477.0,0.05196114238187667 -11478.0,0.05194319873803304 -11479.0,0.0519252612906343 -11480.0,0.05190733003754061 -11481.0,0.05188940497661292 -11482.0,0.051871486105712905 -11483.0,0.05185357342270299 -11484.0,0.05183566692544628 -11485.0,0.05181776661180668 -11486.0,0.051799872479648824 -11487.0,0.05178198452683808 -11488.0,0.051764102751240514 -11489.0,0.051746227150722975 -11490.0,0.05172835772315303 -11491.0,0.051710494466399026 -11492.0,0.05169263737832994 -11493.0,0.0516747864568156 -11494.0,0.0516569416997265 -11495.0,0.051639103104933914 -11496.0,0.05162127067030979 -11497.0,0.051603444393726876 -11498.0,0.051585624273058614 -11499.0,0.0515678103061792 -11500.0,0.05155000249096358 -11501.0,0.05153220082528737 -11502.0,0.05151440530702698 -11503.0,0.051496615934059534 -11504.0,0.051478832704262914 -11505.0,0.05146105561551566 -11506.0,0.05144328466569712 -11507.0,0.051425519852687354 -11508.0,0.05140776117436717 -11509.0,0.05139000862861804 -11510.0,0.05137226221332224 -11511.0,0.051354521926362744 -11512.0,0.0513367877656233 -11513.0,0.0513190597289883 -11514.0,0.051301337814342936 -11515.0,0.05128362201957312 -11516.0,0.05126591234256549 -11517.0,0.05124820878120743 -11518.0,0.05123051133338698 -11519.0,0.051212819996992995 -11520.0,0.05119513476991503 -11521.0,0.051177455650043384 -11522.0,0.05115978263526902 -11523.0,0.0511421157234837 -11524.0,0.05112445491257989 -11525.0,0.051106800200450817 -11526.0,0.05108915158499035 -11527.0,0.051071509064093155 -11528.0,0.05105387263565461 -11529.0,0.051036242297570845 -11530.0,0.05101861804773864 -11531.0,0.05100099988405558 -11532.0,0.05098338780441993 -11533.0,0.05096578180673074 -11534.0,0.05094818188888769 -11535.0,0.050930588048791255 -11536.0,0.05091300028434262 -11537.0,0.0508954185934437 -11538.0,0.050877842973997146 -11539.0,0.05086027342390627 -11540.0,0.05084270994107517 -11541.0,0.050825152523408655 -11542.0,0.05080760116881228 -11543.0,0.050790055875192246 -11544.0,0.050772516640455546 -11545.0,0.05075498346250989 -11546.0,0.05073745633926371 -11547.0,0.0507199352686261 -11548.0,0.050702420248506956 -11549.0,0.05068491127681686 -11550.0,0.05066740835146714 -11551.0,0.050649911470369784 -11552.0,0.05063242063143755 -11553.0,0.05061493583258393 -11554.0,0.050597457071723105 -11555.0,0.05057998434677001 -11556.0,0.050562517655640224 -11557.0,0.05054505699625013 -11558.0,0.050527602366516794 -11559.0,0.05051015376435803 -11560.0,0.0504927111876923 -11561.0,0.05047527463443886 -11562.0,0.05045784410251765 -11563.0,0.05044041958984936 -11564.0,0.050423001094355324 -11565.0,0.05040558861395767 -11566.0,0.05038818214657921 -11567.0,0.05037078169014351 -11568.0,0.05035338724257477 -11569.0,0.05033599880179799 -11570.0,0.050318616365738845 -11571.0,0.05030123993232377 -11572.0,0.050283869499479834 -11573.0,0.05026650506513489 -11574.0,0.05024914662721749 -11575.0,0.0502317941836569 -11576.0,0.05021444773238312 -11577.0,0.05019710727132681 -11578.0,0.05017977279841939 -11579.0,0.05016244431159299 -11580.0,0.05014512180878046 -11581.0,0.05012780528791532 -11582.0,0.05011049474693185 -11583.0,0.050093190183765034 -11584.0,0.050075891596350584 -11585.0,0.05005859898262486 -11586.0,0.050041312340524995 -11587.0,0.05002403166798883 -11588.0,0.050006756962954924 -11589.0,0.04998948822336248 -11590.0,0.0499722254471515 -11591.0,0.04995496863226264 -11592.0,0.04993771777663731 -11593.0,0.04992047287821762 -11594.0,0.04990323393494633 -11595.0,0.049886000944766994 -11596.0,0.04986877390562383 -11597.0,0.04985155281546181 -11598.0,0.04983433767222653 -11599.0,0.049817128473864374 -11600.0,0.04979992521832242 -11601.0,0.04978272790354846 -11602.0,0.049765536527490925 -11603.0,0.049748351088099045 -11604.0,0.04973117158332272 -11605.0,0.04971399801111258 -11606.0,0.049696830369419895 -11607.0,0.049679668656196725 -11608.0,0.04966251286939579 -11609.0,0.049645363006970554 -11610.0,0.04962821906687513 -11611.0,0.04961108104706438 -11612.0,0.04959394894549387 -11613.0,0.04957682276011986 -11614.0,0.04955970248889935 -11615.0,0.04954258812978997 -11616.0,0.04952547968075012 -11617.0,0.049508377139738886 -11618.0,0.049491280504716094 -11619.0,0.04947418977364218 -11620.0,0.04945710494447837 -11621.0,0.04944002601518658 -11622.0,0.04942295298372943 -11623.0,0.049405885848070194 -11624.0,0.049388824606172894 -11625.0,0.04937176925600227 -11626.0,0.04935471979552375 -11627.0,0.049337676222703415 -11628.0,0.049320638535508124 -11629.0,0.04930360673190539 -11630.0,0.04928658080986345 -11631.0,0.04926956076735126 -11632.0,0.049252546602338416 -11633.0,0.04923553831279526 -11634.0,0.049218535896692825 -11635.0,0.04920153935200288 -11636.0,0.04918454867669781 -11637.0,0.049167563868750784 -11638.0,0.049150584926135624 -11639.0,0.0491336118468269 -11640.0,0.0491166446287998 -11641.0,0.04909968327003027 -11642.0,0.049082727768494955 -11643.0,0.04906577812217121 -11644.0,0.04904883432903701 -11645.0,0.049031896387071124 -11646.0,0.04901496429425296 -11647.0,0.04899803804856268 -11648.0,0.04898111764798106 -11649.0,0.048964203090489634 -11650.0,0.048947294374070624 -11651.0,0.04893039149670694 -11652.0,0.04891349445638222 -11653.0,0.048896603251080716 -11654.0,0.04887971787878746 -11655.0,0.048862838337488154 -11656.0,0.04884596462516921 -11657.0,0.04882909673981766 -11658.0,0.04881223467942133 -11659.0,0.04879537844196869 -11660.0,0.048778528025448936 -11661.0,0.0487616834278519 -11662.0,0.04874484464716815 -11663.0,0.048728011681388954 -11664.0,0.048711184528506285 -11665.0,0.04869436318651274 -11666.0,0.048677547653401675 -11667.0,0.048660737927167116 -11668.0,0.048643934005803795 -11669.0,0.048627135887307146 -11670.0,0.048610343569673226 -11671.0,0.048593557050898864 -11672.0,0.04857677632898154 -11673.0,0.04856000140191947 -11674.0,0.04854323226771148 -11675.0,0.04852646892435715 -11676.0,0.04850971136985674 -11677.0,0.04849295960221122 -11678.0,0.048476213619422184 -11679.0,0.04845947341949197 -11680.0,0.048442739000423604 -11681.0,0.04842601036022082 -11682.0,0.04840928749688794 -11683.0,0.048392570408430105 -11684.0,0.04837585909285307 -11685.0,0.04835915354816333 -11686.0,0.048342453772367976 -11687.0,0.048325759763474876 -11688.0,0.048309071519492555 -11689.0,0.048292389038430236 -11690.0,0.04827571231829783 -11691.0,0.04825904135710589 -11692.0,0.04824237615286571 -11693.0,0.04822571670358925 -11694.0,0.048209063007289193 -11695.0,0.04819241506197882 -11696.0,0.04817577286567218 -11697.0,0.048159136416383974 -11698.0,0.04814250571212962 -11699.0,0.04812588075092515 -11700.0,0.04810926153078736 -11701.0,0.048092648049733684 -11702.0,0.04807604030578228 -11703.0,0.04805943829695193 -11704.0,0.048042842021262154 -11705.0,0.04802625147673313 -11706.0,0.04800966666138574 -11707.0,0.047993087573241534 -11708.0,0.047976514210322736 -11709.0,0.047959946570652265 -11710.0,0.04794338465225372 -11711.0,0.047926828453151424 -11712.0,0.04791027797137029 -11713.0,0.04789373320493599 -11714.0,0.04787719415187485 -11715.0,0.0478606608102139 -11716.0,0.04784413317798081 -11717.0,0.04782761125320395 -11718.0,0.047811095033912385 -11719.0,0.047794584518135876 -11720.0,0.04777807970390479 -11721.0,0.04776158058925025 -11722.0,0.04774508717220403 -11723.0,0.047728599450798596 -11724.0,0.04771211742306706 -11725.0,0.047695641087043245 -11726.0,0.04767917044076165 -11727.0,0.04766270548225744 -11728.0,0.04764624620956649 -11729.0,0.047629792620725295 -11730.0,0.047613344713771065 -11731.0,0.0475969024867417 -11732.0,0.04758046593767578 -11733.0,0.0475640350646125 -11734.0,0.0475476098655918 -11735.0,0.047531190338654265 -11736.0,0.047514776481841194 -11737.0,0.047498368293194496 -11738.0,0.0474819657707568 -11739.0,0.04746556891257142 -11740.0,0.04744917771668235 -11741.0,0.047432792181134185 -11742.0,0.04741641230397228 -11743.0,0.04740003808324264 -11744.0,0.04738366951699193 -11745.0,0.047367306603267524 -11746.0,0.0473509493401174 -11747.0,0.047334597725590295 -11748.0,0.047318251757735554 -11749.0,0.04730191143460326 -11750.0,0.04728557675424409 -11751.0,0.047269247714709445 -11752.0,0.0472529243140514 -11753.0,0.047236606550322705 -11754.0,0.047220294421576735 -11755.0,0.047203987925867594 -11756.0,0.04718768706125003 -11757.0,0.04717139182577949 -11758.0,0.04715510221751204 -11759.0,0.047138818234504457 -11760.0,0.047122539874814184 -11761.0,0.047106267136499354 -11762.0,0.047090000017618705 -11763.0,0.04707373851623171 -11764.0,0.04705748263039849 -11765.0,0.04704123235817983 -11766.0,0.04702498769763722 -11767.0,0.04700874864683276 -11768.0,0.046992515203829244 -11769.0,0.046976287366690156 -11770.0,0.04696006513347965 -11771.0,0.0469438485022625 -11772.0,0.04692763747110419 -11773.0,0.04691143203807086 -11774.0,0.046895232201229355 -11775.0,0.0468790379586471 -11776.0,0.04686284930839226 -11777.0,0.046846666248533654 -11778.0,0.04683048877714077 -11779.0,0.04681431689228373 -11780.0,0.04679815059203335 -11781.0,0.04678198987446112 -11782.0,0.04676583473763917 -11783.0,0.04674968517964035 -11784.0,0.04673354119853808 -11785.0,0.04671740279240652 -11786.0,0.04670126995932049 -11787.0,0.04668514269735547 -11788.0,0.04666902100458755 -11789.0,0.046652904879093564 -11790.0,0.046636794318950965 -11791.0,0.04662068932223791 -11792.0,0.046604589887033136 -11793.0,0.04658849601141613 -11794.0,0.04657240769346701 -11795.0,0.04655632493126657 -11796.0,0.046540247722896215 -11797.0,0.04652417606643808 -11798.0,0.04650810995997492 -11799.0,0.04649204940159019 -11800.0,0.04647599438936795 -11801.0,0.046459944921392965 -11802.0,0.04644390099575066 -11803.0,0.0464278626105271 -11804.0,0.04641182976380905 -11805.0,0.04639580245368387 -11806.0,0.046379780678239634 -11807.0,0.04636376443556506 -11808.0,0.04634775372374955 -11809.0,0.04633174854088311 -11810.0,0.04631574888505644 -11811.0,0.04629975475436092 -11812.0,0.04628376614688857 -11813.0,0.04626778306073203 -11814.0,0.04625180549398466 -11815.0,0.04623583344474044 -11816.0,0.04621986691109405 -11817.0,0.04620390589114077 -11818.0,0.046187950382976566 -11819.0,0.04617200038469807 -11820.0,0.04615605589440257 -11821.0,0.04614011691018802 -11822.0,0.04612418343015297 -11823.0,0.0461082554523967 -11824.0,0.046092332975019114 -11825.0,0.04607641599612079 -11826.0,0.046060504513802926 -11827.0,0.04604459852616741 -11828.0,0.04602869803131676 -11829.0,0.04601280302735421 -11830.0,0.04599691351238353 -11831.0,0.045981029484509266 -11832.0,0.04596515094183655 -11833.0,0.04594927788247122 -11834.0,0.04593341030451969 -11835.0,0.045917548206089086 -11836.0,0.04590169158528719 -11837.0,0.04588584044022243 -11838.0,0.04586999476900385 -11839.0,0.04585415456974119 -11840.0,0.04583831984054484 -11841.0,0.04582249057952582 -11842.0,0.045806666784795835 -11843.0,0.04579084845446719 -11844.0,0.045775035586652885 -11845.0,0.04575922817946657 -11846.0,0.04574342623102255 -11847.0,0.04572762973943573 -11848.0,0.04571183870282172 -11849.0,0.04569605311929677 -11850.0,0.04568027298697779 -11851.0,0.04566449830398229 -11852.0,0.045648729068428484 -11853.0,0.04563296527843521 -11854.0,0.04561720693212199 -11855.0,0.045601454027608936 -11856.0,0.045585706563016845 -11857.0,0.04556996453646717 -11858.0,0.04555422794608199 -11859.0,0.04553849678998408 -11860.0,0.04552277106629678 -11861.0,0.045507050773144146 -11862.0,0.045491335908650864 -11863.0,0.04547562647094228 -11864.0,0.04545992245814434 -11865.0,0.04544422386838368 -11866.0,0.04542853069978759 -11867.0,0.04541284295048399 -11868.0,0.04539716061860142 -11869.0,0.0453814837022691 -11870.0,0.0453658121996169 -11871.0,0.04535014610877533 -11872.0,0.045334485427875514 -11873.0,0.04531883015504926 -11874.0,0.04530318028842901 -11875.0,0.04528753582614786 -11876.0,0.04527189676633952 -11877.0,0.045256263107138366 -11878.0,0.04524063484667942 -11879.0,0.045225011983098355 -11880.0,0.04520939451453148 -11881.0,0.04519378243911572 -11882.0,0.04517817575498868 -11883.0,0.045162574460288596 -11884.0,0.045146978553154374 -11885.0,0.04513138803172549 -11886.0,0.04511580289414213 -11887.0,0.04510022313854511 -11888.0,0.04508464876307588 -11889.0,0.0450690797658765 -11890.0,0.04505351614508973 -11891.0,0.04503795789885893 -11892.0,0.04502240502532814 -11893.0,0.045006857522641976 -11894.0,0.04499131538894576 -11895.0,0.04497577862238542 -11896.0,0.04496024722110754 -11897.0,0.04494472118325935 -11898.0,0.04492920050698867 -11899.0,0.044913685190444017 -11900.0,0.04489817523177453 -11901.0,0.04488267062913 -11902.0,0.0448671713806608 -11903.0,0.044851677484518 -11904.0,0.04483618893885331 -11905.0,0.04482070574181905 -11906.0,0.04480522789156817 -11907.0,0.044789755386254286 -11908.0,0.04477428822403164 -11909.0,0.04475882640305514 -11910.0,0.04474336992148025 -11911.0,0.04472791877746316 -11912.0,0.04471247296916066 -11913.0,0.044697032494730185 -11914.0,0.044681597352329766 -11915.0,0.044666167540118124 -11916.0,0.04465074305625459 -11917.0,0.04463532389889915 -11918.0,0.04461991006621241 -11919.0,0.044604501556355584 -11920.0,0.044589098367490566 -11921.0,0.044573700497779874 -11922.0,0.04455830794538667 -11923.0,0.04454292070847469 -11924.0,0.044527538785208376 -11925.0,0.04451216217375278 -11926.0,0.04449679087227359 -11927.0,0.044481424878937095 -11928.0,0.04446606419191026 -11929.0,0.04445070880936066 -11930.0,0.044435358729456545 -11931.0,0.0444200139503667 -11932.0,0.044404674470260655 -11933.0,0.044389340287308496 -11934.0,0.04437401139968098 -11935.0,0.044358687805549496 -11936.0,0.04434336950308601 -11937.0,0.04432805649046319 -11938.0,0.044312748765854296 -11939.0,0.04429744632743325 -11940.0,0.044282149173374544 -11941.0,0.04426685730185336 -11942.0,0.04425157071104549 -11943.0,0.04423628939912737 -11944.0,0.044221013364276016 -11945.0,0.044205742604669127 -11946.0,0.044190477118485005 -11947.0,0.044175216903902616 -11948.0,0.0441599619591015 -11949.0,0.04414471228226185 -11950.0,0.04412946787156451 -11951.0,0.04411422872519093 -11952.0,0.04409899484132318 -11953.0,0.04408376621814397 -11954.0,0.04406854285383664 -11955.0,0.04405332474658516 -11956.0,0.04403811189457413 -11957.0,0.04402290429598873 -11958.0,0.04400770194901483 -11959.0,0.0439925048518389 -11960.0,0.04397731300264805 -11961.0,0.04396212639962997 -11962.0,0.04394694504097303 -11963.0,0.0439317689248662 -11964.0,0.0439165980494991 -11965.0,0.043901432413061915 -11966.0,0.04388627201374552 -11967.0,0.04387111684974139 -11968.0,0.04385596691924164 -11969.0,0.04384082222043895 -11970.0,0.0438256827515267 -11971.0,0.043810548510698856 -11972.0,0.043795419496150005 -11973.0,0.043780295706075396 -11974.0,0.04376517713867083 -11975.0,0.04375006379213279 -11976.0,0.04373495566465836 -11977.0,0.04371985275444528 -11978.0,0.04370475505969184 -11979.0,0.04368966257859701 -11980.0,0.043674575309360364 -11981.0,0.04365949325018213 -11982.0,0.043644416399263086 -11983.0,0.0436293447548047 -11984.0,0.04361427831500902 -11985.0,0.043599217078078754 -11986.0,0.04358416104221718 -11987.0,0.04356911020562822 -11988.0,0.043554064566516434 -11989.0,0.04353902412308701 -11990.0,0.04352398887354568 -11991.0,0.043508958816098876 -11992.0,0.04349393394895362 -11993.0,0.04347891427031756 -11994.0,0.04346389977839897 -11995.0,0.043448890471406695 -11996.0,0.04343388634755025 -11997.0,0.04341888740503976 -11998.0,0.043403893642085974 -11999.0,0.043388905056900205 -12000.0,0.043373921647694456 -12001.0,0.043358943412681296 -12002.0,0.043343970350073965 -12003.0,0.04332900245808624 -12004.0,0.043314039734932586 -12005.0,0.04329908217882805 -12006.0,0.04328412978798833 -12007.0,0.04326918256062968 -12008.0,0.043254240494969017 -12009.0,0.043239303589223864 -12010.0,0.04322437184161236 -12011.0,0.04320944525035327 -12012.0,0.043194523813665925 -12013.0,0.04317960752977033 -12014.0,0.04316469639688707 -12015.0,0.04314979041323738 -12016.0,0.043134889577043055 -12017.0,0.04311999388652654 -12018.0,0.0431051033399109 -12019.0,0.04309021793541981 -12020.0,0.04307533767127752 -12021.0,0.04306046254570893 -12022.0,0.04304559255693956 -12023.0,0.043030727703195534 -12024.0,0.043015867982703564 -12025.0,0.043001013393690994 -12026.0,0.042986163934385785 -12027.0,0.04297131960301653 -12028.0,0.04295648039781237 -12029.0,0.04294164631700311 -12030.0,0.042926817358819154 -12031.0,0.04291199352149151 -12032.0,0.04289717480325183 -12033.0,0.04288236120233231 -12034.0,0.04286755271696581 -12035.0,0.042852749345385785 -12036.0,0.042837951085826324 -12037.0,0.04282315793652207 -12038.0,0.04280836989570831 -12039.0,0.04279358696162096 -12040.0,0.04277880913249652 -12041.0,0.04276403640657208 -12042.0,0.042749268782085376 -12043.0,0.04273450625727474 -12044.0,0.04271974883037913 -12045.0,0.04270499649963805 -12046.0,0.04269024926329168 -12047.0,0.04267550711958077 -12048.0,0.042660770066746706 -12049.0,0.042646038103031476 -12050.0,0.042631311226677626 -12051.0,0.042616589435928366 -12052.0,0.04260187272902749 -12053.0,0.04258716110421943 -12054.0,0.04257245455974915 -12055.0,0.0425577530938623 -12056.0,0.04254305670480508 -12057.0,0.04252836539082435 -12058.0,0.0425136791501675 -12059.0,0.0424989979810826 -12060.0,0.042484321881818284 -12061.0,0.04246965085062382 -12062.0,0.04245498488574902 -12063.0,0.04244032398544437 -12064.0,0.042425668147960914 -12065.0,0.042411017371550355 -12066.0,0.042396371654464915 -12067.0,0.04238173099495749 -12068.0,0.04236709539128155 -12069.0,0.04235246484169118 -12070.0,0.042337839344441075 -12071.0,0.042323218897786494 -12072.0,0.04230860349998333 -12073.0,0.04229399314928808 -12074.0,0.04227938784395785 -12075.0,0.042264787582250295 -12076.0,0.042250192362423736 -12077.0,0.042235602182737066 -12078.0,0.0422210170414498 -12079.0,0.042206436936822 -12080.0,0.04219186186711439 -12081.0,0.042177291830588264 -12082.0,0.04216272682550554 -12083.0,0.04214816685012869 -12084.0,0.04213361190272083 -12085.0,0.04211906198154566 -12086.0,0.042104517084867475 -12087.0,0.0420899772109512 -12088.0,0.04207544235806229 -12089.0,0.04206091252446688 -12090.0,0.04204638770843165 -12091.0,0.04203186790822391 -12092.0,0.042017353122111537 -12093.0,0.042002843348363024 -12094.0,0.04198833858524747 -12095.0,0.041973838831034574 -12096.0,0.041959344083994585 -12097.0,0.041944854342398405 -12098.0,0.041930369604517514 -12099.0,0.04191588986862401 -12100.0,0.041901415132990526 -12101.0,0.04188694539589035 -12102.0,0.04187248065559735 -12103.0,0.041858020910386005 -12104.0,0.04184356615853133 -12105.0,0.04182911639830901 -12106.0,0.04181467162799528 -12107.0,0.041800231845866995 -12108.0,0.041785797050201606 -12109.0,0.041771367239277116 -12110.0,0.041756942411372164 -12111.0,0.04174252256476598 -12112.0,0.0417281076977384 -12113.0,0.041713697808569795 -12114.0,0.04169929289554119 -12115.0,0.041684892956934186 -12116.0,0.04167049799103099 -12117.0,0.041656107996114355 -12118.0,0.04164172297046767 -12119.0,0.041627342912374916 -12120.0,0.04161296782012067 -12121.0,0.04159859769199006 -12122.0,0.04158423252626884 -12123.0,0.04156987232124335 -12124.0,0.04155551707520053 -12125.0,0.04154116678642793 -12126.0,0.04152682145321361 -12127.0,0.04151248107384631 -12128.0,0.04149814564661532 -12129.0,0.04148381516981054 -12130.0,0.04146948964172243 -12131.0,0.04145516906064206 -12132.0,0.0414408534248611 -12133.0,0.04142654273267181 -12134.0,0.04141223698236699 -12135.0,0.0413979361722401 -12136.0,0.041383640300585146 -12137.0,0.04136934936569676 -12138.0,0.04135506336587009 -12139.0,0.04134078229940095 -12140.0,0.041326506164585705 -12141.0,0.04131223495972135 -12142.0,0.041297968683105375 -12143.0,0.04128370733303595 -12144.0,0.0412694509078118 -12145.0,0.04125519940573223 -12146.0,0.04124095282509717 -12147.0,0.04122671116420705 -12148.0,0.041212474421362985 -12149.0,0.04119824259486662 -12150.0,0.04118401568302023 -12151.0,0.0411697936841266 -12152.0,0.04115557659648918 -12153.0,0.04114136441841196 -12154.0,0.04112715714819956 -12155.0,0.04111295478415713 -12156.0,0.041098757324590424 -12157.0,0.04108456476780581 -12158.0,0.04107037711211023 -12159.0,0.041056194355811156 -12160.0,0.04104201649721672 -12161.0,0.0410278435346356 -12162.0,0.04101367546637707 -12163.0,0.040999512290750995 -12164.0,0.04098535400606778 -12165.0,0.040971200610638456 -12166.0,0.04095705210277463 -12167.0,0.040942908480788506 -12168.0,0.040928769742992824 -12169.0,0.04091463588770094 -12170.0,0.040900506913226796 -12171.0,0.04088638281788493 -12172.0,0.0408722635999904 -12173.0,0.0408581492578589 -12174.0,0.0408440397898067 -12175.0,0.04082993519415065 -12176.0,0.04081583546920815 -12177.0,0.04080174061329723 -12178.0,0.04078765062473646 -12179.0,0.04077356550184503 -12180.0,0.04075948524294265 -12181.0,0.040745409846349674 -12182.0,0.040731339310387 -12183.0,0.04071727363337612 -12184.0,0.040703212813639124 -12185.0,0.040689156849498614 -12186.0,0.04067510573927784 -12187.0,0.0406610594813006 -12188.0,0.04064701807389131 -12189.0,0.04063298151537489 -12190.0,0.04061894980407688 -12191.0,0.04060492293832343 -12192.0,0.040590900916441235 -12193.0,0.040576883736757545 -12194.0,0.04056287139760022 -12195.0,0.0405488638972977 -12196.0,0.040534861234179 -12197.0,0.040520863406573675 -12198.0,0.0405068704128119 -12199.0,0.04049288225122443 -12200.0,0.04047889892014256 -12201.0,0.0404649204178982 -12202.0,0.04045094674282378 -12203.0,0.040436977893252374 -12204.0,0.04042301386751759 -12205.0,0.04040905466395364 -12206.0,0.04039510028089526 -12207.0,0.040381150716677805 -12208.0,0.0403672059696372 -12209.0,0.04035326603810996 -12210.0,0.040339330920433104 -12211.0,0.0403254006149443 -12212.0,0.04031147511998177 -12213.0,0.04029755443388431 -12214.0,0.04028363855499125 -12215.0,0.04026972748164256 -12216.0,0.04025582121217873 -12217.0,0.04024191974494085 -12218.0,0.0402280230782706 -12219.0,0.04021413121051017 -12220.0,0.04020024414000238 -12221.0,0.0401863618650906 -12222.0,0.0401724843841188 -12223.0,0.04015861169543146 -12224.0,0.04014474379737368 -12225.0,0.040130880688291126 -12226.0,0.04011702236653005 -12227.0,0.04010316883043722 -12228.0,0.04008932007836003 -12229.0,0.04007547610864642 -12230.0,0.04006163691964491 -12231.0,0.040047802509704584 -12232.0,0.040033972877175084 -12233.0,0.04002014802040665 -12234.0,0.040006327937750094 -12235.0,0.039992512627556744 -12236.0,0.039978702088178546 -12237.0,0.03996489631796801 -12238.0,0.03995109531527821 -12239.0,0.03993729907846281 -12240.0,0.03992350760587597 -12241.0,0.03990972089587249 -12242.0,0.03989593894680772 -12243.0,0.03988216175703759 -12244.0,0.03986838932491855 -12245.0,0.03985462164880765 -12246.0,0.039840858727062535 -12247.0,0.03982710055804138 -12248.0,0.039813347140102914 -12249.0,0.039799598471606475 -12250.0,0.03978585455091194 -12251.0,0.03977211537637977 -12252.0,0.039758380946370964 -12253.0,0.039744651259247116 -12254.0,0.039730926313370364 -12255.0,0.039717206107103435 -12256.0,0.03970349063880962 -12257.0,0.039689779906852726 -12258.0,0.03967607390959719 -12259.0,0.03966237264540797 -12260.0,0.03964867611265064 -12261.0,0.039634984309691264 -12262.0,0.03962129723489652 -12263.0,0.03960761488663364 -12264.0,0.03959393726327045 -12265.0,0.039580264363175265 -12266.0,0.03956659618471702 -12267.0,0.03955293272626521 -12268.0,0.0395392739861899 -12269.0,0.03952561996286166 -12270.0,0.039511970654651694 -12271.0,0.039498326059931727 -12272.0,0.03948468617707408 -12273.0,0.039471051004451585 -12274.0,0.03945742054043768 -12275.0,0.039443794783406344 -12276.0,0.03943017373173213 -12277.0,0.03941655738379016 -12278.0,0.03940294573795607 -12279.0,0.03938933879260611 -12280.0,0.03937573654611706 -12281.0,0.0393621389968663 -12282.0,0.0393485461432317 -12283.0,0.03933495798359176 -12284.0,0.039321374516325495 -12285.0,0.03930779573981253 -12286.0,0.039294221652432966 -12287.0,0.03928065225256754 -12288.0,0.03926708753859752 -12289.0,0.039253527508904755 -12290.0,0.03923997216187159 -12291.0,0.03922642149588099 -12292.0,0.039212875509316465 -12293.0,0.039199334200562076 -12294.0,0.03918579756800246 -12295.0,0.03917226561002275 -12296.0,0.03915873832500872 -12297.0,0.03914521571134665 -12298.0,0.03913169776742341 -12299.0,0.03911818449162638 -12300.0,0.03910467588234353 -12301.0,0.03909117193796339 -12302.0,0.03907767265687505 -12303.0,0.03906417803746811 -12304.0,0.039050688078132785 -12305.0,0.03903720277725982 -12306.0,0.039023722133240527 -12307.0,0.03901024614446673 -12308.0,0.038996774809330864 -12309.0,0.03898330812622589 -12310.0,0.03896984609354536 -12311.0,0.03895638870968331 -12312.0,0.03894293597303438 -12313.0,0.038929487881993775 -12314.0,0.03891604443495722 -12315.0,0.03890260563032104 -12316.0,0.03888917146648204 -12317.0,0.03887574194183764 -12318.0,0.0388623170547858 -12319.0,0.038848896803725046 -12320.0,0.0388354811870544 -12321.0,0.0388220702031735 -12322.0,0.03880866385048251 -12323.0,0.038795262127382164 -12324.0,0.03878186503227371 -12325.0,0.038768472563558976 -12326.0,0.03875508471964035 -12327.0,0.038741701498920776 -12328.0,0.038728322899803685 -12329.0,0.038714948920693146 -12330.0,0.038701579559993725 -12331.0,0.03868821481611055 -12332.0,0.03867485468744934 -12333.0,0.03866149917241629 -12334.0,0.038648148269418196 -12335.0,0.03863480197686239 -12336.0,0.03862146029315678 -12337.0,0.03860812321670976 -12338.0,0.03859479074593034 -12339.0,0.03858146287922805 -12340.0,0.038568139615012986 -12341.0,0.03855482095169575 -12342.0,0.03854150688768753 -12343.0,0.038528197421400075 -12344.0,0.03851489255124566 -12345.0,0.038501592275637084 -12346.0,0.03848829659298774 -12347.0,0.038475005501711554 -12348.0,0.038461719000223 -12349.0,0.03844843708693707 -12350.0,0.03843515976026935 -12351.0,0.03842188701863594 -12352.0,0.038408618860453506 -12353.0,0.038395355284139274 -12354.0,0.03838209628811095 -12355.0,0.03836884187078686 -12356.0,0.03835559203058585 -12357.0,0.038342346765927314 -12358.0,0.03832910607523117 -12359.0,0.03831586995691791 -12360.0,0.038302638409408556 -12361.0,0.03828941143112471 -12362.0,0.038276189020488446 -12363.0,0.03826297117592246 -12364.0,0.03824975789584993 -12365.0,0.03823654917869465 -12366.0,0.03822334502288088 -12367.0,0.038210145426833465 -12368.0,0.0381969503889778 -12369.0,0.03818375990773981 -12370.0,0.03817057398154598 -12371.0,0.0381573926088233 -12372.0,0.03814421578799934 -12373.0,0.0381310435175022 -12374.0,0.03811787579576054 -12375.0,0.03810471262120352 -12376.0,0.03809155399226088 -12377.0,0.03807839990736289 -12378.0,0.038065250364940385 -12379.0,0.03805210536342469 -12380.0,0.03803896490124771 -12381.0,0.03802582897684189 -12382.0,0.038012697588640225 -12383.0,0.037999570735076205 -12384.0,0.0379864484145839 -12385.0,0.03797333062559792 -12386.0,0.03796021736655343 -12387.0,0.03794710863588607 -12388.0,0.03793400443203209 -12389.0,0.03792090475342824 -12390.0,0.037907809598511845 -12391.0,0.03789471896572075 -12392.0,0.0378816328534933 -12393.0,0.03786855126026845 -12394.0,0.037855474184485656 -12395.0,0.03784240162458492 -12396.0,0.03782933357900677 -12397.0,0.03781627004619229 -12398.0,0.037803211024583096 -12399.0,0.03779015651262135 -12400.0,0.03777710650874973 -12401.0,0.037764061011411464 -12402.0,0.03775102001905033 -12403.0,0.03773798353011064 -12404.0,0.03772495154303721 -12405.0,0.03771192405627544 -12406.0,0.037698901068271236 -12407.0,0.037685882577471054 -12408.0,0.0376728685823219 -12409.0,0.037659859081271264 -12410.0,0.03764685407276723 -12411.0,0.03763385355525839 -12412.0,0.03762085752719389 -12413.0,0.03760786598702338 -12414.0,0.037594878933197066 -12415.0,0.037581896364165694 -12416.0,0.03756891827838055 -12417.0,0.037555944674293414 -12418.0,0.03754297555035664 -12419.0,0.03753001090502312 -12420.0,0.03751705073674627 -12421.0,0.03750409504398001 -12422.0,0.037491143825178826 -12423.0,0.037478197078797744 -12424.0,0.037465254803292325 -12425.0,0.037452316997118616 -12426.0,0.03743938365873325 -12427.0,0.03742645478659337 -12428.0,0.03741353037915666 -12429.0,0.03740061043488134 -12430.0,0.03738769495222613 -12431.0,0.037374783929650324 -12432.0,0.03736187736561373 -12433.0,0.0373489752585767 -12434.0,0.037336077607000084 -12435.0,0.037323184409345296 -12436.0,0.03731029566407427 -12437.0,0.037297411369649494 -12438.0,0.037284531524533926 -12439.0,0.03727165612719112 -12440.0,0.03725878517608513 -12441.0,0.03724591866968056 -12442.0,0.037233056606442494 -12443.0,0.037220198984836604 -12444.0,0.03720734580332907 -12445.0,0.037194497060386605 -12446.0,0.03718165275447645 -12447.0,0.03716881288406636 -12448.0,0.037155977447624625 -12449.0,0.03714314644362009 -12450.0,0.037130319870522115 -12451.0,0.03711749772680056 -12452.0,0.03710468001092584 -12453.0,0.03709186672136891 -12454.0,0.03707905785660124 -12455.0,0.037066253415094806 -12456.0,0.03705345339532214 -12457.0,0.0370406577957563 -12458.0,0.03702786661487087 -12459.0,0.03701507985113993 -12460.0,0.03700229750303813 -12461.0,0.036989519569040626 -12462.0,0.03697674604762311 -12463.0,0.036963976937261785 -12464.0,0.036951212236433384 -12465.0,0.03693845194361518 -12466.0,0.03692569605728497 -12467.0,0.03691294457592107 -12468.0,0.0369001974980023 -12469.0,0.036887454822008045 -12470.0,0.03687471654641818 -12471.0,0.03686198266971316 -12472.0,0.03684925319037388 -12473.0,0.03683652810688183 -12474.0,0.03682380741771899 -12475.0,0.0368110911213679 -12476.0,0.03679837921631156 -12477.0,0.03678567170103355 -12478.0,0.03677296857401796 -12479.0,0.036760269833749415 -12480.0,0.03674757547871301 -12481.0,0.03673488550739443 -12482.0,0.03672219991827984 -12483.0,0.03670951870985594 -12484.0,0.03669684188060998 -12485.0,0.036684169429029675 -12486.0,0.03667150135360331 -12487.0,0.036658837652819666 -12488.0,0.036646178325168074 -12489.0,0.03663352336913835 -12490.0,0.036620872783220855 -12491.0,0.03660822656590647 -12492.0,0.0365955847156866 -12493.0,0.036582947231053146 -12494.0,0.036570314110498554 -12495.0,0.036557685352515794 -12496.0,0.03654506095559836 -12497.0,0.03653244091824022 -12498.0,0.036519825238935905 -12499.0,0.03650721391618047 -12500.0,0.036494606948469475 -12501.0,0.03648200433429899 -12502.0,0.03646940607216561 -12503.0,0.036456812160566475 -12504.0,0.036444222597999204 -12505.0,0.03643163738296198 -12506.0,0.03641905651395345 -12507.0,0.03640647998947281 -12508.0,0.036393907808019786 -12509.0,0.03638133996809462 -12510.0,0.03636877646819802 -12511.0,0.036356217306831286 -12512.0,0.03634366248249619 -12513.0,0.03633111199369505 -12514.0,0.036318565838930644 -12515.0,0.036306024016706344 -12516.0,0.036293486525525984 -12517.0,0.036280953363893954 -12518.0,0.03626842453031511 -12519.0,0.036255900023294874 -12520.0,0.03624337984133915 -12521.0,0.03623086398295438 -12522.0,0.03621835244664753 -12523.0,0.03620584523092602 -12524.0,0.03619334233429787 -12525.0,0.03618084375527156 -12526.0,0.03616834949235612 -12527.0,0.03615585954406104 -12528.0,0.03614337390889638 -12529.0,0.03613089258537269 -12530.0,0.036118415572001066 -12531.0,0.03610594286729305 -12532.0,0.03609347446976076 -12533.0,0.036081010377916806 -12534.0,0.03606855059027432 -12535.0,0.03605609510534692 -12536.0,0.03604364392164877 -12537.0,0.036031197037694536 -12538.0,0.03601875445199941 -12539.0,0.03600631616307905 -12540.0,0.03599388216944967 -12541.0,0.035981452469627986 -12542.0,0.03596902706213124 -12543.0,0.035956605945477164 -12544.0,0.035944189118184 -12545.0,0.03593177657877051 -12546.0,0.03591936832575598 -12547.0,0.03590696435766021 -12548.0,0.035894564673003455 -12549.0,0.035882169270306546 -12550.0,0.03586977814809081 -12551.0,0.035857391304878077 -12552.0,0.03584500873919067 -12553.0,0.03583263044955144 -12554.0,0.03582025643448376 -12555.0,0.03580788669251151 -12556.0,0.035795521222159045 -12557.0,0.03578316002195126 -12558.0,0.035770803090413555 -12559.0,0.03575845042607185 -12560.0,0.03574610202745256 -12561.0,0.0357337578930826 -12562.0,0.035721418021489405 -12563.0,0.035709082411200924 -12564.0,0.03569675106074562 -12565.0,0.035684423968652436 -12566.0,0.03567210113345083 -12567.0,0.035659782553670805 -12568.0,0.03564746822784284 -12569.0,0.03563515815449791 -12570.0,0.035622852332167505 -12571.0,0.03561055075938366 -12572.0,0.03559825343467888 -12573.0,0.03558596035658616 -12574.0,0.03557367152363905 -12575.0,0.03556138693437157 -12576.0,0.035549106587318274 -12577.0,0.03553683048101418 -12578.0,0.035524558613994846 -12579.0,0.03551229098479634 -12580.0,0.03550002759195521 -12581.0,0.035487768434008554 -12582.0,0.0354755135094939 -12583.0,0.035463262816949344 -12584.0,0.03545101635491346 -12585.0,0.03543877412192537 -12586.0,0.03542653611652462 -12587.0,0.03541430233725131 -12588.0,0.035402072782646066 -12589.0,0.035389847451249984 -12590.0,0.03537762634160465 -12591.0,0.03536540945225219 -12592.0,0.035353196781735215 -12593.0,0.03534098832859686 -12594.0,0.03532878409138072 -12595.0,0.03531658406863092 -12596.0,0.035304388258892094 -12597.0,0.03529219666070938 -12598.0,0.03528000927262841 -12599.0,0.035267826093195294 -12600.0,0.03525564712095668 -12601.0,0.03524347235445971 -12602.0,0.035231301792252034 -12603.0,0.035219135432881764 -12604.0,0.03520697327489756 -12605.0,0.03519481531684856 -12606.0,0.035182661557284424 -12607.0,0.035170511994755266 -12608.0,0.03515836662781175 -12609.0,0.03514622545500502 -12610.0,0.03513408847488675 -12611.0,0.03512195568600904 -12612.0,0.035109827086924554 -12613.0,0.03509770267618644 -12614.0,0.03508558245234837 -12615.0,0.035073466413964444 -12616.0,0.035061354559589336 -12617.0,0.03504924688777818 -12618.0,0.03503714339708662 -12619.0,0.035025044086070815 -12620.0,0.035012948953287375 -12621.0,0.03500085799729345 -12622.0,0.034988771216646695 -12623.0,0.034976688609905236 -12624.0,0.034964610175627686 -12625.0,0.0349525359123732 -12626.0,0.03494046581870139 -12627.0,0.03492839989317241 -12628.0,0.034916338134346844 -12629.0,0.03490428054078583 -12630.0,0.034892227111050986 -12631.0,0.034880177843704445 -12632.0,0.03486813273730878 -12633.0,0.03485609179042712 -12634.0,0.034844055001623055 -12635.0,0.034832022369460695 -12636.0,0.034819993892504654 -12637.0,0.03480796956931998 -12638.0,0.034795949398472276 -12639.0,0.03478393337852763 -12640.0,0.03477192150805263 -12641.0,0.03475991378561432 -12642.0,0.034747910209780276 -12643.0,0.03473591077911856 -12644.0,0.03472391549219775 -12645.0,0.03471192434758685 -12646.0,0.03469993734385544 -12647.0,0.034687954479573534 -12648.0,0.0346759757533117 -12649.0,0.03466400116364092 -12650.0,0.03465203070913273 -12651.0,0.034640064388359156 -12652.0,0.034628102199892694 -12653.0,0.034616144142306335 -12654.0,0.03460419021417357 -12655.0,0.03459224041406838 -12656.0,0.03458029474056526 -12657.0,0.03456835319223917 -12658.0,0.034556415767665556 -12659.0,0.034544482465420384 -12660.0,0.03453255328408009 -12661.0,0.034520628222221635 -12662.0,0.03450870727842241 -12663.0,0.03449679045126035 -12664.0,0.03448487773931386 -12665.0,0.03447296914116186 -12666.0,0.034461064655383705 -12667.0,0.0344491642805593 -12668.0,0.034437268015269015 -12669.0,0.03442537585809372 -12670.0,0.03441348780761475 -12671.0,0.034401603862413956 -12672.0,0.03438972402107367 -12673.0,0.03437784828217671 -12674.0,0.0343659766443064 -12675.0,0.03435410910604652 -12676.0,0.03434224566598137 -12677.0,0.03433038632269573 -12678.0,0.03431853107477487 -12679.0,0.03430667992080453 -12680.0,0.03429483285937097 -12681.0,0.0342829898890609 -12682.0,0.034271151008461585 -12683.0,0.03425931621616068 -12684.0,0.034247485510746405 -12685.0,0.034235658890807444 -12686.0,0.03422383635493298 -12687.0,0.03421201790171264 -12688.0,0.03420020352973658 -12689.0,0.03418839323759544 -12690.0,0.03417658702388035 -12691.0,0.034164784887182886 -12692.0,0.03415298682609515 -12693.0,0.03414119283920972 -12694.0,0.034129402925119665 -12695.0,0.03411761708241854 -12696.0,0.034105835309700364 -12697.0,0.034094057605559655 -12698.0,0.034082283968591434 -12699.0,0.03407051439739119 -12700.0,0.03405874889055489 -12701.0,0.03404698744667899 -12702.0,0.034035230064360454 -12703.0,0.03402347674219671 -12704.0,0.034011727478785655 -12705.0,0.0339999822727257 -12706.0,0.03398824112261572 -12707.0,0.0339765040270551 -12708.0,0.033964770984643664 -12709.0,0.03395304199398176 -12710.0,0.033941317053670206 -12711.0,0.03392959616231029 -12712.0,0.033917879318503825 -12713.0,0.03390616652085304 -12714.0,0.0338944577679607 -12715.0,0.03388275305843004 -12716.0,0.03387105239086478 -12717.0,0.03385935576386909 -12718.0,0.03384766317604766 -12719.0,0.03383597462600566 -12720.0,0.033824290112348734 -12721.0,0.03381260963368298 -12722.0,0.03380093318861502 -12723.0,0.03378926077575193 -12724.0,0.0337775923937013 -12725.0,0.03376592804107115 -12726.0,0.033754267716470006 -12727.0,0.033742611418506895 -12728.0,0.03373095914579131 -12729.0,0.03371931089693319 -12730.0,0.03370766667054301 -12731.0,0.03369602646523168 -12732.0,0.03368439027961062 -12733.0,0.033672758112291735 -12734.0,0.03366112996188736 -12735.0,0.03364950582701035 -12736.0,0.03363788570627404 -12737.0,0.03362626959829224 -12738.0,0.03361465750167921 -12739.0,0.03360304941504973 -12740.0,0.03359144533701903 -12741.0,0.03357984526620284 -12742.0,0.03356824920121734 -12743.0,0.03355665714067922 -12744.0,0.03354506908320562 -12745.0,0.033533485027414184 -12746.0,0.03352190497192299 -12747.0,0.03351032891535065 -12748.0,0.03349875685631621 -12749.0,0.03348718879343921 -12750.0,0.03347562472533969 -12751.0,0.033464064650638094 -12752.0,0.03345250856795542 -12753.0,0.0334409564759131 -12754.0,0.033429408373133074 -12755.0,0.03341786425823771 -12756.0,0.03340632412984989 -12757.0,0.03339478798659296 -12758.0,0.033383255827090765 -12759.0,0.03337172764996756 -12760.0,0.033360203453848145 -12761.0,0.033348683237357755 -12762.0,0.03333716699912214 -12763.0,0.03332565473776746 -12764.0,0.0333141464519204 -12765.0,0.03330264214020811 -12766.0,0.03329114180125822 -12767.0,0.033279645433698796 -12768.0,0.03326815303615842 -12769.0,0.03325666460726613 -12770.0,0.03324518014565144 -12771.0,0.03323369964994436 -12772.0,0.03322222311877532 -12773.0,0.033210750550775256 -12774.0,0.03319928194457558 -12775.0,0.033187817298808195 -12776.0,0.03317635661210541 -12777.0,0.03316489988310008 -12778.0,0.03315344711042548 -12779.0,0.0331419982927154 -12780.0,0.033130553428604055 -12781.0,0.033119112516726175 -12782.0,0.03310767555571693 -12783.0,0.03309624254421199 -12784.0,0.033084813480847464 -12785.0,0.03307338836425995 -12786.0,0.03306196719308652 -12787.0,0.03305054996596471 -12788.0,0.03303913668153254 -12789.0,0.033027727338428466 -12790.0,0.03301632193529145 -12791.0,0.0330049204707609 -12792.0,0.03299352294347674 -12793.0,0.032982129352079274 -12794.0,0.03297073969520936 -12795.0,0.032959353971508294 -12796.0,0.03294797217961785 -12797.0,0.03293659431818024 -12798.0,0.03292522038583818 -12799.0,0.032913850381234844 -12800.0,0.03290248430301389 -12801.0,0.03289112214981939 -12802.0,0.03287976392029594 -12803.0,0.032868409613088595 -12804.0,0.03285705922684288 -12805.0,0.03284571276020474 -12806.0,0.03283437021182064 -12807.0,0.0328230315803375 -12808.0,0.03281169686440271 -12809.0,0.03280036606266413 -12810.0,0.032789039173770046 -12811.0,0.03277771619636926 -12812.0,0.03276639712911102 -12813.0,0.03275508197064506 -12814.0,0.03274377071962155 -12815.0,0.03273246337469113 -12816.0,0.03272115993450493 -12817.0,0.03270986039771454 -12818.0,0.03269856476297199 -12819.0,0.03268727302892979 -12820.0,0.03267598519424094 -12821.0,0.03266470125755888 -12822.0,0.0326534212175375 -12823.0,0.03264214507283118 -12824.0,0.03263087282209477 -12825.0,0.03261960446398356 -12826.0,0.03260833999715334 -12827.0,0.03259707942026031 -12828.0,0.03258582273196117 -12829.0,0.032574569930913094 -12830.0,0.032563321015773715 -12831.0,0.03255207598520109 -12832.0,0.03254083483785378 -12833.0,0.032529597572390795 -12834.0,0.032518364187471636 -12835.0,0.03250713468175621 -12836.0,0.032495909053904926 -12837.0,0.032484687302578655 -12838.0,0.032473469426438736 -12839.0,0.03246225542414693 -12840.0,0.03245104529436551 -12841.0,0.03243983903575717 -12842.0,0.03242863664698512 -12843.0,0.032417438126712966 -12844.0,0.03240624347360481 -12845.0,0.03239505268632521 -12846.0,0.032383865763539195 -12847.0,0.03237268270391226 -12848.0,0.03236150350611032 -12849.0,0.032350328168799784 -12850.0,0.032339156690647526 -12851.0,0.032327989070320876 -12852.0,0.0323168253064876 -12853.0,0.032305665397815944 -12854.0,0.03229450934297463 -12855.0,0.03228335714063281 -12856.0,0.032272208789460105 -12857.0,0.0322610642881266 -12858.0,0.03224992363530283 -12859.0,0.032238786829659825 -12860.0,0.03222765386986901 -12861.0,0.03221652475460232 -12862.0,0.032205399482532135 -12863.0,0.032194278052331285 -12864.0,0.03218316046267308 -12865.0,0.03217204671223125 -12866.0,0.03216093679968002 -12867.0,0.032149830723694046 -12868.0,0.03213872848294848 -12869.0,0.03212763007611887 -12870.0,0.032116535501881274 -12871.0,0.0321054447589122 -12872.0,0.0320943578458886 -12873.0,0.03208327476148787 -12874.0,0.03207219550438789 -12875.0,0.03206112007326698 -12876.0,0.03205004846680395 -12877.0,0.03203898068367799 -12878.0,0.03202791672256883 -12879.0,0.032016856582156604 -12880.0,0.03200580026112193 -12881.0,0.031994747758145856 -12882.0,0.031983699071909906 -12883.0,0.031972654201096046 -12884.0,0.03196161314438671 -12885.0,0.0319505759004648 -12886.0,0.031939542468013615 -12887.0,0.03192851284571696 -12888.0,0.03191748703225909 -12889.0,0.03190646502632472 -12890.0,0.03189544682659897 -12891.0,0.031884432431767466 -12892.0,0.03187342184051627 -12893.0,0.031862415051531916 -12894.0,0.03185141206350134 -12895.0,0.03184041287511199 -12896.0,0.031829417485051734 -12897.0,0.03181842589200892 -12898.0,0.031807438094672305 -12899.0,0.03179645409173113 -12900.0,0.031785473881875095 -12901.0,0.031774497463794335 -12902.0,0.03176352483617945 -12903.0,0.03175255599772148 -12904.0,0.03174159094711191 -12905.0,0.03173062968304271 -12906.0,0.03171967220420628 -12907.0,0.03170871850929546 -12908.0,0.03169776859700355 -12909.0,0.03168682246602432 -12910.0,0.031675880115051985 -12911.0,0.03166494154278117 -12912.0,0.031654006747907006 -12913.0,0.031643075729125045 -12914.0,0.031632148485131316 -12915.0,0.031621225014622244 -12916.0,0.03161030531629476 -12917.0,0.03159938938884621 -12918.0,0.03158847723097444 -12919.0,0.031577568841377655 -12920.0,0.03156666421875459 -12921.0,0.03155576336180441 -12922.0,0.031544866269226715 -12923.0,0.03153397293972158 -12924.0,0.03152308337198947 -12925.0,0.031512197564731365 -12926.0,0.03150131551664866 -12927.0,0.03149043722644323 -12928.0,0.031479562692817334 -12929.0,0.03146869191447374 -12930.0,0.03145782489011565 -12931.0,0.031446961618446706 -12932.0,0.031436102098170986 -12933.0,0.031425246327993026 -12934.0,0.03141439430661783 -12935.0,0.031403546032750834 -12936.0,0.03139270150509789 -12937.0,0.03138186072236534 -12938.0,0.03137102368325996 -12939.0,0.03136019038648897 -12940.0,0.03134936083076005 -12941.0,0.03133853501478128 -12942.0,0.03132771293726124 -12943.0,0.03131689459690894 -12944.0,0.03130607999243383 -12945.0,0.03129526912254579 -12946.0,0.03128446198595517 -12947.0,0.03127365858137276 -12948.0,0.03126285890750981 -12949.0,0.031252062963077955 -12950.0,0.031241270746789354 -12951.0,0.031230482257356557 -12952.0,0.0312196974934926 -12953.0,0.0312089164539109 -12954.0,0.031198139137325383 -12955.0,0.031187365542450392 -12956.0,0.031176595668000722 -12957.0,0.031165829512691583 -12958.0,0.031155067075238664 -12959.0,0.031144308354358087 -12960.0,0.031133553348766413 -12961.0,0.031122802057180664 -12962.0,0.031112054478318257 -12963.0,0.031101310610897104 -12964.0,0.031090570453635533 -12965.0,0.031079834005252344 -12966.0,0.03106910126446672 -12967.0,0.031058372229998344 -12968.0,0.03104764690056732 -12969.0,0.031036925274894205 -12970.0,0.03102620735169996 -12971.0,0.031015493129706032 -12972.0,0.031004782607634288 -12973.0,0.03099407578420706 -12974.0,0.030983372658147067 -12975.0,0.030972673228177525 -12976.0,0.030961977493022066 -12977.0,0.03095128545140477 -12978.0,0.030940597102050164 -12979.0,0.03092991244368318 -12980.0,0.030919231475029233 -12981.0,0.030908554194814156 -12982.0,0.030897880601764245 -12983.0,0.03088721069460619 -12984.0,0.030876544472067162 -12985.0,0.030865881932874758 -12986.0,0.03085522307575703 -12987.0,0.030844567899442423 -12988.0,0.030833916402659874 -12989.0,0.030823268584138724 -12990.0,0.030812624442608794 -12991.0,0.030801983976800278 -12992.0,0.030791347185443862 -12993.0,0.03078071406727066 -12994.0,0.030770084621012224 -12995.0,0.030759458845400513 -12996.0,0.030748836739167968 -12997.0,0.030738218301047445 -12998.0,0.030727603529772246 -12999.0,0.030716992424076113 -13000.0,0.030706384982693194 -13001.0,0.030695781204358116 -13002.0,0.03068518108780592 -13003.0,0.030674584631772108 -13004.0,0.030663991834992573 -13005.0,0.030653402696203678 -13006.0,0.03064281721414222 -13007.0,0.030632235387545448 -13008.0,0.03062165721515099 -13009.0,0.030611082695696967 -13010.0,0.030600511827921912 -13011.0,0.030589944610564815 -13012.0,0.030579381042365055 -13013.0,0.030568821122062488 -13014.0,0.030558264848397396 -13015.0,0.030547712220110487 -13016.0,0.030537163235942928 -13017.0,0.030526617894636274 -13018.0,0.030516076194932552 -13019.0,0.030505538135574217 -13020.0,0.030495003715304173 -13021.0,0.030484472932865707 -13022.0,0.03047394578700259 -13023.0,0.030463422276459012 -13024.0,0.030452902399979605 -13025.0,0.030442386156309398 -13026.0,0.030431873544193893 -13027.0,0.030421364562379014 -13028.0,0.03041085920961113 -13029.0,0.030400357484637 -13030.0,0.03038985938620386 -13031.0,0.03037936491305936 -13032.0,0.0303688740639516 -13033.0,0.030358386837629075 -13034.0,0.03034790323284075 -13035.0,0.030337423248336 -13036.0,0.030326946882864643 -13037.0,0.030316474135176942 -13038.0,0.030306005004023542 -13039.0,0.03029553948815557 -13040.0,0.030285077586324562 -13041.0,0.030274619297282507 -13042.0,0.030264164619781778 -13043.0,0.030253713552575223 -13044.0,0.030243266094416105 -13045.0,0.03023282224405813 -13046.0,0.0302223820002554 -13047.0,0.030211945361762478 -13048.0,0.030201512327334357 -13049.0,0.030191082895726456 -13050.0,0.030180657065694602 -13051.0,0.030170234835995076 -13052.0,0.030159816205384587 -13053.0,0.030149401172620265 -13054.0,0.03013898973645969 -13055.0,0.03012858189566082 -13056.0,0.030118177648982093 -13057.0,0.03010777699518236 -13058.0,0.03009737993302091 -13059.0,0.03008698646125742 -13060.0,0.030076596578652044 -13061.0,0.03006621028396534 -13062.0,0.030055827575958316 -13063.0,0.030045448453392357 -13064.0,0.030035072915029333 -13065.0,0.030024700959631508 -13066.0,0.030014332585961603 -13067.0,0.030003967792782714 -13068.0,0.02999360657885842 -13069.0,0.029983248942952692 -13070.0,0.02997289488382996 -13071.0,0.029962544400255035 -13072.0,0.029952197490993187 -13073.0,0.02994185415481011 -13074.0,0.029931514390471915 -13075.0,0.02992117819674516 -13076.0,0.029910845572396788 -13077.0,0.029900516516194204 -13078.0,0.029890191026905225 -13079.0,0.029879869103298106 -13080.0,0.029869550744141497 -13081.0,0.029859235948204502 -13082.0,0.029848924714256646 -13083.0,0.02983861704106788 -13084.0,0.02982831292740855 -13085.0,0.029818012372049466 -13086.0,0.029807715373761843 -13087.0,0.02979742193131734 -13088.0,0.029787132043487995 -13089.0,0.029776845709046318 -13090.0,0.029766562926765223 -13091.0,0.029756283695418044 -13092.0,0.029746008013778562 -13093.0,0.029735735880620937 -13094.0,0.029725467294719785 -13095.0,0.029715202254850144 -13096.0,0.029704940759787486 -13097.0,0.029694682808307653 -13098.0,0.02968442839918697 -13099.0,0.029674177531202155 -13100.0,0.029663930203130368 -13101.0,0.02965368641374915 -13102.0,0.02964344616183651 -13103.0,0.029633209446170854 -13104.0,0.029622976265531037 -13105.0,0.02961274661869628 -13106.0,0.02960252050444628 -13107.0,0.029592297921561133 -13108.0,0.029582078868821377 -13109.0,0.029571863345007922 -13110.0,0.029561651348902145 -13111.0,0.029551442879285832 -13112.0,0.029541237934941185 -13113.0,0.029531036514650843 -13114.0,0.02952083861719782 -13115.0,0.0295106442413656 -13116.0,0.02950045338593807 -13117.0,0.029490266049699537 -13118.0,0.029480082231434713 -13119.0,0.02946990192992875 -13120.0,0.02945972514396721 -13121.0,0.029449551872336093 -13122.0,0.029439382113821775 -13123.0,0.029429215867211093 -13124.0,0.029419053131291284 -13125.0,0.02940889390485002 -13126.0,0.02939873818667536 -13127.0,0.029388585975555808 -13128.0,0.02937843727028028 -13129.0,0.029368292069638115 -13130.0,0.02935815037241907 -13131.0,0.029348012177413292 -13132.0,0.02933787748341138 -13133.0,0.02932774628920434 -13134.0,0.029317618593583606 -13135.0,0.029307494395340996 -13136.0,0.029297373693268774 -13137.0,0.029287256486159617 -13138.0,0.02927714277280663 -13139.0,0.029267032552003292 -13140.0,0.029256925822543543 -13141.0,0.029246822583221723 -13142.0,0.0292367228328326 -13143.0,0.029226626570171325 -13144.0,0.0292165337940335 -13145.0,0.029206444503215127 -13146.0,0.029196358696512645 -13147.0,0.02918627637272286 -13148.0,0.02917619753064304 -13149.0,0.029166122169070854 -13150.0,0.02915605028680438 -13151.0,0.029145981882642134 -13152.0,0.029135916955383 -13153.0,0.02912585550382632 -13154.0,0.029115797526771837 -13155.0,0.029105743023019714 -13156.0,0.029095691991370506 -13157.0,0.029085644430625203 -13158.0,0.02907560033958521 -13159.0,0.02906555971705235 -13160.0,0.029055522561828823 -13161.0,0.029045488872717285 -13162.0,0.029035458648520793 -13163.0,0.02902543188804282 -13164.0,0.029015408590087225 -13165.0,0.029005388753458313 -13166.0,0.028995372376960794 -13167.0,0.02898535945939978 -13168.0,0.028975349999580825 -13169.0,0.028965343996309845 -13170.0,0.028955341448393204 -13171.0,0.028945342354637676 -13172.0,0.02893534671385045 -13173.0,0.028925354524839103 -13174.0,0.028915365786411646 -13175.0,0.028905380497376492 -13176.0,0.02889539865654249 -13177.0,0.028885420262718845 -13178.0,0.028875445314715226 -13179.0,0.028865473811341694 -13180.0,0.02885550575140873 -13181.0,0.0288455411337272 -13182.0,0.0288355799571084 -13183.0,0.028825622220364038 -13184.0,0.028815667922306245 -13185.0,0.02880571706174752 -13186.0,0.028795769637500804 -13187.0,0.02878582564837945 -13188.0,0.028775885093197204 -13189.0,0.028765947970768254 -13190.0,0.02875601427990714 -13191.0,0.02874608401942886 -13192.0,0.028736157188148804 -13193.0,0.02872623378488279 -13194.0,0.028716313808447 -13195.0,0.02870639725765807 -13196.0,0.028696484131333026 -13197.0,0.028686574428289313 -13198.0,0.028676668147344757 -13199.0,0.028666765287317618 -13200.0,0.028656865847026557 -13201.0,0.02864696982529066 -13202.0,0.028637077220929376 -13203.0,0.0286271880327626 -13204.0,0.02861730225961063 -13205.0,0.028607419900294157 -13206.0,0.028597540953634308 -13207.0,0.028587665418452566 -13208.0,0.028577793293570866 -13209.0,0.028567924577811536 -13210.0,0.028558059269997327 -13211.0,0.028548197368951346 -13212.0,0.028538338873497156 -13213.0,0.028528483782458713 -13214.0,0.028518632094660386 -13215.0,0.028508783808926918 -13216.0,0.02849893892408349 -13217.0,0.028489097438955682 -13218.0,0.028479259352369488 -13219.0,0.02846942466315127 -13220.0,0.028459593370127833 -13221.0,0.028449765472126378 -13222.0,0.02843994096797452 -13223.0,0.028430119856500242 -13224.0,0.028420302136531968 -13225.0,0.02841048780689852 -13226.0,0.028400676866429116 -13227.0,0.028390869313953394 -13228.0,0.028381065148301365 -13229.0,0.028371264368303468 -13230.0,0.028361466972790548 -13231.0,0.02835167296059386 -13232.0,0.02834188233054502 -13233.0,0.02833209508147609 -13234.0,0.02832231121221953 -13235.0,0.0283125307216082 -13236.0,0.028302753608475336 -13237.0,0.028292979871654616 -13238.0,0.028283209509980096 -13239.0,0.028273442522286266 -13240.0,0.02826367890740796 -13241.0,0.028253918664180474 -13242.0,0.028244161791439473 -13243.0,0.028234408288021037 -13244.0,0.028224658152761654 -13245.0,0.028214911384498182 -13246.0,0.028205167982067913 -13247.0,0.028195427944308533 -13248.0,0.028185691270058138 -13249.0,0.028175957958155185 -13250.0,0.02816622800743858 -13251.0,0.028156501416747602 -13252.0,0.02814677818492196 -13253.0,0.028137058310801714 -13254.0,0.02812734179322737 -13255.0,0.028117628631039816 -13256.0,0.028107918823080353 -13257.0,0.028098212368190652 -13258.0,0.02808850926521281 -13259.0,0.028078809512989324 -13260.0,0.028069113110363083 -13261.0,0.028059420056177384 -13262.0,0.028049730349275895 -13263.0,0.028040043988502718 -13264.0,0.028030360972702336 -13265.0,0.028020681300719656 -13266.0,0.028011004971399932 -13267.0,0.028001331983588867 -13268.0,0.02799166233613254 -13269.0,0.027981996027877442 -13270.0,0.027972333057670433 -13271.0,0.027962673424358805 -13272.0,0.02795301712679023 -13273.0,0.027943364163812795 -13274.0,0.02793371453427495 -13275.0,0.027924068237025576 -13276.0,0.027914425270913937 -13277.0,0.027904785634789712 -13278.0,0.02789514932750294 -13279.0,0.027885516347904087 -13280.0,0.02787588669484401 -13281.0,0.02786626036717397 -13282.0,0.027856637363745617 -13283.0,0.02784701768341098 -13284.0,0.02783740132502251 -13285.0,0.027827788287433045 -13286.0,0.027818178569495835 -13287.0,0.027808572170064483 -13288.0,0.027798969087993033 -13289.0,0.0277893693221359 -13290.0,0.02777977287134792 -13291.0,0.027770179734484278 -13292.0,0.0277605899104006 -13293.0,0.027751003397952886 -13294.0,0.027741420195997547 -13295.0,0.02773184030339135 -13296.0,0.027722263718991506 -13297.0,0.027712690441655585 -13298.0,0.027703120470241576 -13299.0,0.027693553803607857 -13300.0,0.027683990440613173 -13301.0,0.027674430380116695 -13302.0,0.027664873620977977 -13303.0,0.02765532016205698 -13304.0,0.027645770002214024 -13305.0,0.027636223140309852 -13306.0,0.0276266795752056 -13307.0,0.027617139305762796 -13308.0,0.027607602330843334 -13309.0,0.027598068649309533 -13310.0,0.027588538260024095 -13311.0,0.027579011161850128 -13312.0,0.02756948735365109 -13313.0,0.027559966834290878 -13314.0,0.02755044960263376 -13315.0,0.02754093565754441 -13316.0,0.027531424997887865 -13317.0,0.02752191762252958 -13318.0,0.027512413530335397 -13319.0,0.027502912720171545 -13320.0,0.02749341519090466 -13321.0,0.027483920941401733 -13322.0,0.02747442997053018 -13323.0,0.027464942277157796 -13324.0,0.027455457860152785 -13325.0,0.027445976718383693 -13326.0,0.02743649885071951 -13327.0,0.027427024256029588 -13328.0,0.027417552933183695 -13329.0,0.027408084881051942 -13330.0,0.027398620098504876 -13331.0,0.027389158584413414 -13332.0,0.02737970033764888 -13333.0,0.02737024535708295 -13334.0,0.02736079364158773 -13335.0,0.027351345190035688 -13336.0,0.027341900001299702 -13337.0,0.02733245807425304 -13338.0,0.027323019407769326 -13339.0,0.027313584000722604 -13340.0,0.027304151851987302 -13341.0,0.027294722960438243 -13342.0,0.027285297324950608 -13343.0,0.027275874944399998 -13344.0,0.027266455817662388 -13345.0,0.027257039943614163 -13346.0,0.02724762732113205 -13347.0,0.02723821794909321 -13348.0,0.02722881182637516 -13349.0,0.027219408951855845 -13350.0,0.02721000932441354 -13351.0,0.027200612942926947 -13352.0,0.027191219806275153 -13353.0,0.027181829913337632 -13354.0,0.027172443262994218 -13355.0,0.02716305985412516 -13356.0,0.02715367968561109 -13357.0,0.027144302756333016 -13358.0,0.027134929065172356 -13359.0,0.027125558611010875 -13360.0,0.027116191392730752 -13361.0,0.02710682740921455 -13362.0,0.027097466659345225 -13363.0,0.027088109142006083 -13364.0,0.027078754856080856 -13365.0,0.02706940380045364 -13366.0,0.02706005597400894 -13367.0,0.0270507113756316 -13368.0,0.027041370004206894 -13369.0,0.02703203185862046 -13370.0,0.02702269693775834 -13371.0,0.02701336524050692 -13372.0,0.02700403676575301 -13373.0,0.026994711512383793 -13374.0,0.02698538947928683 -13375.0,0.02697607066535009 -13376.0,0.02696675506946187 -13377.0,0.02695744269051091 -13378.0,0.026948133527386304 -13379.0,0.026938827578977555 -13380.0,0.026929524844174504 -13381.0,0.026920225321867414 -13382.0,0.026910929010946924 -13383.0,0.026901635910304058 -13384.0,0.026892346018830195 -13385.0,0.02688305933541713 -13386.0,0.026873775858957033 -13387.0,0.02686449558834246 -13388.0,0.026855218522466324 -13389.0,0.026845944660221943 -13390.0,0.026836674000503023 -13391.0,0.026827406542203645 -13392.0,0.02681814228421825 -13393.0,0.026808881225441686 -13394.0,0.02679962336476918 -13395.0,0.02679036870109634 -13396.0,0.02678111723331916 -13397.0,0.026771868960333983 -13398.0,0.02676262388103757 -13399.0,0.02675338199432705 -13400.0,0.026744143299099948 -13401.0,0.02673490779425413 -13402.0,0.02672567547868788 -13403.0,0.026716446351299845 -13404.0,0.026707220410989076 -13405.0,0.026697997656654957 -13406.0,0.026688778087197294 -13407.0,0.026679561701516263 -13408.0,0.026670348498512426 -13409.0,0.026661138477086687 -13410.0,0.026651931636140377 -13411.0,0.02664272797457518 -13412.0,0.02663352749129317 -13413.0,0.02662433018519681 -13414.0,0.0266151360551889 -13415.0,0.026605945100172664 -13416.0,0.026596757319051683 -13417.0,0.02658757271072994 -13418.0,0.026578391274111747 -13419.0,0.026569213008101843 -13420.0,0.026560037911605328 -13421.0,0.026550865983527686 -13422.0,0.026541697222774756 -13423.0,0.026532531628252778 -13424.0,0.026523369198868368 -13425.0,0.026514209933528522 -13426.0,0.026505053831140588 -13427.0,0.02649590089061232 -13428.0,0.026486751110851834 -13429.0,0.026477604490767647 -13430.0,0.026468461029268607 -13431.0,0.026459320725263975 -13432.0,0.026450183577663385 -13433.0,0.026441049585376835 -13434.0,0.026431918747314723 -13435.0,0.026422791062387783 -13436.0,0.02641366652950716 -13437.0,0.026404545147584363 -13438.0,0.02639542691553129 -13439.0,0.026386311832260177 -13440.0,0.026377199896683676 -13441.0,0.0263680911077148 -13442.0,0.026358985464266942 -13443.0,0.026349882965253847 -13444.0,0.026340783609589663 -13445.0,0.026331687396188908 -13446.0,0.026322594323966476 -13447.0,0.02631350439183761 -13448.0,0.026304417598717954 -13449.0,0.026295333943523527 -13450.0,0.02628625342517071 -13451.0,0.02627717604257628 -13452.0,0.02626810179465734 -13453.0,0.026259030680331415 -13454.0,0.02624996269851639 -13455.0,0.026240897848130527 -13456.0,0.026231836128092437 -13457.0,0.02622277753732113 -13458.0,0.026213722074735983 -13459.0,0.026204669739256763 -13460.0,0.02619562052980356 -13461.0,0.026186574445296887 -13462.0,0.02617753148465761 -13463.0,0.02616849164680698 -13464.0,0.026159454930666595 -13465.0,0.02615042133515844 -13466.0,0.02614139085920488 -13467.0,0.026132363501728657 -13468.0,0.026123339261652848 -13469.0,0.026114318137900938 -13470.0,0.026105300129396776 -13471.0,0.026096285235064576 -13472.0,0.026087273453828937 -13473.0,0.026078264784614804 -13474.0,0.02606925922634751 -13475.0,0.026060256777952765 -13476.0,0.02605125743835665 -13477.0,0.026042261206485586 -13478.0,0.026033268081266405 -13479.0,0.026024278061626285 -13480.0,0.0260152911464928 -13481.0,0.02600630733479385 -13482.0,0.02599732662545775 -13483.0,0.025988349017413155 -13484.0,0.02597937450958912 -13485.0,0.02597040310091503 -13486.0,0.025961434790320672 -13487.0,0.02595246957673619 -13488.0,0.025943507459092102 -13489.0,0.025934548436319302 -13490.0,0.02592559250734902 -13491.0,0.025916639671112893 -13492.0,0.025907689926542913 -13493.0,0.02589874327257145 -13494.0,0.02588979970813121 -13495.0,0.025880859232155308 -13496.0,0.025871921843577207 -13497.0,0.025862987541330748 -13498.0,0.02585405632435012 -13499.0,0.0258451281915699 -13500.0,0.025836203141925026 -13501.0,0.02582728117435082 -13502.0,0.02581836228778293 -13503.0,0.025809446481157412 -13504.0,0.025800533753410675 -13505.0,0.025791624103479505 -13506.0,0.025782717530301022 -13507.0,0.02577381403281275 -13508.0,0.02576491360995257 -13509.0,0.025756016260658723 -13510.0,0.02574712198386983 -13511.0,0.02573823077852485 -13512.0,0.025729342643563132 -13513.0,0.025720457577924394 -13514.0,0.025711575580548717 -13515.0,0.025702696650376524 -13516.0,0.025693820786348638 -13517.0,0.025684947987406226 -13518.0,0.025676078252490846 -13519.0,0.025667211580544375 -13520.0,0.025658347970509098 -13521.0,0.025649487421327652 -13522.0,0.025640629931943045 -13523.0,0.025631775501298627 -13524.0,0.025622924128338134 -13525.0,0.025614075812005664 -13526.0,0.02560523055124568 -13527.0,0.025596388345003013 -13528.0,0.025587549192222836 -13529.0,0.025578713091850707 -13530.0,0.02556988004283255 -13531.0,0.025561050044114655 -13532.0,0.025552223094643643 -13533.0,0.025543399193366536 -13534.0,0.025534578339230708 -13535.0,0.025525760531183907 -13536.0,0.02551694576817421 -13537.0,0.025508134049150092 -13538.0,0.025499325373060374 -13539.0,0.025490519738854262 -13540.0,0.025481717145481284 -13541.0,0.025472917591891367 -13542.0,0.025464121077034784 -13543.0,0.025455327599862194 -13544.0,0.02544653715932457 -13545.0,0.02543774975437329 -13546.0,0.02542896538396008 -13547.0,0.02542018404703703 -13548.0,0.0254114057425566 -13549.0,0.025402630469471582 -13550.0,0.02539385822673516 -13551.0,0.02538508901330087 -13552.0,0.025376322828122622 -13553.0,0.025367559670154645 -13554.0,0.025358799538351573 -13555.0,0.02535004243166839 -13556.0,0.025341288349060444 -13557.0,0.025332537289483415 -13558.0,0.025323789251893374 -13559.0,0.02531504423524675 -13560.0,0.025306302238500333 -13561.0,0.025297563260611246 -13562.0,0.025288827300537 -13563.0,0.025280094357235466 -13564.0,0.02527136442966486 -13565.0,0.025262637516783783 -13566.0,0.025253913617551152 -13567.0,0.025245192730926277 -13568.0,0.02523647485586883 -13569.0,0.025227759991338833 -13570.0,0.02521904813629665 -13571.0,0.025210339289703024 -13572.0,0.025201633450519064 -13573.0,0.02519293061770623 -13574.0,0.025184230790226317 -13575.0,0.025175533967041513 -13576.0,0.025166840147114348 -13577.0,0.02515814932940772 -13578.0,0.025149461512884864 -13579.0,0.025140776696509395 -13580.0,0.025132094879245274 -13581.0,0.025123416060056837 -13582.0,0.02511474023790874 -13583.0,0.025106067411766034 -13584.0,0.025097397580594115 -13585.0,0.025088730743358732 -13586.0,0.02508006689902601 -13587.0,0.02507140604656239 -13588.0,0.02506274818493471 -13589.0,0.02505409331311014 -13590.0,0.025045441430056242 -13591.0,0.025036792534740882 -13592.0,0.025028146626132317 -13593.0,0.025019503703199157 -13594.0,0.025010863764910376 -13595.0,0.025002226810235267 -13596.0,0.024993592838143515 -13597.0,0.024984961847605153 -13598.0,0.02497633383759058 -13599.0,0.02496770880707051 -13600.0,0.02495908675501605 -13601.0,0.02495046768039866 -13602.0,0.02494185158219014 -13603.0,0.024933238459362666 -13604.0,0.024924628310888732 -13605.0,0.024916021135741224 -13606.0,0.024907416932893365 -13607.0,0.024898815701318747 -13608.0,0.02489021743999129 -13609.0,0.024881622147885286 -13610.0,0.02487302982397539 -13611.0,0.0248644404672366 -13612.0,0.024855854076644254 -13613.0,0.024847270651174067 -13614.0,0.0248386901898021 -13615.0,0.024830112691504775 -13616.0,0.02482153815525884 -13617.0,0.024812966580041427 -13618.0,0.024804397964830003 -13619.0,0.024795832308602415 -13620.0,0.024787269610336813 -13621.0,0.02477870986901174 -13622.0,0.02477015308360609 -13623.0,0.024761599253099092 -13624.0,0.024753048376470355 -13625.0,0.024744500452699793 -13626.0,0.024735955480767714 -13627.0,0.02472741345965477 -13628.0,0.02471887438834196 -13629.0,0.024710338265810625 -13630.0,0.024701805091042476 -13631.0,0.02469327486301956 -13632.0,0.024684747580724302 -13633.0,0.024676223243139436 -13634.0,0.02466770184924808 -13635.0,0.024659183398033694 -13636.0,0.024650667888480096 -13637.0,0.024642155319571434 -13638.0,0.02463364569029223 -13639.0,0.02462513899962734 -13640.0,0.024616635246561984 -13641.0,0.024608134430081738 -13642.0,0.02459963654917249 -13643.0,0.02459114160282052 -13644.0,0.02458264959001244 -13645.0,0.024574160509735227 -13646.0,0.024565674360976175 -13647.0,0.024557191142722957 -13648.0,0.02454871085396359 -13649.0,0.02454023349368644 -13650.0,0.02453175906088021 -13651.0,0.024523287554533965 -13652.0,0.024514818973637116 -13653.0,0.024506353317179437 -13654.0,0.024497890584151014 -13655.0,0.024489430773542317 -13656.0,0.02448097388434415 -13657.0,0.024472519915547677 -13658.0,0.024464068866144387 -13659.0,0.024455620735126134 -13660.0,0.02444717552148512 -13661.0,0.024438733224213895 -13662.0,0.024430293842305363 -13663.0,0.024421857374752744 -13664.0,0.024413423820549646 -13665.0,0.02440499317869 -13666.0,0.02439656544816811 -13667.0,0.02438814062797858 -13668.0,0.024379718717116406 -13669.0,0.024371299714576918 -13670.0,0.024362883619355794 -13671.0,0.024354470430449037 -13672.0,0.024346060146853025 -13673.0,0.02433765276756448 -13674.0,0.02432924829158046 -13675.0,0.02432084671789836 -13676.0,0.024312448045515942 -13677.0,0.024304052273431305 -13678.0,0.024295659400642898 -13679.0,0.02428726942614952 -13680.0,0.024278882348950287 -13681.0,0.02427049816804469 -13682.0,0.024262116882432565 -13683.0,0.024253738491114087 -13684.0,0.024245362993089763 -13685.0,0.02423699038736046 -13686.0,0.02422862067292739 -13687.0,0.02422025384879212 -13688.0,0.024211889913956525 -13689.0,0.02420352886742286 -13690.0,0.024195170708193714 -13691.0,0.024186815435272027 -13692.0,0.02417846304766106 -13693.0,0.02417011354436444 -13694.0,0.02416176692438613 -13695.0,0.024153423186730458 -13696.0,0.02414508233040205 -13697.0,0.024136744354405913 -13698.0,0.02412840925774739 -13699.0,0.024120077039432163 -13700.0,0.02411174769846627 -13701.0,0.02410342123385606 -13702.0,0.02409509764460826 -13703.0,0.02408677692972992 -13704.0,0.024078459088228452 -13705.0,0.024070144119111583 -13706.0,0.0240618320213874 -13707.0,0.02405352279406434 -13708.0,0.024045216436151172 -13709.0,0.024036912946656996 -13710.0,0.024028612324591272 -13711.0,0.0240203145689638 -13712.0,0.024012019678784725 -13713.0,0.024003727653064508 -13714.0,0.02399543849081398 -13715.0,0.023987152191044307 -13716.0,0.023978868752766988 -13717.0,0.02397058817499389 -13718.0,0.02396231045673717 -13719.0,0.02395403559700937 -13720.0,0.02394576359482336 -13721.0,0.02393749444919236 -13722.0,0.023929228159129904 -13723.0,0.023920964723649893 -13724.0,0.023912704141766553 -13725.0,0.023904446412494475 -13726.0,0.023896191534848548 -13727.0,0.023887939507844035 -13728.0,0.02387969033049653 -13729.0,0.023871444001821982 -13730.0,0.023863200520836635 -13731.0,0.023854959886557114 -13732.0,0.023846722098000376 -13733.0,0.02383848715418372 -13734.0,0.023830255054124755 -13735.0,0.023822025796841464 -13736.0,0.023813799381352158 -13737.0,0.023805575806675486 -13738.0,0.02379735507183044 -13739.0,0.02378913717583633 -13740.0,0.023780922117712832 -13741.0,0.02377270989647995 -13742.0,0.02376450051115803 -13743.0,0.023756293960767737 -13744.0,0.023748090244330097 -13745.0,0.023739889360866472 -13746.0,0.02373169130939856 -13747.0,0.023723496088948377 -13748.0,0.0237153036985383 -13749.0,0.02370711413719104 -13750.0,0.02369892740392965 -13751.0,0.023690743497777493 -13752.0,0.023682562417758297 -13753.0,0.02367438416289612 -13754.0,0.023666208732215355 -13755.0,0.023658036124740746 -13756.0,0.02364986633949734 -13757.0,0.023641699375510545 -13758.0,0.023633535231806106 -13759.0,0.023625373907410114 -13760.0,0.023617215401348955 -13761.0,0.023609059712649393 -13762.0,0.023600906840338515 -13763.0,0.02359275678344375 -13764.0,0.02358460954099284 -13765.0,0.023576465112013882 -13766.0,0.023568323495535306 -13767.0,0.023560184690585892 -13768.0,0.023552048696194715 -13769.0,0.023543915511391223 -13770.0,0.023535785135205184 -13771.0,0.023527657566666717 -13772.0,0.023519532804806238 -13773.0,0.023511410848654532 -13774.0,0.023503291697242714 -13775.0,0.023495175349602222 -13776.0,0.023487061804764852 -13777.0,0.02347895106176269 -13778.0,0.023470843119628198 -13779.0,0.02346273797739416 -13780.0,0.023454635634093692 -13781.0,0.023446536088760236 -13782.0,0.023438439340427573 -13783.0,0.02343034538812983 -13784.0,0.02342225423090146 -13785.0,0.023414165867777236 -13786.0,0.023406080297792276 -13787.0,0.023397997519982033 -13788.0,0.023389917533382303 -13789.0,0.023381840337029183 -13790.0,0.02337376592995913 -13791.0,0.023365694311208923 -13792.0,0.023357625479815684 -13793.0,0.023349559434816865 -13794.0,0.023341496175250227 -13795.0,0.023333435700153893 -13796.0,0.023325378008566308 -13797.0,0.023317323099526253 -13798.0,0.02330927097207282 -13799.0,0.02330122162524546 -13800.0,0.023293175058083943 -13801.0,0.023285131269628383 -13802.0,0.023277090258919192 -13803.0,0.02326905202499715 -13804.0,0.02326101656690335 -13805.0,0.023252983883679235 -13806.0,0.02324495397436654 -13807.0,0.02323692683800737 -13808.0,0.02322890247364414 -13809.0,0.02322088088031962 -13810.0,0.023212862057076865 -13811.0,0.0232048460029593 -13812.0,0.02319683271701067 -13813.0,0.02318882219827505 -13814.0,0.02318081444579685 -13815.0,0.023172809458620783 -13816.0,0.023164807235791923 -13817.0,0.023156807776355665 -13818.0,0.02314881107935774 -13819.0,0.023140817143844184 -13820.0,0.023132825968861383 -13821.0,0.023124837553456054 -13822.0,0.023116851896675242 -13823.0,0.023108868997566298 -13824.0,0.023100888855176933 -13825.0,0.02309291146855517 -13826.0,0.023084936836749382 -13827.0,0.023076964958808226 -13828.0,0.023068995833780727 -13829.0,0.023061029460716226 -13830.0,0.023053065838664396 -13831.0,0.023045104966675244 -13832.0,0.023037146843799074 -13833.0,0.023029191469086552 -13834.0,0.02302123884158866 -13835.0,0.023013288960356714 -13836.0,0.023005341824442332 -13837.0,0.02299739743289749 -13838.0,0.022989455784774484 -13839.0,0.02298151687912594 -13840.0,0.02297358071500478 -13841.0,0.022965647291464292 -13842.0,0.02295771660755808 -13843.0,0.02294978866234007 -13844.0,0.022941863454864507 -13845.0,0.02293394098418598 -13846.0,0.02292602124935939 -13847.0,0.022918104249439984 -13848.0,0.022910189983483303 -13849.0,0.022902278450545238 -13850.0,0.022894369649682007 -13851.0,0.022886463579950146 -13852.0,0.022878560240406527 -13853.0,0.022870659630108318 -13854.0,0.022862761748113046 -13855.0,0.02285486659347855 -13856.0,0.022846974165263007 -13857.0,0.022839084462524886 -13858.0,0.022831197484323017 -13859.0,0.022823313229716535 -13860.0,0.02281543169776492 -13861.0,0.022807552887527942 -13862.0,0.022799676798065726 -13863.0,0.02279180342843871 -13864.0,0.022783932777707676 -13865.0,0.02277606484493368 -13866.0,0.022768199629178157 -13867.0,0.02276033712950284 -13868.0,0.02275247734496979 -13869.0,0.022744620274641397 -13870.0,0.022736765917580358 -13871.0,0.022728914272849707 -13872.0,0.02272106533951281 -13873.0,0.02271321911663335 -13874.0,0.02270537560327531 -13875.0,0.02269753479850303 -13876.0,0.022689696701381153 -13877.0,0.022681861310974664 -13878.0,0.02267402862634884 -13879.0,0.022666198646569307 -13880.0,0.022658371370702007 -13881.0,0.022650546797813212 -13882.0,0.022642724926969483 -13883.0,0.02263490575723775 -13884.0,0.02262708928768523 -13885.0,0.022619275517379488 -13886.0,0.022611464445388384 -13887.0,0.02260365607078012 -13888.0,0.022595850392623216 -13889.0,0.02258804740998651 -13890.0,0.022580247121939172 -13891.0,0.022572449527550668 -13892.0,0.022564654625890808 -13893.0,0.022556862416029718 -13894.0,0.022549072897037854 -13895.0,0.022541286067985965 -13896.0,0.02253350192794515 -13897.0,0.02252572047598681 -13898.0,0.022517941711182696 -13899.0,0.022510165632604832 -13900.0,0.022502392239325597 -13901.0,0.02249462153041768 -13902.0,0.022486853504954114 -13903.0,0.022479088162008196 -13904.0,0.0224713255006536 -13905.0,0.02246356551996428 -13906.0,0.022455808219014547 -13907.0,0.022448053596879007 -13908.0,0.022440301652632576 -13909.0,0.022432552385350513 -13910.0,0.022424805794108386 -13911.0,0.022417061877982095 -13912.0,0.022409320636047825 -13913.0,0.022401582067382114 -13914.0,0.022393846171061802 -13915.0,0.02238611294616407 -13916.0,0.02237838239176638 -13917.0,0.02237065450694654 -13918.0,0.02236292929078267 -13919.0,0.02235520674235322 -13920.0,0.022347486860736926 -13921.0,0.02233976964501287 -13922.0,0.022332055094260447 -13923.0,0.022324343207559376 -13924.0,0.022316633983989663 -13925.0,0.02230892742263167 -13926.0,0.022301223522566055 -13927.0,0.0222935222828738 -13928.0,0.022285823702636216 -13929.0,0.022278127780934895 -13930.0,0.022270434516851782 -13931.0,0.022262743909469127 -13932.0,0.022255055957869505 -13933.0,0.022247370661135777 -13934.0,0.022239688018351158 -13935.0,0.022232008028599162 -13936.0,0.022224330690963634 -13937.0,0.0222166560045287 -13938.0,0.022208983968378844 -13939.0,0.02220131458159884 -13940.0,0.022193647843273795 -13941.0,0.02218598375248911 -13942.0,0.02217832230833052 -13943.0,0.022170663509884073 -13944.0,0.02216300735623613 -13945.0,0.022155353846473373 -13946.0,0.02214770297968278 -13947.0,0.022140054754951666 -13948.0,0.022132409171367655 -13949.0,0.02212476622801869 -13950.0,0.022117125923993012 -13951.0,0.022109488258379193 -13952.0,0.022101853230266113 -13953.0,0.02209422083874298 -13954.0,0.02208659108289929 -13955.0,0.022078963961824877 -13956.0,0.022071339474609878 -13957.0,0.022063717620344758 -13958.0,0.022056098398120266 -13959.0,0.022048481807027495 -13960.0,0.022040867846157844 -13961.0,0.022033256514603024 -13962.0,0.022025647811455048 -13963.0,0.022018041735806262 -13964.0,0.022010438286749312 -13965.0,0.022002837463377164 -13966.0,0.021995239264783105 -13967.0,0.021987643690060704 -13968.0,0.02198005073830388 -13969.0,0.021972460408606842 -13970.0,0.021964872700064135 -13971.0,0.021957287611770578 -13972.0,0.021949705142821335 -13973.0,0.021942125292311872 -13974.0,0.021934548059337977 -13975.0,0.021926973442995726 -13976.0,0.021919401442381532 -13977.0,0.021911832056592105 -13978.0,0.021904265284724486 -13979.0,0.021896701125875998 -13980.0,0.021889139579144297 -13981.0,0.021881580643627344 -13982.0,0.02187402431842342 -13983.0,0.021866470602631114 -13984.0,0.021858919495349304 -13985.0,0.021851370995677213 -13986.0,0.02184382510271435 -13987.0,0.02183628181556057 -13988.0,0.02182874113331598 -13989.0,0.021821203055081045 -13990.0,0.021813667579956533 -13991.0,0.02180613470704352 -13992.0,0.02179860443544337 -13993.0,0.021791076764257795 -13994.0,0.021783551692588787 -13995.0,0.021776029219538674 -13996.0,0.021768509344210065 -13997.0,0.021760992065705895 -13998.0,0.021753477383129417 -13999.0,0.021745965295584185 -14000.0,0.021738455802174046 -14001.0,0.021730948902003184 -14002.0,0.021723444594176078 -14003.0,0.021715942877797517 -14004.0,0.021708443751972617 -14005.0,0.02170094721580676 -14006.0,0.021693453268405678 -14007.0,0.0216859619088754 -14008.0,0.021678473136322263 -14009.0,0.021670986949852897 -14010.0,0.021663503348574267 -14011.0,0.02165602233159363 -14012.0,0.021648543898018565 -14013.0,0.02164106804695693 -14014.0,0.02163359477751692 -14015.0,0.021626124088807035 -14016.0,0.021618655979936074 -14017.0,0.021611190450013137 -14018.0,0.021603727498147644 -14019.0,0.021596267123449323 -14020.0,0.021588809325028203 -14021.0,0.021581354101994635 -14022.0,0.021573901453459245 -14023.0,0.021566451378532994 -14024.0,0.021559003876327146 -14025.0,0.021551558945953276 -14026.0,0.021544116586523242 -14027.0,0.021536676797149226 -14028.0,0.021529239576943724 -14029.0,0.02152180492501954 -14030.0,0.021514372840489744 -14031.0,0.021506943322467765 -14032.0,0.02149951637006731 -14033.0,0.021492091982402404 -14034.0,0.02148467015858736 -14035.0,0.021477250897736812 -14036.0,0.021469834198965698 -14037.0,0.021462420061389268 -14038.0,0.021455008484123055 -14039.0,0.02144759946628292 -14040.0,0.021440193006985016 -14041.0,0.021432789105345813 -14042.0,0.021425387760482088 -14043.0,0.021417988971510888 -14044.0,0.02141059273754961 -14045.0,0.021403199057715934 -14046.0,0.021395807931127858 -14047.0,0.021388419356903655 -14048.0,0.02138103333416193 -14049.0,0.021373649862021588 -14050.0,0.021366268939601838 -14051.0,0.021358890566022175 -14052.0,0.021351514740402425 -14053.0,0.0213441414618627 -14054.0,0.021336770729523436 -14055.0,0.021329402542505337 -14056.0,0.02132203689992944 -14057.0,0.02131467380091708 -14058.0,0.02130731324458989 -14059.0,0.021299955230069823 -14060.0,0.0212925997564791 -14061.0,0.021285246822940276 -14062.0,0.021277896428576203 -14063.0,0.021270548572510036 -14064.0,0.021263203253865215 -14065.0,0.021255860471765507 -14066.0,0.021248520225334966 -14067.0,0.02124118251369797 -14068.0,0.02123384733597916 -14069.0,0.021226514691303516 -14070.0,0.021219184578796305 -14071.0,0.021211856997583108 -14072.0,0.021204531946789777 -14073.0,0.021197209425542502 -14074.0,0.021189889432967752 -14075.0,0.02118257196819232 -14076.0,0.021175257030343266 -14077.0,0.021167944618547978 -14078.0,0.02116063473193414 -14079.0,0.02115332736962974 -14080.0,0.021146022530763066 -14081.0,0.021138720214462687 -14082.0,0.0211314204198575 -14083.0,0.021124123146076697 -14084.0,0.021116828392249768 -14085.0,0.02110953615750649 -14086.0,0.021102246440976954 -14087.0,0.02109495924179156 -14088.0,0.021087674559081 -14089.0,0.02108039239197625 -14090.0,0.02107311273960861 -14091.0,0.021065835601109664 -14092.0,0.021058560975611318 -14093.0,0.021051288862245745 -14094.0,0.02104401926014544 -14095.0,0.021036752168443192 -14096.0,0.021029487586272093 -14097.0,0.02102222551276554 -14098.0,0.0210149659470572 -14099.0,0.021007708888281074 -14100.0,0.02100045433557144 -14101.0,0.0209932022880629 -14102.0,0.02098595274489031 -14103.0,0.020978705705188873 -14104.0,0.020971461168094063 -14105.0,0.020964219132741668 -14106.0,0.02095697959826775 -14107.0,0.02094974256380869 -14108.0,0.020942508028501172 -14109.0,0.02093527599148217 -14110.0,0.02092804645188894 -14111.0,0.020920819408859058 -14112.0,0.02091359486153039 -14113.0,0.02090637280904111 -14114.0,0.020899153250529663 -14115.0,0.020891936185134814 -14116.0,0.020884721611995623 -14117.0,0.020877509530251446 -14118.0,0.020870299939041936 -14119.0,0.02086309283750703 -14120.0,0.020855888224786977 -14121.0,0.020848686100022325 -14122.0,0.02084148646235392 -14123.0,0.020834289310922877 -14124.0,0.020827094644870637 -14125.0,0.020819902463338934 -14126.0,0.0208127127654698 -14127.0,0.020805525550405535 -14128.0,0.020798340817288766 -14129.0,0.020791158565262414 -14130.0,0.02078397879346969 -14131.0,0.020776801501054085 -14132.0,0.02076962668715941 -14133.0,0.020762454350929757 -14134.0,0.020755284491509526 -14135.0,0.020748117108043408 -14136.0,0.020740952199676373 -14137.0,0.020733789765553703 -14138.0,0.020726629804820977 -14139.0,0.02071947231662407 -14140.0,0.02071231730010913 -14141.0,0.020705164754422623 -14142.0,0.020698014678711303 -14143.0,0.020690867072122227 -14144.0,0.02068372193380272 -14145.0,0.020676579262900428 -14146.0,0.020669439058563284 -14147.0,0.02066230131993952 -14148.0,0.020655166046177637 -14149.0,0.02064803323642646 -14150.0,0.0206409028898351 -14151.0,0.02063377500555296 -14152.0,0.020626649582729722 -14153.0,0.020619526620515388 -14154.0,0.02061240611806023 -14155.0,0.020605288074514835 -14156.0,0.020598172489030075 -14157.0,0.020591059360757093 -14158.0,0.02058394868884736 -14159.0,0.02057684047245262 -14160.0,0.020569734710724926 -14161.0,0.02056263140281659 -14162.0,0.020555530547880254 -14163.0,0.020548432145068834 -14164.0,0.020541336193535556 -14165.0,0.0205342426924339 -14166.0,0.020527151640917677 -14167.0,0.02052006303814097 -14168.0,0.02051297688325818 -14169.0,0.020505893175423954 -14170.0,0.02049881191379327 -14171.0,0.02049173309752138 -14172.0,0.02048465672576384 -14173.0,0.020477582797676495 -14174.0,0.02047051131241546 -14175.0,0.020463442269137166 -14176.0,0.02045637566699833 -14177.0,0.020449311505155967 -14178.0,0.020442249782767354 -14179.0,0.020435190498990088 -14180.0,0.02042813365298205 -14181.0,0.020421079243901418 -14182.0,0.02041402727090663 -14183.0,0.020406977733156455 -14184.0,0.02039993062980993 -14185.0,0.02039288596002639 -14186.0,0.020385843722965452 -14187.0,0.020378803917787024 -14188.0,0.020371766543651318 -14189.0,0.020364731599718834 -14190.0,0.02035769908515033 -14191.0,0.020350668999106897 -14192.0,0.02034364134074989 -14193.0,0.020336616109240962 -14194.0,0.020329593303742066 -14195.0,0.02032257292341541 -14196.0,0.020315554967423526 -14197.0,0.020308539434929225 -14198.0,0.020301526325095607 -14199.0,0.02029451563708605 -14200.0,0.02028750737006423 -14201.0,0.02028050152319412 -14202.0,0.020273498095639976 -14203.0,0.020266497086566325 -14204.0,0.02025949849513801 -14205.0,0.020252502320520144 -14206.0,0.020245508561878147 -14207.0,0.0202385172183777 -14208.0,0.020231528289184786 -14209.0,0.020224541773465683 -14210.0,0.02021755767038695 -14211.0,0.020210575979115443 -14212.0,0.020203596698818282 -14213.0,0.020196619828662894 -14214.0,0.02018964536781699 -14215.0,0.02018267331544858 -14216.0,0.02017570367072593 -14217.0,0.020168736432817618 -14218.0,0.020161771600892504 -14219.0,0.02015480917411975 -14220.0,0.020147849151668763 -14221.0,0.020140891532709274 -14222.0,0.02013393631641129 -14223.0,0.02012698350194512 -14224.0,0.02012003308848132 -14225.0,0.02011308507519076 -14226.0,0.0201061394612446 -14227.0,0.02009919624581429 -14228.0,0.02009225542807153 -14229.0,0.020085317007188346 -14230.0,0.020078380982337028 -14231.0,0.020071447352690168 -14232.0,0.020064516117420633 -14233.0,0.02005758727570157 -14234.0,0.02005066082670642 -14235.0,0.02004373676960891 -14236.0,0.020036815103583065 -14237.0,0.02002989582780315 -14238.0,0.02002297894144377 -14239.0,0.02001606444367978 -14240.0,0.020009152333686345 -14241.0,0.02000224261063888 -14242.0,0.019995335273713118 -14243.0,0.019988430322085058 -14244.0,0.019981527754931002 -14245.0,0.019974627571427508 -14246.0,0.019967729770751442 -14247.0,0.01996083435207995 -14248.0,0.019953941314590447 -14249.0,0.019947050657460667 -14250.0,0.01994016237986858 -14251.0,0.01993327648099247 -14252.0,0.019926392960010912 -14253.0,0.01991951181610275 -14254.0,0.019912633048447096 -14255.0,0.019905756656223378 -14256.0,0.01989888263861129 -14257.0,0.019892010994790817 -14258.0,0.01988514172394221 -14259.0,0.019878274825246022 -14260.0,0.019871410297883082 -14261.0,0.01986454814103451 -14262.0,0.019857688353881683 -14263.0,0.019850830935606287 -14264.0,0.019843975885390285 -14265.0,0.019837123202415916 -14266.0,0.019830272885865714 -14267.0,0.01982342493492247 -14268.0,0.01981657934876928 -14269.0,0.01980973612658952 -14270.0,0.019802895267566848 -14271.0,0.019796056770885185 -14272.0,0.01978922063572875 -14273.0,0.01978238686128205 -14274.0,0.019775555446729876 -14275.0,0.019768726391257263 -14276.0,0.01976189969404957 -14277.0,0.01975507535429242 -14278.0,0.019748253371171726 -14279.0,0.01974143374387366 -14280.0,0.0197346164715847 -14281.0,0.019727801553491593 -14282.0,0.019720988988781375 -14283.0,0.019714178776641347 -14284.0,0.0197073709162591 -14285.0,0.019700565406822513 -14286.0,0.019693762247519737 -14287.0,0.019686961437539213 -14288.0,0.019680162976069632 -14289.0,0.0196733668623 -14290.0,0.019666573095419592 -14291.0,0.019659781674617967 -14292.0,0.01965299259908494 -14293.0,0.019646205868010632 -14294.0,0.01963942148058544 -14295.0,0.019632639436000042 -14296.0,0.01962585973344537 -14297.0,0.019619082372112667 -14298.0,0.01961230735119344 -14299.0,0.019605534669879493 -14300.0,0.01959876432736287 -14301.0,0.01959199632283593 -14302.0,0.0195852306554913 -14303.0,0.019578467324521887 -14304.0,0.019571706329120878 -14305.0,0.019564947668481724 -14306.0,0.019558191341798172 -14307.0,0.01955143734826424 -14308.0,0.019544685687074237 -14309.0,0.019537936357422722 -14310.0,0.019531189358504557 -14311.0,0.019524444689514874 -14312.0,0.019517702349649092 -14313.0,0.019510962338102882 -14314.0,0.01950422465407222 -14315.0,0.019497489296753344 -14316.0,0.01949075626534279 -14317.0,0.019484025559037332 -14318.0,0.019477297177034062 -14319.0,0.01947057111853033 -14320.0,0.019463847382723776 -14321.0,0.019457125968812286 -14322.0,0.01945040687599406 -14323.0,0.01944369010346755 -14324.0,0.0194369756504315 -14325.0,0.01943026351608493 -14326.0,0.019423553699627123 -14327.0,0.019416846200257645 -14328.0,0.019410141017176346 -14329.0,0.01940343814958335 -14330.0,0.019396737596679044 -14331.0,0.0193900393576641 -14332.0,0.019383343431739475 -14333.0,0.0193766498181064 -14334.0,0.01936995851596636 -14335.0,0.019363269524521137 -14336.0,0.019356582842972783 -14337.0,0.019349898470523635 -14338.0,0.01934321640637628 -14339.0,0.019336536649733605 -14340.0,0.019329859199798766 -14341.0,0.019323184055775183 -14342.0,0.019316511216866582 -14343.0,0.01930984068227691 -14344.0,0.019303172451210444 -14345.0,0.019296506522871702 -14346.0,0.0192898428964655 -14347.0,0.0192831815711969 -14348.0,0.019276522546271258 -14349.0,0.019269865820894207 -14350.0,0.019263211394271652 -14351.0,0.019256559265609756 -14352.0,0.019249909434114972 -14353.0,0.019243261898994026 -14354.0,0.019236616659453927 -14355.0,0.019229973714701924 -14356.0,0.019223333063945573 -14357.0,0.019216694706392697 -14358.0,0.019210058641251387 -14359.0,0.019203424867730003 -14360.0,0.019196793385037183 -14361.0,0.019190164192381846 -14362.0,0.019183537288973172 -14363.0,0.019176912674020635 -14364.0,0.019170290346733947 -14365.0,0.01916367030632312 -14366.0,0.01915705255199843 -14367.0,0.01915043708297044 -14368.0,0.01914382389844995 -14369.0,0.01913721299764807 -14370.0,0.019130604379776164 -14371.0,0.01912399804404588 -14372.0,0.019117393989669117 -14373.0,0.019110792215858066 -14374.0,0.019104192721825182 -14375.0,0.019097595506783204 -14376.0,0.019091000569945112 -14377.0,0.019084407910524192 -14378.0,0.019077817527733985 -14379.0,0.019071229420788306 -14380.0,0.01906464358890125 -14381.0,0.019058060031287162 -14382.0,0.019051478747160674 -14383.0,0.01904489973573669 -14384.0,0.019038322996230393 -14385.0,0.019031748527857204 -14386.0,0.019025176329832846 -14387.0,0.01901860640137331 -14388.0,0.019012038741694853 -14389.0,0.019005473350013985 -14390.0,0.018998910225547515 -14391.0,0.018992349367512505 -14392.0,0.018985790775126306 -14393.0,0.018979234447606505 -14394.0,0.01897268038417099 -14395.0,0.018966128584037907 -14396.0,0.018959579046425687 -14397.0,0.018953031770553 -14398.0,0.018946486755638807 -14399.0,0.018939944000902337 -14400.0,0.018933403505563093 -14401.0,0.018926865268840846 -14402.0,0.01892032928995561 -14403.0,0.01891379556812771 -14404.0,0.018907264102577714 -14405.0,0.018900734892526472 -14406.0,0.018894207937195085 -14407.0,0.018887683235804937 -14408.0,0.018881160787577688 -14409.0,0.018874640591735256 -14410.0,0.018868122647499822 -14411.0,0.01886160695409384 -14412.0,0.018855093510740047 -14413.0,0.01884858231666144 -14414.0,0.01884207337108126 -14415.0,0.018835566673223048 -14416.0,0.018829062222310608 -14417.0,0.018822560017568 -14418.0,0.01881606005821957 -14419.0,0.0188095623434899 -14420.0,0.018803066872603875 -14421.0,0.018796573644786627 -14422.0,0.01879008265926357 -14423.0,0.018783593915260365 -14424.0,0.018777107412002954 -14425.0,0.018770623148717545 -14426.0,0.018764141124630627 -14427.0,0.018757661338968917 -14428.0,0.01875118379095944 -14429.0,0.018744708479829467 -14430.0,0.018738235404806552 -14431.0,0.018731764565118485 -14432.0,0.018725295959993348 -14433.0,0.01871882958865949 -14434.0,0.018712365450345523 -14435.0,0.01870590354428031 -14436.0,0.018699443869692998 -14437.0,0.018692986425812998 -14438.0,0.01868653121186998 -14439.0,0.01868007822709389 -14440.0,0.01867362747071493 -14441.0,0.018667178941963566 -14442.0,0.018660732640070544 -14443.0,0.01865428856426687 -14444.0,0.018647846713783802 -14445.0,0.018641407087852876 -14446.0,0.018634969685705896 -14447.0,0.018628534506574937 -14448.0,0.018622101549692308 -14449.0,0.01861567081429061 -14450.0,0.018609242299602712 -14451.0,0.01860281600486174 -14452.0,0.018596391929301074 -14453.0,0.018589970072154367 -14454.0,0.018583550432655548 -14455.0,0.018577133010038795 -14456.0,0.018570717803538566 -14457.0,0.01856430481238956 -14458.0,0.018557894035826757 -14459.0,0.018551485473085404 -14460.0,0.018545079123401007 -14461.0,0.018538674986009328 -14462.0,0.0185322730601464 -14463.0,0.018525873345048523 -14464.0,0.018519475839952265 -14465.0,0.018513080544094437 -14466.0,0.018506687456712134 -14467.0,0.018500296577042705 -14468.0,0.018493907904323773 -14469.0,0.0184875214377932 -14470.0,0.018481137176689137 -14471.0,0.01847475512024999 -14472.0,0.01846837526771443 -14473.0,0.018461997618321367 -14474.0,0.018455622171310013 -14475.0,0.018449248925919818 -14476.0,0.0184428778813905 -14477.0,0.018436509036962045 -14478.0,0.018430142391874686 -14479.0,0.018423777945368935 -14480.0,0.018417415696685556 -14481.0,0.018411055645065594 -14482.0,0.01840469778975032 -14483.0,0.018398342129981295 -14484.0,0.01839198866500034 -14485.0,0.01838563739404954 -14486.0,0.018379288316371215 -14487.0,0.01837294143120798 -14488.0,0.01836659673780269 -14489.0,0.018360254235398485 -14490.0,0.01835391392323873 -14491.0,0.018347575800567083 -14492.0,0.018341239866627453 -14493.0,0.018334906120664 -14494.0,0.018328574561921177 -14495.0,0.01832224518964365 -14496.0,0.018315918003076376 -14497.0,0.018309593001464584 -14498.0,0.018303270184053727 -14499.0,0.01829694955008955 -14500.0,0.018290631098818042 -14501.0,0.018284314829485462 -14502.0,0.018278000741338323 -14503.0,0.018271688833623404 -14504.0,0.018265379105587756 -14505.0,0.018259071556478636 -14506.0,0.018252766185543622 -14507.0,0.018246462992030525 -14508.0,0.018240161975187425 -14509.0,0.018233863134262653 -14510.0,0.0182275664685048 -14511.0,0.018221271977162726 -14512.0,0.018214979659485542 -14513.0,0.018208689514722636 -14514.0,0.01820240154212361 -14515.0,0.018196115740938365 -14516.0,0.018189832110417054 -14517.0,0.018183550649810087 -14518.0,0.01817727135836813 -14519.0,0.01817099423534211 -14520.0,0.01816471927998321 -14521.0,0.01815844649154289 -14522.0,0.018152175869272827 -14523.0,0.018145907412424986 -14524.0,0.018139641120251595 -14525.0,0.018133376992005127 -14526.0,0.018127115026938315 -14527.0,0.018120855224304157 -14528.0,0.0181145975833559 -14529.0,0.018108342103347077 -14530.0,0.018102088783531412 -14531.0,0.018095837623162952 -14532.0,0.018089588621495976 -14533.0,0.01808334177778503 -14534.0,0.018077097091284904 -14535.0,0.018070854561250654 -14536.0,0.018064614186937594 -14537.0,0.01805837596760129 -14538.0,0.018052139902497585 -14539.0,0.018045905990882533 -14540.0,0.018039674232012484 -14541.0,0.01803344462514404 -14542.0,0.01802721716953405 -14543.0,0.018020991864439628 -14544.0,0.018014768709118136 -14545.0,0.018008547702827202 -14546.0,0.01800232884482472 -14547.0,0.01799611213436879 -14548.0,0.01798989757071782 -14549.0,0.017983685153130462 -14550.0,0.017977474880865617 -14551.0,0.017971266753182447 -14552.0,0.017965060769340367 -14553.0,0.017958856928599047 -14554.0,0.01795265523021841 -14555.0,0.017946455673458667 -14556.0,0.01794025825758021 -14557.0,0.01793406298184376 -14558.0,0.017927869845510258 -14559.0,0.01792167884784091 -14560.0,0.017915489988097177 -14561.0,0.01790930326554077 -14562.0,0.01790311867943366 -14563.0,0.01789693622903809 -14564.0,0.0178907559136165 -14565.0,0.017884577732431645 -14566.0,0.01787840168474651 -14567.0,0.01787222776982434 -14568.0,0.01786605598692863 -14569.0,0.017859886335323136 -14570.0,0.017853718814271852 -14571.0,0.01784755342303905 -14572.0,0.017841390160889255 -14573.0,0.0178352290270872 -14574.0,0.017829070020897928 -14575.0,0.01782291314158671 -14576.0,0.01781675838841908 -14577.0,0.017810605760660816 -14578.0,0.017804455257577956 -14579.0,0.017798306878436792 -14580.0,0.01779216062250388 -14581.0,0.017786016489045986 -14582.0,0.017779874477330176 -14583.0,0.017773734586623752 -14584.0,0.01776759681619427 -14585.0,0.017761461165309536 -14586.0,0.017755327633237616 -14587.0,0.017749196219246824 -14588.0,0.017743066922605726 -14589.0,0.017736939742583155 -14590.0,0.017730814678448156 -14591.0,0.017724691729470065 -14592.0,0.01771857089491846 -14593.0,0.017712452174063174 -14594.0,0.017706335566174285 -14595.0,0.01770022107052212 -14596.0,0.017694108686377278 -14597.0,0.0176879984130106 -14598.0,0.01768189024969315 -14599.0,0.017675784195696282 -14600.0,0.01766968025029159 -14601.0,0.017663578412750916 -14602.0,0.017657478682346354 -14603.0,0.017651381058350252 -14604.0,0.01764528554003521 -14605.0,0.01763919212667409 -14606.0,0.01763310081753996 -14607.0,0.017627011611906194 -14608.0,0.017620924509046385 -14609.0,0.017614839508234392 -14610.0,0.017608756608744315 -14611.0,0.01760267580985051 -14612.0,0.017596597110827585 -14613.0,0.01759052051095039 -14614.0,0.01758444600949405 -14615.0,0.01757837360573389 -14616.0,0.017572303298945532 -14617.0,0.01756623508840483 -14618.0,0.017560168973387896 -14619.0,0.01755410495317108 -14620.0,0.017548043027030995 -14621.0,0.017541983194244493 -14622.0,0.017535925454088698 -14623.0,0.017529869805840932 -14624.0,0.017523816248778818 -14625.0,0.017517764782180215 -14626.0,0.01751171540532322 -14627.0,0.017505668117486186 -14628.0,0.017499622917947724 -14629.0,0.01749357980598668 -14630.0,0.01748753878088215 -14631.0,0.01748149984191351 -14632.0,0.01747546298836032 -14633.0,0.017469428219502446 -14634.0,0.017463395534619983 -14635.0,0.017457364932993276 -14636.0,0.01745133641390292 -14637.0,0.017445309976629752 -14638.0,0.017439285620454867 -14639.0,0.017433263344659614 -14640.0,0.01742724314852555 -14641.0,0.01742122503133453 -14642.0,0.01741520899236863 -14643.0,0.017409195030910183 -14644.0,0.017403183146241768 -14645.0,0.017397173337646208 -14646.0,0.01739116560440658 -14647.0,0.017385159945806205 -14648.0,0.01737915636112866 -14649.0,0.017373154849657745 -14650.0,0.017367155410677525 -14651.0,0.017361158043472318 -14652.0,0.017355162747326677 -14653.0,0.017349169521525414 -14654.0,0.01734317836535357 -14655.0,0.017337189278096455 -14656.0,0.017331202259039627 -14657.0,0.017325217307468842 -14658.0,0.01731923442267016 -14659.0,0.01731325360392986 -14660.0,0.01730727485053448 -14661.0,0.0173012981617708 -14662.0,0.01729532353692584 -14663.0,0.01728935097528687 -14664.0,0.017283380476141412 -14665.0,0.017277412038777237 -14666.0,0.017271445662482333 -14667.0,0.017265481346544962 -14668.0,0.017259519090253625 -14669.0,0.017253558892897074 -14670.0,0.017247600753764296 -14671.0,0.01724164467214453 -14672.0,0.017235690647327263 -14673.0,0.017229738678602228 -14674.0,0.01722378876525938 -14675.0,0.017217840906588944 -14676.0,0.017211895101881387 -14677.0,0.01720595135042742 -14678.0,0.017200009651517995 -14679.0,0.01719407000444431 -14680.0,0.017188132408497807 -14681.0,0.017182196862970192 -14682.0,0.017176263367153367 -14683.0,0.017170331920339524 -14684.0,0.017164402521821085 -14685.0,0.017158475170890714 -14686.0,0.017152549866841324 -14687.0,0.01714662660896607 -14688.0,0.017140705396558344 -14689.0,0.0171347862289118 -14690.0,0.017128869105320327 -14691.0,0.017122954025078033 -14692.0,0.017117040987479307 -14693.0,0.017111129991818762 -14694.0,0.017105221037391264 -14695.0,0.017099314123491915 -14696.0,0.017093409249416065 -14697.0,0.017087506414459303 -14698.0,0.01708160561791748 -14699.0,0.01707570685908665 -14700.0,0.01706981013726314 -14701.0,0.017063915451743517 -14702.0,0.01705802280182459 -14703.0,0.017052132186803407 -14704.0,0.01704624360597726 -14705.0,0.017040357058643686 -14706.0,0.017034472544100464 -14707.0,0.017028590061645626 -14708.0,0.01702270961057741 -14709.0,0.017016831190194325 -14710.0,0.01701095479979513 -14711.0,0.01700508043867881 -14712.0,0.0169992081061446 -14713.0,0.016993337801491967 -14714.0,0.01698746952402063 -14715.0,0.01698160327303056 -14716.0,0.01697573904782193 -14717.0,0.01696987684769519 -14718.0,0.016964016671951025 -14719.0,0.01695815851989036 -14720.0,0.01695230239081436 -14721.0,0.016946448284024425 -14722.0,0.016940596198822214 -14723.0,0.01693474613450961 -14724.0,0.016928898090388753 -14725.0,0.016923052065761994 -14726.0,0.01691720805993195 -14727.0,0.016911366072201485 -14728.0,0.01690552610187368 -14729.0,0.01689968814825188 -14730.0,0.016893852210639652 -14731.0,0.016888018288340814 -14732.0,0.01688218638065944 -14733.0,0.01687635648689979 -14734.0,0.016870528606366418 -14735.0,0.0168647027383641 -14736.0,0.016858878882197854 -14737.0,0.016853057037172933 -14738.0,0.016847237202594834 -14739.0,0.0168414193777693 -14740.0,0.016835603562002296 -14741.0,0.01682978975460006 -14742.0,0.016823977954869018 -14743.0,0.016818168162115874 -14744.0,0.016812360375647564 -14745.0,0.016806554594771265 -14746.0,0.016800750818794386 -14747.0,0.01679494904702458 -14748.0,0.016789149278769736 -14749.0,0.016783351513338002 -14750.0,0.016777555750037716 -14751.0,0.0167717619881775 -14752.0,0.016765970227066204 -14753.0,0.016760180466012905 -14754.0,0.016754392704326933 -14755.0,0.01674860694131785 -14756.0,0.016742823176295454 -14757.0,0.016737041408569804 -14758.0,0.01673126163745114 -14759.0,0.016725483862249996 -14760.0,0.01671970808227713 -14761.0,0.016713934296843525 -14762.0,0.016708162505260415 -14763.0,0.01670239270683927 -14764.0,0.016696624900891792 -14765.0,0.01669085908672992 -14766.0,0.016685095263665857 -14767.0,0.016679333431011988 -14768.0,0.01667357358808098 -14769.0,0.016667815734185732 -14770.0,0.01666205986863937 -14771.0,0.01665630599075526 -14772.0,0.016650554099847007 -14773.0,0.016644804195228454 -14774.0,0.016639056276213697 -14775.0,0.016633310342117014 -14776.0,0.01662756639225298 -14777.0,0.016621824425936377 -14778.0,0.01661608444248223 -14779.0,0.01661034644120581 -14780.0,0.016604610421422604 -14781.0,0.016598876382448353 -14782.0,0.016593144323599027 -14783.0,0.01658741424419085 -14784.0,0.01658168614354023 -14785.0,0.016575960020963863 -14786.0,0.016570235875778667 -14787.0,0.016564513707301793 -14788.0,0.01655879351485063 -14789.0,0.016553075297742793 -14790.0,0.016547359055296147 -14791.0,0.016541644786828798 -14792.0,0.016535932491659047 -14793.0,0.016530222169105473 -14794.0,0.016524513818486877 -14795.0,0.016518807439122294 -14796.0,0.016513103030330996 -14797.0,0.016507400591432485 -14798.0,0.016501700121746503 -14799.0,0.016496001620593028 -14800.0,0.01649030508729228 -14801.0,0.01648461052116468 -14802.0,0.016478917921530924 -14803.0,0.01647322728771192 -14804.0,0.016467538619028818 -14805.0,0.016461851914803007 -14806.0,0.016456167174356096 -14807.0,0.016450484397009944 -14808.0,0.01644480358208665 -14809.0,0.016439124728908502 -14810.0,0.016433447836798072 -14811.0,0.016427772905078148 -14812.0,0.016422099933071754 -14813.0,0.016416428920102137 -14814.0,0.016410759865492796 -14815.0,0.016405092768567452 -14816.0,0.01639942762865006 -14817.0,0.016393764445064823 -14818.0,0.016388103217136137 -14819.0,0.016382443944188675 -14820.0,0.016376786625547327 -14821.0,0.016371131260537214 -14822.0,0.016365477848483693 -14823.0,0.01635982638871235 -14824.0,0.016354176880549017 -14825.0,0.016348529323319753 -14826.0,0.016342883716350818 -14827.0,0.016337240058968753 -14828.0,0.016331598350500305 -14829.0,0.01632595859027246 -14830.0,0.01632032077761244 -14831.0,0.01631468491184769 -14832.0,0.016309050992305896 -14833.0,0.016303419018314984 -14834.0,0.016297788989203074 -14835.0,0.016292160904298556 -14836.0,0.016286534762930044 -14837.0,0.016280910564426376 -14838.0,0.016275288308116632 -14839.0,0.01626966799333011 -14840.0,0.016264049619396356 -14841.0,0.016258433185645134 -14842.0,0.016252818691406462 -14843.0,0.016247206136010536 -14844.0,0.016241595518787844 -14845.0,0.016235986839069072 -14846.0,0.016230380096185146 -14847.0,0.01622477528946723 -14848.0,0.016219172418246698 -14849.0,0.016213571481855184 -14850.0,0.01620797247962454 -14851.0,0.01620237541088682 -14852.0,0.01619678027497435 -14853.0,0.016191187071219672 -14854.0,0.016185595798955555 -14855.0,0.016180006457515002 -14856.0,0.016174419046231247 -14857.0,0.01616883356443775 -14858.0,0.016163250011468205 -14859.0,0.01615766838665655 -14860.0,0.01615208868933691 -14861.0,0.016146510918843678 -14862.0,0.016140935074511472 -14863.0,0.016135361155675126 -14864.0,0.01612978916166972 -14865.0,0.016124219091830556 -14866.0,0.01611865094549316 -14867.0,0.016113084721993312 -14868.0,0.01610752042066697 -14869.0,0.01610195804085037 -14870.0,0.01609639758187996 -14871.0,0.016090839043092414 -14872.0,0.016085282423824645 -14873.0,0.016079727723413786 -14874.0,0.0160741749411972 -14875.0,0.016068624076512484 -14876.0,0.016063075128697472 -14877.0,0.016057528097090188 -14878.0,0.016051982981028928 -14879.0,0.016046439779852192 -14880.0,0.016040898492898727 -14881.0,0.01603535911950749 -14882.0,0.016029821659017677 -14883.0,0.01602428611076871 -14884.0,0.01601875247410025 -14885.0,0.01601322074835215 -14886.0,0.016007690932864527 -14887.0,0.016002163026977715 -14888.0,0.015996637030032276 -14889.0,0.015991112941368995 -14890.0,0.015985590760328895 -14891.0,0.015980070486253214 -14892.0,0.015974552118483427 -14893.0,0.015969035656361246 -14894.0,0.015963521099228568 -14895.0,0.015958008446427564 -14896.0,0.015952497697300613 -14897.0,0.015946988851190322 -14898.0,0.015941481907439523 -14899.0,0.015935976865391284 -14900.0,0.01593047372438889 -14901.0,0.015924972483775873 -14902.0,0.01591947314289594 -14903.0,0.015913975701093083 -14904.0,0.015908480157711492 -14905.0,0.01590298651209559 -14906.0,0.015897494763590026 -14907.0,0.01589200491153967 -14908.0,0.01588651695528963 -14909.0,0.01588103089418524 -14910.0,0.01587554672757203 -14911.0,0.01587006445479579 -14912.0,0.015864584075202526 -14913.0,0.015859105588138467 -14914.0,0.01585362899295007 -14915.0,0.01584815428898402 -14916.0,0.015842681475587223 -14917.0,0.015837210552106813 -14918.0,0.015831741517890158 -14919.0,0.01582627437228482 -14920.0,0.01582080911463862 -14921.0,0.01581534574429959 -14922.0,0.015809884260615994 -14923.0,0.015804424662936314 -14924.0,0.015798966950609266 -14925.0,0.015793511122983776 -14926.0,0.01578805717940902 -14927.0,0.015782605119234357 -14928.0,0.01577715494180941 -14929.0,0.01577170664648401 -14930.0,0.015766260232608215 -14931.0,0.01576081569953231 -14932.0,0.0157553730466068 -14933.0,0.01574993227318242 -14934.0,0.015744493378610117 -14935.0,0.015739056362241093 -14936.0,0.01573362122342672 -14937.0,0.01572818796151864 -14938.0,0.015722756575868704 -14939.0,0.015717327065828988 -14940.0,0.01571189943075179 -14941.0,0.015706473669989635 -14942.0,0.015701049782895268 -14943.0,0.01569562776882167 -14944.0,0.01569020762712201 -14945.0,0.01568478935714972 -14946.0,0.015679372958258435 -14947.0,0.015673958429802022 -14948.0,0.01566854577113456 -14949.0,0.01566313498161037 -14950.0,0.01565772606058398 -14951.0,0.01565231900741014 -14952.0,0.015646913821443842 -14953.0,0.015641510502040268 -14954.0,0.015636109048554846 -14955.0,0.015630709460343225 -14956.0,0.015625311736761276 -14957.0,0.01561991587716509 -14958.0,0.015614521880910975 -14959.0,0.01560912974735547 -14960.0,0.015603739475855348 -14961.0,0.015598351065767558 -14962.0,0.015592964516449318 -14963.0,0.015587579827258053 -14964.0,0.015582196997551404 -14965.0,0.015576816026687245 -14966.0,0.01557143691402366 -14967.0,0.015566059658918963 -14968.0,0.015560684260731686 -14969.0,0.015555310718820598 -14970.0,0.015549939032544645 -14971.0,0.015544569201263039 -14972.0,0.015539201224335199 -14973.0,0.015533835101120762 -14974.0,0.015528470830979592 -14975.0,0.015523108413271768 -14976.0,0.015517747847357594 -14977.0,0.015512389132597606 -14978.0,0.015507032268352523 -14979.0,0.015501677253983322 -14980.0,0.01549632408885119 -14981.0,0.015490972772317533 -14982.0,0.015485623303743978 -14983.0,0.015480275682492372 -14984.0,0.015474929907924784 -14985.0,0.015469585979403514 -14986.0,0.015464243896291044 -14987.0,0.015458903657950118 -14988.0,0.015453565263743679 -14989.0,0.015448228713034902 -14990.0,0.01544289400518717 -14991.0,0.015437561139564094 -14992.0,0.015432230115529503 -14993.0,0.015426900932447443 -14994.0,0.015421573589682195 -14995.0,0.015416248086598217 -14996.0,0.015410924422560233 -14997.0,0.015405602596933165 -14998.0,0.015400282609082161 -14999.0,0.015394964458372584 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516205500_theo_VPR_VPR.png b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516205500_theo_VPR_VPR.png deleted file mode 100644 index 1ca513c..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516205500_theo_VPR_VPR.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516210000_theo_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516210000_theo_VPR_VPR.csv deleted file mode 100644 index ba25497..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516210000_theo_VPR_VPR.csv +++ /dev/null @@ -1,15008 +0,0 @@ -# Height Profile -# ============== -# -# Datatype (Unit) : normalized reflectivity (-) -# Fill value : -9999.0 -# Time : 2020-05-16 21:00:00 -# Sector specification: None -Altitude [m MSL],Znorm -0.0,1.0 -1.0,1.0 -2.0,1.0 -3.0,1.0 -4.0,1.0 -5.0,1.0 -6.0,1.0 -7.0,1.0 -8.0,1.0 -9.0,1.0 -10.0,1.0 -11.0,1.0 -12.0,1.0 -13.0,1.0 -14.0,1.0 -15.0,1.0 -16.0,1.0 -17.0,1.0 -18.0,1.0 -19.0,1.0 -20.0,1.0 -21.0,1.0 -22.0,1.0 -23.0,1.0 -24.0,1.0 -25.0,1.0 -26.0,1.0 -27.0,1.0 -28.0,1.0 -29.0,1.0 -30.0,1.0 -31.0,1.0 -32.0,1.0 -33.0,1.0 -34.0,1.0 -35.0,1.0 -36.0,1.0 -37.0,1.0 -38.0,1.0 -39.0,1.0 -40.0,1.0 -41.0,1.0 -42.0,1.0 -43.0,1.0 -44.0,1.0 -45.0,1.0 -46.0,1.0 -47.0,1.0 -48.0,1.0 -49.0,1.0 -50.0,1.0 -51.0,1.0 -52.0,1.0 -53.0,1.0 -54.0,1.0 -55.0,1.0 -56.0,1.0 -57.0,1.0 -58.0,1.0 -59.0,1.0 -60.0,1.0 -61.0,1.0 -62.0,1.0 -63.0,1.0 -64.0,1.0 -65.0,1.0 -66.0,1.0 -67.0,1.0 -68.0,1.0 -69.0,1.0 -70.0,1.0 -71.0,1.0 -72.0,1.0 -73.0,1.0 -74.0,1.0 -75.0,1.0 -76.0,1.0 -77.0,1.0 -78.0,1.0 -79.0,1.0 -80.0,1.0 -81.0,1.0 -82.0,1.0 -83.0,1.0 -84.0,1.0 -85.0,1.0 -86.0,1.0 -87.0,1.0 -88.0,1.0 -89.0,1.0 -90.0,1.0 -91.0,1.0 -92.0,1.0 -93.0,1.0 -94.0,1.0 -95.0,1.0 -96.0,1.0 -97.0,1.0 -98.0,1.0 -99.0,1.0 -100.0,1.0 -101.0,1.0 -102.0,1.0 -103.0,1.0 -104.0,1.0 -105.0,1.0 -106.0,1.0 -107.0,1.0 -108.0,1.0 -109.0,1.0 -110.0,1.0 -111.0,1.0 -112.0,1.0 -113.0,1.0 -114.0,1.0 -115.0,1.0 -116.0,1.0 -117.0,1.0 -118.0,1.0 -119.0,1.0 -120.0,1.0 -121.0,1.0 -122.0,1.0 -123.0,1.0 -124.0,1.0 -125.0,1.0 -126.0,1.0 -127.0,1.0 -128.0,1.0 -129.0,1.0 -130.0,1.0 -131.0,1.0 -132.0,1.0 -133.0,1.0 -134.0,1.0 -135.0,1.0 -136.0,1.0 -137.0,1.0 -138.0,1.0 -139.0,1.0 -140.0,1.0 -141.0,1.0 -142.0,1.0 -143.0,1.0 -144.0,1.0 -145.0,1.0 -146.0,1.0 -147.0,1.0 -148.0,1.0 -149.0,1.0 -150.0,1.0 -151.0,1.0 -152.0,1.0 -153.0,1.0 -154.0,1.0 -155.0,1.0 -156.0,1.0 -157.0,1.0 -158.0,1.0 -159.0,1.0 -160.0,1.0 -161.0,1.0 -162.0,1.0 -163.0,1.0 -164.0,1.0 -165.0,1.0 -166.0,1.0 -167.0,1.0 -168.0,1.0 -169.0,1.0 -170.0,1.0 -171.0,1.0 -172.0,1.0 -173.0,1.0 -174.0,1.0 -175.0,1.0 -176.0,1.0 -177.0,1.0 -178.0,1.0 -179.0,1.0 -180.0,1.0 -181.0,1.0 -182.0,1.0 -183.0,1.0 -184.0,1.0 -185.0,1.0 -186.0,1.0 -187.0,1.0 -188.0,1.0 -189.0,1.0 -190.0,1.0 -191.0,1.0 -192.0,1.0 -193.0,1.0 -194.0,1.0 -195.0,1.0 -196.0,1.0 -197.0,1.0 -198.0,1.0 -199.0,1.0 -200.0,1.0 -201.0,1.0 -202.0,1.0 -203.0,1.0 -204.0,1.0 -205.0,1.0 -206.0,1.0 -207.0,1.0 -208.0,1.0 -209.0,1.0 -210.0,1.0 -211.0,1.0 -212.0,1.0 -213.0,1.0 -214.0,1.0 -215.0,1.0 -216.0,1.0 -217.0,1.0 -218.0,1.0 -219.0,1.0 -220.0,1.0 -221.0,1.0 -222.0,1.0 -223.0,1.0 -224.0,1.0 -225.0,1.0 -226.0,1.0 -227.0,1.0 -228.0,1.0 -229.0,1.0 -230.0,1.0 -231.0,1.0 -232.0,1.0 -233.0,1.0 -234.0,1.0 -235.0,1.0 -236.0,1.0 -237.0,1.0 -238.0,1.0 -239.0,1.0 -240.0,1.0 -241.0,1.0 -242.0,1.0 -243.0,1.0 -244.0,1.0 -245.0,1.0 -246.0,1.0 -247.0,1.0 -248.0,1.0 -249.0,1.0 -250.0,1.0 -251.0,1.0 -252.0,1.0 -253.0,1.0 -254.0,1.0 -255.0,1.0 -256.0,1.0 -257.0,1.0 -258.0,1.0 -259.0,1.0 -260.0,1.0 -261.0,1.0 -262.0,1.0 -263.0,1.0 -264.0,1.0 -265.0,1.0 -266.0,1.0 -267.0,1.0 -268.0,1.0 -269.0,1.0 -270.0,1.0 -271.0,1.0 -272.0,1.0 -273.0,1.0 -274.0,1.0 -275.0,1.0 -276.0,1.0 -277.0,1.0 -278.0,1.0 -279.0,1.0 -280.0,1.0 -281.0,1.0 -282.0,1.0 -283.0,1.0 -284.0,1.0 -285.0,1.0 -286.0,1.0 -287.0,1.0 -288.0,1.0 -289.0,1.0 -290.0,1.0 -291.0,1.0 -292.0,1.0 -293.0,1.0 -294.0,1.0 -295.0,1.0 -296.0,1.0 -297.0,1.0 -298.0,1.0 -299.0,1.0 -300.0,1.0 -301.0,1.0 -302.0,1.0 -303.0,1.0 -304.0,1.0 -305.0,1.0 -306.0,1.0 -307.0,1.0 -308.0,1.0 -309.0,1.0 -310.0,1.0 -311.0,1.0 -312.0,1.0 -313.0,1.0 -314.0,1.0 -315.0,1.0 -316.0,1.0 -317.0,1.0 -318.0,1.0 -319.0,1.0 -320.0,1.0 -321.0,1.0 -322.0,1.0 -323.0,1.0 -324.0,1.0 -325.0,1.0 -326.0,1.0 -327.0,1.0 -328.0,1.0 -329.0,1.0 -330.0,1.0 -331.0,1.0 -332.0,1.0 -333.0,1.0 -334.0,1.0 -335.0,1.0 -336.0,1.0 -337.0,1.0 -338.0,1.0 -339.0,1.0 -340.0,1.0 -341.0,1.0 -342.0,1.0 -343.0,1.0 -344.0,1.0 -345.0,1.0 -346.0,1.0 -347.0,1.0 -348.0,1.0 -349.0,1.0 -350.0,1.0 -351.0,1.0 -352.0,1.0 -353.0,1.0 -354.0,1.0 -355.0,1.0 -356.0,1.0 -357.0,1.0 -358.0,1.0 -359.0,1.0 -360.0,1.0 -361.0,1.0 -362.0,1.0 -363.0,1.0 -364.0,1.0 -365.0,1.0 -366.0,1.0 -367.0,1.0 -368.0,1.0 -369.0,1.0 -370.0,1.0 -371.0,1.0 -372.0,1.0 -373.0,1.0 -374.0,1.0 -375.0,1.0 -376.0,1.0 -377.0,1.0 -378.0,1.0 -379.0,1.0 -380.0,1.0 -381.0,1.0 -382.0,1.0 -383.0,1.0 -384.0,1.0 -385.0,1.0 -386.0,1.0 -387.0,1.0 -388.0,1.0 -389.0,1.0 -390.0,1.0 -391.0,1.0 -392.0,1.0 -393.0,1.0 -394.0,1.0 -395.0,1.0 -396.0,1.0 -397.0,1.0 -398.0,1.0 -399.0,1.0 -400.0,1.0 -401.0,1.0 -402.0,1.0 -403.0,1.0 -404.0,1.0 -405.0,1.0 -406.0,1.0 -407.0,1.0 -408.0,1.0 -409.0,1.0 -410.0,1.0 -411.0,1.0 -412.0,1.0 -413.0,1.0 -414.0,1.0 -415.0,1.0 -416.0,1.0 -417.0,1.0 -418.0,1.0 -419.0,1.0 -420.0,1.0 -421.0,1.0 -422.0,1.0 -423.0,1.0 -424.0,1.0 -425.0,1.0 -426.0,1.0 -427.0,1.0 -428.0,1.0 -429.0,1.0 -430.0,1.0 -431.0,1.0 -432.0,1.0 -433.0,1.0 -434.0,1.0 -435.0,1.0 -436.0,1.0 -437.0,1.0 -438.0,1.0 -439.0,1.0 -440.0,1.0 -441.0,1.0 -442.0,1.0 -443.0,1.0 -444.0,1.0 -445.0,1.0 -446.0,1.0 -447.0,1.0 -448.0,1.0 -449.0,1.0 -450.0,1.0 -451.0,1.0 -452.0,1.0 -453.0,1.0 -454.0,1.0 -455.0,1.0 -456.0,1.0 -457.0,1.0 -458.0,1.0 -459.0,1.0 -460.0,1.0 -461.0,1.0 -462.0,1.0 -463.0,1.0 -464.0,1.0 -465.0,1.0 -466.0,1.0 -467.0,1.0 -468.0,1.0 -469.0,1.0 -470.0,1.0 -471.0,1.0 -472.0,1.0 -473.0,1.0 -474.0,1.0 -475.0,1.0 -476.0,1.0 -477.0,1.0 -478.0,1.0 -479.0,1.0 -480.0,1.0 -481.0,1.0 -482.0,1.0 -483.0,1.0 -484.0,1.0 -485.0,1.0 -486.0,1.0 -487.0,1.0 -488.0,1.0 -489.0,1.0 -490.0,1.0 -491.0,1.0 -492.0,1.0 -493.0,1.0 -494.0,1.0 -495.0,1.0 -496.0,1.0 -497.0,1.0 -498.0,1.0 -499.0,1.0 -500.0,1.0 -501.0,1.0 -502.0,1.0 -503.0,1.0 -504.0,1.0 -505.0,1.0 -506.0,1.0 -507.0,1.0 -508.0,1.0 -509.0,1.0 -510.0,1.0 -511.0,1.0 -512.0,1.0 -513.0,1.0 -514.0,1.0 -515.0,1.0 -516.0,1.0 -517.0,1.0 -518.0,1.0 -519.0,1.0 -520.0,1.0 -521.0,1.0 -522.0,1.0 -523.0,1.0 -524.0,1.0 -525.0,1.0 -526.0,1.0 -527.0,1.0 -528.0,1.0 -529.0,1.0 -530.0,1.0 -531.0,1.0 -532.0,1.0 -533.0,1.0 -534.0,1.0 -535.0,1.0 -536.0,1.0 -537.0,1.0 -538.0,1.0 -539.0,1.0 -540.0,1.0 -541.0,1.0 -542.0,1.0 -543.0,1.0 -544.0,1.0 -545.0,1.0 -546.0,1.0 -547.0,1.0 -548.0,1.0 -549.0,1.0 -550.0,1.0 -551.0,1.0 -552.0,1.0 -553.0,1.0 -554.0,1.0 -555.0,1.0 -556.0,1.0 -557.0,1.0 -558.0,1.0 -559.0,1.0 -560.0,1.0 -561.0,1.0 -562.0,1.0 -563.0,1.0 -564.0,1.0 -565.0,1.0 -566.0,1.0 -567.0,1.0 -568.0,1.0 -569.0,1.0 -570.0,1.0 -571.0,1.0 -572.0,1.0 -573.0,1.0 -574.0,1.0 -575.0,1.0 -576.0,1.0 -577.0,1.0 -578.0,1.0 -579.0,1.0 -580.0,1.0 -581.0,1.0 -582.0,1.0 -583.0,1.0 -584.0,1.0 -585.0,1.0 -586.0,1.0 -587.0,1.0 -588.0,1.0 -589.0,1.0 -590.0,1.0 -591.0,1.0 -592.0,1.0 -593.0,1.0 -594.0,1.0 -595.0,1.0 -596.0,1.0 -597.0,1.0 -598.0,1.0 -599.0,1.0 -600.0,1.0 -601.0,1.0 -602.0,1.0 -603.0,1.0 -604.0,1.0 -605.0,1.0 -606.0,1.0 -607.0,1.0 -608.0,1.0 -609.0,1.0 -610.0,1.0 -611.0,1.0 -612.0,1.0 -613.0,1.0 -614.0,1.0 -615.0,1.0 -616.0,1.0 -617.0,1.0 -618.0,1.0 -619.0,1.0 -620.0,1.0 -621.0,1.0 -622.0,1.0 -623.0,1.0 -624.0,1.0 -625.0,1.0 -626.0,1.0 -627.0,1.0 -628.0,1.0 -629.0,1.0 -630.0,1.0 -631.0,1.0 -632.0,1.0 -633.0,1.0 -634.0,1.0 -635.0,1.0 -636.0,1.0 -637.0,1.0 -638.0,1.0 -639.0,1.0 -640.0,1.0 -641.0,1.0 -642.0,1.0 -643.0,1.0 -644.0,1.0 -645.0,1.0 -646.0,1.0 -647.0,1.0 -648.0,1.0 -649.0,1.0 -650.0,1.0 -651.0,1.0 -652.0,1.0 -653.0,1.0 -654.0,1.0 -655.0,1.0 -656.0,1.0 -657.0,1.0 -658.0,1.0 -659.0,1.0 -660.0,1.0 -661.0,1.0 -662.0,1.0 -663.0,1.0 -664.0,1.0 -665.0,1.0 -666.0,1.0 -667.0,1.0 -668.0,1.0 -669.0,1.0 -670.0,1.0 -671.0,1.0 -672.0,1.0 -673.0,1.0 -674.0,1.0 -675.0,1.0 -676.0,1.0 -677.0,1.0 -678.0,1.0 -679.0,1.0 -680.0,1.0 -681.0,1.0 -682.0,1.0 -683.0,1.0 -684.0,1.0 -685.0,1.0 -686.0,1.0 -687.0,1.0 -688.0,1.0 -689.0,1.0 -690.0,1.0 -691.0,1.0 -692.0,1.0 -693.0,1.0 -694.0,1.0 -695.0,1.0 -696.0,1.0 -697.0,1.0 -698.0,1.0 -699.0,1.0 -700.0,1.0 -701.0,1.0 -702.0,1.0 -703.0,1.0 -704.0,1.0 -705.0,1.0 -706.0,1.0 -707.0,1.0 -708.0,1.0 -709.0,1.0 -710.0,1.0 -711.0,1.0 -712.0,1.0 -713.0,1.0 -714.0,1.0 -715.0,1.0 -716.0,1.0 -717.0,1.0 -718.0,1.0 -719.0,1.0 -720.0,1.0 -721.0,1.0 -722.0,1.0 -723.0,1.0 -724.0,1.0 -725.0,1.0 -726.0,1.0 -727.0,1.0 -728.0,1.0 -729.0,1.0 -730.0,1.0 -731.0,1.0 -732.0,1.0 -733.0,1.0 -734.0,1.0 -735.0,1.0 -736.0,1.0 -737.0,1.0 -738.0,1.0 -739.0,1.0 -740.0,1.0 -741.0,1.0 -742.0,1.0 -743.0,1.0 -744.0,1.0 -745.0,1.0 -746.0,1.0 -747.0,1.0 -748.0,1.0 -749.0,1.0 -750.0,1.0 -751.0,1.0 -752.0,1.0 -753.0,1.0 -754.0,1.0 -755.0,1.0 -756.0,1.0 -757.0,1.0 -758.0,1.0 -759.0,1.0 -760.0,1.0 -761.0,1.0 -762.0,1.0 -763.0,1.0 -764.0,1.0 -765.0,1.0 -766.0,1.0 -767.0,1.0 -768.0,1.0 -769.0,1.0 -770.0,1.0 -771.0,1.0 -772.0,1.0 -773.0,1.0 -774.0,1.0 -775.0,1.0 -776.0,1.0 -777.0,1.0 -778.0,1.0 -779.0,1.0 -780.0,1.0 -781.0,1.0 -782.0,1.0 -783.0,1.0 -784.0,1.0 -785.0,1.0 -786.0,1.0 -787.0,1.0 -788.0,1.0 -789.0,1.0 -790.0,1.0 -791.0,1.0 -792.0,1.0 -793.0,1.0 -794.0,1.0 -795.0,1.0 -796.0,1.0 -797.0,1.0 -798.0,1.0 -799.0,1.0 -800.0,1.0 -801.0,1.0 -802.0,1.0 -803.0,1.0 -804.0,1.0 -805.0,1.0 -806.0,1.0 -807.0,1.0 -808.0,1.0 -809.0,1.0 -810.0,1.0 -811.0,1.0 -812.0,1.0 -813.0,1.0 -814.0,1.0 -815.0,1.0 -816.0,1.0 -817.0,1.0 -818.0,1.0 -819.0,1.0 -820.0,1.0 -821.0,1.0 -822.0,1.0 -823.0,1.0 -824.0,1.0 -825.0,1.0 -826.0,1.0 -827.0,1.0 -828.0,1.0 -829.0,1.0 -830.0,1.0 -831.0,1.0 -832.0,1.0 -833.0,1.0 -834.0,1.0 -835.0,1.0 -836.0,1.0 -837.0,1.0 -838.0,1.0 -839.0,1.0 -840.0,1.0 -841.0,1.0 -842.0,1.0 -843.0,1.0 -844.0,1.0 -845.0,1.0 -846.0,1.0 -847.0,1.0 -848.0,1.0 -849.0,1.0 -850.0,1.0 -851.0,1.0 -852.0,1.0 -853.0,1.0 -854.0,1.0 -855.0,1.0 -856.0,1.0 -857.0,1.0 -858.0,1.0 -859.0,1.0 -860.0,1.0 -861.0,1.0 -862.0,1.0 -863.0,1.0 -864.0,1.0 -865.0,1.0 -866.0,1.0 -867.0,1.0 -868.0,1.0 -869.0,1.0 -870.0,1.0 -871.0,1.0 -872.0,1.0 -873.0,1.0 -874.0,1.0 -875.0,1.0 -876.0,1.0 -877.0,1.0 -878.0,1.0 -879.0,1.0 -880.0,1.0 -881.0,1.0 -882.0,1.0 -883.0,1.0 -884.0,1.0 -885.0,1.0 -886.0,1.0 -887.0,1.0 -888.0,1.0 -889.0,1.0 -890.0,1.0 -891.0,1.0 -892.0,1.0 -893.0,1.0 -894.0,1.0 -895.0,1.0 -896.0,1.0 -897.0,1.0 -898.0,1.0 -899.0,1.0 -900.0,1.0 -901.0,1.0 -902.0,1.0 -903.0,1.0 -904.0,1.0 -905.0,1.0 -906.0,1.0 -907.0,1.0 -908.0,1.0 -909.0,1.0 -910.0,1.0 -911.0,1.0 -912.0,1.0 -913.0,1.0 -914.0,1.0 -915.0,1.0 -916.0,1.0 -917.0,1.0 -918.0,1.0 -919.0,1.0 -920.0,1.0 -921.0,1.0 -922.0,1.0 -923.0,1.0 -924.0,1.0 -925.0,1.0 -926.0,1.0 -927.0,1.0 -928.0,1.0 -929.0,1.0 -930.0,1.0 -931.0,1.0 -932.0,1.0 -933.0,1.0 -934.0,1.0 -935.0,1.0 -936.0,1.0 -937.0,1.0 -938.0,1.0 -939.0,1.0 -940.0,1.0 -941.0,1.0 -942.0,1.0 -943.0,1.0 -944.0,1.0 -945.0,1.0 -946.0,1.0 -947.0,1.0 -948.0,1.0 -949.0,1.0 -950.0,1.0 -951.0,1.0 -952.0,1.0 -953.0,1.0 -954.0,1.0 -955.0,1.0 -956.0,1.0 -957.0,1.0 -958.0,1.0 -959.0,1.0 -960.0,1.0 -961.0,1.0 -962.0,1.0 -963.0,1.0 -964.0,1.0 -965.0,1.0 -966.0,1.0 -967.0,1.0 -968.0,1.0 -969.0,1.0 -970.0,1.0 -971.0,1.0 -972.0,1.0 -973.0,1.0 -974.0,1.0 -975.0,1.0 -976.0,1.0 -977.0,1.0 -978.0,1.0 -979.0,1.0 -980.0,1.0 -981.0,1.0 -982.0,1.0 -983.0,1.0 -984.0,1.0 -985.0,1.0 -986.0,1.0 -987.0,1.0 -988.0,1.0 -989.0,1.0 -990.0,1.0 -991.0,1.0 -992.0,1.0 -993.0,1.0 -994.0,1.0 -995.0,1.0 -996.0,1.0 -997.0,1.0 -998.0,1.0 -999.0,1.0 -1000.0,1.0 -1001.0,1.0 -1002.0,1.0 -1003.0,1.0 -1004.0,1.0 -1005.0,1.0 -1006.0,1.0 -1007.0,1.0 -1008.0,1.0 -1009.0,1.0 -1010.0,1.0 -1011.0,1.0 -1012.0,1.0 -1013.0,1.0 -1014.0,1.0 -1015.0,1.0 -1016.0,1.0 -1017.0,1.0 -1018.0,1.0 -1019.0,1.0 -1020.0,1.0 -1021.0,1.0 -1022.0,1.0 -1023.0,1.0 -1024.0,1.0 -1025.0,1.0 -1026.0,1.0 -1027.0,1.0 -1028.0,1.0 -1029.0,1.0 -1030.0,1.0 -1031.0,1.0 -1032.0,1.0 -1033.0,1.0 -1034.0,1.0 -1035.0,1.0 -1036.0,1.0 -1037.0,1.0 -1038.0,1.0 -1039.0,1.0 -1040.0,1.0 -1041.0,1.0 -1042.0,1.0 -1043.0,1.0 -1044.0,1.0 -1045.0,1.0 -1046.0,1.0 -1047.0,1.0 -1048.0,1.0 -1049.0,1.0 -1050.0,1.0 -1051.0,1.0 -1052.0,1.0 -1053.0,1.0 -1054.0,1.0 -1055.0,1.0 -1056.0,1.0 -1057.0,1.0 -1058.0,1.0 -1059.0,1.0 -1060.0,1.0 -1061.0,1.0 -1062.0,1.0 -1063.0,1.0 -1064.0,1.0 -1065.0,1.0 -1066.0,1.0 -1067.0,1.0 -1068.0,1.0 -1069.0,1.0 -1070.0,1.0 -1071.0,1.0 -1072.0,1.0 -1073.0,1.0 -1074.0,1.0 -1075.0,1.0 -1076.0,1.0 -1077.0,1.0 -1078.0,1.0 -1079.0,1.0 -1080.0,1.0 -1081.0,1.0 -1082.0,1.0 -1083.0,1.0 -1084.0,1.0 -1085.0,1.0 -1086.0,1.0 -1087.0,1.0 -1088.0,1.0 -1089.0,1.0 -1090.0,1.0 -1091.0,1.0 -1092.0,1.0 -1093.0,1.0 -1094.0,1.0 -1095.0,1.0 -1096.0,1.0 -1097.0,1.0 -1098.0,1.0 -1099.0,1.0 -1100.0,1.0 -1101.0,1.0 -1102.0,1.0 -1103.0,1.0 -1104.0,1.0 -1105.0,1.0 -1106.0,1.0 -1107.0,1.0 -1108.0,1.0 -1109.0,1.0 -1110.0,1.0 -1111.0,1.0 -1112.0,1.0 -1113.0,1.0 -1114.0,1.0 -1115.0,1.0 -1116.0,1.0 -1117.0,1.0 -1118.0,1.0 -1119.0,1.0 -1120.0,1.0 -1121.0,1.0 -1122.0,1.0 -1123.0,1.0 -1124.0,1.0 -1125.0,1.0 -1126.0,1.0 -1127.0,1.0 -1128.0,1.0 -1129.0,1.0 -1130.0,1.0 -1131.0,1.0 -1132.0,1.0 -1133.0,1.0 -1134.0,1.0 -1135.0,1.0 -1136.0,1.0 -1137.0,1.0 -1138.0,1.0 -1139.0,1.0 -1140.0,1.0 -1141.0,1.0 -1142.0,1.0 -1143.0,1.0 -1144.0,1.0 -1145.0,1.0 -1146.0,1.0 -1147.0,1.0 -1148.0,1.0 -1149.0,1.0 -1150.0,1.0 -1151.0,1.0 -1152.0,1.0 -1153.0,1.0 -1154.0,1.0 -1155.0,1.0 -1156.0,1.0 -1157.0,1.0 -1158.0,1.0 -1159.0,1.0 -1160.0,1.0 -1161.0,1.0 -1162.0,1.0 -1163.0,1.0 -1164.0,1.0 -1165.0,1.0 -1166.0,1.0 -1167.0,1.0 -1168.0,1.0 -1169.0,1.0 -1170.0,1.0 -1171.0,1.0 -1172.0,1.0 -1173.0,1.0 -1174.0,1.0 -1175.0,1.0 -1176.0,1.0 -1177.0,1.0 -1178.0,1.0 -1179.0,1.0 -1180.0,1.0 -1181.0,1.0 -1182.0,1.0 -1183.0,1.0 -1184.0,1.0 -1185.0,1.0 -1186.0,1.0 -1187.0,1.0 -1188.0,1.0 -1189.0,1.0 -1190.0,1.0 -1191.0,1.0 -1192.0,1.0 -1193.0,1.0 -1194.0,1.0 -1195.0,1.0 -1196.0,1.0 -1197.0,1.0 -1198.0,1.0 -1199.0,1.0 -1200.0,1.0 -1201.0,1.0 -1202.0,1.0 -1203.0,1.0 -1204.0,1.0 -1205.0,1.0 -1206.0,1.0 -1207.0,1.0 -1208.0,1.0 -1209.0,1.0 -1210.0,1.0 -1211.0,1.0 -1212.0,1.0 -1213.0,1.0 -1214.0,1.0 -1215.0,1.0 -1216.0,1.0 -1217.0,1.0 -1218.0,1.0 -1219.0,1.0 -1220.0,1.0 -1221.0,1.0 -1222.0,1.0 -1223.0,1.0 -1224.0,1.0 -1225.0,1.0 -1226.0,1.0 -1227.0,1.0 -1228.0,1.0 -1229.0,1.0 -1230.0,1.0 -1231.0,1.0 -1232.0,1.0 -1233.0,1.0 -1234.0,1.0 -1235.0,1.0 -1236.0,1.0 -1237.0,1.0 -1238.0,1.0 -1239.0,1.0 -1240.0,1.0 -1241.0,1.0 -1242.0,1.0 -1243.0,1.0 -1244.0,1.0 -1245.0,1.0 -1246.0,1.0 -1247.0,1.0 -1248.0,1.0 -1249.0,1.0 -1250.0,1.0 -1251.0,1.0 -1252.0,1.0 -1253.0,1.0 -1254.0,1.0 -1255.0,1.0 -1256.0,1.0 -1257.0,1.0 -1258.0,1.0 -1259.0,1.0 -1260.0,1.0 -1261.0,1.0 -1262.0,1.0 -1263.0,1.0 -1264.0,1.0 -1265.0,1.0 -1266.0,1.0 -1267.0,1.0 -1268.0,1.0 -1269.0,1.0 -1270.0,1.0 -1271.0,1.0 -1272.0,1.0 -1273.0,1.0 -1274.0,1.0 -1275.0,1.0 -1276.0,1.0 -1277.0,1.0 -1278.0,1.0 -1279.0,1.0 -1280.0,1.0 -1281.0,1.0 -1282.0,1.0 -1283.0,1.0 -1284.0,1.0 -1285.0,1.0 -1286.0,1.0 -1287.0,1.0 -1288.0,1.0 -1289.0,1.0 -1290.0,1.0 -1291.0,1.0 -1292.0,1.0 -1293.0,1.0 -1294.0,1.0 -1295.0,1.0 -1296.0,1.0 -1297.0,1.0 -1298.0,1.0 -1299.0,1.0 -1300.0,1.0 -1301.0,1.0 -1302.0,1.0 -1303.0,1.0 -1304.0,1.0 -1305.0,1.0 -1306.0,1.0 -1307.0,1.0 -1308.0,1.0 -1309.0,1.0 -1310.0,1.0 -1311.0,1.0 -1312.0,1.0 -1313.0,1.0 -1314.0,1.0 -1315.0,1.0 -1316.0,1.0 -1317.0,1.0 -1318.0,1.0 -1319.0,1.0 -1320.0,1.0 -1321.0,1.0 -1322.0,1.0 -1323.0,1.0 -1324.0,1.0 -1325.0,1.0 -1326.0,1.0 -1327.0,1.0 -1328.0,1.0 -1329.0,1.0 -1330.0,1.0 -1331.0,1.0 -1332.0,1.0 -1333.0,1.0 -1334.0,1.0 -1335.0,1.0 -1336.0,1.0 -1337.0,1.0 -1338.0,1.0 -1339.0,1.0 -1340.0,1.0 -1341.0,1.0 -1342.0,1.0 -1343.0,1.0 -1344.0,1.0 -1345.0,1.0 -1346.0,1.0 -1347.0,1.0 -1348.0,1.0 -1349.0,1.0 -1350.0,1.0 -1351.0,1.0 -1352.0,1.0 -1353.0,1.0 -1354.0,1.0 -1355.0,1.0 -1356.0,1.0 -1357.0,1.0 -1358.0,1.0 -1359.0,1.0 -1360.0,1.0 -1361.0,1.0 -1362.0,1.0 -1363.0,1.0 -1364.0,1.0 -1365.0,1.0 -1366.0,1.0 -1367.0,1.0 -1368.0,1.0 -1369.0,1.0 -1370.0,1.0 -1371.0,1.0 -1372.0,1.0 -1373.0,1.0 -1374.0,1.0 -1375.0,1.0 -1376.0,1.0 -1377.0,1.0 -1378.0,1.0 -1379.0,1.0 -1380.0,1.0 -1381.0,1.0 -1382.0,1.0 -1383.0,1.0 -1384.0,1.0 -1385.0,1.0 -1386.0,1.0 -1387.0,1.0 -1388.0,1.0 -1389.0,1.0 -1390.0,1.0 -1391.0,1.0 -1392.0,1.0 -1393.0,1.0 -1394.0,1.0 -1395.0,1.0 -1396.0,1.0 -1397.0,1.0 -1398.0,1.0 -1399.0,1.0 -1400.0,1.0 -1401.0,1.0 -1402.0,1.0 -1403.0,1.0 -1404.0,1.0 -1405.0,1.0 -1406.0,1.0 -1407.0,1.0 -1408.0,1.0 -1409.0,1.0 -1410.0,1.0 -1411.0,1.0 -1412.0,1.0 -1413.0,1.0 -1414.0,1.0 -1415.0,1.0 -1416.0,1.0 -1417.0,1.0 -1418.0,1.0 -1419.0,1.0 -1420.0,1.0 -1421.0,1.0 -1422.0,1.0 -1423.0,1.0 -1424.0,1.0 -1425.0,1.0 -1426.0,1.0 -1427.0,1.0 -1428.0,1.0 -1429.0,1.0 -1430.0,1.0 -1431.0,1.0 -1432.0,1.0 -1433.0,1.0 -1434.0,1.0 -1435.0,1.0 -1436.0,1.0 -1437.0,1.0 -1438.0,1.0 -1439.0,1.0 -1440.0,1.0 -1441.0,1.0 -1442.0,1.0 -1443.0,1.0 -1444.0,1.0 -1445.0,1.0 -1446.0,1.0 -1447.0,1.0 -1448.0,1.0 -1449.0,1.0 -1450.0,1.0 -1451.0,1.0 -1452.0,1.0 -1453.0,1.0 -1454.0,1.0 -1455.0,1.0 -1456.0,1.0 -1457.0,1.0 -1458.0,1.0 -1459.0,1.0 -1460.0,1.0 -1461.0,1.0 -1462.0,1.0 -1463.0,1.0 -1464.0,1.0 -1465.0,1.0 -1466.0,1.0 -1467.0,1.0 -1468.0,1.0 -1469.0,1.0 -1470.0,1.0 -1471.0,1.0 -1472.0,1.0 -1473.0,1.0 -1474.0,1.0 -1475.0,1.0 -1476.0,1.0 -1477.0,1.0 -1478.0,1.0 -1479.0,1.0 -1480.0,1.0 -1481.0,1.0 -1482.0,1.0 -1483.0,1.0 -1484.0,1.0 -1485.0,1.0 -1486.0,1.0 -1487.0,1.0 -1488.0,1.0 -1489.0,1.0 -1490.0,1.0 -1491.0,1.0 -1492.0,1.0 -1493.0,1.0 -1494.0,1.0 -1495.0,1.0 -1496.0,1.0 -1497.0,1.0 -1498.0,1.0 -1499.0,1.0 -1500.0,1.0 -1501.0,1.0 -1502.0,1.0 -1503.0,1.0 -1504.0,1.0 -1505.0,1.0 -1506.0,1.0 -1507.0,1.0 -1508.0,1.0 -1509.0,1.0 -1510.0,1.0 -1511.0,1.0 -1512.0,1.0 -1513.0,1.0 -1514.0,1.0 -1515.0,1.0 -1516.0,1.0 -1517.0,1.0 -1518.0,1.0 -1519.0,1.0 -1520.0,1.0 -1521.0,1.0 -1522.0,1.0 -1523.0,1.0 -1524.0,1.0 -1525.0,1.0 -1526.0,1.0 -1527.0,1.0 -1528.0,1.0 -1529.0,1.0 -1530.0,1.0 -1531.0,1.0 -1532.0,1.0 -1533.0,1.0 -1534.0,1.0 -1535.0,1.0 -1536.0,1.0 -1537.0,1.0 -1538.0,1.0 -1539.0,1.0 -1540.0,1.0 -1541.0,1.0 -1542.0,1.0 -1543.0,1.0 -1544.0,1.0 -1545.0,1.0 -1546.0,1.0 -1547.0,1.0 -1548.0,1.0 -1549.0,1.0 -1550.0,1.0 -1551.0,1.0 -1552.0,1.0 -1553.0,1.0 -1554.0,1.0 -1555.0,1.0 -1556.0,1.0 -1557.0,1.0 -1558.0,1.0 -1559.0,1.0 -1560.0,1.0 -1561.0,1.0 -1562.0,1.0 -1563.0,1.0 -1564.0,1.0 -1565.0,1.0 -1566.0,1.0 -1567.0,1.0 -1568.0,1.0 -1569.0,1.0 -1570.0,1.0 -1571.0,1.0 -1572.0,1.0 -1573.0,1.0 -1574.0,1.0 -1575.0,1.0 -1576.0,1.0 -1577.0,1.0 -1578.0,1.0 -1579.0,1.0 -1580.0,1.0 -1581.0,1.0 -1582.0,1.0 -1583.0,1.0 -1584.0,1.0 -1585.0,1.0 -1586.0,1.0 -1587.0,1.0 -1588.0,1.0 -1589.0,1.0 -1590.0,1.0 -1591.0,1.0 -1592.0,1.0 -1593.0,1.0 -1594.0,1.0 -1595.0,1.0 -1596.0,1.0 -1597.0,1.0 -1598.0,1.0 -1599.0,1.0 -1600.0,1.0 -1601.0,1.0 -1602.0,1.0 -1603.0,1.0 -1604.0,1.0 -1605.0,1.0 -1606.0,1.0 -1607.0,1.0 -1608.0,1.0 -1609.0,1.0 -1610.0,1.0 -1611.0,1.0 -1612.0,1.0 -1613.0,1.0 -1614.0,1.0 -1615.0,1.0 -1616.0,1.0 -1617.0,1.0 -1618.0,1.0 -1619.0,1.0 -1620.0,1.0 -1621.0,1.0 -1622.0,1.0 -1623.0,1.0 -1624.0,1.0 -1625.0,1.0 -1626.0,1.0 -1627.0,1.0 -1628.0,1.0 -1629.0,1.0 -1630.0,1.0 -1631.0,1.0 -1632.0,1.0 -1633.0,1.0 -1634.0,1.0 -1635.0,1.0 -1636.0,1.0 -1637.0,1.0 -1638.0,1.0 -1639.0,1.0 -1640.0,1.0 -1641.0,1.0 -1642.0,1.0 -1643.0,1.0 -1644.0,1.0 -1645.0,1.0 -1646.0,1.0 -1647.0,1.0 -1648.0,1.0 -1649.0,1.0 -1650.0,1.0 -1651.0,1.0 -1652.0,1.0 -1653.0,1.0 -1654.0,1.0 -1655.0,1.0 -1656.0,1.0 -1657.0,1.0 -1658.0,1.0 -1659.0,1.0 -1660.0,1.0 -1661.0,1.0 -1662.0,1.0 -1663.0,1.0 -1664.0,1.0 -1665.0,1.0 -1666.0,1.0 -1667.0,1.0 -1668.0,1.0 -1669.0,1.0 -1670.0,1.0 -1671.0,1.0 -1672.0,1.0 -1673.0,1.0 -1674.0,1.0 -1675.0,1.0 -1676.0,1.0 -1677.0,1.0 -1678.0,1.0 -1679.0,1.0 -1680.0,1.0 -1681.0,1.0 -1682.0,1.0 -1683.0,1.0 -1684.0,1.0 -1685.0,1.0 -1686.0,1.0 -1687.0,1.0 -1688.0,1.0 -1689.0,1.0 -1690.0,1.0 -1691.0,1.0 -1692.0,1.0 -1693.0,1.0 -1694.0,1.0 -1695.0,1.0 -1696.0,1.0 -1697.0,1.0 -1698.0,1.0 -1699.0,1.0 -1700.0,1.0 -1701.0,1.0 -1702.0,1.0 -1703.0,1.0 -1704.0,1.0 -1705.0,1.0 -1706.0,1.0 -1707.0,1.0 -1708.0,1.0 -1709.0,1.0 -1710.0,1.0 -1711.0,1.0 -1712.0,1.0 -1713.0,1.0 -1714.0,1.0 -1715.0,1.0 -1716.0,1.0 -1717.0,1.0 -1718.0,1.0 -1719.0,1.0 -1720.0,1.0 -1721.0,1.0 -1722.0,1.0 -1723.0,1.0 -1724.0,1.0 -1725.0,1.0 -1726.0,1.0 -1727.0,1.0 -1728.0,1.0 -1729.0,1.0 -1730.0,1.0 -1731.0,1.0 -1732.0,1.0 -1733.0,1.0 -1734.0,1.0 -1735.0,1.0 -1736.0,1.0 -1737.0,1.0 -1738.0,1.0 -1739.0,1.0 -1740.0,1.0 -1741.0,1.0 -1742.0,1.0 -1743.0,1.0 -1744.0,1.0 -1745.0,1.0 -1746.0,1.0 -1747.0,1.0 -1748.0,1.0 -1749.0,1.0 -1750.0,1.0 -1751.0,1.0 -1752.0,1.0 -1753.0,1.0 -1754.0,1.0 -1755.0,1.0 -1756.0,1.0 -1757.0,1.0 -1758.0,1.0 -1759.0,1.0 -1760.0,1.0 -1761.0,1.0 -1762.0,1.0 -1763.0,1.0 -1764.0,1.0 -1765.0,1.0 -1766.0,1.0 -1767.0,1.0 -1768.0,1.0 -1769.0,1.0 -1770.0,1.0 -1771.0,1.0 -1772.0,1.0 -1773.0,1.0 -1774.0,1.0 -1775.0,1.0 -1776.0,1.0 -1777.0,1.0 -1778.0,1.0 -1779.0,1.0 -1780.0,1.0 -1781.0,1.0 -1782.0,1.0 -1783.0,1.0 -1784.0,1.0 -1785.0,1.0 -1786.0,1.0 -1787.0,1.0 -1788.0,1.0 -1789.0,1.0 -1790.0,1.0 -1791.0,1.0 -1792.0,1.0 -1793.0,1.0 -1794.0,1.0 -1795.0,1.0 -1796.0,1.0 -1797.0,1.0 -1798.0,1.0 -1799.0,1.0 -1800.0,1.0 -1801.0,1.0 -1802.0,1.0 -1803.0,1.0 -1804.0,1.0 -1805.0,1.0 -1806.0,1.0 -1807.0,1.0 -1808.0,1.0 -1809.0,1.0 -1810.0,1.0 -1811.0,1.0 -1812.0,1.0 -1813.0,1.0 -1814.0,1.0 -1815.0,1.0 -1816.0,1.0 -1817.0,1.0 -1818.0,1.0 -1819.0,1.0 -1820.0,1.0 -1821.0,1.0 -1822.0,1.0 -1823.0,1.0 -1824.0,1.0 -1825.0,1.0 -1826.0,1.0 -1827.0,1.0 -1828.0,1.0 -1829.0,1.0 -1830.0,1.0 -1831.0,1.0 -1832.0,1.0 -1833.0,1.0 -1834.0,1.0 -1835.0,1.0 -1836.0,1.0 -1837.0,1.0 -1838.0,1.0 -1839.0,1.0 -1840.0,1.0 -1841.0,1.0 -1842.0,1.0 -1843.0,1.0 -1844.0,1.0 -1845.0,1.0 -1846.0,1.0 -1847.0,1.0 -1848.0,1.0 -1849.0,1.0 -1850.0,1.0 -1851.0,1.0 -1852.0,1.0 -1853.0,1.0 -1854.0,1.0 -1855.0,1.0 -1856.0,1.0 -1857.0,1.0 -1858.0,1.0 -1859.0,1.0 -1860.0,1.0 -1861.0,1.0 -1862.0,1.0 -1863.0,1.0 -1864.0,1.0 -1865.0,1.0 -1866.0,1.0 -1867.0,1.0 -1868.0,1.0 -1869.0,1.0 -1870.0,1.0 -1871.0,1.0 -1872.0,1.0 -1873.0,1.0 -1874.0,1.0 -1875.0,1.0 -1876.0,1.0 -1877.0,1.0 -1878.0,1.0 -1879.0,1.0 -1880.0,1.0 -1881.0,1.0 -1882.0,1.0 -1883.0,1.0 -1884.0,1.0 -1885.0,1.0 -1886.0,1.0 -1887.0,1.0 -1888.0,1.0 -1889.0,1.0 -1890.0,1.0 -1891.0,1.0 -1892.0,1.0 -1893.0,1.0 -1894.0,1.0 -1895.0,1.0 -1896.0,1.0 -1897.0,1.0 -1898.0,1.0 -1899.0,1.0 -1900.0,1.0 -1901.0,1.0 -1902.0,1.0 -1903.0,1.0 -1904.0,1.0 -1905.0,1.0 -1906.0,1.0 -1907.0,1.0 -1908.0,1.0 -1909.0,1.0 -1910.0,1.0 -1911.0,1.0 -1912.0,1.0 -1913.0,1.0 -1914.0,1.0 -1915.0,1.0 -1916.0,1.0 -1917.0,1.0 -1918.0,1.0 -1919.0,1.0 -1920.0,1.0 -1921.0,1.0 -1922.0,1.0 -1923.0,1.0 -1924.0,1.0 -1925.0,1.0 -1926.0,1.0 -1927.0,1.0 -1928.0,1.0 -1929.0,1.0 -1930.0,1.0 -1931.0,1.0 -1932.0,1.0 -1933.0,1.0 -1934.0,1.0 -1935.0,1.0 -1936.0,1.0 -1937.0,1.0 -1938.0,1.0 -1939.0,1.0 -1940.0,1.0 -1941.0,1.0 -1942.0,1.0 -1943.0,1.0 -1944.0,1.0 -1945.0,1.0 -1946.0,1.0 -1947.0,1.0 -1948.0,1.0 -1949.0,1.0 -1950.0,1.0 -1951.0,1.0 -1952.0,1.0 -1953.0,1.0 -1954.0,1.0 -1955.0,1.0 -1956.0,1.0 -1957.0,1.0 -1958.0,1.0 -1959.0,1.0 -1960.0,1.0 -1961.0,1.0 -1962.0,1.0 -1963.0,1.0 -1964.0,1.0 -1965.0,1.0 -1966.0,1.0 -1967.0,1.0 -1968.0,1.0 -1969.0,1.0 -1970.0,1.0 -1971.0,1.0 -1972.0,1.0 -1973.0,1.0 -1974.0,1.0 -1975.0,1.0 -1976.0,1.0 -1977.0,1.0 -1978.0,1.0 -1979.0,1.0 -1980.0,1.0 -1981.0,1.0 -1982.0,1.0 -1983.0,1.0 -1984.0,1.0 -1985.0,1.0 -1986.0,1.0 -1987.0,1.0 -1988.0,1.0 -1989.0,1.0 -1990.0,1.0 -1991.0,1.0 -1992.0,1.0 -1993.0,1.0 -1994.0,1.0 -1995.0,1.0 -1996.0,1.0 -1997.0,1.0 -1998.0,1.0 -1999.0,1.0 -2000.0,1.0 -2001.0,1.0 -2002.0,1.0 -2003.0,1.0 -2004.0,1.0 -2005.0,1.0 -2006.0,1.0 -2007.0,1.0 -2008.0,1.0 -2009.0,1.0 -2010.0,1.0 -2011.0,1.0 -2012.0,1.0 -2013.0,1.0 -2014.0,1.0 -2015.0,1.0 -2016.0,1.0 -2017.0,1.0 -2018.0,1.0 -2019.0,1.0 -2020.0,1.0 -2021.0,1.0 -2022.0,1.0 -2023.0,1.0 -2024.0,1.0 -2025.0,1.0 -2026.0,1.0 -2027.0,1.0 -2028.0,1.0 -2029.0,1.0 -2030.0,1.0 -2031.0,1.0 -2032.0,1.0 -2033.0,1.0 -2034.0,1.0 -2035.0,1.0 -2036.0,1.0 -2037.0,1.0 -2038.0,1.0 -2039.0,1.0 -2040.0,1.0 -2041.0,1.0 -2042.0,1.0 -2043.0,1.0 -2044.0,1.0 -2045.0,1.0 -2046.0,1.0 -2047.0,1.0 -2048.0,1.0 -2049.0,1.0 -2050.0,1.0 -2051.0,1.0 -2052.0,1.0 -2053.0,1.0 -2054.0,1.0 -2055.0,1.0 -2056.0,1.0 -2057.0,1.0 -2058.0,1.0 -2059.0,1.0 -2060.0,1.0 -2061.0,1.0 -2062.0,1.0 -2063.0,1.0 -2064.0,1.0 -2065.0,1.0 -2066.0,1.0 -2067.0,1.0 -2068.0,1.0 -2069.0,1.0 -2070.0,1.0 -2071.0,1.0 -2072.0,1.0 -2073.0,1.0 -2074.0,1.0 -2075.0,1.0 -2076.0,1.0 -2077.0,1.0 -2078.0,1.0 -2079.0,1.0 -2080.0,1.0 -2081.0,1.0 -2082.0,1.0 -2083.0,1.0 -2084.0,1.0 -2085.0,1.0 -2086.0,1.0 -2087.0,1.0 -2088.0,1.0 -2089.0,1.0 -2090.0,1.0 -2091.0,1.0 -2092.0,1.0 -2093.0,1.0 -2094.0,1.0 -2095.0,1.0 -2096.0,1.0 -2097.0,1.0 -2098.0,1.0 -2099.0,1.0 -2100.0,1.0 -2101.0,1.0 -2102.0,1.0 -2103.0,1.0 -2104.0,1.0 -2105.0,1.0 -2106.0,1.0 -2107.0,1.0 -2108.0,1.0 -2109.0,1.0 -2110.0,1.0 -2111.0,1.0 -2112.0,1.0 -2113.0,1.0 -2114.0,1.0 -2115.0,1.0 -2116.0,1.0 -2117.0,1.0 -2118.0,1.0 -2119.0,1.0 -2120.0,1.0 -2121.0,1.0 -2122.0,1.0 -2123.0,1.0 -2124.0,1.0 -2125.0,1.0 -2126.0,1.0 -2127.0,1.0 -2128.0,1.0 -2129.0,1.0 -2130.0,1.0 -2131.0,1.0 -2132.0,1.0 -2133.0,1.0 -2134.0,1.0 -2135.0,1.0 -2136.0,1.0 -2137.0,1.0 -2138.0,1.0 -2139.0,1.0 -2140.0,1.0 -2141.0,1.0 -2142.0,1.0 -2143.0,1.0 -2144.0,1.0 -2145.0,1.0 -2146.0,1.0 -2147.0,1.0 -2148.0,1.0 -2149.0,1.0 -2150.0,1.0 -2151.0,1.0 -2152.0,1.0 -2153.0,1.0 -2154.0,1.0 -2155.0,1.0 -2156.0,1.0 -2157.0,1.0 -2158.0,1.0 -2159.0,1.0 -2160.0,1.0 -2161.0,1.0 -2162.0,1.0 -2163.0,1.0 -2164.0,1.0 -2165.0,1.0 -2166.0,1.0 -2167.0,1.0 -2168.0,1.0 -2169.0,1.0 -2170.0,1.0 -2171.0,1.0 -2172.0,1.0 -2173.0,1.0 -2174.0,1.0 -2175.0,1.0 -2176.0,1.0 -2177.0,1.0 -2178.0,1.0 -2179.0,1.0 -2180.0,1.0 -2181.0,1.0 -2182.0,1.0 -2183.0,1.0 -2184.0,1.0 -2185.0,1.0 -2186.0,1.0 -2187.0,1.0 -2188.0,1.0 -2189.0,1.0 -2190.0,1.0 -2191.0,1.0 -2192.0,1.0 -2193.0,1.0 -2194.0,1.0 -2195.0,1.0 -2196.0,1.0 -2197.0,1.0 -2198.0,1.0 -2199.0,1.0 -2200.0,1.0 -2201.0,1.0 -2202.0,1.0 -2203.0,1.0 -2204.0,1.0 -2205.0,1.0 -2206.0,1.0 -2207.0,1.0 -2208.0,1.0 -2209.0,1.0 -2210.0,1.0 -2211.0,1.0 -2212.0,1.0 -2213.0,1.0 -2214.0,1.0 -2215.0,1.0 -2216.0,1.0 -2217.0,1.0 -2218.0,1.0 -2219.0,1.0 -2220.0,1.0 -2221.0,1.0 -2222.0,1.0 -2223.0,1.0 -2224.0,1.0 -2225.0,1.0 -2226.0,1.0 -2227.0,1.0 -2228.0,1.0 -2229.0,1.0 -2230.0,1.0 -2231.0,1.0 -2232.0,1.0 -2233.0,1.0 -2234.0,1.0 -2235.0,1.0 -2236.0,1.0 -2237.0,1.0 -2238.0,1.0 -2239.0,1.0 -2240.0,1.0 -2241.0,1.0 -2242.0,1.0 -2243.0,1.0 -2244.0,1.0 -2245.0,1.0 -2246.0,1.0 -2247.0,1.0 -2248.0,1.0 -2249.0,1.0 -2250.0,1.0 -2251.0,1.0 -2252.0,1.0 -2253.0,1.0 -2254.0,1.0 -2255.0,1.0 -2256.0,1.0 -2257.0,1.0 -2258.0,1.0 -2259.0,1.0 -2260.0,1.0 -2261.0,1.0 -2262.0,1.0 -2263.0,1.0 -2264.0,1.0 -2265.0,1.0 -2266.0,1.0 -2267.0,1.0 -2268.0,1.0 -2269.0,1.0 -2270.0,1.0 -2271.0,1.0 -2272.0,1.0 -2273.0,1.0 -2274.0,1.0 -2275.0,1.0 -2276.0,1.0 -2277.0,1.0 -2278.0,1.0 -2279.0,1.0 -2280.0,1.0 -2281.0,1.0 -2282.0,1.0 -2283.0,1.0 -2284.0,1.0 -2285.0,1.0 -2286.0,1.0 -2287.0,1.0 -2288.0,1.0 -2289.0,1.0 -2290.0,1.0 -2291.0,1.0 -2292.0,1.0 -2293.0,1.0 -2294.0,1.0 -2295.0,1.0 -2296.0,1.0 -2297.0,1.0 -2298.0,1.0 -2299.0,1.0 -2300.0,1.0 -2301.0,1.0 -2302.0,1.0 -2303.0,1.0 -2304.0,1.0 -2305.0,1.0 -2306.0,1.0 -2307.0,1.0 -2308.0,1.0 -2309.0,1.0 -2310.0,1.0 -2311.0,1.0 -2312.0,1.0 -2313.0,1.0 -2314.0,1.0 -2315.0,1.0 -2316.0,1.0 -2317.0,1.0 -2318.0,1.0 -2319.0,1.0 -2320.0,1.0 -2321.0,1.0 -2322.0,1.0 -2323.0,1.0 -2324.0,1.0 -2325.0,1.0 -2326.0,1.0 -2327.0,1.0 -2328.0,1.0 -2329.0,1.0 -2330.0,1.0 -2331.0,1.0 -2332.0,1.0 -2333.0,1.0 -2334.0,1.0 -2335.0,1.0 -2336.0,1.0 -2337.0,1.0 -2338.0,1.0 -2339.0,1.0 -2340.0,1.0 -2341.0,1.0 -2342.0,1.0 -2343.0,1.0 -2344.0,1.0 -2345.0,1.0 -2346.0,1.0 -2347.0,1.0 -2348.0,1.0 -2349.0,1.0 -2350.0,1.0 -2351.0,1.0 -2352.0,1.0 -2353.0,1.0 -2354.0,1.0 -2355.0,1.0 -2356.0,1.0 -2357.0,1.0 -2358.0,1.0 -2359.0,1.0 -2360.0,1.0 -2361.0,1.0 -2362.0,1.0 -2363.0,1.0 -2364.0,1.0 -2365.0,1.0 -2366.0,1.0 -2367.0,1.0 -2368.0,1.0 -2369.0,1.0 -2370.0,1.0 -2371.0,1.0 -2372.0,1.0 -2373.0,1.0 -2374.0,1.0 -2375.0,1.0 -2376.0,1.0 -2377.0,1.0 -2378.0,1.0 -2379.0,1.0 -2380.0,1.0 -2381.0,1.0 -2382.0,1.0 -2383.0,1.0 -2384.0,1.0 -2385.0,1.0 -2386.0,1.0 -2387.0,1.0 -2388.0,1.0 -2389.0,1.0 -2390.0,1.0 -2391.0,1.0 -2392.0,1.0 -2393.0,1.0 -2394.0,1.0 -2395.0,1.0 -2396.0,1.0 -2397.0,1.0 -2398.0,1.0 -2399.0,1.0 -2400.0,1.0 -2401.0,1.0 -2402.0,1.0 -2403.0,1.0 -2404.0,1.0 -2405.0,1.0 -2406.0,1.0 -2407.0,1.0 -2408.0,1.0 -2409.0,1.0 -2410.0,1.0 -2411.0,1.0 -2412.0,1.0 -2413.0,1.0 -2414.0,1.0 -2415.0,1.0 -2416.0,1.0 -2417.0,1.0 -2418.0,1.0 -2419.0,1.0 -2420.0,1.0 -2421.0,1.0 -2422.0,1.0 -2423.0,1.0 -2424.0,1.0 -2425.0,1.0 -2426.0,1.0 -2427.0,1.0 -2428.0,1.0 -2429.0,1.0 -2430.0,1.0 -2431.0,1.0 -2432.0,1.0 -2433.0,1.0 -2434.0,1.0 -2435.0,1.0 -2436.0,1.0 -2437.0,1.0 -2438.0,1.0 -2439.0,1.0 -2440.0,1.0 -2441.0,1.0 -2442.0,1.0 -2443.0,1.0 -2444.0,1.0 -2445.0,1.0 -2446.0,1.0 -2447.0,1.0 -2448.0,1.0 -2449.0,1.0 -2450.0,1.0 -2451.0,1.0 -2452.0,1.0 -2453.0,1.0 -2454.0,1.0 -2455.0,1.0 -2456.0,1.0 -2457.0,1.0 -2458.0,1.0 -2459.0,1.0 -2460.0,1.0 -2461.0,1.0 -2462.0,1.0 -2463.0,1.0 -2464.0,1.0 -2465.0,1.0 -2466.0,1.0 -2467.0,1.0 -2468.0,1.0 -2469.0,1.0 -2470.0,1.0 -2471.0,1.0 -2472.0,1.0 -2473.0,1.0 -2474.0,1.0 -2475.0,1.0 -2476.0,1.0 -2477.0,1.0 -2478.0,1.0 -2479.0,1.0 -2480.0,1.0 -2481.0,1.0 -2482.0,1.0 -2483.0,1.0 -2484.0,1.0 -2485.0,1.0 -2486.0,1.0 -2487.0,1.0 -2488.0,1.0 -2489.0,1.0 -2490.0,1.0 -2491.0,1.0 -2492.0,1.0 -2493.0,1.0 -2494.0,1.0 -2495.0,1.0 -2496.0,1.0 -2497.0,1.0 -2498.0,1.0 -2499.0,1.0 -2500.0,1.0 -2501.0,1.0 -2502.0,1.0 -2503.0,1.0 -2504.0,1.0 -2505.0,1.0 -2506.0,1.0 -2507.0,1.0 -2508.0,1.0 -2509.0,1.0 -2510.0,1.0 -2511.0,1.0 -2512.0,1.0 -2513.0,1.0 -2514.0,1.0 -2515.0,1.0 -2516.0,1.0 -2517.0,1.0 -2518.0,1.0 -2519.0,1.0 -2520.0,1.0 -2521.0,1.0 -2522.0,1.0 -2523.0,1.0 -2524.0,1.0 -2525.0,1.0 -2526.0,1.0 -2527.0,1.0 -2528.0,1.0 -2529.0,1.0 -2530.0,1.0 -2531.0,1.0 -2532.0,1.0 -2533.0,1.0 -2534.0,1.0 -2535.0,1.0 -2536.0,1.0 -2537.0,1.0 -2538.0,1.0 -2539.0,1.0 -2540.0,1.0 -2541.0,1.0 -2542.0,1.0 -2543.0,1.0 -2544.0,1.0 -2545.0,1.0 -2546.0,1.0 -2547.0,1.0 -2548.0,1.0 -2549.0,1.0 -2550.0,1.0 -2551.0,1.0 -2552.0,1.0 -2553.0,1.0 -2554.0,1.0 -2555.0,1.0 -2556.0,1.0 -2557.0,1.0 -2558.0,1.0 -2559.0,1.0 -2560.0,1.0 -2561.0,1.0 -2562.0,1.0 -2563.0,1.0 -2564.0,1.0 -2565.0,1.0 -2566.0,1.0 -2567.0,1.0 -2568.0,1.0 -2569.0,1.0 -2570.0,1.0 -2571.0,1.0 -2572.0,1.0 -2573.0,1.0 -2574.0,1.0 -2575.0,1.0 -2576.0,1.0 -2577.0,1.0 -2578.0,1.0 -2579.0,1.0 -2580.0,1.0 -2581.0,1.0 -2582.0,1.0 -2583.0,1.0 -2584.0,1.0 -2585.0,1.0 -2586.0,1.0 -2587.0,1.0 -2588.0,1.0 -2589.0,1.0 -2590.0,1.0 -2591.0,1.0 -2592.0,1.0 -2593.0,1.0 -2594.0,1.0 -2595.0,1.0 -2596.0,1.0 -2597.0,1.0 -2598.0,1.0 -2599.0,1.0 -2600.0,1.0 -2601.0,1.0 -2602.0,1.0 -2603.0,1.0 -2604.0,1.0 -2605.0,1.0 -2606.0,1.0 -2607.0,1.0 -2608.0,1.0 -2609.0,1.0 -2610.0,1.0 -2611.0,1.0 -2612.0,1.0 -2613.0,1.0 -2614.0,1.0 -2615.0,1.0 -2616.0,1.0 -2617.0,1.0 -2618.0,1.0 -2619.0,1.0 -2620.0,1.0 -2621.0,1.0 -2622.0,1.0 -2623.0,1.0 -2624.0,1.0 -2625.0,1.0 -2626.0,1.0 -2627.0,1.0 -2628.0,1.0 -2629.0,1.0 -2630.0,1.0 -2631.0,1.0 -2632.0,1.0 -2633.0,1.0 -2634.0,1.0 -2635.0,1.0 -2636.0,1.0 -2637.0,1.0 -2638.0,1.0 -2639.0,1.0 -2640.0,1.0 -2641.0,1.0 -2642.0,1.0 -2643.0,1.0 -2644.0,1.0 -2645.0,1.0 -2646.0,1.0 -2647.0,1.0 -2648.0,1.0 -2649.0,1.0 -2650.0,1.0 -2651.0,1.0 -2652.0,1.0 -2653.0,1.0 -2654.0,1.0 -2655.0,1.0 -2656.0,1.0 -2657.0,1.0 -2658.0,1.0 -2659.0,1.0 -2660.0,1.0 -2661.0,1.0 -2662.0,1.0 -2663.0,1.0 -2664.0,1.0 -2665.0,1.0 -2666.0,1.0 -2667.0,1.0 -2668.0,1.0 -2669.0,1.0 -2670.0,1.0 -2671.0,1.0 -2672.0,1.0 -2673.0,1.0 -2674.0,1.0 -2675.0,1.0 -2676.0,1.0 -2677.0,1.0 -2678.0,1.0 -2679.0,1.0 -2680.0,1.0 -2681.0,1.0 -2682.0,1.0 -2683.0,1.0 -2684.0,1.0 -2685.0,1.0 -2686.0,1.0 -2687.0,1.0 -2688.0,1.0 -2689.0,1.0 -2690.0,1.0 -2691.0,1.0 -2692.0,1.0 -2693.0,1.0 -2694.0,1.0 -2695.0,1.0 -2696.0,1.0 -2697.0,1.0 -2698.0,1.0 -2699.0,1.0 -2700.0,1.0 -2701.0,1.0 -2702.0,1.0 -2703.0,1.0 -2704.0,1.0 -2705.0,1.0 -2706.0,1.0 -2707.0,1.0 -2708.0,1.0 -2709.0,1.0 -2710.0,1.0 -2711.0,1.0 -2712.0,1.0 -2713.0,1.0 -2714.0,1.0 -2715.0,1.0 -2716.0,1.0 -2717.0,1.0 -2718.0,1.0 -2719.0,1.0 -2720.0,1.0 -2721.0,1.0 -2722.0,1.0 -2723.0,1.0 -2724.0,1.0 -2725.0,1.0 -2726.0,1.0 -2727.0,1.0 -2728.0,1.0 -2729.0,1.0 -2730.0,1.0 -2731.0,1.0 -2732.0,1.0 -2733.0,1.0 -2734.0,1.0 -2735.0,1.0 -2736.0,1.0 -2737.0,1.0 -2738.0,1.0 -2739.0,1.0 -2740.0,1.0 -2741.0,1.0 -2742.0,1.0 -2743.0,1.0 -2744.0,1.0 -2745.0,1.0 -2746.0,1.0 -2747.0,1.0 -2748.0,1.0 -2749.0,1.0 -2750.0,1.0 -2751.0,1.0 -2752.0,1.0 -2753.0,1.0 -2754.0,1.0 -2755.0,1.0 -2756.0,1.0 -2757.0,1.0 -2758.0,1.0 -2759.0,1.0 -2760.0,1.0 -2761.0,1.0 -2762.0,1.0 -2763.0,1.0 -2764.0,1.0 -2765.0,1.0 -2766.0,1.0 -2767.0,1.0 -2768.0,1.0 -2769.0,1.0 -2770.0,1.0 -2771.0,1.0 -2772.0,1.0 -2773.0,1.0 -2774.0,1.0 -2775.0,1.0 -2776.0,1.0 -2777.0,1.0 -2778.0,1.0 -2779.0,1.0 -2780.0,1.0199378901753107 -2781.0,1.0699378901753107 -2782.0,1.1199378901753108 -2783.0,1.1699378901753108 -2784.0,1.2199378901753106 -2785.0,1.2699378901753107 -2786.0,1.3199378901753107 -2787.0,1.3699378901753108 -2788.0,1.4199378901753108 -2789.0,1.4699378901753106 -2790.0,1.519937890175311 -2791.0,1.5699378901753107 -2792.0,1.6199378901753108 -2793.0,1.6699378901753108 -2794.0,1.7199378901753106 -2795.0,1.769937890175311 -2796.0,1.8199378901753107 -2797.0,1.8699378901753108 -2798.0,1.9199378901753108 -2799.0,1.9699378901753106 -2800.0,2.019937890175311 -2801.0,2.0699378901753107 -2802.0,2.1199378901753105 -2803.0,2.169937890175311 -2804.0,2.219937890175311 -2805.0,2.269937890175311 -2806.0,2.3199378901753107 -2807.0,2.3699378901753105 -2808.0,2.419937890175311 -2809.0,2.469937890175311 -2810.0,2.519937890175311 -2811.0,2.5699378901753107 -2812.0,2.6199378901753105 -2813.0,2.669937890175311 -2814.0,2.719937890175311 -2815.0,2.769937890175311 -2816.0,2.8199378901753107 -2817.0,2.8699378901753105 -2818.0,2.919937890175311 -2819.0,2.969937890175311 -2820.0,3.019937890175311 -2821.0,3.0699378901753107 -2822.0,3.119937890175311 -2823.0,3.169937890175311 -2824.0,3.2199378901753106 -2825.0,3.269937890175311 -2826.0,3.3199378901753107 -2827.0,3.369937890175311 -2828.0,3.419937890175311 -2829.0,3.469937890175311 -2830.0,3.519937890175311 -2831.0,3.5699378901753107 -2832.0,3.619937890175311 -2833.0,3.669937890175311 -2834.0,3.719937890175311 -2835.0,3.769937890175311 -2836.0,3.8199378901753107 -2837.0,3.869937890175311 -2838.0,3.919937890175311 -2839.0,3.969937890175311 -2840.0,4.019937890175311 -2841.0,4.069937890175311 -2842.0,4.119937890175311 -2843.0,4.16993789017531 -2844.0,4.219937890175311 -2845.0,4.269937890175311 -2846.0,4.319937890175311 -2847.0,4.369937890175311 -2848.0,4.41993789017531 -2849.0,4.469937890175311 -2850.0,4.519937890175311 -2851.0,4.569937890175311 -2852.0,4.619937890175311 -2853.0,4.66993789017531 -2854.0,4.719937890175311 -2855.0,4.769937890175311 -2856.0,4.819937890175311 -2857.0,4.869937890175311 -2858.0,4.91993789017531 -2859.0,4.969937890175311 -2860.0,5.019937890175311 -2861.0,5.069937890175311 -2862.0,5.1199378901753105 -2863.0,5.169937890175311 -2864.0,5.219937890175311 -2865.0,5.269937890175311 -2866.0,5.319937890175311 -2867.0,5.3699378901753105 -2868.0,5.419937890175311 -2869.0,5.469937890175311 -2870.0,5.519937890175311 -2871.0,5.569937890175311 -2872.0,5.6199378901753105 -2873.0,5.669937890175311 -2874.0,5.719937890175311 -2875.0,5.769937890175311 -2876.0,5.819937890175311 -2877.0,5.869937890175311 -2878.0,5.919937890175311 -2879.0,5.969937890175311 -2880.0,5.980062109824689 -2881.0,5.930062109824689 -2882.0,5.8800621098246895 -2883.0,5.83006210982469 -2884.0,5.780062109824689 -2885.0,5.730062109824689 -2886.0,5.680062109824689 -2887.0,5.6300621098246895 -2888.0,5.58006210982469 -2889.0,5.530062109824689 -2890.0,5.480062109824689 -2891.0,5.430062109824689 -2892.0,5.3800621098246895 -2893.0,5.33006210982469 -2894.0,5.280062109824689 -2895.0,5.230062109824689 -2896.0,5.180062109824689 -2897.0,5.1300621098246895 -2898.0,5.08006210982469 -2899.0,5.030062109824689 -2900.0,4.980062109824689 -2901.0,4.930062109824689 -2902.0,4.8800621098246895 -2903.0,4.83006210982469 -2904.0,4.780062109824689 -2905.0,4.730062109824689 -2906.0,4.680062109824689 -2907.0,4.6300621098246895 -2908.0,4.58006210982469 -2909.0,4.530062109824689 -2910.0,4.480062109824689 -2911.0,4.430062109824689 -2912.0,4.3800621098246895 -2913.0,4.33006210982469 -2914.0,4.280062109824689 -2915.0,4.230062109824689 -2916.0,4.180062109824689 -2917.0,4.1300621098246895 -2918.0,4.08006210982469 -2919.0,4.030062109824689 -2920.0,3.980062109824689 -2921.0,3.9300621098246893 -2922.0,3.880062109824689 -2923.0,3.830062109824689 -2924.0,3.7800621098246894 -2925.0,3.730062109824689 -2926.0,3.6800621098246893 -2927.0,3.630062109824689 -2928.0,3.580062109824689 -2929.0,3.530062109824689 -2930.0,3.480062109824689 -2931.0,3.4300621098246893 -2932.0,3.380062109824689 -2933.0,3.330062109824689 -2934.0,3.280062109824689 -2935.0,3.230062109824689 -2936.0,3.1800621098246893 -2937.0,3.130062109824689 -2938.0,3.080062109824689 -2939.0,3.030062109824689 -2940.0,2.980062109824689 -2941.0,2.9300621098246893 -2942.0,2.880062109824689 -2943.0,2.830062109824689 -2944.0,2.780062109824689 -2945.0,2.730062109824689 -2946.0,2.6800621098246893 -2947.0,2.630062109824689 -2948.0,2.580062109824689 -2949.0,2.530062109824689 -2950.0,2.480062109824689 -2951.0,2.4300621098246893 -2952.0,2.380062109824689 -2953.0,2.330062109824689 -2954.0,2.280062109824689 -2955.0,2.230062109824689 -2956.0,2.1800621098246893 -2957.0,2.130062109824689 -2958.0,2.080062109824689 -2959.0,2.030062109824689 -2960.0,1.980062109824689 -2961.0,1.9300621098246893 -2962.0,1.8800621098246895 -2963.0,1.8300621098246888 -2964.0,1.780062109824689 -2965.0,1.730062109824689 -2966.0,1.6800621098246893 -2967.0,1.6300621098246895 -2968.0,1.5800621098246888 -2969.0,1.530062109824689 -2970.0,1.480062109824689 -2971.0,1.4300621098246893 -2972.0,1.3800621098246895 -2973.0,1.3300621098246888 -2974.0,1.280062109824689 -2975.0,1.230062109824689 -2976.0,1.1800621098246893 -2977.0,1.1300621098246886 -2978.0,1.0800621098246888 -2979.0,1.030062109824689 -2980.0,0.999862283417689 -2981.0,0.9995170028506363 -2982.0,0.9991718415186742 -2983.0,0.9988267993806276 -2984.0,0.9984818763953353 -2985.0,0.9981370725216505 -2986.0,0.9977923877184408 -2987.0,0.9974478219445877 -2988.0,0.9971033751589871 -2989.0,0.9967590473205489 -2990.0,0.9964148383881973 -2991.0,0.9960707483208708 -2992.0,0.9957267770775219 -2993.0,0.9953829246171173 -2994.0,0.995039190898638 -2995.0,0.9946955758810789 -2996.0,0.9943520795234495 -2997.0,0.994008701784773 -2998.0,0.9936654426240868 -2999.0,0.993322302000443 -3000.0,0.9929792798729071 -3001.0,0.9926363762005591 -3002.0,0.9922935909424933 -3003.0,0.9919509240578176 -3004.0,0.9916083755056545 -3005.0,0.9912659452451406 -3006.0,0.9909236332354262 -3007.0,0.9905814394356761 -3008.0,0.990239363805069 -3009.0,0.989897406302798 -3010.0,0.9895555668880699 -3011.0,0.9892138455201056 -3012.0,0.9888722421581405 -3013.0,0.9885307567614238 -3014.0,0.9881893892892185 -3015.0,0.9878481397008022 -3016.0,0.9875070079554662 -3017.0,0.987165994012516 -3018.0,0.9868250978312713 -3019.0,0.9864843193710653 -3020.0,0.986143658591246 -3021.0,0.9858031154511747 -3022.0,0.9854626899102273 -3023.0,0.9851223819277936 -3024.0,0.9847821914632771 -3025.0,0.9844421184760956 -3026.0,0.9841021629256811 -3027.0,0.9837623247714792 -3028.0,0.9834226039729497 -3029.0,0.9830830004895663 -3030.0,0.982743514280817 -3031.0,0.9824041453062033 -3032.0,0.9820648935252413 -3033.0,0.9817257588974604 -3034.0,0.9813867413824046 -3035.0,0.9810478409396313 -3036.0,0.9807090575287123 -3037.0,0.9803703911092332 -3038.0,0.9800318416407935 -3039.0,0.9796934090830068 -3040.0,0.9793550933955006 -3041.0,0.9790168945379162 -3042.0,0.978678812469909 -3043.0,0.9783408471511482 -3044.0,0.9780029985413171 -3045.0,0.9776652666001129 -3046.0,0.9773276512872464 -3047.0,0.9769901525624427 -3048.0,0.9766527703854406 -3049.0,0.976315504715993 -3050.0,0.9759783555138665 -3051.0,0.9756413227388415 -3052.0,0.9753044063507127 -3053.0,0.9749676063092882 -3054.0,0.9746309225743904 -3055.0,0.9742943551058554 -3056.0,0.9739579038635329 -3057.0,0.9736215688072869 -3058.0,0.9732853498969951 -3059.0,0.972949247092549 -3060.0,0.9726132603538541 -3061.0,0.9722773896408294 -3062.0,0.9719416349134081 -3063.0,0.9716059961315371 -3064.0,0.9712704732551771 -3065.0,0.9709350662443028 -3066.0,0.9705997750589025 -3067.0,0.9702645996589783 -3068.0,0.9699295400045463 -3069.0,0.9695945960556365 -3070.0,0.9692597677722923 -3071.0,0.9689250551145712 -3072.0,0.9685904580425444 -3073.0,0.968255976516297 -3074.0,0.9679216104959276 -3075.0,0.9675873599415491 -3076.0,0.9672532248132875 -3077.0,0.966919205071283 -3078.0,0.9665853006756897 -3079.0,0.966251511586675 -3080.0,0.9659178377644204 -3081.0,0.965584279169121 -3082.0,0.9652508357609857 -3083.0,0.9649175075002372 -3084.0,0.9645842943471118 -3085.0,0.9642511962618595 -3086.0,0.9639182132047444 -3087.0,0.9635853451360438 -3088.0,0.9632525920160491 -3089.0,0.9629199538050652 -3090.0,0.9625874304634109 -3091.0,0.9622550219514184 -3092.0,0.9619227282294339 -3093.0,0.9615905492578173 -3094.0,0.9612584849969419 -3095.0,0.9609265354071949 -3096.0,0.9605947004489772 -3097.0,0.9602629800827032 -3098.0,0.959931374268801 -3099.0,0.9595998829677128 -3100.0,0.9592685061398938 -3101.0,0.9589372437458132 -3102.0,0.9586060957459539 -3103.0,0.9582750621008123 -3104.0,0.9579441427708985 -3105.0,0.9576133377167362 -3106.0,0.9572826468988629 -3107.0,0.9569520702778295 -3108.0,0.9566216078142006 -3109.0,0.9562912594685544 -3110.0,0.955961025201483 -3111.0,0.9556309049735915 -3112.0,0.9553008987454993 -3113.0,0.9549710064778387 -3114.0,0.9546412281312564 -3115.0,0.9543115636664119 -3116.0,0.9539820130439788 -3117.0,0.9536525762246439 -3118.0,0.9533232531691082 -3119.0,0.9529940438380854 -3120.0,0.9526649481923035 -3121.0,0.9523359661925037 -3122.0,0.9520070977994409 -3123.0,0.9516783429738835 -3124.0,0.9513497016766135 -3125.0,0.9510211738684262 -3126.0,0.9506927595101307 -3127.0,0.9503644585625497 -3128.0,0.9500362709865191 -3129.0,0.9497081967428886 -3130.0,0.9493802357925214 -3131.0,0.949052388096294 -3132.0,0.9487246536150967 -3133.0,0.9483970323098332 -3134.0,0.9480695241414204 -3135.0,0.9477421290707893 -3136.0,0.9474148470588838 -3137.0,0.9470876780666617 -3138.0,0.946760622055094 -3139.0,0.9464336789851655 -3140.0,0.946106848817874 -3141.0,0.9457801315142312 -3142.0,0.9454535270352622 -3143.0,0.9451270353420054 -3144.0,0.9448006563955126 -3145.0,0.9444743901568492 -3146.0,0.9441482365870941 -3147.0,0.9438221956473396 -3148.0,0.9434962672986912 -3149.0,0.9431704515022683 -3150.0,0.9428447482192032 -3151.0,0.942519157410642 -3152.0,0.9421936790377441 -3153.0,0.9418683130616822 -3154.0,0.9415430594436426 -3155.0,0.9412179181448248 -3156.0,0.9408928891264421 -3157.0,0.9405679723497206 -3158.0,0.9402431677759002 -3159.0,0.9399184753662341 -3160.0,0.9395938950819889 -3161.0,0.9392694268844445 -3162.0,0.9389450707348941 -3163.0,0.9386208265946446 -3164.0,0.9382966944250158 -3165.0,0.9379726741873413 -3166.0,0.9376487658429679 -3167.0,0.9373249693532554 -3168.0,0.9370012846795773 -3169.0,0.9366777117833206 -3170.0,0.9363542506258853 -3171.0,0.9360309011686848 -3172.0,0.9357076633731459 -3173.0,0.9353845372007088 -3174.0,0.9350615226128267 -3175.0,0.9347386195709664 -3176.0,0.9344158280366079 -3177.0,0.9340931479712445 -3178.0,0.9337705793363831 -3179.0,0.9334481220935432 -3180.0,0.9331257762042582 -3181.0,0.9328035416300746 -3182.0,0.9324814183325522 -3183.0,0.9321594062732639 -3184.0,0.9318375054137962 -3185.0,0.9315157157157484 -3186.0,0.9311940371407336 -3187.0,0.9308724696503777 -3188.0,0.9305510132063203 -3189.0,0.9302296677702137 -3190.0,0.9299084333037239 -3191.0,0.9295873097685299 -3192.0,0.929266297126324 -3193.0,0.9289453953388118 -3194.0,0.928624604367712 -3195.0,0.9283039241747566 -3196.0,0.9279833547216908 -3197.0,0.927662895970273 -3198.0,0.9273425478822748 -3199.0,0.9270223104194809 -3200.0,0.9267021835436895 -3201.0,0.9263821672167117 -3202.0,0.9260622614003718 -3203.0,0.9257424660565077 -3204.0,0.9254227811469696 -3205.0,0.925103206633622 -3206.0,0.9247837424783416 -3207.0,0.9244643886430187 -3208.0,0.9241451450895569 -3209.0,0.9238260117798727 -3210.0,0.9235069886758956 -3211.0,0.9231880757395688 -3212.0,0.9228692729328483 -3213.0,0.9225505802177029 -3214.0,0.9222319975561152 -3215.0,0.9219135249100804 -3216.0,0.9215951622416072 -3217.0,0.9212769095127172 -3218.0,0.9209587666854453 -3219.0,0.9206407337218391 -3220.0,0.9203228105839598 -3221.0,0.9200049972338814 -3222.0,0.9196872936336912 -3223.0,0.9193696997454893 -3224.0,0.9190522155313892 -3225.0,0.9187348409535172 -3226.0,0.918417575974013 -3227.0,0.9181004205550292 -3228.0,0.9177833746587313 -3229.0,0.9174664382472981 -3230.0,0.9171496112829215 -3231.0,0.9168328937278063 -3232.0,0.9165162855441704 -3233.0,0.9161997866942447 -3234.0,0.9158833971402733 -3235.0,0.9155671168445132 -3236.0,0.9152509457692344 -3237.0,0.91493488387672 -3238.0,0.9146189311292662 -3239.0,0.914303087489182 -3240.0,0.9139873529187897 -3241.0,0.9136717273804245 -3242.0,0.9133562108364344 -3243.0,0.9130408032491807 -3244.0,0.9127255045810375 -3245.0,0.9124103147943922 -3246.0,0.9120952338516446 -3247.0,0.911780261715208 -3248.0,0.9114653983475086 -3249.0,0.9111506437109854 -3250.0,0.9108359977680905 -3251.0,0.910521460481289 -3252.0,0.9102070318130587 -3253.0,0.9098927117258908 -3254.0,0.909578500182289 -3255.0,0.9092643971447703 -3256.0,0.9089504025758643 -3257.0,0.908636516438114 -3258.0,0.908322738694075 -3259.0,0.9080090693063156 -3260.0,0.9076955082374178 -3261.0,0.9073820554499757 -3262.0,0.9070687109065969 -3263.0,0.9067554745699016 -3264.0,0.9064423464025229 -3265.0,0.906129326367107 -3266.0,0.9058164144263128 -3267.0,0.9055036105428121 -3268.0,0.90519091467929 -3269.0,0.9048783267984439 -3270.0,0.9045658468629845 -3271.0,0.9042534748356351 -3272.0,0.903941210679132 -3273.0,0.9036290543562244 -3274.0,0.9033170058296744 -3275.0,0.9030050650622569 -3276.0,0.9026932320167593 -3277.0,0.9023815066559826 -3278.0,0.9020698889427401 -3279.0,0.901758378839858 -3280.0,0.9014469763101756 -3281.0,0.9011356813165445 -3282.0,0.9008244938218299 -3283.0,0.9005134137889091 -3284.0,0.9002024411806727 -3285.0,0.8998915759600239 -3286.0,0.8995808180898787 -3287.0,0.8992701675331658 -3288.0,0.8989596242528272 -3289.0,0.898649188211817 -3290.0,0.8983388593731026 -3291.0,0.8980286376996642 -3292.0,0.8977185231544944 -3293.0,0.8974085157005989 -3294.0,0.8970986153009959 -3295.0,0.8967888219187167 -3296.0,0.8964791355168051 -3297.0,0.896169556058318 -3298.0,0.8958600835063246 -3299.0,0.8955507178239072 -3300.0,0.8952414589741606 -3301.0,0.8949323069201927 -3302.0,0.8946232616251236 -3303.0,0.8943143230520867 -3304.0,0.8940054911642278 -3305.0,0.8936967659247055 -3306.0,0.8933881472966911 -3307.0,0.8930796352433688 -3308.0,0.8927712297279351 -3309.0,0.8924629307135997 -3310.0,0.8921547381635847 -3311.0,0.8918466520411249 -3312.0,0.891538672309468 -3313.0,0.8912307989318742 -3314.0,0.8909230318716165 -3315.0,0.8906153710919804 -3316.0,0.8903078165562643 -3317.0,0.8900003682277793 -3318.0,0.8896930260698489 -3319.0,0.8893857900458094 -3320.0,0.8890786601190099 -3321.0,0.888771636252812 -3322.0,0.8884647184105899 -3323.0,0.8881579065557307 -3324.0,0.8878512006516339 -3325.0,0.8875446006617117 -3326.0,0.887238106549389 -3327.0,0.8869317182781032 -3328.0,0.8866254358113046 -3329.0,0.8863192591124557 -3330.0,0.886013188145032 -3331.0,0.8857072228725215 -3332.0,0.8854013632584247 -3333.0,0.8850956092662546 -3334.0,0.8847899608595373 -3335.0,0.8844844180018111 -3336.0,0.8841789806566268 -3337.0,0.8838736487875481 -3338.0,0.8835684223581511 -3339.0,0.8832633013320245 -3340.0,0.8829582856727696 -3341.0,0.8826533753440001 -3342.0,0.8823485703093427 -3343.0,0.8820438705324363 -3344.0,0.8817392759769322 -3345.0,0.8814347866064948 -3346.0,0.8811304023848006 -3347.0,0.8808261232755388 -3348.0,0.880521949242411 -3349.0,0.8802178802491317 -3350.0,0.8799139162594275 -3351.0,0.8796100572370378 -3352.0,0.8793063031457143 -3353.0,0.8790026539492216 -3354.0,0.8786991096113365 -3355.0,0.8783956700958481 -3356.0,0.8780923353665584 -3357.0,0.877789105387282 -3358.0,0.8774859801218456 -3359.0,0.8771829595340886 -3360.0,0.8768800435878629 -3361.0,0.8765772322470327 -3362.0,0.8762745254754749 -3363.0,0.8759719232370788 -3364.0,0.8756694254957461 -3365.0,0.8753670322153911 -3366.0,0.8750647433599404 -3367.0,0.8747625588933333 -3368.0,0.8744604787795213 -3369.0,0.8741585029824684 -3370.0,0.8738566314661511 -3371.0,0.8735548641945584 -3372.0,0.8732532011316916 -3373.0,0.8729516422415645 -3374.0,0.8726501874882033 -3375.0,0.8723488368356468 -3376.0,0.8720475902479459 -3377.0,0.8717464476891641 -3378.0,0.8714454091233774 -3379.0,0.8711444745146739 -3380.0,0.8708436438271545 -3381.0,0.8705429170249321 -3382.0,0.8702422940721325 -3383.0,0.8699417749328932 -3384.0,0.8696413595713646 -3385.0,0.8693410479517094 -3386.0,0.8690408400381026 -3387.0,0.8687407357947315 -3388.0,0.868440735185796 -3389.0,0.868140838175508 -3390.0,0.8678410447280922 -3391.0,0.8675413548077853 -3392.0,0.8672417683788364 -3393.0,0.8669422854055072 -3394.0,0.8666429058520715 -3395.0,0.8663436296828154 -3396.0,0.8660444568620377 -3397.0,0.8657453873540489 -3398.0,0.8654464211231725 -3399.0,0.8651475581337438 -3400.0,0.8648487983501107 -3401.0,0.8645501417366335 -3402.0,0.8642515882576844 -3403.0,0.8639531378776483 -3404.0,0.8636547905609221 -3405.0,0.8633565462719152 -3406.0,0.8630584049750493 -3407.0,0.8627603666347583 -3408.0,0.8624624312154883 -3409.0,0.8621645986816978 -3410.0,0.8618668689978577 -3411.0,0.861569242128451 -3412.0,0.8612717180379728 -3413.0,0.8609742966909307 -3414.0,0.8606769780518446 -3415.0,0.8603797620852465 -3416.0,0.8600826487556806 -3417.0,0.8597856380277037 -3418.0,0.8594887298658844 -3419.0,0.8591919242348037 -3420.0,0.858895221099055 -3421.0,0.8585986204232436 -3422.0,0.8583021221719874 -3423.0,0.8580057263099162 -3424.0,0.8577094328016721 -3425.0,0.8574132416119095 -3426.0,0.8571171527052949 -3427.0,0.8568211660465072 -3428.0,0.8565252816002371 -3429.0,0.856229499331188 -3430.0,0.8559338192040751 -3431.0,0.8556382411836259 -3432.0,0.8553427652345801 -3433.0,0.8550473913216897 -3434.0,0.8547521194097186 -3435.0,0.8544569494634431 -3436.0,0.8541618814476516 -3437.0,0.8538669153271444 -3438.0,0.8535720510667345 -3439.0,0.8532772886312466 -3440.0,0.8529826279855177 -3441.0,0.852688069094397 -3442.0,0.8523936119227457 -3443.0,0.8520992564354372 -3444.0,0.851805002597357 -3445.0,0.8515108503734029 -3446.0,0.8512167997284845 -3447.0,0.8509228506275239 -3448.0,0.850629003035455 -3449.0,0.850335256917224 -3450.0,0.850041612237789 -3451.0,0.8497480689621204 -3452.0,0.8494546270552007 -3453.0,0.8491612864820243 -3454.0,0.8488680472075979 -3455.0,0.8485749091969401 -3456.0,0.8482818724150818 -3457.0,0.8479889368270658 -3458.0,0.8476961023979469 -3459.0,0.8474033690927922 -3460.0,0.8471107368766808 -3461.0,0.8468182057147037 -3462.0,0.8465257755719641 -3463.0,0.8462334464135772 -3464.0,0.8459412182046704 -3465.0,0.8456490909103829 -3466.0,0.8453570644958659 -3467.0,0.845065138926283 -3468.0,0.8447733141668096 -3469.0,0.8444815901826329 -3470.0,0.8441899669389527 -3471.0,0.8438984444009802 -3472.0,0.8436070225339389 -3473.0,0.8433157013030644 -3474.0,0.8430244806736042 -3475.0,0.8427333606108178 -3476.0,0.8424423410799767 -3477.0,0.8421514220463644 -3478.0,0.8418606034752762 -3479.0,0.8415698853320198 -3480.0,0.8412792675819146 -3481.0,0.840988750190292 -3482.0,0.8406983331224953 -3483.0,0.84040801634388 -3484.0,0.8401177998198132 -3485.0,0.8398276835156745 -3486.0,0.8395376673968549 -3487.0,0.8392477514287577 -3488.0,0.838957935576798 -3489.0,0.8386682198064029 -3490.0,0.8383786040830115 -3491.0,0.8380890883720745 -3492.0,0.8377996726390551 -3493.0,0.837510356849428 -3494.0,0.8372211409686797 -3495.0,0.8369320249623093 -3496.0,0.836643008795827 -3497.0,0.8363540924347554 -3498.0,0.836065275844629 -3499.0,0.8357765589909939 -3500.0,0.8354879418394084 -3501.0,0.8351994243554426 -3502.0,0.8349110065046783 -3503.0,0.8346226882527095 -3504.0,0.8343344695651419 -3505.0,0.8340463504075931 -3506.0,0.8337583307456927 -3507.0,0.8334704105450819 -3508.0,0.8331825897714139 -3509.0,0.8328948683903539 -3510.0,0.8326072463675788 -3511.0,0.8323197236687774 -3512.0,0.8320323002596502 -3513.0,0.8317449761059099 -3514.0,0.8314577511732808 -3515.0,0.8311706254274989 -3516.0,0.8308835988343123 -3517.0,0.8305966713594807 -3518.0,0.830309842968776 -3519.0,0.8300231136279813 -3520.0,0.8297364833028922 -3521.0,0.8294499519593157 -3522.0,0.8291635195630707 -3523.0,0.8288771860799877 -3524.0,0.8285909514759096 -3525.0,0.8283048157166905 -3526.0,0.8280187787681963 -3527.0,0.827732840596305 -3528.0,0.8274470011669065 -3529.0,0.827161260445902 -3530.0,0.8268756183992048 -3531.0,0.8265900749927397 -3532.0,0.8263046301924437 -3533.0,0.8260192839642653 -3534.0,0.8257340362741646 -3535.0,0.8254488870881138 -3536.0,0.8251638363720966 -3537.0,0.8248788840921085 -3538.0,0.8245940302141568 -3539.0,0.8243092747042605 -3540.0,0.8240246175284505 -3541.0,0.823740058652769 -3542.0,0.8234555980432704 -3543.0,0.8231712356660205 -3544.0,0.822886971487097 -3545.0,0.8226028054725893 -3546.0,0.8223187375885984 -3547.0,0.8220347678012372 -3548.0,0.82175089607663 -3549.0,0.821467122380913 -3550.0,0.8211834466802341 -3551.0,0.8208998689407531 -3552.0,0.8206163891286408 -3553.0,0.8203330072100803 -3554.0,0.8200497231512663 -3555.0,0.8197665369184051 -3556.0,0.8194834484777145 -3557.0,0.8192004577954242 -3558.0,0.8189175648377754 -3559.0,0.8186347695710212 -3560.0,0.818352071961426 -3561.0,0.8180694719752661 -3562.0,0.8177869695788295 -3563.0,0.8175045647384155 -3564.0,0.8172222574203354 -3565.0,0.816940047590912 -3566.0,0.8166579352164797 -3567.0,0.8163759202633845 -3568.0,0.8160940026979842 -3569.0,0.8158121824866479 -3570.0,0.8155304595957568 -3571.0,0.815248833991703 -3572.0,0.814967305640891 -3573.0,0.8146858745097364 -3574.0,0.8144045405646664 -3575.0,0.8141233037721199 -3576.0,0.8138421640985477 -3577.0,0.8135611215104116 -3578.0,0.8132801759741853 -3579.0,0.8129993274563543 -3580.0,0.812718575923415 -3581.0,0.8124379213418761 -3582.0,0.8121573636782575 -3583.0,0.8118769028990906 -3584.0,0.8115965389709185 -3585.0,0.8113162718602961 -3586.0,0.8110361015337892 -3587.0,0.8107560279579757 -3588.0,0.8104760510994449 -3589.0,0.8101961709247975 -3590.0,0.8099163874006459 -3591.0,0.8096367004936139 -3592.0,0.8093571101703371 -3593.0,0.8090776163974621 -3594.0,0.8087982191416475 -3595.0,0.8085189183695632 -3596.0,0.8082397140478909 -3597.0,0.8079606061433231 -3598.0,0.8076815946225646 -3599.0,0.8074026794523312 -3600.0,0.8071238605993506 -3601.0,0.8068451380303614 -3602.0,0.8065665117121142 -3603.0,0.806287981611371 -3604.0,0.8060095476949051 -3605.0,0.8057312099295013 -3606.0,0.805452968281956 -3607.0,0.8051748227190769 -3608.0,0.8048967732076835 -3609.0,0.8046188197146064 -3610.0,0.8043409622066876 -3611.0,0.804063200650781 -3612.0,0.8037855350137515 -3613.0,0.8035079652624757 -3614.0,0.8032304913638414 -3615.0,0.8029531132847483 -3616.0,0.8026758309921068 -3617.0,0.8023986444528395 -3618.0,0.8021215536338799 -3619.0,0.8018445585021731 -3620.0,0.8015676590246756 -3621.0,0.8012908551683554 -3622.0,0.8010141469001917 -3623.0,0.8007375341871753 -3624.0,0.8004610169963082 -3625.0,0.8001845952946042 -3626.0,0.7999082690490877 -3627.0,0.7996320382267956 -3628.0,0.7993559027947752 -3629.0,0.7990798627200856 -3630.0,0.7988039179697972 -3631.0,0.7985280685109919 -3632.0,0.7982523143107629 -3633.0,0.7979766553362148 -3634.0,0.7977010915544631 -3635.0,0.7974256229326355 -3636.0,0.7971502494378704 -3637.0,0.7968749710373177 -3638.0,0.7965997876981389 -3639.0,0.7963246993875064 -3640.0,0.7960497060726043 -3641.0,0.7957748077206278 -3642.0,0.7955000042987838 -3643.0,0.7952252957742899 -3644.0,0.7949506821143756 -3645.0,0.7946761632862813 -3646.0,0.7944017392572592 -3647.0,0.7941274099945723 -3648.0,0.7938531754654952 -3649.0,0.7935790356373136 -3650.0,0.7933049904773247 -3651.0,0.793031039952837 -3652.0,0.7927571840311701 -3653.0,0.792483422679655 -3654.0,0.7922097558656339 -3655.0,0.7919361835564606 -3656.0,0.7916627057194995 -3657.0,0.7913893223221271 -3658.0,0.7911160333317304 -3659.0,0.7908428387157084 -3660.0,0.7905697384414706 -3661.0,0.7902967324764383 -3662.0,0.7900238207880439 -3663.0,0.789751003343731 -3664.0,0.7894782801109546 -3665.0,0.7892056510571804 -3666.0,0.7889331161498863 -3667.0,0.7886606753565604 -3668.0,0.7883883286447028 -3669.0,0.7881160759818242 -3670.0,0.7878439173354472 -3671.0,0.7875718526731051 -3672.0,0.7872998819623427 -3673.0,0.7870280051707156 -3674.0,0.786756222265791 -3675.0,0.7864845332151473 -3676.0,0.7862129379863739 -3677.0,0.7859414365470715 -3678.0,0.7856700288648518 -3679.0,0.7853987149073381 -3680.0,0.7851274946421645 -3681.0,0.7848563680369762 -3682.0,0.7845853350594302 -3683.0,0.7843143956771939 -3684.0,0.7840435498579462 -3685.0,0.7837727975693773 -3686.0,0.7835021387791886 -3687.0,0.7832315734550922 -3688.0,0.7829611015648116 -3689.0,0.7826907230760817 -3690.0,0.7824204379566482 -3691.0,0.782150246174268 -3692.0,0.7818801476967093 -3693.0,0.7816101424917513 -3694.0,0.7813402305271843 -3695.0,0.7810704117708097 -3696.0,0.7808006861904403 -3697.0,0.7805310537538996 -3698.0,0.7802615144290227 -3699.0,0.7799920681836552 -3700.0,0.7797227149856542 -3701.0,0.779453454802888 -3702.0,0.7791842876032355 -3703.0,0.7789152133545875 -3704.0,0.778646232024845 -3705.0,0.7783773435819206 -3706.0,0.7781085479937379 -3707.0,0.7778398452282315 -3708.0,0.7775712352533471 -3709.0,0.7773027180370415 -3710.0,0.7770342935472828 -3711.0,0.7767659617520496 -3712.0,0.776497722619332 -3713.0,0.776229576117131 -3714.0,0.7759615222134587 -3715.0,0.7756935608763382 -3716.0,0.7754256920738036 -3717.0,0.7751579157739004 -3718.0,0.7748902319446844 -3719.0,0.7746226405542231 -3720.0,0.7743551415705949 -3721.0,0.774087734961889 -3722.0,0.7738204206962057 -3723.0,0.7735531987416564 -3724.0,0.7732860690663635 -3725.0,0.7730190316384604 -3726.0,0.7727520864260914 -3727.0,0.7724852333974119 -3728.0,0.7722184725205883 -3729.0,0.771951803763798 -3730.0,0.7716852270952294 -3731.0,0.7714187424830817 -3732.0,0.7711523498955654 -3733.0,0.7708860493009017 -3734.0,0.7706198406673228 -3735.0,0.7703537239630721 -3736.0,0.7700876991564037 -3737.0,0.769821766215583 -3738.0,0.7695559251088858 -3739.0,0.7692901758045996 -3740.0,0.769024518271022 -3741.0,0.7687589524764623 -3742.0,0.7684934783892404 -3743.0,0.7682280959776872 -3744.0,0.7679628052101443 -3745.0,0.7676976060549646 -3746.0,0.7674324984805119 -3747.0,0.7671674824551605 -3748.0,0.7669025579472962 -3749.0,0.7666377249253153 -3750.0,0.7663729833576252 -3751.0,0.766108333212644 -3752.0,0.7658437744588011 -3753.0,0.7655793070645366 -3754.0,0.7653149309983012 -3755.0,0.7650506462285569 -3756.0,0.7647864527237765 -3757.0,0.7645223504524437 -3758.0,0.7642583393830528 -3759.0,0.7639944194841093 -3760.0,0.7637305907241295 -3761.0,0.7634668530716406 -3762.0,0.7632032064951807 -3763.0,0.7629396509632985 -3764.0,0.7626761864445538 -3765.0,0.7624128129075172 -3766.0,0.7621495303207702 -3767.0,0.761886338652905 -3768.0,0.761623237872525 -3769.0,0.7613602279482439 -3770.0,0.7610973088486868 -3771.0,0.760834480542489 -3772.0,0.7605717429982974 -3773.0,0.7603090961847693 -3774.0,0.7600465400705725 -3775.0,0.7597840746243862 -3776.0,0.7595216998149003 -3777.0,0.7592594156108151 -3778.0,0.7589972219808423 -3779.0,0.7587351188937039 -3780.0,0.758473106318133 -3781.0,0.7582111842228735 -3782.0,0.7579493525766798 -3783.0,0.7576876113483174 -3784.0,0.7574259605065626 -3785.0,0.7571644000202021 -3786.0,0.756902929858034 -3787.0,0.7566415499888665 -3788.0,0.7563802603815188 -3789.0,0.7561190610048214 -3790.0,0.7558579518276147 -3791.0,0.7555969328187506 -3792.0,0.7553360039470912 -3793.0,0.7550751651815097 -3794.0,0.7548144164908899 -3795.0,0.7545537578441263 -3796.0,0.7542931892101243 -3797.0,0.7540327105578002 -3798.0,0.7537723218560803 -3799.0,0.7535120230739025 -3800.0,0.753251814180215 -3801.0,0.7529916951439768 -3802.0,0.7527316659341573 -3803.0,0.7524717265197373 -3804.0,0.7522118768697077 -3805.0,0.7519521169530703 -3806.0,0.7516924467388378 -3807.0,0.7514328661960334 -3808.0,0.751173375293691 -3809.0,0.7509139740008551 -3810.0,0.7506546622865813 -3811.0,0.7503954401199353 -3812.0,0.750136307469994 -3813.0,0.7498772643058448 -3814.0,0.7496183105965855 -3815.0,0.7493594463113249 -3816.0,0.7491006714191825 -3817.0,0.7488419858892882 -3818.0,0.7485833896907828 -3819.0,0.7483248827928176 -3820.0,0.7480664651645547 -3821.0,0.7478081367751666 -3822.0,0.7475498975938367 -3823.0,0.747291747589759 -3824.0,0.7470336867321381 -3825.0,0.746775714990189 -3826.0,0.7465178323331378 -3827.0,0.746260038730221 -3828.0,0.7460023341506855 -3829.0,0.7457447185637891 -3830.0,0.7454871919388002 -3831.0,0.7452297542449976 -3832.0,0.744972405451671 -3833.0,0.7447151455281206 -3834.0,0.7444579744436571 -3835.0,0.7442008921676018 -3836.0,0.7439438986692868 -3837.0,0.7436869939180545 -3838.0,0.7434301778832582 -3839.0,0.7431734505342614 -3840.0,0.7429168118404387 -3841.0,0.7426602617711746 -3842.0,0.7424038002958648 -3843.0,0.7421474273839154 -3844.0,0.7418911430047427 -3845.0,0.741634947127774 -3846.0,0.7413788397224471 -3847.0,0.74112282075821 -3848.0,0.7408668902045218 -3849.0,0.7406110480308516 -3850.0,0.7403552942066794 -3851.0,0.7400996287014956 -3852.0,0.7398440514848013 -3853.0,0.7395885625261077 -3854.0,0.7393331617949372 -3855.0,0.7390778492608222 -3856.0,0.7388226248933056 -3857.0,0.7385674886619413 -3858.0,0.7383124405362933 -3859.0,0.738057480485936 -3860.0,0.7378026084804549 -3861.0,0.7375478244894452 -3862.0,0.7372931284825134 -3863.0,0.737038520429276 -3864.0,0.73678400029936 -3865.0,0.7365295680624032 -3866.0,0.7362752236880535 -3867.0,0.7360209671459697 -3868.0,0.7357667984058205 -3869.0,0.7355127174372857 -3870.0,0.7352587242100553 -3871.0,0.7350048186938297 -3872.0,0.7347510008583198 -3873.0,0.7344972706732469 -3874.0,0.734243628108343 -3875.0,0.7339900731333503 -3876.0,0.7337366057180216 -3877.0,0.73348322583212 -3878.0,0.7332299334454192 -3879.0,0.7329767285277032 -3880.0,0.7327236110487666 -3881.0,0.7324705809784142 -3882.0,0.7322176382864615 -3883.0,0.7319647829427341 -3884.0,0.7317120149170685 -3885.0,0.731459334179311 -3886.0,0.7312067406993188 -3887.0,0.7309542344469593 -3888.0,0.7307018153921102 -3889.0,0.73044948350466 -3890.0,0.7301972387545073 -3891.0,0.729945081111561 -3892.0,0.7296930105457407 -3893.0,0.729441027026976 -3894.0,0.7291891305252073 -3895.0,0.728937321010385 -3896.0,0.7286855984524703 -3897.0,0.7284339628214344 -3898.0,0.728182414087259 -3899.0,0.7279309522199361 -3900.0,0.7276795771894683 -3901.0,0.7274282889658683 -3902.0,0.7271770875191593 -3903.0,0.7269259728193747 -3904.0,0.7266749448365584 -3905.0,0.7264240035407646 -3906.0,0.7261731489020579 -3907.0,0.725922380890513 -3908.0,0.7256716994762151 -3909.0,0.72542110462926 -3910.0,0.7251705963197534 -3911.0,0.7249201745178114 -3912.0,0.7246698391935606 -3913.0,0.724419590317138 -3914.0,0.7241694278586903 -3915.0,0.7239193517883753 -3916.0,0.7236693620763607 -3917.0,0.7234194586928243 -3918.0,0.7231696416079547 -3919.0,0.7229199107919505 -3920.0,0.7226702662150206 -3921.0,0.7224207078473843 -3922.0,0.722171235659271 -3923.0,0.7219218496209205 -3924.0,0.7216725497025829 -3925.0,0.7214233358745186 -3926.0,0.7211742081069981 -3927.0,0.7209251663703021 -3928.0,0.7206762106347222 -3929.0,0.7204273408705595 -3930.0,0.7201785570481256 -3931.0,0.7199298591377425 -3932.0,0.7196812471097425 -3933.0,0.7194327209344678 -3934.0,0.719184280582271 -3935.0,0.7189359260235151 -3936.0,0.7186876572285732 -3937.0,0.7184394741678286 -3938.0,0.7181913768116749 -3939.0,0.7179433651305158 -3940.0,0.7176954390947655 -3941.0,0.7174475986748482 -3942.0,0.7171998438411982 -3943.0,0.7169521745642602 -3944.0,0.7167045908144891 -3945.0,0.7164570925623499 -3946.0,0.716209679778318 -3947.0,0.7159623524328788 -3948.0,0.7157151104965278 -3949.0,0.7154679539397711 -3950.0,0.7152208827331246 -3951.0,0.7149738968471144 -3952.0,0.714726996252277 -3953.0,0.714480180919159 -3954.0,0.714233450818317 -3955.0,0.713986805920318 -3956.0,0.7137402461957392 -3957.0,0.7134937716151675 -3958.0,0.7132473821492004 -3959.0,0.7130010777684456 -3960.0,0.7127548584435205 -3961.0,0.7125087241450532 -3962.0,0.7122626748436814 -3963.0,0.7120167105100536 -3964.0,0.7117708311148276 -3965.0,0.7115250366286721 -3966.0,0.7112793270222655 -3967.0,0.7110337022662965 -3968.0,0.7107881623314637 -3969.0,0.7105427071884761 -3970.0,0.7102973368080527 -3971.0,0.7100520511609226 -3972.0,0.709806850217825 -3973.0,0.709561733949509 -3974.0,0.7093167023267344 -3975.0,0.7090717553202704 -3976.0,0.7088268929008968 -3977.0,0.7085821150394033 -3978.0,0.7083374217065895 -3979.0,0.7080928128732655 -3980.0,0.7078482885102511 -3981.0,0.7076038485883763 -3982.0,0.7073594930784813 -3983.0,0.7071152219514163 -3984.0,0.7068710351780413 -3985.0,0.7066269327292269 -3986.0,0.7063829145758533 -3987.0,0.706138980688811 -3988.0,0.7058951310390004 -3989.0,0.705651365597332 -3990.0,0.7054076843347263 -3991.0,0.7051640872221141 -3992.0,0.7049205742304359 -3993.0,0.7046771453306423 -3994.0,0.7044338004936941 -3995.0,0.7041905396905621 -3996.0,0.703947362892227 -3997.0,0.7037042700696796 -3998.0,0.7034612611939207 -3999.0,0.7032183362359611 -4000.0,0.7029754951668216 -4001.0,0.702732737957533 -4002.0,0.7024900645791362 -4003.0,0.702247475002682 -4004.0,0.7020049691992313 -4005.0,0.7017625471398549 -4006.0,0.7015202087956335 -4007.0,0.701277954137658 -4008.0,0.7010357831370293 -4009.0,0.700793695764858 -4010.0,0.7005516919922649 -4011.0,0.7003097717903806 -4012.0,0.7000679351303459 -4013.0,0.6998261819833115 -4014.0,0.699584512320438 -4015.0,0.6993429261128957 -4016.0,0.6991014233318655 -4017.0,0.6988600039485379 -4018.0,0.6986186679341129 -4019.0,0.6983774152598012 -4020.0,0.698136245896823 -4021.0,0.6978951598164087 -4022.0,0.6976541569897983 -4023.0,0.697413237388242 -4024.0,0.6971724009829999 -4025.0,0.6969316477453419 -4026.0,0.696690977646548 -4027.0,0.6964503906579078 -4028.0,0.6962098867507212 -4029.0,0.6959694658962978 -4030.0,0.6957291280659572 -4031.0,0.6954888732310287 -4032.0,0.6952487013628518 -4033.0,0.6950086124327756 -4034.0,0.6947686064121594 -4035.0,0.6945286832723722 -4036.0,0.6942888429847928 -4037.0,0.69404908552081 -4038.0,0.6938094108518227 -4039.0,0.6935698189492393 -4040.0,0.6933303097844783 -4041.0,0.6930908833289678 -4042.0,0.6928515395541462 -4043.0,0.6926122784314616 -4044.0,0.6923730999323716 -4045.0,0.6921340040283441 -4046.0,0.6918949906908568 -4047.0,0.691656059891397 -4048.0,0.6914172116014621 -4049.0,0.6911784457925592 -4050.0,0.6909397624362051 -4051.0,0.6907011615039269 -4052.0,0.6904626429672612 -4053.0,0.6902242067977543 -4054.0,0.6899858529669628 -4055.0,0.6897475814464525 -4056.0,0.6895093922077995 -4057.0,0.6892712852225896 -4058.0,0.6890332604624183 -4059.0,0.688795317898891 -4060.0,0.6885574575036228 -4061.0,0.688319679248239 -4062.0,0.6880819831043741 -4063.0,0.6878443690436726 -4064.0,0.6876068370377891 -4065.0,0.6873693870583878 -4066.0,0.6871320190771425 -4067.0,0.6868947330657369 -4068.0,0.6866575289958646 -4069.0,0.6864204068392289 -4070.0,0.6861833665675428 -4071.0,0.685946408152529 -4072.0,0.6857095315659205 -4073.0,0.6854727367794592 -4074.0,0.6852360237648975 -4075.0,0.6849993924939971 -4076.0,0.6847628429385296 -4077.0,0.6845263750702766 -4078.0,0.6842899888610289 -4079.0,0.6840536842825875 -4080.0,0.683817461306763 -4081.0,0.6835813199053757 -4082.0,0.6833452600502556 -4083.0,0.6831092817132426 -4084.0,0.6828733848661861 -4085.0,0.6826375694809454 -4086.0,0.6824018355293894 -4087.0,0.6821661829833967 -4088.0,0.6819306118148558 -4089.0,0.6816951219956646 -4090.0,0.6814597134977312 -4091.0,0.6812243862929727 -4092.0,0.6809891403533165 -4093.0,0.6807539756506994 -4094.0,0.6805188921570681 -4095.0,0.6802838898443786 -4096.0,0.6800489686845971 -4097.0,0.679814128649699 -4098.0,0.6795793697116698 -4099.0,0.6793446918425043 -4100.0,0.6791100950142073 -4101.0,0.6788755791987929 -4102.0,0.6786411443682853 -4103.0,0.678406790494718 -4104.0,0.6781725175501343 -4105.0,0.6779383255065872 -4106.0,0.6777042143361391 -4107.0,0.6774701840108626 -4108.0,0.6772362345028393 -4109.0,0.6770023657841608 -4110.0,0.6767685778269285 -4111.0,0.6765348706032528 -4112.0,0.6763012440852544 -4113.0,0.6760676982450632 -4114.0,0.675834233054819 -4115.0,0.6756008484866711 -4116.0,0.6753675445127785 -4117.0,0.6751343211053095 -4118.0,0.6749011782364424 -4119.0,0.6746681158783648 -4120.0,0.6744351340032745 -4121.0,0.674202232583378 -4122.0,0.673969411590892 -4123.0,0.6737366709980427 -4124.0,0.6735040107770658 -4125.0,0.6732714309002066 -4126.0,0.67303893133972 -4127.0,0.6728065120678708 -4128.0,0.6725741730569327 -4129.0,0.6723419142791894 -4130.0,0.6721097357069343 -4131.0,0.6718776373124702 -4132.0,0.6716456190681093 -4133.0,0.6714136809461735 -4134.0,0.6711818229189943 -4135.0,0.6709500449589129 -4136.0,0.6707183470382796 -4137.0,0.6704867291294547 -4138.0,0.6702551912048079 -4139.0,0.6700237332367184 -4140.0,0.6697923551975749 -4141.0,0.6695610570597756 -4142.0,0.6693298387957285 -4143.0,0.6690987003778508 -4144.0,0.6688676417785695 -4145.0,0.6686366629703209 -4146.0,0.668405763925551 -4147.0,0.6681749446167151 -4148.0,0.6679442050162783 -4149.0,0.6677135450967148 -4150.0,0.6674829648305088 -4151.0,0.6672524641901537 -4152.0,0.6670220431481524 -4153.0,0.6667917016770174 -4154.0,0.6665614397492705 -4155.0,0.6663312573374434 -4156.0,0.6661011544140767 -4157.0,0.665871130951721 -4158.0,0.6656411869229363 -4159.0,0.6654113223002917 -4160.0,0.665181537056366 -4161.0,0.6649518311637477 -4162.0,0.6647222045950345 -4163.0,0.6644926573228336 -4164.0,0.6642631893197616 -4165.0,0.6640338005584447 -4166.0,0.6638044910115187 -4167.0,0.6635752606516284 -4168.0,0.6633461094514282 -4169.0,0.6631170373835824 -4170.0,0.6628880444207641 -4171.0,0.6626591305356561 -4172.0,0.6624302957009507 -4173.0,0.6622015398893496 -4174.0,0.6619728630735638 -4175.0,0.661744265226314 -4176.0,0.6615157463203301 -4177.0,0.6612873063283513 -4178.0,0.6610589452231266 -4179.0,0.660830662977414 -4180.0,0.6606024595639811 -4181.0,0.660374334955605 -4182.0,0.6601462891250721 -4183.0,0.6599183220451781 -4184.0,0.6596904336887283 -4185.0,0.6594626240285372 -4186.0,0.6592348930374287 -4187.0,0.6590072406882364 -4188.0,0.6587796669538026 -4189.0,0.65855217180698 -4190.0,0.6583247552206296 -4191.0,0.6580974171676225 -4192.0,0.6578701576208388 -4193.0,0.6576429765531682 -4194.0,0.6574158739375096 -4195.0,0.6571888497467714 -4196.0,0.6569619039538711 -4197.0,0.6567350365317358 -4198.0,0.6565082474533019 -4199.0,0.6562815366915152 -4200.0,0.6560549042193307 -4201.0,0.6558283500097126 -4202.0,0.6556018740356349 -4203.0,0.6553754762700804 -4204.0,0.6551491566860419 -4205.0,0.6549229152565207 -4206.0,0.6546967519545281 -4207.0,0.6544706667530844 -4208.0,0.6542446596252194 -4209.0,0.6540187305439717 -4210.0,0.6537928794823902 -4211.0,0.653567106413532 -4212.0,0.6533414113104643 -4213.0,0.6531157941462632 -4214.0,0.6528902548940143 -4215.0,0.6526647935268124 -4216.0,0.6524394100177615 -4217.0,0.6522141043399751 -4218.0,0.6519888764665758 -4219.0,0.6517637263706957 -4220.0,0.6515386540254758 -4221.0,0.6513136594040668 -4222.0,0.6510887424796284 -4223.0,0.6508639032253297 -4224.0,0.6506391416143491 -4225.0,0.6504144576198739 -4226.0,0.6501898512151012 -4227.0,0.649965322373237 -4228.0,0.6497408710674967 -4229.0,0.6495164972711047 -4230.0,0.6492922009572951 -4231.0,0.6490679820993108 -4232.0,0.6488438406704042 -4233.0,0.648619776643837 -4234.0,0.6483957899928797 -4235.0,0.6481718806908126 -4236.0,0.6479480487109247 -4237.0,0.6477242940265147 -4238.0,0.6475006166108901 -4239.0,0.647277016437368 -4240.0,0.6470534934792744 -4241.0,0.6468300477099448 -4242.0,0.6466066791027236 -4243.0,0.6463833876309646 -4244.0,0.6461601732680307 -4245.0,0.6459370359872941 -4246.0,0.6457139757621362 -4247.0,0.6454909925659476 -4248.0,0.6452680863721277 -4249.0,0.6450452571540858 -4250.0,0.6448225048852397 -4251.0,0.644599829539017 -4252.0,0.6443772310888538 -4253.0,0.644154709508196 -4254.0,0.6439322647704984 -4255.0,0.6437098968492246 -4256.0,0.6434876057178482 -4257.0,0.6432653913498513 -4258.0,0.6430432537187252 -4259.0,0.6428211927979707 -4260.0,0.6425992085610974 -4261.0,0.6423773009816244 -4262.0,0.6421554700330796 -4263.0,0.6419337156890002 -4264.0,0.6417120379229325 -4265.0,0.641490436708432 -4266.0,0.6412689120190633 -4267.0,0.6410474638284 -4268.0,0.6408260921100253 -4269.0,0.6406047968375307 -4270.0,0.6403835779845175 -4271.0,0.640162435524596 -4272.0,0.6399413694313854 -4273.0,0.6397203796785141 -4274.0,0.6394994662396197 -4275.0,0.6392786290883489 -4276.0,0.6390578681983573 -4277.0,0.6388371835433098 -4278.0,0.6386165750968803 -4279.0,0.6383960428327519 -4280.0,0.6381755867246166 -4281.0,0.6379552067461757 -4282.0,0.6377349028711394 -4283.0,0.637514675073227 -4284.0,0.6372945233261671 -4285.0,0.6370744476036971 -4286.0,0.6368544478795636 -4287.0,0.6366345241275222 -4288.0,0.6364146763213375 -4289.0,0.6361949044347835 -4290.0,0.6359752084416429 -4291.0,0.6357555883157076 -4292.0,0.6355360440307785 -4293.0,0.6353165755606653 -4294.0,0.6350971828791875 -4295.0,0.6348778659601729 -4296.0,0.6346586247774585 -4297.0,0.6344394593048905 -4298.0,0.6342203695163243 -4299.0,0.6340013553856237 -4300.0,0.6337824168866621 -4301.0,0.6335635539933219 -4302.0,0.6333447666794939 -4303.0,0.6331260549190788 -4304.0,0.6329074186859858 -4305.0,0.6326888579541329 -4306.0,0.6324703726974478 -4307.0,0.6322519628898664 -4308.0,0.6320336285053344 -4309.0,0.6318153695178058 -4310.0,0.6315971859012441 -4311.0,0.6313790776296215 -4312.0,0.6311610446769192 -4313.0,0.6309430870171275 -4314.0,0.6307252046242459 -4315.0,0.6305073974722821 -4316.0,0.6302896655352537 -4317.0,0.6300720087871867 -4318.0,0.6298544272021164 -4319.0,0.6296369207540867 -4320.0,0.6294194894171508 -4321.0,0.6292021331653707 -4322.0,0.6289848519728173 -4323.0,0.6287676458135707 -4324.0,0.6285505146617196 -4325.0,0.6283334584913619 -4326.0,0.6281164772766045 -4327.0,0.627899570991563 -4328.0,0.6276827396103621 -4329.0,0.6274659831071354 -4330.0,0.6272493014560254 -4331.0,0.6270326946311837 -4332.0,0.6268161626067704 -4333.0,0.6265997053569551 -4334.0,0.6263833228559159 -4335.0,0.6261670150778399 -4336.0,0.6259507819969232 -4337.0,0.6257346235873708 -4338.0,0.6255185398233966 -4339.0,0.6253025306792233 -4340.0,0.6250865961290826 -4341.0,0.6248707361472151 -4342.0,0.6246549507078702 -4343.0,0.6244392397853066 -4344.0,0.6242236033537911 -4345.0,0.6240080413876001 -4346.0,0.6237925538610187 -4347.0,0.6235771407483406 -4348.0,0.6233618020238687 -4349.0,0.6231465376619147 -4350.0,0.622931347636799 -4351.0,0.6227162319228512 -4352.0,0.6225011904944093 -4353.0,0.6222862233258206 -4354.0,0.6220713303914411 -4355.0,0.6218565116656356 -4356.0,0.6216417671227777 -4357.0,0.62142709673725 -4358.0,0.6212125004834441 -4359.0,0.6209979783357599 -4360.0,0.6207835302686067 -4361.0,0.6205691562564022 -4362.0,0.6203548562735733 -4363.0,0.6201406302945556 -4364.0,0.6199264782937934 -4365.0,0.61971240024574 -4366.0,0.6194983961248575 -4367.0,0.6192844659056165 -4368.0,0.619070609562497 -4369.0,0.6188568270699873 -4370.0,0.6186431184025849 -4371.0,0.6184294835347958 -4372.0,0.6182159224411348 -4373.0,0.6180024350961257 -4374.0,0.6177890214743011 -4375.0,0.6175756815502024 -4376.0,0.6173624152983794 -4377.0,0.6171492226933912 -4378.0,0.6169361037098055 -4379.0,0.6167230583221985 -4380.0,0.6165100865051558 -4381.0,0.6162971882332712 -4382.0,0.6160843634811475 -4383.0,0.6158716122233963 -4384.0,0.6156589344346378 -4385.0,0.6154463300895014 -4386.0,0.6152337991626247 -4387.0,0.6150213416286544 -4388.0,0.6148089574622457 -4389.0,0.614596646638063 -4390.0,0.614384409130779 -4391.0,0.6141722449150753 -4392.0,0.6139601539656422 -4393.0,0.613748136257179 -4394.0,0.6135361917643933 -4395.0,0.6133243204620019 -4396.0,0.6131125223247299 -4397.0,0.6129007973273115 -4398.0,0.6126891454444893 -4399.0,0.6124775666510148 -4400.0,0.6122660609216484 -4401.0,0.6120546282311586 -4402.0,0.6118432685543234 -4403.0,0.6116319818659289 -4404.0,0.6114207681407703 -4405.0,0.6112096273536513 -4406.0,0.6109985594793842 -4407.0,0.6107875644927904 -4408.0,0.6105766423686995 -4409.0,0.61036579308195 -4410.0,0.6101550166073895 -4411.0,0.6099443129198735 -4412.0,0.6097336819942667 -4413.0,0.6095231238054424 -4414.0,0.6093126383282825 -4415.0,0.6091022255376778 -4416.0,0.6088918854085273 -4417.0,0.6086816179157393 -4418.0,0.60847142303423 -4419.0,0.608261300738925 -4420.0,0.6080512510047581 -4421.0,0.607841273806672 -4422.0,0.6076313691196178 -4423.0,0.6074215369185556 -4424.0,0.6072117771784538 -4425.0,0.6070020898742896 -4426.0,0.6067924749810489 -4427.0,0.6065829324737262 -4428.0,0.6063734623273245 -4429.0,0.6061640645168556 -4430.0,0.6059547390173399 -4431.0,0.6057454858038063 -4432.0,0.6055363048512924 -4433.0,0.6053271961348445 -4434.0,0.6051181596295176 -4435.0,0.6049091953103749 -4436.0,0.6047003031524887 -4437.0,0.6044914831309396 -4438.0,0.6042827352208168 -4439.0,0.6040740593972184 -4440.0,0.6038654556352506 -4441.0,0.6036569239100289 -4442.0,0.6034484641966766 -4443.0,0.6032400764703263 -4444.0,0.6030317607061185 -4445.0,0.602823516879203 -4446.0,0.6026153449647377 -4447.0,0.6024072449378891 -4448.0,0.6021992167738325 -4449.0,0.6019912604477515 -4450.0,0.6017833759348388 -4451.0,0.6015755632102949 -4452.0,0.6013678222493294 -4453.0,0.6011601530271604 -4454.0,0.6009525555190143 -4455.0,0.6007450297001263 -4456.0,0.6005375755457403 -4457.0,0.6003301930311082 -4458.0,0.600122882131491 -4459.0,0.5999156428221579 -4460.0,0.5997084750783869 -4461.0,0.5995013788754642 -4462.0,0.5992943541886848 -4463.0,0.5990874009933523 -4464.0,0.5988805192647786 -4465.0,0.5986737089782842 -4466.0,0.5984669701091981 -4467.0,0.5982603026328579 -4468.0,0.5980537065246098 -4469.0,0.5978471817598082 -4470.0,0.5976407283138163 -4471.0,0.5974343461620057 -4472.0,0.5972280352797564 -4473.0,0.5970217956424573 -4474.0,0.5968156272255053 -4475.0,0.596609530004306 -4476.0,0.5964035039542736 -4477.0,0.5961975490508306 -4478.0,0.5959916652694082 -4479.0,0.5957858525854458 -4480.0,0.5955801109743916 -4481.0,0.5953744404117021 -4482.0,0.5951688408728422 -4483.0,0.5949633123332855 -4484.0,0.5947578547685138 -4485.0,0.5945524681540176 -4486.0,0.5943471524652959 -4487.0,0.5941419076778558 -4488.0,0.5939367337672133 -4489.0,0.5937316307088925 -4490.0,0.5935265984784261 -4491.0,0.5933216370513553 -4492.0,0.5931167464032298 -4493.0,0.5929119265096074 -4494.0,0.5927071773460548 -4495.0,0.5925024988881469 -4496.0,0.5922978911114669 -4497.0,0.5920933539916067 -4498.0,0.5918888875041665 -4499.0,0.5916844916247549 -4500.0,0.591480166328989 -4501.0,0.5912759115924943 -4502.0,0.5910717273909045 -4503.0,0.5908676136998623 -4504.0,0.590663570495018 -4505.0,0.590459597752031 -4506.0,0.5902556954465689 -4507.0,0.5900518635543074 -4508.0,0.5898481020509311 -4509.0,0.5896444109121325 -4510.0,0.5894407901136127 -4511.0,0.5892372396310814 -4512.0,0.5890337594402566 -4513.0,0.5888303495168644 -4514.0,0.5886270098366396 -4515.0,0.5884237403753251 -4516.0,0.5882205411086725 -4517.0,0.5880174120124415 -4518.0,0.5878143530624004 -4519.0,0.5876113642343257 -4520.0,0.5874084455040022 -4521.0,0.5872055968472233 -4522.0,0.5870028182397905 -4523.0,0.586800109657514 -4524.0,0.586597471076212 -4525.0,0.5863949024717112 -4526.0,0.5861924038198466 -4527.0,0.5859899750964618 -4528.0,0.5857876162774083 -4529.0,0.5855853273385462 -4530.0,0.585383108255744 -4531.0,0.5851809590048784 -4532.0,0.5849788795618346 -4533.0,0.5847768699025057 -4534.0,0.5845749300027936 -4535.0,0.5843730598386083 -4536.0,0.5841712593858683 -4537.0,0.5839695286205001 -4538.0,0.5837678675184387 -4539.0,0.5835662760556275 -4540.0,0.583364754208018 -4541.0,0.5831633019515703 -4542.0,0.5829619192622524 -4543.0,0.5827606061160409 -4544.0,0.5825593624889206 -4545.0,0.5823581883568847 -4546.0,0.5821570836959344 -4547.0,0.5819560484820795 -4548.0,0.5817550826913379 -4549.0,0.581554186299736 -4550.0,0.5813533592833082 -4551.0,0.5811526016180973 -4552.0,0.5809519132801545 -4553.0,0.580751294245539 -4554.0,0.5805507444903184 -4555.0,0.5803502639905687 -4556.0,0.5801498527223738 -4557.0,0.5799495106618264 -4558.0,0.5797492377850271 -4559.0,0.5795490340680846 -4560.0,0.5793488994871162 -4561.0,0.5791488340182473 -4562.0,0.5789488376376115 -4563.0,0.5787489103213508 -4564.0,0.5785490520456152 -4565.0,0.5783492627865632 -4566.0,0.5781495425203612 -4567.0,0.5779498912231841 -4568.0,0.5777503088712151 -4569.0,0.5775507954406454 -4570.0,0.5773513509076744 -4571.0,0.57715197524851 -4572.0,0.576952668439368 -4573.0,0.5767534304564726 -4574.0,0.5765542612760561 -4575.0,0.5763551608743592 -4576.0,0.5761561292276306 -4577.0,0.5759571663121272 -4578.0,0.5757582721041143 -4579.0,0.5755594465798652 -4580.0,0.5753606897156616 -4581.0,0.5751620014877931 -4582.0,0.5749633818725576 -4583.0,0.5747648308462613 -4584.0,0.5745663483852185 -4585.0,0.5743679344657517 -4586.0,0.5741695890641917 -4587.0,0.5739713121568771 -4588.0,0.5737731037201551 -4589.0,0.5735749637303807 -4590.0,0.5733768921639175 -4591.0,0.5731788889971369 -4592.0,0.5729809542064184 -4593.0,0.5727830877681499 -4594.0,0.5725852896587275 -4595.0,0.5723875598545553 -4596.0,0.5721898983320454 -4597.0,0.5719923050676183 -4598.0,0.5717947800377028 -4599.0,0.5715973232187354 -4600.0,0.5713999345871608 -4601.0,0.5712026141194322 -4602.0,0.5710053617920107 -4603.0,0.5708081775813654 -4604.0,0.5706110614639738 -4605.0,0.5704140134163213 -4606.0,0.5702170334149014 -4607.0,0.570020121436216 -4608.0,0.569823277456775 -4609.0,0.5696265014530962 -4610.0,0.5694297934017056 -4611.0,0.5692331532791376 -4612.0,0.5690365810619342 -4613.0,0.568840076726646 -4614.0,0.5686436402498313 -4615.0,0.5684472716080566 -4616.0,0.5682509707778969 -4617.0,0.5680547377359345 -4618.0,0.5678585724587605 -4619.0,0.5676624749229737 -4620.0,0.5674664451051813 -4621.0,0.5672704829819981 -4622.0,0.5670745885300473 -4623.0,0.5668787617259603 -4624.0,0.5666830025463763 -4625.0,0.5664873109679425 -4626.0,0.5662916869673146 -4627.0,0.5660961305211558 -4628.0,0.5659006416061378 -4629.0,0.5657052201989402 -4630.0,0.5655098662762507 -4631.0,0.5653145798147649 -4632.0,0.5651193607911865 -4633.0,0.5649242091822274 -4634.0,0.5647291249646075 -4635.0,0.5645341081150544 -4636.0,0.5643391586103044 -4637.0,0.5641442764271012 -4638.0,0.5639494615421967 -4639.0,0.5637547139323511 -4640.0,0.5635600335743324 -4641.0,0.5633654204449164 -4642.0,0.5631708745208877 -4643.0,0.5629763957790377 -4644.0,0.5627819841961671 -4645.0,0.5625876397490838 -4646.0,0.5623933624146038 -4647.0,0.5621991521695514 -4648.0,0.5620050089907587 -4649.0,0.5618109328550658 -4650.0,0.5616169237393208 -4651.0,0.5614229816203798 -4652.0,0.5612291064751072 -4653.0,0.5610352982803747 -4654.0,0.5608415570130627 -4655.0,0.5606478826500592 -4656.0,0.5604542751682601 -4657.0,0.5602607345445696 -4658.0,0.5600672607558997 -4659.0,0.5598738537791705 -4660.0,0.5596805135913098 -4661.0,0.5594872401692534 -4662.0,0.5592940334899454 -4663.0,0.5591008935303377 -4664.0,0.5589078202673898 -4665.0,0.5587148136780699 -4666.0,0.5585218737393535 -4667.0,0.5583290004282241 -4668.0,0.5581361937216737 -4669.0,0.5579434535967015 -4670.0,0.5577507800303152 -4671.0,0.5575581729995301 -4672.0,0.5573656324813699 -4673.0,0.5571731584528656 -4674.0,0.5569807508910567 -4675.0,0.5567884097729902 -4676.0,0.5565961350757211 -4677.0,0.5564039267763128 -4678.0,0.5562117848518359 -4679.0,0.5560197092793695 -4680.0,0.5558277000360002 -4681.0,0.5556357570988228 -4682.0,0.55544388044494 -4683.0,0.5552520700514622 -4684.0,0.5550603258955077 -4685.0,0.5548686479542031 -4686.0,0.5546770362046823 -4687.0,0.5544854906240878 -4688.0,0.5542940111895693 -4689.0,0.5541025978782848 -4690.0,0.5539112506674001 -4691.0,0.5537199695340888 -4692.0,0.5535287544555325 -4693.0,0.5533376054089207 -4694.0,0.5531465223714507 -4695.0,0.5529555053203276 -4696.0,0.5527645542327645 -4697.0,0.5525736690859823 -4698.0,0.5523828498572099 -4699.0,0.5521920965236838 -4700.0,0.5520014090626486 -4701.0,0.5518107874513567 -4702.0,0.5516202316670683 -4703.0,0.5514297416870516 -4704.0,0.5512393174885823 -4705.0,0.5510489590489444 -4706.0,0.5508586663454293 -4707.0,0.5506684393553368 -4708.0,0.5504782780559739 -4709.0,0.5502881824246558 -4710.0,0.5500981524387056 -4711.0,0.549908188075454 -4712.0,0.5497182893122398 -4713.0,0.5495284561264092 -4714.0,0.5493386884953168 -4715.0,0.5491489863963244 -4716.0,0.5489593498068019 -4717.0,0.5487697787041275 -4718.0,0.5485802730656862 -4719.0,0.5483908328688717 -4720.0,0.548201458091085 -4721.0,0.5480121487097351 -4722.0,0.5478229047022389 -4723.0,0.5476337260460209 -4724.0,0.5474446127185134 -4725.0,0.5472555646971566 -4726.0,0.5470665819593985 -4727.0,0.5468776644826947 -4728.0,0.5466888122445088 -4729.0,0.5465000252223121 -4730.0,0.5463113033935838 -4731.0,0.5461226467358107 -4732.0,0.5459340552264872 -4733.0,0.545745528843116 -4734.0,0.5455570675632072 -4735.0,0.5453686713642787 -4736.0,0.5451803402238562 -4737.0,0.5449920741194733 -4738.0,0.5448038730286711 -4739.0,0.5446157369289985 -4740.0,0.5444276657980124 -4741.0,0.5442396596132772 -4742.0,0.5440517183523653 -4743.0,0.5438638419928564 -4744.0,0.5436760305123385 -4745.0,0.5434882838884068 -4746.0,0.5433006020986646 -4747.0,0.5431129851207229 -4748.0,0.5429254329322003 -4749.0,0.5427379455107233 -4750.0,0.5425505228339258 -4751.0,0.5423631648794498 -4752.0,0.5421758716249447 -4753.0,0.541988643048068 -4754.0,0.5418014791264847 -4755.0,0.5416143798378673 -4756.0,0.5414273451598963 -4757.0,0.5412403750702599 -4758.0,0.5410534695466539 -4759.0,0.5408666285667818 -4760.0,0.5406798521083548 -4761.0,0.540493140149092 -4762.0,0.5403064926667198 -4763.0,0.5401199096389727 -4764.0,0.5399333910435926 -4765.0,0.5397469368583292 -4766.0,0.5395605470609399 -4767.0,0.5393742216291898 -4768.0,0.5391879605408515 -4769.0,0.5390017637737056 -4770.0,0.53881563130554 -4771.0,0.5386295631141506 -4772.0,0.5384435591773407 -4773.0,0.5382576194729214 -4774.0,0.5380717439787115 -4775.0,0.5378859326725375 -4776.0,0.5377001855322332 -4777.0,0.5375145025356406 -4778.0,0.5373288836606089 -4779.0,0.5371433288849953 -4780.0,0.5369578381866642 -4781.0,0.5367724115434882 -4782.0,0.5365870489333471 -4783.0,0.5364017503341284 -4784.0,0.5362165157237274 -4785.0,0.5360313450800471 -4786.0,0.5358462383809979 -4787.0,0.5356611956044979 -4788.0,0.5354762167284728 -4789.0,0.535291301730856 -4790.0,0.5351064505895886 -4791.0,0.5349216632826191 -4792.0,0.5347369397879037 -4793.0,0.5345522800834064 -4794.0,0.5343676841470983 -4795.0,0.5341831519569588 -4796.0,0.5339986834909743 -4797.0,0.5338142787271394 -4798.0,0.5336299376434556 -4799.0,0.5334456602179325 -4800.0,0.5332614464285872 -4801.0,0.5330772962534442 -4802.0,0.5328932096705358 -4803.0,0.5327091866579019 -4804.0,0.5325252271935897 -4805.0,0.5323413312556544 -4806.0,0.5321574988221583 -4807.0,0.5319737298711718 -4808.0,0.5317900243807724 -4809.0,0.5316063823290456 -4810.0,0.5314228036940839 -4811.0,0.531239288453988 -4812.0,0.5310558365868657 -4813.0,0.5308724480708327 -4814.0,0.5306891228840119 -4815.0,0.5305058610045341 -4816.0,0.5303226624105374 -4817.0,0.5301395270801675 -4818.0,0.529956454991578 -4819.0,0.5297734461229292 -4820.0,0.52959050045239 -4821.0,0.529407617958136 -4822.0,0.5292247986183507 -4823.0,0.5290420424112251 -4824.0,0.5288593493149578 -4825.0,0.5286767193077547 -4826.0,0.5284941523678296 -4827.0,0.5283116484734034 -4828.0,0.5281292076027048 -4829.0,0.5279468297339698 -4830.0,0.5277645148454422 -4831.0,0.5275822629153731 -4832.0,0.5274000739220213 -4833.0,0.5272179478436527 -4834.0,0.5270358846585412 -4835.0,0.526853884344968 -4836.0,0.5266719468812218 -4837.0,0.5264900722455986 -4838.0,0.5263082604164023 -4839.0,0.526126511371944 -4840.0,0.5259448250905423 -4841.0,0.5257632015505234 -4842.0,0.5255816407302208 -4843.0,0.525400142607976 -4844.0,0.5252187071621371 -4845.0,0.5250373343710606 -4846.0,0.5248560242131098 -4847.0,0.5246747766666559 -4848.0,0.5244935917100771 -4849.0,0.5243124693217597 -4850.0,0.5241314094800968 -4851.0,0.5239504121634896 -4852.0,0.5237694773503461 -4853.0,0.5235886050190823 -4854.0,0.5234077951481215 -4855.0,0.5232270477158943 -4856.0,0.5230463627008389 -4857.0,0.5228657400814009 -4858.0,0.5226851798360332 -4859.0,0.5225046819431964 -4860.0,0.5223242463813585 -4861.0,0.5221438731289947 -4862.0,0.521963562164588 -4863.0,0.5217833134666282 -4864.0,0.5216031270136133 -4865.0,0.5214230027840483 -4866.0,0.5212429407564456 -4867.0,0.5210629409093253 -4868.0,0.5208830032212145 -4869.0,0.5207031276706481 -4870.0,0.5205233142361682 -4871.0,0.5203435628963243 -4872.0,0.5201638736296735 -4873.0,0.5199842464147802 -4874.0,0.5198046812302161 -4875.0,0.5196251780545604 -4876.0,0.5194457368663997 -4877.0,0.5192663576443279 -4878.0,0.5190870403669465 -4879.0,0.5189077850128642 -4880.0,0.5187285915606971 -4881.0,0.5185494599890687 -4882.0,0.5183703902766099 -4883.0,0.5181913824019592 -4884.0,0.518012436343762 -4885.0,0.5178335520806716 -4886.0,0.5176547295913482 -4887.0,0.5174759688544596 -4888.0,0.5172972698486811 -4889.0,0.517118632552695 -4890.0,0.5169400569451912 -4891.0,0.5167615430048672 -4892.0,0.5165830907104273 -4893.0,0.5164047000405836 -4894.0,0.5162263709740553 -4895.0,0.5160481034895691 -4896.0,0.515869897565859 -4897.0,0.5156917531816663 -4898.0,0.5155136703157397 -4899.0,0.515335648946835 -4900.0,0.515157689053716 -4901.0,0.514979790615153 -4902.0,0.5148019536099241 -4903.0,0.5146241780168147 -4904.0,0.5144464638146174 -4905.0,0.5142688109821324 -4906.0,0.5140912194981667 -4907.0,0.5139136893415351 -4908.0,0.5137362204910596 -4909.0,0.5135588129255693 -4910.0,0.5133814666239008 -4911.0,0.5132041815648981 -4912.0,0.5130269577274124 -4913.0,0.512849795090302 -4914.0,0.5126726936324328 -4915.0,0.512495653332678 -4916.0,0.5123186741699178 -4917.0,0.5121417561230399 -4918.0,0.5119648991709393 -4919.0,0.5117881032925184 -4920.0,0.5116113684666865 -4921.0,0.5114346946723606 -4922.0,0.5112580818884647 -4923.0,0.5110815300939302 -4924.0,0.5109050392676958 -4925.0,0.5107286093887075 -4926.0,0.5105522404359182 -4927.0,0.5103759323882887 -4928.0,0.5101996852247865 -4929.0,0.5100234989243869 -4930.0,0.5098473734660719 -4931.0,0.509671308828831 -4932.0,0.5094953049916612 -4933.0,0.5093193619335663 -4934.0,0.5091434796335578 -4935.0,0.5089676580706539 -4936.0,0.5087918972238806 -4937.0,0.508616197072271 -4938.0,0.5084405575948651 -4939.0,0.5082649787707105 -4940.0,0.5080894605788621 -4941.0,0.5079140029983815 -4942.0,0.5077386060083382 -4943.0,0.5075632695878085 -4944.0,0.5073879937158761 -4945.0,0.5072127783716317 -4946.0,0.5070376235341736 -4947.0,0.5068625291826069 -4948.0,0.5066874952960443 -4949.0,0.5065125218536055 -4950.0,0.5063376088344174 -4951.0,0.5061627562176141 -4952.0,0.505987963982337 -4953.0,0.5058132321077348 -4954.0,0.5056385605729631 -4955.0,0.5054639493571847 -4956.0,0.5052893984395702 -4957.0,0.5051149077992967 -4958.0,0.5049404774155486 -4959.0,0.5047661072675179 -4960.0,0.5045917973344033 -4961.0,0.504417547595411 -4962.0,0.5042433580297543 -4963.0,0.5040692286166535 -4964.0,0.5038951593353364 -4965.0,0.5037211501650377 -4966.0,0.5035472010849995 -4967.0,0.5033733120744708 -4968.0,0.503199483112708 -4969.0,0.5030257141789746 -4970.0,0.502852005252541 -4971.0,0.5026783563126853 -4972.0,0.5025047673386923 -4973.0,0.5023312383098542 -4974.0,0.5021577692054701 -4975.0,0.5019843600048464 -4976.0,0.5018110106872967 -4977.0,0.5016377212321418 -4978.0,0.5014644916187094 -4979.0,0.5012913218263345 -4980.0,0.5011182118343592 -4981.0,0.5009451616221329 -4982.0,0.5007721711690116 -4983.0,0.5005992404543592 -4984.0,0.500426369457546 -4985.0,0.50025355815795 -4986.0,0.500080806534956 -4987.0,0.499908114567956 -4988.0,0.499735482236349 -4989.0,0.4995629095195413 -4990.0,0.4993903963969462 -4991.0,0.49921794284798426 -4992.0,0.49904554885208285 -4993.0,0.49887321438867677 -4994.0,0.49870093943720767 -4995.0,0.4985287239771245 -4996.0,0.49835656798788314 -4997.0,0.4981844714489467 -4998.0,0.4980124343397852 -4999.0,0.497840456639876 -5000.0,0.49766853832870334 -5001.0,0.49749667938575864 -5002.0,0.49732487979054035 -5003.0,0.497153139522554 -5004.0,0.49698145856131243 -5005.0,0.4968098368863352 -5006.0,0.49663827447714903 -5007.0,0.49646677131328787 -5008.0,0.49629532737429266 -5009.0,0.4961239426397113 -5010.0,0.49595261708909893 -5011.0,0.4957813507020177 -5012.0,0.4956101434580366 -5013.0,0.49543899533673197 -5014.0,0.4952679063176871 -5015.0,0.49509687638049227 -5016.0,0.4949259055047449 -5017.0,0.4947549936700494 -5018.0,0.4945841408560172 -5019.0,0.49441334704226686 -5020.0,0.49424261220842386 -5021.0,0.49407193633412083 -5022.0,0.4939013193989973 -5023.0,0.4937307613827 -5024.0,0.49356026226488264 -5025.0,0.4933898220252058 -5026.0,0.49321944064333734 -5027.0,0.49304911809895186 -5028.0,0.4928788543717312 -5029.0,0.4927086494413641 -5030.0,0.49253850328754645 -5031.0,0.4923684158899809 -5032.0,0.4921983872283774 -5033.0,0.4920284172824527 -5034.0,0.49185850603193065 -5035.0,0.49168865345654206 -5036.0,0.49151885953602475 -5037.0,0.49134912425012356 -5038.0,0.49117944757859033 -5039.0,0.4910098295011838 -5040.0,0.4908402699976699 -5041.0,0.4906707690478212 -5042.0,0.49050132663141766 -5043.0,0.49033194272824604 -5044.0,0.49016261731809996 -5045.0,0.48999335038078023 -5046.0,0.48982414189609447 -5047.0,0.48965499184385736 -5048.0,0.4894859002038906 -5049.0,0.48931686695602267 -5050.0,0.48914789208008924 -5051.0,0.4889789755559327 -5052.0,0.48881011736340274 -5053.0,0.48864131748235573 -5054.0,0.48847257589265497 -5055.0,0.48830389257417095 -5056.0,0.4881352675067809 -5057.0,0.4879667006703691 -5058.0,0.48779819204482683 -5059.0,0.4876297416100521 -5060.0,0.48746134934595003 -5061.0,0.4872930152324328 -5062.0,0.48712473924941924 -5063.0,0.4869565213768353 -5064.0,0.4867883615946138 -5065.0,0.4866202598826945 -5066.0,0.4864522162210241 -5067.0,0.48628423058955617 -5068.0,0.4861163029682513 -5069.0,0.485948433337077 -5070.0,0.48578062167600755 -5071.0,0.4856128679650243 -5072.0,0.4854451721841154 -5073.0,0.485277534313276 -5074.0,0.4851099543325082 -5075.0,0.48494243222182076 -5076.0,0.48477496796122965 -5077.0,0.48460756153075757 -5078.0,0.48444021291043415 -5079.0,0.4842729220802959 -5080.0,0.48410568902038625 -5081.0,0.4839385137107555 -5082.0,0.483771396131461 -5083.0,0.48360433626256666 -5084.0,0.48343733408414347 -5085.0,0.4832703895762694 -5086.0,0.4831035027190291 -5087.0,0.4829366734925142 -5088.0,0.4827699018768232 -5089.0,0.48260318785206147 -5090.0,0.48243653139834125 -5091.0,0.4822699324957816 -5092.0,0.4821033911245085 -5093.0,0.48193690726465477 -5094.0,0.48177048089636015 -5095.0,0.48160411199977116 -5096.0,0.4814378005550412 -5097.0,0.4812715465423305 -5098.0,0.48110534994180615 -5099.0,0.4809392107336422 -5100.0,0.48077312889801943 -5101.0,0.48060710441512544 -5102.0,0.48044113726515475 -5103.0,0.4802752274283087 -5104.0,0.4801093748847954 -5105.0,0.47994357961482986 -5106.0,0.479777841598634 -5107.0,0.47961216081643643 -5108.0,0.4794465372484726 -5109.0,0.4792809708749849 -5110.0,0.4791154616762224 -5111.0,0.4789500096324411 -5112.0,0.4787846147239037 -5113.0,0.47861927693087997 -5114.0,0.47845399623364615 -5115.0,0.47828877261248554 -5116.0,0.4781236060476881 -5117.0,0.4779584965195507 -5118.0,0.47779344400837703 -5119.0,0.4776284484944775 -5120.0,0.4774635099581693 -5121.0,0.4772986283797765 -5122.0,0.4771338037396299 -5123.0,0.47696903601806717 -5124.0,0.4768043251954327 -5125.0,0.4766396712520777 -5126.0,0.4764750741683601 -5127.0,0.47631053392464473 -5128.0,0.47614605050130315 -5129.0,0.4759816238787136 -5130.0,0.4758172540372613 -5131.0,0.47565294095733807 -5132.0,0.4754886846193425 -5133.0,0.4753244850036801 -5134.0,0.475160342090763 -5135.0,0.4749962558610102 -5136.0,0.4748322262948472 -5137.0,0.4746682533727068 -5138.0,0.47450433707502804 -5139.0,0.47434047738225693 -5140.0,0.4741766742748462 -5141.0,0.4740129277332553 -5142.0,0.47384923773795057 -5143.0,0.47368560426940487 -5144.0,0.47352202730809795 -5145.0,0.4733585068345163 -5146.0,0.4731950428291531 -5147.0,0.4730316352725083 -5148.0,0.4728682841450885 -5149.0,0.47270498942740724 -5150.0,0.47254175109998453 -5151.0,0.47237856914334725 -5152.0,0.4722154435380291 -5153.0,0.47205237426457014 -5154.0,0.47188936130351766 -5155.0,0.47172640463542514 -5156.0,0.4715635042408533 -5157.0,0.4714006601003692 -5158.0,0.47123787219454666 -5159.0,0.4710751405039663 -5160.0,0.4709124650092155 -5161.0,0.47074984569088824 -5162.0,0.4705872825295851 -5163.0,0.47042477550591355 -5164.0,0.4702623246004877 -5165.0,0.4700999297939284 -5166.0,0.46993759106686306 -5167.0,0.4697753083999258 -5168.0,0.4696130817737576 -5169.0,0.46945091116900595 -5170.0,0.4692887965663251 -5171.0,0.4691267379463759 -5172.0,0.46896473528982596 -5173.0,0.46880278857734964 -5174.0,0.4686408977896277 -5175.0,0.4684790629073479 -5176.0,0.4683172839112045 -5177.0,0.4681555607818984 -5178.0,0.4679938935001372 -5179.0,0.46783228204663524 -5180.0,0.4676707264021134 -5181.0,0.46750922654729926 -5182.0,0.4673477824629271 -5183.0,0.4671863941297378 -5184.0,0.4670250615284789 -5185.0,0.4668637846399046 -5186.0,0.46670256344477573 -5187.0,0.46654139792385985 -5188.0,0.466380288057931 -5189.0,0.46621923382777 -5190.0,0.46605823521416423 -5191.0,0.46589729219790776 -5192.0,0.4657364047598012 -5193.0,0.4655755728806519 -5194.0,0.46541479654127377 -5195.0,0.4652540757224874 -5196.0,0.4650934104051199 -5197.0,0.4649328005700052 -5198.0,0.4647722461979836 -5199.0,0.4646117472699021 -5200.0,0.4644513037666145 -5201.0,0.4642909156689809 -5202.0,0.4641305829578683 -5203.0,0.4639703056141501 -5204.0,0.4638100836187064 -5205.0,0.46364991695242386 -5206.0,0.4634898055961958 -5207.0,0.4633297495309221 -5208.0,0.46316974873750927 -5209.0,0.4630098031968703 -5210.0,0.4628499128899249 -5211.0,0.4626900777975993 -5212.0,0.4625302979008263 -5213.0,0.4623705731805454 -5214.0,0.4622109036177027 -5215.0,0.46205128919325056 -5216.0,0.4618917298881483 -5217.0,0.46173222568336164 -5218.0,0.4615727765598628 -5219.0,0.4614133824986308 -5220.0,0.4612540434806509 -5221.0,0.46109475948691536 -5222.0,0.46093553049842256 -5223.0,0.4607763564961777 -5224.0,0.46061723746119254 -5225.0,0.4604581733744853 -5226.0,0.4602991642170808 -5227.0,0.46014020997001037 -5228.0,0.45998131061431197 -5229.0,0.45982246613103006 -5230.0,0.4596636765012156 -5231.0,0.45950494170592615 -5232.0,0.45934626172622595 -5233.0,0.45918763654318545 -5234.0,0.45902906613788197 -5235.0,0.45887055049139913 -5236.0,0.4587120895848272 -5237.0,0.4585536833992629 -5238.0,0.45839533191580956 -5239.0,0.45823703511557706 -5240.0,0.4580787929796816 -5241.0,0.45792060548924624 -5242.0,0.4577624726254002 -5243.0,0.4576043943692795 -5244.0,0.4574463707020265 -5245.0,0.4572884016047901 -5246.0,0.4571304870587258 -5247.0,0.45697262704499547 -5248.0,0.45681482154476766 -5249.0,0.4566570705392172 -5250.0,0.45649937400952567 -5251.0,0.45634173193688093 -5252.0,0.45618414430247756 -5253.0,0.45602661108751635 -5254.0,0.4558691322732048 -5255.0,0.4557117078407569 -5256.0,0.4555543377713929 -5257.0,0.4553970220463399 -5258.0,0.45523976064683114 -5259.0,0.45508255355410654 -5260.0,0.4549254007494124 -5261.0,0.45476830221400155 -5262.0,0.4546112579291333 -5263.0,0.45445426787607346 -5264.0,0.4542973320360941 -5265.0,0.4541404503904741 -5266.0,0.45398362292049854 -5267.0,0.453826849607459 -5268.0,0.45367013043265364 -5269.0,0.45351346537738696 -5270.0,0.45335685442297 -5271.0,0.4532002975507202 -5272.0,0.4530437947419615 -5273.0,0.4528873459780242 -5274.0,0.45273095124024515 -5275.0,0.4525746105099675 -5276.0,0.4524183237685411 -5277.0,0.45226209099732195 -5278.0,0.45210591217767265 -5279.0,0.45194978729096225 -5280.0,0.45179371631856613 -5281.0,0.45163769924186625 -5282.0,0.4514817360422508 -5283.0,0.45132582670111454 -5284.0,0.4511699711998587 -5285.0,0.45101416951989076 -5286.0,0.45085842164262474 -5287.0,0.4507027275494811 -5288.0,0.4505470872218866 -5289.0,0.45039150064127453 -5290.0,0.45023596778908453 -5291.0,0.4500804886467627 -5292.0,0.4499250631957614 -5293.0,0.4497696914175397 -5294.0,0.4496143732935627 -5295.0,0.44945910880530215 -5296.0,0.44930389793423614 -5297.0,0.4491487406618491 -5298.0,0.448993636969632 -5299.0,0.448838586839082 -5300.0,0.4486835902517028 -5301.0,0.44852864718900437 -5302.0,0.4483737576325032 -5303.0,0.44821892156372206 -5304.0,0.4480641389641902 -5305.0,0.4479094098154431 -5306.0,0.4477547340990227 -5307.0,0.44760011179647735 -5308.0,0.4474455428893618 -5309.0,0.447291027359237 -5310.0,0.4471365651876704 -5311.0,0.4469821563562359 -5312.0,0.4468278008465135 -5313.0,0.44667349864008976 -5314.0,0.4465192497185576 -5315.0,0.4463650540635162 -5316.0,0.4462109116565712 -5317.0,0.44605682247933437 -5318.0,0.4459027865134242 -5319.0,0.4457488037404652 -5320.0,0.4455948741420884 -5321.0,0.4454409976999312 -5322.0,0.44528717439563703 -5323.0,0.4451334042108561 -5324.0,0.44497968712724467 -5325.0,0.4448260231264654 -5326.0,0.4446724121901873 -5327.0,0.44451885430008575 -5328.0,0.4443653494378424 -5329.0,0.44421189758514523 -5330.0,0.4440584987236885 -5331.0,0.44390515283517296 -5332.0,0.44375185990130545 -5333.0,0.4435986199037993 -5334.0,0.44344543282437404 -5335.0,0.44329229864475567 -5336.0,0.44313921734667633 -5337.0,0.4429861889118745 -5338.0,0.4428332133220951 -5339.0,0.4426802905590892 -5340.0,0.4425274206046142 -5341.0,0.4423746034404339 -5342.0,0.4422218390483183 -5343.0,0.44206912741004367 -5344.0,0.4419164685073927 -5345.0,0.4417638623221542 -5346.0,0.4416113088361235 -5347.0,0.441458808031102 -5348.0,0.44130635988889744 -5349.0,0.441153964391324 -5350.0,0.44100162152020184 -5351.0,0.44084933125735765 -5352.0,0.4406970935846243 -5353.0,0.4405449084838409 -5354.0,0.440392775936853 -5355.0,0.44024069592551224 -5356.0,0.4400886684316765 -5357.0,0.4399366934372101 -5358.0,0.4397847709239835 -5359.0,0.43963290087387347 -5360.0,0.43948108326876295 -5361.0,0.4393293180905413 -5362.0,0.43917760532110406 -5363.0,0.43902594494235286 -5364.0,0.4388743369361958 -5365.0,0.4387227812845472 -5366.0,0.43857127796932754 -5367.0,0.43841982697246357 -5368.0,0.4382684282758883 -5369.0,0.43811708186154097 -5370.0,0.43796578771136707 -5371.0,0.43781454580731827 -5372.0,0.43766335613135254 -5373.0,0.437512218665434 -5374.0,0.43736113339153315 -5375.0,0.43721010029162655 -5376.0,0.4370591193476971 -5377.0,0.43690819054173385 -5378.0,0.4367573138557321 -5379.0,0.43660648927169327 -5380.0,0.43645571677162526 -5381.0,0.43630499633754183 -5382.0,0.4361543279514633 -5383.0,0.43600371159541584 -5384.0,0.4358531472514322 -5385.0,0.43570263490155114 -5386.0,0.43555217452781747 -5387.0,0.43540176611228254 -5388.0,0.43525140963700365 -5389.0,0.4351011050840443 -5390.0,0.4349508524354744 -5391.0,0.4348006516733698 -5392.0,0.43465050277981265 -5393.0,0.4345004057368913 -5394.0,0.4343503605267003 -5395.0,0.4342003671313403 -5396.0,0.4340504255329182 -5397.0,0.4339005357135471 -5398.0,0.43375069765534613 -5399.0,0.4336009113404408 -5400.0,0.43345117675096273 -5401.0,0.43330149386904954 -5402.0,0.4331518626768452 -5403.0,0.43300228315649986 -5404.0,0.43285275529016976 -5405.0,0.43270327906001727 -5406.0,0.432553854448211 -5407.0,0.43240448143692567 -5408.0,0.4322551600083422 -5409.0,0.43210589014464756 -5410.0,0.43195667182803504 -5411.0,0.43180750504070387 -5412.0,0.43165838976485965 -5413.0,0.43150932598271396 -5414.0,0.43136031367648453 -5415.0,0.4312113528283954 -5416.0,0.4310624434206765 -5417.0,0.43091358543556413 -5418.0,0.43076477885530057 -5419.0,0.43061602366213425 -5420.0,0.4304673198383198 -5421.0,0.4303186673661179 -5422.0,0.43017006622779547 -5423.0,0.4300215164056254 -5424.0,0.4298730178818868 -5425.0,0.42972457063886493 -5426.0,0.42957617465885106 -5427.0,0.42942782992414263 -5428.0,0.42927953641704325 -5429.0,0.4291312941198625 -5430.0,0.4289831030149162 -5431.0,0.4288349630845263 -5432.0,0.42868687431102065 -5433.0,0.4285388366767334 -5434.0,0.4283908501640048 -5435.0,0.42824291475518106 -5436.0,0.4280950304326146 -5437.0,0.4279471971786639 -5438.0,0.4277994149756935 -5439.0,0.4276516838060741 -5440.0,0.4275040036521824 -5441.0,0.42735637449640124 -5442.0,0.4272087963211196 -5443.0,0.42706126910873243 -5444.0,0.4269137928416408 -5445.0,0.42676636750225194 -5446.0,0.426618993072979 -5447.0,0.4264716695362414 -5448.0,0.42632439687446433 -5449.0,0.42617717507007935 -5450.0,0.42603000410552394 -5451.0,0.42588288396324175 -5452.0,0.42573581462568233 -5453.0,0.4255887960753014 -5454.0,0.4254418282945608 -5455.0,0.4252949112659282 -5456.0,0.42514804497187764 -5457.0,0.4250012293948889 -5458.0,0.42485446451744796 -5459.0,0.4247077503220469 -5460.0,0.42456108679118376 -5461.0,0.4244144739073627 -5462.0,0.42426791165309385 -5463.0,0.4241214000108934 -5464.0,0.4239749389632835 -5465.0,0.42382852849279246 -5466.0,0.4236821685819547 -5467.0,0.42353585921331033 -5468.0,0.42338960036940587 -5469.0,0.4232433920327937 -5470.0,0.4230972341860321 -5471.0,0.42295112681168573 -5472.0,0.4228050698923248 -5473.0,0.42265906341052595 -5474.0,0.4225131073488716 -5475.0,0.4223672016899503 -5476.0,0.42222134641635656 -5477.0,0.4220755415106908 -5478.0,0.4219297869555597 -5479.0,0.42178408273357576 -5480.0,0.4216384288273575 -5481.0,0.4214928252195296 -5482.0,0.4213472718927224 -5483.0,0.4212017688295726 -5484.0,0.4210563160127227 -5485.0,0.42091091342482123 -5486.0,0.4207655610485227 -5487.0,0.4206202588664877 -5488.0,0.42047500686138267 -5489.0,0.4203298050158802 -5490.0,0.4201846533126587 -5491.0,0.4200395517344026 -5492.0,0.4198945002638024 -5493.0,0.41974949888355445 -5494.0,0.41960454757636123 -5495.0,0.41945964632493105 -5496.0,0.41931479511197817 -5497.0,0.4191699939202231 -5498.0,0.41902524273239194 -5499.0,0.418880541531217 -5500.0,0.4187358902994365 -5501.0,0.41859128901979453 -5502.0,0.41844673767504126 -5503.0,0.4183022362479328 -5504.0,0.4181577847212311 -5505.0,0.41801338307770425 -5506.0,0.4178690313001261 -5507.0,0.4177247293712765 -5508.0,0.41758047727394143 -5509.0,0.41743627499091257 -5510.0,0.4172921225049876 -5511.0,0.41714801979897026 -5512.0,0.41700396685567015 -5513.0,0.41685996365790273 -5514.0,0.4167160101884895 -5515.0,0.4165721064302579 -5516.0,0.41642825236604125 -5517.0,0.41628444797867875 -5518.0,0.41614069325101566 -5519.0,0.415996988165903 -5520.0,0.41585333270619795 -5521.0,0.4157097268547633 -5522.0,0.41556617059446804 -5523.0,0.4154226639081869 -5524.0,0.41527920677880054 -5525.0,0.41513579918919563 -5526.0,0.4149924411222647 -5527.0,0.4148491325609061 -5528.0,0.41470587348802423 -5529.0,0.41456266388652935 -5530.0,0.4144195037393375 -5531.0,0.4142763930293708 -5532.0,0.4141333317395572 -5533.0,0.4139903198528304 -5534.0,0.4138473573521303 -5535.0,0.41370444422040237 -5536.0,0.41356158044059826 -5537.0,0.41341876599567523 -5538.0,0.4132760008685966 -5539.0,0.4131332850423316 -5540.0,0.4129906184998552 -5541.0,0.41284800122414833 -5542.0,0.41270543319819775 -5543.0,0.41256291440499626 -5544.0,0.41242044482754225 -5545.0,0.41227802444884026 -5546.0,0.41213565325190055 -5547.0,0.4119933312197392 -5548.0,0.41185105833537833 -5549.0,0.41170883458184576 -5550.0,0.4115666599421753 -5551.0,0.4114245343994064 -5552.0,0.4112824579365847 -5553.0,0.41114043053676136 -5554.0,0.4109984521829937 -5555.0,0.4108565228583446 -5556.0,0.4107146425458831 -5557.0,0.41057281122868367 -5558.0,0.4104310288898271 -5559.0,0.4102892955123996 -5560.0,0.41014761107949355 -5561.0,0.410005975574207 -5562.0,0.40986438897964383 -5563.0,0.4097228512789138 -5564.0,0.4095813624551325 -5565.0,0.40943992249142136 -5566.0,0.4092985313709076 -5567.0,0.4091571890767243 -5568.0,0.4090158955920104 -5569.0,0.40887465089991054 -5570.0,0.40873345498357533 -5571.0,0.408592307826161 -5572.0,0.40845120941082985 -5573.0,0.40831015972074985 -5574.0,0.4081691587390948 -5575.0,0.40802820644904425 -5576.0,0.4078873028337837 -5577.0,0.4077464478765043 -5578.0,0.4076056415604032 -5579.0,0.40746488386868307 -5580.0,0.40732417478455263 -5581.0,0.40718351429122634 -5582.0,0.40704290237192436 -5583.0,0.4069023390098728 -5584.0,0.4067618241883034 -5585.0,0.4066213578904538 -5586.0,0.40648094009956737 -5587.0,0.4063405707988933 -5588.0,0.4062002499716866 -5589.0,0.40605997760120793 -5590.0,0.4059197536707239 -5591.0,0.4057795781635068 -5592.0,0.40563945106283467 -5593.0,0.4054993723519914 -5594.0,0.40535934201426665 -5595.0,0.40521936003295583 -5596.0,0.40507942639136 -5597.0,0.40493954107278624 -5598.0,0.40479970406054716 -5599.0,0.4046599153379612 -5600.0,0.4045201748883527 -5601.0,0.4043804826950515 -5602.0,0.4042408387413935 -5603.0,0.40410124301072003 -5604.0,0.40396169548637845 -5605.0,0.40382219615172177 -5606.0,0.40368274499010864 -5607.0,0.4035433419849036 -5608.0,0.4034039871194769 -5609.0,0.40326468037720453 -5610.0,0.40312542174146815 -5611.0,0.40298621119565525 -5612.0,0.40284704872315913 -5613.0,0.40270793430737856 -5614.0,0.4025688679317183 -5615.0,0.4024298495795887 -5616.0,0.402290879234406 -5617.0,0.4021519568795919 -5618.0,0.402013082498574 -5619.0,0.40187425607478566 -5620.0,0.4017354775916659 -5621.0,0.40159674703265935 -5622.0,0.4014580643812166 -5623.0,0.4013194296207938 -5624.0,0.40118084273485277 -5625.0,0.4010423037068611 -5626.0,0.40090381252029217 -5627.0,0.400765369158625 -5628.0,0.40062697360534416 -5629.0,0.4004886258439402 -5630.0,0.4003503258579092 -5631.0,0.400212073630753 -5632.0,0.40007386914597914 -5633.0,0.3999357123871008 -5634.0,0.39979760333763686 -5635.0,0.3996595419811119 -5636.0,0.39952152830105636 -5637.0,0.399383562281006 -5638.0,0.3992456439045026 -5639.0,0.39910777315509355 -5640.0,0.3989699500163318 -5641.0,0.398832174471776 -5642.0,0.39869444650499064 -5643.0,0.39855676609954577 -5644.0,0.398419133239017 -5645.0,0.3982815479069859 -5646.0,0.3981440100870394 -5647.0,0.39800651976277035 -5648.0,0.39786907691777706 -5649.0,0.39773168153566374 -5650.0,0.39759433360004 -5651.0,0.39745703309452124 -5652.0,0.39731978000272855 -5653.0,0.3971825743082886 -5654.0,0.39704541599483384 -5655.0,0.39690830504600216 -5656.0,0.39677124144543735 -5657.0,0.3966342251767886 -5658.0,0.3964972562237109 -5659.0,0.39636033456986497 -5660.0,0.39622346019891685 -5661.0,0.3960866330945386 -5662.0,0.3959498532404077 -5663.0,0.39581312062020724 -5664.0,0.39567643521762613 -5665.0,0.39553979701635866 -5666.0,0.39540320600010503 -5667.0,0.3952666621525708 -5668.0,0.3951301654574673 -5669.0,0.3949937158985116 -5670.0,0.3948573134594262 -5671.0,0.3947209581239392 -5672.0,0.3945846498757845 -5673.0,0.3944483886987015 -5674.0,0.3943121745764352 -5675.0,0.39417600749273624 -5676.0,0.3940398874313609 -5677.0,0.39390381437607114 -5678.0,0.3937677883106343 -5679.0,0.3936318092188235 -5680.0,0.39349587708441747 -5681.0,0.39335999189120047 -5682.0,0.39322415362296237 -5683.0,0.39308836226349864 -5684.0,0.39295261779661045 -5685.0,0.39281692020610437 -5686.0,0.3926812694757927 -5687.0,0.39254566558949333 -5688.0,0.3924101085310297 -5689.0,0.39227459828423084 -5690.0,0.39213913483293134 -5691.0,0.3920037181609714 -5692.0,0.3918683482521968 -5693.0,0.39173302509045893 -5694.0,0.3915977486596147 -5695.0,0.3914625189435266 -5696.0,0.3913273359260627 -5697.0,0.39119219959109675 -5698.0,0.39105710992250786 -5699.0,0.3909220669041809 -5700.0,0.39078707052000616 -5701.0,0.39065212075387956 -5702.0,0.3905172175897026 -5703.0,0.3903823610113823 -5704.0,0.39024755100283126 -5705.0,0.3901127875479676 -5706.0,0.3899780706307151 -5707.0,0.3898434002350029 -5708.0,0.389708776344766 -5709.0,0.3895741989439445 -5710.0,0.3894396680164845 -5711.0,0.38930518354633736 -5712.0,0.38917074551746 -5713.0,0.3890363539138151 -5714.0,0.3889020087193706 -5715.0,0.38876770991810006 -5716.0,0.38863345749398276 -5717.0,0.3884992514310032 -5718.0,0.38836509171315176 -5719.0,0.38823097832442405 -5720.0,0.3880969112488213 -5721.0,0.3879628904703503 -5722.0,0.3878289159730234 -5723.0,0.38769498774085837 -5724.0,0.38756110575787855 -5725.0,0.38742727000811283 -5726.0,0.3872934804755956 -5727.0,0.38715973714436663 -5728.0,0.38702603999847146 -5729.0,0.3868923890219609 -5730.0,0.3867587841988914 -5731.0,0.3866252255133249 -5732.0,0.3864917129493287 -5733.0,0.3863582464909759 -5734.0,0.3862248261223448 -5735.0,0.3860914518275194 -5736.0,0.38595812359058906 -5737.0,0.38582484139564877 -5738.0,0.3856916052267988 -5739.0,0.3855584150681452 -5740.0,0.38542527090379924 -5741.0,0.38529217271787786 -5742.0,0.3851591204945034 -5743.0,0.38502611421780364 -5744.0,0.384893153871912 -5745.0,0.3847602394409672 -5746.0,0.3846273709091136 -5747.0,0.3844945482605009 -5748.0,0.3843617714792843 -5749.0,0.38422904054962453 -5750.0,0.38409635545568777 -5751.0,0.38396371618164565 -5752.0,0.38383112271167524 -5753.0,0.38369857502995913 -5754.0,0.38356607312068536 -5755.0,0.38343361696804745 -5756.0,0.3833012065562442 -5757.0,0.38316884186948025 -5758.0,0.3830365228919652 -5759.0,0.3829042496079146 -5760.0,0.38277202200154903 -5761.0,0.3826398400570948 -5762.0,0.38250770375878346 -5763.0,0.3823756130908522 -5764.0,0.38224356803754367 -5765.0,0.38211156858310563 -5766.0,0.3819796147117917 -5767.0,0.38184770640786064 -5768.0,0.38171584365557676 -5769.0,0.3815840264392098 -5770.0,0.38145225474303496 -5771.0,0.38132052855133286 -5772.0,0.3811888478483894 -5773.0,0.3810572126184962 -5774.0,0.38092562284595 -5775.0,0.38079407851505315 -5776.0,0.3806625796101134 -5777.0,0.3805311261154438 -5778.0,0.38039971801536304 -5779.0,0.380268355294195 -5780.0,0.3801370379362691 -5781.0,0.38000576592592006 -5782.0,0.3798745392474882 -5783.0,0.37974335788531904 -5784.0,0.3796122218237637 -5785.0,0.3794811310471785 -5786.0,0.37935008553992533 -5787.0,0.37921908528637144 -5788.0,0.37908813027088933 -5789.0,0.3789572204778572 -5790.0,0.3788263558916583 -5791.0,0.37869553649668153 -5792.0,0.37856476227732105 -5793.0,0.37843403321797653 -5794.0,0.3783033493030528 -5795.0,0.3781727105169604 -5796.0,0.37804211684411493 -5797.0,0.37791156826893757 -5798.0,0.3777810647758549 -5799.0,0.37765060634929865 -5800.0,0.37752019297370615 -5801.0,0.37738982463352005 -5802.0,0.3772595013131884 -5803.0,0.3771292229971645 -5804.0,0.37699898966990714 -5805.0,0.37686880131588046 -5806.0,0.37673865791955385 -5807.0,0.3766085594654023 -5808.0,0.3764785059379058 -5809.0,0.37634849732155007 -5810.0,0.376218533600826 -5811.0,0.37608861476022987 -5812.0,0.3759587407842633 -5813.0,0.3758289116574332 -5814.0,0.37569912736425204 -5815.0,0.37556938788923744 -5816.0,0.37543969321691234 -5817.0,0.37531004333180523 -5818.0,0.37518043821844976 -5819.0,0.375050877861385 -5820.0,0.3749213622451554 -5821.0,0.3747918913543106 -5822.0,0.37466246517340573 -5823.0,0.37453308368700117 -5824.0,0.3744037468796626 -5825.0,0.3742744547359612 -5826.0,0.3741452072404733 -5827.0,0.37401600437778054 -5828.0,0.3738868461324701 -5829.0,0.3737577324891342 -5830.0,0.3736286634323706 -5831.0,0.37349963894678234 -5832.0,0.3733706590169777 -5833.0,0.3732417236275703 -5834.0,0.3731128327631791 -5835.0,0.37298398640842834 -5836.0,0.37285518454794764 -5837.0,0.37272642716637183 -5838.0,0.3725977142483411 -5839.0,0.37246904577850093 -5840.0,0.37234042174150217 -5841.0,0.37221184212200087 -5842.0,0.3720833069046584 -5843.0,0.3719548160741415 -5844.0,0.37182636961512205 -5845.0,0.3716979675122774 -5846.0,0.37156960975029013 -5847.0,0.3714412963138481 -5848.0,0.37131302718764436 -5849.0,0.3711848023563774 -5850.0,0.37105662180475096 -5851.0,0.370928485517474 -5852.0,0.3708003934792608 -5853.0,0.37067234567483087 -5854.0,0.37054434208890913 -5855.0,0.3704163827062256 -5856.0,0.3702884675115158 -5857.0,0.37016059648952016 -5858.0,0.37003276962498477 -5859.0,0.36990498690266077 -5860.0,0.3697772483073046 -5861.0,0.369649553823678 -5862.0,0.3695219034365479 -5863.0,0.3693942971306866 -5864.0,0.3692667348908716 -5865.0,0.3691392167018856 -5866.0,0.36901174254851665 -5867.0,0.36888431241555797 -5868.0,0.36875692628780815 -5869.0,0.36862958415007085 -5870.0,0.3685022859871552 -5871.0,0.3683750317838754 -5872.0,0.36824782152505087 -5873.0,0.36812065519550646 -5874.0,0.3679935327800722 -5875.0,0.36786645426358316 -5876.0,0.36773941963087986 -5877.0,0.3676124288668081 -5878.0,0.3674854819562186 -5879.0,0.3673585788839678 -5880.0,0.3672317196349168 -5881.0,0.36710490419393244 -5882.0,0.36697813254588635 -5883.0,0.3668514046756558 -5884.0,0.36672472056812294 -5885.0,0.36659808020817536 -5886.0,0.3664714835807058 -5887.0,0.3663449306706121 -5888.0,0.36621842146279754 -5889.0,0.3660919559421704 -5890.0,0.3659655340936444 -5891.0,0.3658391559021381 -5892.0,0.36571282135257577 -5893.0,0.3655865304298864 -5894.0,0.36546028311900464 -5895.0,0.36533407940486984 -5896.0,0.36520791927242696 -5897.0,0.365081802706626 -5898.0,0.36495572969242224 -5899.0,0.3648297002147759 -5900.0,0.36470371425865283 -5901.0,0.36457777180902357 -5902.0,0.36445187285086433 -5903.0,0.36432601736915615 -5904.0,0.36420020534888536 -5905.0,0.3640744367750437 -5906.0,0.3639487116326276 -5907.0,0.3638230299066393 -5908.0,0.3636973915820856 -5909.0,0.36357179664397893 -5910.0,0.3634462450773366 -5911.0,0.3633207368671814 -5912.0,0.3631952719985409 -5913.0,0.3630698504564483 -5914.0,0.3629444722259415 -5915.0,0.362819137292064 -5916.0,0.36269384563986407 -5917.0,0.36256859725439544 -5918.0,0.3624433921207168 -5919.0,0.3623182302238922 -5920.0,0.36219311154899064 -5921.0,0.36206803608108645 -5922.0,0.36194300380525896 -5923.0,0.3618180147065928 -5924.0,0.3616930687701777 -5925.0,0.3615681659811084 -5926.0,0.3614433063244851 -5927.0,0.36131848978541276 -5928.0,0.3611937163490018 -5929.0,0.36106898600036763 -5930.0,0.3609442987246308 -5931.0,0.360819654506917 -5932.0,0.36069505333235724 -5933.0,0.3605704951860873 -5934.0,0.36044598005324846 -5935.0,0.3603215079189868 -5936.0,0.3601970787684539 -5937.0,0.3600726925868062 -5938.0,0.3599483493592053 -5939.0,0.35982404907081794 -5940.0,0.3596997917068161 -5941.0,0.3595755772523766 -5942.0,0.35945140569268175 -5943.0,0.3593272770129188 -5944.0,0.35920319119827987 -5945.0,0.35907914823396275 -5946.0,0.3589551481051697 -5947.0,0.3588311907971087 -5948.0,0.35870727629499227 -5949.0,0.3585834045840386 -5950.0,0.3584595756494704 -5951.0,0.358335789476516 -5952.0,0.3582120460504085 -5953.0,0.35808834535638634 -5954.0,0.3579646873796928 -5955.0,0.3578410721055764 -5956.0,0.35771749951929077 -5957.0,0.35759396960609463 -5958.0,0.3574704823512517 -5959.0,0.3573470377400309 -5960.0,0.3572236357577061 -5961.0,0.35710027638955644 -5962.0,0.35697695962086606 -5963.0,0.3568536854369241 -5964.0,0.35673045382302493 -5965.0,0.35660726476446775 -5966.0,0.35648411824655724 -5967.0,0.3563610142546027 -5968.0,0.35623795277391884 -5969.0,0.3561149337898253 -5970.0,0.3559919572876469 -5971.0,0.3558690232527132 -5972.0,0.3557461316703593 -5973.0,0.355623282525925 -5974.0,0.3555004758047554 -5975.0,0.35537771149220043 -5976.0,0.35525498957361534 -5977.0,0.35513231003436013 -5978.0,0.35500967285980023 -5979.0,0.3548870780353057 -5980.0,0.35476452554625204 -5981.0,0.3546420153780196 -5982.0,0.35451954751599374 -5983.0,0.354397121945565 -5984.0,0.35427473865212883 -5985.0,0.35415239762108597 -5986.0,0.35403009883784176 -5987.0,0.3539078422878071 -5988.0,0.3537856279563975 -5989.0,0.3536634558290338 -5990.0,0.3535413258911416 -5991.0,0.3534192381281519 -5992.0,0.35329719252550035 -5993.0,0.35317518906862794 -5994.0,0.3530532277429804 -5995.0,0.3529313085340088 -5996.0,0.35280943142716886 -5997.0,0.3526875964079217 -5998.0,0.35256580346173316 -5999.0,0.3524440525740743 -6000.0,0.35232234373042126 -6001.0,0.3522006769162548 -6002.0,0.35207905211706114 -6003.0,0.3519574693183312 -6004.0,0.3518359285055613 -6005.0,0.3517144296642521 -6006.0,0.35159297277991003 -6007.0,0.35147155783804596 -6008.0,0.3513501848241761 -6009.0,0.35122885372382145 -6010.0,0.35110756452250813 -6011.0,0.35098631720576723 -6012.0,0.3508651117591348 -6013.0,0.3507439481681519 -6014.0,0.35062282641836473 -6015.0,0.3505017464953241 -6016.0,0.35038070838458635 -6017.0,0.35025971207171225 -6018.0,0.350138757542268 -6019.0,0.35001784478182457 -6020.0,0.34989697377595785 -6021.0,0.34977614451024897 -6022.0,0.3496553569702837 -6023.0,0.3495346111416532 -6024.0,0.3494139070099531 -6025.0,0.34929324456078453 -6026.0,0.34917262377975317 -6027.0,0.3490520446524699 -6028.0,0.34893150716455046 -6029.0,0.34881101130161574 -6030.0,0.3486905570492913 -6031.0,0.34857014439320794 -6032.0,0.34844977331900123 -6033.0,0.3483294438123119 -6034.0,0.3482091558587853 -6035.0,0.3480889094440722 -6036.0,0.3479687045538279 -6037.0,0.3478485411737129 -6038.0,0.34772841928939263 -6039.0,0.3476083388865373 -6040.0,0.34748829995082237 -6041.0,0.34736830246792794 -6042.0,0.3472483464235392 -6043.0,0.3471284318033463 -6044.0,0.3470085585930443 -6045.0,0.3468887267783331 -6046.0,0.34676893634491784 -6047.0,0.34664918727850824 -6048.0,0.34652947956481917 -6049.0,0.34640981318957026 -6050.0,0.3462901881384864 -6051.0,0.34617060439729697 -6052.0,0.3460510619517367 -6053.0,0.34593156078754483 -6054.0,0.34581210089046593 -6055.0,0.3456926822462492 -6056.0,0.3455733048406489 -6057.0,0.34545396865942424 -6058.0,0.3453346736883392 -6059.0,0.3452154199131628 -6060.0,0.34509620731966884 -6061.0,0.3449770358936363 -6062.0,0.3448579056208487 -6063.0,0.34473881648709487 -6064.0,0.34461976847816816 -6065.0,0.3445007615798672 -6066.0,0.3443817957779951 -6067.0,0.34426287105836034 -6068.0,0.3441439874067759 -6069.0,0.34402514480905994 -6070.0,0.34390634325103525 -6071.0,0.34378758271852994 -6072.0,0.34366886319737644 -6073.0,0.3435501846734126 -6074.0,0.3434315471324808 -6075.0,0.3433129505604285 -6076.0,0.34319439494310805 -6077.0,0.3430758802663765 -6078.0,0.3429574065160961 -6079.0,0.34283897367813354 -6080.0,0.3427205817383609 -6081.0,0.34260223068265466 -6082.0,0.34248392049689663 -6083.0,0.3423656511669731 -6084.0,0.3422474226787755 -6085.0,0.3421292350181999 -6086.0,0.34201108817114756 -6087.0,0.3418929821235242 -6088.0,0.3417749168612409 -6089.0,0.34165689237021307 -6090.0,0.34153890863636144 -6091.0,0.3414209656456113 -6092.0,0.341303063383893 -6093.0,0.3411852018371415 -6094.0,0.34106738099129696 -6095.0,0.3409496008323042 -6096.0,0.3408318613461127 -6097.0,0.34071416251867725 -6098.0,0.34059650433595706 -6099.0,0.3404788867839165 -6100.0,0.3403613098485246 -6101.0,0.34024377351575524 -6102.0,0.3401262777715872 -6103.0,0.3400088226020042 -6104.0,0.33989140799299455 -6105.0,0.33977403393055167 -6106.0,0.3396567004006736 -6107.0,0.3395394073893634 -6108.0,0.33942215488262867 -6109.0,0.33930494286648233 -6110.0,0.3391877713269416 -6111.0,0.3390706402500289 -6112.0,0.33895354962177127 -6113.0,0.33883649942820065 -6114.0,0.338719489655354 -6115.0,0.33860252028927257 -6116.0,0.3384855913160031 -6117.0,0.3383687027215966 -6118.0,0.3382518544921092 -6119.0,0.33813504661360166 -6120.0,0.3380182790721398 -6121.0,0.337901551853794 -6122.0,0.3377848649446396 -6123.0,0.33766821833075666 -6124.0,0.3375516119982302 -6125.0,0.33743504593314977 -6126.0,0.33731852012161 -6127.0,0.33720203454971015 -6128.0,0.3370855892035544 -6129.0,0.33696918406925164 -6130.0,0.3368528191329156 -6131.0,0.3367364943806647 -6132.0,0.33662020979862234 -6133.0,0.3365039653729167 -6134.0,0.3363877610896805 -6135.0,0.3362715969350515 -6136.0,0.3361554728951721 -6137.0,0.3360393889561897 -6138.0,0.3359233451042561 -6139.0,0.33580734132552836 -6140.0,0.33569137760616785 -6141.0,0.3355754539323412 -6142.0,0.3354595702902193 -6143.0,0.3353437266659782 -6144.0,0.33522792304579857 -6145.0,0.335112159415866 -6146.0,0.33499643576237054 -6147.0,0.33488075207150736 -6148.0,0.3347651083294761 -6149.0,0.33464950452248143 -6150.0,0.3345339406367326 -6151.0,0.3344184166584437 -6152.0,0.33430293257383353 -6153.0,0.3341874883691257 -6154.0,0.33407208403054867 -6155.0,0.3339567195443353 -6156.0,0.33384139489672365 -6157.0,0.33372611007395625 -6158.0,0.3336108650622805 -6159.0,0.33349565984794843 -6160.0,0.333380494417217 -6161.0,0.3332653687563477 -6162.0,0.3331502828516071 -6163.0,0.333035236689266 -6164.0,0.3329202302556004 -6165.0,0.3328052635368908 -6166.0,0.33269033651942265 -6167.0,0.3325754491894858 -6168.0,0.33246060153337514 -6169.0,0.3323457935373902 -6170.0,0.3322310251878351 -6171.0,0.332116296471019 -6172.0,0.3320016073732554 -6173.0,0.3318869578808629 -6174.0,0.3317723479801646 -6175.0,0.33165777765748833 -6176.0,0.33154324689916664 -6177.0,0.331428755691537 -6178.0,0.3313143040209413 -6179.0,0.33119989187372645 -6180.0,0.3310855192362437 -6181.0,0.33097118609484943 -6182.0,0.3308568924359044 -6183.0,0.3307426382457742 -6184.0,0.3306284235108292 -6185.0,0.3305142482174445 -6186.0,0.3304001123519996 -6187.0,0.3302860159008792 -6188.0,0.3301719588504721 -6189.0,0.3300579411871724 -6190.0,0.32994396289737854 -6191.0,0.32983002396749367 -6192.0,0.3297161243839258 -6193.0,0.32960226413308746 -6194.0,0.32948844320139603 -6195.0,0.32937466157527345 -6196.0,0.3292609192411464 -6197.0,0.3291472161854463 -6198.0,0.3290335523946092 -6199.0,0.3289199278550757 -6200.0,0.32880634255329144 -6201.0,0.3286927964757063 -6202.0,0.3285792896087753 -6203.0,0.3284658219389577 -6204.0,0.3283523934527177 -6205.0,0.3282390041365241 -6206.0,0.32812565397685045 -6207.0,0.3280123429601748 -6208.0,0.32789907107298 -6209.0,0.3277858383017536 -6210.0,0.32767264463298773 -6211.0,0.3275594900531792 -6212.0,0.32744637454882947 -6213.0,0.32733329810644474 -6214.0,0.3272202607125357 -6215.0,0.327107262353618 -6216.0,0.3269943030162115 -6217.0,0.32688138268684125 -6218.0,0.3267685013520365 -6219.0,0.32665565899833143 -6220.0,0.3265428556122647 -6221.0,0.32643009118037974 -6222.0,0.3263173656892245 -6223.0,0.3262046791253517 -6224.0,0.3260920314753187 -6225.0,0.3259794227256874 -6226.0,0.32586685286302436 -6227.0,0.32575432187390085 -6228.0,0.32564182974489286 -6229.0,0.32552937646258073 -6230.0,0.3254169620135497 -6231.0,0.32530458638438947 -6232.0,0.32519224956169457 -6233.0,0.32507995153206387 -6234.0,0.3249676922821012 -6235.0,0.32485547179841473 -6236.0,0.32474329006761743 -6237.0,0.3246311470763268 -6238.0,0.32451904281116506 -6239.0,0.32440697725875894 -6240.0,0.32429495040573986 -6241.0,0.32418296223874377 -6242.0,0.32407101274441147 -6243.0,0.3239591019093879 -6244.0,0.32384722972032326 -6245.0,0.32373539616387176 -6246.0,0.3236236012266926 -6247.0,0.32351184489544943 -6248.0,0.3234001271568105 -6249.0,0.3232884479974487 -6250.0,0.3231768074040416 -6251.0,0.3230652053632712 -6252.0,0.3229536418618242 -6253.0,0.32284211688639197 -6254.0,0.3227306304236703 -6255.0,0.32261918246035975 -6256.0,0.3225077729831653 -6257.0,0.32239640197879665 -6258.0,0.32228506943396806 -6259.0,0.3221737753353984 -6260.0,0.32206251966981103 -6261.0,0.32195130242393405 -6262.0,0.3218401235844999 -6263.0,0.321728983138246 -6264.0,0.3216178810719138 -6265.0,0.32150681737224984 -6266.0,0.321395792026005 -6267.0,0.3212848050199347 -6268.0,0.32117385634079915 -6269.0,0.3210629459753628 -6270.0,0.32095207391039493 -6271.0,0.3208412401326693 -6272.0,0.32073044462896433 -6273.0,0.3206196873860628 -6274.0,0.32050896839075227 -6275.0,0.32039828762982464 -6276.0,0.32028764509007673 -6277.0,0.32017704075830944 -6278.0,0.32006647462132864 -6279.0,0.31995594666594457 -6280.0,0.31984545687897203 -6281.0,0.31973500524723036 -6282.0,0.3196245917575436 -6283.0,0.31951421639674005 -6284.0,0.3194038791516528 -6285.0,0.3192935800091196 -6286.0,0.31918331895598234 -6287.0,0.3190730959790878 -6288.0,0.31896291106528707 -6289.0,0.31885276420143605 -6290.0,0.3187426553743949 -6291.0,0.3186325845710285 -6292.0,0.31852255177820615 -6293.0,0.3184125569828018 -6294.0,0.3183026001716938 -6295.0,0.31819268133176526 -6296.0,0.31808280044990345 -6297.0,0.31797295751300053 -6298.0,0.317863152507953 -6299.0,0.3177533854216619 -6300.0,0.31764365624103286 -6301.0,0.317533964952976 -6302.0,0.3174243115444058 -6303.0,0.31731469600224155 -6304.0,0.317205118313407 -6305.0,0.3170955784648301 -6306.0,0.31698607644344373 -6307.0,0.31687661223618496 -6308.0,0.3167671858299957 -6309.0,0.3166577972118219 -6310.0,0.31654844636861457 -6311.0,0.31643913328732876 -6312.0,0.3163298579549244 -6313.0,0.3162206203583655 -6314.0,0.31611142048462104 -6315.0,0.3160022583206641 -6316.0,0.31589313385347256 -6317.0,0.31578404707002855 -6318.0,0.3156749979573189 -6319.0,0.3155659865023348 -6320.0,0.31545701269207205 -6321.0,0.31534807651353075 -6322.0,0.31523917795371564 -6323.0,0.31513031699963606 -6324.0,0.31502149363830545 -6325.0,0.31491270785674225 -6326.0,0.31480395964196883 -6327.0,0.31469524898101253 -6328.0,0.3145865758609049 -6329.0,0.314477940268682 -6330.0,0.31436934219138435 -6331.0,0.31426078161605714 -6332.0,0.31415225852974976 -6333.0,0.31404377291951624 -6334.0,0.31393532477241504 -6335.0,0.3138269140755091 -6336.0,0.31371854081586575 -6337.0,0.3136102049805569 -6338.0,0.3135019065566589 -6339.0,0.3133936455312525 -6340.0,0.3132854218914229 -6341.0,0.31317723562425986 -6342.0,0.3130690867168577 -6343.0,0.3129609751563147 -6344.0,0.3128529009297343 -6345.0,0.31274486402422375 -6346.0,0.31263686442689526 -6347.0,0.31252890212486506 -6348.0,0.3124209771052542 -6349.0,0.31231308935518787 -6350.0,0.312205238861796 -6351.0,0.3120974256122127 -6352.0,0.31198964959357667 -6353.0,0.311881910793031 -6354.0,0.3117742091977233 -6355.0,0.3116665447948055 -6356.0,0.31155891757143406 -6357.0,0.3114513275147697 -6358.0,0.31134377461197793 -6359.0,0.31123625885022826 -6360.0,0.311128780216695 -6361.0,0.3110213386985567 -6362.0,0.3109139342829963 -6363.0,0.3108065669572013 -6364.0,0.3106992367083636 -6365.0,0.31059194352367936 -6366.0,0.31048468739034935 -6367.0,0.3103774682955788 -6368.0,0.31027028622657704 -6369.0,0.3101631411705582 -6370.0,0.31005603311474056 -6371.0,0.30994896204634703 -6372.0,0.3098419279526047 -6373.0,0.3097349308207452 -6374.0,0.3096279706380045 -6375.0,0.3095210473916232 -6376.0,0.309414161068846 -6377.0,0.30930731165692216 -6378.0,0.3092004991431053 -6379.0,0.3090937235146536 -6380.0,0.30898698475882935 -6381.0,0.3088802828628995 -6382.0,0.3087736178141352 -6383.0,0.30866698959981215 -6384.0,0.3085603982072104 -6385.0,0.3084538436236143 -6386.0,0.30834732583631275 -6387.0,0.30824084483259884 -6388.0,0.3081344005997703 -6389.0,0.30802799312512896 -6390.0,0.30792162239598136 -6391.0,0.3078152883996381 -6392.0,0.30770899112341443 -6393.0,0.3076027305546297 -6394.0,0.30749650668060796 -6395.0,0.30739031948867734 -6396.0,0.30728416896617067 -6397.0,0.30717805510042473 -6398.0,0.30707197787878104 -6399.0,0.3069659372885854 -6400.0,0.30685993331718786 -6401.0,0.306753965951943 -6402.0,0.30664803518020955 -6403.0,0.3065421409893509 -6404.0,0.3064362833667345 -6405.0,0.3063304622997325 -6406.0,0.306224677775721 -6407.0,0.3061189297820808 -6408.0,0.3060132183061969 -6409.0,0.30590754333545866 -6410.0,0.3058019048572599 -6411.0,0.30569630285899874 -6412.0,0.3055907373280775 -6413.0,0.3054852082519031 -6414.0,0.3053797156178866 -6415.0,0.30527425941344366 -6416.0,0.3051688396259939 -6417.0,0.30506345624296166 -6418.0,0.30495810925177547 -6419.0,0.3048527986398681 -6420.0,0.3047475243946769 -6421.0,0.3046422865036433 -6422.0,0.3045370849542132 -6423.0,0.30443191973383693 -6424.0,0.30432679082996894 -6425.0,0.3042216982300681 -6426.0,0.30411664192159776 -6427.0,0.30401162189202535 -6428.0,0.3039066381288228 -6429.0,0.30380169061946627 -6430.0,0.30369677935143635 -6431.0,0.3035919043122178 -6432.0,0.3034870654892999 -6433.0,0.303382262870176 -6434.0,0.30327749644234414 -6435.0,0.3031727661933062 -6436.0,0.3030680721105687 -6437.0,0.3029634141816426 -6438.0,0.3028587923940426 -6439.0,0.30275420673528847 -6440.0,0.3026496571929036 -6441.0,0.3025451437544162 -6442.0,0.30244066640735845 -6443.0,0.30233622513926706 -6444.0,0.3022318199376828 -6445.0,0.3021274507901511 -6446.0,0.30202311768422124 -6447.0,0.3019188206074473 -6448.0,0.3018145595473872 -6449.0,0.3017103344916034 -6450.0,0.3016061454276627 -6451.0,0.301501992343136 -6452.0,0.30139787522559863 -6453.0,0.30129379406263024 -6454.0,0.30118974884181454 -6455.0,0.30108573955073986 -6456.0,0.3009817661769986 -6457.0,0.3008778287081875 -6458.0,0.3007739271319076 -6459.0,0.3006700614357641 -6460.0,0.3005662316073667 -6461.0,0.3004624376343291 -6462.0,0.3003586795042697 -6463.0,0.3002549572048106 -6464.0,0.3001512707235787 -6465.0,0.3000476200482049 -6466.0,0.29994400516632447 -6467.0,0.2998404260655768 -6468.0,0.29973688273360577 -6469.0,0.2996333751580593 -6470.0,0.29952990332658985 -6471.0,0.29942646722685384 -6472.0,0.29932306684651216 -6473.0,0.2992197021732299 -6474.0,0.2991163731946764 -6475.0,0.29901307989852527 -6476.0,0.29890982227245433 -6477.0,0.2988066003041458 -6478.0,0.2987034139812859 -6479.0,0.29860026329156547 -6480.0,0.29849714822267914 -6481.0,0.2983940687623262 -6482.0,0.29829102489820997 -6483.0,0.2981880166180381 -6484.0,0.2980850439095224 -6485.0,0.29798210676037906 -6486.0,0.2978792051583283 -6487.0,0.2977763390910948 -6488.0,0.29767350854640734 -6489.0,0.2975707135119991 -6490.0,0.2974679539756072 -6491.0,0.29736522992497333 -6492.0,0.29726254134784313 -6493.0,0.2971598882319667 -6494.0,0.29705727056509834 -6495.0,0.29695468833499633 -6496.0,0.29685214152942346 -6497.0,0.29674963013614664 -6498.0,0.296647154142937 -6499.0,0.29654471353756984 -6500.0,0.2964423083078249 -6501.0,0.2963399384414858 -6502.0,0.2962376039263407 -6503.0,0.29613530475018174 -6504.0,0.29603304090080546 -6505.0,0.29593081236601243 -6506.0,0.29582861913360764 -6507.0,0.29572646119140006 -6508.0,0.29562433852720316 -6509.0,0.29552225112883423 -6510.0,0.29542019898411526 -6511.0,0.2953181820808719 -6512.0,0.2952162004069344 -6513.0,0.2951142539501372 -6514.0,0.29501234269831855 -6515.0,0.2949104666393215 -6516.0,0.29480862576099276 -6517.0,0.2947068200511836 -6518.0,0.2946050494977492 -6519.0,0.2945033140885492 -6520.0,0.29440161381144714 -6521.0,0.29429994865431114 -6522.0,0.2941983186050131 -6523.0,0.29409672365142947 -6524.0,0.2939951637814405 -6525.0,0.2938936389829311 -6526.0,0.2937921492437898 -6527.0,0.2936906945519099 -6528.0,0.2935892748951884 -6529.0,0.2934878902615267 -6530.0,0.29338654063883046 -6531.0,0.2932852260150093 -6532.0,0.2931839463779772 -6533.0,0.29308270171565215 -6534.0,0.29298149201595647 -6535.0,0.29288031726681657 -6536.0,0.29277917745616305 -6537.0,0.2926780725719306 -6538.0,0.2925770026020583 -6539.0,0.29247596753448907 -6540.0,0.2923749673571702 -6541.0,0.2922740020580532 -6542.0,0.29217307162509354 -6543.0,0.29207217604625096 -6544.0,0.2919713153094895 -6545.0,0.291870489402777 -6546.0,0.29176969831408583 -6547.0,0.2916689420313922 -6548.0,0.2915682205426768 -6549.0,0.29146753383592405 -6550.0,0.29136688189912296 -6551.0,0.2912662647202665 -6552.0,0.2911656822873516 -6553.0,0.2910651345883797 -6554.0,0.29096462161135606 -6555.0,0.2908641433442903 -6556.0,0.290763699775196 -6557.0,0.2906632908920911 -6558.0,0.2905629166829974 -6559.0,0.2904625771359411 -6560.0,0.2903622722389524 -6561.0,0.2902620019800657 -6562.0,0.2901617663473193 -6563.0,0.2900615653287561 -6564.0,0.2899613989124227 -6565.0,0.28986126708636994 -6566.0,0.28976116983865285 -6567.0,0.2896611071573306 -6568.0,0.28956107903046646 -6569.0,0.2894610854461277 -6570.0,0.2893611263923859 -6571.0,0.28926120185731663 -6572.0,0.28916131182899973 -6573.0,0.2890614562955189 -6574.0,0.28896163524496216 -6575.0,0.2888618486654216 -6576.0,0.2887620965449934 -6577.0,0.2886623788717778 -6578.0,0.2885626956338794 -6579.0,0.2884630468194065 -6580.0,0.28836343241647183 -6581.0,0.288263852413192 -6582.0,0.28816430679768806 -6583.0,0.2880647955580848 -6584.0,0.28796531868251124 -6585.0,0.28786587615910053 -6586.0,0.28776646797599 -6587.0,0.28766709412132085 -6588.0,0.2875677545832385 -6589.0,0.28746844934989263 -6590.0,0.28736917840943665 -6591.0,0.2872699417500284 -6592.0,0.28717073935982956 -6593.0,0.28707157122700616 -6594.0,0.28697243733972805 -6595.0,0.2868733376861693 -6596.0,0.286774272254508 -6597.0,0.28667524103292646 -6598.0,0.2865762440096109 -6599.0,0.2864772811727518 -6600.0,0.28637835251054344 -6601.0,0.2862794580111846 -6602.0,0.28618059766287757 -6603.0,0.28608177145382935 -6604.0,0.2859829793722504 -6605.0,0.2858842214063559 -6606.0,0.28578549754436433 -6607.0,0.28568680777449895 -6608.0,0.2855881520849867 -6609.0,0.28548953046405867 -6610.0,0.2853909428999501 -6611.0,0.2852923893809 -6612.0,0.2851938698951519 -6613.0,0.285095384430953 -6614.0,0.28499693297655476 -6615.0,0.28489851552021256 -6616.0,0.28480013205018606 -6617.0,0.28470178255473866 -6618.0,0.2846034670221381 -6619.0,0.28450518544065606 -6620.0,0.2844069377985682 -6621.0,0.28430872408415425 -6622.0,0.2842105442856982 -6623.0,0.2841123983914877 -6624.0,0.28401428638981485 -6625.0,0.28391620826897546 -6626.0,0.2838181640172696 -6627.0,0.28372015362300135 -6628.0,0.2836221770744787 -6629.0,0.28352423436001384 -6630.0,0.2834263254679228 -6631.0,0.2833284503865259 -6632.0,0.28323060910414716 -6633.0,0.2831328016091151 -6634.0,0.28303502788976176 -6635.0,0.28293728793442363 -6636.0,0.2828395817314409 -6637.0,0.28274190926915804 -6638.0,0.28264427053592334 -6639.0,0.28254666552008934 -6640.0,0.2824490942100123 -6641.0,0.28235155659405287 -6642.0,0.28225405266057535 -6643.0,0.28215658239794833 -6644.0,0.2820591457945443 -6645.0,0.2819617428387397 -6646.0,0.28186437351891525 -6647.0,0.28176703782345536 -6648.0,0.28166973574074866 -6649.0,0.2815724672591876 -6650.0,0.2814752323671689 -6651.0,0.2813780310530931 -6652.0,0.28128086330536484 -6653.0,0.28118372911239253 -6654.0,0.281086628462589 -6655.0,0.2809895613443707 -6656.0,0.28089252774615836 -6657.0,0.2807955276563764 -6658.0,0.2806985610634536 -6659.0,0.2806016279558224 -6660.0,0.2805047283219195 -6661.0,0.2804078621501854 -6662.0,0.2803110294290648 -6663.0,0.280214230147006 -6664.0,0.2801174642924618 -6665.0,0.28002073185388876 -6666.0,0.2799240328197472 -6667.0,0.2798273671785018 -6668.0,0.27973073491862094 -6669.0,0.2796341360285772 -6670.0,0.2795375704968469 -6671.0,0.27944103831191064 -6672.0,0.27934453946225274 -6673.0,0.2792480739363616 -6674.0,0.27915164172272955 -6675.0,0.27905524280985305 -6676.0,0.27895887718623225 -6677.0,0.2788625448403716 -6678.0,0.2787662457607792 -6679.0,0.27866997993596737 -6680.0,0.2785737473544523 -6681.0,0.2784775480047541 -6682.0,0.27838138187539685 -6683.0,0.2782852489549087 -6684.0,0.27818914923182175 -6685.0,0.27809308269467187 -6686.0,0.27799704933199915 -6687.0,0.27790104913234737 -6688.0,0.2778050820842646 -6689.0,0.27770914817630243 -6690.0,0.2776132473970168 -6691.0,0.27751737973496743 -6692.0,0.27742154517871803 -6693.0,0.27732574371683616 -6694.0,0.27722997533789345 -6695.0,0.27713424003046544 -6696.0,0.2770385377831316 -6697.0,0.27694286858447525 -6698.0,0.27684723242308396 -6699.0,0.2767516292875488 -6700.0,0.2766560591664652 -6701.0,0.27656052204843223 -6702.0,0.276465017922053 -6703.0,0.2763695467759347 -6704.0,0.27627410859868823 -6705.0,0.2761787033789285 -6706.0,0.27608333110527433 -6707.0,0.27598799176634864 -6708.0,0.27589268535077793 -6709.0,0.27579741184719303 -6710.0,0.2757021712442284 -6711.0,0.2756069635305226 -6712.0,0.275511788694718 -6713.0,0.27541664672546096 -6714.0,0.27532153761140166 -6715.0,0.2752264613411944 -6716.0,0.27513141790349716 -6717.0,0.27503640728697204 -6718.0,0.2749414294802849 -6719.0,0.27484648447210563 -6720.0,0.27475157225110797 -6721.0,0.2746566928059695 -6722.0,0.274561846125372 -6723.0,0.2744670321980007 -6724.0,0.2743722510125452 -6725.0,0.2742775025576986 -6726.0,0.27418278682215835 -6727.0,0.27408810379462534 -6728.0,0.27399345346380466 -6729.0,0.2738988358184052 -6730.0,0.2738042508471398 -6731.0,0.273709698538725 -6732.0,0.27361517888188164 -6733.0,0.27352069186533406 -6734.0,0.27342623747781075 -6735.0,0.2733318157080438 -6736.0,0.2732374265447697 -6737.0,0.27314306997672816 -6738.0,0.2730487459926634 -6739.0,0.27295445458132306 -6740.0,0.272860195731459 -6741.0,0.2727659694318268 -6742.0,0.27267177567118583 -6743.0,0.27257761443829964 -6744.0,0.27248348572193537 -6745.0,0.2723893895108642 -6746.0,0.2722953257938611 -6747.0,0.27220129455970504 -6748.0,0.2721072957971786 -6749.0,0.2720133294950687 -6750.0,0.2719193956421655 -6751.0,0.2718254942272636 -6752.0,0.27173162523916117 -6753.0,0.27163778866666044 -6754.0,0.2715439844985672 -6755.0,0.2714502127236914 -6756.0,0.2713564733308468 -6757.0,0.2712627663088509 -6758.0,0.2711690916465251 -6759.0,0.2710754493326948 -6760.0,0.2709818393561891 -6761.0,0.27088826170584096 -6762.0,0.2707947163704874 -6763.0,0.27070120333896897 -6764.0,0.27060772260013044 -6765.0,0.27051427414282003 -6766.0,0.27042085795589016 -6767.0,0.27032747402819685 -6768.0,0.2702341223486002 -6769.0,0.270140802905964 -6770.0,0.27004751568915586 -6771.0,0.26995426068704736 -6772.0,0.26986103788851384 -6773.0,0.26976784728243447 -6774.0,0.26967468885769236 -6775.0,0.2695815626031743 -6776.0,0.26948846850777103 -6777.0,0.26939540656037714 -6778.0,0.269302376749891 -6779.0,0.2692093790652149 -6780.0,0.2691164134952547 -6781.0,0.26902348002892057 -6782.0,0.268930578655126 -6783.0,0.2688377093627886 -6784.0,0.2687448721408297 -6785.0,0.2686520669781746 -6786.0,0.2685592938637522 -6787.0,0.2684665527864955 -6788.0,0.268373843735341 -6789.0,0.2682811666992293 -6790.0,0.2681885216671046 -6791.0,0.26809590862791516 -6792.0,0.26800332757061274 -6793.0,0.2679107784841533 -6794.0,0.2678182613574962 -6795.0,0.26772577617960497 -6796.0,0.26763332293944686 -6797.0,0.26754090162599264 -6798.0,0.26744851222821736 -6799.0,0.26735615473509944 -6800.0,0.26726382913562147 -6801.0,0.2671715354187696 -6802.0,0.26707927357353384 -6803.0,0.26698704358890807 -6804.0,0.2668948454538899 -6805.0,0.2668026791574808 -6806.0,0.266710544688686 -6807.0,0.2666184420365144 -6808.0,0.26652637118997907 -6809.0,0.26643433213809636 -6810.0,0.2663423248698869 -6811.0,0.26625034937437475 -6812.0,0.26615840564058807 -6813.0,0.2660664936575584 -6814.0,0.2659746134143215 -6815.0,0.2658827648999167 -6816.0,0.26579094810338705 -6817.0,0.2656991630137796 -6818.0,0.26560740962014495 -6819.0,0.26551568791153773 -6820.0,0.265423997877016 -6821.0,0.265332339505642 -6822.0,0.2652407127864814 -6823.0,0.265149117708604 -6824.0,0.26505755426108296 -6825.0,0.26496602243299555 -6826.0,0.26487452221342267 -6827.0,0.264783053591449 -6828.0,0.26469161655616297 -6829.0,0.2646002110966569 -6830.0,0.26450883720202667 -6831.0,0.2644174948613721 -6832.0,0.26432618406379677 -6833.0,0.26423490479840783 -6834.0,0.26414365705431647 -6835.0,0.2640524408206374 -6836.0,0.26396125608648924 -6837.0,0.2638701028409943 -6838.0,0.2637789810732787 -6839.0,0.2636878907724722 -6840.0,0.2635968319277085 -6841.0,0.2635058045281248 -6842.0,0.2634148085628623 -6843.0,0.2633238440210658 -6844.0,0.26323291089188394 -6845.0,0.263142009164469 -6846.0,0.26305113882797715 -6847.0,0.26296029987156816 -6848.0,0.2628694922844056 -6849.0,0.2627787160556568 -6850.0,0.26268797117449283 -6851.0,0.26259725763008845 -6852.0,0.2625065754116222 -6853.0,0.26241592450827644 -6854.0,0.26232530490923706 -6855.0,0.2622347166036939 -6856.0,0.26214415958084036 -6857.0,0.2620536338298737 -6858.0,0.2619631393399948 -6859.0,0.26187267610040843 -6860.0,0.26178224410032286 -6861.0,0.2616918433289503 -6862.0,0.2616014737755065 -6863.0,0.26151113542921123 -6864.0,0.26142082827928753 -6865.0,0.26133055231496266 -6866.0,0.2612403075254671 -6867.0,0.2611500939000356 -6868.0,0.261059911427906 -6869.0,0.2609697600983205 -6870.0,0.2608796399005245 -6871.0,0.2607895508237673 -6872.0,0.26069949285730215 -6873.0,0.26060946599038554 -6874.0,0.2605194702122781 -6875.0,0.2604295055122439 -6876.0,0.26033957187955087 -6877.0,0.2602496693034705 -6878.0,0.2601597977732782 -6879.0,0.2600699572782527 -6880.0,0.259980147807677 -6881.0,0.25989036935083726 -6882.0,0.25980062189702363 -6883.0,0.25971090543552994 -6884.0,0.2596212199556536 -6885.0,0.2595315654466958 -6886.0,0.2594419418979615 -6887.0,0.2593523492987591 -6888.0,0.25926278763840105 -6889.0,0.2591732569062031 -6890.0,0.259083757091485 -6891.0,0.2589942881835701 -6892.0,0.25890485017178533 -6893.0,0.25881544304546145 -6894.0,0.2587260667939328 -6895.0,0.2586367214065375 -6896.0,0.2585474068726172 -6897.0,0.25845812318151745 -6898.0,0.2583688703225872 -6899.0,0.2582796482851794 -6900.0,0.2581904570586504 -6901.0,0.2581012966323605 -6902.0,0.2580121669956732 -6903.0,0.2579230681379563 -6904.0,0.25783400004858076 -6905.0,0.25774496271692154 -6906.0,0.257655956132357 -6907.0,0.2575669802842694 -6908.0,0.25747803516204454 -6909.0,0.25738912075507187 -6910.0,0.2573002370527447 -6911.0,0.25721138404445965 -6912.0,0.2571225617196174 -6913.0,0.2570337700676219 -6914.0,0.25694500907788115 -6915.0,0.25685627873980643 -6916.0,0.256767579042813 -6917.0,0.25667890997631954 -6918.0,0.2565902715297485 -6919.0,0.25650166369252597 -6920.0,0.25641308645408173 -6921.0,0.25632453980384906 -6922.0,0.2562360237312651 -6923.0,0.2561475382257704 -6924.0,0.25605908327680943 -6925.0,0.25597065887382997 -6926.0,0.25588226500628386 -6927.0,0.2557939016636262 -6928.0,0.25570556883531587 -6929.0,0.25561726651081557 -6930.0,0.2555289946795913 -6931.0,0.25544075333111305 -6932.0,0.25535254245485406 -6933.0,0.25526436204029157 -6934.0,0.2551762120769063 -6935.0,0.25508809255418247 -6936.0,0.25500000346160817 -6937.0,0.25491194478867507 -6938.0,0.25482391652487824 -6939.0,0.25473591865971673 -6940.0,0.2546479511826929 -6941.0,0.25456001408331297 -6942.0,0.25447210735108655 -6943.0,0.2543842309755272 -6944.0,0.25429638494615175 -6945.0,0.25420856925248086 -6946.0,0.2541207838840388 -6947.0,0.25403302883035334 -6948.0,0.253945304080956 -6949.0,0.25385760962538184 -6950.0,0.25376994545316955 -6951.0,0.2536823115538614 -6952.0,0.2535947079170034 -6953.0,0.25350713453214496 -6954.0,0.2534195913888393 -6955.0,0.2533320784766431 -6956.0,0.25324459578511677 -6957.0,0.25315714330382416 -6958.0,0.253069721022333 -6959.0,0.2529823289302143 -6960.0,0.25289496701704284 -6961.0,0.25280763527239697 -6962.0,0.2527203336858588 -6963.0,0.25263306224701365 -6964.0,0.25254582094545086 -6965.0,0.25245860977076306 -6966.0,0.2523714287125467 -6967.0,0.25228427776040163 -6968.0,0.2521971569039314 -6969.0,0.2521100661327432 -6970.0,0.2520230054364476 -6971.0,0.25193597480465907 -6972.0,0.25184897422699526 -6973.0,0.2517620036930779 -6974.0,0.25167506319253174 -6975.0,0.2515881527149857 -6976.0,0.2515012722500718 -6977.0,0.25141442178742596 -6978.0,0.2513276013166874 -6979.0,0.2512408108274993 -6980.0,0.25115405030950794 -6981.0,0.25106731975236357 -6982.0,0.25098061914571984 -6983.0,0.250893948479234 -6984.0,0.2508073077425668 -6985.0,0.25072069692538274 -6986.0,0.25063411601734975 -6987.0,0.25054756500813935 -6988.0,0.2504610438874266 -6989.0,0.2503745526448902 -6990.0,0.2502880912702124 -6991.0,0.2502016597530789 -6992.0,0.2501152580831792 -6993.0,0.25002888625020603 -6994.0,0.24994254424385598 -6995.0,0.24985623205382904 -6996.0,0.24976994966982882 -6997.0,0.24968369708156238 -6998.0,0.24959747427874054 -6999.0,0.24951128125107744 -7000.0,0.24942511798829098 -7001.0,0.2493389844801024 -7002.0,0.2492528807162367 -7003.0,0.24916680668642222 -7004.0,0.24908076238039104 -7005.0,0.24899474778787872 -7006.0,0.24890876289862426 -7007.0,0.2488228077023704 -7008.0,0.2487368821888632 -7009.0,0.24865098634785246 -7010.0,0.24856512016909135 -7011.0,0.24847928364233676 -7012.0,0.2483934767573489 -7013.0,0.24830769950389178 -7014.0,0.24822195187173265 -7015.0,0.24813623385064257 -7016.0,0.24805054543039587 -7017.0,0.24796488660077068 -7018.0,0.24787925735154842 -7019.0,0.24779365767251427 -7020.0,0.24770808755345666 -7021.0,0.24762254698416783 -7022.0,0.2475370359544433 -7023.0,0.2474515544540823 -7024.0,0.24736610247288754 -7025.0,0.2472806800006651 -7026.0,0.24719528702722487 -7027.0,0.24710992354237993 -7028.0,0.24702458953594716 -7029.0,0.24693928499774676 -7030.0,0.24685400991760256 -7031.0,0.2467687642853418 -7032.0,0.24668354809079543 -7033.0,0.24659836132379762 -7034.0,0.24651320397418636 -7035.0,0.24642807603180286 -7036.0,0.2463429774864921 -7037.0,0.24625790832810232 -7038.0,0.2461728685464855 -7039.0,0.24608785813149694 -7040.0,0.2460028770729956 -7041.0,0.24591792536084375 -7042.0,0.24583300298490732 -7043.0,0.24574810993505575 -7044.0,0.2456632462011618 -7045.0,0.245578411773102 -7046.0,0.24549360664075606 -7047.0,0.24540883079400747 -7048.0,0.245324084222743 -7049.0,0.24523936691685305 -7050.0,0.24515467886623143 -7051.0,0.24507002006077555 -7052.0,0.24498539049038612 -7053.0,0.24490079014496757 -7054.0,0.24481621901442757 -7055.0,0.2447316770886775 -7056.0,0.24464716435763206 -7057.0,0.24456268081120955 -7058.0,0.24447822643933165 -7059.0,0.24439380123192364 -7060.0,0.24430940517891409 -7061.0,0.24422503827023526 -7062.0,0.24414070049582282 -7063.0,0.24405639184561576 -7064.0,0.24397211230955682 -7065.0,0.24388786187759195 -7066.0,0.2438036405396708 -7067.0,0.24371944828574624 -7068.0,0.2436352851057749 -7069.0,0.24355115098971655 -7070.0,0.2434670459275348 -7071.0,0.24338296990919636 -7072.0,0.2432989229246717 -7073.0,0.24321490496393453 -7074.0,0.24313091601696218 -7075.0,0.24304695607373533 -7076.0,0.24296302512423823 -7077.0,0.24287912315845847 -7078.0,0.24279525016638726 -7079.0,0.24271140613801903 -7080.0,0.24262759106335194 -7081.0,0.2425438049323873 -7082.0,0.24246004773513022 -7083.0,0.24237631946158888 -7084.0,0.2422926201017753 -7085.0,0.24220894964570458 -7086.0,0.2421253080833956 -7087.0,0.2420416954048704 -7088.0,0.2419581116001547 -7089.0,0.24187455665927748 -7090.0,0.24179103057227133 -7091.0,0.24170753332917208 -7092.0,0.2416240649200192 -7093.0,0.24154062533485557 -7094.0,0.24145721456372732 -7095.0,0.2413738325966843 -7096.0,0.24129047942377949 -7097.0,0.24120715503506962 -7098.0,0.24112385942061457 -7099.0,0.24104059257047789 -7100.0,0.24095735447472633 -7101.0,0.2408741451234303 -7102.0,0.24079096450666346 -7103.0,0.24070781261450305 -7104.0,0.24062468943702955 -7105.0,0.2405415949643271 -7106.0,0.240458529186483 -7107.0,0.2403754920935882 -7108.0,0.2402924836757369 -7109.0,0.24020950392302692 -7110.0,0.24012655282555925 -7111.0,0.2400436303734385 -7112.0,0.23996073655677266 -7113.0,0.239877871365673 -7114.0,0.23979503479025444 -7115.0,0.23971222682063506 -7116.0,0.23962944744693654 -7117.0,0.23954669665928385 -7118.0,0.2394639744478055 -7119.0,0.23938128080263324 -7120.0,0.23929861571390243 -7121.0,0.2392159791717516 -7122.0,0.23913337116632297 -7123.0,0.23905079168776183 -7124.0,0.23896824072621722 -7125.0,0.23888571827184127 -7126.0,0.23880322431478979 -7127.0,0.2387207588452217 -7128.0,0.2386383218532996 -7129.0,0.23855591332918927 -7130.0,0.23847353326305998 -7131.0,0.2383911816450845 -7132.0,0.23830885846543876 -7133.0,0.23822656371430226 -7134.0,0.2381442973818578 -7135.0,0.23806205945829167 -7136.0,0.2379798499337934 -7137.0,0.2378976687985561 -7138.0,0.237815516042776 -7139.0,0.23773339165665308 -7140.0,0.2376512956303903 -7141.0,0.23756922795419438 -7142.0,0.23748718861827509 -7143.0,0.23740517761284585 -7144.0,0.23732319492812326 -7145.0,0.2372412405543275 -7146.0,0.23715931448168184 -7147.0,0.23707741670041327 -7148.0,0.23699554720075183 -7149.0,0.23691370597293115 -7150.0,0.23683189300718827 -7151.0,0.23675010829376333 -7152.0,0.23666835182290014 -7153.0,0.23658662358484564 -7154.0,0.23650492356985037 -7155.0,0.23642325176816797 -7156.0,0.23634160817005576 -7157.0,0.23625999276577406 -7158.0,0.23617840554558692 -7159.0,0.23609684649976145 -7160.0,0.23601531561856837 -7161.0,0.23593381289228152 -7162.0,0.23585233831117836 -7163.0,0.2357708918655394 -7164.0,0.23568947354564881 -7165.0,0.23560808334179387 -7166.0,0.23552672124426544 -7167.0,0.23544538724335748 -7168.0,0.23536408132936754 -7169.0,0.2352828034925964 -7170.0,0.23520155372334817 -7171.0,0.23512033201193042 -7172.0,0.23503913834865386 -7173.0,0.23495797272383284 -7174.0,0.23487683512778473 -7175.0,0.23479572555083056 -7176.0,0.23471464398329442 -7177.0,0.23463359041550397 -7178.0,0.23455256483779002 -7179.0,0.2344715672404869 -7180.0,0.2343905976139321 -7181.0,0.23430965594846662 -7182.0,0.23422874223443463 -7183.0,0.23414785646218378 -7184.0,0.23406699862206493 -7185.0,0.2339861687044324 -7186.0,0.23390536669964365 -7187.0,0.23382459259805968 -7188.0,0.23374384639004478 -7189.0,0.2336631280659664 -7190.0,0.23358243761619552 -7191.0,0.23350177503110628 -7192.0,0.2334211403010763 -7193.0,0.23334053341648636 -7194.0,0.23325995436772076 -7195.0,0.23317940314516689 -7196.0,0.23309887973921567 -7197.0,0.23301838414026116 -7198.0,0.2329379163387009 -7199.0,0.23285747632493559 -7200.0,0.2327770640893694 -7201.0,0.2326966796224097 -7202.0,0.2326163229144672 -7203.0,0.23253599395595592 -7204.0,0.2324556927372933 -7205.0,0.23237541924889982 -7206.0,0.23229517348119955 -7207.0,0.23221495542461978 -7208.0,0.232134765069591 -7209.0,0.23205460240654716 -7210.0,0.23197446742592534 -7211.0,0.23189436011816614 -7212.0,0.23181428047371325 -7213.0,0.2317342284830138 -7214.0,0.23165420413651816 -7215.0,0.23157420742468002 -7216.0,0.2314942383379563 -7217.0,0.23141429686680737 -7218.0,0.23133438300169668 -7219.0,0.2312544967330912 -7220.0,0.231174638051461 -7221.0,0.23109480694727955 -7222.0,0.23101500341102357 -7223.0,0.23093522743317313 -7224.0,0.23085547900421144 -7225.0,0.23077575811462517 -7226.0,0.2306960647549042 -7227.0,0.23061639891554164 -7228.0,0.23053676058703404 -7229.0,0.230457149759881 -7230.0,0.23037756642458562 -7231.0,0.2302980105716541 -7232.0,0.23021848219159616 -7233.0,0.23013898127492446 -7234.0,0.23005950781215526 -7235.0,0.22998006179380787 -7236.0,0.22990064321040501 -7237.0,0.22982125205247259 -7238.0,0.22974188831053988 -7239.0,0.22966255197513924 -7240.0,0.22958324303680658 -7241.0,0.2295039614860808 -7242.0,0.22942470731350428 -7243.0,0.2293454805096225 -7244.0,0.22926628106498428 -7245.0,0.2291871089701418 -7246.0,0.2291079642156503 -7247.0,0.22902884679206847 -7248.0,0.2289497566899581 -7249.0,0.2288706938998844 -7250.0,0.22879165841241564 -7251.0,0.22871265021812362 -7252.0,0.22863366930758308 -7253.0,0.22855471567137228 -7254.0,0.22847578930007256 -7255.0,0.22839689018426867 -7256.0,0.2283180183145484 -7257.0,0.228239173681503 -7258.0,0.22816035627572687 -7259.0,0.22808156608781766 -7260.0,0.2280028031083762 -7261.0,0.22792406732800677 -7262.0,0.22784535873731665 -7263.0,0.22776667732691655 -7264.0,0.22768802308742037 -7265.0,0.22760939600944516 -7266.0,0.22753079608361135 -7267.0,0.22745222330054246 -7268.0,0.22737367765086544 -7269.0,0.22729515912521028 -7270.0,0.22721666771421034 -7271.0,0.2271382034085021 -7272.0,0.22705976619872545 -7273.0,0.22698135607552328 -7274.0,0.22690297302954193 -7275.0,0.2268246170514308 -7276.0,0.22674628813184272 -7277.0,0.22666798626143345 -7278.0,0.22658971143086226 -7279.0,0.22651146363079147 -7280.0,0.2264332428518868 -7281.0,0.2263550490848169 -7282.0,0.22627688232025397 -7283.0,0.2261987425488733 -7284.0,0.22612062976135322 -7285.0,0.22604254394837564 -7286.0,0.22596448510062536 -7287.0,0.2258864532087906 -7288.0,0.22580844826356267 -7289.0,0.2257304702556362 -7290.0,0.22565251917570892 -7291.0,0.2255745950144819 -7292.0,0.2254966977626593 -7293.0,0.22541882741094862 -7294.0,0.2253409839500604 -7295.0,0.22526316737070856 -7296.0,0.22518537766361008 -7297.0,0.22510761481948532 -7298.0,0.22502987882905762 -7299.0,0.22495216968305373 -7300.0,0.22487448737220345 -7301.0,0.22479683188723987 -7302.0,0.22471920321889932 -7303.0,0.22464160135792116 -7304.0,0.22456402629504815 -7305.0,0.22448647802102606 -7306.0,0.22440895652660406 -7307.0,0.22433146180253427 -7308.0,0.22425399383957223 -7309.0,0.22417655262847652 -7310.0,0.22409913816000904 -7311.0,0.22402175042493472 -7312.0,0.22394438941402184 -7313.0,0.22386705511804172 -7314.0,0.22378974752776906 -7315.0,0.22371246663398148 -7316.0,0.22363521242746007 -7317.0,0.22355798489898887 -7318.0,0.22348078403935526 -7319.0,0.22340360983934968 -7320.0,0.22332646228976583 -7321.0,0.22324934138140062 -7322.0,0.22317224710505404 -7323.0,0.22309517945152935 -7324.0,0.22301813841163284 -7325.0,0.22294112397617422 -7326.0,0.2228641361359661 -7327.0,0.22278717488182448 -7328.0,0.2227102402045684 -7329.0,0.22263333209502012 -7330.0,0.22255645054400505 -7331.0,0.22247959554235183 -7332.0,0.22240276708089216 -7333.0,0.22232596515046102 -7334.0,0.22224918974189642 -7335.0,0.2221724408460397 -7336.0,0.2220957184537352 -7337.0,0.22201902255583061 -7338.0,0.22194235314317656 -7339.0,0.22186571020662696 -7340.0,0.22178909373703895 -7341.0,0.22171250372527262 -7342.0,0.22163594016219146 -7343.0,0.2215594030386619 -7344.0,0.2214828923455537 -7345.0,0.22140640807373962 -7346.0,0.2213299502140957 -7347.0,0.22125351875750102 -7348.0,0.22117711369483795 -7349.0,0.22110073501699182 -7350.0,0.22102438271485128 -7351.0,0.220948056779308 -7352.0,0.22087175720125696 -7353.0,0.22079548397159604 -7354.0,0.2207192370812265 -7355.0,0.2206430165210526 -7356.0,0.22056682228198177 -7357.0,0.22049065435492465 -7358.0,0.22041451273079488 -7359.0,0.22033839740050942 -7360.0,0.22026230835498817 -7361.0,0.22018624558515432 -7362.0,0.2201102090819341 -7363.0,0.22003419883625697 -7364.0,0.21995821483905537 -7365.0,0.21988225708126505 -7366.0,0.2198063255538247 -7367.0,0.2197304202476764 -7368.0,0.21965454115376504 -7369.0,0.21957868826303892 -7370.0,0.21950286156644921 -7371.0,0.21942706105495052 -7372.0,0.21935128671950022 -7373.0,0.2192755385510591 -7374.0,0.2191998165405909 -7375.0,0.21912412067906253 -7376.0,0.21904845095744413 -7377.0,0.2189728073667087 -7378.0,0.21889718989783263 -7379.0,0.21882159854179525 -7380.0,0.2187460332895791 -7381.0,0.2186704941321697 -7382.0,0.21859498106055594 -7383.0,0.2185194940657295 -7384.0,0.2184440331386855 -7385.0,0.2183685982704218 -7386.0,0.21829318945193973 -7387.0,0.21821780667424348 -7388.0,0.21814244992834053 -7389.0,0.21806711920524124 -7390.0,0.21799181449595934 -7391.0,0.2179165357915114 -7392.0,0.21784128308291734 -7393.0,0.21776605636119992 -7394.0,0.21769085561738524 -7395.0,0.21761568084250243 -7396.0,0.21754053202758358 -7397.0,0.2174654091636641 -7398.0,0.21739031224178226 -7399.0,0.21731524125297966 -7400.0,0.2172401961883008 -7401.0,0.2171651770387934 -7402.0,0.21709018379550815 -7403.0,0.217015216449499 -7404.0,0.2169402749918228 -7405.0,0.21686535941353965 -7406.0,0.21679046970571264 -7407.0,0.216715605859408 -7408.0,0.21664076786569492 -7409.0,0.21656595571564594 -7410.0,0.21649116940033633 -7411.0,0.2164164089108448 -7412.0,0.21634167423825285 -7413.0,0.2162669653736452 -7414.0,0.2161922823081097 -7415.0,0.2161176250327371 -7416.0,0.21604299353862141 -7417.0,0.2159683878168596 -7418.0,0.21589380785855178 -7419.0,0.21581925365480104 -7420.0,0.2157447251967137 -7421.0,0.21567022247539896 -7422.0,0.2155957454819693 -7423.0,0.21552129420754004 -7424.0,0.21544686864322982 -7425.0,0.21537246878016006 -7426.0,0.2152980946094555 -7427.0,0.2152237461222438 -7428.0,0.21514942330965578 -7429.0,0.2150751261628252 -7430.0,0.21500085467288904 -7431.0,0.21492660883098713 -7432.0,0.21485238862826256 -7433.0,0.21477819405586146 -7434.0,0.21470402510493283 -7435.0,0.21462988176662895 -7436.0,0.21455576403210502 -7437.0,0.21448167189251935 -7438.0,0.21440760533903325 -7439.0,0.2143335643628112 -7440.0,0.21425954895502056 -7441.0,0.2141855591068319 -7442.0,0.21411159480941871 -7443.0,0.2140376560539577 -7444.0,0.21396374283162833 -7445.0,0.2138898551336135 -7446.0,0.21381599295109877 -7447.0,0.21374215627527304 -7448.0,0.21366834509732807 -7449.0,0.21359455940845878 -7450.0,0.21352079919986297 -7451.0,0.21344706446274167 -7452.0,0.21337335518829892 -7453.0,0.21329967136774158 -7454.0,0.21322601299227986 -7455.0,0.21315238005312676 -7456.0,0.21307877254149846 -7457.0,0.21300519044861405 -7458.0,0.21293163376569582 -7459.0,0.21285810248396891 -7460.0,0.21278459659466165 -7461.0,0.21271111608900523 -7462.0,0.21263766095823405 -7463.0,0.2125642311935854 -7464.0,0.21249082678629966 -7465.0,0.2124174477276202 -7466.0,0.21234409400879348 -7467.0,0.21227076562106884 -7468.0,0.21219746255569888 -7469.0,0.21212418480393894 -7470.0,0.21205093235704758 -7471.0,0.21197770520628637 -7472.0,0.21190450334291974 -7473.0,0.21183132675821534 -7474.0,0.21175817544344364 -7475.0,0.21168504938987834 -7476.0,0.2116119485887959 -7477.0,0.21153887303147603 -7478.0,0.2114658227092013 -7479.0,0.21139279761325738 -7480.0,0.21131979773493284 -7481.0,0.2112468230655194 -7482.0,0.21117387359631165 -7483.0,0.21110094931860732 -7484.0,0.211028050223707 -7485.0,0.21095517630291444 -7486.0,0.21088232754753622 -7487.0,0.21080950394888212 -7488.0,0.2107367054982647 -7489.0,0.2106639321869997 -7490.0,0.21059118400640583 -7491.0,0.2105184609478047 -7492.0,0.21044576300252102 -7493.0,0.2103730901618824 -7494.0,0.2103004424172196 -7495.0,0.21022781975986615 -7496.0,0.2101552221811588 -7497.0,0.21008264967243712 -7498.0,0.2100101022250438 -7499.0,0.20993757983032435 -7500.0,0.20986508247962754 -7501.0,0.20979261016430478 -7502.0,0.20972016287571082 -7503.0,0.2096477406052031 -7504.0,0.2095753433441423 -7505.0,0.2095029710838918 -7506.0,0.20943062381581823 -7507.0,0.20935830153129104 -7508.0,0.2092860042216827 -7509.0,0.20921373187836875 -7510.0,0.20914148449272751 -7511.0,0.2090692620561405 -7512.0,0.208997064559992 -7513.0,0.20892489199566952 -7514.0,0.20885274435456325 -7515.0,0.2087806216280666 -7516.0,0.2087085238075758 -7517.0,0.20863645088449015 -7518.0,0.2085644028502118 -7519.0,0.20849237969614606 -7520.0,0.208420381413701 -7521.0,0.2083484079942878 -7522.0,0.20827645942932052 -7523.0,0.20820453571021627 -7524.0,0.208132636828395 -7525.0,0.2080607627752798 -7526.0,0.20798891354229648 -7527.0,0.20791708912087406 -7528.0,0.2078452895024444 -7529.0,0.20777351467844227 -7530.0,0.20770176464030557 -7531.0,0.20763003937947488 -7532.0,0.20755833888739406 -7533.0,0.20748666315550965 -7534.0,0.20741501217527133 -7535.0,0.20734338593813162 -7536.0,0.20727178443554606 -7537.0,0.20720020765897307 -7538.0,0.20712865559987412 -7539.0,0.20705712824971348 -7540.0,0.2069856255999586 -7541.0,0.20691414764207958 -7542.0,0.20684269436754976 -7543.0,0.20677126576784516 -7544.0,0.20669986183444497 -7545.0,0.20662848255883115 -7546.0,0.2065571279324887 -7547.0,0.20648579794690558 -7548.0,0.20641449259357256 -7549.0,0.2063432118639835 -7550.0,0.20627195574963506 -7551.0,0.206200724242027 -7552.0,0.2061295173326618 -7553.0,0.20605833501304513 -7554.0,0.20598717727468532 -7555.0,0.2059160441090939 -7556.0,0.2058449355077851 -7557.0,0.20577385146227625 -7558.0,0.20570279196408747 -7559.0,0.20563175700474198 -7560.0,0.20556074657576573 -7561.0,0.20548976066868777 -7562.0,0.20541879927503992 -7563.0,0.2053478623863571 -7564.0,0.20527694999417695 -7565.0,0.20520606209004022 -7566.0,0.2051351986654905 -7567.0,0.2050643597120742 -7568.0,0.2049935452213409 -7569.0,0.20492275518484282 -7570.0,0.2048519895941353 -7571.0,0.20478124844077647 -7572.0,0.2047105317163275 -7573.0,0.20463983941235228 -7574.0,0.2045691715204179 -7575.0,0.204498528032094 -7576.0,0.20442790893895352 -7577.0,0.20435731423257195 -7578.0,0.20428674390452797 -7579.0,0.204216197946403 -7580.0,0.20414567634978148 -7581.0,0.2040751791062506 -7582.0,0.20400470620740066 -7583.0,0.20393425764482465 -7584.0,0.20386383341011863 -7585.0,0.20379343349488152 -7586.0,0.2037230578907151 -7587.0,0.2036527065892241 -7588.0,0.20358237958201605 -7589.0,0.20351207686070152 -7590.0,0.2034417984168939 -7591.0,0.20337154424220946 -7592.0,0.20330131432826737 -7593.0,0.2032311086666898 -7594.0,0.20316092724910162 -7595.0,0.20309077006713078 -7596.0,0.20302063711240798 -7597.0,0.20295052837656694 -7598.0,0.2028804438512441 -7599.0,0.20281038352807898 -7600.0,0.20274034739871383 -7601.0,0.20267033545479393 -7602.0,0.20260034768796725 -7603.0,0.20253038408988483 -7604.0,0.20246044465220056 -7605.0,0.2023905293665711 -7606.0,0.20232063822465612 -7607.0,0.20225077121811808 -7608.0,0.2021809283386224 -7609.0,0.20211110957783723 -7610.0,0.20204131492743385 -7611.0,0.20197154437908615 -7612.0,0.20190179792447108 -7613.0,0.20183207555526833 -7614.0,0.20176237726316062 -7615.0,0.20169270303983336 -7616.0,0.201623052876975 -7617.0,0.20155342676627672 -7618.0,0.20148382469943268 -7619.0,0.2014142466681398 -7620.0,0.20134469266409805 -7621.0,0.20127516267901 -7622.0,0.20120565670458126 -7623.0,0.2011361747325204 -7624.0,0.20106671675453858 -7625.0,0.20099728276235007 -7626.0,0.2009278727476718 -7627.0,0.20085848670222378 -7628.0,0.20078912461772863 -7629.0,0.2007197864859121 -7630.0,0.2006504722985025 -7631.0,0.20058118204723133 -7632.0,0.2005119157238326 -7633.0,0.20044267332004345 -7634.0,0.20037345482760371 -7635.0,0.20030426023825618 -7636.0,0.2002350895437464 -7637.0,0.2001659427358228 -7638.0,0.2000968198062367 -7639.0,0.20002772074674227 -7640.0,0.1999586455490964 -7641.0,0.19988959420505897 -7642.0,0.19982056670639273 -7643.0,0.1997515630448631 -7644.0,0.19968258321223853 -7645.0,0.19961362720029013 -7646.0,0.19954469500079206 -7647.0,0.19947578660552112 -7648.0,0.1994069020062571 -7649.0,0.19933804119478252 -7650.0,0.19926920416288285 -7651.0,0.19920039090234629 -7652.0,0.19913160140496394 -7653.0,0.19906283566252966 -7654.0,0.1989940936668403 -7655.0,0.19892537540969532 -7656.0,0.19885668088289726 -7657.0,0.19878801007825123 -7658.0,0.19871936298756546 -7659.0,0.19865073960265067 -7660.0,0.19858213991532073 -7661.0,0.19851356391739217 -7662.0,0.19844501160068434 -7663.0,0.19837648295701948 -7664.0,0.19830797797822258 -7665.0,0.1982394966561216 -7666.0,0.19817103898254704 -7667.0,0.19810260494933257 -7668.0,0.19803419454831442 -7669.0,0.19796580777133177 -7670.0,0.1978974446102265 -7671.0,0.19782910505684348 -7672.0,0.19776078910303022 -7673.0,0.1976924967406372 -7674.0,0.19762422796151757 -7675.0,0.19755598275752742 -7676.0,0.19748776112052555 -7677.0,0.19741956304237365 -7678.0,0.19735138851493614 -7679.0,0.1972832375300803 -7680.0,0.19721511007967632 -7681.0,0.19714700615559697 -7682.0,0.19707892574971803 -7683.0,0.1970108688539179 -7684.0,0.19694283546007801 -7685.0,0.19687482556008237 -7686.0,0.19680683914581798 -7687.0,0.19673887620917446 -7688.0,0.19667093674204444 -7689.0,0.19660302073632316 -7690.0,0.19653512818390878 -7691.0,0.19646725907670215 -7692.0,0.19639941340660705 -7693.0,0.19633159116552992 -7694.0,0.19626379234538016 -7695.0,0.19619601693806976 -7696.0,0.19612826493551366 -7697.0,0.19606053632962953 -7698.0,0.1959928311123378 -7699.0,0.19592514927556184 -7700.0,0.1958574908112276 -7701.0,0.19578985571126398 -7702.0,0.19572224396760254 -7703.0,0.1956546555721778 -7704.0,0.1955870905169268 -7705.0,0.19551954879378966 -7706.0,0.19545203039470907 -7707.0,0.19538453531163064 -7708.0,0.1953170635365026 -7709.0,0.19524961506127617 -7710.0,0.19518218987790514 -7711.0,0.19511478797834628 -7712.0,0.19504740935455894 -7713.0,0.19498005399850543 -7714.0,0.19491272190215064 -7715.0,0.19484541305746245 -7716.0,0.1947781274564113 -7717.0,0.19471086509097058 -7718.0,0.1946436259531164 -7719.0,0.19457641003482753 -7720.0,0.1945092173280857 -7721.0,0.19444204782487526 -7722.0,0.1943749015171834 -7723.0,0.194307778397 -7724.0,0.19424067845631784 -7725.0,0.19417360168713232 -7726.0,0.19410654808144173 -7727.0,0.194039517631247 -7728.0,0.19397251032855195 -7729.0,0.193905526165363 -7730.0,0.19383856513368958 -7731.0,0.19377162722554356 -7732.0,0.19370471243293988 -7733.0,0.19363782074789598 -7734.0,0.19357095216243225 -7735.0,0.19350410666857168 -7736.0,0.19343728425834014 -7737.0,0.19337048492376627 -7738.0,0.19330370865688123 -7739.0,0.19323695544971928 -7740.0,0.1931702252943171 -7741.0,0.19310351818271435 -7742.0,0.19303683410695333 -7743.0,0.19297017305907915 -7744.0,0.19290353503113955 -7745.0,0.19283692001518524 -7746.0,0.19277032800326938 -7747.0,0.19270375898744815 -7748.0,0.19263721295978026 -7749.0,0.19257068991232734 -7750.0,0.19250418983715356 -7751.0,0.1924377127263261 -7752.0,0.19237125857191456 -7753.0,0.19230482736599158 -7754.0,0.19223841910063233 -7755.0,0.19217203376791478 -7756.0,0.1921056713599197 -7757.0,0.19203933186873048 -7758.0,0.1919730152864334 -7759.0,0.19190672160511724 -7760.0,0.19184045081687373 -7761.0,0.1917742029137972 -7762.0,0.19170797788798485 -7763.0,0.1916417757315364 -7764.0,0.19157559643655453 -7765.0,0.19150943999514441 -7766.0,0.1914433063994142 -7767.0,0.19137719564147448 -7768.0,0.19131110771343887 -7769.0,0.19124504260742348 -7770.0,0.19117900031554724 -7771.0,0.19111298082993178 -7772.0,0.1910469841427015 -7773.0,0.19098101024598338 -7774.0,0.1909150591319073 -7775.0,0.1908491307926058 -7776.0,0.190783225220214 -7777.0,0.19071734240686994 -7778.0,0.1906514823447142 -7779.0,0.19058564502589026 -7780.0,0.1905198304425441 -7781.0,0.19045403858682464 -7782.0,0.19038826945088325 -7783.0,0.19032252302687427 -7784.0,0.19025679930695455 -7785.0,0.1901910982832838 -7786.0,0.19012541994802426 -7787.0,0.19005976429334112 -7788.0,0.18999413131140203 -7789.0,0.18992852099437754 -7790.0,0.1898629333344407 -7791.0,0.18979736832376753 -7792.0,0.1897318259545365 -7793.0,0.18966630621892888 -7794.0,0.18960080910912872 -7795.0,0.18953533461732258 -7796.0,0.18946988273569998 -7797.0,0.18940445345645285 -7798.0,0.18933904677177602 -7799.0,0.18927366267386692 -7800.0,0.18920830115492576 -7801.0,0.18914296220715532 -7802.0,0.18907764582276118 -7803.0,0.18901235199395153 -7804.0,0.18894708071293737 -7805.0,0.1888818319719322 -7806.0,0.18881660576315246 -7807.0,0.188751402078817 -7808.0,0.18868622091114762 -7809.0,0.18862106225236855 -7810.0,0.18855592609470698 -7811.0,0.1884908124303925 -7812.0,0.18842572125165763 -7813.0,0.18836065255073745 -7814.0,0.18829560631986966 -7815.0,0.18823058255129485 -7816.0,0.18816558123725605 -7817.0,0.18810060236999915 -7818.0,0.18803564594177255 -7819.0,0.18797071194482753 -7820.0,0.18790580037141785 -7821.0,0.18784091121380012 -7822.0,0.18777604446423343 -7823.0,0.18771120011497977 -7824.0,0.18764637815830357 -7825.0,0.18758157858647212 -7826.0,0.18751680139175525 -7827.0,0.18745204656642558 -7828.0,0.18738731410275825 -7829.0,0.18732260399303124 -7830.0,0.187257916229525 -7831.0,0.18719325080452281 -7832.0,0.1871286077103106 -7833.0,0.18706398693917684 -7834.0,0.1869993884834128 -7835.0,0.18693481233531228 -7836.0,0.18687025848717193 -7837.0,0.18680572693129086 -7838.0,0.18674121765997095 -7839.0,0.1866767306655167 -7840.0,0.18661226594023533 -7841.0,0.18654782347643661 -7842.0,0.1864834032664331 -7843.0,0.18641900530253983 -7844.0,0.18635462957707466 -7845.0,0.18629027608235801 -7846.0,0.18622594481071306 -7847.0,0.18616163575446543 -7848.0,0.18609734890594362 -7849.0,0.18603308425747858 -7850.0,0.18596884180140408 -7851.0,0.1859046215300565 -7852.0,0.18584042343577473 -7853.0,0.18577624751090047 -7854.0,0.18571209374777797 -7855.0,0.18564796213875417 -7856.0,0.18558385267617863 -7857.0,0.18551976535240358 -7858.0,0.18545570015978383 -7859.0,0.18539165709067693 -7860.0,0.1853276361374429 -7861.0,0.18526363729244466 -7862.0,0.18519966054804746 -7863.0,0.18513570589661946 -7864.0,0.18507177333053124 -7865.0,0.18500786284215623 -7866.0,0.18494397442387023 -7867.0,0.18488010806805194 -7868.0,0.1848162637670825 -7869.0,0.18475244151334574 -7870.0,0.1846886412992282 -7871.0,0.18462486311711893 -7872.0,0.18456110695940972 -7873.0,0.1844973728184948 -7874.0,0.18443366068677128 -7875.0,0.18436997055663867 -7876.0,0.1843063024204993 -7877.0,0.18424265627075792 -7878.0,0.1841790320998221 -7879.0,0.18411542990010185 -7880.0,0.18405184966401 -7881.0,0.18398829138396178 -7882.0,0.18392475505237524 -7883.0,0.1838612406616709 -7884.0,0.183797748204272 -7885.0,0.18373427767260428 -7886.0,0.18367082905909626 -7887.0,0.18360740235617892 -7888.0,0.18354399755628595 -7889.0,0.18348061465185364 -7890.0,0.1834172536353208 -7891.0,0.183353914499129 -7892.0,0.18329059723572225 -7893.0,0.18322730183754737 -7894.0,0.1831640282970536 -7895.0,0.18310077660669294 -7896.0,0.1830375467589198 -7897.0,0.18297433874619148 -7898.0,0.1829111525609676 -7899.0,0.1828479881957106 -7900.0,0.18278484564288533 -7901.0,0.18272172489495947 -7902.0,0.18265862594440305 -7903.0,0.18259554878368892 -7904.0,0.18253249340529235 -7905.0,0.18246945980169138 -7906.0,0.18240644796536648 -7907.0,0.18234345788880085 -7908.0,0.18228048956448023 -7909.0,0.18221754298489296 -7910.0,0.18215461814252995 -7911.0,0.18209171502988472 -7912.0,0.18202883363945344 -7913.0,0.18196597396373473 -7914.0,0.18190313599522998 -7915.0,0.18184031972644302 -7916.0,0.18177752514988035 -7917.0,0.18171475225805103 -7918.0,0.18165200104346674 -7919.0,0.18158927149864165 -7920.0,0.18152656361609265 -7921.0,0.18146387738833908 -7922.0,0.18140121280790303 -7923.0,0.18133856986730895 -7924.0,0.1812759485590841 -7925.0,0.18121334887575816 -7926.0,0.18115077080986342 -7927.0,0.18108821435393485 -7928.0,0.18102567950050985 -7929.0,0.18096316624212855 -7930.0,0.18090067457133346 -7931.0,0.1808382044806699 -7932.0,0.18077575596268552 -7933.0,0.18071332900993078 -7934.0,0.18065092361495852 -7935.0,0.18058853977032427 -7936.0,0.18052617746858607 -7937.0,0.18046383670230462 -7938.0,0.180401517464043 -7939.0,0.1803392197463671 -7940.0,0.18027694354184517 -7941.0,0.18021468884304817 -7942.0,0.1801524556425495 -7943.0,0.1800902439329253 -7944.0,0.18002805370675407 -7945.0,0.17996588495661697 -7946.0,0.17990373767509782 -7947.0,0.17984161185478278 -7948.0,0.1797795074882608 -7949.0,0.1797174245681232 -7950.0,0.179655363086964 -7951.0,0.17959332303737965 -7952.0,0.17953130441196932 -7953.0,0.17946930720333454 -7954.0,0.17940733140407955 -7955.0,0.17934537700681108 -7956.0,0.17928344400413843 -7957.0,0.17922153238867342 -7958.0,0.17915964215303049 -7959.0,0.1790977732898265 -7960.0,0.17903592579168107 -7961.0,0.1789740996512161 -7962.0,0.17891229486105634 -7963.0,0.1788505114138288 -7964.0,0.1787887493021632 -7965.0,0.17872700851869183 -7966.0,0.1786652890560494 -7967.0,0.17860359090687325 -7968.0,0.17854191406380324 -7969.0,0.17848025851948177 -7970.0,0.17841862426655375 -7971.0,0.17835701129766676 -7972.0,0.1782954196054707 -7973.0,0.17823384918261823 -7974.0,0.17817230002176437 -7975.0,0.17811077211556683 -7976.0,0.1780492654566857 -7977.0,0.17798778003778376 -7978.0,0.17792631585152616 -7979.0,0.17786487289058078 -7980.0,0.1778034511476178 -7981.0,0.1777420506153102 -7982.0,0.1776806712863332 -7983.0,0.17761931315336474 -7984.0,0.17755797620908534 -7985.0,0.1774966604461778 -7986.0,0.1774353658573277 -7987.0,0.17737409243522298 -7988.0,0.17731284017255422 -7989.0,0.17725160906201443 -7990.0,0.17719039909629922 -7991.0,0.17712921026810663 -7992.0,0.17706804257013736 -7993.0,0.17700689599509448 -7994.0,0.1769457705356837 -7995.0,0.17688466618461315 -7996.0,0.17682358293459358 -7997.0,0.17676252077833812 -7998.0,0.17670147970856262 -7999.0,0.17664045971798523 -8000.0,0.17657946079932677 -8001.0,0.17651848294531042 -8002.0,0.17645752614866206 -8003.0,0.17639659040211 -8004.0,0.17633567569838496 -8005.0,0.17627478203022034 -8006.0,0.17621390939035192 -8007.0,0.17615305777151807 -8008.0,0.17609222716645961 -8009.0,0.17603141756791993 -8010.0,0.17597062896864485 -8011.0,0.17590986136138276 -8012.0,0.17584911473888445 -8013.0,0.17578838909390343 -8014.0,0.17572768441919545 -8015.0,0.17566700070751898 -8016.0,0.1756063379516348 -8017.0,0.17554569614430637 -8018.0,0.1754850752782995 -8019.0,0.1754244753463826 -8020.0,0.17536389634132654 -8021.0,0.17530333825590466 -8022.0,0.17524280108289286 -8023.0,0.17518228481506948 -8024.0,0.17512178944521536 -8025.0,0.17506131496611382 -8026.0,0.1750008613705508 -8027.0,0.17494042865131448 -8028.0,0.1748800168011958 -8029.0,0.17481962581298796 -8030.0,0.17475925567948686 -8031.0,0.1746989063934907 -8032.0,0.17463857794780033 -8033.0,0.17457827033521892 -8034.0,0.1745179835485523 -8035.0,0.1744577175806086 -8036.0,0.17439747242419862 -8037.0,0.17433724807213546 -8038.0,0.1742770445172349 -8039.0,0.17421686175231502 -8040.0,0.17415669977019643 -8041.0,0.17409655856370237 -8042.0,0.17403643812565828 -8043.0,0.17397633844889235 -8044.0,0.17391625952623505 -8045.0,0.17385620135051946 -8046.0,0.17379616391458103 -8047.0,0.17373614721125777 -8048.0,0.17367615123339006 -8049.0,0.1736161759738209 -8050.0,0.17355622142539562 -8051.0,0.1734962875809621 -8052.0,0.17343637443337068 -8053.0,0.17337648197547417 -8054.0,0.17331661020012779 -8055.0,0.1732567591001893 -8056.0,0.17319692866851888 -8057.0,0.17313711889797925 -8058.0,0.17307732978143547 -8059.0,0.1730175613117552 -8060.0,0.17295781348180847 -8061.0,0.17289808628446776 -8062.0,0.17283837971260813 -8063.0,0.17277869375910693 -8064.0,0.17271902841684417 -8065.0,0.1726593836787021 -8066.0,0.1725997595375656 -8067.0,0.1725401559863219 -8068.0,0.17248057301786082 -8069.0,0.17242101062507445 -8070.0,0.1723614688008575 -8071.0,0.17230194753810701 -8072.0,0.1722424468297226 -8073.0,0.17218296666860614 -8074.0,0.17212350704766222 -8075.0,0.17206406795979765 -8076.0,0.17200464939792184 -8077.0,0.1719452513549465 -8078.0,0.17188587382378598 -8079.0,0.17182651679735694 -8080.0,0.1717671802685785 -8081.0,0.17170786423037226 -8082.0,0.17164856867566225 -8083.0,0.17158929359737493 -8084.0,0.17153003898843922 -8085.0,0.1714708048417865 -8086.0,0.1714115911503505 -8087.0,0.17135239790706755 -8088.0,0.17129322510487627 -8089.0,0.1712340727367178 -8090.0,0.17117494079553566 -8091.0,0.17111582927427588 -8092.0,0.17105673816588685 -8093.0,0.17099766746331949 -8094.0,0.17093861715952702 -8095.0,0.17087958724746524 -8096.0,0.17082057772009226 -8097.0,0.1707615885703687 -8098.0,0.17070261979125756 -8099.0,0.1706436713757243 -8100.0,0.1705847433167369 -8101.0,0.1705258356072655 -8102.0,0.17046694824028297 -8103.0,0.1704080812087644 -8104.0,0.17034923450568748 -8105.0,0.1702904081240321 -8106.0,0.1702316020567808 -8107.0,0.1701728162969184 -8108.0,0.17011405083743222 -8109.0,0.1700553056713119 -8110.0,0.16999658079154967 -8111.0,0.16993787619113998 -8112.0,0.1698791918630799 -8113.0,0.16982052780036871 -8114.0,0.16976188399600833 -8115.0,0.16970326044300285 -8116.0,0.169644657134359 -8117.0,0.16958607406308585 -8118.0,0.16952751122219478 -8119.0,0.16946896860469976 -8120.0,0.169410446203617 -8121.0,0.1693519440119653 -8122.0,0.16929346202276566 -8123.0,0.16923500022904173 -8124.0,0.1691765586238193 -8125.0,0.16911813720012686 -8126.0,0.16905973595099505 -8127.0,0.1690013548694571 -8128.0,0.16894299394854853 -8129.0,0.16888465318130733 -8130.0,0.16882633256077384 -8131.0,0.16876803207999086 -8132.0,0.16870975173200356 -8133.0,0.16865149150985956 -8134.0,0.16859325140660875 -8135.0,0.16853503141530357 -8136.0,0.1684768315289988 -8137.0,0.16841865174075163 -8138.0,0.16836049204362163 -8139.0,0.1683023524306707 -8140.0,0.16824423289496335 -8141.0,0.16818613342956618 -8142.0,0.1681280540275485 -8143.0,0.16806999468198172 -8144.0,0.1680119553859399 -8145.0,0.1679539361324993 -8146.0,0.1678959369147387 -8147.0,0.16783795772573917 -8148.0,0.16777999855858425 -8149.0,0.16772205940635979 -8150.0,0.16766414026215415 -8151.0,0.1676062411190579 -8152.0,0.16754836197016418 -8153.0,0.16749050280856834 -8154.0,0.16743266362736828 -8155.0,0.16737484441966421 -8156.0,0.16731704517855867 -8157.0,0.16725926589715667 -8158.0,0.16720150656856556 -8159.0,0.16714376718589505 -8160.0,0.16708604774225724 -8161.0,0.1670283482307667 -8162.0,0.1669706686445402 -8163.0,0.16691300897669706 -8164.0,0.16685536922035885 -8165.0,0.1667977493686496 -8166.0,0.16674014941469567 -8167.0,0.16668256935162584 -8168.0,0.16662500917257114 -8169.0,0.16656746887066518 -8170.0,0.16650994843904368 -8171.0,0.166452447870845 -8172.0,0.16639496715920968 -8173.0,0.1663375062972807 -8174.0,0.1662800652782034 -8175.0,0.1662226440951255 -8176.0,0.16616524274119707 -8177.0,0.16610786120957047 -8178.0,0.16605049949340064 -8179.0,0.16599315758584463 -8180.0,0.16593583548006202 -8181.0,0.16587853316921466 -8182.0,0.16582125064646688 -8183.0,0.16576398790498523 -8184.0,0.1657067449379387 -8185.0,0.1656495217384986 -8186.0,0.16559231829983864 -8187.0,0.16553513461513486 -8188.0,0.1654779706775657 -8189.0,0.16542082648031187 -8190.0,0.1653637020165565 -8191.0,0.16530659727948505 -8192.0,0.16524951226228535 -8193.0,0.1651924469581476 -8194.0,0.16513540136026428 -8195.0,0.1650783754618303 -8196.0,0.16502136925604285 -8197.0,0.16496438273610156 -8198.0,0.1649074158952083 -8199.0,0.16485046872656736 -8200.0,0.16479354122338535 -8201.0,0.1647366333788713 -8202.0,0.16467974518623638 -8203.0,0.1646228766386944 -8204.0,0.16456602772946122 -8205.0,0.1645091984517553 -8206.0,0.16445238879879723 -8207.0,0.1643955987638101 -8208.0,0.1643388283400192 -8209.0,0.1642820775206523 -8210.0,0.1642253462989394 -8211.0,0.16416863466811285 -8212.0,0.1641119426214075 -8213.0,0.16405527015206023 -8214.0,0.16399861725331055 -8215.0,0.16394198391840012 -8216.0,0.16388537014057306 -8217.0,0.16382877591307568 -8218.0,0.16377220122915676 -8219.0,0.1637156460820673 -8220.0,0.16365911046506074 -8221.0,0.16360259437139274 -8222.0,0.1635460977943214 -8223.0,0.16348962072710702 -8224.0,0.16343316316301237 -8225.0,0.1633767250953024 -8226.0,0.16332030651724455 -8227.0,0.1632639074221084 -8228.0,0.16320752780316605 -8229.0,0.1631511676536917 -8230.0,0.1630948269669621 -8231.0,0.16303850573625617 -8232.0,0.16298220395485521 -8233.0,0.16292592161604283 -8234.0,0.16286965871310494 -8235.0,0.16281341523932982 -8236.0,0.162757191188008 -8237.0,0.1627009865524324 -8238.0,0.16264480132589812 -8239.0,0.1625886355017028 -8240.0,0.16253248907314619 -8241.0,0.16247636203353047 -8242.0,0.16242025437616003 -8243.0,0.16236416609434173 -8244.0,0.16230809718138453 -8245.0,0.16225204763059994 -8246.0,0.16219601743530157 -8247.0,0.16214000658880548 -8248.0,0.16208401508442993 -8249.0,0.16202804291549555 -8250.0,0.16197209007532534 -8251.0,0.16191615655724448 -8252.0,0.16186024235458052 -8253.0,0.16180434746066324 -8254.0,0.1617484718688249 -8255.0,0.16169261557239986 -8256.0,0.16163677856472494 -8257.0,0.16158096083913912 -8258.0,0.16152516238898382 -8259.0,0.16146938320760262 -8260.0,0.16141362328834155 -8261.0,0.16135788262454878 -8262.0,0.16130216120957494 -8263.0,0.1612464590367728 -8264.0,0.16119077609949753 -8265.0,0.16113511239110653 -8266.0,0.16107946790495958 -8267.0,0.16102384263441866 -8268.0,0.16096823657284806 -8269.0,0.16091264971361444 -8270.0,0.16085708205008664 -8271.0,0.1608015335756359 -8272.0,0.16074600428363564 -8273.0,0.16069049416746164 -8274.0,0.16063500322049193 -8275.0,0.1605795314361069 -8276.0,0.1605240788076891 -8277.0,0.1604686453286235 -8278.0,0.16041323099229723 -8279.0,0.1603578357920998 -8280.0,0.16030245972142296 -8281.0,0.16024710277366075 -8282.0,0.1601917649422095 -8283.0,0.16013644622046777 -8284.0,0.16008114660183648 -8285.0,0.16002586607971878 -8286.0,0.15997060464752008 -8287.0,0.1599153622986481 -8288.0,0.15986013902651292 -8289.0,0.15980493482452665 -8290.0,0.15974974968610398 -8291.0,0.15969458360466163 -8292.0,0.15963943657361873 -8293.0,0.1595843085863966 -8294.0,0.15952919963641896 -8295.0,0.1594741097171116 -8296.0,0.15941903882190278 -8297.0,0.1593639869442229 -8298.0,0.1593089540775047 -8299.0,0.15925394021518313 -8300.0,0.15919894535069548 -8301.0,0.15914396947748122 -8302.0,0.15908901258898217 -8303.0,0.1590340746786423 -8304.0,0.15897915573990803 -8305.0,0.15892425576622785 -8306.0,0.1588693747510526 -8307.0,0.1588145126878354 -8308.0,0.15875966957003157 -8309.0,0.1587048453910988 -8310.0,0.15865004014449688 -8311.0,0.158595253823688 -8312.0,0.1585404864221365 -8313.0,0.1584857379333091 -8314.0,0.15843100835067464 -8315.0,0.1583762976677043 -8316.0,0.1583216058778715 -8317.0,0.15826693297465194 -8318.0,0.15821227895152346 -8319.0,0.1581576438019663 -8320.0,0.15810302751946287 -8321.0,0.15804843009749786 -8322.0,0.15799385152955814 -8323.0,0.15793929180913296 -8324.0,0.15788475092971366 -8325.0,0.15783022888479398 -8326.0,0.15777572566786982 -8327.0,0.15772124127243933 -8328.0,0.15766677569200294 -8329.0,0.15761232892006327 -8330.0,0.15755790095012526 -8331.0,0.157503491775696 -8332.0,0.15744910139028492 -8333.0,0.1573947297874036 -8334.0,0.15734037696056596 -8335.0,0.15728604290328804 -8336.0,0.15723172760908824 -8337.0,0.1571774310714871 -8338.0,0.15712315328400747 -8339.0,0.15706889424017437 -8340.0,0.15701465393351513 -8341.0,0.15696043235755924 -8342.0,0.1569062295058385 -8343.0,0.15685204537188685 -8344.0,0.15679787994924058 -8345.0,0.15674373323143814 -8346.0,0.15668960521202016 -8347.0,0.15663549588452966 -8348.0,0.15658140524251168 -8349.0,0.1565273332795137 -8350.0,0.15647327998908528 -8351.0,0.15641924536477828 -8352.0,0.1563652294001467 -8353.0,0.15631123208874692 -8354.0,0.15625725342413738 -8355.0,0.1562032933998789 -8356.0,0.15614935200953434 -8357.0,0.15609542924666897 -8358.0,0.15604152510485014 -8359.0,0.15598763957764755 -8360.0,0.15593377265863295 -8361.0,0.1558799243413805 -8362.0,0.15582609461946645 -8363.0,0.15577228348646927 -8364.0,0.1557184909359698 -8365.0,0.15566471696155082 -8366.0,0.15561096155679763 -8367.0,0.1555572247152975 -8368.0,0.1555035064306401 -8369.0,0.15544980669641717 -8370.0,0.15539612550622275 -8371.0,0.15534246285365302 -8372.0,0.15528881873230652 -8373.0,0.1552351931357838 -8374.0,0.15518158605768775 -8375.0,0.15512799749162345 -8376.0,0.15507442743119815 -8377.0,0.15502087587002134 -8378.0,0.15496734280170474 -8379.0,0.1549138282198622 -8380.0,0.1548603321181098 -8381.0,0.15480685449006593 -8382.0,0.15475339532935103 -8383.0,0.15469995462958788 -8384.0,0.1546465323844013 -8385.0,0.15459312858741847 -8386.0,0.15453974323226868 -8387.0,0.1544863763125835 -8388.0,0.15443302782199655 -8389.0,0.15437969775414384 -8390.0,0.15432638610266342 -8391.0,0.15427309286119562 -8392.0,0.15421981802338292 -8393.0,0.1541665615828701 -8394.0,0.15411332353330393 -8395.0,0.1540601038683336 -8396.0,0.15400690258161034 -8397.0,0.1539537196667877 -8398.0,0.1539005551175212 -8399.0,0.15384740892746884 -8400.0,0.1537942810902906 -8401.0,0.15374117159964876 -8402.0,0.1536880804492077 -8403.0,0.15363500763263402 -8404.0,0.15358195314359657 -8405.0,0.15352891697576632 -8406.0,0.15347589912281642 -8407.0,0.15342289957842226 -8408.0,0.15336991833626135 -8409.0,0.15331695539001342 -8410.0,0.1532640107333604 -8411.0,0.15321108435998634 -8412.0,0.15315817626357756 -8413.0,0.15310528643782245 -8414.0,0.15305241487641172 -8415.0,0.15299956157303807 -8416.0,0.1529467265213966 -8417.0,0.15289390971518438 -8418.0,0.15284111114810078 -8419.0,0.15278833081384735 -8420.0,0.15273556870612776 -8421.0,0.15268282481864787 -8422.0,0.15263009914511572 -8423.0,0.15257739167924153 -8424.0,0.15252470241473765 -8425.0,0.15247203134531867 -8426.0,0.1524193784647013 -8427.0,0.15236674376660447 -8428.0,0.1523141272447492 -8429.0,0.15226152889285874 -8430.0,0.15220894870465845 -8431.0,0.152156386673876 -8432.0,0.152103842794241 -8433.0,0.15205131705948544 -8434.0,0.15199880946334332 -8435.0,0.15194631999955094 -8436.0,0.1518938486618466 -8437.0,0.1518413954439709 -8438.0,0.1517889603396666 -8439.0,0.15173654334267847 -8440.0,0.15168414444675365 -8441.0,0.15163176364564124 -8442.0,0.15157940093309266 -8443.0,0.15152705630286137 -8444.0,0.1514747297487031 -8445.0,0.1514224212643756 -8446.0,0.15137013084363893 -8447.0,0.15131785848025514 -8448.0,0.1512656041679886 -8449.0,0.15121336790060566 -8450.0,0.15116114967187502 -8451.0,0.15110894947556733 -8452.0,0.15105676730545556 -8453.0,0.15100460315531467 -8454.0,0.15095245701892196 -8455.0,0.1509003288900567 -8456.0,0.15084821876250043 -8457.0,0.15079612663003678 -8458.0,0.1507440524864515 -8459.0,0.1506919963255326 -8460.0,0.1506399581410701 -8461.0,0.15058793792685624 -8462.0,0.15053593567668538 -8463.0,0.15048395138435405 -8464.0,0.15043198504366087 -8465.0,0.1503800366484067 -8466.0,0.1503281061923944 -8467.0,0.1502761936694291 -8468.0,0.15022429907331797 -8469.0,0.1501724223978704 -8470.0,0.15012056363689782 -8471.0,0.15006872278421396 -8472.0,0.1500168998336345 -8473.0,0.1499650947789774 -8474.0,0.14991330761406263 -8475.0,0.14986153833271237 -8476.0,0.149809786928751 -8477.0,0.14975805339600484 -8478.0,0.14970633772830258 -8479.0,0.1496546399194748 -8480.0,0.1496029599633544 -8481.0,0.14955129785377633 -8482.0,0.14949965358457765 -8483.0,0.1494480271495976 -8484.0,0.14939641854267752 -8485.0,0.14934482775766084 -8486.0,0.14929325478839325 -8487.0,0.14924169962872236 -8488.0,0.1491901622724981 -8489.0,0.14913864271357236 -8490.0,0.1490871409457993 -8491.0,0.1490356569630351 -8492.0,0.14898419075913816 -8493.0,0.14893274232796883 -8494.0,0.14888131166338975 -8495.0,0.1488298987592656 -8496.0,0.14877850360946324 -8497.0,0.14872712620785156 -8498.0,0.14867576654830159 -8499.0,0.14862442462468656 -8500.0,0.14857310043088168 -8501.0,0.14852179396076443 -8502.0,0.14847050520821423 -8503.0,0.1484192341671128 -8504.0,0.1483679808313438 -8505.0,0.14831674519479315 -8506.0,0.14826552725134873 -8507.0,0.1482143269949007 -8508.0,0.14816314441934117 -8509.0,0.14811197951856447 -8510.0,0.148060832286467 -8511.0,0.14800970271694727 -8512.0,0.14795859080390586 -8513.0,0.14790749654124552 -8514.0,0.1478564199228711 -8515.0,0.14780536094268948 -8516.0,0.14775431959460977 -8517.0,0.14770329587254302 -8518.0,0.14765228977040254 -8519.0,0.1476013012821036 -8520.0,0.14755033040156376 -8521.0,0.14749937712270245 -8522.0,0.1474484414394414 -8523.0,0.14739752334570427 -8524.0,0.14734662283541702 -8525.0,0.14729573990250747 -8526.0,0.14724487454090573 -8527.0,0.14719402674454388 -8528.0,0.14714319650735624 -8529.0,0.14709238382327902 -8530.0,0.14704158868625072 -8531.0,0.1469908110902118 -8532.0,0.14694005102910487 -8533.0,0.1468893084968747 -8534.0,0.14683858348746795 -8535.0,0.14678787599483362 -8536.0,0.14673718601292257 -8537.0,0.14668651353568796 -8538.0,0.1466358585570848 -8539.0,0.14658522107107047 -8540.0,0.14653460107160415 -8541.0,0.14648399855264735 -8542.0,0.1464334135081635 -8543.0,0.1463828459321182 -8544.0,0.14633229581847906 -8545.0,0.14628176316121588 -8546.0,0.14623124795430045 -8547.0,0.14618075019170668 -8548.0,0.14613026986741054 -8549.0,0.14607980697539016 -8550.0,0.1460293615096256 -8551.0,0.1459789334640991 -8552.0,0.14592852283279503 -8553.0,0.14587812960969967 -8554.0,0.14582775378880158 -8555.0,0.1457773953640912 -8556.0,0.1457270543295612 -8557.0,0.14567673067920622 -8558.0,0.14562642440702306 -8559.0,0.14557613550701048 -8560.0,0.14552586397316947 -8561.0,0.14547560979950291 -8562.0,0.14542537298001593 -8563.0,0.14537515350871558 -8564.0,0.14532495137961107 -8565.0,0.14527476658671362 -8566.0,0.14522459912403662 -8567.0,0.1451744489855954 -8568.0,0.14512431616540744 -8569.0,0.1450742006574922 -8570.0,0.14502410245587136 -8571.0,0.14497402155456854 -8572.0,0.14492395794760937 -8573.0,0.14487391162902177 -8574.0,0.14482388259283546 -8575.0,0.1447738708330824 -8576.0,0.14472387634379655 -8577.0,0.1446738991190139 -8578.0,0.14462393915277255 -8579.0,0.14457399643911265 -8580.0,0.14452407097207637 -8581.0,0.144474162745708 -8582.0,0.14442427175405384 -8583.0,0.14437439799116225 -8584.0,0.14432454145108364 -8585.0,0.14427470212787055 -8586.0,0.14422488001557743 -8587.0,0.14417507510826094 -8588.0,0.14412528739997965 -8589.0,0.14407551688479428 -8590.0,0.1440257635567676 -8591.0,0.14397602740996435 -8592.0,0.14392630843845142 -8593.0,0.14387660663629764 -8594.0,0.14382692199757402 -8595.0,0.14377725451635348 -8596.0,0.1437276041867111 -8597.0,0.1436779710027239 -8598.0,0.14362835495847107 -8599.0,0.1435787560480337 -8600.0,0.14352917426549508 -8601.0,0.1434796096049404 -8602.0,0.14343006206045705 -8603.0,0.14338053162613426 -8604.0,0.14333101829606348 -8605.0,0.14328152206433808 -8606.0,0.1432320429250536 -8607.0,0.14318258087230742 -8608.0,0.1431331359001992 -8609.0,0.14308370800283043 -8610.0,0.14303429717430477 -8611.0,0.14298490340872785 -8612.0,0.14293552670020737 -8613.0,0.14288616704285304 -8614.0,0.14283682443077658 -8615.0,0.14278749885809183 -8616.0,0.14273819031891455 -8617.0,0.14268889880736266 -8618.0,0.14263962431755597 -8619.0,0.14259036684361648 -8620.0,0.14254112637966804 -8621.0,0.14249190291983668 -8622.0,0.1424426964582504 -8623.0,0.1423935069890392 -8624.0,0.14234433450633513 -8625.0,0.1422951790042723 -8626.0,0.14224604047698677 -8627.0,0.14219691891861674 -8628.0,0.14214781432330234 -8629.0,0.14209872668518572 -8630.0,0.14204965599841113 -8631.0,0.14200060225712474 -8632.0,0.14195156545547485 -8633.0,0.14190254558761167 -8634.0,0.14185354264768757 -8635.0,0.14180455662985675 -8636.0,0.14175558752827563 -8637.0,0.1417066353371025 -8638.0,0.14165770005049777 -8639.0,0.14160878166262375 -8640.0,0.14155988016764487 -8641.0,0.14151099555972754 -8642.0,0.14146212783304019 -8643.0,0.1414132769817532 -8644.0,0.14136444300003911 -8645.0,0.1413156258820723 -8646.0,0.1412668256220293 -8647.0,0.14121804221408857 -8648.0,0.1411692756524306 -8649.0,0.14112052593123794 -8650.0,0.14107179304469503 -8651.0,0.14102307698698846 -8652.0,0.14097437775230667 -8653.0,0.1409256953348403 -8654.0,0.14087702972878186 -8655.0,0.1408283809283259 -8656.0,0.1407797489276689 -8657.0,0.1407311337210095 -8658.0,0.14068253530254823 -8659.0,0.14063395366648768 -8660.0,0.1405853888070324 -8661.0,0.14053684071838893 -8662.0,0.14048830939476584 -8663.0,0.14043979483037375 -8664.0,0.14039129701942515 -8665.0,0.14034281595613468 -8666.0,0.14029435163471887 -8667.0,0.14024590404939624 -8668.0,0.14019747319438744 -8669.0,0.14014905906391492 -8670.0,0.1401006616522033 -8671.0,0.14005228095347907 -8672.0,0.14000391696197084 -8673.0,0.13995556967190903 -8674.0,0.13990723907752625 -8675.0,0.13985892517305698 -8676.0,0.13981062795273774 -8677.0,0.13976234741080698 -8678.0,0.13971408354150525 -8679.0,0.13966583633907492 -8680.0,0.13961760579776059 -8681.0,0.1395693919118086 -8682.0,0.13952119467546742 -8683.0,0.13947301408298746 -8684.0,0.13942485012862113 -8685.0,0.13937670280662284 -8686.0,0.13932857211124897 -8687.0,0.13928045803675784 -8688.0,0.1392323605774098 -8689.0,0.13918427972746725 -8690.0,0.1391362154811944 -8691.0,0.13908816783285757 -8692.0,0.139040136776725 -8693.0,0.138992122307067 -8694.0,0.1389441244181557 -8695.0,0.13889614310426543 -8696.0,0.13884817835967223 -8697.0,0.13880023017865437 -8698.0,0.1387522985554919 -8699.0,0.13870438348446698 -8700.0,0.13865648495986363 -8701.0,0.138608602975968 -8702.0,0.13856073752706802 -8703.0,0.13851288860745373 -8704.0,0.13846505621141714 -8705.0,0.13841724033325215 -8706.0,0.1383694409672547 -8707.0,0.13832165810772262 -8708.0,0.13827389174895585 -8709.0,0.13822614188525614 -8710.0,0.13817840851092733 -8711.0,0.1381306916202751 -8712.0,0.13808299120760728 -8713.0,0.13803530726723348 -8714.0,0.1379876397934654 -8715.0,0.13793998878061658 -8716.0,0.13789235422300272 -8717.0,0.13784473611494125 -8718.0,0.13779713445075176 -8719.0,0.13774954922475566 -8720.0,0.13770198043127643 -8721.0,0.1376544280646394 -8722.0,0.13760689211917196 -8723.0,0.13755937258920345 -8724.0,0.13751186946906505 -8725.0,0.1374643827530901 -8726.0,0.13741691243561363 -8727.0,0.13736945851097293 -8728.0,0.137322020973507 -8729.0,0.1372745998175569 -8730.0,0.13722719503746567 -8731.0,0.13717980662757823 -8732.0,0.13713243458224147 -8733.0,0.13708507889580432 -8734.0,0.13703773956261753 -8735.0,0.1369904165770339 -8736.0,0.1369431099334081 -8737.0,0.13689581962609684 -8738.0,0.1368485456494587 -8739.0,0.13680128799785424 -8740.0,0.13675404666564597 -8741.0,0.13670682164719836 -8742.0,0.1366596129368778 -8743.0,0.13661242052905262 -8744.0,0.13656524441809315 -8745.0,0.13651808459837156 -8746.0,0.1364709410642621 -8747.0,0.13642381381014082 -8748.0,0.13637670283038586 -8749.0,0.13632960811937714 -8750.0,0.13628252967149668 -8751.0,0.1362354674811283 -8752.0,0.13618842154265787 -8753.0,0.1361413918504731 -8754.0,0.1360943783989638 -8755.0,0.13604738118252147 -8756.0,0.13600040019553977 -8757.0,0.13595343543241417 -8758.0,0.13590648688754217 -8759.0,0.13585955455532311 -8760.0,0.13581263843015828 -8761.0,0.135765738506451 -8762.0,0.13571885477860637 -8763.0,0.1356719872410316 -8764.0,0.13562513588813563 -8765.0,0.13557830071432952 -8766.0,0.1355314817140261 -8767.0,0.13548467888164029 -8768.0,0.13543789221158875 -8769.0,0.1353911216982903 -8770.0,0.13534436733616542 -8771.0,0.13529762911963675 -8772.0,0.13525090704312875 -8773.0,0.1352042011010678 -8774.0,0.1351575112878822 -8775.0,0.13511083759800221 -8776.0,0.13506418002586007 -8777.0,0.13501753856588974 -8778.0,0.13497091321252733 -8779.0,0.13492430396021074 -8780.0,0.13487771080337982 -8781.0,0.13483113373647643 -8782.0,0.13478457275394415 -8783.0,0.13473802785022862 -8784.0,0.1346914990197774 -8785.0,0.13464498625704 -8786.0,0.13459848955646767 -8787.0,0.1345520089125137 -8788.0,0.13450554431963338 -8789.0,0.1344590957722838 -8790.0,0.13441266326492393 -8791.0,0.1343662467920147 -8792.0,0.13431984634801905 -8793.0,0.13427346192740172 -8794.0,0.13422709352462933 -8795.0,0.1341807411341705 -8796.0,0.1341344047504957 -8797.0,0.13408808436807748 -8798.0,0.13404177998138994 -8799.0,0.13399549158490945 -8800.0,0.1339492191731141 -8801.0,0.13390296274048388 -8802.0,0.1338567222815009 -8803.0,0.1338104977906488 -8804.0,0.13376428926241343 -8805.0,0.13371809669128246 -8806.0,0.1336719200717455 -8807.0,0.1336257593982939 -8808.0,0.1335796146654211 -8809.0,0.13353348586762234 -8810.0,0.13348737299939487 -8811.0,0.13344127605523765 -8812.0,0.13339519502965166 -8813.0,0.13334912991713985 -8814.0,0.133303080712207 -8815.0,0.13325704740935965 -8816.0,0.13321103000310644 -8817.0,0.13316502848795783 -8818.0,0.13311904285842618 -8819.0,0.13307307310902577 -8820.0,0.13302711923427266 -8821.0,0.1329811812286849 -8822.0,0.13293525908678247 -8823.0,0.13288935280308722 -8824.0,0.13284346237212277 -8825.0,0.1327975877884148 -8826.0,0.13275172904649074 -8827.0,0.1327058861408801 -8828.0,0.13266005906611403 -8829.0,0.1326142478167257 -8830.0,0.13256845238725024 -8831.0,0.13252267277222457 -8832.0,0.13247690896618747 -8833.0,0.13243116096367966 -8834.0,0.13238542875924375 -8835.0,0.1323397123474243 -8836.0,0.13229401172276753 -8837.0,0.13224832687982177 -8838.0,0.13220265781313714 -8839.0,0.13215700451726564 -8840.0,0.13211136698676126 -8841.0,0.13206574521617961 -8842.0,0.13202013920007843 -8843.0,0.13197454893301727 -8844.0,0.1319289744095576 -8845.0,0.13188341562426256 -8846.0,0.1318378725716974 -8847.0,0.13179234524642916 -8848.0,0.13174683364302683 -8849.0,0.1317013377560611 -8850.0,0.13165585758010467 -8851.0,0.1316103931097321 -8852.0,0.13156494433951987 -8853.0,0.13151951126404618 -8854.0,0.13147409387789122 -8855.0,0.13142869217563705 -8856.0,0.13138330615186755 -8857.0,0.13133793580116856 -8858.0,0.13129258111812767 -8859.0,0.13124724209733438 -8860.0,0.1312019187333801 -8861.0,0.13115661102085815 -8862.0,0.13111131895436354 -8863.0,0.1310660425284933 -8864.0,0.1310207817378463 -8865.0,0.1309755365770233 -8866.0,0.13093030704062675 -8867.0,0.1308850931232612 -8868.0,0.1308398948195329 -8869.0,0.13079471212405014 -8870.0,0.1307495450314228 -8871.0,0.13070439353626284 -8872.0,0.13065925763318403 -8873.0,0.13061413731680205 -8874.0,0.13056903258173422 -8875.0,0.1305239434226 -8876.0,0.1304788698340205 -8877.0,0.1304338118106188 -8878.0,0.13038876934701987 -8879.0,0.13034374243785038 -8880.0,0.13029873107773896 -8881.0,0.13025373526131612 -8882.0,0.13020875498321421 -8883.0,0.13016379023806735 -8884.0,0.13011884102051158 -8885.0,0.1300739073251848 -8886.0,0.13002898914672684 -8887.0,0.1299840864797791 -8888.0,0.12993919931898515 -8889.0,0.12989432765899026 -8890.0,0.1298494714944416 -8891.0,0.12980463081998803 -8892.0,0.1297598056302805 -8893.0,0.12971499591997165 -8894.0,0.129670201683716 -8895.0,0.12962542291617005 -8896.0,0.1295806596119918 -8897.0,0.12953591176584148 -8898.0,0.12949117937238092 -8899.0,0.12944646242627394 -8900.0,0.12940176092218605 -8901.0,0.1293570748547847 -8902.0,0.12931240421873924 -8903.0,0.12926774900872076 -8904.0,0.12922310921940217 -8905.0,0.1291784848454583 -8906.0,0.12913387588156577 -8907.0,0.12908928232240316 -8908.0,0.12904470416265063 -8909.0,0.1290001413969904 -8910.0,0.12895559402010645 -8911.0,0.12891106202668462 -8912.0,0.12886654541141263 -8913.0,0.1288220441689798 -8914.0,0.12877755829407758 -8915.0,0.1287330877813991 -8916.0,0.12868863262563943 -8917.0,0.12864419282149522 -8918.0,0.12859976836366527 -8919.0,0.12855535924685002 -8920.0,0.12851096546575183 -8921.0,0.12846658701507474 -8922.0,0.12842222388952482 -8923.0,0.12837787608380982 -8924.0,0.12833354359263943 -8925.0,0.12828922641072504 -8926.0,0.12824492453277997 -8927.0,0.1282006379535193 -8928.0,0.12815636666766003 -8929.0,0.12811211066992084 -8930.0,0.12806786995502234 -8931.0,0.12802364451768694 -8932.0,0.12797943435263887 -8933.0,0.12793523945460422 -8934.0,0.12789105981831078 -8935.0,0.1278468954384883 -8936.0,0.12780274630986824 -8937.0,0.12775861242718403 -8938.0,0.1277144937851707 -8939.0,0.12767039037856526 -8940.0,0.1276263022021065 -8941.0,0.12758222925053508 -8942.0,0.12753817151859334 -8943.0,0.12749412900102552 -8944.0,0.12745010169257767 -8945.0,0.12740608958799776 -8946.0,0.1273620926820353 -8947.0,0.12731811096944187 -8948.0,0.12727414444497076 -8949.0,0.1272301931033771 -8950.0,0.12718625693941782 -8951.0,0.1271423359478516 -8952.0,0.12709843012343902 -8953.0,0.12705453946094244 -8954.0,0.12701066395512609 -8955.0,0.1269668036007558 -8956.0,0.12692295839259943 -8957.0,0.12687912832542655 -8958.0,0.12683531339400864 -8959.0,0.12679151359311874 -8960.0,0.12674772891753194 -8961.0,0.12670395936202503 -8962.0,0.1266602049213767 -8963.0,0.12661646559036724 -8964.0,0.1265727413637789 -8965.0,0.12652903223639578 -8966.0,0.12648533820300364 -8967.0,0.12644165925839007 -8968.0,0.12639799539734453 -8969.0,0.12635434661465822 -8970.0,0.12631071290512416 -8971.0,0.12626709426353724 -8972.0,0.12622349068469396 -8973.0,0.12617990216339278 -8974.0,0.1261363286944339 -8975.0,0.1260927702726194 -8976.0,0.12604922689275294 -8977.0,0.1260056985496402 -8978.0,0.12596218523808853 -8979.0,0.1259186869529072 -8980.0,0.12587520368890703 -8981.0,0.1258317354409009 -8982.0,0.1257882822037033 -8983.0,0.12574484397213068 -8984.0,0.12570142074100102 -8985.0,0.12565801250513434 -8986.0,0.12561461925935233 -8987.0,0.1255712409984785 -8988.0,0.12552787771733817 -8989.0,0.12548452941075836 -8990.0,0.12544119607356796 -8991.0,0.12539787770059763 -8992.0,0.12535457428667982 -8993.0,0.1253112858266487 -8994.0,0.12526801231534027 -8995.0,0.12522475374759232 -8996.0,0.12518151011824452 -8997.0,0.12513828142213806 -8998.0,0.12509506765411618 -8999.0,0.12505186880902375 -9000.0,0.12500868488170752 -9001.0,0.12496551586701589 -9002.0,0.12492236175979911 -9003.0,0.12487922255490926 -9004.0,0.12483609824720016 -9005.0,0.12479298883152731 -9006.0,0.12474989430274812 -9007.0,0.12470681465572173 -9008.0,0.12466374988530905 -9009.0,0.12462069998637282 -9010.0,0.1245776649537774 -9011.0,0.12453464478238907 -9012.0,0.12449163946707582 -9013.0,0.12444864900270754 -9014.0,0.1244056733841556 -9015.0,0.12436271260629343 -9016.0,0.1243197666639961 -9017.0,0.12427683555214054 -9018.0,0.12423391926560526 -9019.0,0.1241910177992707 -9020.0,0.12414813114801908 -9021.0,0.12410525930673433 -9022.0,0.12406240227030207 -9023.0,0.12401956003360982 -9024.0,0.12397673259154683 -9025.0,0.12393391993900407 -9026.0,0.12389112207087438 -9027.0,0.12384833898205216 -9028.0,0.12380557066743376 -9029.0,0.12376281712191725 -9030.0,0.12372007834040247 -9031.0,0.1236773543177909 -9032.0,0.12363464504898591 -9033.0,0.12359195052889264 -9034.0,0.12354927075241796 -9035.0,0.12350660571447039 -9036.0,0.12346395540996036 -9037.0,0.12342131983379999 -9038.0,0.12337869898090321 -9039.0,0.12333609284618559 -9040.0,0.12329350142456456 -9041.0,0.12325092471095928 -9042.0,0.12320836270029069 -9043.0,0.12316581538748138 -9044.0,0.1231232827674558 -9045.0,0.12308076483514012 -9046.0,0.12303826158546226 -9047.0,0.12299577301335195 -9048.0,0.1229532991137405 -9049.0,0.12291083988156115 -9050.0,0.12286839531174881 -9051.0,0.12282596539924022 -9052.0,0.12278355013897367 -9053.0,0.12274114952588941 -9054.0,0.12269876355492934 -9055.0,0.12265639222103716 -9056.0,0.12261403551915821 -9057.0,0.12257169344423968 -9058.0,0.12252936599123046 -9059.0,0.12248705315508125 -9060.0,0.12244475493074435 -9061.0,0.1224024713131739 -9062.0,0.12236020229732582 -9063.0,0.12231794787815771 -9064.0,0.12227570805062897 -9065.0,0.12223348280970059 -9066.0,0.12219127215033547 -9067.0,0.12214907606749818 -9068.0,0.12210689455615509 -9069.0,0.12206472761127414 -9070.0,0.12202257522782518 -9071.0,0.12198043740077974 -9072.0,0.12193831412511115 -9073.0,0.12189620539579427 -9074.0,0.12185411120780591 -9075.0,0.12181203155612455 -9076.0,0.12176996643573043 -9077.0,0.12172791584160539 -9078.0,0.12168587976873316 -9079.0,0.12164385821209912 -9080.0,0.12160185116669048 -9081.0,0.12155985862749599 -9082.0,0.1215178805895063 -9083.0,0.12147591704771374 -9084.0,0.12143396799711235 -9085.0,0.121392033432698 -9086.0,0.12135011334946806 -9087.0,0.12130820774242186 -9088.0,0.12126631660656033 -9089.0,0.12122443993688624 -9090.0,0.12118257772840388 -9091.0,0.12114072997611947 -9092.0,0.12109889667504087 -9093.0,0.12105707782017773 -9094.0,0.12101527340654124 -9095.0,0.12097348342914452 -9096.0,0.12093170788300231 -9097.0,0.12088994676313114 -9098.0,0.12084820006454913 -9099.0,0.12080646778227624 -9100.0,0.12076474991133412 -9101.0,0.12072304644674613 -9102.0,0.1206813573835374 -9103.0,0.12063968271673463 -9104.0,0.12059802244136637 -9105.0,0.12055637655246287 -9106.0,0.12051474504505615 -9107.0,0.12047312791417973 -9108.0,0.12043152515486906 -9109.0,0.12038993676216124 -9110.0,0.12034836273109513 -9111.0,0.12030680305671114 -9112.0,0.12026525773405156 -9113.0,0.12022372675816033 -9114.0,0.12018221012408317 -9115.0,0.12014070782686732 -9116.0,0.12009921986156195 -9117.0,0.12005774622321781 -9118.0,0.12001628690688748 -9119.0,0.11997484190762504 -9120.0,0.11993341122048647 -9121.0,0.11989199484052938 -9122.0,0.1198505927628131 -9123.0,0.11980920498239872 -9124.0,0.11976783149434887 -9125.0,0.11972647229372806 -9126.0,0.11968512737560241 -9127.0,0.11964379673503987 -9128.0,0.11960248036710985 -9129.0,0.11956117826688369 -9130.0,0.11951989042943434 -9131.0,0.1194786168498365 -9132.0,0.11943735752316643 -9133.0,0.11939611244450228 -9134.0,0.11935488160892377 -9135.0,0.11931366501151244 -9136.0,0.11927246264735133 -9137.0,0.11923127451152538 -9138.0,0.11919010059912111 -9139.0,0.11914894090522678 -9140.0,0.11910779542493241 -9141.0,0.11906666415332952 -9142.0,0.11902554708551151 -9143.0,0.11898444421657342 -9144.0,0.11894335554161202 -9145.0,0.11890228105572563 -9146.0,0.11886122075401441 -9147.0,0.11882017463158018 -9148.0,0.11877914268352646 -9149.0,0.11873812490495837 -9150.0,0.11869712129098281 -9151.0,0.11865613183670837 -9152.0,0.11861515653724534 -9153.0,0.11857419538770558 -9154.0,0.11853324838320277 -9155.0,0.11849231551885221 -9156.0,0.118451396789771 -9157.0,0.11841049219107769 -9158.0,0.11836960171789274 -9159.0,0.11832872536533819 -9160.0,0.11828786312853781 -9161.0,0.11824701500261707 -9162.0,0.118206180982703 -9163.0,0.11816536106392443 -9164.0,0.11812455524141187 -9165.0,0.11808376351029751 -9166.0,0.11804298586571509 -9167.0,0.11800222230280019 -9168.0,0.11796147281669003 -9169.0,0.11792073740252354 -9170.0,0.11788001605544116 -9171.0,0.11783930877058518 -9172.0,0.11779861554309955 -9173.0,0.1177579363681299 -9174.0,0.11771727124082339 -9175.0,0.11767662015632901 -9176.0,0.11763598310979742 -9177.0,0.11759536009638087 -9178.0,0.11755475111123342 -9179.0,0.11751415614951059 -9180.0,0.11747357520636975 -9181.0,0.11743300827696991 -9182.0,0.11739245535647175 -9183.0,0.11735191644003752 -9184.0,0.11731139152283127 -9185.0,0.11727088060001867 -9186.0,0.11723038366676712 -9187.0,0.11718990071824553 -9188.0,0.11714943174962462 -9189.0,0.11710897675607675 -9190.0,0.11706853573277597 -9191.0,0.11702810867489787 -9192.0,0.11698769557761983 -9193.0,0.1169472964361209 -9194.0,0.11690691124558177 -9195.0,0.1168665400011847 -9196.0,0.11682618269811373 -9197.0,0.11678583933155455 -9198.0,0.11674550989669447 -9199.0,0.11670519438872254 -9200.0,0.11666489280282932 -9201.0,0.11662460513420717 -9202.0,0.11658433137805006 -9203.0,0.11654407152955369 -9204.0,0.11650382558391523 -9205.0,0.1164635935363337 -9206.0,0.1164233753820097 -9207.0,0.11638317111614556 -9208.0,0.11634298073394508 -9209.0,0.11630280423061393 -9210.0,0.11626264160135931 -9211.0,0.11622249284139018 -9212.0,0.11618235794591697 -9213.0,0.11614223691015194 -9214.0,0.11610212972930894 -9215.0,0.11606203639860349 -9216.0,0.11602195691325279 -9217.0,0.11598189126847552 -9218.0,0.11594183945949224 -9219.0,0.11590180148152503 -9220.0,0.1158617773297977 -9221.0,0.11582176699953559 -9222.0,0.11578177048596577 -9223.0,0.11574178778431697 -9224.0,0.11570181888981959 -9225.0,0.11566186379770554 -9226.0,0.1156219225032085 -9227.0,0.1155819950015638 -9228.0,0.11554208128800839 -9229.0,0.11550218135778077 -9230.0,0.11546229520612124 -9231.0,0.11542242282827163 -9232.0,0.11538256421947556 -9233.0,0.11534271937497803 -9234.0,0.11530288829002593 -9235.0,0.1152630709598677 -9236.0,0.1152232673797534 -9237.0,0.11518347754493483 -9238.0,0.11514370145066524 -9239.0,0.11510393909219968 -9240.0,0.11506419046479478 -9241.0,0.1150244555637089 -9242.0,0.11498473438420183 -9243.0,0.11494502692153519 -9244.0,0.11490533317097215 -9245.0,0.11486565312777759 -9246.0,0.11482598678721789 -9247.0,0.11478633414456117 -9248.0,0.11474669519507717 -9249.0,0.1147070699340373 -9250.0,0.11466745835671446 -9251.0,0.11462786045838332 -9252.0,0.11458827623432015 -9253.0,0.11454870567980283 -9254.0,0.11450914879011093 -9255.0,0.1144696055605255 -9256.0,0.1144300759863294 -9257.0,0.11439056006280701 -9258.0,0.11435105778524442 -9259.0,0.1143115691489292 -9260.0,0.11427209414915071 -9261.0,0.11423263278119984 -9262.0,0.11419318504036921 -9263.0,0.11415375092195289 -9264.0,0.11411433042124672 -9265.0,0.11407492353354813 -9266.0,0.11403553025415619 -9267.0,0.11399615057837151 -9268.0,0.1139567845014964 -9269.0,0.1139174320188348 -9270.0,0.11387809312569226 -9271.0,0.11383876781737587 -9272.0,0.11379945608919444 -9273.0,0.11376015793645837 -9274.0,0.11372087335447968 -9275.0,0.11368160233857205 -9276.0,0.11364234488405064 -9277.0,0.11360310098623239 -9278.0,0.11356387064043574 -9279.0,0.1135246538419809 -9280.0,0.11348545058618946 -9281.0,0.11344626086838482 -9282.0,0.11340708468389192 -9283.0,0.11336792202803739 -9284.0,0.1133287728961493 -9285.0,0.11328963728355751 -9286.0,0.1132505151855934 -9287.0,0.11321140659759006 -9288.0,0.11317231151488202 -9289.0,0.11313322993280557 -9290.0,0.11309416184669856 -9291.0,0.11305510725190045 -9292.0,0.11301606614375236 -9293.0,0.11297703851759687 -9294.0,0.11293802436877833 -9295.0,0.11289902369264262 -9296.0,0.11286003648453731 -9297.0,0.1128210627398114 -9298.0,0.11278210245381566 -9299.0,0.11274315562190242 -9300.0,0.11270422223942564 -9301.0,0.11266530230174075 -9302.0,0.11262639580420496 -9303.0,0.11258750274217699 -9304.0,0.11254862311101724 -9305.0,0.11250975690608754 -9306.0,0.11247090412275149 -9307.0,0.11243206475637424 -9308.0,0.11239323880232259 -9309.0,0.11235442625596478 -9310.0,0.11231562711267082 -9311.0,0.11227684136781224 -9312.0,0.11223806901676218 -9313.0,0.11219931005489545 -9314.0,0.11216056447758826 -9315.0,0.11212183228021863 -9316.0,0.11208311345816607 -9317.0,0.11204440800681176 -9318.0,0.11200571592153832 -9319.0,0.11196703719773013 -9320.0,0.11192837183077307 -9321.0,0.11188971981605472 -9322.0,0.11185108114896408 -9323.0,0.11181245582489187 -9324.0,0.11177384383923038 -9325.0,0.11173524518737353 -9326.0,0.11169665986471668 -9327.0,0.11165808786665694 -9328.0,0.11161952918859294 -9329.0,0.11158098382592492 -9330.0,0.11154245177405475 -9331.0,0.11150393302838572 -9332.0,0.11146542758432292 -9333.0,0.11142693543727288 -9334.0,0.11138845658264383 -9335.0,0.11134999101584543 -9336.0,0.11131153873228908 -9337.0,0.11127309972738769 -9338.0,0.11123467399655582 -9339.0,0.11119626153520945 -9340.0,0.11115786233876633 -9341.0,0.11111947640264568 -9342.0,0.11108110372226841 -9343.0,0.11104274429305684 -9344.0,0.11100439811043501 -9345.0,0.11096606516982851 -9346.0,0.11092774546666455 -9347.0,0.11088943899637176 -9348.0,0.11085114575438051 -9349.0,0.1108128657361227 -9350.0,0.11077459893703179 -9351.0,0.1107363453525429 -9352.0,0.11069810497809253 -9353.0,0.11065987780911896 -9354.0,0.11062166384106195 -9355.0,0.11058346306936291 -9356.0,0.11054527548946466 -9357.0,0.11050710109681176 -9358.0,0.11046893988685028 -9359.0,0.1104307918550279 -9360.0,0.11039265699679376 -9361.0,0.11035453530759869 -9362.0,0.11031642678289505 -9363.0,0.11027833141813682 -9364.0,0.11024024920877941 -9365.0,0.11020218015027992 -9366.0,0.11016412423809702 -9367.0,0.11012608146769089 -9368.0,0.11008805183452336 -9369.0,0.11005003533405767 -9370.0,0.1100120319617588 -9371.0,0.10997404171309319 -9372.0,0.10993606458352896 -9373.0,0.1098981005685356 -9374.0,0.10986014966358434 -9375.0,0.10982221186414792 -9376.0,0.10978428716570067 -9377.0,0.10974637556371834 -9378.0,0.10970847705367844 -9379.0,0.10967059163105991 -9380.0,0.10963271929134338 -9381.0,0.10959486003001084 -9382.0,0.10955701384254601 -9383.0,0.10951918072443412 -9384.0,0.10948136067116199 -9385.0,0.10944355367821788 -9386.0,0.10940575974109173 -9387.0,0.10936797885527501 -9388.0,0.10933021101626073 -9389.0,0.1092924562195435 -9390.0,0.10925471446061938 -9391.0,0.10921698573498606 -9392.0,0.10917927003814282 -9393.0,0.10914156736559047 -9394.0,0.10910387771283128 -9395.0,0.10906620107536918 -9396.0,0.10902853744870965 -9397.0,0.1089908868283597 -9398.0,0.10895324920982782 -9399.0,0.10891562458862417 -9400.0,0.10887801296026037 -9401.0,0.10884041432024971 -9402.0,0.10880282866410684 -9403.0,0.10876525598734811 -9404.0,0.10872769628549138 -9405.0,0.10869014955405605 -9406.0,0.10865261578856311 -9407.0,0.10861509498453496 -9408.0,0.1085775871374957 -9409.0,0.10854009224297091 -9410.0,0.10850261029648778 -9411.0,0.10846514129357486 -9412.0,0.10842768522976245 -9413.0,0.10839024210058232 -9414.0,0.1083528119015678 -9415.0,0.10831539462825365 -9416.0,0.10827799027617632 -9417.0,0.10824059884087375 -9418.0,0.10820322031788544 -9419.0,0.10816585470275233 -9420.0,0.108128501991017 -9421.0,0.10809116217822358 -9422.0,0.10805383525991771 -9423.0,0.10801652123164648 -9424.0,0.10797922008895866 -9425.0,0.10794193182740448 -9426.0,0.10790465644253572 -9427.0,0.10786739392990577 -9428.0,0.10783014428506936 -9429.0,0.10779290750358293 -9430.0,0.10775568358100443 -9431.0,0.10771847251289333 -9432.0,0.10768127429481056 -9433.0,0.10764408892231865 -9434.0,0.1076069163909817 -9435.0,0.10756975669636532 -9436.0,0.10753260983403654 -9437.0,0.10749547579956406 -9438.0,0.10745835458851805 -9439.0,0.10742124619647028 -9440.0,0.1073841506189939 -9441.0,0.1073470678516637 -9442.0,0.107309997890056 -9443.0,0.10727294072974862 -9444.0,0.10723589636632094 -9445.0,0.10719886479535377 -9446.0,0.10716184601242955 -9447.0,0.10712484001313219 -9448.0,0.10708784679304723 -9449.0,0.10705086634776152 -9450.0,0.10701389867286362 -9451.0,0.10697694376394357 -9452.0,0.10694000161659294 -9453.0,0.10690307222640473 -9454.0,0.10686615558897357 -9455.0,0.10682925169989557 -9456.0,0.10679236055476843 -9457.0,0.10675548214919119 -9458.0,0.10671861647876457 -9459.0,0.1066817635390908 -9460.0,0.10664492332577359 -9461.0,0.10660809583441812 -9462.0,0.10657128106063117 -9463.0,0.106534479000021 -9464.0,0.10649768964819739 -9465.0,0.10646091300077169 -9466.0,0.10642414905335663 -9467.0,0.10638739780156659 -9468.0,0.10635065924101739 -9469.0,0.10631393336732645 -9470.0,0.10627722017611253 -9471.0,0.1062405196629961 -9472.0,0.10620383182359901 -9473.0,0.10616715665354474 -9474.0,0.10613049414845813 -9475.0,0.10609384430396562 -9476.0,0.10605720711569518 -9477.0,0.1060205825792763 -9478.0,0.10598397069033984 -9479.0,0.10594737144451831 -9480.0,0.1059107848374457 -9481.0,0.1058742108647575 -9482.0,0.10583764952209074 -9483.0,0.10580110080508381 -9484.0,0.10576456470937678 -9485.0,0.10572804123061116 -9486.0,0.10569153036443002 -9487.0,0.10565503210647775 -9488.0,0.10561854645240046 -9489.0,0.10558207339784566 -9490.0,0.10554561293846243 -9491.0,0.10550916506990121 -9492.0,0.10547272978781408 -9493.0,0.10543630708785458 -9494.0,0.10539989696567778 -9495.0,0.10536349941694015 -9496.0,0.10532711443729975 -9497.0,0.10529074202241613 -9498.0,0.10525438216795037 -9499.0,0.10521803486956491 -9500.0,0.10518170012292384 -9501.0,0.10514537792369268 -9502.0,0.10510906826753845 -9503.0,0.10507277115012972 -9504.0,0.10503648656713643 -9505.0,0.10500021451423014 -9506.0,0.10496395498708384 -9507.0,0.1049277079813721 -9508.0,0.1048914734927708 -9509.0,0.1048552515169575 -9510.0,0.10481904204961116 -9511.0,0.10478284508641232 -9512.0,0.10474666062304284 -9513.0,0.10471048865518624 -9514.0,0.10467432917852745 -9515.0,0.10463818218875297 -9516.0,0.10460204768155063 -9517.0,0.10456592565260989 -9518.0,0.10452981609762164 -9519.0,0.1044937190122783 -9520.0,0.10445763439227379 -9521.0,0.10442156223330337 -9522.0,0.10438550253106396 -9523.0,0.10434945528125389 -9524.0,0.10431342047957304 -9525.0,0.10427739812172263 -9526.0,0.10424138820340548 -9527.0,0.10420539072032589 -9528.0,0.10416940566818966 -9529.0,0.10413343304270396 -9530.0,0.10409747283957754 -9531.0,0.10406152505452063 -9532.0,0.10402558968324495 -9533.0,0.10398966672146359 -9534.0,0.10395375616489125 -9535.0,0.10391785800924405 -9536.0,0.10388197225023967 -9537.0,0.10384609888359708 -9538.0,0.10381023790503692 -9539.0,0.10377438931028124 -9540.0,0.10373855309505353 -9541.0,0.10370272925507887 -9542.0,0.10366691778608364 -9543.0,0.10363111868379582 -9544.0,0.10359533194394485 -9545.0,0.10355955756226169 -9546.0,0.1035237955344786 -9547.0,0.10348804585632951 -9548.0,0.10345230852354971 -9549.0,0.10341658353187606 -9550.0,0.10338087087704674 -9551.0,0.10334517055480152 -9552.0,0.10330948256088164 -9553.0,0.10327380689102982 -9554.0,0.10323814354099009 -9555.0,0.10320249250650815 -9556.0,0.10316685378333108 -9557.0,0.10313122736720745 -9558.0,0.10309561325388732 -9559.0,0.1030600114391221 -9560.0,0.1030244219186648 -9561.0,0.10298884468826987 -9562.0,0.10295327974369321 -9563.0,0.10291772708069212 -9564.0,0.10288218669502545 -9565.0,0.10284665858245352 -9566.0,0.10281114273873812 -9567.0,0.10277563915964236 -9568.0,0.10274014784093098 -9569.0,0.10270466877837013 -9570.0,0.10266920196772747 -9571.0,0.10263374740477195 -9572.0,0.10259830508527416 -9573.0,0.10256287500500609 -9574.0,0.10252745715974124 -9575.0,0.10249205154525441 -9576.0,0.10245665815732204 -9577.0,0.10242127699172193 -9578.0,0.10238590804423339 -9579.0,0.10235055131063718 -9580.0,0.10231520678671543 -9581.0,0.10227987446825185 -9582.0,0.10224455435103152 -9583.0,0.10220924643084109 -9584.0,0.10217395070346846 -9585.0,0.10213866716470317 -9586.0,0.10210339581033614 -9587.0,0.10206813663615981 -9588.0,0.10203288963796792 -9589.0,0.10199765481155582 -9590.0,0.10196243215272022 -9591.0,0.1019272216572594 -9592.0,0.10189202332097289 -9593.0,0.10185683713966182 -9594.0,0.10182166310912875 -9595.0,0.10178650122517768 -9596.0,0.1017513514836141 -9597.0,0.1017162138802448 -9598.0,0.10168108841087817 -9599.0,0.10164597507132399 -9600.0,0.10161087385739355 -9601.0,0.10157578476489944 -9602.0,0.10154070778965583 -9603.0,0.1015056429274783 -9604.0,0.10147059017418389 -9605.0,0.101435549525591 -9606.0,0.10140052097751956 -9607.0,0.10136550452579093 -9608.0,0.10133050016622795 -9609.0,0.10129550789465476 -9610.0,0.10126052770689709 -9611.0,0.10122555959878203 -9612.0,0.10119060356613822 -9613.0,0.10115565960479557 -9614.0,0.10112072771058553 -9615.0,0.10108580787934102 -9616.0,0.10105090010689632 -9617.0,0.10101600438908725 -9618.0,0.10098112072175094 -9619.0,0.10094624910072604 -9620.0,0.10091138952185262 -9621.0,0.10087654198097223 -9622.0,0.10084170647392775 -9623.0,0.10080688299656357 -9624.0,0.1007720715447255 -9625.0,0.10073727211426087 -9626.0,0.10070248470101824 -9627.0,0.10066770930084779 -9628.0,0.10063294590960105 -9629.0,0.10059819452313105 -9630.0,0.10056345513729212 -9631.0,0.10052872774794015 -9632.0,0.10049401235093242 -9633.0,0.10045930894212761 -9634.0,0.10042461751738593 -9635.0,0.10038993807256885 -9636.0,0.1003552706035394 -9637.0,0.10032061510616201 -9638.0,0.10028597157630258 -9639.0,0.1002513400098283 -9640.0,0.1002167204026079 -9641.0,0.10018211275051155 -9642.0,0.10014751704941083 -9643.0,0.10011293329517863 -9644.0,0.10007836148368943 -9645.0,0.10004380161081905 -9646.0,0.10000925367244479 -9647.0,0.09997471766444524 -9648.0,0.09994019358270056 -9649.0,0.0999056814230923 -9650.0,0.09987118118150341 -9651.0,0.0998366928538182 -9652.0,0.09980221643592252 -9653.0,0.09976775192370356 -9654.0,0.09973329931304996 -9655.0,0.09969885859985184 -9656.0,0.09966442978000055 -9657.0,0.09963001284938906 -9658.0,0.09959560780391166 -9659.0,0.09956121463946414 -9660.0,0.09952683335194354 -9661.0,0.09949246393724848 -9662.0,0.09945810639127893 -9663.0,0.09942376070993635 -9664.0,0.09938942688912343 -9665.0,0.09935510492474446 -9666.0,0.09932079481270509 -9667.0,0.09928649654891239 -9668.0,0.09925221012927476 -9669.0,0.09921793554970212 -9670.0,0.09918367280610577 -9671.0,0.09914942189439839 -9672.0,0.09911518281049415 -9673.0,0.0990809555503085 -9674.0,0.09904674010975842 -9675.0,0.09901253648476226 -9676.0,0.0989783446712398 -9677.0,0.09894416466511213 -9678.0,0.09890999646230188 -9679.0,0.09887584005873301 -9680.0,0.09884169545033099 -9681.0,0.09880756263302248 -9682.0,0.09877344160273577 -9683.0,0.09873933235540044 -9684.0,0.09870523488694757 -9685.0,0.0986711491933095 -9686.0,0.09863707527042007 -9687.0,0.09860301311421453 -9688.0,0.09856896272062954 -9689.0,0.09853492408560308 -9690.0,0.0985008972050746 -9691.0,0.09846688207498495 -9692.0,0.09843287869127638 -9693.0,0.09839888704989258 -9694.0,0.09836490714677851 -9695.0,0.09833093897788063 -9696.0,0.09829698253914683 -9697.0,0.09826303782652636 -9698.0,0.09822910483596979 -9699.0,0.09819518356342921 -9700.0,0.09816127400485807 -9701.0,0.09812737615621121 -9702.0,0.09809349001344482 -9703.0,0.09805961557251655 -9704.0,0.09802575282938544 -9705.0,0.09799190178001195 -9706.0,0.0979580624203578 -9707.0,0.09792423474638626 -9708.0,0.09789041875406192 -9709.0,0.09785661443935079 -9710.0,0.09782282179822029 -9711.0,0.09778904082663914 -9712.0,0.09775527152057754 -9713.0,0.09772151387600708 -9714.0,0.09768776788890074 -9715.0,0.09765403355523279 -9716.0,0.09762031087097903 -9717.0,0.09758659983211657 -9718.0,0.09755290043462396 -9719.0,0.09751921267448106 -9720.0,0.09748553654766917 -9721.0,0.097451872050171 -9722.0,0.09741821917797065 -9723.0,0.09738457792705352 -9724.0,0.09735094829340644 -9725.0,0.0973173302730177 -9726.0,0.09728372386187692 -9727.0,0.09725012905597502 -9728.0,0.09721654585130445 -9729.0,0.09718297424385895 -9730.0,0.09714941422963369 -9731.0,0.09711586580462524 -9732.0,0.09708232896483143 -9733.0,0.0970488037062516 -9734.0,0.09701529002488646 -9735.0,0.09698178791673807 -9736.0,0.09694829737780983 -9737.0,0.09691481840410657 -9738.0,0.09688135099163452 -9739.0,0.09684789513640128 -9740.0,0.09681445083441574 -9741.0,0.09678101808168828 -9742.0,0.09674759687423062 -9743.0,0.09671418720805589 -9744.0,0.09668078907917847 -9745.0,0.09664740248361425 -9746.0,0.09661402741738047 -9747.0,0.09658066387649572 -9748.0,0.09654731185698 -9749.0,0.0965139713548546 -9750.0,0.09648064236614225 -9751.0,0.09644732488686707 -9752.0,0.09641401891305457 -9753.0,0.0963807244407315 -9754.0,0.0963474414659261 -9755.0,0.09631416998466796 -9756.0,0.09628090999298809 -9757.0,0.09624766148691873 -9758.0,0.0962144244624936 -9759.0,0.09618119891574779 -9760.0,0.09614798484271776 -9761.0,0.09611478223944123 -9762.0,0.09608159110195742 -9763.0,0.09604841142630687 -9764.0,0.09601524320853151 -9765.0,0.09598208644467456 -9766.0,0.09594894113078067 -9767.0,0.09591580726289588 -9768.0,0.09588268483706752 -9769.0,0.09584957384934441 -9770.0,0.09581647429577654 -9771.0,0.09578338617241543 -9772.0,0.09575030947531389 -9773.0,0.09571724420052619 -9774.0,0.09568419034410774 -9775.0,0.09565114790211555 -9776.0,0.0956181168706079 -9777.0,0.09558509724564443 -9778.0,0.09555208902328607 -9779.0,0.09551909219959526 -9780.0,0.09548610677063565 -9781.0,0.09545313273247243 -9782.0,0.0954201700811719 -9783.0,0.09538721881280193 -9784.0,0.09535427892343168 -9785.0,0.09532135040913163 -9786.0,0.09528843326597371 -9787.0,0.09525552749003105 -9788.0,0.0952226330773783 -9789.0,0.09518975002409136 -9790.0,0.09515687832624758 -9791.0,0.09512401797992553 -9792.0,0.09509116898120523 -9793.0,0.09505833132616806 -9794.0,0.09502550501089677 -9795.0,0.0949926900314753 -9796.0,0.09495988638398914 -9797.0,0.09492709406452504 -9798.0,0.09489431306917116 -9799.0,0.09486154339401688 -9800.0,0.09482878503515307 -9801.0,0.09479603798867188 -9802.0,0.09476330225066687 -9803.0,0.09473057781723283 -9804.0,0.094697864684466 -9805.0,0.09466516284846398 -9806.0,0.09463247230532564 -9807.0,0.09459979305115128 -9808.0,0.09456712508204244 -9809.0,0.09453446839410211 -9810.0,0.09450182298343457 -9811.0,0.09446918884614551 -9812.0,0.09443656597834182 -9813.0,0.0944039543761319 -9814.0,0.09437135403562541 -9815.0,0.09433876495293339 -9816.0,0.09430618712416815 -9817.0,0.0942736205454434 -9818.0,0.0942410652128742 -9819.0,0.094208521122577 -9820.0,0.0941759882706694 -9821.0,0.09414346665327054 -9822.0,0.09411095626650083 -9823.0,0.09407845710648201 -9824.0,0.09404596916933719 -9825.0,0.09401349245119074 -9826.0,0.09398102694816846 -9827.0,0.09394857265639744 -9828.0,0.09391612957200618 -9829.0,0.09388369769112435 -9830.0,0.09385127700988312 -9831.0,0.09381886752441494 -9832.0,0.09378646923085364 -9833.0,0.09375408212533425 -9834.0,0.09372170620399325 -9835.0,0.09368934146296846 -9836.0,0.09365698789839902 -9837.0,0.09362464550642531 -9838.0,0.09359231428318916 -9839.0,0.0935599942248337 -9840.0,0.09352768532750341 -9841.0,0.093495387587344 -9842.0,0.09346310100050263 -9843.0,0.09343082556312773 -9844.0,0.09339856127136908 -9845.0,0.09336630812137785 -9846.0,0.09333406610930636 -9847.0,0.09330183523130843 -9848.0,0.09326961548353914 -9849.0,0.09323740686215497 -9850.0,0.09320520936331357 -9851.0,0.09317302298317405 -9852.0,0.09314084771789682 -9853.0,0.09310868356364366 -9854.0,0.09307653051657751 -9855.0,0.09304438857286279 -9856.0,0.09301225772866523 -9857.0,0.09298013798015185 -9858.0,0.09294802932349096 -9859.0,0.09291593175485224 -9860.0,0.09288384527040672 -9861.0,0.09285176986632666 -9862.0,0.09281970553878581 -9863.0,0.092787652283959 -9864.0,0.09275561009802254 -9865.0,0.09272357897715407 -9866.0,0.09269155891753254 -9867.0,0.09265954991533809 -9868.0,0.09262755196675235 -9869.0,0.09259556506795817 -9870.0,0.0925635892151398 -9871.0,0.09253162440448268 -9872.0,0.09249967063217365 -9873.0,0.0924677278944009 -9874.0,0.09243579618735391 -9875.0,0.0924038755072234 -9876.0,0.09237196585020147 -9877.0,0.09234006721248156 -9878.0,0.09230817959025843 -9879.0,0.09227630297972804 -9880.0,0.09224443737708776 -9881.0,0.09221258277853629 -9882.0,0.0921807391802736 -9883.0,0.092148906578501 -9884.0,0.09211708496942103 -9885.0,0.09208527434923763 -9886.0,0.09205347471415605 -9887.0,0.09202168606038286 -9888.0,0.0919899083841258 -9889.0,0.09195814168159408 -9890.0,0.09192638594899818 -9891.0,0.09189464118254989 -9892.0,0.09186290737846221 -9893.0,0.0918311845329496 -9894.0,0.09179947264222771 -9895.0,0.09176777170251361 -9896.0,0.09173608171002554 -9897.0,0.09170440266098313 -9898.0,0.09167273455160732 -9899.0,0.09164107737812031 -9900.0,0.0916094311367457 -9901.0,0.09157779582370822 -9902.0,0.09154617143523407 -9903.0,0.09151455796755066 -9904.0,0.09148295541688681 -9905.0,0.09145136377947247 -9906.0,0.09141978305153901 -9907.0,0.09138821322931912 -9908.0,0.09135665430904674 -9909.0,0.09132510628695709 -9910.0,0.09129356915928673 -9911.0,0.09126204292227351 -9912.0,0.09123052757215665 -9913.0,0.09119902310517648 -9914.0,0.09116752951757481 -9915.0,0.09113604680559469 -9916.0,0.09110457496548043 -9917.0,0.09107311399347774 -9918.0,0.09104166388583347 -9919.0,0.09101022463879588 -9920.0,0.0909787962486145 -9921.0,0.09094737871154021 -9922.0,0.09091597202382502 -9923.0,0.09088457618172241 -9924.0,0.09085319118148706 -9925.0,0.09082181701937501 -9926.0,0.0907904536916435 -9927.0,0.0907591011945511 -9928.0,0.09072775952435774 -9929.0,0.09069642867732461 -9930.0,0.09066510864971408 -9931.0,0.09063379943778993 -9932.0,0.09060250103781722 -9933.0,0.09057121344606232 -9934.0,0.09053993665879274 -9935.0,0.09050867067227747 -9936.0,0.09047741548278666 -9937.0,0.09044617108659184 -9938.0,0.09041493747996578 -9939.0,0.09038371465918249 -9940.0,0.09035250262051733 -9941.0,0.09032130136024694 -9942.0,0.09029011087464929 -9943.0,0.09025893116000348 -9944.0,0.09022776221259007 -9945.0,0.0901966040286908 -9946.0,0.09016545660458877 -9947.0,0.09013431993656826 -9948.0,0.09010319402091492 -9949.0,0.09007207885391565 -9950.0,0.09004097443185867 -9951.0,0.0900098807510334 -9952.0,0.0899787978077306 -9953.0,0.08994772559824232 -9954.0,0.08991666411886186 -9955.0,0.08988561336588387 -9956.0,0.08985457333560412 -9957.0,0.0898235440243198 -9958.0,0.08979252542832937 -9959.0,0.08976151754393254 -9960.0,0.08973052036743023 -9961.0,0.08969953389512476 -9962.0,0.08966855812331966 -9963.0,0.08963759304831977 -9964.0,0.08960663866643111 -9965.0,0.08957569497396109 -9966.0,0.08954476196721836 -9967.0,0.08951383964251287 -9968.0,0.08948292799615573 -9969.0,0.08945202702445947 -9970.0,0.08942113672373779 -9971.0,0.08939025709030576 -9972.0,0.08935938812047961 -9973.0,0.0893285298105769 -9974.0,0.08929768215691647 -9975.0,0.08926684515581843 -9976.0,0.08923601880360417 -9977.0,0.08920520309659627 -9978.0,0.08917439803111868 -9979.0,0.08914360360349657 -9980.0,0.08911281981005645 -9981.0,0.08908204664712592 -9982.0,0.08905128411103404 -9983.0,0.08902053219811105 -9984.0,0.08898979090468852 -9985.0,0.08895906022709915 -9986.0,0.08892834016167703 -9987.0,0.08889763070475748 -9988.0,0.08886693185267715 -9989.0,0.08883624360177376 -9990.0,0.08880556594838653 -9991.0,0.0887748988888558 -9992.0,0.08874424241952321 -9993.0,0.08871359653673172 -9994.0,0.08868296123682542 -9995.0,0.08865233651614977 -9996.0,0.0886217223710515 -9997.0,0.08859111879787855 -9998.0,0.0885605257929801 -9999.0,0.08852994335270664 -10000.0,0.08849937147340993 -10001.0,0.088468810151443 -10002.0,0.08843825938316002 -10003.0,0.08840771916491656 -10004.0,0.08837718949306937 -10005.0,0.08834667036397656 -10006.0,0.08831616177399731 -10007.0,0.08828566371949223 -10008.0,0.08825517619682309 -10009.0,0.08822469920235303 -10010.0,0.08819423273244627 -10011.0,0.08816377678346841 -10012.0,0.0881333313517863 -10013.0,0.08810289643376801 -10014.0,0.0880724720257829 -10015.0,0.08804205812420152 -10016.0,0.08801165472539572 -10017.0,0.08798126182573861 -10018.0,0.08795087942160458 -10019.0,0.08792050750936914 -10020.0,0.08789014608540918 -10021.0,0.08785979514610283 -10022.0,0.08782945468782945 -10023.0,0.08779912470696959 -10024.0,0.08776880519990514 -10025.0,0.0877384961630192 -10026.0,0.08770819759269614 -10027.0,0.08767790948532152 -10028.0,0.08764763183728222 -10029.0,0.08761736464496632 -10030.0,0.08758710790476318 -10031.0,0.08755686161306342 -10032.0,0.0875266257662588 -10033.0,0.08749640036074247 -10034.0,0.08746618539290872 -10035.0,0.08743598085915319 -10036.0,0.08740578675587261 -10037.0,0.08737560307946508 -10038.0,0.08734542982632992 -10039.0,0.08731526699286772 -10040.0,0.08728511457548017 -10041.0,0.08725497257057038 -10042.0,0.08722484097454261 -10043.0,0.08719471978380243 -10044.0,0.0871646089947565 -10045.0,0.08713450860381289 -10046.0,0.08710441860738083 -10047.0,0.08707433900187082 -10048.0,0.08704426978369455 -10049.0,0.087014210949265 -10050.0,0.08698416249499635 -10051.0,0.08695412441730406 -10052.0,0.08692409671260484 -10053.0,0.08689407937731654 -10054.0,0.08686407240785832 -10055.0,0.08683407580065058 -10056.0,0.08680408955211501 -10057.0,0.08677411365867435 -10058.0,0.08674414811675275 -10059.0,0.08671419292277555 -10060.0,0.08668424807316934 -10061.0,0.08665431356436185 -10062.0,0.08662438939278212 -10063.0,0.08659447555486045 -10064.0,0.08656457204702837 -10065.0,0.08653467886571853 -10066.0,0.08650479600736491 -10067.0,0.08647492346840273 -10068.0,0.08644506124526839 -10069.0,0.08641520933439961 -10070.0,0.08638536773223518 -10071.0,0.08635553643521525 -10072.0,0.08632571543978117 -10073.0,0.08629590474237556 -10074.0,0.08626610433944214 -10075.0,0.08623631422742596 -10076.0,0.08620653440277329 -10077.0,0.08617676486193165 -10078.0,0.08614700560134969 -10079.0,0.08611725661747736 -10080.0,0.08608751790676585 -10081.0,0.08605778946566756 -10082.0,0.08602807129063604 -10083.0,0.08599836337812616 -10084.0,0.08596866572459401 -10085.0,0.08593897832649688 -10086.0,0.08590930118029322 -10087.0,0.08587963428244279 -10088.0,0.08584997762940656 -10089.0,0.08582033121764669 -10090.0,0.08579069504362664 -10091.0,0.08576106910381094 -10092.0,0.08573145339466548 -10093.0,0.08570184791265731 -10094.0,0.08567225265425474 -10095.0,0.08564266761592722 -10096.0,0.0856130927941455 -10097.0,0.08558352818538151 -10098.0,0.08555397378610846 -10099.0,0.08552442959280064 -10100.0,0.08549489560193368 -10101.0,0.0854653718099844 -10102.0,0.08543585821343086 -10103.0,0.08540635480875222 -10104.0,0.08537686159242898 -10105.0,0.08534737856094282 -10106.0,0.08531790571077663 -10107.0,0.08528844303841455 -10108.0,0.08525899054034182 -10109.0,0.085229548213045 -10110.0,0.08520011605301185 -10111.0,0.08517069405673137 -10112.0,0.08514128222069364 -10113.0,0.08511188054139009 -10114.0,0.0850824890153133 -10115.0,0.08505310763895713 -10116.0,0.08502373640881651 -10117.0,0.0849943753213877 -10118.0,0.08496502437316816 -10119.0,0.08493568356065655 -10120.0,0.08490635288035266 -10121.0,0.08487703232875758 -10122.0,0.08484772190237361 -10123.0,0.08481842159770422 -10124.0,0.08478913141125408 -10125.0,0.08475985133952907 -10126.0,0.08473058137903632 -10127.0,0.08470132152628412 -10128.0,0.08467207177778205 -10129.0,0.08464283213004072 -10130.0,0.08461360257957211 -10131.0,0.08458438312288935 -10132.0,0.08455517375650679 -10133.0,0.08452597447693991 -10134.0,0.08449678528070546 -10135.0,0.08446760616432142 -10136.0,0.08443843712430694 -10137.0,0.08440927815718231 -10138.0,0.08438012925946911 -10139.0,0.08435099042769008 -10140.0,0.08432186165836922 -10141.0,0.0842927429480316 -10142.0,0.0842636342932036 -10143.0,0.08423453569041278 -10144.0,0.0842054471361879 -10145.0,0.0841763686270589 -10146.0,0.08414730015955692 -10147.0,0.08411824173021429 -10148.0,0.08408919333556455 -10149.0,0.0840601549721425 -10150.0,0.08403112663648399 -10151.0,0.0840021083251262 -10152.0,0.08397310003460744 -10153.0,0.08394410176146727 -10154.0,0.08391511350224634 -10155.0,0.0838861352534866 -10156.0,0.08385716701173115 -10157.0,0.08382820877352434 -10158.0,0.08379926053541158 -10159.0,0.08377032229393959 -10160.0,0.08374139404565625 -10161.0,0.08371247578711068 -10162.0,0.08368356751485305 -10163.0,0.08365466922543487 -10164.0,0.08362578091540876 -10165.0,0.08359690258132858 -10166.0,0.08356803421974938 -10167.0,0.08353917582722731 -10168.0,0.0835103274003198 -10169.0,0.08348148893558545 -10170.0,0.08345266042958406 -10171.0,0.08342384187887657 -10172.0,0.08339503328002512 -10173.0,0.0833662346295931 -10174.0,0.08333744592414503 -10175.0,0.08330866716024661 -10176.0,0.08327989833446474 -10177.0,0.08325113944336751 -10178.0,0.08322239048352426 -10179.0,0.08319365145150534 -10180.0,0.08316492234388247 -10181.0,0.08313620315722843 -10182.0,0.08310749388811725 -10183.0,0.08307879453312418 -10184.0,0.0830501050888255 -10185.0,0.08302142555179881 -10186.0,0.08299275591862285 -10187.0,0.08296409618587758 -10188.0,0.08293544635014403 -10189.0,0.08290680640800453 -10190.0,0.08287817635604253 -10191.0,0.08284955619084271 -10192.0,0.08282094590899082 -10193.0,0.08279234550707391 -10194.0,0.08276375498168015 -10195.0,0.08273517432939893 -10196.0,0.08270660354682073 -10197.0,0.0826780426305373 -10198.0,0.0826494915771415 -10199.0,0.08262095038322748 -10200.0,0.08259241904539039 -10201.0,0.08256389756022667 -10202.0,0.08253538592433392 -10203.0,0.08250688413431093 -10204.0,0.08247839218675768 -10205.0,0.08244991007827518 -10206.0,0.0824214378054658 -10207.0,0.08239297536493298 -10208.0,0.0823645227532814 -10209.0,0.08233607996711682 -10210.0,0.08230764700304623 -10211.0,0.08227922385767779 -10212.0,0.08225081052762087 -10213.0,0.0822224070094859 -10214.0,0.08219401329988457 -10215.0,0.08216562939542972 -10216.0,0.0821372552927354 -10217.0,0.08210889098841671 -10218.0,0.08208053647909003 -10219.0,0.08205219176137288 -10220.0,0.08202385683188394 -10221.0,0.08199553168724309 -10222.0,0.08196721632407128 -10223.0,0.08193891073899072 -10224.0,0.08191061492862477 -10225.0,0.08188232888959798 -10226.0,0.08185405261853596 -10227.0,0.08182578611206559 -10228.0,0.08179752936681489 -10229.0,0.08176928237941307 -10230.0,0.08174104514649039 -10231.0,0.0817128176646784 -10232.0,0.08168459993060975 -10233.0,0.08165639194091834 -10234.0,0.08162819369223905 -10235.0,0.0816000051812081 -10236.0,0.08157182640446278 -10237.0,0.08154365735864164 -10238.0,0.0815154980403842 -10239.0,0.08148734844633135 -10240.0,0.081459208573125 -10241.0,0.08143107841740829 -10242.0,0.08140295797582553 -10243.0,0.08137484724502209 -10244.0,0.08134674622164459 -10245.0,0.08131865490234079 -10246.0,0.08129057328375963 -10247.0,0.08126250136255112 -10248.0,0.0812344391353665 -10249.0,0.08120638659885818 -10250.0,0.0811783437496797 -10251.0,0.08115031058448569 -10252.0,0.08112228709993205 -10253.0,0.08109427329267577 -10254.0,0.08106626915937504 -10255.0,0.08103827469668912 -10256.0,0.08101028990127847 -10257.0,0.08098231476980475 -10258.0,0.08095434929893071 -10259.0,0.08092639348532031 -10260.0,0.08089844732563856 -10261.0,0.08087051081655172 -10262.0,0.08084258395472715 -10263.0,0.08081466673683345 -10264.0,0.08078675915954021 -10265.0,0.0807588612195183 -10266.0,0.08073097291343967 -10267.0,0.08070309423797752 -10268.0,0.08067522518980605 -10269.0,0.0806473657656007 -10270.0,0.08061951596203808 -10271.0,0.08059167577579592 -10272.0,0.08056384520355302 -10273.0,0.08053602424198944 -10274.0,0.08050821288778633 -10275.0,0.08048041113762605 -10276.0,0.08045261898819196 -10277.0,0.08042483643616873 -10278.0,0.08039706347824206 -10279.0,0.08036930011109887 -10280.0,0.08034154633142723 -10281.0,0.08031380213591623 -10282.0,0.08028606752125622 -10283.0,0.08025834248413868 -10284.0,0.08023062702125626 -10285.0,0.08020292112930259 -10286.0,0.08017522480497265 -10287.0,0.08014753804496244 -10288.0,0.08011986084596917 -10289.0,0.08009219320469108 -10290.0,0.08006453511782766 -10291.0,0.08003688658207951 -10292.0,0.08000924759414837 -10293.0,0.07998161815073708 -10294.0,0.07995399824854967 -10295.0,0.07992638788429125 -10296.0,0.07989878705466816 -10297.0,0.07987119575638782 -10298.0,0.07984361398615875 -10299.0,0.07981604174069064 -10300.0,0.07978847901669435 -10301.0,0.07976092581088189 -10302.0,0.07973338211996626 -10303.0,0.07970584794066178 -10304.0,0.07967832326968378 -10305.0,0.07965080810374882 -10306.0,0.07962330243957448 -10307.0,0.07959580627387956 -10308.0,0.07956831960338397 -10309.0,0.07954084242480877 -10310.0,0.0795133747348761 -10311.0,0.07948591653030927 -10312.0,0.07945846780783272 -10313.0,0.07943102856417206 -10314.0,0.07940359879605391 -10315.0,0.07937617850020615 -10316.0,0.07934876767335772 -10317.0,0.07932136631223871 -10318.0,0.07929397441358038 -10319.0,0.07926659197411501 -10320.0,0.0792392189905761 -10321.0,0.07921185545969825 -10322.0,0.07918450137821724 -10323.0,0.07915715674286986 -10324.0,0.0791298215503941 -10325.0,0.0791024957975291 -10326.0,0.07907517948101511 -10327.0,0.07904787259759344 -10328.0,0.07902057514400661 -10329.0,0.07899328711699823 -10330.0,0.07896600851331308 -10331.0,0.07893873932969693 -10332.0,0.07891147956289682 -10333.0,0.07888422920966084 -10334.0,0.07885698826673825 -10335.0,0.07882975673087941 -10336.0,0.07880253459883575 -10337.0,0.07877532186735989 -10338.0,0.07874811853320555 -10339.0,0.0787209245931276 -10340.0,0.07869374004388195 -10341.0,0.0786665648822257 -10342.0,0.07863939910491706 -10343.0,0.07861224270871539 -10344.0,0.07858509569038104 -10345.0,0.07855795804667562 -10346.0,0.07853082977436181 -10347.0,0.07850371087020343 -10348.0,0.07847660133096532 -10349.0,0.07844950115341355 -10350.0,0.07842241033431527 -10351.0,0.07839532887043876 -10352.0,0.07836825675855337 -10353.0,0.07834119399542959 -10354.0,0.07831414057783903 -10355.0,0.07828709650255444 -10356.0,0.07826006176634968 -10357.0,0.07823303636599964 -10358.0,0.0782060202982804 -10359.0,0.07817901355996917 -10360.0,0.07815201614784426 -10361.0,0.078125028058685 -10362.0,0.07809804928927196 -10363.0,0.07807107983638677 -10364.0,0.07804411969681219 -10365.0,0.078017168867332 -10366.0,0.07799022734473121 -10367.0,0.0779632951257959 -10368.0,0.07793637220731328 -10369.0,0.07790945858607155 -10370.0,0.07788255425886019 -10371.0,0.07785565922246968 -10372.0,0.07782877347369163 -10373.0,0.07780189700931882 -10374.0,0.07777502982614501 -10375.0,0.07774817192096518 -10376.0,0.07772132329057538 -10377.0,0.07769448393177278 -10378.0,0.07766765384135559 -10379.0,0.07764083301612319 -10380.0,0.07761402145287606 -10381.0,0.07758721914841583 -10382.0,0.0775604260995451 -10383.0,0.07753364230306768 -10384.0,0.07750686775578845 -10385.0,0.07748010245451346 -10386.0,0.07745334639604973 -10387.0,0.07742659957720549 -10388.0,0.07739986199479003 -10389.0,0.07737313364561378 -10390.0,0.0773464145264882 -10391.0,0.07731970463422592 -10392.0,0.07729300396564064 -10393.0,0.07726631251754715 -10394.0,0.07723963028676141 -10395.0,0.07721295727010036 -10396.0,0.0771862934643821 -10397.0,0.07715963886642589 -10398.0,0.07713299347305203 -10399.0,0.07710635728108184 -10400.0,0.07707973028733787 -10401.0,0.07705311248864372 -10402.0,0.0770265038818241 -10403.0,0.07699990446370472 -10404.0,0.07697331423111252 -10405.0,0.07694673318087547 -10406.0,0.07692016130982268 -10407.0,0.07689359861478426 -10408.0,0.07686704509259148 -10409.0,0.07684050074007673 -10410.0,0.07681396555407345 -10411.0,0.07678743953141622 -10412.0,0.07676092266894059 -10413.0,0.07673441496348336 -10414.0,0.07670791641188235 -10415.0,0.07668142701097648 -10416.0,0.07665494675760572 -10417.0,0.07662847564861118 -10418.0,0.07660201368083508 -10419.0,0.0765755608511207 -10420.0,0.07654911715631237 -10421.0,0.07652268259325555 -10422.0,0.07649625715879683 -10423.0,0.07646984084978387 -10424.0,0.0764434336630653 -10425.0,0.07641703559549101 -10426.0,0.07639064664391187 -10427.0,0.07636426680517994 -10428.0,0.0763378960761482 -10429.0,0.07631153445367085 -10430.0,0.07628518193460315 -10431.0,0.07625883851580144 -10432.0,0.07623250419412317 -10433.0,0.07620617896642679 -10434.0,0.0761798628295719 -10435.0,0.0761535557804192 -10436.0,0.07612725781583046 -10437.0,0.0761009689326685 -10438.0,0.07607468912779725 -10439.0,0.07604841839808173 -10440.0,0.07602215674038805 -10441.0,0.07599590415158335 -10442.0,0.07596966062853588 -10443.0,0.07594342616811503 -10444.0,0.07591720076719122 -10445.0,0.07589098442263588 -10446.0,0.07586477713132164 -10447.0,0.07583857889012216 -10448.0,0.07581238969591218 -10449.0,0.07578620954556754 -10450.0,0.0757600384359651 -10451.0,0.07573387636398285 -10452.0,0.07570772332649985 -10453.0,0.07568157932039625 -10454.0,0.07565544434255322 -10455.0,0.07562931838985308 -10456.0,0.07560320145917918 -10457.0,0.075577093547416 -10458.0,0.07555099465144899 -10459.0,0.07552490476816476 -10460.0,0.075498823894451 -10461.0,0.07547275202719649 -10462.0,0.07544668916329096 -10463.0,0.07542063529962534 -10464.0,0.07539459043309159 -10465.0,0.07536855456058279 -10466.0,0.07534252767899298 -10467.0,0.07531650978521738 -10468.0,0.07529050087615223 -10469.0,0.07526450094869487 -10470.0,0.07523850999974373 -10471.0,0.07521252802619821 -10472.0,0.07518655502495888 -10473.0,0.07516059099292735 -10474.0,0.07513463592700635 -10475.0,0.07510868982409956 -10476.0,0.07508275268111181 -10477.0,0.07505682449494899 -10478.0,0.07503090526251813 -10479.0,0.07500499498072714 -10480.0,0.07497909364648517 -10481.0,0.07495320125670238 -10482.0,0.07492731780829001 -10483.0,0.07490144329816031 -10484.0,0.07487557772322667 -10485.0,0.07484972108040351 -10486.0,0.07482387336660631 -10487.0,0.07479803457875168 -10488.0,0.07477220471375716 -10489.0,0.07474638376854148 -10490.0,0.07472057174002437 -10491.0,0.07469476862512671 -10492.0,0.07466897442077028 -10493.0,0.07464318912387806 -10494.0,0.07461741273137405 -10495.0,0.07459164524018336 -10496.0,0.07456588664723203 -10497.0,0.0745401369494473 -10498.0,0.07451439614375742 -10499.0,0.07448866422709172 -10500.0,0.0744629411963805 -10501.0,0.07443722704855524 -10502.0,0.07441152178054841 -10503.0,0.07438582538929361 -10504.0,0.07436013787172538 -10505.0,0.07433445922477941 -10506.0,0.07430878944539242 -10507.0,0.0742831285305022 -10508.0,0.07425747647704764 -10509.0,0.07423183328196854 -10510.0,0.07420619894220591 -10511.0,0.07418057345470175 -10512.0,0.07415495681639916 -10513.0,0.0741293490242422 -10514.0,0.07410375007517608 -10515.0,0.07407815996614703 -10516.0,0.07405257869410235 -10517.0,0.07402700625599036 -10518.0,0.07400144264876043 -10519.0,0.07397588786936307 -10520.0,0.07395034191474976 -10521.0,0.07392480478187304 -10522.0,0.0738992764676865 -10523.0,0.07387375696914482 -10524.0,0.0738482462832037 -10525.0,0.07382274440681996 -10526.0,0.07379725133695132 -10527.0,0.07377176707055669 -10528.0,0.07374629160459596 -10529.0,0.07372082493603016 -10530.0,0.07369536706182121 -10531.0,0.07366991797893223 -10532.0,0.0736444776843273 -10533.0,0.07361904617497163 -10534.0,0.07359362344783135 -10535.0,0.07356820949987375 -10536.0,0.07354280432806713 -10537.0,0.07351740792938088 -10538.0,0.07349202030078533 -10539.0,0.07346664143925195 -10540.0,0.07344127134175321 -10541.0,0.0734159100052627 -10542.0,0.07339055742675492 -10543.0,0.07336521360320553 -10544.0,0.07333987853159118 -10545.0,0.0733145522088896 -10546.0,0.07328923463207958 -10547.0,0.07326392579814082 -10548.0,0.07323862570405423 -10549.0,0.07321333434680169 -10550.0,0.07318805172336613 -10551.0,0.07316277783073148 -10552.0,0.07313751266588278 -10553.0,0.07311225622580605 -10554.0,0.07308700850748845 -10555.0,0.07306176950791803 -10556.0,0.07303653922408399 -10557.0,0.07301131765297655 -10558.0,0.07298610479158699 -10559.0,0.07296090063690752 -10560.0,0.07293570518593154 -10561.0,0.07291051843565337 -10562.0,0.07288534038306843 -10563.0,0.07286017102517321 -10564.0,0.07283501035896511 -10565.0,0.07280985838144269 -10566.0,0.07278471508960549 -10567.0,0.07275958048045414 -10568.0,0.07273445455099019 -10569.0,0.07270933729821633 -10570.0,0.07268422871913627 -10571.0,0.07265912881075476 -10572.0,0.0726340375700775 -10573.0,0.07260895499411134 -10574.0,0.07258388107986408 -10575.0,0.07255881582434463 -10576.0,0.07253375922456283 -10577.0,0.07250871127752964 -10578.0,0.07248367198025703 -10579.0,0.072458641329758 -10580.0,0.07243361932304654 -10581.0,0.07240860595713772 -10582.0,0.07238360122904763 -10583.0,0.07235860513579341 -10584.0,0.07233361767439322 -10585.0,0.07230863884186618 -10586.0,0.07228366863523253 -10587.0,0.0722587070515135 -10588.0,0.07223375408773137 -10589.0,0.07220880974090942 -10590.0,0.07218387400807197 -10591.0,0.07215894688624436 -10592.0,0.07213402837245302 -10593.0,0.07210911846372528 -10594.0,0.0720842171570896 -10595.0,0.07205932444957544 -10596.0,0.0720344403382133 -10597.0,0.07200956482003465 -10598.0,0.07198469789207203 -10599.0,0.071959839551359 -10600.0,0.07193498979493014 -10601.0,0.0719101486198211 -10602.0,0.07188531602306844 -10603.0,0.07186049200170985 -10604.0,0.07183567655278399 -10605.0,0.07181086967333059 -10606.0,0.07178607136039032 -10607.0,0.07176128161100495 -10608.0,0.07173650042221724 -10609.0,0.071711727791071 -10610.0,0.07168696371461099 -10611.0,0.07166220818988306 -10612.0,0.07163746121393404 -10613.0,0.07161272278381185 -10614.0,0.07158799289656531 -10615.0,0.07156327154924434 -10616.0,0.07153855873889989 -10617.0,0.0715138544625839 -10618.0,0.0714891587173493 -10619.0,0.07146447150025008 -10620.0,0.07143979280834123 -10621.0,0.07141512263867877 -10622.0,0.07139046098831978 -10623.0,0.07136580785432221 -10624.0,0.07134116323374516 -10625.0,0.07131652712364872 -10626.0,0.07129189952109401 -10627.0,0.07126728042314306 -10628.0,0.07124266982685903 -10629.0,0.07121806772930607 -10630.0,0.07119347412754934 -10631.0,0.07116888901865495 -10632.0,0.0711443123996901 -10633.0,0.07111974426772298 -10634.0,0.07109518461982284 -10635.0,0.07107063345305979 -10636.0,0.07104609076450513 -10637.0,0.07102155655123107 -10638.0,0.07099703081031088 -10639.0,0.07097251353881881 -10640.0,0.0709480047338301 -10641.0,0.07092350439242105 -10642.0,0.07089901251166895 -10643.0,0.07087452908865213 -10644.0,0.07085005412044983 -10645.0,0.07082558760414238 -10646.0,0.07080112953681113 -10647.0,0.07077667991553843 -10648.0,0.07075223873740756 -10649.0,0.07072780599950289 -10650.0,0.07070338169890977 -10651.0,0.0706789658327146 -10652.0,0.07065455839800468 -10653.0,0.07063015939186841 -10654.0,0.07060576881139517 -10655.0,0.07058138665367537 -10656.0,0.07055701291580034 -10657.0,0.07053264759486248 -10658.0,0.07050829068795522 -10659.0,0.07048394219217294 -10660.0,0.07045960210461107 -10661.0,0.07043527042236594 -10662.0,0.07041094714253501 -10663.0,0.0703866322622167 -10664.0,0.07036232577851043 -10665.0,0.07033802768851656 -10666.0,0.07031373798933653 -10667.0,0.07028945667807276 -10668.0,0.07026518375182872 -10669.0,0.07024091920770872 -10670.0,0.07021666304281825 -10671.0,0.07019241525426369 -10672.0,0.07016817583915251 -10673.0,0.07014394479459307 -10674.0,0.0701197221176948 -10675.0,0.0700955078055681 -10676.0,0.0700713018553244 -10677.0,0.07004710426407612 -10678.0,0.07002291502893662 -10679.0,0.06999873414702032 -10680.0,0.06997456161544262 -10681.0,0.06995039743131995 -10682.0,0.06992624159176962 -10683.0,0.06990209409391007 -10684.0,0.06987795493486065 -10685.0,0.0698538241117418 -10686.0,0.0698297016216748 -10687.0,0.06980558746178205 -10688.0,0.06978148162918692 -10689.0,0.06975738412101376 -10690.0,0.06973329493438789 -10691.0,0.06970921406643564 -10692.0,0.06968514151428437 -10693.0,0.0696610772750624 -10694.0,0.06963702134589901 -10695.0,0.06961297372392451 -10696.0,0.06958893440627022 -10697.0,0.06956490339006839 -10698.0,0.06954088067245236 -10699.0,0.06951686625055631 -10700.0,0.06949286012151554 -10701.0,0.06946886228246628 -10702.0,0.06944487273054581 -10703.0,0.06942089146289226 -10704.0,0.06939691847664492 -10705.0,0.06937295376894394 -10706.0,0.06934899733693056 -10707.0,0.06932504917774687 -10708.0,0.0693011092885361 -10709.0,0.06927717766644235 -10710.0,0.06925325430861082 -10711.0,0.06922933921218755 -10712.0,0.06920543237431966 -10713.0,0.06918153379215526 -10714.0,0.06915764346284342 -10715.0,0.06913376138353422 -10716.0,0.06910988755137865 -10717.0,0.06908602196352875 -10718.0,0.06906216461713756 -10719.0,0.06903831550935907 -10720.0,0.06901447463734821 -10721.0,0.06899064199826097 -10722.0,0.06896681758925428 -10723.0,0.06894300140748612 -10724.0,0.0689191934501153 -10725.0,0.06889539371430173 -10726.0,0.06887160219720631 -10727.0,0.0688478188959909 -10728.0,0.06882404380781824 -10729.0,0.0688002769298522 -10730.0,0.06877651825925755 -10731.0,0.0687527677932001 -10732.0,0.06872902552884651 -10733.0,0.06870529146336454 -10734.0,0.06868156559392288 -10735.0,0.06865784791769122 -10736.0,0.06863413843184026 -10737.0,0.06861043713354152 -10738.0,0.06858674401996769 -10739.0,0.06856305908829231 -10740.0,0.06853938233569001 -10741.0,0.06851571375933625 -10742.0,0.06849205335640758 -10743.0,0.06846840112408147 -10744.0,0.06844475705953641 -10745.0,0.06842112115995179 -10746.0,0.06839749342250803 -10747.0,0.06837387384438655 -10748.0,0.0683502624227697 -10749.0,0.06832665915484076 -10750.0,0.06830306403778408 -10751.0,0.0682794770687849 -10752.0,0.0682558982450295 -10753.0,0.0682323275637051 -10754.0,0.06820876502199986 -10755.0,0.06818521061710296 -10756.0,0.0681616643462045 -10757.0,0.06813812620649566 -10758.0,0.06811459619516842 -10759.0,0.06809107430941586 -10760.0,0.068067560546432 -10761.0,0.06804405490341182 -10762.0,0.06802055737755125 -10763.0,0.06799706796604721 -10764.0,0.06797358666609758 -10765.0,0.06795011347490126 -10766.0,0.06792664838965799 -10767.0,0.0679031914075686 -10768.0,0.06787974252583485 -10769.0,0.06785630174165948 -10770.0,0.06783286905224611 -10771.0,0.06780944445479943 -10772.0,0.06778602794652505 -10773.0,0.06776261952462956 -10774.0,0.06773921918632052 -10775.0,0.06771582692880639 -10776.0,0.06769244274929667 -10777.0,0.06766906664500182 -10778.0,0.06764569861313324 -10779.0,0.06762233865090325 -10780.0,0.0675989867555252 -10781.0,0.06757564292421339 -10782.0,0.06755230715418309 -10783.0,0.06752897944265046 -10784.0,0.0675056597868327 -10785.0,0.06748234818394795 -10786.0,0.06745904463121534 -10787.0,0.06743574912585484 -10788.0,0.06741246166508753 -10789.0,0.06738918224613537 -10790.0,0.06736591086622129 -10791.0,0.06734264752256922 -10792.0,0.06731939221240395 -10793.0,0.06729614493295132 -10794.0,0.06727290568143811 -10795.0,0.06724967445509206 -10796.0,0.06722645125114181 -10797.0,0.06720323606681702 -10798.0,0.06718002889934829 -10799.0,0.06715682974596722 -10800.0,0.06713363860390624 -10801.0,0.06711045547039884 -10802.0,0.06708728034267947 -10803.0,0.06706411321798351 -10804.0,0.06704095409354724 -10805.0,0.06701780296660798 -10806.0,0.06699465983440396 -10807.0,0.06697152469417442 -10808.0,0.06694839754315943 -10809.0,0.06692527837860011 -10810.0,0.06690216719773853 -10811.0,0.0668790639978177 -10812.0,0.0668559687760816 -10813.0,0.06683288152977507 -10814.0,0.06680980225614401 -10815.0,0.06678673095243522 -10816.0,0.0667636676158965 -10817.0,0.0667406122437765 -10818.0,0.06671756483332493 -10819.0,0.06669452538179237 -10820.0,0.06667149388643043 -10821.0,0.06664847034449155 -10822.0,0.06662545475322923 -10823.0,0.06660244710989788 -10824.0,0.06657944741175287 -10825.0,0.06655645565605046 -10826.0,0.06653347184004792 -10827.0,0.06651049596100346 -10828.0,0.06648752801617622 -10829.0,0.06646456800282631 -10830.0,0.06644161591821472 -10831.0,0.06641867175960346 -10832.0,0.06639573552425547 -10833.0,0.06637280720943464 -10834.0,0.06634988681240572 -10835.0,0.06632697433043454 -10836.0,0.06630406976078777 -10837.0,0.06628117310073313 -10838.0,0.06625828434753911 -10839.0,0.06623540349847531 -10840.0,0.06621253055081221 -10841.0,0.06618966550182125 -10842.0,0.06616680834877474 -10843.0,0.06614395908894602 -10844.0,0.06612111771960935 -10845.0,0.06609828423803994 -10846.0,0.06607545864151387 -10847.0,0.06605264092730824 -10848.0,0.06602983109270105 -10849.0,0.06600702913497128 -10850.0,0.06598423505139882 -10851.0,0.06596144883926447 -10852.0,0.06593867049585002 -10853.0,0.06591590001843817 -10854.0,0.06589313740431262 -10855.0,0.06587038265075787 -10856.0,0.06584763575505949 -10857.0,0.06582489671450395 -10858.0,0.06580216552637866 -10859.0,0.0657794421879719 -10860.0,0.06575672669657298 -10861.0,0.0657340190494721 -10862.0,0.06571131924396043 -10863.0,0.06568862727732999 -10864.0,0.06566594314687384 -10865.0,0.0656432668498859 -10866.0,0.06562059838366108 -10867.0,0.0655979377454952 -10868.0,0.06557528493268498 -10869.0,0.06555263994252812 -10870.0,0.06553000277232325 -10871.0,0.06550737341936992 -10872.0,0.06548475188096858 -10873.0,0.06546213815442067 -10874.0,0.06543953223702854 -10875.0,0.06541693412609549 -10876.0,0.06539434381892568 -10877.0,0.06537176131282427 -10878.0,0.06534918660509734 -10879.0,0.06532661969305192 -10880.0,0.06530406057399589 -10881.0,0.06528150924523812 -10882.0,0.06525896570408843 -10883.0,0.06523642994785754 -10884.0,0.06521390197385706 -10885.0,0.06519138177939958 -10886.0,0.06516886936179861 -10887.0,0.0651463647183686 -10888.0,0.06512386784642493 -10889.0,0.06510137874328381 -10890.0,0.0650788974062625 -10891.0,0.06505642383267915 -10892.0,0.06503395801985284 -10893.0,0.06501149996510351 -10894.0,0.06498904966575211 -10895.0,0.06496660711912047 -10896.0,0.0649441723225314 -10897.0,0.06492174527330853 -10898.0,0.06489932596877651 -10899.0,0.06487691440626087 -10900.0,0.06485451058308811 -10901.0,0.06483211449658555 -10902.0,0.06480972614408154 -10903.0,0.06478734552290531 -10904.0,0.06476497263038702 -10905.0,0.06474260746385778 -10906.0,0.0647202500206495 -10907.0,0.06469790029809518 -10908.0,0.0646755582935286 -10909.0,0.0646532240042846 -10910.0,0.06463089742769879 -10911.0,0.06460857856110779 -10912.0,0.06458626740184913 -10913.0,0.06456396394726129 -10914.0,0.06454166819468354 -10915.0,0.06451938014145624 -10916.0,0.06449709978492053 -10917.0,0.06447482712241862 -10918.0,0.06445256215129341 -10919.0,0.06443030486888894 -10920.0,0.06440805527255006 -10921.0,0.06438581335962258 -10922.0,0.06436357912745315 -10923.0,0.06434135257338941 -10924.0,0.0643191336947799 -10925.0,0.06429692248897406 -10926.0,0.0642747189533223 -10927.0,0.06425252308517583 -10928.0,0.06423033488188688 -10929.0,0.06420815434080857 -10930.0,0.06418598145929492 -10931.0,0.06416381623470084 -10932.0,0.06414165866438219 -10933.0,0.06411950874569573 -10934.0,0.0640973664759992 -10935.0,0.0640752318526511 -10936.0,0.06405310487301095 -10937.0,0.0640309855344392 -10938.0,0.06400887383429717 -10939.0,0.06398676976994705 -10940.0,0.06396467333875201 -10941.0,0.06394258453807612 -10942.0,0.06392050336528435 -10943.0,0.06389842981774257 -10944.0,0.06387636389281756 -10945.0,0.063854305587877 -10946.0,0.06383225490028953 -10947.0,0.06381021182742466 -10948.0,0.06378817636665278 -10949.0,0.06376614851534523 -10950.0,0.06374412827087426 -10951.0,0.06372211563061306 -10952.0,0.06370011059193559 -10953.0,0.06367811315221686 -10954.0,0.06365612330883273 -10955.0,0.06363414105916 -10956.0,0.0636121664005763 -10957.0,0.06359019933046023 -10958.0,0.06356823984619128 -10959.0,0.06354628794514985 -10960.0,0.06352434362471726 -10961.0,0.06350240688227567 -10962.0,0.06348047771520819 -10963.0,0.06345855612089886 -10964.0,0.0634366420967326 -10965.0,0.06341473564009517 -10966.0,0.06339283674837332 -10967.0,0.06337094541895469 -10968.0,0.06334906164922781 -10969.0,0.06332718543658206 -10970.0,0.0633053167784078 -10971.0,0.06328345567209624 -10972.0,0.06326160211503955 -10973.0,0.0632397561046307 -10974.0,0.06321791763826366 -10975.0,0.06319608671333325 -10976.0,0.06317426332723523 -10977.0,0.06315244747736617 -10978.0,0.06313063916112364 -10979.0,0.06310883837590604 -10980.0,0.06308704511911273 -10981.0,0.06306525938814393 -10982.0,0.06304348118040072 -10983.0,0.06302171049328514 -10984.0,0.06299994732420011 -10985.0,0.06297819167054947 -10986.0,0.06295644352973788 -10987.0,0.06293470289917096 -10988.0,0.06291296977625523 -10989.0,0.06289124415839809 -10990.0,0.06286952604300779 -10991.0,0.06284781542749356 -10992.0,0.06282611230926545 -10993.0,0.06280441668573448 -10994.0,0.06278272855431247 -10995.0,0.0627610479124122 -10996.0,0.06273937475744736 -10997.0,0.06271770908683245 -10998.0,0.06269605089798297 -10999.0,0.0626744001883152 -11000.0,0.0626527569552464 -11001.0,0.06263112119619467 -11002.0,0.06260949290857908 -11003.0,0.06258787208981945 -11004.0,0.0625662587373366 -11005.0,0.06254465284855223 -11006.0,0.06252305442088896 -11007.0,0.06250146345177016 -11008.0,0.06247987993862024 -11009.0,0.062458303878864425 -11010.0,0.06243673526992889 -11011.0,0.062415174109240606 -11012.0,0.062393620394227495 -11013.0,0.06237207412231837 -11014.0,0.062350535290942935 -11015.0,0.06232900389753172 -11016.0,0.06230747993951621 -11017.0,0.062285963414328745 -11018.0,0.06226445431940257 -11019.0,0.062242952652171835 -11020.0,0.06222145841007149 -11021.0,0.06219997159053745 -11022.0,0.06217849219100651 -11023.0,0.06215702020891634 -11024.0,0.062135555641705455 -11025.0,0.06211409848681331 -11026.0,0.06209264874168022 -11027.0,0.06207120640374741 -11028.0,0.06204977147045691 -11029.0,0.062028343939251725 -11030.0,0.062006923807575706 -11031.0,0.06198551107287361 -11032.0,0.061964105732591 -11033.0,0.061942707784174406 -11034.0,0.0619213172250712 -11035.0,0.06189993405272966 -11036.0,0.06187855826459894 -11037.0,0.06185718985812902 -11038.0,0.06183582883077083 -11039.0,0.061814475179976146 -11040.0,0.06179312890319768 -11041.0,0.061771789997888904 -11042.0,0.06175045846150427 -11043.0,0.0617291342914991 -11044.0,0.06170781748532959 -11045.0,0.06168650804045274 -11046.0,0.06166520595432653 -11047.0,0.061643911224409764 -11048.0,0.06162262384816217 -11049.0,0.06160134382304426 -11050.0,0.061580071146517514 -11051.0,0.061558805816044254 -11052.0,0.06153754782908771 -11053.0,0.061516297183111905 -11054.0,0.06149505387558182 -11055.0,0.061473817903963286 -11056.0,0.061452589265722994 -11057.0,0.06143136795832856 -11058.0,0.06141015397924838 -11059.0,0.06138894732595181 -11060.0,0.06136774799590905 -11061.0,0.061346555986591195 -11062.0,0.06132537129547015 -11063.0,0.061304193920018756 -11064.0,0.06128302385771071 -11065.0,0.061261861106020596 -11066.0,0.0612407056624238 -11067.0,0.06121955752439667 -11068.0,0.06119841668941639 -11069.0,0.06117728315496102 -11070.0,0.06115615691850944 -11071.0,0.061135037977541475 -11072.0,0.06111392632953778 -11073.0,0.0610928219719799 -11074.0,0.06107172490235026 -11075.0,0.06105063511813207 -11076.0,0.06102955261680952 -11077.0,0.06100847739586761 -11078.0,0.06098740945279224 -11079.0,0.06096634878507012 -11080.0,0.06094529539018888 -11081.0,0.060924249265637005 -11082.0,0.06090321040890388 -11083.0,0.06088217881747966 -11084.0,0.06086115448885547 -11085.0,0.060840137420523244 -11086.0,0.06081912760997584 -11087.0,0.06079812505470687 -11088.0,0.06077712975221093 -11089.0,0.060756141699983425 -11090.0,0.060735160895520654 -11091.0,0.06071418733631971 -11092.0,0.060693221019878625 -11093.0,0.06067226194369628 -11094.0,0.0606513101052724 -11095.0,0.06063036550210762 -11096.0,0.060609428131703336 -11097.0,0.0605884979915619 -11098.0,0.06056757507918651 -11099.0,0.06054665939208124 -11100.0,0.060525750927750935 -11101.0,0.06050484968370141 -11102.0,0.06048395565743928 -11103.0,0.06046306884647209 -11104.0,0.060442189248308124 -11105.0,0.06042131686045663 -11106.0,0.060400451680427694 -11107.0,0.060379593705732267 -11108.0,0.0603587429338821 -11109.0,0.060337899362389855 -11110.0,0.06031706298876907 -11111.0,0.06029623381053411 -11112.0,0.06027541182520023 -11113.0,0.06025459703028346 -11114.0,0.060233789423300786 -11115.0,0.06021298900177 -11116.0,0.0601921957632098 -11117.0,0.06017140970513965 -11118.0,0.06015063082507994 -11119.0,0.060129859120551916 -11120.0,0.060109094589077684 -11121.0,0.06008833722818013 -11122.0,0.06006758703538309 -11123.0,0.06004684400821121 -11124.0,0.06002610814419002 -11125.0,0.060005379440845844 -11126.0,0.05998465789570591 -11127.0,0.059963943506298294 -11128.0,0.05994323627015195 -11129.0,0.0599225361847966 -11130.0,0.059901843247762904 -11131.0,0.059881157456582346 -11132.0,0.059860478808787254 -11133.0,0.059839807301910845 -11134.0,0.05981914293348711 -11135.0,0.05979848570105097 -11136.0,0.05977783560213817 -11137.0,0.05975719263428531 -11138.0,0.05973655679502981 -11139.0,0.059715928081909966 -11140.0,0.05969530649246494 -11141.0,0.05967469202423474 -11142.0,0.059654084674760174 -11143.0,0.059633484441582944 -11144.0,0.059612891322245606 -11145.0,0.05959230531429157 -11146.0,0.05957172641526502 -11147.0,0.05955115462271108 -11148.0,0.059530589934175676 -11149.0,0.059510032347205595 -11150.0,0.05948948185934849 -11151.0,0.05946893846815279 -11152.0,0.05944840217116784 -11153.0,0.05942787296594382 -11154.0,0.05940735085003175 -11155.0,0.05938683582098346 -11156.0,0.059366327876351675 -11157.0,0.05934582701368994 -11158.0,0.05932533323055269 -11159.0,0.0593048465244951 -11160.0,0.059284366893073294 -11161.0,0.0592638943338442 -11162.0,0.05924342884436561 -11163.0,0.05922297042219609 -11164.0,0.05920251906489513 -11165.0,0.05918207477002303 -11166.0,0.05916163753514096 -11167.0,0.05914120735781085 -11168.0,0.059120784235595567 -11169.0,0.05910036816605877 -11170.0,0.059079959146764977 -11171.0,0.05905955717527957 -11172.0,0.05903916224916868 -11173.0,0.059018774365999366 -11174.0,0.058998393523339514 -11175.0,0.05897801971875786 -11176.0,0.058957652949823906 -11177.0,0.058937293214108066 -11178.0,0.05891694050918157 -11179.0,0.058896594832616535 -11180.0,0.05887625618198579 -11181.0,0.058855924554863125 -11182.0,0.05883559994882313 -11183.0,0.058815282361441235 -11184.0,0.05879497179029366 -11185.0,0.05877466823295752 -11186.0,0.05875437168701077 -11187.0,0.05873408215003215 -11188.0,0.05871379961960131 -11189.0,0.058693524093298644 -11190.0,0.058673255568705444 -11191.0,0.05865299404340383 -11192.0,0.05863273951497677 -11193.0,0.058612491981008 -11194.0,0.05859225143908216 -11195.0,0.0585720178867847 -11196.0,0.058551791321701935 -11197.0,0.05853157174142092 -11198.0,0.05851135914352965 -11199.0,0.0584911535256169 -11200.0,0.05847095488527231 -11201.0,0.05845076322008628 -11202.0,0.05843057852765012 -11203.0,0.05841040080555594 -11204.0,0.058390230051396715 -11205.0,0.05837006626276617 -11206.0,0.05834990943725893 -11207.0,0.05832975957247044 -11208.0,0.05830961666599696 -11209.0,0.058289480715435625 -11210.0,0.05826935171838431 -11211.0,0.05824922967244178 -11212.0,0.05822911457520765 -11213.0,0.05820900642428234 -11214.0,0.05818890521726705 -11215.0,0.05816881095176388 -11216.0,0.05814872362537573 -11217.0,0.058128643235706344 -11218.0,0.05810856978036025 -11219.0,0.05808850325694283 -11220.0,0.058068443663060305 -11221.0,0.05804839099631975 -11222.0,0.058028345254328956 -11223.0,0.05800830643469665 -11224.0,0.057988274535032344 -11225.0,0.057968249552946376 -11226.0,0.057948231486049946 -11227.0,0.05792822033195498 -11228.0,0.05790821608827433 -11229.0,0.05788821875262163 -11230.0,0.057868228322611376 -11231.0,0.057848244795858796 -11232.0,0.057828268169980025 -11233.0,0.057808298442592006 -11234.0,0.05778833561131252 -11235.0,0.057768379673760084 -11236.0,0.057748430627554144 -11237.0,0.05772848847031491 -11238.0,0.05770855319966346 -11239.0,0.05768862481322161 -11240.0,0.057668703308612075 -11241.0,0.05764878868345836 -11242.0,0.057628880935384826 -11243.0,0.05760898006201657 -11244.0,0.05758908606097959 -11245.0,0.05756919892990067 -11246.0,0.05754931866640744 -11247.0,0.05752944526812833 -11248.0,0.05750957873269255 -11249.0,0.0574897190577302 -11250.0,0.05746986624087215 -11251.0,0.05745002027975014 -11252.0,0.057430181171996636 -11253.0,0.057410348915245 -11254.0,0.05739052350712939 -11255.0,0.05737070494528482 -11256.0,0.057350893227347 -11257.0,0.05733108835095259 -11258.0,0.057311290313738994 -11259.0,0.05729149911334448 -11260.0,0.05727171474740806 -11261.0,0.057251937213569616 -11262.0,0.05723216650946985 -11263.0,0.05721240263275024 -11264.0,0.057192645581053136 -11265.0,0.057172895352021615 -11266.0,0.057153151943299646 -11267.0,0.05713341535253198 -11268.0,0.05711368557736421 -11269.0,0.057093962615442674 -11270.0,0.057074246464414585 -11271.0,0.05705453712192795 -11272.0,0.05703483458563162 -11273.0,0.05701513885317516 -11274.0,0.05699544992220906 -11275.0,0.05697576779038456 -11276.0,0.056956092455353755 -11277.0,0.05693642391476947 -11278.0,0.05691676216628541 -11279.0,0.056897107207556086 -11280.0,0.05687745903623682 -11281.0,0.05685781764998367 -11282.0,0.056838183046453605 -11283.0,0.05681855522330435 -11284.0,0.05679893417819445 -11285.0,0.056779319908783286 -11286.0,0.05675971241273096 -11287.0,0.05674011168769848 -11288.0,0.0567205177313476 -11289.0,0.056700930541340955 -11290.0,0.056681350115341866 -11291.0,0.05666177645101456 -11292.0,0.05664220954602406 -11293.0,0.05662264939803617 -11294.0,0.05660309600471748 -11295.0,0.05658354936373544 -11296.0,0.05656400947275826 -11297.0,0.056544476329455015 -11298.0,0.05652494993149548 -11299.0,0.056505430276550334 -11300.0,0.05648591736229102 -11301.0,0.05646641118638979 -11302.0,0.05644691174651972 -11303.0,0.05642741904035463 -11304.0,0.056407933065569196 -11305.0,0.05638845381983889 -11306.0,0.056368981300840004 -11307.0,0.05634951550624956 -11308.0,0.056330056433745446 -11309.0,0.05631060408100635 -11310.0,0.05629115844571176 -11311.0,0.05627171952554191 -11312.0,0.05625228731817791 -11313.0,0.05623286182130163 -11314.0,0.05621344303259578 -11315.0,0.05619403094974379 -11316.0,0.05617462557042996 -11317.0,0.05615522689233937 -11318.0,0.056135834913157934 -11319.0,0.05611644963057227 -11320.0,0.05609707104226988 -11321.0,0.05607769914593905 -11322.0,0.05605833393926884 -11323.0,0.05603897541994916 -11324.0,0.05601962358567062 -11325.0,0.056000278434124716 -11326.0,0.05598093996300371 -11327.0,0.0559616081700007 -11328.0,0.05594228305280948 -11329.0,0.055922964609124735 -11330.0,0.055903652836641914 -11331.0,0.055884347733057296 -11332.0,0.05586504929606786 -11333.0,0.055845757523371474 -11334.0,0.05582647241266678 -11335.0,0.055807193961653206 -11336.0,0.05578792216803095 -11337.0,0.05576865702950103 -11338.0,0.055749398543765274 -11339.0,0.05573014670852628 -11340.0,0.05571090152148746 -11341.0,0.05569166298035296 -11342.0,0.055672431082827795 -11343.0,0.05565320582661772 -11344.0,0.05563398720942935 -11345.0,0.05561477522896998 -11346.0,0.05559556988294779 -11347.0,0.05557637116907172 -11348.0,0.055557179085051527 -11349.0,0.05553799362859769 -11350.0,0.05551881479742155 -11351.0,0.05549964258923521 -11352.0,0.055480477001751585 -11353.0,0.055461318032684316 -11354.0,0.055442165679747905 -11355.0,0.05542301994065761 -11356.0,0.05540388081312951 -11357.0,0.0553847482948804 -11358.0,0.05536562238362794 -11359.0,0.055346503077090534 -11360.0,0.055327390372987395 -11361.0,0.05530828426903854 -11362.0,0.05528918476296471 -11363.0,0.05527009185248749 -11364.0,0.05525100553532923 -11365.0,0.05523192580921311 -11366.0,0.05521285267186299 -11367.0,0.055193786121003625 -11368.0,0.055174726154360504 -11369.0,0.05515567276965994 -11370.0,0.05513662596462896 -11371.0,0.05511758573699544 -11372.0,0.055098552084488016 -11373.0,0.055079525004836136 -11374.0,0.05506050449576996 -11375.0,0.05504149055502051 -11376.0,0.055022483180319555 -11377.0,0.055003482369399656 -11378.0,0.054984488119994186 -11379.0,0.05496550042983721 -11380.0,0.05494651929666366 -11381.0,0.05492754471820924 -11382.0,0.05490857669221042 -11383.0,0.054889615216404425 -11384.0,0.054870660288529306 -11385.0,0.05485171190632388 -11386.0,0.05483277006752777 -11387.0,0.0548138347698813 -11388.0,0.05479490601112565 -11389.0,0.054775983789002766 -11390.0,0.05475706810125538 -11391.0,0.05473815894562694 -11392.0,0.05471925631986175 -11393.0,0.05470036022170486 -11394.0,0.05468147064890213 -11395.0,0.054662587599200126 -11396.0,0.054643711070346254 -11397.0,0.05462484106008869 -11398.0,0.054605977566176384 -11399.0,0.05458712058635907 -11400.0,0.054568270118387205 -11401.0,0.05454942616001209 -11402.0,0.054530588708985785 -11403.0,0.05451175776306113 -11404.0,0.054492933319991686 -11405.0,0.05447411537753186 -11406.0,0.05445530393343682 -11407.0,0.05443649898546251 -11408.0,0.05441770053136558 -11409.0,0.05439890856890356 -11410.0,0.05438012309583468 -11411.0,0.05436134410991801 -11412.0,0.05434257160891331 -11413.0,0.05432380559058116 -11414.0,0.05430504605268294 -11415.0,0.054286292992980746 -11416.0,0.05426754640923751 -11417.0,0.054248806299216856 -11418.0,0.054230072660683255 -11419.0,0.054211345491401906 -11420.0,0.054192624789138825 -11421.0,0.05417391055166072 -11422.0,0.054155202776735155 -11423.0,0.05413650146213041 -11424.0,0.05411780660561558 -11425.0,0.054099118204960474 -11426.0,0.05408043625793571 -11427.0,0.05406176076231268 -11428.0,0.054043091715863543 -11429.0,0.05402442911636118 -11430.0,0.0540057729615793 -11431.0,0.05398712324929236 -11432.0,0.053968479977275614 -11433.0,0.053949843143305004 -11434.0,0.05393121274515731 -11435.0,0.05391258878061007 -11436.0,0.05389397124744157 -11437.0,0.05387536014343092 -11438.0,0.053856755466357875 -11439.0,0.05383815721400307 -11440.0,0.05381956538414787 -11441.0,0.053800979974574434 -11442.0,0.0537824009830656 -11443.0,0.05376382840740506 -11444.0,0.05374526224537724 -11445.0,0.05372670249476735 -11446.0,0.05370814915336131 -11447.0,0.053689602218945864 -11448.0,0.053671061689308484 -11449.0,0.05365252756223746 -11450.0,0.05363399983552175 -11451.0,0.05361547850695116 -11452.0,0.05359696357431623 -11453.0,0.05357845503540826 -11454.0,0.05355995288801933 -11455.0,0.053541457129942245 -11456.0,0.053522967758970606 -11457.0,0.053504484772898764 -11458.0,0.05348600816952186 -11459.0,0.053467537946635724 -11460.0,0.05344907410203702 -11461.0,0.05343061663352314 -11462.0,0.05341216553889226 -11463.0,0.05339372081594326 -11464.0,0.05337528246247585 -11465.0,0.05335685047629046 -11466.0,0.05333842485518831 -11467.0,0.053320005596971316 -11468.0,0.053301592699442214 -11469.0,0.053283186160404485 -11470.0,0.053264785977662384 -11471.0,0.05324639214902085 -11472.0,0.05322800467228567 -11473.0,0.05320962354526333 -11474.0,0.053191248765761125 -11475.0,0.053172880331587076 -11476.0,0.05315451824054993 -11477.0,0.05313616249045925 -11478.0,0.05311781307912532 -11479.0,0.0530994700043592 -11480.0,0.05308113326397268 -11481.0,0.053062802855778315 -11482.0,0.053044478777589436 -11483.0,0.05302616102722014 -11484.0,0.05300784960248519 -11485.0,0.052989544501200206 -11486.0,0.05297124572118152 -11487.0,0.05295295326024623 -11488.0,0.052934667116212156 -11489.0,0.0529163872868979 -11490.0,0.05289811377012281 -11491.0,0.052879846563707 -11492.0,0.05286158566547135 -11493.0,0.0528433310732374 -11494.0,0.052825082784827566 -11495.0,0.052806840798064934 -11496.0,0.0527886051107734 -11497.0,0.052770375720777536 -11498.0,0.05275215262590273 -11499.0,0.0527339358239751 -11500.0,0.05271572531282154 -11501.0,0.05269752109026961 -11502.0,0.052679323154147716 -11503.0,0.05266113150228497 -11504.0,0.05264294613251127 -11505.0,0.05262476704265717 -11506.0,0.05260659423055409 -11507.0,0.05258842769403412 -11508.0,0.05257026743093016 -11509.0,0.05255211343907578 -11510.0,0.05253396571630536 -11511.0,0.052515824260454 -11512.0,0.05249768906935757 -11513.0,0.052479560140852685 -11514.0,0.05246143747277666 -11515.0,0.052443321062967604 -11516.0,0.05242521090926438 -11517.0,0.052407107009506584 -11518.0,0.05238900936153452 -11519.0,0.05237091796318928 -11520.0,0.052352832812312705 -11521.0,0.05233475390674738 -11522.0,0.05231668124433659 -11523.0,0.05229861482292441 -11524.0,0.05228055464035565 -11525.0,0.05226250069447589 -11526.0,0.05224445298313138 -11527.0,0.05222641150416918 -11528.0,0.05220837625543706 -11529.0,0.05219034723478357 -11530.0,0.05217232444005799 -11531.0,0.05215430786911029 -11532.0,0.052136297519791236 -11533.0,0.05211829338995234 -11534.0,0.05210029547744585 -11535.0,0.05208230378012472 -11536.0,0.05206431829584267 -11537.0,0.05204633902245418 -11538.0,0.05202836595781447 -11539.0,0.05201039909977944 -11540.0,0.051992438446205796 -11541.0,0.051974483994950964 -11542.0,0.051956535743873135 -11543.0,0.05193859369083117 -11544.0,0.05192065783368472 -11545.0,0.051902728170294184 -11546.0,0.051884804698520706 -11547.0,0.051866887416226096 -11548.0,0.05184897632127297 -11549.0,0.051831071411524675 -11550.0,0.05181317268484528 -11551.0,0.05179528013909963 -11552.0,0.05177739377215321 -11553.0,0.05175951358187235 -11554.0,0.051741639566124056 -11555.0,0.051723771722776125 -11556.0,0.051705910049697004 -11557.0,0.051688054544755946 -11558.0,0.05167020520582292 -11559.0,0.05165236203076865 -11560.0,0.051634525017464544 -11561.0,0.05161669416378278 -11562.0,0.05159886946759627 -11563.0,0.0515810509267787 -11564.0,0.05156323853920438 -11565.0,0.05154543230274845 -11566.0,0.051527632215286764 -11567.0,0.0515098382746959 -11568.0,0.051492050478853184 -11569.0,0.051474268825636625 -11570.0,0.05145649331292502 -11571.0,0.05143872393859788 -11572.0,0.05142096070053547 -11573.0,0.05140320359661872 -11574.0,0.05138545262472937 -11575.0,0.05136770778274984 -11576.0,0.051349969068563345 -11577.0,0.051332236480053715 -11578.0,0.051314510015105626 -11579.0,0.05129678967160443 -11580.0,0.051279075447436234 -11581.0,0.051261367340487834 -11582.0,0.051243665348646786 -11583.0,0.05122596946980139 -11584.0,0.05120827970184066 -11585.0,0.0511905960426543 -11586.0,0.0511729184901328 -11587.0,0.05115524704216736 -11588.0,0.051137581696649906 -11589.0,0.05111992245147311 -11590.0,0.0511022693045303 -11591.0,0.05108462225371562 -11592.0,0.0510669812969239 -11593.0,0.051049346432050724 -11594.0,0.05103171765699233 -11595.0,0.051014094969645776 -11596.0,0.050996478367908785 -11597.0,0.05097886784967986 -11598.0,0.050961263412858136 -11599.0,0.05094366505534356 -11600.0,0.05092607277503679 -11601.0,0.05090848656983919 -11602.0,0.05089090643765284 -11603.0,0.05087333237638055 -11604.0,0.05085576438392589 -11605.0,0.050838202458193114 -11606.0,0.05082064659708723 -11607.0,0.05080309679851392 -11608.0,0.05078555306037963 -11609.0,0.05076801538059153 -11610.0,0.05075048375705752 -11611.0,0.05073295818768616 -11612.0,0.050715438670386796 -11613.0,0.05069792520306949 -11614.0,0.05068041778364503 -11615.0,0.05066291641002486 -11616.0,0.05064542108012121 -11617.0,0.050627931791847026 -11618.0,0.050610448543115985 -11619.0,0.050592971331842415 -11620.0,0.050575500155941436 -11621.0,0.05055803501332886 -11622.0,0.05054057590192125 -11623.0,0.050523122819635814 -11624.0,0.05050567576439055 -11625.0,0.05048823473410415 -11626.0,0.05047079972669603 -11627.0,0.05045337074008634 -11628.0,0.050435947772195885 -11629.0,0.05041853082094625 -11630.0,0.05040111988425973 -11631.0,0.05038371496005934 -11632.0,0.05036631604626876 -11633.0,0.05034892314081244 -11634.0,0.05033153624161555 -11635.0,0.05031415534660397 -11636.0,0.05029678045370424 -11637.0,0.050279411560843694 -11638.0,0.05026204866595033 -11639.0,0.05024469176695293 -11640.0,0.050227340861780885 -11641.0,0.05020999594836437 -11642.0,0.05019265702463429 -11643.0,0.05017532408852221 -11644.0,0.05015799713796047 -11645.0,0.050140676170882054 -11646.0,0.05012336118522071 -11647.0,0.05010605217891089 -11648.0,0.05008874914988778 -11649.0,0.0500714520960872 -11650.0,0.050054161015445776 -11651.0,0.0500368759059008 -11652.0,0.050019596765390306 -11653.0,0.05000232359185297 -11654.0,0.049985056383228255 -11655.0,0.04996779513745631 -11656.0,0.04995053985247802 -11657.0,0.04993329052623491 -11658.0,0.049916047156669266 -11659.0,0.0498988097417241 -11660.0,0.049881578279343135 -11661.0,0.04986435276747073 -11662.0,0.04984713320405203 -11663.0,0.049829919587032874 -11664.0,0.04981271191435979 -11665.0,0.04979551018398007 -11666.0,0.04977831439384161 -11667.0,0.04976112454189311 -11668.0,0.04974394062608394 -11669.0,0.04972676264436421 -11670.0,0.04970959059468467 -11671.0,0.04969242447499684 -11672.0,0.049675264283252925 -11673.0,0.04965811001740586 -11674.0,0.049640961675409226 -11675.0,0.04962381925521737 -11676.0,0.04960668275478533 -11677.0,0.04958955217206886 -11678.0,0.04957242750502438 -11679.0,0.049555308751609045 -11680.0,0.049538195909780716 -11681.0,0.04952108897749797 -11682.0,0.049503987952720076 -11683.0,0.04948689283340698 -11684.0,0.04946980361751937 -11685.0,0.04945272030301864 -11686.0,0.04943564288786687 -11687.0,0.04941857137002684 -11688.0,0.04940150574746204 -11689.0,0.04938444601813667 -11690.0,0.049367392180015665 -11691.0,0.04935034423106456 -11692.0,0.0493333021692497 -11693.0,0.04931626599253808 -11694.0,0.04929923569889743 -11695.0,0.049282211286296125 -11696.0,0.049265192752703295 -11697.0,0.049248180096088744 -11698.0,0.049231173314423025 -11699.0,0.0492141724056773 -11700.0,0.049197177367823496 -11701.0,0.04918018819883425 -11702.0,0.049163204896682855 -11703.0,0.04914622745934337 -11704.0,0.04912925588479046 -11705.0,0.04911229017099955 -11706.0,0.049095330315946775 -11707.0,0.04907837631760895 -11708.0,0.049061428173963556 -11709.0,0.04904448588298882 -11710.0,0.049027549442663645 -11711.0,0.04901061885096767 -11712.0,0.04899369410588115 -11713.0,0.0489767752053851 -11714.0,0.04895986214746123 -11715.0,0.04894295493009196 -11716.0,0.048926053551260326 -11717.0,0.04890915800895014 -11718.0,0.0488922683011459 -11719.0,0.04887538442583278 -11720.0,0.048858506380996675 -11721.0,0.04884163416462411 -11722.0,0.048824767774702384 -11723.0,0.04880790720921946 -11724.0,0.04879105246616401 -11725.0,0.048774203543525345 -11726.0,0.04875736043929354 -11727.0,0.048740523151459325 -11728.0,0.04872369167801416 -11729.0,0.04870686601695013 -11730.0,0.048690046166260076 -11731.0,0.04867323212393752 -11732.0,0.04865642388797668 -11733.0,0.04863962145637242 -11734.0,0.04862282482712035 -11735.0,0.048606033998216766 -11736.0,0.04858924896765865 -11737.0,0.04857246973344364 -11738.0,0.0485556962935701 -11739.0,0.0485389286460371 -11740.0,0.04852216678884438 -11741.0,0.04850541071999238 -11742.0,0.048488660437482185 -11743.0,0.04847191593931564 -11744.0,0.048455177223495245 -11745.0,0.048438444288024206 -11746.0,0.048421717130906365 -11747.0,0.048404995750146326 -11748.0,0.048388280143749345 -11749.0,0.04837157030972138 -11750.0,0.04835486624606905 -11751.0,0.04833816795079969 -11752.0,0.04832147542192131 -11753.0,0.04830478865744265 -11754.0,0.048288107655373044 -11755.0,0.0482714324137226 -11756.0,0.04825476293050208 -11757.0,0.048238099203722934 -11758.0,0.04822144123139733 -11759.0,0.04820478901153804 -11760.0,0.048188142542158606 -11761.0,0.04817150182127322 -11762.0,0.048154866846896786 -11763.0,0.04813823761704483 -11764.0,0.04812161412973364 -11765.0,0.04810499638298014 -11766.0,0.04808838437480198 -11767.0,0.04807177810321742 -11768.0,0.04805517756624549 -11769.0,0.048038582761905854 -11770.0,0.0480219936882189 -11771.0,0.04800541034320562 -11772.0,0.04798883272488778 -11773.0,0.04797226083128778 -11774.0,0.04795569466042873 -11775.0,0.047939134210334376 -11776.0,0.0479225794790292 -11777.0,0.04790603046453833 -11778.0,0.04788948716488759 -11779.0,0.047872949578103514 -11780.0,0.04785641770221325 -11781.0,0.04783989153524468 -11782.0,0.04782337107522635 -11783.0,0.04780685632018752 -11784.0,0.04779034726815805 -11785.0,0.04777384391716855 -11786.0,0.0477573462652503 -11787.0,0.04774085431043526 -11788.0,0.04772436805075603 -11789.0,0.04770788748424593 -11790.0,0.04769141260893896 -11791.0,0.04767494342286979 -11792.0,0.047658479924073745 -11793.0,0.04764202211058686 -11794.0,0.047625569980445835 -11795.0,0.04760912353168806 -11796.0,0.04759268276235161 -11797.0,0.04757624767047518 -11798.0,0.0475598182540982 -11799.0,0.04754339451126076 -11800.0,0.04752697644000365 -11801.0,0.04751056403836828 -11802.0,0.04749415730439678 -11803.0,0.04747775623613196 -11804.0,0.04746136083161729 -11805.0,0.0474449710888969 -11806.0,0.04742858700601562 -11807.0,0.04741220858101896 -11808.0,0.0473958358119531 -11809.0,0.04737946869686485 -11810.0,0.04736310723380176 -11811.0,0.047346751420812024 -11812.0,0.04733040125594453 -11813.0,0.04731405673724878 -11814.0,0.04729771786277503 -11815.0,0.047281384630574144 -11816.0,0.047265057038697704 -11817.0,0.04724873508519797 -11818.0,0.047232418768127796 -11819.0,0.0472161080855408 -11820.0,0.04719980303549123 -11821.0,0.04718350361603403 -11822.0,0.047167209825224765 -11823.0,0.04715092166111972 -11824.0,0.04713463912177583 -11825.0,0.047118362205250744 -11826.0,0.047102090909602684 -11827.0,0.04708582523289064 -11828.0,0.047069565173174226 -11829.0,0.04705331072851376 -11830.0,0.047037061896970156 -11831.0,0.04702081867660507 -11832.0,0.04700458106548082 -11833.0,0.046988349061660356 -11834.0,0.046972122663207355 -11835.0,0.04695590186818607 -11836.0,0.046939686674661515 -11837.0,0.04692347708069932 -11838.0,0.04690727308436583 -11839.0,0.04689107468372799 -11840.0,0.04687488187685345 -11841.0,0.04685869466181054 -11842.0,0.04684251303666827 -11843.0,0.04682633699949623 -11844.0,0.04681016654836477 -11845.0,0.04679400168134488 -11846.0,0.04677784239650821 -11847.0,0.046761688691927046 -11848.0,0.04674554056567439 -11849.0,0.04672939801582389 -11850.0,0.04671326104044987 -11851.0,0.046697129637627274 -11852.0,0.046681003805431755 -11853.0,0.04666488354193963 -11854.0,0.04664876884522786 -11855.0,0.046632659713374096 -11856.0,0.04661655614445661 -11857.0,0.04660045813655437 -11858.0,0.04658436568774701 -11859.0,0.04656827879611483 -11860.0,0.04655219745973875 -11861.0,0.0465361216767004 -11862.0,0.04652005144508205 -11863.0,0.046503986762966666 -11864.0,0.04648792762843781 -11865.0,0.04647187403957976 -11866.0,0.046455825994477444 -11867.0,0.04643978349121646 -11868.0,0.046423746527883024 -11869.0,0.04640771510256405 -11870.0,0.04639168921334712 -11871.0,0.04637566885832046 -11872.0,0.04635965403557297 -11873.0,0.046343644743194155 -11874.0,0.04632764097927426 -11875.0,0.04631164274190414 -11876.0,0.04629565002917535 -11877.0,0.04627966283918003 -11878.0,0.04626368117001105 -11879.0,0.0462477050197619 -11880.0,0.04623173438652678 -11881.0,0.04621576926840046 -11882.0,0.04619980966347844 -11883.0,0.04618385556985685 -11884.0,0.046167906985632515 -11885.0,0.04615196390890283 -11886.0,0.046136026337765944 -11887.0,0.04612009427032059 -11888.0,0.04610416770466624 -11889.0,0.04608824663890291 -11890.0,0.04607233107113136 -11891.0,0.04605642099945298 -11892.0,0.04604051642196981 -11893.0,0.04602461733678457 -11894.0,0.04600872374200058 -11895.0,0.045992835635721874 -11896.0,0.045976953016053104 -11897.0,0.045961075881099614 -11898.0,0.04594520422896734 -11899.0,0.04592933805776293 -11900.0,0.04591347736559367 -11901.0,0.0458976221505675 -11902.0,0.045881772410792984 -11903.0,0.04586592814437938 -11904.0,0.045850089349436574 -11905.0,0.04583425602407514 -11906.0,0.045818428166406244 -11907.0,0.045802605774541746 -11908.0,0.04578678884659415 -11909.0,0.045770977380676627 -11910.0,0.04575517137490299 -11911.0,0.04573937082738766 -11912.0,0.04572357573624577 -11913.0,0.04570778609959308 -11914.0,0.04569200191554602 -11915.0,0.045676223182221615 -11916.0,0.04566044989773759 -11917.0,0.04564468206021232 -11918.0,0.045628919667764826 -11919.0,0.04561316271851473 -11920.0,0.045597411210582375 -11921.0,0.0455816651420887 -11922.0,0.045565924511155355 -11923.0,0.04555018931590454 -11924.0,0.0455344595544592 -11925.0,0.04551873522494287 -11926.0,0.04550301632547978 -11927.0,0.04548730285419474 -11928.0,0.04547159480921328 -11929.0,0.045455892188661515 -11930.0,0.04544019499066626 -11931.0,0.04542450321335497 -11932.0,0.04540881685485569 -11933.0,0.04539313591329717 -11934.0,0.04537746038680878 -11935.0,0.04536179027352058 -11936.0,0.045346125571563194 -11937.0,0.04533046627906795 -11938.0,0.04531481239416681 -11939.0,0.04529916391499241 -11940.0,0.04528352083967796 -11941.0,0.04526788316635736 -11942.0,0.04525225089316516 -11943.0,0.04523662401823656 -11944.0,0.04522100253970736 -11945.0,0.04520538645571403 -11946.0,0.0451897757643937 -11947.0,0.04517417046388413 -11948.0,0.04515857055232374 -11949.0,0.04514297602785152 -11950.0,0.04512738688860719 -11951.0,0.04511180313273108 -11952.0,0.04509622475836418 -11953.0,0.04508065176364806 -11954.0,0.045065084146725005 -11955.0,0.045049521905737896 -11956.0,0.0450339650388303 -11957.0,0.04501841354414636 -11958.0,0.04500286741983091 -11959.0,0.04498732666402941 -11960.0,0.044971791274887984 -11961.0,0.04495626125055333 -11962.0,0.04494073658917286 -11963.0,0.044925217288894585 -11964.0,0.04490970334786717 -11965.0,0.04489419476423993 -11966.0,0.044878691536162765 -11967.0,0.044863193661786274 -11968.0,0.044847701139261675 -11969.0,0.04483221396674085 -11970.0,0.04481673214237624 -11971.0,0.044801255664321 -11972.0,0.0447857845307289 -11973.0,0.044770318739754365 -11974.0,0.044754858289552404 -11975.0,0.044739403178278715 -11976.0,0.04472395340408961 -11977.0,0.04470850896514208 -11978.0,0.044693069859593655 -11979.0,0.0446776360856026 -11980.0,0.044662207641327764 -11981.0,0.04464678452492868 -11982.0,0.04463136673456543 -11983.0,0.04461595426839881 -11984.0,0.044600547124590224 -11985.0,0.04458514530130171 -11986.0,0.04456974879669597 -11987.0,0.04455435760893627 -11988.0,0.044538971736186574 -11989.0,0.044523591176611456 -11990.0,0.044508215928376144 -11991.0,0.04449284598964645 -11992.0,0.04447748135858887 -11993.0,0.04446212203337052 -11994.0,0.04444676801215916 -11995.0,0.04443141929312313 -11996.0,0.04441607587443146 -11997.0,0.04440073775425378 -11998.0,0.044385404930760396 -11999.0,0.04437007740212218 -12000.0,0.04435475516651067 -12001.0,0.04433943822209805 -12002.0,0.04432412656705712 -12003.0,0.044308820199561325 -12004.0,0.04429351911778469 -12005.0,0.04427822331990192 -12006.0,0.044262932804088356 -12007.0,0.04424764756851996 -12008.0,0.04423236761137327 -12009.0,0.04421709293082553 -12010.0,0.044201823525054564 -12011.0,0.044186559392238874 -12012.0,0.044171300530557525 -12013.0,0.044156046938190266 -12014.0,0.04414079861331745 -12015.0,0.04412555555412008 -12016.0,0.04411031775877974 -12017.0,0.04409508522547868 -12018.0,0.04407985795239978 -12019.0,0.04406463593772655 -12020.0,0.04404941917964307 -12021.0,0.04403420767633413 -12022.0,0.044019001425985096 -12023.0,0.044003800426781974 -12024.0,0.043988604676911416 -12025.0,0.04397341417456064 -12026.0,0.04395822891791755 -12027.0,0.04394304890517066 -12028.0,0.04392787413450912 -12029.0,0.04391270460412265 -12030.0,0.04389754031220166 -12031.0,0.04388238125693716 -12032.0,0.04386722743652079 -12033.0,0.04385207884914479 -12034.0,0.04383693549300206 -12035.0,0.04382179736628611 -12036.0,0.04380666446719108 -12037.0,0.043791536793911685 -12038.0,0.04377641434464334 -12039.0,0.04376129711758204 -12040.0,0.0437461851109244 -12041.0,0.043731078322867704 -12042.0,0.04371597675160977 -12043.0,0.04370088039534912 -12044.0,0.043685789252284855 -12045.0,0.04367070332061675 -12046.0,0.0436556225985451 -12047.0,0.04364054708427093 -12048.0,0.043625476775995826 -12049.0,0.043610411671922034 -12050.0,0.04359535177025236 -12051.0,0.04358029706919028 -12052.0,0.043565247566939885 -12053.0,0.043550203261705896 -12054.0,0.04353516415169359 -12055.0,0.04352013023510894 -12056.0,0.04350510151015852 -12057.0,0.04349007797504951 -12058.0,0.043475059627989684 -12059.0,0.04346004646718748 -12060.0,0.04344503849085194 -12061.0,0.04343003569719272 -12062.0,0.04341503808442011 -12063.0,0.04340004565074498 -12064.0,0.04338505839437884 -12065.0,0.04337007631353384 -12066.0,0.04335509940642274 -12067.0,0.04334012767125885 -12068.0,0.0433251611062562 -12069.0,0.04331019970962937 -12070.0,0.04329524347959359 -12071.0,0.04328029241436466 -12072.0,0.04326534651215904 -12073.0,0.0432504057711938 -12074.0,0.04323547018968664 -12075.0,0.043220539765855805 -12076.0,0.04320561449792023 -12077.0,0.04319069438409944 -12078.0,0.043175779422613574 -12079.0,0.043160869611683396 -12080.0,0.04314596494953025 -12081.0,0.04313106543437613 -12082.0,0.04311617106444363 -12083.0,0.04310128183795599 -12084.0,0.04308639775313698 -12085.0,0.04307151880821107 -12086.0,0.043056645001403306 -12087.0,0.04304177633093936 -12088.0,0.043026912795045495 -12089.0,0.04301205439194859 -12090.0,0.04299720111987617 -12091.0,0.04298235297705635 -12092.0,0.042967509961717824 -12093.0,0.04295267207208994 -12094.0,0.04293783930640266 -12095.0,0.042923011662886555 -12096.0,0.04290818913977275 -12097.0,0.042893371735293055 -12098.0,0.04287855944767986 -12099.0,0.042863752275166166 -12100.0,0.0428489502159856 -12101.0,0.04283415326837235 -12102.0,0.04281936143056127 -12103.0,0.042804574700787794 -12104.0,0.042789793077288 -12105.0,0.04277501655829851 -12106.0,0.042760245142056605 -12107.0,0.042745478826800166 -12108.0,0.0427307176107677 -12109.0,0.042715961492198265 -12110.0,0.04270121046933157 -12111.0,0.04268646454040795 -12112.0,0.04267172370366831 -12113.0,0.04265698795735417 -12114.0,0.042642257299707664 -12115.0,0.04262753172897153 -12116.0,0.04261281124338913 -12117.0,0.042598095841204414 -12118.0,0.042583385520661925 -12119.0,0.042568680280006835 -12120.0,0.04255398011748492 -12121.0,0.04253928503134258 -12122.0,0.04252459501982676 -12123.0,0.04250991008118506 -12124.0,0.04249523021366568 -12125.0,0.04248055541551743 -12126.0,0.04246588568498969 -12127.0,0.042451221020332476 -12128.0,0.04243656141979641 -12129.0,0.042421906881632714 -12130.0,0.042407257404093186 -12131.0,0.042392612985430254 -12132.0,0.042377973623896954 -12133.0,0.04236333931774694 -12134.0,0.0423487100652344 -12135.0,0.042334085864614186 -12136.0,0.04231946671414175 -12137.0,0.04230485261207313 -12138.0,0.04229024355666498 -12139.0,0.042275639546174526 -12140.0,0.04226104057885961 -12141.0,0.042246446652978706 -12142.0,0.04223185776679087 -12143.0,0.042217273918555724 -12144.0,0.04220269510653354 -12145.0,0.04218812132898516 -12146.0,0.04217355258417207 -12147.0,0.04215898887035628 -12148.0,0.04214443018580047 -12149.0,0.04212987652876789 -12150.0,0.04211532789752242 -12151.0,0.042100784290328465 -12152.0,0.04208624570545111 -12153.0,0.04207171214115601 -12154.0,0.042057183595709396 -12155.0,0.04204266006737816 -12156.0,0.0420281415544297 -12157.0,0.04201362805513209 -12158.0,0.04199911956775397 -12159.0,0.04198461609056461 -12160.0,0.041970117621833794 -12161.0,0.041955624159832006 -12162.0,0.04194113570283026 -12163.0,0.041926652249100214 -12164.0,0.041912173796914066 -12165.0,0.04189770034454466 -12166.0,0.04188323189026541 -12167.0,0.04186876843235036 -12168.0,0.041854309969074084 -12169.0,0.04183985649871182 -12170.0,0.04182540801953936 -12171.0,0.041810964529833135 -12172.0,0.0417965260278701 -12173.0,0.041782092511927875 -12174.0,0.04176766398028464 -12175.0,0.041753240431219175 -12176.0,0.04173882186301087 -12177.0,0.04172440827393967 -12178.0,0.04170999966228615 -12179.0,0.04169559602633146 -12180.0,0.04168119736435738 -12181.0,0.04166680367464622 -12182.0,0.041652414955480936 -12183.0,0.041638031205145046 -12184.0,0.04162365242192271 -12185.0,0.04160927860409859 -12186.0,0.041594909749958026 -12187.0,0.04158054585778691 -12188.0,0.04156618692587175 -12189.0,0.04155183295249961 -12190.0,0.04153748393595817 -12191.0,0.041523139874535694 -12192.0,0.04150880076652105 -12193.0,0.04149446661020371 -12194.0,0.04148013740387366 -12195.0,0.04146581314582155 -12196.0,0.04145149383433862 -12197.0,0.04143717946771668 -12198.0,0.041422870044248106 -12199.0,0.04140856556222589 -12200.0,0.04139426601994363 -12201.0,0.04137997141569551 -12202.0,0.04136568174777624 -12203.0,0.041351397014481185 -12204.0,0.041337117214106295 -12205.0,0.0413228423449481 -12206.0,0.04130857240530369 -12207.0,0.041294307393470765 -12208.0,0.041280047307747626 -12209.0,0.04126579214643316 -12210.0,0.041251541907826796 -12211.0,0.0412372965902286 -12212.0,0.04122305619193922 -12213.0,0.04120882071125987 -12214.0,0.041194590146492384 -12215.0,0.04118036449593911 -12216.0,0.041166143757903076 -12217.0,0.04115192793068783 -12218.0,0.04113771701259755 -12219.0,0.041123511001936945 -12220.0,0.04110930989701136 -12221.0,0.0410951136961267 -12222.0,0.04108092239758948 -12223.0,0.04106673599970676 -12224.0,0.04105255450078621 -12225.0,0.04103837789913608 -12226.0,0.04102420619306523 -12227.0,0.04101003938088304 -12228.0,0.040995877460899534 -12229.0,0.04098172043142529 -12230.0,0.04096756829077148 -12231.0,0.04095342103724988 -12232.0,0.04093927866917279 -12233.0,0.04092514118485314 -12234.0,0.040911008582604436 -12235.0,0.040896880860740774 -12236.0,0.04088275801757679 -12237.0,0.040868640051427756 -12238.0,0.04085452696060948 -12239.0,0.04084041874343842 -12240.0,0.040826315398231505 -12241.0,0.040812216923306346 -12242.0,0.040798123316981086 -12243.0,0.040784034577574485 -12244.0,0.040769950703405826 -12245.0,0.04075587169279501 -12246.0,0.04074179754406253 -12247.0,0.04072772825552945 -12248.0,0.040713663825517374 -12249.0,0.04069960425234853 -12250.0,0.04068554953434573 -12251.0,0.04067149966983233 -12252.0,0.04065745465713231 -12253.0,0.040643414494570165 -12254.0,0.04062937918047103 -12255.0,0.04061534871316058 -12256.0,0.04060132309096512 -12257.0,0.04058730231221144 -12258.0,0.040573286375227 -12259.0,0.04055927527833979 -12260.0,0.0405452690198784 -12261.0,0.04053126759817196 -12262.0,0.04051727101155022 -12263.0,0.04050327925834349 -12264.0,0.040489292336882664 -12265.0,0.04047531024549918 -12266.0,0.040461332982525085 -12267.0,0.040447360546293006 -12268.0,0.04043339293513612 -12269.0,0.04041943014738821 -12270.0,0.040405472181383593 -12271.0,0.0403915190354572 -12272.0,0.04037757070794452 -12273.0,0.04036362719718163 -12274.0,0.04034968850150515 -12275.0,0.040335754619252304 -12276.0,0.04032182554876088 -12277.0,0.040307901288369266 -12278.0,0.04029398183641635 -12279.0,0.040280067191241685 -12280.0,0.04026615735118533 -12281.0,0.040252252314587976 -12282.0,0.04023835207979081 -12283.0,0.04022445664513566 -12284.0,0.040210566008964894 -12285.0,0.04019668016962148 -12286.0,0.04018279912544891 -12287.0,0.04016892287479129 -12288.0,0.040155051415993286 -12289.0,0.040141184747400124 -12290.0,0.040127322867357644 -12291.0,0.04011346577421218 -12292.0,0.040099613466310705 -12293.0,0.04008576594200074 -12294.0,0.040071923199630384 -12295.0,0.04005808523754827 -12296.0,0.040044252054103655 -12297.0,0.040030423647646335 -12298.0,0.040016600016526696 -12299.0,0.04000278115909564 -12300.0,0.039988967073704716 -12301.0,0.039975157758705984 -12302.0,0.039961353212452116 -12303.0,0.0399475534332963 -12304.0,0.03993375841959234 -12305.0,0.039919968169694585 -12306.0,0.03990618268195797 -12307.0,0.039892401954737984 -12308.0,0.03987862598639068 -12309.0,0.03986485477527268 -12310.0,0.039851088319741185 -12311.0,0.03983732661815398 -12312.0,0.03982356966886936 -12313.0,0.03980981747024623 -12314.0,0.03979607002064406 -12315.0,0.03978232731842289 -12316.0,0.03976858936194329 -12317.0,0.039754856149566434 -12318.0,0.03974112767965405 -12319.0,0.03972740395056845 -12320.0,0.039713684960672464 -12321.0,0.03969997070832952 -12322.0,0.03968626119190362 -12323.0,0.039672556409759335 -12324.0,0.03965885636026174 -12325.0,0.039645161041776546 -12326.0,0.03963147045267 -12327.0,0.03961778459130891 -12328.0,0.03960410345606068 -12329.0,0.0395904270452932 -12330.0,0.039576755357375 -12331.0,0.03956308839067515 -12332.0,0.03954942614356329 -12333.0,0.03953576861440959 -12334.0,0.039522115801584816 -12335.0,0.03950846770346029 -12336.0,0.03949482431840791 -12337.0,0.039481185644800076 -12338.0,0.03946755168100983 -12339.0,0.03945392242541072 -12340.0,0.03944029787637691 -12341.0,0.03942667803228304 -12342.0,0.03941306289150438 -12343.0,0.039399452452416765 -12344.0,0.039385846713396545 -12345.0,0.03937224567282068 -12346.0,0.03935864932906663 -12347.0,0.03934505768051247 -12348.0,0.03933147072553681 -12349.0,0.03931788846251885 -12350.0,0.03930431088983829 -12351.0,0.03929073800587543 -12352.0,0.039277169809011137 -12353.0,0.03926360629762683 -12354.0,0.039250047470104465 -12355.0,0.03923649332482657 -12356.0,0.039222943860176246 -12357.0,0.03920939907453715 -12358.0,0.03919585896629347 -12359.0,0.039182323533829964 -12360.0,0.039168792775531966 -12361.0,0.03915526668978537 -12362.0,0.03914174527497658 -12363.0,0.03912822852949261 -12364.0,0.039114716451721 -12365.0,0.03910120904004987 -12366.0,0.03908770629286789 -12367.0,0.039074208208564255 -12368.0,0.039060714785528756 -12369.0,0.03904722602215173 -12370.0,0.03903374191682408 -12371.0,0.03902026246793721 -12372.0,0.039006787673883145 -12373.0,0.03899331753305444 -12374.0,0.03897985204384422 -12375.0,0.038966391204646116 -12376.0,0.03895293501385436 -12377.0,0.03893948346986374 -12378.0,0.0389260365710696 -12379.0,0.03891259431586778 -12380.0,0.03889915670265473 -12381.0,0.03888572372982745 -12382.0,0.038872295395783484 -12383.0,0.038858871698920945 -12384.0,0.03884545263763845 -12385.0,0.03883203821033522 -12386.0,0.03881862841541101 -12387.0,0.038805223251266154 -12388.0,0.038791822716301466 -12389.0,0.03877842680891839 -12390.0,0.03876503552751888 -12391.0,0.03875164887050548 -12392.0,0.038738266836281225 -12393.0,0.038724889423249746 -12394.0,0.03871151662981522 -12395.0,0.03869814845438239 -12396.0,0.03868478489535648 -12397.0,0.03867142595114336 -12398.0,0.038658071620149385 -12399.0,0.0386447219007815 -12400.0,0.03863137679144715 -12401.0,0.03861803629055438 -12402.0,0.03860470039651176 -12403.0,0.03859136910772842 -12404.0,0.03857804242261404 -12405.0,0.03856472033957883 -12406.0,0.03855140285703357 -12407.0,0.03853808997338957 -12408.0,0.03852478168705873 -12409.0,0.038511477996453436 -12410.0,0.03849817889998666 -12411.0,0.03848488439607193 -12412.0,0.03847159448312332 -12413.0,0.0384583091595554 -12414.0,0.038445028423783355 -12415.0,0.03843175227422289 -12416.0,0.03841848070929026 -12417.0,0.03840521372740224 -12418.0,0.038391951326976204 -12419.0,0.03837869350643003 -12420.0,0.03836544026418215 -12421.0,0.03835219159865158 -12422.0,0.038338947508257816 -12423.0,0.038325707991420946 -12424.0,0.038312473046561595 -12425.0,0.03829924267210094 -12426.0,0.03828601686646067 -12427.0,0.038272795628063065 -12428.0,0.03825957895533091 -12429.0,0.03824636684668758 -12430.0,0.03823315930055693 -12431.0,0.038219956315363415 -12432.0,0.03820675788953202 -12433.0,0.03819356402148827 -12434.0,0.03818037470965821 -12435.0,0.038167189952468476 -12436.0,0.03815400974834621 -12437.0,0.038140834095719126 -12438.0,0.03812766299301543 -12439.0,0.03811449643866394 -12440.0,0.03810133443109397 -12441.0,0.038088176968735385 -12442.0,0.03807502405001861 -12443.0,0.03806187567337458 -12444.0,0.03804873183723479 -12445.0,0.038035592540031284 -12446.0,0.03802245778019665 -12447.0,0.038009327556163985 -12448.0,0.03799620186636696 -12449.0,0.03798308070923977 -12450.0,0.03796996408321718 -12451.0,0.03795685198673443 -12452.0,0.03794374441822738 -12453.0,0.03793064137613237 -12454.0,0.03791754285888633 -12455.0,0.03790444886492666 -12456.0,0.03789135939269137 -12457.0,0.03787827444061898 -12458.0,0.03786519400714855 -12459.0,0.03785211809071969 -12460.0,0.03783904668977251 -12461.0,0.037825979802747704 -12462.0,0.03781291742808649 -12463.0,0.03779985956423063 -12464.0,0.037786806209622395 -12465.0,0.037773757362704614 -12466.0,0.037760713021920675 -12467.0,0.03774767318571449 -12468.0,0.037734637852530464 -12469.0,0.0377216070208136 -12470.0,0.03770858068900941 -12471.0,0.03769555885556397 -12472.0,0.037682541518923834 -12473.0,0.037669528677536146 -12474.0,0.03765652032984857 -12475.0,0.037643516474309316 -12476.0,0.037630517109367094 -12477.0,0.03761752223347119 -12478.0,0.0376045318450714 -12479.0,0.03759154594261807 -12480.0,0.0375785645245621 -12481.0,0.03756558758935486 -12482.0,0.03755261513544832 -12483.0,0.03753964716129495 -12484.0,0.037526683665347796 -12485.0,0.03751372464606036 -12486.0,0.03750077010188676 -12487.0,0.0374878200312816 -12488.0,0.03747487443270005 -12489.0,0.03746193330459776 -12490.0,0.037448996645430964 -12491.0,0.037436064453656416 -12492.0,0.03742313672773142 -12493.0,0.03741021346611375 -12494.0,0.03739729466726177 -12495.0,0.03738438032963438 -12496.0,0.03737147045169097 -12497.0,0.03735856503189153 -12498.0,0.03734566406869647 -12499.0,0.037332767560566846 -12500.0,0.03731987550596418 -12501.0,0.037306987903350575 -12502.0,0.037294104751188585 -12503.0,0.037281226047941374 -12504.0,0.03726835179207259 -12505.0,0.037255481982046465 -12506.0,0.03724261661632768 -12507.0,0.037229755693381515 -12508.0,0.03721689921167374 -12509.0,0.037204047169670705 -12510.0,0.03719119956583921 -12511.0,0.037178356398646646 -12512.0,0.03716551766656093 -12513.0,0.03715268336805049 -12514.0,0.037139853501584275 -12515.0,0.037127028065631784 -12516.0,0.037114207058663036 -12517.0,0.03710139047914857 -12518.0,0.0370885783255595 -12519.0,0.03707577059636737 -12520.0,0.03706296729004435 -12521.0,0.03705016840506309 -12522.0,0.037037373939896784 -12523.0,0.037024583893019124 -12524.0,0.037011798262904363 -12525.0,0.03699901704802727 -12526.0,0.03698624024686316 -12527.0,0.03697346785788781 -12528.0,0.0369606998795776 -12529.0,0.03694793631040938 -12530.0,0.03693517714886058 -12531.0,0.0369224223934091 -12532.0,0.03690967204253339 -12533.0,0.03689692609471244 -12534.0,0.03688418454842574 -12535.0,0.03687144740215335 -12536.0,0.03685871465437576 -12537.0,0.036845986303574094 -12538.0,0.03683326234822993 -12539.0,0.036820542786825415 -12540.0,0.036807827617843174 -12541.0,0.036795116839766384 -12542.0,0.03678241045107875 -12543.0,0.03676970845026451 -12544.0,0.03675701083580837 -12545.0,0.03674431760619561 -12546.0,0.03673162875991203 -12547.0,0.03671894429544396 -12548.0,0.036706264211278185 -12549.0,0.036693588505902104 -12550.0,0.036680917177803585 -12551.0,0.036668250225471044 -12552.0,0.036655587647393385 -12553.0,0.03664292944206006 -12554.0,0.03663027560796104 -12555.0,0.03661762614358682 -12556.0,0.036604981047428424 -12557.0,0.036592340317977354 -12558.0,0.03657970395372567 -12559.0,0.03656707195316596 -12560.0,0.03655444431479133 -12561.0,0.03654182103709536 -12562.0,0.03652920211857219 -12563.0,0.036516587557716494 -12564.0,0.03650397735302346 -12565.0,0.036491371502988736 -12566.0,0.036478770006108566 -12567.0,0.03646617286087968 -12568.0,0.036453580065799344 -12569.0,0.036440991619365294 -12570.0,0.036428407520075846 -12571.0,0.036415827766429806 -12572.0,0.0364032523569265 -12573.0,0.036390681290065785 -12574.0,0.036378114564347995 -12575.0,0.03636555217827402 -12576.0,0.03635299413034528 -12577.0,0.03634044041906369 -12578.0,0.03632789104293165 -12579.0,0.036315346000452144 -12580.0,0.03630280529012862 -12581.0,0.03629026891046509 -12582.0,0.03627773685996602 -12583.0,0.03626520913713645 -12584.0,0.0362526857404819 -12585.0,0.03624016666850845 -12586.0,0.036227651919722624 -12587.0,0.036215141492631525 -12588.0,0.036202635385742754 -12589.0,0.036190133597564435 -12590.0,0.036177636126605156 -12591.0,0.03616514297137409 -12592.0,0.03615265413038089 -12593.0,0.03614016960213572 -12594.0,0.0361276893851493 -12595.0,0.036115213477932784 -12596.0,0.03610274187899791 -12597.0,0.0360902745868569 -12598.0,0.03607781160002252 -12599.0,0.036065352917008 -12600.0,0.03605289853632711 -12601.0,0.036040448456494144 -12602.0,0.036028002676023914 -12603.0,0.03601556119343169 -12604.0,0.03600312400723332 -12605.0,0.035990691115945134 -12606.0,0.03597826251808399 -12607.0,0.03596583821216722 -12608.0,0.035953418196712716 -12609.0,0.03594100247023885 -12610.0,0.03592859103126452 -12611.0,0.03591618387830915 -12612.0,0.035903781009892624 -12613.0,0.035891382424535385 -12614.0,0.035878988120758376 -12615.0,0.035866598097083056 -12616.0,0.035854212352031366 -12617.0,0.03584183088412578 -12618.0,0.03582945369188928 -12619.0,0.035817080773845385 -12620.0,0.03580471212851805 -12621.0,0.03579234775443181 -12622.0,0.035779987650111686 -12623.0,0.03576763181408322 -12624.0,0.035755280244872414 -12625.0,0.03574293294100584 -12626.0,0.03573058990101056 -12627.0,0.03571825112341414 -12628.0,0.03570591660674463 -12629.0,0.035693586349530626 -12630.0,0.035681260350301225 -12631.0,0.03566893860758602 -12632.0,0.03565662111991513 -12633.0,0.03564430788581914 -12634.0,0.03563199890382919 -12635.0,0.0356196941724769 -12636.0,0.03560739369029443 -12637.0,0.03559509745581438 -12638.0,0.03558280546756993 -12639.0,0.03557051772409472 -12640.0,0.03555823422392294 -12641.0,0.03554595496558921 -12642.0,0.03553367994762874 -12643.0,0.03552140916857719 -12644.0,0.03550914262697078 -12645.0,0.03549688032134615 -12646.0,0.03548462225024054 -12647.0,0.03547236841219162 -12648.0,0.035460118805737614 -12649.0,0.03544787342941725 -12650.0,0.035435632281769706 -12651.0,0.03542339536133472 -12652.0,0.035411162666652514 -12653.0,0.03539893419626384 -12654.0,0.0353867099487099 -12655.0,0.03537448992253243 -12656.0,0.035362274116273684 -12657.0,0.03535006252847642 -12658.0,0.035337855157683846 -12659.0,0.035325652002439735 -12660.0,0.035313453061288344 -12661.0,0.03530125833277443 -12662.0,0.03528906781544323 -12663.0,0.03527688150784051 -12664.0,0.03526469940851254 -12665.0,0.0352525215160061 -12666.0,0.035240347828868424 -12667.0,0.035228178345647294 -12668.0,0.035216013064890986 -12669.0,0.03520385198514826 -12670.0,0.03519169510496841 -12671.0,0.035179542422901174 -12672.0,0.03516739393749685 -12673.0,0.035155249647306194 -12674.0,0.03514310955088052 -12675.0,0.035130973646771556 -12676.0,0.03511884193353159 -12677.0,0.03510671440971341 -12678.0,0.0350945910738703 -12679.0,0.035082471924556005 -12680.0,0.03507035696032481 -12681.0,0.03505824617973149 -12682.0,0.035046139581331334 -12683.0,0.03503403716368008 -12684.0,0.03502193892533402 -12685.0,0.03500984486484991 -12686.0,0.034997754980785035 -12687.0,0.034985669271697155 -12688.0,0.034973587736144514 -12689.0,0.03496151037268589 -12690.0,0.034949437179880534 -12691.0,0.03493736815628822 -12692.0,0.034925303300469175 -12693.0,0.03491324261098416 -12694.0,0.03490118608639443 -12695.0,0.03488913372526173 -12696.0,0.03487708552614829 -12697.0,0.03486504148761684 -12698.0,0.034853001608230634 -12699.0,0.034840965886553416 -12700.0,0.03482893432114937 -12701.0,0.03481690691058324 -12702.0,0.03480488365342024 -12703.0,0.03479286454822611 -12704.0,0.03478084959356701 -12705.0,0.034768838788009675 -12706.0,0.03475683213012129 -12707.0,0.03474482961846956 -12708.0,0.03473283125162268 -12709.0,0.0347208370281493 -12710.0,0.034708846946618625 -12711.0,0.034696861005600314 -12712.0,0.034684879203664545 -12713.0,0.03467290153938196 -12714.0,0.03466092801132371 -12715.0,0.03464895861806145 -12716.0,0.034636993358167334 -12717.0,0.03462503223021396 -12718.0,0.034613075232774466 -12719.0,0.03460112236442247 -12720.0,0.0345891736237321 -12721.0,0.034577229009277934 -12722.0,0.034565288519635064 -12723.0,0.0345533521533791 -12724.0,0.034541419909086095 -12725.0,0.034529491785332656 -12726.0,0.034517567780695806 -12727.0,0.03450564789375311 -12728.0,0.03449373212308262 -12729.0,0.03448182046726288 -12730.0,0.034469912924872885 -12731.0,0.034458009494492174 -12732.0,0.03444611017470075 -12733.0,0.03443421496407913 -12734.0,0.03442232386120826 -12735.0,0.03441043686466965 -12736.0,0.03439855397304526 -12737.0,0.03438667518491756 -12738.0,0.03437480049886947 -12739.0,0.03436292991348444 -12740.0,0.0343510634273464 -12741.0,0.034339201039039785 -12742.0,0.03432734274714945 -12743.0,0.034315488550260814 -12744.0,0.03430363844695976 -12745.0,0.03429179243583265 -12746.0,0.03427995051546636 -12747.0,0.03426811268444821 -12748.0,0.03425627894136604 -12749.0,0.03424444928480817 -12750.0,0.034232623713363435 -12751.0,0.034220802225621086 -12752.0,0.03420898482017093 -12753.0,0.03419717149560324 -12754.0,0.03418536225050877 -12755.0,0.03417355708347875 -12756.0,0.03416175599310492 -12757.0,0.0341499589779795 -12758.0,0.03413816603669519 -12759.0,0.034126377167845175 -12760.0,0.03411459237002312 -12761.0,0.0341028116418232 -12762.0,0.03409103498184005 -12763.0,0.03407926238866882 -12764.0,0.034067493860905095 -12765.0,0.03405572939714499 -12766.0,0.034043968995985094 -12767.0,0.034032212656022486 -12768.0,0.03402046037585469 -12769.0,0.034008712154079766 -12770.0,0.03399696798929623 -12771.0,0.033985227880103115 -12772.0,0.033973491825099865 -12773.0,0.03396175982288648 -12774.0,0.03395003187206342 -12775.0,0.03393830797123163 -12776.0,0.03392658811899252 -12777.0,0.03391487231394799 -12778.0,0.03390316055470045 -12779.0,0.03389145283985278 -12780.0,0.0338797491680083 -12781.0,0.033868049537770874 -12782.0,0.03385635394774481 -12783.0,0.03384466239653492 -12784.0,0.03383297488274649 -12785.0,0.033821291404985264 -12786.0,0.0338096119618575 -12787.0,0.03379793655196993 -12788.0,0.03378626517392977 -12789.0,0.033774597826344684 -12790.0,0.033762934507822855 -12791.0,0.03375127521697294 -12792.0,0.03373961995240408 -12793.0,0.033727968712725855 -12794.0,0.03371632149654838 -12795.0,0.03370467830248222 -12796.0,0.03369303912913845 -12797.0,0.03368140397512856 -12798.0,0.03366977283906459 -12799.0,0.03365814571955901 -12800.0,0.033646522615224814 -12801.0,0.03363490352467545 -12802.0,0.03362328844652481 -12803.0,0.033611677379387334 -12804.0,0.03360007032187789 -12805.0,0.03358846727261186 -12806.0,0.03357686823020506 -12807.0,0.03356527319327382 -12808.0,0.03355368216043493 -12809.0,0.0335420951303057 -12810.0,0.033530512101503825 -12811.0,0.03351893307264756 -12812.0,0.03350735804235562 -12813.0,0.03349578700924719 -12814.0,0.03348421997194192 -12815.0,0.03347265692905994 -12816.0,0.033461097879221864 -12817.0,0.03344954282104881 -12818.0,0.03343799175316231 -12819.0,0.033426444674184416 -12820.0,0.033414901582737654 -12821.0,0.033403362477445006 -12822.0,0.033391827356929964 -12823.0,0.03338029621981644 -12824.0,0.03336876906472887 -12825.0,0.03335724589029214 -12826.0,0.033345726695131646 -12827.0,0.033334211477873195 -12828.0,0.03332270023714313 -12829.0,0.033311192971568225 -12830.0,0.03329968967977578 -12831.0,0.0332881903603935 -12832.0,0.03327669501204961 -12833.0,0.03326520363337281 -12834.0,0.033253716222992266 -12835.0,0.0332422327795376 -12836.0,0.03323075330163891 -12837.0,0.0332192777879268 -12838.0,0.03320780623703232 -12839.0,0.033196338647587004 -12840.0,0.03318487501822283 -12841.0,0.03317341534757228 -12842.0,0.03316195963426831 -12843.0,0.03315050787694434 -12844.0,0.033139060074234235 -12845.0,0.033127616224772366 -12846.0,0.033116176327193575 -12847.0,0.03310474038013317 -12848.0,0.0330933083822269 -12849.0,0.03308188033211102 -12850.0,0.03307045622842226 -12851.0,0.03305903606979781 -12852.0,0.03304761985487531 -12853.0,0.0330362075822929 -12854.0,0.03302479925068917 -12855.0,0.033013394858703214 -12856.0,0.03300199440497454 -12857.0,0.03299059788814317 -12858.0,0.03297920530684957 -12859.0,0.032967816659734715 -12860.0,0.03295643194544002 -12861.0,0.03294505116260735 -12862.0,0.032933674309879056 -12863.0,0.03292230138589799 -12864.0,0.032910932389307444 -12865.0,0.03289956731875115 -12866.0,0.03288820617287336 -12867.0,0.03287684895031876 -12868.0,0.03286549564973255 -12869.0,0.03285414626976031 -12870.0,0.032842800809048174 -12871.0,0.03283145926624271 -12872.0,0.032820121639990964 -12873.0,0.03280878792894042 -12874.0,0.032797458131739045 -12875.0,0.0327861322470353 -12876.0,0.03277481027347807 -12877.0,0.03276349220971675 -12878.0,0.03275217805440114 -12879.0,0.03274086780618157 -12880.0,0.03272956146370881 -12881.0,0.0327182590256341 -12882.0,0.032706960490609116 -12883.0,0.032695665857286046 -12884.0,0.032684375124317516 -12885.0,0.03267308829035664 -12886.0,0.03266180535405695 -12887.0,0.032650526314072496 -12888.0,0.03263925116905776 -12889.0,0.03262797991766773 -12890.0,0.032616712558557776 -12891.0,0.03260544909038382 -12892.0,0.0325941895118022 -12893.0,0.03258293382146975 -12894.0,0.03257168201804371 -12895.0,0.03256043410018185 -12896.0,0.03254919006654237 -12897.0,0.03253794991578394 -12898.0,0.032526713646565696 -12899.0,0.03251548125754722 -12900.0,0.03250425274738857 -12901.0,0.03249302811475028 -12902.0,0.03248180735829334 -12903.0,0.03247059047667917 -12904.0,0.03245937746856969 -12905.0,0.03244816833262726 -12906.0,0.03243696306751474 -12907.0,0.0324257616718954 -12908.0,0.03241456414443299 -12909.0,0.03240337048379175 -12910.0,0.03239218068863635 -12911.0,0.03238099475763191 -12912.0,0.03236981268944405 -12913.0,0.03235863448273882 -12914.0,0.03234746013618275 -12915.0,0.032336289648442824 -12916.0,0.03232512301818647 -12917.0,0.0323139602440816 -12918.0,0.03230280132479657 -12919.0,0.03229164625900023 -12920.0,0.032280495045361825 -12921.0,0.0322693476825511 -12922.0,0.03225820416923828 -12923.0,0.03224706450409402 -12924.0,0.03223592868578942 -12925.0,0.03222479671299607 -12926.0,0.032213668584386006 -12927.0,0.03220254429863174 -12928.0,0.03219142385440619 -12929.0,0.03218030725038278 -12930.0,0.0321691944852354 -12931.0,0.03215808555763838 -12932.0,0.032146980466266475 -12933.0,0.032135879209794944 -12934.0,0.032124781786899495 -12935.0,0.032113688196256276 -12936.0,0.03210259843654192 -12937.0,0.032091512506433474 -12938.0,0.03208043040460848 -12939.0,0.032069352129744925 -12940.0,0.03205827768052127 -12941.0,0.032047207055616374 -12942.0,0.032036140253709613 -12943.0,0.032025077273480806 -12944.0,0.03201401811361022 -12945.0,0.03200296277277856 -12946.0,0.03199191124966701 -12947.0,0.031980863542957205 -12948.0,0.03196981965133126 -12949.0,0.03195877957347168 -12950.0,0.03194774330806148 -12951.0,0.03193671085378412 -12952.0,0.0319256822093235 -12953.0,0.031914657373364 -12954.0,0.03190363634459041 -12955.0,0.03189261912168802 -12956.0,0.031881605703342544 -12957.0,0.031870596088240194 -12958.0,0.03185959027506756 -12959.0,0.031848588262511746 -12960.0,0.03183759004926029 -12961.0,0.031826595634001205 -12962.0,0.03181560501542291 -12963.0,0.031804618192214314 -12964.0,0.031793635163064764 -12965.0,0.03178265592666409 -12966.0,0.03177168048170252 -12967.0,0.03176070882687077 -12968.0,0.03174974096086001 -12969.0,0.031738776882361854 -12970.0,0.031727816590068354 -12971.0,0.031716860082672035 -12972.0,0.03170590735886586 -12973.0,0.03169495841734326 -12974.0,0.031684013256798114 -12975.0,0.03167307187592472 -12976.0,0.03166213427341786 -12977.0,0.03165120044797276 -12978.0,0.031640270398285104 -12979.0,0.031629344123051 -12980.0,0.03161842162096702 -12981.0,0.03160750289073021 -12982.0,0.03159658793103804 -12983.0,0.031585676740588424 -12984.0,0.03157476931807973 -12985.0,0.031563865662210804 -12986.0,0.031552965771680916 -12987.0,0.031542069645189776 -12988.0,0.031531177281437554 -12989.0,0.031520288679124875 -12990.0,0.03150940383695282 -12991.0,0.0314985227536229 -12992.0,0.03148764542783707 -12993.0,0.03147677185829776 -12994.0,0.03146590204370781 -12995.0,0.03145503598277057 -12996.0,0.03144417367418976 -12997.0,0.0314333151166696 -12998.0,0.03142246030891474 -12999.0,0.031411609249630296 -13000.0,0.03140076193752179 -13001.0,0.03138991837129523 -13002.0,0.03137907854965706 -13003.0,0.03136824247131418 -13004.0,0.03135741013497389 -13005.0,0.031346581539344 -13006.0,0.03133575668313272 -13007.0,0.03132493556504874 -13008.0,0.031314118183801185 -13009.0,0.0313033045380996 -13010.0,0.031292494626654 -13011.0,0.03128168844817484 -13012.0,0.03127088600137304 -13013.0,0.03126008728495992 -13014.0,0.031249292297647294 -13015.0,0.031238501038147386 -13016.0,0.031227713505172897 -13017.0,0.03121692969743692 -13018.0,0.031206149613653044 -13019.0,0.031195373252535286 -13020.0,0.03118460061279811 -13021.0,0.0311738316931564 -13022.0,0.03116306649232551 -13023.0,0.031152305009021233 -13024.0,0.031141547241959815 -13025.0,0.031130793189857908 -13026.0,0.031120042851432644 -13027.0,0.031109296225401584 -13028.0,0.031098553310482734 -13029.0,0.03108781410539456 -13030.0,0.031077078608855925 -13031.0,0.03106634681958617 -13032.0,0.03105561873630508 -13033.0,0.03104489435773288 -13034.0,0.03103417368259021 -13035.0,0.031023456709598173 -13036.0,0.031012743437478323 -13037.0,0.031002033864952653 -13038.0,0.030991327990743563 -13039.0,0.030980625813573935 -13040.0,0.03096992733216708 -13041.0,0.030959232545246754 -13042.0,0.030948541451537123 -13043.0,0.03093785404976283 -13044.0,0.03092717033864895 -13045.0,0.03091649031692099 -13046.0,0.030905813983304917 -13047.0,0.030895141336527092 -13048.0,0.030884472375314366 -13049.0,0.030873807098394 -13050.0,0.030863145504493726 -13051.0,0.030852487592341667 -13052.0,0.03084183336066642 -13053.0,0.03083118280819701 -13054.0,0.030820535933662928 -13055.0,0.030809892735794046 -13056.0,0.03079925321332072 -13057.0,0.030788617364973736 -13058.0,0.03077798518948433 -13059.0,0.030767356685584127 -13060.0,0.030756731852005243 -13061.0,0.030746110687480215 -13062.0,0.030735493190742022 -13063.0,0.03072487936052405 -13064.0,0.03071426919556016 -13065.0,0.03070366269458464 -13066.0,0.030693059856332208 -13067.0,0.03068246067953804 -13068.0,0.030671865162937698 -13069.0,0.03066127330526723 -13070.0,0.030650685105263108 -13071.0,0.030640100561662248 -13072.0,0.030629519673201964 -13073.0,0.03061894243862005 -13074.0,0.030608368856654713 -13075.0,0.03059779892604462 -13076.0,0.030587232645528827 -13077.0,0.030576670013846865 -13078.0,0.03056611102973869 -13079.0,0.03055555569194471 -13080.0,0.03054500399920572 -13081.0,0.030534455950262992 -13082.0,0.030523911543858223 -13083.0,0.03051337077873354 -13084.0,0.030502833653631524 -13085.0,0.030492300167295143 -13086.0,0.03048177031846784 -13087.0,0.030471244105893483 -13088.0,0.030460721528316387 -13089.0,0.030450202584481258 -13090.0,0.030439687273133273 -13091.0,0.030429175593018037 -13092.0,0.03041866754288159 -13093.0,0.030408163121470374 -13094.0,0.030397662327531307 -13095.0,0.030387165159811713 -13096.0,0.030376671617059373 -13097.0,0.03036618169802246 -13098.0,0.03035569540144961 -13099.0,0.030345212726089893 -13100.0,0.030334733670692806 -13101.0,0.030324258234008254 -13102.0,0.030313786414786607 -13103.0,0.03030331821177865 -13104.0,0.030292853623735603 -13105.0,0.030282392649409132 -13106.0,0.03027193528755129 -13107.0,0.03026148153691461 -13108.0,0.03025103139625203 -13109.0,0.030240584864316935 -13110.0,0.03023014193986311 -13111.0,0.0302197026216448 -13112.0,0.03020926690841667 -13113.0,0.03019883479893383 -13114.0,0.03018840629195178 -13115.0,0.030177981386226484 -13116.0,0.03016756008051433 -13117.0,0.03015714237357215 -13118.0,0.030146728264157152 -13119.0,0.030136317751027028 -13120.0,0.03012591083293988 -13121.0,0.030115507508654233 -13122.0,0.030105107776929062 -13123.0,0.030094711636523733 -13124.0,0.030084319086198068 -13125.0,0.03007393012471232 -13126.0,0.030063544750827165 -13127.0,0.030053162963303685 -13128.0,0.03004278476090342 -13129.0,0.030032410142388326 -13130.0,0.030022039106520796 -13131.0,0.03001167165206362 -13132.0,0.030001307777780043 -13133.0,0.02999094748243374 -13134.0,0.029980590764788807 -13135.0,0.029970237623609744 -13136.0,0.029959888057661505 -13137.0,0.02994954206570946 -13138.0,0.02993919964651943 -13139.0,0.029928860798857607 -13140.0,0.029918525521490654 -13141.0,0.029908193813185654 -13142.0,0.029897865672710102 -13143.0,0.029887541098831943 -13144.0,0.029877220090319505 -13145.0,0.02986690264594158 -13146.0,0.02985658876446737 -13147.0,0.02984627844466652 -13148.0,0.029835971685309055 -13149.0,0.02982566848516547 -13150.0,0.029815368843006663 -13151.0,0.02980507275760398 -13152.0,0.029794780227729144 -13153.0,0.02978449125215435 -13154.0,0.029774205829652192 -13155.0,0.029763923958995707 -13156.0,0.02975364563895832 -13157.0,0.029743370868313912 -13158.0,0.029733099645836782 -13159.0,0.029722831970301646 -13160.0,0.02971256784048366 -13161.0,0.029702307255158357 -13162.0,0.029692050213101742 -13163.0,0.029681796713090222 -13164.0,0.029671546753900643 -13165.0,0.029661300334310234 -13166.0,0.029651057453096687 -13167.0,0.029640818109038097 -13168.0,0.029630582300913 -13169.0,0.02962035002750031 -13170.0,0.029610121287579408 -13171.0,0.029599896079930077 -13172.0,0.02958967440333254 -13173.0,0.0295794562565674 -13174.0,0.029569241638415716 -13175.0,0.02955903054765896 -13176.0,0.029548822983079037 -13177.0,0.029538618943458234 -13178.0,0.029528418427579296 -13179.0,0.02951822143422537 -13180.0,0.02950802796218004 -13181.0,0.029497838010227304 -13182.0,0.02948765157715155 -13183.0,0.029477468661737626 -13184.0,0.02946728926277078 -13185.0,0.02945711337903671 -13186.0,0.02944694100932146 -13187.0,0.029436772152411573 -13188.0,0.02942660680709397 -13189.0,0.02941644497215601 -13190.0,0.029406286646385435 -13191.0,0.02939613182857045 -13192.0,0.029385980517499657 -13193.0,0.029375832711962088 -13194.0,0.029365688410747156 -13195.0,0.02935554761264474 -13196.0,0.029345410316445112 -13197.0,0.02933527652093897 -13198.0,0.029325146224917435 -13199.0,0.029315019427172014 -13200.0,0.029304896126494662 -13201.0,0.02929477632167775 -13202.0,0.029284660011514068 -13203.0,0.029274547194796784 -13204.0,0.029264437870319536 -13205.0,0.029254332036876343 -13206.0,0.029244229693261677 -13207.0,0.02923413083827037 -13208.0,0.029224035470697716 -13209.0,0.02921394358933941 -13210.0,0.029203855192991582 -13211.0,0.029193770280450726 -13212.0,0.029183688850513808 -13213.0,0.02917361090197818 -13214.0,0.02916353643364163 -13215.0,0.029153465444302324 -13216.0,0.02914339793275888 -13217.0,0.02913333389781031 -13218.0,0.029123273338256057 -13219.0,0.02911321625289598 -13220.0,0.02910316264053031 -13221.0,0.029093112499959748 -13222.0,0.029083065829985377 -13223.0,0.029073022629408717 -13224.0,0.029062982897031665 -13225.0,0.029052946631656563 -13226.0,0.029042913832086164 -13227.0,0.029032884497123632 -13228.0,0.02902285862557252 -13229.0,0.029012836216236827 -13230.0,0.029002817267920956 -13231.0,0.028992801779429724 -13232.0,0.02898278974956834 -13233.0,0.028972781177142446 -13234.0,0.0289627760609581 -13235.0,0.028952774399821756 -13236.0,0.02894277619254031 -13237.0,0.02893278143792102 -13238.0,0.028922790134771597 -13239.0,0.02891280228190015 -13240.0,0.028902817878115217 -13241.0,0.0288928369222257 -13242.0,0.028882859413040966 -13243.0,0.028872885349370762 -13244.0,0.028862914730025273 -13245.0,0.02885294755381505 -13246.0,0.028842983819551093 -13247.0,0.0288330235260448 -13248.0,0.028823066672108 -13249.0,0.028813113256552877 -13250.0,0.028803163278192084 -13251.0,0.028793216735838657 -13252.0,0.028783273628306058 -13253.0,0.02877333395440812 -13254.0,0.02876339771295913 -13255.0,0.028753464902773758 -13256.0,0.0287435355226671 -13257.0,0.02873360957145467 -13258.0,0.028723687047952338 -13259.0,0.028713767950976438 -13260.0,0.028703852279343692 -13261.0,0.028693940031871246 -13262.0,0.028684031207376618 -13263.0,0.028674125804677767 -13264.0,0.028664223822593052 -13265.0,0.028654325259941254 -13266.0,0.028644430115541516 -13267.0,0.028634538388213435 -13268.0,0.028624650076777 -13269.0,0.028614765180052622 -13270.0,0.028604883696861077 -13271.0,0.028595005626023587 -13272.0,0.028585130966361776 -13273.0,0.028575259716697665 -13274.0,0.028565391875853698 -13275.0,0.02855552744265269 -13276.0,0.028545666415917898 -13277.0,0.028535808794472973 -13278.0,0.028525954577141986 -13279.0,0.028516103762749375 -13280.0,0.028506256350120024 -13281.0,0.028496412338079206 -13282.0,0.028486571725452617 -13283.0,0.028476734511066314 -13284.0,0.02846690069374681 -13285.0,0.028457070272320993 -13286.0,0.028447243245616184 -13287.0,0.028437419612460064 -13288.0,0.028427599371680757 -13289.0,0.02841778252210678 -13290.0,0.028407969062567064 -13291.0,0.028398158991890916 -13292.0,0.028388352308908075 -13293.0,0.028378549012448677 -13294.0,0.02836874910134326 -13295.0,0.028358952574422773 -13296.0,0.028349159430518543 -13297.0,0.02833936966846233 -13298.0,0.028329583287086287 -13299.0,0.028319800285222983 -13300.0,0.028310020661705352 -13301.0,0.028300244415366764 -13302.0,0.028290471545040993 -13303.0,0.028280702049562213 -13304.0,0.028270935927764973 -13305.0,0.028261173178484256 -13306.0,0.028251413800555434 -13307.0,0.028241657792814304 -13308.0,0.028231905154097015 -13309.0,0.028222155883240164 -13310.0,0.028212409979080734 -13311.0,0.028202667440456106 -13312.0,0.028192928266204086 -13313.0,0.028183192455162827 -13314.0,0.028173460006170936 -13315.0,0.0281637309180674 -13316.0,0.02815400518969163 -13317.0,0.02814428281988338 -13318.0,0.028134563807482867 -13319.0,0.028124848151330675 -13320.0,0.02811513585026781 -13321.0,0.028105426903135645 -13322.0,0.028095721308775985 -13323.0,0.02808601906603102 -13324.0,0.02807632017374336 -13325.0,0.028066624630755967 -13326.0,0.02805693243591225 -13327.0,0.028047243588056003 -13328.0,0.028037558086031426 -13329.0,0.028027875928683086 -13330.0,0.02801819711485598 -13331.0,0.028008521643395505 -13332.0,0.027998849513147437 -13333.0,0.027989180722957984 -13334.0,0.0279795152716737 -13335.0,0.02796985315814158 -13336.0,0.027960194381209003 -13337.0,0.02795053893972376 -13338.0,0.02794088683253401 -13339.0,0.027931238058488326 -13340.0,0.02792159261643569 -13341.0,0.027911950505225477 -13342.0,0.027902311723707433 -13343.0,0.027892676270731734 -13344.0,0.027883044145148937 -13345.0,0.027873415345810018 -13346.0,0.0278637898715663 -13347.0,0.027854167721269554 -13348.0,0.027844548893771918 -13349.0,0.027834933387925944 -13350.0,0.02782532120258458 -13351.0,0.027815712336601142 -13352.0,0.027806106788829374 -13353.0,0.027796504558123398 -13354.0,0.027786905643337755 -13355.0,0.02777731004332734 -13356.0,0.027767717756947485 -13357.0,0.02775812878305389 -13358.0,0.027748543120502678 -13359.0,0.02773896076815032 -13360.0,0.027729381724853733 -13361.0,0.027719805989470204 -13362.0,0.027710233560857424 -13363.0,0.02770066443787345 -13364.0,0.02769109861937677 -13365.0,0.027681536104226252 -13366.0,0.027671976891281168 -13367.0,0.027662420979401147 -13368.0,0.027652868367446255 -13369.0,0.027643319054276933 -13370.0,0.027633773038754014 -13371.0,0.02762423031973875 -13372.0,0.02761469089609273 -13373.0,0.027605154766677985 -13374.0,0.027595621930356928 -13375.0,0.02758609238599237 -13376.0,0.027576566132447484 -13377.0,0.027567043168585863 -13378.0,0.027557523493271497 -13379.0,0.02754800710536876 -13380.0,0.027538494003742402 -13381.0,0.027528984187257584 -13382.0,0.027519477654779856 -13383.0,0.02750997440517517 -13384.0,0.027500474437309838 -13385.0,0.027490977750050587 -13386.0,0.027481484342264537 -13387.0,0.027471994212819196 -13388.0,0.027462507360582464 -13389.0,0.027453023784422614 -13390.0,0.027443543483208332 -13391.0,0.027434066455808686 -13392.0,0.02742459270109315 -13393.0,0.027415122217931548 -13394.0,0.027405655005194138 -13395.0,0.02739619106175154 -13396.0,0.0273867303864748 -13397.0,0.027377272978235296 -13398.0,0.027367818835904837 -13399.0,0.027358367958355622 -13400.0,0.027348920344460237 -13401.0,0.027339475993091625 -13402.0,0.02733003490312316 -13403.0,0.027320597073428585 -13404.0,0.027311162502882052 -13405.0,0.027301731190358055 -13406.0,0.027292303134731525 -13407.0,0.02728287833487776 -13408.0,0.027273456789672457 -13409.0,0.027264038497991697 -13410.0,0.027254623458711928 -13411.0,0.027245211670710017 -13412.0,0.027235803132863202 -13413.0,0.02722639784404913 -13414.0,0.027216995803145787 -13415.0,0.0272075970090316 -13416.0,0.027198201460585356 -13417.0,0.027188809156686245 -13418.0,0.027179420096213814 -13419.0,0.027170034278048028 -13420.0,0.02716065170106922 -13421.0,0.027151272364158142 -13422.0,0.027141896266195873 -13423.0,0.027132523406063928 -13424.0,0.02712315378264419 -13425.0,0.027113787394818938 -13426.0,0.02710442424147084 -13427.0,0.027095064321482912 -13428.0,0.0270857076337386 -13429.0,0.027076354177121717 -13430.0,0.027067003950516477 -13431.0,0.02705765695280744 -13432.0,0.027048313182879594 -13433.0,0.02703897263961829 -13434.0,0.027029635321909287 -13435.0,0.027020301228638684 -13436.0,0.027010970358693 -13437.0,0.027001642710959138 -13438.0,0.02699231828432438 -13439.0,0.026982997077676377 -13440.0,0.026973679089903183 -13441.0,0.026964364319893228 -13442.0,0.026955052766535346 -13443.0,0.026945744428718704 -13444.0,0.026936439305332904 -13445.0,0.026927137395267912 -13446.0,0.026917838697414077 -13447.0,0.02690854321066214 -13448.0,0.0268992509339032 -13449.0,0.026889961866028766 -13450.0,0.026880676005930717 -13451.0,0.026871393352501334 -13452.0,0.026862113904633236 -13453.0,0.026852837661219466 -13454.0,0.026843564621153438 -13455.0,0.026834294783328955 -13456.0,0.02682502814664017 -13457.0,0.026815764709981652 -13458.0,0.026806504472248343 -13459.0,0.026797247432335573 -13460.0,0.026787993589139022 -13461.0,0.026778742941554787 -13462.0,0.02676949548847933 -13463.0,0.0267602512288095 -13464.0,0.02675101016144254 -13465.0,0.02674177228527603 -13466.0,0.026732537599207965 -13467.0,0.026723306102136725 -13468.0,0.026714077792961064 -13469.0,0.02670485267058009 -13470.0,0.026695630733893326 -13471.0,0.026686411981800662 -13472.0,0.026677196413202382 -13473.0,0.026667984026999107 -13474.0,0.026658774822091884 -13475.0,0.026649568797382117 -13476.0,0.026640365951771612 -13477.0,0.026631166284162507 -13478.0,0.026621969793457365 -13479.0,0.026612776478559107 -13480.0,0.026603586338371055 -13481.0,0.026594399371796865 -13482.0,0.02658521557774061 -13483.0,0.02657603495510673 -13484.0,0.02656685750280005 -13485.0,0.026557683219725774 -13486.0,0.026548512104789455 -13487.0,0.02653934415689705 -13488.0,0.0265301793749549 -13489.0,0.026521017757869723 -13490.0,0.026511859304548576 -13491.0,0.026502704013898936 -13492.0,0.02649355188482865 -13493.0,0.026484402916245937 -13494.0,0.026475257107059377 -13495.0,0.02646611445617795 -13496.0,0.026456974962511003 -13497.0,0.026447838624968273 -13498.0,0.026438705442459843 -13499.0,0.026429575413896195 -13500.0,0.02642044853818819 -13501.0,0.026411324814247055 -13502.0,0.026402204240984408 -13503.0,0.02639308681731221 -13504.0,0.026383972542142826 -13505.0,0.026374861414388995 -13506.0,0.026365753432963834 -13507.0,0.026356648596780802 -13508.0,0.026347546904753775 -13509.0,0.026338448355796983 -13510.0,0.02632935294882505 -13511.0,0.026320260682752936 -13512.0,0.026311171556496014 -13513.0,0.026302085568970013 -13514.0,0.026293002719091053 -13515.0,0.0262839230057756 -13516.0,0.026274846427940514 -13517.0,0.026265772984503027 -13518.0,0.02625670267438076 -13519.0,0.026247635496491662 -13520.0,0.026238571449754097 -13521.0,0.026229510533086794 -13522.0,0.02622045274540885 -13523.0,0.026211398085639746 -13524.0,0.026202346552699308 -13525.0,0.026193298145507762 -13526.0,0.026184252862985702 -13527.0,0.026175210704054104 -13528.0,0.026166171667634276 -13529.0,0.026157135752647945 -13530.0,0.026148102958017186 -13531.0,0.02613907328266447 -13532.0,0.026130046725512595 -13533.0,0.02612102328548477 -13534.0,0.02611200296150457 -13535.0,0.02610298575249594 -13536.0,0.026093971657383173 -13537.0,0.026084960675090967 -13538.0,0.026075952804544375 -13539.0,0.026066948044668824 -13540.0,0.026057946394390123 -13541.0,0.02604894785263442 -13542.0,0.026039952418328263 -13543.0,0.026030960090398562 -13544.0,0.026021970867772616 -13545.0,0.026012984749378045 -13546.0,0.026004001734142884 -13547.0,0.02599502182099553 -13548.0,0.02598604500886475 -13549.0,0.025977071296679657 -13550.0,0.02596810068336976 -13551.0,0.025959133167864933 -13552.0,0.02595016874909543 -13553.0,0.025941207425991833 -13554.0,0.02593224919748514 -13555.0,0.025923294062506694 -13556.0,0.025914342019988223 -13557.0,0.025905393068861797 -13558.0,0.025896447208059878 -13559.0,0.02588750443651529 -13560.0,0.02587856475316123 -13561.0,0.025869628156931265 -13562.0,0.025860694646759306 -13563.0,0.025851764221579657 -13564.0,0.02584283688032699 -13565.0,0.02583391262193634 -13566.0,0.025824991445343094 -13567.0,0.02581607334948303 -13568.0,0.025807158333292283 -13569.0,0.025798246395707367 -13570.0,0.02578933753566513 -13571.0,0.025780431752102824 -13572.0,0.02577152904395805 -13573.0,0.025762629410168797 -13574.0,0.025753732849673375 -13575.0,0.025744839361410504 -13576.0,0.025735948944319256 -13577.0,0.025727061597339066 -13578.0,0.02571817731940975 -13579.0,0.025709296109471463 -13580.0,0.02570041796646474 -13581.0,0.025691542889330496 -13582.0,0.02568267087701 -13583.0,0.02567380192844487 -13584.0,0.025664936042577115 -13585.0,0.025656073218349094 -13586.0,0.025647213454703558 -13587.0,0.02563835675058357 -13588.0,0.025629503104932606 -13589.0,0.025620652516694487 -13590.0,0.025611804984813417 -13591.0,0.025602960508233928 -13592.0,0.025594119085900948 -13593.0,0.025585280716759758 -13594.0,0.02557644539975602 -13595.0,0.02556761313383572 -13596.0,0.025558783917945242 -13597.0,0.025549957751031332 -13598.0,0.025541134632041086 -13599.0,0.025532314559921988 -13600.0,0.025523497533621837 -13601.0,0.025514683552088843 -13602.0,0.02550587261427156 -13603.0,0.02549706471911892 -13604.0,0.025488259865580183 -13605.0,0.025479458052605004 -13606.0,0.025470659279143392 -13607.0,0.02546186354414573 -13608.0,0.025453070846562724 -13609.0,0.025444281185345485 -13610.0,0.02543549455944547 -13611.0,0.025426710967814504 -13612.0,0.02541793040940475 -13613.0,0.025409152883168768 -13614.0,0.025400378388059457 -13615.0,0.025391606923030087 -13616.0,0.025382838487034296 -13617.0,0.025374073079026047 -13618.0,0.025365310697959706 -13619.0,0.02535655134278999 -13620.0,0.02534779501247197 -13621.0,0.025339041705961067 -13622.0,0.025330291422213085 -13623.0,0.02532154416018418 -13624.0,0.025312799918830876 -13625.0,0.025304058697110027 -13626.0,0.025295320493978878 -13627.0,0.02528658530839503 -13628.0,0.025277853139316447 -13629.0,0.025269123985701424 -13630.0,0.025260397846508645 -13631.0,0.02525167472069715 -13632.0,0.02524295460722634 -13633.0,0.025234237505055948 -13634.0,0.0252255234131461 -13635.0,0.025216812330457267 -13636.0,0.025208104255950284 -13637.0,0.025199399188586345 -13638.0,0.025190697127326984 -13639.0,0.025181998071134117 -13640.0,0.025173302018970008 -13641.0,0.025164608969797296 -13642.0,0.025155918922578936 -13643.0,0.02514723187627829 -13644.0,0.025138547829859043 -13645.0,0.025129866782285275 -13646.0,0.02512118873252137 -13647.0,0.025112513679532114 -13648.0,0.025103841622282637 -13649.0,0.025095172559738435 -13650.0,0.025086506490865332 -13651.0,0.02507784341462954 -13652.0,0.025069183329997618 -13653.0,0.02506052623593648 -13654.0,0.025051872131413404 -13655.0,0.025043221015396005 -13656.0,0.02503457288685227 -13657.0,0.02502592774475055 -13658.0,0.025017285588059546 -13659.0,0.025008646415748292 -13660.0,0.02500001022678621 -13661.0,0.024991377020143066 -13662.0,0.02498274679478899 -13663.0,0.02497411954969444 -13664.0,0.024965495283830255 -13665.0,0.02495687399616763 -13666.0,0.02494825568567811 -13667.0,0.02493964035133358 -13668.0,0.024931027992106298 -13669.0,0.024922418606968876 -13670.0,0.02491381219489429 -13671.0,0.02490520875485583 -13672.0,0.024896608285827182 -13673.0,0.024888010786782374 -13674.0,0.024879416256695788 -13675.0,0.024870824694542167 -13676.0,0.024862236099296577 -13677.0,0.024853650469934478 -13678.0,0.024845067805431664 -13679.0,0.024836488104764298 -13680.0,0.02482791136690886 -13681.0,0.024819337590842216 -13682.0,0.024810766775541584 -13683.0,0.024802198919984534 -13684.0,0.024793634023148964 -13685.0,0.024785072084013156 -13686.0,0.02477651310155573 -13687.0,0.024767957074755674 -13688.0,0.024759404002592297 -13689.0,0.024750853884045288 -13690.0,0.02474230671809468 -13691.0,0.024733762503720856 -13692.0,0.02472522123990457 -13693.0,0.02471668292562689 -13694.0,0.024708147559869262 -13695.0,0.024699615141613486 -13696.0,0.02469108566984171 -13697.0,0.024682559143536415 -13698.0,0.02467403556168046 -13699.0,0.024665514923257036 -13700.0,0.024656997227249712 -13701.0,0.024648482472642362 -13702.0,0.024639970658419254 -13703.0,0.024631461783564984 -13704.0,0.02462295584706452 -13705.0,0.024614452847903145 -13706.0,0.024605952785066523 -13707.0,0.024597455657540658 -13708.0,0.024588961464311915 -13709.0,0.02458047020436698 -13710.0,0.024571981876692912 -13711.0,0.02456349648027712 -13712.0,0.02455501401410736 -13713.0,0.024546534477171745 -13714.0,0.024538057868458703 -13715.0,0.02452958418695705 -13716.0,0.024521113431655937 -13717.0,0.024512645601544876 -13718.0,0.024504180695613696 -13719.0,0.024495718712852603 -13720.0,0.024487259652252145 -13721.0,0.024478803512803234 -13722.0,0.024470350293497086 -13723.0,0.024461899993325306 -13724.0,0.024453452611279836 -13725.0,0.024445008146352976 -13726.0,0.02443656659753734 -13727.0,0.024428127963825923 -13728.0,0.02441969224421206 -13729.0,0.024411259437689427 -13730.0,0.02440282954325207 -13731.0,0.02439440255989433 -13732.0,0.024385978486610956 -13733.0,0.024377557322397006 -13734.0,0.02436913906624791 -13735.0,0.024360723717159413 -13736.0,0.02435231127412763 -13737.0,0.02434390173614902 -13738.0,0.024335495102220404 -13739.0,0.024327091371338903 -13740.0,0.024318690542502023 -13741.0,0.024310292614707612 -13742.0,0.024301897586953863 -13743.0,0.024293505458239297 -13744.0,0.024285116227562797 -13745.0,0.024276729893923595 -13746.0,0.02426834645632127 -13747.0,0.024259965913755715 -13748.0,0.024251588265227206 -13749.0,0.024243213509736353 -13750.0,0.024234841646284106 -13751.0,0.024226472673871773 -13752.0,0.024218106591500976 -13753.0,0.024209743398173715 -13754.0,0.02420138309289232 -13755.0,0.024193025674659478 -13756.0,0.02418467114247819 -13757.0,0.02417631949535183 -13758.0,0.024167970732284105 -13759.0,0.02415962485227909 -13760.0,0.024151281854341147 -13761.0,0.024142941737475037 -13762.0,0.02413460450068584 -13763.0,0.024126270142979 -13764.0,0.02411793866336026 -13765.0,0.024109610060835757 -13766.0,0.02410128433441194 -13767.0,0.024092961483095615 -13768.0,0.024084641505893938 -13769.0,0.02407632440181437 -13770.0,0.024068010169864755 -13771.0,0.024059698809053263 -13772.0,0.024051390318388426 -13773.0,0.024043084696879075 -13774.0,0.024034781943534422 -13775.0,0.02402648205736401 -13776.0,0.024018185037377734 -13777.0,0.0240098908825858 -13778.0,0.02400159959199878 -13779.0,0.02399331116462759 -13780.0,0.023985025599483487 -13781.0,0.023976742895578045 -13782.0,0.02396846305192321 -13783.0,0.023960186067531256 -13784.0,0.023951911941414807 -13785.0,0.0239436406725868 -13786.0,0.023935372260060546 -13787.0,0.02392710670284968 -13788.0,0.023918843999968187 -13789.0,0.02391058415043039 -13790.0,0.023902327153250934 -13791.0,0.023894073007444828 -13792.0,0.023885821712027407 -13793.0,0.023877573266014373 -13794.0,0.02386932766842172 -13795.0,0.023861084918265815 -13796.0,0.023852845014563365 -13797.0,0.023844607956331414 -13798.0,0.023836373742587326 -13799.0,0.023828142372348825 -13800.0,0.02381991384463397 -13801.0,0.02381168815846117 -13802.0,0.023803465312849135 -13803.0,0.023795245306816953 -13804.0,0.02378702813938404 -13805.0,0.023778813809570143 -13806.0,0.023770602316395367 -13807.0,0.023762393658880117 -13808.0,0.02375418783604517 -13809.0,0.023745984846911632 -13810.0,0.023737784690500956 -13811.0,0.023729587365834904 -13812.0,0.023721392871935608 -13813.0,0.023713201207825517 -13814.0,0.02370501237252744 -13815.0,0.02369682636506449 -13816.0,0.023688643184460144 -13817.0,0.023680462829738205 -13818.0,0.02367228529992283 -13819.0,0.023664110594038484 -13820.0,0.023655938711109985 -13821.0,0.02364776965016249 -13822.0,0.0236396034102215 -13823.0,0.023631439990312825 -13824.0,0.02362327938946264 -13825.0,0.023615121606697435 -13826.0,0.023606966641044055 -13827.0,0.023598814491529677 -13828.0,0.023590665157181792 -13829.0,0.023582518637028253 -13830.0,0.02357437493009724 -13831.0,0.02356623403541728 -13832.0,0.0235580959520172 -13833.0,0.023549960678926195 -13834.0,0.02354182821517379 -13835.0,0.02353369855978985 -13836.0,0.023525571711804544 -13837.0,0.023517447670248413 -13838.0,0.023509326434152315 -13839.0,0.023501208002547454 -13840.0,0.023493092374465348 -13841.0,0.023484979548937863 -13842.0,0.0234768695249972 -13843.0,0.023468762301675897 -13844.0,0.023460657878006826 -13845.0,0.02345255625302317 -13846.0,0.02344445742575848 -13847.0,0.023436361395246613 -13848.0,0.023428268160521792 -13849.0,0.023420177720618527 -13850.0,0.023412090074571703 -13851.0,0.023404005221416516 -13852.0,0.023395923160188518 -13853.0,0.023387843889923553 -13854.0,0.023379767409657838 -13855.0,0.023371693718427906 -13856.0,0.023363622815270633 -13857.0,0.0233555546992232 -13858.0,0.02334748936932315 -13859.0,0.023339426824608347 -13860.0,0.023331367064117 -13861.0,0.023323310086887615 -13862.0,0.023315255891959066 -13863.0,0.023307204478370546 -13864.0,0.02329915584516158 -13865.0,0.023291109991372037 -13866.0,0.02328306691604208 -13867.0,0.023275026618212243 -13868.0,0.023266989096923374 -13869.0,0.023258954351216665 -13870.0,0.023250922380133616 -13871.0,0.023242893182716075 -13872.0,0.023234866758006217 -13873.0,0.023226843105046562 -13874.0,0.023218822222879926 -13875.0,0.023210804110549484 -13876.0,0.023202788767098737 -13877.0,0.02319477619157152 -13878.0,0.02318676638301197 -13879.0,0.023178759340464587 -13880.0,0.02317075506297419 -13881.0,0.023162753549585927 -13882.0,0.023154754799345284 -13883.0,0.023146758811298053 -13884.0,0.023138765584490375 -13885.0,0.023130775117968717 -13886.0,0.023122787410779888 -13887.0,0.023114802461970993 -13888.0,0.023106820270589492 -13889.0,0.02309884083568317 -13890.0,0.023090864156300153 -13891.0,0.02308289023148885 -13892.0,0.02307491906029805 -13893.0,0.02306695064177685 -13894.0,0.02305898497497468 -13895.0,0.023051022058941276 -13896.0,0.023043061892726733 -13897.0,0.023035104475381457 -13898.0,0.023027149805956198 -13899.0,0.023019197883502006 -13900.0,0.023011248707070275 -13901.0,0.023003302275712737 -13902.0,0.022995358588481434 -13903.0,0.022987417644428756 -13904.0,0.022979479442607382 -13905.0,0.022971543982070356 -13906.0,0.022963611261871034 -13907.0,0.02295568128106311 -13908.0,0.022947754038700575 -13909.0,0.022939829533837774 -13910.0,0.022931907765529377 -13911.0,0.022923988732830386 -13912.0,0.02291607243479609 -13913.0,0.02290815887048215 -13914.0,0.02290024803894453 -13915.0,0.022892339939239538 -13916.0,0.022884434570423776 -13917.0,0.0228765319315542 -13918.0,0.02286863202168808 -13919.0,0.022860734839883025 -13920.0,0.022852840385196957 -13921.0,0.022844948656688107 -13922.0,0.022837059653415065 -13923.0,0.022829173374436726 -13924.0,0.02282128981881233 -13925.0,0.022813408985601396 -13926.0,0.022805530873863816 -13927.0,0.022797655482659784 -13928.0,0.02278978281104984 -13929.0,0.022781912858094805 -13930.0,0.022774045622855864 -13931.0,0.022766181104394514 -13932.0,0.02275831930177258 -13933.0,0.022750460214052196 -13934.0,0.022742603840295833 -13935.0,0.022734750179566283 -13936.0,0.022726899230926672 -13937.0,0.02271905099344042 -13938.0,0.0227112054661713 -13939.0,0.0227033626481834 -13940.0,0.022695522538541124 -13941.0,0.022687685136309216 -13942.0,0.022679850440552714 -13943.0,0.022672018450337 -13944.0,0.022664189164727778 -13945.0,0.022656362582791082 -13946.0,0.02264853870359324 -13947.0,0.022640717526200924 -13948.0,0.02263289904968113 -13949.0,0.022625083273101178 -13950.0,0.022617270195528682 -13951.0,0.022609459816031612 -13952.0,0.022601652133678245 -13953.0,0.02259384714753719 -13954.0,0.022586044856677354 -13955.0,0.022578245260167985 -13956.0,0.022570448357078648 -13957.0,0.022562654146479233 -13958.0,0.022554862627439956 -13959.0,0.022547073799031328 -13960.0,0.022539287660324203 -13961.0,0.022531504210389755 -13962.0,0.022523723448299487 -13963.0,0.022515945373125186 -13964.0,0.022508169983938998 -13965.0,0.022500397279813376 -13966.0,0.0224926272598211 -13967.0,0.022484859923035245 -13968.0,0.022477095268529233 -13969.0,0.0224693332953768 -13970.0,0.02246157400265201 -13971.0,0.02245381738942921 -13972.0,0.022446063454783106 -13973.0,0.022438312197788714 -13974.0,0.02243056361752137 -13975.0,0.02242281771305671 -13976.0,0.022415074483470708 -13977.0,0.022407333927839654 -13978.0,0.022399596045240163 -13979.0,0.022391860834749165 -13980.0,0.022384128295443888 -13981.0,0.02237639842640191 -13982.0,0.022368671226701105 -13983.0,0.022360946695419694 -13984.0,0.02235322483163617 -13985.0,0.02234550563442939 -13986.0,0.022337789102878498 -13987.0,0.022330075236062983 -13988.0,0.02232236403306262 -13989.0,0.022314655492957528 -13990.0,0.022306949614828132 -13991.0,0.022299246397755185 -13992.0,0.022291545840819736 -13993.0,0.022283847943103167 -13994.0,0.022276152703687182 -13995.0,0.022268460121653788 -13996.0,0.022260770196085335 -13997.0,0.02225308292606444 -13998.0,0.02224539831067409 -13999.0,0.022237716348997554 -14000.0,0.02223003704011845 -14001.0,0.022222360383120667 -14002.0,0.022214686377088448 -14003.0,0.022207015021106336 -14004.0,0.02219934631425921 -14005.0,0.022191680255632226 -14006.0,0.02218401684431089 -14007.0,0.022176356079381013 -14008.0,0.02216869795992873 -14009.0,0.022161042485040465 -14010.0,0.022153389653802986 -14011.0,0.022145739465303363 -14012.0,0.022138091918628987 -14013.0,0.022130447012867573 -14014.0,0.022122804747107115 -14015.0,0.02211516512043596 -14016.0,0.022107528131942753 -14017.0,0.022099893780716473 -14018.0,0.022092262065846368 -14019.0,0.022084632986422048 -14020.0,0.022077006541533415 -14021.0,0.022069382730270704 -14022.0,0.02206176155172443 -14023.0,0.022054143004985444 -14024.0,0.02204652708914492 -14025.0,0.022038913803294334 -14026.0,0.022031303146525467 -14027.0,0.022023695117930425 -14028.0,0.022016089716601628 -14029.0,0.02200848694163182 -14030.0,0.02200088679211402 -14031.0,0.0219932892671416 -14032.0,0.02198569436580823 -14033.0,0.021978102087207893 -14034.0,0.021970512430434894 -14035.0,0.021962925394583825 -14036.0,0.021955340978749616 -14037.0,0.0219477591820275 -14038.0,0.02194018000351304 -14039.0,0.021932603442302072 -14040.0,0.021925029497490773 -14041.0,0.021917458168175634 -14042.0,0.021909889453453454 -14043.0,0.021902323352421326 -14044.0,0.021894759864176674 -14045.0,0.021887198987817234 -14046.0,0.021879640722441057 -14047.0,0.021872085067146475 -14048.0,0.021864532021032168 -14049.0,0.021856981583197106 -14050.0,0.021849433752740583 -14051.0,0.021841888528762204 -14052.0,0.02183434591036186 -14053.0,0.02182680589663978 -14054.0,0.021819268486696502 -14055.0,0.021811733679632867 -14056.0,0.021804201474550016 -14057.0,0.02179667187054942 -14058.0,0.021789144866732852 -14059.0,0.021781620462202406 -14060.0,0.02177409865606045 -14061.0,0.021766579447409704 -14062.0,0.021759062835353178 -14063.0,0.02175154881899421 -14064.0,0.021744037397436404 -14065.0,0.021736528569783718 -14066.0,0.0217290223351404 -14067.0,0.021721518692611026 -14068.0,0.021714017641300442 -14069.0,0.021706519180313837 -14070.0,0.021699023308756702 -14071.0,0.021691530025734835 -14072.0,0.021684039330354347 -14073.0,0.02167655122172164 -14074.0,0.02166906569894344 -14075.0,0.021661582761126782 -14076.0,0.021654102407379014 -14077.0,0.021646624636807766 -14078.0,0.02163914944852101 -14079.0,0.021631676841627 -14080.0,0.021624206815234324 -14081.0,0.02161673936845184 -14082.0,0.021609274500388752 -14083.0,0.02160181221015455 -14084.0,0.021594352496859048 -14085.0,0.021586895359612338 -14086.0,0.021579440797524847 -14087.0,0.0215719888097073 -14088.0,0.021564539395270733 -14089.0,0.02155709255332649 -14090.0,0.021549648282986195 -14091.0,0.02154220658336182 -14092.0,0.021534767453565615 -14093.0,0.02152733089271016 -14094.0,0.02151989689990831 -14095.0,0.02151246547427325 -14096.0,0.02150503661491847 -14097.0,0.021497610320957764 -14098.0,0.021490186591505214 -14099.0,0.021482765425675232 -14100.0,0.02147534682258253 -14101.0,0.021467930781342126 -14102.0,0.021460517301069328 -14103.0,0.021453106380879765 -14104.0,0.021445698019889374 -14105.0,0.0214382922172144 -14106.0,0.021430888971971363 -14107.0,0.02142348828327712 -14108.0,0.021416090150248823 -14109.0,0.021408694572003933 -14110.0,0.021401301547660213 -14111.0,0.021393911076335714 -14112.0,0.02138652315714882 -14113.0,0.0213791377892182 -14114.0,0.021371754971662847 -14115.0,0.021364374703602022 -14116.0,0.021356996984155326 -14117.0,0.021349621812442647 -14118.0,0.021342249187584195 -14119.0,0.02133487910870045 -14120.0,0.02132751157491222 -14121.0,0.021320146585340614 -14122.0,0.021312784139107057 -14123.0,0.021305424235333235 -14124.0,0.021298066873141182 -14125.0,0.021290712051653216 -14126.0,0.02128335976999196 -14127.0,0.02127601002728035 -14128.0,0.021268662822641598 -14129.0,0.02126131815519924 -14130.0,0.021253976024077116 -14131.0,0.021246636428399374 -14132.0,0.02123929936729043 -14133.0,0.02123196483987504 -14134.0,0.021224632845278243 -14135.0,0.0212173033826254 -14136.0,0.02120997645104214 -14137.0,0.02120265204965442 -14138.0,0.021195330177588494 -14139.0,0.021188010833970924 -14140.0,0.02118069401792855 -14141.0,0.02117337972858854 -14142.0,0.021166067965078344 -14143.0,0.021158758726525742 -14144.0,0.02115145201205877 -14145.0,0.021144147820805797 -14146.0,0.021136846151895494 -14147.0,0.02112954700445682 -14148.0,0.02112225037761905 -14149.0,0.021114956270511732 -14150.0,0.02110766468226474 -14151.0,0.021100375612008244 -14152.0,0.021093089058872715 -14153.0,0.021085805021988906 -14154.0,0.021078523500487893 -14155.0,0.021071244493501045 -14156.0,0.021063968000160034 -14157.0,0.021056694019596815 -14158.0,0.021049422550943657 -14159.0,0.021042153593333134 -14160.0,0.02103488714589812 -14161.0,0.021027623207771757 -14162.0,0.021020361778087523 -14163.0,0.021013102855979186 -14164.0,0.021005846440580806 -14165.0,0.020998592531026754 -14166.0,0.020991341126451676 -14167.0,0.020984092225990538 -14168.0,0.0209768458287786 -14169.0,0.02096960193395143 -14170.0,0.020962360540644865 -14171.0,0.02095512164799507 -14172.0,0.020947885255138497 -14173.0,0.020940651361211905 -14174.0,0.020933419965352328 -14175.0,0.020926191066697117 -14176.0,0.020918964664383925 -14177.0,0.020911740757550697 -14178.0,0.02090451934533566 -14179.0,0.020897300426877357 -14180.0,0.020890084001314625 -14181.0,0.020882870067786607 -14182.0,0.020875658625432718 -14183.0,0.02086844967339269 -14184.0,0.020861243210806547 -14185.0,0.020854039236814618 -14186.0,0.020846837750557522 -14187.0,0.02083963875117616 -14188.0,0.020832442237811753 -14189.0,0.02082524820960581 -14190.0,0.02081805666570014 -14191.0,0.020810867605236833 -14192.0,0.02080368102735829 -14193.0,0.02079649693120721 -14194.0,0.020789315315926586 -14195.0,0.02078213618065969 -14196.0,0.02077495952455011 -14197.0,0.020767785346741726 -14198.0,0.02076061364637872 -14199.0,0.020753444422605533 -14200.0,0.02074627767456695 -14201.0,0.02073911340140803 -14202.0,0.020731951602274114 -14203.0,0.020724792276310876 -14204.0,0.020717635422664235 -14205.0,0.02071048104048044 -14206.0,0.020703329128906028 -14207.0,0.020696179687087833 -14208.0,0.020689032714172967 -14209.0,0.020681888209308847 -14210.0,0.020674746171643197 -14211.0,0.020667606600324025 -14212.0,0.02066046949449962 -14213.0,0.02065333485331858 -14214.0,0.0206462026759298 -14215.0,0.02063907296148247 -14216.0,0.02063194570912605 -14217.0,0.020624820918010316 -14218.0,0.02061769858728534 -14219.0,0.020610578716101478 -14220.0,0.020603461303609374 -14221.0,0.020596346348959974 -14222.0,0.02058923385130452 -14223.0,0.02058212380979454 -14224.0,0.02057501622358187 -14225.0,0.020567911091818606 -14226.0,0.02056080841365717 -14227.0,0.02055370818825026 -14228.0,0.020546610414750883 -14229.0,0.02053951509231231 -14230.0,0.020532422220088123 -14231.0,0.020525331797232198 -14232.0,0.020518243822898713 -14233.0,0.0205111582962421 -14234.0,0.020504075216417113 -14235.0,0.020496994582578802 -14236.0,0.020489916393882503 -14237.0,0.020482840649483823 -14238.0,0.020475767348538686 -14239.0,0.020468696490203296 -14240.0,0.020461628073634153 -14241.0,0.020454562097988058 -14242.0,0.02044749856242207 -14243.0,0.02044043746609357 -14244.0,0.02043337880816022 -14245.0,0.02042632258777999 -14246.0,0.020419268804111098 -14247.0,0.020412217456312092 -14248.0,0.020405168543541793 -14249.0,0.02039812206495933 -14250.0,0.020391078019724094 -14251.0,0.020384036406995786 -14252.0,0.020376997225934394 -14253.0,0.020369960475700208 -14254.0,0.02036292615545377 -14255.0,0.02035589426435595 -14256.0,0.020348864801567897 -14257.0,0.02034183776625105 -14258.0,0.020334813157567123 -14259.0,0.020327790974678135 -14260.0,0.020320771216746396 -14261.0,0.020313753882934497 -14262.0,0.02030673897240533 -14263.0,0.020299726484322052 -14264.0,0.020292716417848133 -14265.0,0.020285708772147318 -14266.0,0.020278703546383663 -14267.0,0.02027170073972147 -14268.0,0.020264700351325368 -14269.0,0.020257702380360263 -14270.0,0.020250706825991355 -14271.0,0.020243713687384108 -14272.0,0.0202367229637043 -14273.0,0.020229734654117988 -14274.0,0.020222748757791526 -14275.0,0.020215765273891535 -14276.0,0.02020878420158494 -14277.0,0.02020180554003895 -14278.0,0.020194829288421066 -14279.0,0.020187855445899076 -14280.0,0.020180884011641035 -14281.0,0.02017391498481531 -14282.0,0.02016694836459055 -14283.0,0.020159984150135694 -14284.0,0.020153022340619945 -14285.0,0.02014606293521282 -14286.0,0.02013910593308411 -14287.0,0.02013215133340391 -14288.0,0.02012519913534256 -14289.0,0.02011824933807073 -14290.0,0.020111301940759357 -14291.0,0.020104356942579678 -14292.0,0.020097414342703183 -14293.0,0.020090474140301684 -14294.0,0.02008353633454726 -14295.0,0.0200766009246123 -14296.0,0.020069667909669433 -14297.0,0.020062737288891613 -14298.0,0.020055809061452066 -14299.0,0.02004888322652431 -14300.0,0.020041959783282146 -14301.0,0.020035038730899644 -14302.0,0.020028120068551182 -14303.0,0.02002120379541141 -14304.0,0.02001428991065528 -14305.0,0.020007378413457996 -14306.0,0.020000469302995077 -14307.0,0.019993562578442314 -14308.0,0.0199866582389758 -14309.0,0.019979756283771872 -14310.0,0.01997285671200719 -14311.0,0.01996595952285869 -14312.0,0.019959064715503586 -14313.0,0.019952172289119368 -14314.0,0.019945282242883822 -14315.0,0.019938394575975026 -14316.0,0.01993150928757132 -14317.0,0.01992462637685136 -14318.0,0.019917745842994036 -14319.0,0.019910867685178565 -14320.0,0.019903991902584434 -14321.0,0.01989711849439142 -14322.0,0.019890247459779554 -14323.0,0.019883378797929185 -14324.0,0.01987651250802093 -14325.0,0.0198696485892357 -14326.0,0.019862787040754663 -14327.0,0.01985592786175929 -14328.0,0.019849071051431338 -14329.0,0.019842216608952846 -14330.0,0.01983536453350611 -14331.0,0.019828514824273735 -14332.0,0.019821667480438603 -14333.0,0.019814822501183885 -14334.0,0.019807979885693005 -14335.0,0.019801139633149698 -14336.0,0.019794301742737976 -14337.0,0.01978746621364212 -14338.0,0.01978063304504672 -14339.0,0.019773802236136603 -14340.0,0.019766973786096917 -14341.0,0.019760147694113078 -14342.0,0.019753323959370787 -14343.0,0.01974650258105601 -14344.0,0.019739683558355012 -14345.0,0.019732866890454333 -14346.0,0.019726052576540806 -14347.0,0.01971924061580151 -14348.0,0.019712431007423842 -14349.0,0.019705623750595463 -14350.0,0.019698818844504327 -14351.0,0.01969201628833864 -14352.0,0.019685216081286913 -14353.0,0.019678418222537936 -14354.0,0.01967162271128077 -14355.0,0.01966482954670477 -14356.0,0.019658038727999542 -14357.0,0.019651250254355 -14358.0,0.019644464124961333 -14359.0,0.01963768033900901 -14360.0,0.019630898895688757 -14361.0,0.019624119794191607 -14362.0,0.019617343033708864 -14363.0,0.019610568613432116 -14364.0,0.019603796532553206 -14365.0,0.019597026790264288 -14366.0,0.019590259385757775 -14367.0,0.01958349431822638 -14368.0,0.019576731586863055 -14369.0,0.01956997119086107 -14370.0,0.019563213129413955 -14371.0,0.019556457401715535 -14372.0,0.01954970400695988 -14373.0,0.01954295294434137 -14374.0,0.019536204213054655 -14375.0,0.019529457812294655 -14376.0,0.019522713741256588 -14377.0,0.019515971999135913 -14378.0,0.0195092325851284 -14379.0,0.019502495498430084 -14380.0,0.019495760738237295 -14381.0,0.0194890283037466 -14382.0,0.01948229819415488 -14383.0,0.019475570408659288 -14384.0,0.01946884494645725 -14385.0,0.019462121806746446 -14386.0,0.019455400988724874 -14387.0,0.019448682491590784 -14388.0,0.019441966314542716 -14389.0,0.01943525245677946 -14390.0,0.01942854091750012 -14391.0,0.019421831695904047 -14392.0,0.019415124791190886 -14393.0,0.019408420202560558 -14394.0,0.01940171792921324 -14395.0,0.019395017970349406 -14396.0,0.0193883203251698 -14397.0,0.019381624992875452 -14398.0,0.019374931972667635 -14399.0,0.019368241263747938 -14400.0,0.019361552865318203 -14401.0,0.019354866776580562 -14402.0,0.019348182996737393 -14403.0,0.019341501524991384 -14404.0,0.01933482236054548 -14405.0,0.01932814550260292 -14406.0,0.019321470950367178 -14407.0,0.019314798703042042 -14408.0,0.019308128759831563 -14409.0,0.019301461119940067 -14410.0,0.019294795782572146 -14411.0,0.01928813274693267 -14412.0,0.019281472012226804 -14413.0,0.019274813577659956 -14414.0,0.019268157442437837 -14415.0,0.0192615036057664 -14416.0,0.01925485206685191 -14417.0,0.01924820282490087 -14418.0,0.019241555879120093 -14419.0,0.019234911228716626 -14420.0,0.019228268872897823 -14421.0,0.019221628810871295 -14422.0,0.01921499104184494 -14423.0,0.01920835556502691 -14424.0,0.01920172237962564 -14425.0,0.019195091484849845 -14426.0,0.019188462879908517 -14427.0,0.01918183656401089 -14428.0,0.019175212536366507 -14429.0,0.019168590796185166 -14430.0,0.01916197134267694 -14431.0,0.019155354175052187 -14432.0,0.019148739292521515 -14433.0,0.019142126694295818 -14434.0,0.019135516379586263 -14435.0,0.0191289083476043 -14436.0,0.01912230259756162 -14437.0,0.01911569912867021 -14438.0,0.019109097940142327 -14439.0,0.019102499031190507 -14440.0,0.01909590240102753 -14441.0,0.019089308048866476 -14442.0,0.019082715973920684 -14443.0,0.01907612617540378 -14444.0,0.019069538652529628 -14445.0,0.019062953404512396 -14446.0,0.019056370430566513 -14447.0,0.01904978972990668 -14448.0,0.019043211301747857 -14449.0,0.019036635145305295 -14450.0,0.0190300612597945 -14451.0,0.01902348964443126 -14452.0,0.019016920298431637 -14453.0,0.019010353221011935 -14454.0,0.019003788411388767 -14455.0,0.01899722586877899 -14456.0,0.018990665592399755 -14457.0,0.018984107581468446 -14458.0,0.018977551835202756 -14459.0,0.018970998352820626 -14460.0,0.018964447133540285 -14461.0,0.018957898176580203 -14462.0,0.018951351481159142 -14463.0,0.018944807046496134 -14464.0,0.018938264871810485 -14465.0,0.01893172495632174 -14466.0,0.018925187299249743 -14467.0,0.018918651899814603 -14468.0,0.018912118757236692 -14469.0,0.018905587870736665 -14470.0,0.01889905923953541 -14471.0,0.01889253286285413 -14472.0,0.018886008739914265 -14473.0,0.018879486869937546 -14474.0,0.018872967252145947 -14475.0,0.018866449885761732 -14476.0,0.018859934770007428 -14477.0,0.018853421904105834 -14478.0,0.018846911287280003 -14479.0,0.018840402918753264 -14480.0,0.018833896797749224 -14481.0,0.018827392923491757 -14482.0,0.01882089129520498 -14483.0,0.018814391912113305 -14484.0,0.018807894773441403 -14485.0,0.018801399878414223 -14486.0,0.01879490722625695 -14487.0,0.018788416816195072 -14488.0,0.018781928647454326 -14489.0,0.018775442719260724 -14490.0,0.018768959030840547 -14491.0,0.018762477581420325 -14492.0,0.018755998370226876 -14493.0,0.018749521396487275 -14494.0,0.018743046659428875 -14495.0,0.01873657415827927 -14496.0,0.018730103892266352 -14497.0,0.01872363586061826 -14498.0,0.01871717006256341 -14499.0,0.018710706497330473 -14500.0,0.01870424516414839 -14501.0,0.01869778606224638 -14502.0,0.018691329190853923 -14503.0,0.018684874549200745 -14504.0,0.018678422136516864 -14505.0,0.018671971952032552 -14506.0,0.01866552399497835 -14507.0,0.018659078264585075 -14508.0,0.01865263476008378 -14509.0,0.018646193480705803 -14510.0,0.018639754425682758 -14511.0,0.018633317594246513 -14512.0,0.01862688298562919 -14513.0,0.01862045059906319 -14514.0,0.01861402043378118 -14515.0,0.018607592489016094 -14516.0,0.01860116676400111 -14517.0,0.018594743257969698 -14518.0,0.018588321970155572 -14519.0,0.01858190289979273 -14520.0,0.018575486046115412 -14521.0,0.01856907140835814 -14522.0,0.01856265898575569 -14523.0,0.01855624877754312 -14524.0,0.018549840782955726 -14525.0,0.01854343500122908 -14526.0,0.018537031431599023 -14527.0,0.01853063007330166 -14528.0,0.018524230925573353 -14529.0,0.018517833987650726 -14530.0,0.018511439258770676 -14531.0,0.018505046738170352 -14532.0,0.01849865642508719 -14533.0,0.01849226831875885 -14534.0,0.018485882418423284 -14535.0,0.018479498723318707 -14536.0,0.018473117232683595 -14537.0,0.018466737945756668 -14538.0,0.01846036086177693 -14539.0,0.018453985979983642 -14540.0,0.018447613299616333 -14541.0,0.01844124281991478 -14542.0,0.018434874540119033 -14543.0,0.018428508459469403 -14544.0,0.01842214457720646 -14545.0,0.018415782892571057 -14546.0,0.018409423404804268 -14547.0,0.018403066113147463 -14548.0,0.01839671101684226 -14549.0,0.018390358115130553 -14550.0,0.018384007407254474 -14551.0,0.018377658892456433 -14552.0,0.0183713125699791 -14553.0,0.01836496843906541 -14554.0,0.018358626498958548 -14555.0,0.018352286748901967 -14556.0,0.01834594918813938 -14557.0,0.018339613815914774 -14558.0,0.018333280631472368 -14559.0,0.018326949634056667 -14560.0,0.018320620822912432 -14561.0,0.018314294197284687 -14562.0,0.018307969756418692 -14563.0,0.018301647499560005 -14564.0,0.018295327425954418 -14565.0,0.018289009534847998 -14566.0,0.01828269382548706 -14567.0,0.018276380297118193 -14568.0,0.018270068948988253 -14569.0,0.01826375978034431 -14570.0,0.01825745279043374 -14571.0,0.01825114797850417 -14572.0,0.018244845343803474 -14573.0,0.018238544885579803 -14574.0,0.01823224660308155 -14575.0,0.01822595049555738 -14576.0,0.01821965656225623 -14577.0,0.018213364802427245 -14578.0,0.018207075215319883 -14579.0,0.01820078780018384 -14580.0,0.018194502556269074 -14581.0,0.0181882194828258 -14582.0,0.01818193857910449 -14583.0,0.018175659844355888 -14584.0,0.01816938327783098 -14585.0,0.01816310887878103 -14586.0,0.018156836646457526 -14587.0,0.018150566580112243 -14588.0,0.018144298678997212 -14589.0,0.018138032942364716 -14590.0,0.018131769369467303 -14591.0,0.018125507959557766 -14592.0,0.018119248711889174 -14593.0,0.018112991625714853 -14594.0,0.01810673670028835 -14595.0,0.018100483934863514 -14596.0,0.018094233328694434 -14597.0,0.01808798488103546 -14598.0,0.0180817385911412 -14599.0,0.01807549445826651 -14600.0,0.018069252481666513 -14601.0,0.01806301266059659 -14602.0,0.01805677499431239 -14603.0,0.018050539482069774 -14604.0,0.018044306123124906 -14605.0,0.01803807491673419 -14606.0,0.01803184586215429 -14607.0,0.018025618958642128 -14608.0,0.018019394205454873 -14609.0,0.018013171601849964 -14610.0,0.0180069511470851 -14611.0,0.018000732840418202 -14612.0,0.01799451668110748 -14613.0,0.017988302668411393 -14614.0,0.01798209080158866 -14615.0,0.017975881079898243 -14616.0,0.01796967350259937 -14617.0,0.017963468068951525 -14618.0,0.01795726477821446 -14619.0,0.017951063629648132 -14620.0,0.01794486462251281 -14621.0,0.017938667756068994 -14622.0,0.017932473029577446 -14623.0,0.017926280442299176 -14624.0,0.01792008999349546 -14625.0,0.017913901682427815 -14626.0,0.01790771550835803 -14627.0,0.017901531470548147 -14628.0,0.017895349568260426 -14629.0,0.01788916980075743 -14630.0,0.01788299216730195 -14631.0,0.01787681666715705 -14632.0,0.01787064329958603 -14633.0,0.017864472063852457 -14634.0,0.017858302959220144 -14635.0,0.01785213598495318 -14636.0,0.01784597114031586 -14637.0,0.01783980842457277 -14638.0,0.017833647836988754 -14639.0,0.017827489376828893 -14640.0,0.017821333043358527 -14641.0,0.017815178835843253 -14642.0,0.017809026753548916 -14643.0,0.01780287679574162 -14644.0,0.017796728961687738 -14645.0,0.017790583250653844 -14646.0,0.01778443966190681 -14647.0,0.01777829819471376 -14648.0,0.017772158848342053 -14649.0,0.017766021622059317 -14650.0,0.01775988651513342 -14651.0,0.017753753526832495 -14652.0,0.01774762265642493 -14653.0,0.017741493903179327 -14654.0,0.017735367266364592 -14655.0,0.017729242745249854 -14656.0,0.017723120339104507 -14657.0,0.01771700004719819 -14658.0,0.0177108818688008 -14659.0,0.01770476580318248 -14660.0,0.01769865184961363 -14661.0,0.017692540007364914 -14662.0,0.017686430275707203 -14663.0,0.017680322653911666 -14664.0,0.01767421714124971 -14665.0,0.01766811373699299 -14666.0,0.017662012440413415 -14667.0,0.017655913250783143 -14668.0,0.01764981616737459 -14669.0,0.017643721189460424 -14670.0,0.01763762831631354 -14671.0,0.017631537547207112 -14672.0,0.017625448881414554 -14673.0,0.017619362318209535 -14674.0,0.017613277856865974 -14675.0,0.017607195496658037 -14676.0,0.01760111523686014 -14677.0,0.017595037076746957 -14678.0,0.017588961015593423 -14679.0,0.017582887052674672 -14680.0,0.01757681518726615 -14681.0,0.017570745418643514 -14682.0,0.017564677746082696 -14683.0,0.017558612168859865 -14684.0,0.01755254868625144 -14685.0,0.017546487297534087 -14686.0,0.017540428001984753 -14687.0,0.017534370798880566 -14688.0,0.01752831568749897 -14689.0,0.01752226266711763 -14690.0,0.017516211737014464 -14691.0,0.017510162896467642 -14692.0,0.017504116144755583 -14693.0,0.01749807148115695 -14694.0,0.01749202890495068 -14695.0,0.0174859884154159 -14696.0,0.01747995001183204 -14697.0,0.017473913693478768 -14698.0,0.017467879459635988 -14699.0,0.017461847309583865 -14700.0,0.017455817242602808 -14701.0,0.01744978925797347 -14702.0,0.017443763354976757 -14703.0,0.01743773953289384 -14704.0,0.01743171779100609 -14705.0,0.017425698128595173 -14706.0,0.017419680544942986 -14707.0,0.017413665039331675 -14708.0,0.017407651611043636 -14709.0,0.017401640259361507 -14710.0,0.01739563098356818 -14711.0,0.017389623782946808 -14712.0,0.017383618656780744 -14713.0,0.01737761560435364 -14714.0,0.017371614624949367 -14715.0,0.017365615717852056 -14716.0,0.017359618882346085 -14717.0,0.01735362411771607 -14718.0,0.017347631423246884 -14719.0,0.017341640798223635 -14720.0,0.017335652241931707 -14721.0,0.01732966575365668 -14722.0,0.017323681332684415 -14723.0,0.017317698978301023 -14724.0,0.01731171868979285 -14725.0,0.017305740466446493 -14726.0,0.01729976430754879 -14727.0,0.01729379021238683 -14728.0,0.017287818180247966 -14729.0,0.017281848210419743 -14730.0,0.017275880302190003 -14731.0,0.017269914454846817 -14732.0,0.01726395066767851 -14733.0,0.017257988939973636 -14734.0,0.01725202927102101 -14735.0,0.017246071660109687 -14736.0,0.017240116106528966 -14737.0,0.017234162609568407 -14738.0,0.017228211168517773 -14739.0,0.017222261782667114 -14740.0,0.017216314451306714 -14741.0,0.0172103691737271 -14742.0,0.01720442594921904 -14743.0,0.01719848477707355 -14744.0,0.017192545656581897 -14745.0,0.0171866085870356 -14746.0,0.017180673567726377 -14747.0,0.017174740597946242 -14748.0,0.01716880967698743 -14749.0,0.017162880804142435 -14750.0,0.017156953978703978 -14751.0,0.017151029199965032 -14752.0,0.017145106467218816 -14753.0,0.01713918577975879 -14754.0,0.01713326713687868 -14755.0,0.017127350537872395 -14756.0,0.01712143598203415 -14757.0,0.01711552346865838 -14758.0,0.017109612997039763 -14759.0,0.017103704566473227 -14760.0,0.017097798176253936 -14761.0,0.0170918938256773 -14762.0,0.017085991514038994 -14763.0,0.01708009124063488 -14764.0,0.01707419300476111 -14765.0,0.017068296805714075 -14766.0,0.017062402642790398 -14767.0,0.01705651051528695 -14768.0,0.017050620422500842 -14769.0,0.01704473236372943 -14770.0,0.017038846338270318 -14771.0,0.01703296234542133 -14772.0,0.017027080384480555 -14773.0,0.01702120045474632 -14774.0,0.01701532255551719 -14775.0,0.01700944668609198 -14776.0,0.017003572845769737 -14777.0,0.016997701033849757 -14778.0,0.01699183124963157 -14779.0,0.01698596349241498 -14780.0,0.016980097761499963 -14781.0,0.016974234056186806 -14782.0,0.016968372375776006 -14783.0,0.016962512719568307 -14784.0,0.016956655086864697 -14785.0,0.016950799476966403 -14786.0,0.016944945889174893 -14787.0,0.01693909432279189 -14788.0,0.016933244777119317 -14789.0,0.016927397251459378 -14790.0,0.01692155174511451 -14791.0,0.016915708257387384 -14792.0,0.016909866787580916 -14793.0,0.01690402733499826 -14794.0,0.016898189898942814 -14795.0,0.01689235447871821 -14796.0,0.01688652107362834 -14797.0,0.0168806896829773 -14798.0,0.016874860306069453 -14799.0,0.0168690329422094 -14800.0,0.016863207590701982 -14801.0,0.016857384250852273 -14802.0,0.01685156292196559 -14803.0,0.016845743603347497 -14804.0,0.0168399262943038 -14805.0,0.016834110994140512 -14806.0,0.016828297702163923 -14807.0,0.016822486417680547 -14808.0,0.016816677139997144 -14809.0,0.01681086986842071 -14810.0,0.016805064602258474 -14811.0,0.016799261340817915 -14812.0,0.016793460083406743 -14813.0,0.016787660829332928 -14814.0,0.01678186357790463 -14815.0,0.0167760683284303 -14816.0,0.016770275080218597 -14817.0,0.016764483832578437 -14818.0,0.016758694584818958 -14819.0,0.016752907336249553 -14820.0,0.01674712208617984 -14821.0,0.016741338833919702 -14822.0,0.016735557578779203 -14823.0,0.016729778320068698 -14824.0,0.016724001057098765 -14825.0,0.016718225789180217 -14826.0,0.016712452515624112 -14827.0,0.016706681235741733 -14828.0,0.01670091194884461 -14829.0,0.01669514465424451 -14830.0,0.016689379351253454 -14831.0,0.016683616039183655 -14832.0,0.0166778547173476 -14833.0,0.01667209538505801 -14834.0,0.016666338041627836 -14835.0,0.016660582686370273 -14836.0,0.016654829318598748 -14837.0,0.016649077937626922 -14838.0,0.016643328542768714 -14839.0,0.016637581133338238 -14840.0,0.01663183570864988 -14841.0,0.016626092268018252 -14842.0,0.016620350810758206 -14843.0,0.016614611336184828 -14844.0,0.01660887384361344 -14845.0,0.0166031383323596 -14846.0,0.01659740480173912 -14847.0,0.016591673251068 -14848.0,0.016585943679662523 -14849.0,0.016580216086839194 -14850.0,0.016574490471914755 -14851.0,0.016568766834206175 -14852.0,0.01656304517303067 -14853.0,0.01655732548770569 -14854.0,0.016551607777548917 -14855.0,0.01654589204187828 -14856.0,0.01654017828001191 -14857.0,0.016534466491268208 -14858.0,0.016528756674965797 -14859.0,0.016523048830423544 -14860.0,0.016517342956960543 -14861.0,0.016511639053896122 -14862.0,0.016505937120549846 -14863.0,0.016500237156241535 -14864.0,0.016494539160291196 -14865.0,0.016488843132019107 -14866.0,0.01648314907074578 -14867.0,0.016477456975791952 -14868.0,0.0164717668464786 -14869.0,0.016466078682126933 -14870.0,0.01646039248205839 -14871.0,0.016454708245594654 -14872.0,0.016449025972057652 -14873.0,0.016443345660769496 -14874.0,0.016437667311052583 -14875.0,0.01643199092222953 -14876.0,0.01642631649362318 -14877.0,0.01642064402455662 -14878.0,0.01641497351435316 -14879.0,0.016409304962336356 -14880.0,0.016403638367830004 -14881.0,0.01639797373015809 -14882.0,0.01639231104864488 -14883.0,0.016386650322614854 -14884.0,0.01638099155139273 -14885.0,0.016375334734303464 -14886.0,0.01636967987067223 -14887.0,0.01636402695982445 -14888.0,0.016358376001085768 -14889.0,0.016352726993782086 -14890.0,0.016347079937239484 -14891.0,0.01634143483078433 -14892.0,0.0163357916737432 -14893.0,0.016330150465442905 -14894.0,0.01632451120521049 -14895.0,0.01631887389237324 -14896.0,0.016313238526258655 -14897.0,0.016307605106194497 -14898.0,0.01630197363150871 -14899.0,0.016296344101529515 -14900.0,0.016290716515585345 -14901.0,0.01628509087300488 -14902.0,0.016279467173117013 -14903.0,0.01627384541525088 -14904.0,0.01626822559873585 -14905.0,0.016262607722901515 -14906.0,0.01625699178707772 -14907.0,0.016251377790594494 -14908.0,0.016245765732782146 -14909.0,0.016240155612971197 -14910.0,0.0162345474304924 -14911.0,0.01622894118467674 -14912.0,0.016223336874855433 -14913.0,0.016217734500359925 -14914.0,0.01621213406052191 -14915.0,0.016206535554673263 -14916.0,0.016200938982146144 -14917.0,0.016195344342272915 -14918.0,0.016189751634386185 -14919.0,0.016184160857818777 -14920.0,0.016178572011903758 -14921.0,0.016172985095974413 -14922.0,0.016167400109364287 -14923.0,0.016161817051407092 -14924.0,0.016156235921436835 -14925.0,0.01615065671878772 -14926.0,0.016145079442794193 -14927.0,0.016139504092790923 -14928.0,0.016133930668112816 -14929.0,0.016128359168094998 -14930.0,0.01612278959207283 -14931.0,0.01611722193938192 -14932.0,0.016111656209358057 -14933.0,0.016106092401337306 -14934.0,0.01610053051465594 -14935.0,0.016094970548650472 -14936.0,0.01608941250265764 -14937.0,0.0160838563760144 -14938.0,0.016078302168057956 -14939.0,0.016072749878125743 -14940.0,0.016067199505555383 -14941.0,0.016061651049684777 -14942.0,0.016056104509852027 -14943.0,0.016050559885395475 -14944.0,0.016045017175653688 -14945.0,0.01603947637996546 -14946.0,0.016033937497669817 -14947.0,0.016028400528106005 -14948.0,0.016022865470613525 -14949.0,0.016017332324532053 -14950.0,0.016011801089201538 -14951.0,0.016006271763962146 -14952.0,0.01600074434815427 -14953.0,0.015995218841118528 -14954.0,0.015989695242195765 -14955.0,0.015984173550727062 -14956.0,0.01597865376605373 -14957.0,0.01597313588751727 -14958.0,0.01596761991445946 -14959.0,0.015962105846222277 -14960.0,0.01595659368214794 -14961.0,0.01595108342157888 -14962.0,0.015945575063857773 -14963.0,0.015940068608327505 -14964.0,0.015934564054331198 -14965.0,0.01592906140121221 -14966.0,0.01592356064831409 -14967.0,0.01591806179498065 -14968.0,0.015912564840555924 -14969.0,0.015907069784384154 -14970.0,0.015901576625809828 -14971.0,0.01589608536417765 -14972.0,0.015890595998832552 -14973.0,0.01588510852911971 -14974.0,0.015879622954384474 -14975.0,0.015874139273972472 -14976.0,0.015868657487229546 -14977.0,0.01586317759350175 -14978.0,0.015857699592135382 -14979.0,0.01585222348247695 -14980.0,0.015846749263873194 -14981.0,0.01584127693567108 -14982.0,0.01583580649721782 -14983.0,0.015830337947860793 -14984.0,0.01582487128694766 -14985.0,0.015819406513826288 -14986.0,0.015813943627844766 -14987.0,0.015808482628351415 -14988.0,0.01580302351469478 -14989.0,0.01579756628622362 -14990.0,0.01579211094228695 -14991.0,0.015786657482233957 -14992.0,0.015781205905414094 -14993.0,0.01577575621117703 -14994.0,0.015770308398872657 -14995.0,0.01576486246785109 -14996.0,0.015759418417462666 -14997.0,0.015753976247057953 -14998.0,0.015748535955987752 -14999.0,0.01574309754360305 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516210000_theo_VPR_VPR.png b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516210000_theo_VPR_VPR.png deleted file mode 100644 index 0380df8..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516210000_theo_VPR_VPR.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516210500_theo_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516210500_theo_VPR_VPR.csv deleted file mode 100644 index 90e0f19..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516210500_theo_VPR_VPR.csv +++ /dev/null @@ -1,15008 +0,0 @@ -# Height Profile -# ============== -# -# Datatype (Unit) : normalized reflectivity (-) -# Fill value : -9999.0 -# Time : 2020-05-16 21:05:00 -# Sector specification: None -Altitude [m MSL],Znorm -0.0,1.0 -1.0,1.0 -2.0,1.0 -3.0,1.0 -4.0,1.0 -5.0,1.0 -6.0,1.0 -7.0,1.0 -8.0,1.0 -9.0,1.0 -10.0,1.0 -11.0,1.0 -12.0,1.0 -13.0,1.0 -14.0,1.0 -15.0,1.0 -16.0,1.0 -17.0,1.0 -18.0,1.0 -19.0,1.0 -20.0,1.0 -21.0,1.0 -22.0,1.0 -23.0,1.0 -24.0,1.0 -25.0,1.0 -26.0,1.0 -27.0,1.0 -28.0,1.0 -29.0,1.0 -30.0,1.0 -31.0,1.0 -32.0,1.0 -33.0,1.0 -34.0,1.0 -35.0,1.0 -36.0,1.0 -37.0,1.0 -38.0,1.0 -39.0,1.0 -40.0,1.0 -41.0,1.0 -42.0,1.0 -43.0,1.0 -44.0,1.0 -45.0,1.0 -46.0,1.0 -47.0,1.0 -48.0,1.0 -49.0,1.0 -50.0,1.0 -51.0,1.0 -52.0,1.0 -53.0,1.0 -54.0,1.0 -55.0,1.0 -56.0,1.0 -57.0,1.0 -58.0,1.0 -59.0,1.0 -60.0,1.0 -61.0,1.0 -62.0,1.0 -63.0,1.0 -64.0,1.0 -65.0,1.0 -66.0,1.0 -67.0,1.0 -68.0,1.0 -69.0,1.0 -70.0,1.0 -71.0,1.0 -72.0,1.0 -73.0,1.0 -74.0,1.0 -75.0,1.0 -76.0,1.0 -77.0,1.0 -78.0,1.0 -79.0,1.0 -80.0,1.0 -81.0,1.0 -82.0,1.0 -83.0,1.0 -84.0,1.0 -85.0,1.0 -86.0,1.0 -87.0,1.0 -88.0,1.0 -89.0,1.0 -90.0,1.0 -91.0,1.0 -92.0,1.0 -93.0,1.0 -94.0,1.0 -95.0,1.0 -96.0,1.0 -97.0,1.0 -98.0,1.0 -99.0,1.0 -100.0,1.0 -101.0,1.0 -102.0,1.0 -103.0,1.0 -104.0,1.0 -105.0,1.0 -106.0,1.0 -107.0,1.0 -108.0,1.0 -109.0,1.0 -110.0,1.0 -111.0,1.0 -112.0,1.0 -113.0,1.0 -114.0,1.0 -115.0,1.0 -116.0,1.0 -117.0,1.0 -118.0,1.0 -119.0,1.0 -120.0,1.0 -121.0,1.0 -122.0,1.0 -123.0,1.0 -124.0,1.0 -125.0,1.0 -126.0,1.0 -127.0,1.0 -128.0,1.0 -129.0,1.0 -130.0,1.0 -131.0,1.0 -132.0,1.0 -133.0,1.0 -134.0,1.0 -135.0,1.0 -136.0,1.0 -137.0,1.0 -138.0,1.0 -139.0,1.0 -140.0,1.0 -141.0,1.0 -142.0,1.0 -143.0,1.0 -144.0,1.0 -145.0,1.0 -146.0,1.0 -147.0,1.0 -148.0,1.0 -149.0,1.0 -150.0,1.0 -151.0,1.0 -152.0,1.0 -153.0,1.0 -154.0,1.0 -155.0,1.0 -156.0,1.0 -157.0,1.0 -158.0,1.0 -159.0,1.0 -160.0,1.0 -161.0,1.0 -162.0,1.0 -163.0,1.0 -164.0,1.0 -165.0,1.0 -166.0,1.0 -167.0,1.0 -168.0,1.0 -169.0,1.0 -170.0,1.0 -171.0,1.0 -172.0,1.0 -173.0,1.0 -174.0,1.0 -175.0,1.0 -176.0,1.0 -177.0,1.0 -178.0,1.0 -179.0,1.0 -180.0,1.0 -181.0,1.0 -182.0,1.0 -183.0,1.0 -184.0,1.0 -185.0,1.0 -186.0,1.0 -187.0,1.0 -188.0,1.0 -189.0,1.0 -190.0,1.0 -191.0,1.0 -192.0,1.0 -193.0,1.0 -194.0,1.0 -195.0,1.0 -196.0,1.0 -197.0,1.0 -198.0,1.0 -199.0,1.0 -200.0,1.0 -201.0,1.0 -202.0,1.0 -203.0,1.0 -204.0,1.0 -205.0,1.0 -206.0,1.0 -207.0,1.0 -208.0,1.0 -209.0,1.0 -210.0,1.0 -211.0,1.0 -212.0,1.0 -213.0,1.0 -214.0,1.0 -215.0,1.0 -216.0,1.0 -217.0,1.0 -218.0,1.0 -219.0,1.0 -220.0,1.0 -221.0,1.0 -222.0,1.0 -223.0,1.0 -224.0,1.0 -225.0,1.0 -226.0,1.0 -227.0,1.0 -228.0,1.0 -229.0,1.0 -230.0,1.0 -231.0,1.0 -232.0,1.0 -233.0,1.0 -234.0,1.0 -235.0,1.0 -236.0,1.0 -237.0,1.0 -238.0,1.0 -239.0,1.0 -240.0,1.0 -241.0,1.0 -242.0,1.0 -243.0,1.0 -244.0,1.0 -245.0,1.0 -246.0,1.0 -247.0,1.0 -248.0,1.0 -249.0,1.0 -250.0,1.0 -251.0,1.0 -252.0,1.0 -253.0,1.0 -254.0,1.0 -255.0,1.0 -256.0,1.0 -257.0,1.0 -258.0,1.0 -259.0,1.0 -260.0,1.0 -261.0,1.0 -262.0,1.0 -263.0,1.0 -264.0,1.0 -265.0,1.0 -266.0,1.0 -267.0,1.0 -268.0,1.0 -269.0,1.0 -270.0,1.0 -271.0,1.0 -272.0,1.0 -273.0,1.0 -274.0,1.0 -275.0,1.0 -276.0,1.0 -277.0,1.0 -278.0,1.0 -279.0,1.0 -280.0,1.0 -281.0,1.0 -282.0,1.0 -283.0,1.0 -284.0,1.0 -285.0,1.0 -286.0,1.0 -287.0,1.0 -288.0,1.0 -289.0,1.0 -290.0,1.0 -291.0,1.0 -292.0,1.0 -293.0,1.0 -294.0,1.0 -295.0,1.0 -296.0,1.0 -297.0,1.0 -298.0,1.0 -299.0,1.0 -300.0,1.0 -301.0,1.0 -302.0,1.0 -303.0,1.0 -304.0,1.0 -305.0,1.0 -306.0,1.0 -307.0,1.0 -308.0,1.0 -309.0,1.0 -310.0,1.0 -311.0,1.0 -312.0,1.0 -313.0,1.0 -314.0,1.0 -315.0,1.0 -316.0,1.0 -317.0,1.0 -318.0,1.0 -319.0,1.0 -320.0,1.0 -321.0,1.0 -322.0,1.0 -323.0,1.0 -324.0,1.0 -325.0,1.0 -326.0,1.0 -327.0,1.0 -328.0,1.0 -329.0,1.0 -330.0,1.0 -331.0,1.0 -332.0,1.0 -333.0,1.0 -334.0,1.0 -335.0,1.0 -336.0,1.0 -337.0,1.0 -338.0,1.0 -339.0,1.0 -340.0,1.0 -341.0,1.0 -342.0,1.0 -343.0,1.0 -344.0,1.0 -345.0,1.0 -346.0,1.0 -347.0,1.0 -348.0,1.0 -349.0,1.0 -350.0,1.0 -351.0,1.0 -352.0,1.0 -353.0,1.0 -354.0,1.0 -355.0,1.0 -356.0,1.0 -357.0,1.0 -358.0,1.0 -359.0,1.0 -360.0,1.0 -361.0,1.0 -362.0,1.0 -363.0,1.0 -364.0,1.0 -365.0,1.0 -366.0,1.0 -367.0,1.0 -368.0,1.0 -369.0,1.0 -370.0,1.0 -371.0,1.0 -372.0,1.0 -373.0,1.0 -374.0,1.0 -375.0,1.0 -376.0,1.0 -377.0,1.0 -378.0,1.0 -379.0,1.0 -380.0,1.0 -381.0,1.0 -382.0,1.0 -383.0,1.0 -384.0,1.0 -385.0,1.0 -386.0,1.0 -387.0,1.0 -388.0,1.0 -389.0,1.0 -390.0,1.0 -391.0,1.0 -392.0,1.0 -393.0,1.0 -394.0,1.0 -395.0,1.0 -396.0,1.0 -397.0,1.0 -398.0,1.0 -399.0,1.0 -400.0,1.0 -401.0,1.0 -402.0,1.0 -403.0,1.0 -404.0,1.0 -405.0,1.0 -406.0,1.0 -407.0,1.0 -408.0,1.0 -409.0,1.0 -410.0,1.0 -411.0,1.0 -412.0,1.0 -413.0,1.0 -414.0,1.0 -415.0,1.0 -416.0,1.0 -417.0,1.0 -418.0,1.0 -419.0,1.0 -420.0,1.0 -421.0,1.0 -422.0,1.0 -423.0,1.0 -424.0,1.0 -425.0,1.0 -426.0,1.0 -427.0,1.0 -428.0,1.0 -429.0,1.0 -430.0,1.0 -431.0,1.0 -432.0,1.0 -433.0,1.0 -434.0,1.0 -435.0,1.0 -436.0,1.0 -437.0,1.0 -438.0,1.0 -439.0,1.0 -440.0,1.0 -441.0,1.0 -442.0,1.0 -443.0,1.0 -444.0,1.0 -445.0,1.0 -446.0,1.0 -447.0,1.0 -448.0,1.0 -449.0,1.0 -450.0,1.0 -451.0,1.0 -452.0,1.0 -453.0,1.0 -454.0,1.0 -455.0,1.0 -456.0,1.0 -457.0,1.0 -458.0,1.0 -459.0,1.0 -460.0,1.0 -461.0,1.0 -462.0,1.0 -463.0,1.0 -464.0,1.0 -465.0,1.0 -466.0,1.0 -467.0,1.0 -468.0,1.0 -469.0,1.0 -470.0,1.0 -471.0,1.0 -472.0,1.0 -473.0,1.0 -474.0,1.0 -475.0,1.0 -476.0,1.0 -477.0,1.0 -478.0,1.0 -479.0,1.0 -480.0,1.0 -481.0,1.0 -482.0,1.0 -483.0,1.0 -484.0,1.0 -485.0,1.0 -486.0,1.0 -487.0,1.0 -488.0,1.0 -489.0,1.0 -490.0,1.0 -491.0,1.0 -492.0,1.0 -493.0,1.0 -494.0,1.0 -495.0,1.0 -496.0,1.0 -497.0,1.0 -498.0,1.0 -499.0,1.0 -500.0,1.0 -501.0,1.0 -502.0,1.0 -503.0,1.0 -504.0,1.0 -505.0,1.0 -506.0,1.0 -507.0,1.0 -508.0,1.0 -509.0,1.0 -510.0,1.0 -511.0,1.0 -512.0,1.0 -513.0,1.0 -514.0,1.0 -515.0,1.0 -516.0,1.0 -517.0,1.0 -518.0,1.0 -519.0,1.0 -520.0,1.0 -521.0,1.0 -522.0,1.0 -523.0,1.0 -524.0,1.0 -525.0,1.0 -526.0,1.0 -527.0,1.0 -528.0,1.0 -529.0,1.0 -530.0,1.0 -531.0,1.0 -532.0,1.0 -533.0,1.0 -534.0,1.0 -535.0,1.0 -536.0,1.0 -537.0,1.0 -538.0,1.0 -539.0,1.0 -540.0,1.0 -541.0,1.0 -542.0,1.0 -543.0,1.0 -544.0,1.0 -545.0,1.0 -546.0,1.0 -547.0,1.0 -548.0,1.0 -549.0,1.0 -550.0,1.0 -551.0,1.0 -552.0,1.0 -553.0,1.0 -554.0,1.0 -555.0,1.0 -556.0,1.0 -557.0,1.0 -558.0,1.0 -559.0,1.0 -560.0,1.0 -561.0,1.0 -562.0,1.0 -563.0,1.0 -564.0,1.0 -565.0,1.0 -566.0,1.0 -567.0,1.0 -568.0,1.0 -569.0,1.0 -570.0,1.0 -571.0,1.0 -572.0,1.0 -573.0,1.0 -574.0,1.0 -575.0,1.0 -576.0,1.0 -577.0,1.0 -578.0,1.0 -579.0,1.0 -580.0,1.0 -581.0,1.0 -582.0,1.0 -583.0,1.0 -584.0,1.0 -585.0,1.0 -586.0,1.0 -587.0,1.0 -588.0,1.0 -589.0,1.0 -590.0,1.0 -591.0,1.0 -592.0,1.0 -593.0,1.0 -594.0,1.0 -595.0,1.0 -596.0,1.0 -597.0,1.0 -598.0,1.0 -599.0,1.0 -600.0,1.0 -601.0,1.0 -602.0,1.0 -603.0,1.0 -604.0,1.0 -605.0,1.0 -606.0,1.0 -607.0,1.0 -608.0,1.0 -609.0,1.0 -610.0,1.0 -611.0,1.0 -612.0,1.0 -613.0,1.0 -614.0,1.0 -615.0,1.0 -616.0,1.0 -617.0,1.0 -618.0,1.0 -619.0,1.0 -620.0,1.0 -621.0,1.0 -622.0,1.0 -623.0,1.0 -624.0,1.0 -625.0,1.0 -626.0,1.0 -627.0,1.0 -628.0,1.0 -629.0,1.0 -630.0,1.0 -631.0,1.0 -632.0,1.0 -633.0,1.0 -634.0,1.0 -635.0,1.0 -636.0,1.0 -637.0,1.0 -638.0,1.0 -639.0,1.0 -640.0,1.0 -641.0,1.0 -642.0,1.0 -643.0,1.0 -644.0,1.0 -645.0,1.0 -646.0,1.0 -647.0,1.0 -648.0,1.0 -649.0,1.0 -650.0,1.0 -651.0,1.0 -652.0,1.0 -653.0,1.0 -654.0,1.0 -655.0,1.0 -656.0,1.0 -657.0,1.0 -658.0,1.0 -659.0,1.0 -660.0,1.0 -661.0,1.0 -662.0,1.0 -663.0,1.0 -664.0,1.0 -665.0,1.0 -666.0,1.0 -667.0,1.0 -668.0,1.0 -669.0,1.0 -670.0,1.0 -671.0,1.0 -672.0,1.0 -673.0,1.0 -674.0,1.0 -675.0,1.0 -676.0,1.0 -677.0,1.0 -678.0,1.0 -679.0,1.0 -680.0,1.0 -681.0,1.0 -682.0,1.0 -683.0,1.0 -684.0,1.0 -685.0,1.0 -686.0,1.0 -687.0,1.0 -688.0,1.0 -689.0,1.0 -690.0,1.0 -691.0,1.0 -692.0,1.0 -693.0,1.0 -694.0,1.0 -695.0,1.0 -696.0,1.0 -697.0,1.0 -698.0,1.0 -699.0,1.0 -700.0,1.0 -701.0,1.0 -702.0,1.0 -703.0,1.0 -704.0,1.0 -705.0,1.0 -706.0,1.0 -707.0,1.0 -708.0,1.0 -709.0,1.0 -710.0,1.0 -711.0,1.0 -712.0,1.0 -713.0,1.0 -714.0,1.0 -715.0,1.0 -716.0,1.0 -717.0,1.0 -718.0,1.0 -719.0,1.0 -720.0,1.0 -721.0,1.0 -722.0,1.0 -723.0,1.0 -724.0,1.0 -725.0,1.0 -726.0,1.0 -727.0,1.0 -728.0,1.0 -729.0,1.0 -730.0,1.0 -731.0,1.0 -732.0,1.0 -733.0,1.0 -734.0,1.0 -735.0,1.0 -736.0,1.0 -737.0,1.0 -738.0,1.0 -739.0,1.0 -740.0,1.0 -741.0,1.0 -742.0,1.0 -743.0,1.0 -744.0,1.0 -745.0,1.0 -746.0,1.0 -747.0,1.0 -748.0,1.0 -749.0,1.0 -750.0,1.0 -751.0,1.0 -752.0,1.0 -753.0,1.0 -754.0,1.0 -755.0,1.0 -756.0,1.0 -757.0,1.0 -758.0,1.0 -759.0,1.0 -760.0,1.0 -761.0,1.0 -762.0,1.0 -763.0,1.0 -764.0,1.0 -765.0,1.0 -766.0,1.0 -767.0,1.0 -768.0,1.0 -769.0,1.0 -770.0,1.0 -771.0,1.0 -772.0,1.0 -773.0,1.0 -774.0,1.0 -775.0,1.0 -776.0,1.0 -777.0,1.0 -778.0,1.0 -779.0,1.0 -780.0,1.0 -781.0,1.0 -782.0,1.0 -783.0,1.0 -784.0,1.0 -785.0,1.0 -786.0,1.0 -787.0,1.0 -788.0,1.0 -789.0,1.0 -790.0,1.0 -791.0,1.0 -792.0,1.0 -793.0,1.0 -794.0,1.0 -795.0,1.0 -796.0,1.0 -797.0,1.0 -798.0,1.0 -799.0,1.0 -800.0,1.0 -801.0,1.0 -802.0,1.0 -803.0,1.0 -804.0,1.0 -805.0,1.0 -806.0,1.0 -807.0,1.0 -808.0,1.0 -809.0,1.0 -810.0,1.0 -811.0,1.0 -812.0,1.0 -813.0,1.0 -814.0,1.0 -815.0,1.0 -816.0,1.0 -817.0,1.0 -818.0,1.0 -819.0,1.0 -820.0,1.0 -821.0,1.0 -822.0,1.0 -823.0,1.0 -824.0,1.0 -825.0,1.0 -826.0,1.0 -827.0,1.0 -828.0,1.0 -829.0,1.0 -830.0,1.0 -831.0,1.0 -832.0,1.0 -833.0,1.0 -834.0,1.0 -835.0,1.0 -836.0,1.0 -837.0,1.0 -838.0,1.0 -839.0,1.0 -840.0,1.0 -841.0,1.0 -842.0,1.0 -843.0,1.0 -844.0,1.0 -845.0,1.0 -846.0,1.0 -847.0,1.0 -848.0,1.0 -849.0,1.0 -850.0,1.0 -851.0,1.0 -852.0,1.0 -853.0,1.0 -854.0,1.0 -855.0,1.0 -856.0,1.0 -857.0,1.0 -858.0,1.0 -859.0,1.0 -860.0,1.0 -861.0,1.0 -862.0,1.0 -863.0,1.0 -864.0,1.0 -865.0,1.0 -866.0,1.0 -867.0,1.0 -868.0,1.0 -869.0,1.0 -870.0,1.0 -871.0,1.0 -872.0,1.0 -873.0,1.0 -874.0,1.0 -875.0,1.0 -876.0,1.0 -877.0,1.0 -878.0,1.0 -879.0,1.0 -880.0,1.0 -881.0,1.0 -882.0,1.0 -883.0,1.0 -884.0,1.0 -885.0,1.0 -886.0,1.0 -887.0,1.0 -888.0,1.0 -889.0,1.0 -890.0,1.0 -891.0,1.0 -892.0,1.0 -893.0,1.0 -894.0,1.0 -895.0,1.0 -896.0,1.0 -897.0,1.0 -898.0,1.0 -899.0,1.0 -900.0,1.0 -901.0,1.0 -902.0,1.0 -903.0,1.0 -904.0,1.0 -905.0,1.0 -906.0,1.0 -907.0,1.0 -908.0,1.0 -909.0,1.0 -910.0,1.0 -911.0,1.0 -912.0,1.0 -913.0,1.0 -914.0,1.0 -915.0,1.0 -916.0,1.0 -917.0,1.0 -918.0,1.0 -919.0,1.0 -920.0,1.0 -921.0,1.0 -922.0,1.0 -923.0,1.0 -924.0,1.0 -925.0,1.0 -926.0,1.0 -927.0,1.0 -928.0,1.0 -929.0,1.0 -930.0,1.0 -931.0,1.0 -932.0,1.0 -933.0,1.0 -934.0,1.0 -935.0,1.0 -936.0,1.0 -937.0,1.0 -938.0,1.0 -939.0,1.0 -940.0,1.0 -941.0,1.0 -942.0,1.0 -943.0,1.0 -944.0,1.0 -945.0,1.0 -946.0,1.0 -947.0,1.0 -948.0,1.0 -949.0,1.0 -950.0,1.0 -951.0,1.0 -952.0,1.0 -953.0,1.0 -954.0,1.0 -955.0,1.0 -956.0,1.0 -957.0,1.0 -958.0,1.0 -959.0,1.0 -960.0,1.0 -961.0,1.0 -962.0,1.0 -963.0,1.0 -964.0,1.0 -965.0,1.0 -966.0,1.0 -967.0,1.0 -968.0,1.0 -969.0,1.0 -970.0,1.0 -971.0,1.0 -972.0,1.0 -973.0,1.0 -974.0,1.0 -975.0,1.0 -976.0,1.0 -977.0,1.0 -978.0,1.0 -979.0,1.0 -980.0,1.0 -981.0,1.0 -982.0,1.0 -983.0,1.0 -984.0,1.0 -985.0,1.0 -986.0,1.0 -987.0,1.0 -988.0,1.0 -989.0,1.0 -990.0,1.0 -991.0,1.0 -992.0,1.0 -993.0,1.0 -994.0,1.0 -995.0,1.0 -996.0,1.0 -997.0,1.0 -998.0,1.0 -999.0,1.0 -1000.0,1.0 -1001.0,1.0 -1002.0,1.0 -1003.0,1.0 -1004.0,1.0 -1005.0,1.0 -1006.0,1.0 -1007.0,1.0 -1008.0,1.0 -1009.0,1.0 -1010.0,1.0 -1011.0,1.0 -1012.0,1.0 -1013.0,1.0 -1014.0,1.0 -1015.0,1.0 -1016.0,1.0 -1017.0,1.0 -1018.0,1.0 -1019.0,1.0 -1020.0,1.0 -1021.0,1.0 -1022.0,1.0 -1023.0,1.0 -1024.0,1.0 -1025.0,1.0 -1026.0,1.0 -1027.0,1.0 -1028.0,1.0 -1029.0,1.0 -1030.0,1.0 -1031.0,1.0 -1032.0,1.0 -1033.0,1.0 -1034.0,1.0 -1035.0,1.0 -1036.0,1.0 -1037.0,1.0 -1038.0,1.0 -1039.0,1.0 -1040.0,1.0 -1041.0,1.0 -1042.0,1.0 -1043.0,1.0 -1044.0,1.0 -1045.0,1.0 -1046.0,1.0 -1047.0,1.0 -1048.0,1.0 -1049.0,1.0 -1050.0,1.0 -1051.0,1.0 -1052.0,1.0 -1053.0,1.0 -1054.0,1.0 -1055.0,1.0 -1056.0,1.0 -1057.0,1.0 -1058.0,1.0 -1059.0,1.0 -1060.0,1.0 -1061.0,1.0 -1062.0,1.0 -1063.0,1.0 -1064.0,1.0 -1065.0,1.0 -1066.0,1.0 -1067.0,1.0 -1068.0,1.0 -1069.0,1.0 -1070.0,1.0 -1071.0,1.0 -1072.0,1.0 -1073.0,1.0 -1074.0,1.0 -1075.0,1.0 -1076.0,1.0 -1077.0,1.0 -1078.0,1.0 -1079.0,1.0 -1080.0,1.0 -1081.0,1.0 -1082.0,1.0 -1083.0,1.0 -1084.0,1.0 -1085.0,1.0 -1086.0,1.0 -1087.0,1.0 -1088.0,1.0 -1089.0,1.0 -1090.0,1.0 -1091.0,1.0 -1092.0,1.0 -1093.0,1.0 -1094.0,1.0 -1095.0,1.0 -1096.0,1.0 -1097.0,1.0 -1098.0,1.0 -1099.0,1.0 -1100.0,1.0 -1101.0,1.0 -1102.0,1.0 -1103.0,1.0 -1104.0,1.0 -1105.0,1.0 -1106.0,1.0 -1107.0,1.0 -1108.0,1.0 -1109.0,1.0 -1110.0,1.0 -1111.0,1.0 -1112.0,1.0 -1113.0,1.0 -1114.0,1.0 -1115.0,1.0 -1116.0,1.0 -1117.0,1.0 -1118.0,1.0 -1119.0,1.0 -1120.0,1.0 -1121.0,1.0 -1122.0,1.0 -1123.0,1.0 -1124.0,1.0 -1125.0,1.0 -1126.0,1.0 -1127.0,1.0 -1128.0,1.0 -1129.0,1.0 -1130.0,1.0 -1131.0,1.0 -1132.0,1.0 -1133.0,1.0 -1134.0,1.0 -1135.0,1.0 -1136.0,1.0 -1137.0,1.0 -1138.0,1.0 -1139.0,1.0 -1140.0,1.0 -1141.0,1.0 -1142.0,1.0 -1143.0,1.0 -1144.0,1.0 -1145.0,1.0 -1146.0,1.0 -1147.0,1.0 -1148.0,1.0 -1149.0,1.0 -1150.0,1.0 -1151.0,1.0 -1152.0,1.0 -1153.0,1.0 -1154.0,1.0 -1155.0,1.0 -1156.0,1.0 -1157.0,1.0 -1158.0,1.0 -1159.0,1.0 -1160.0,1.0 -1161.0,1.0 -1162.0,1.0 -1163.0,1.0 -1164.0,1.0 -1165.0,1.0 -1166.0,1.0 -1167.0,1.0 -1168.0,1.0 -1169.0,1.0 -1170.0,1.0 -1171.0,1.0 -1172.0,1.0 -1173.0,1.0 -1174.0,1.0 -1175.0,1.0 -1176.0,1.0 -1177.0,1.0 -1178.0,1.0 -1179.0,1.0 -1180.0,1.0 -1181.0,1.0 -1182.0,1.0 -1183.0,1.0 -1184.0,1.0 -1185.0,1.0 -1186.0,1.0 -1187.0,1.0 -1188.0,1.0 -1189.0,1.0 -1190.0,1.0 -1191.0,1.0 -1192.0,1.0 -1193.0,1.0 -1194.0,1.0 -1195.0,1.0 -1196.0,1.0 -1197.0,1.0 -1198.0,1.0 -1199.0,1.0 -1200.0,1.0 -1201.0,1.0 -1202.0,1.0 -1203.0,1.0 -1204.0,1.0 -1205.0,1.0 -1206.0,1.0 -1207.0,1.0 -1208.0,1.0 -1209.0,1.0 -1210.0,1.0 -1211.0,1.0 -1212.0,1.0 -1213.0,1.0 -1214.0,1.0 -1215.0,1.0 -1216.0,1.0 -1217.0,1.0 -1218.0,1.0 -1219.0,1.0 -1220.0,1.0 -1221.0,1.0 -1222.0,1.0 -1223.0,1.0 -1224.0,1.0 -1225.0,1.0 -1226.0,1.0 -1227.0,1.0 -1228.0,1.0 -1229.0,1.0 -1230.0,1.0 -1231.0,1.0 -1232.0,1.0 -1233.0,1.0 -1234.0,1.0 -1235.0,1.0 -1236.0,1.0 -1237.0,1.0 -1238.0,1.0 -1239.0,1.0 -1240.0,1.0 -1241.0,1.0 -1242.0,1.0 -1243.0,1.0 -1244.0,1.0 -1245.0,1.0 -1246.0,1.0 -1247.0,1.0 -1248.0,1.0 -1249.0,1.0 -1250.0,1.0 -1251.0,1.0 -1252.0,1.0 -1253.0,1.0 -1254.0,1.0 -1255.0,1.0 -1256.0,1.0 -1257.0,1.0 -1258.0,1.0 -1259.0,1.0 -1260.0,1.0 -1261.0,1.0 -1262.0,1.0 -1263.0,1.0 -1264.0,1.0 -1265.0,1.0 -1266.0,1.0 -1267.0,1.0 -1268.0,1.0 -1269.0,1.0 -1270.0,1.0 -1271.0,1.0 -1272.0,1.0 -1273.0,1.0 -1274.0,1.0 -1275.0,1.0 -1276.0,1.0 -1277.0,1.0 -1278.0,1.0 -1279.0,1.0 -1280.0,1.0 -1281.0,1.0 -1282.0,1.0 -1283.0,1.0 -1284.0,1.0 -1285.0,1.0 -1286.0,1.0 -1287.0,1.0 -1288.0,1.0 -1289.0,1.0 -1290.0,1.0 -1291.0,1.0 -1292.0,1.0 -1293.0,1.0 -1294.0,1.0 -1295.0,1.0 -1296.0,1.0 -1297.0,1.0 -1298.0,1.0 -1299.0,1.0 -1300.0,1.0 -1301.0,1.0 -1302.0,1.0 -1303.0,1.0 -1304.0,1.0 -1305.0,1.0 -1306.0,1.0 -1307.0,1.0 -1308.0,1.0 -1309.0,1.0 -1310.0,1.0 -1311.0,1.0 -1312.0,1.0 -1313.0,1.0 -1314.0,1.0 -1315.0,1.0 -1316.0,1.0 -1317.0,1.0 -1318.0,1.0 -1319.0,1.0 -1320.0,1.0 -1321.0,1.0 -1322.0,1.0 -1323.0,1.0 -1324.0,1.0 -1325.0,1.0 -1326.0,1.0 -1327.0,1.0 -1328.0,1.0 -1329.0,1.0 -1330.0,1.0 -1331.0,1.0 -1332.0,1.0 -1333.0,1.0 -1334.0,1.0 -1335.0,1.0 -1336.0,1.0 -1337.0,1.0 -1338.0,1.0 -1339.0,1.0 -1340.0,1.0 -1341.0,1.0 -1342.0,1.0 -1343.0,1.0 -1344.0,1.0 -1345.0,1.0 -1346.0,1.0 -1347.0,1.0 -1348.0,1.0 -1349.0,1.0 -1350.0,1.0 -1351.0,1.0 -1352.0,1.0 -1353.0,1.0 -1354.0,1.0 -1355.0,1.0 -1356.0,1.0 -1357.0,1.0 -1358.0,1.0 -1359.0,1.0 -1360.0,1.0 -1361.0,1.0 -1362.0,1.0 -1363.0,1.0 -1364.0,1.0 -1365.0,1.0 -1366.0,1.0 -1367.0,1.0 -1368.0,1.0 -1369.0,1.0 -1370.0,1.0 -1371.0,1.0 -1372.0,1.0 -1373.0,1.0 -1374.0,1.0 -1375.0,1.0 -1376.0,1.0 -1377.0,1.0 -1378.0,1.0 -1379.0,1.0 -1380.0,1.0 -1381.0,1.0 -1382.0,1.0 -1383.0,1.0 -1384.0,1.0 -1385.0,1.0 -1386.0,1.0 -1387.0,1.0 -1388.0,1.0 -1389.0,1.0 -1390.0,1.0 -1391.0,1.0 -1392.0,1.0 -1393.0,1.0 -1394.0,1.0 -1395.0,1.0 -1396.0,1.0 -1397.0,1.0 -1398.0,1.0 -1399.0,1.0 -1400.0,1.0 -1401.0,1.0 -1402.0,1.0 -1403.0,1.0 -1404.0,1.0 -1405.0,1.0 -1406.0,1.0 -1407.0,1.0 -1408.0,1.0 -1409.0,1.0 -1410.0,1.0 -1411.0,1.0 -1412.0,1.0 -1413.0,1.0 -1414.0,1.0 -1415.0,1.0 -1416.0,1.0 -1417.0,1.0 -1418.0,1.0 -1419.0,1.0 -1420.0,1.0 -1421.0,1.0 -1422.0,1.0 -1423.0,1.0 -1424.0,1.0 -1425.0,1.0 -1426.0,1.0 -1427.0,1.0 -1428.0,1.0 -1429.0,1.0 -1430.0,1.0 -1431.0,1.0 -1432.0,1.0 -1433.0,1.0 -1434.0,1.0 -1435.0,1.0 -1436.0,1.0 -1437.0,1.0 -1438.0,1.0 -1439.0,1.0 -1440.0,1.0 -1441.0,1.0 -1442.0,1.0 -1443.0,1.0 -1444.0,1.0 -1445.0,1.0 -1446.0,1.0 -1447.0,1.0 -1448.0,1.0 -1449.0,1.0 -1450.0,1.0 -1451.0,1.0 -1452.0,1.0 -1453.0,1.0 -1454.0,1.0 -1455.0,1.0 -1456.0,1.0 -1457.0,1.0 -1458.0,1.0 -1459.0,1.0 -1460.0,1.0 -1461.0,1.0 -1462.0,1.0 -1463.0,1.0 -1464.0,1.0 -1465.0,1.0 -1466.0,1.0 -1467.0,1.0 -1468.0,1.0 -1469.0,1.0 -1470.0,1.0 -1471.0,1.0 -1472.0,1.0 -1473.0,1.0 -1474.0,1.0 -1475.0,1.0 -1476.0,1.0 -1477.0,1.0 -1478.0,1.0 -1479.0,1.0 -1480.0,1.0 -1481.0,1.0 -1482.0,1.0 -1483.0,1.0 -1484.0,1.0 -1485.0,1.0 -1486.0,1.0 -1487.0,1.0 -1488.0,1.0 -1489.0,1.0 -1490.0,1.0 -1491.0,1.0 -1492.0,1.0 -1493.0,1.0 -1494.0,1.0 -1495.0,1.0 -1496.0,1.0 -1497.0,1.0 -1498.0,1.0 -1499.0,1.0 -1500.0,1.0 -1501.0,1.0 -1502.0,1.0 -1503.0,1.0 -1504.0,1.0 -1505.0,1.0 -1506.0,1.0 -1507.0,1.0 -1508.0,1.0 -1509.0,1.0 -1510.0,1.0 -1511.0,1.0 -1512.0,1.0 -1513.0,1.0 -1514.0,1.0 -1515.0,1.0 -1516.0,1.0 -1517.0,1.0 -1518.0,1.0 -1519.0,1.0 -1520.0,1.0 -1521.0,1.0 -1522.0,1.0 -1523.0,1.0 -1524.0,1.0 -1525.0,1.0 -1526.0,1.0 -1527.0,1.0 -1528.0,1.0 -1529.0,1.0 -1530.0,1.0 -1531.0,1.0 -1532.0,1.0 -1533.0,1.0 -1534.0,1.0 -1535.0,1.0 -1536.0,1.0 -1537.0,1.0 -1538.0,1.0 -1539.0,1.0 -1540.0,1.0 -1541.0,1.0 -1542.0,1.0 -1543.0,1.0 -1544.0,1.0 -1545.0,1.0 -1546.0,1.0 -1547.0,1.0 -1548.0,1.0 -1549.0,1.0 -1550.0,1.0 -1551.0,1.0 -1552.0,1.0 -1553.0,1.0 -1554.0,1.0 -1555.0,1.0 -1556.0,1.0 -1557.0,1.0 -1558.0,1.0 -1559.0,1.0 -1560.0,1.0 -1561.0,1.0 -1562.0,1.0 -1563.0,1.0 -1564.0,1.0 -1565.0,1.0 -1566.0,1.0 -1567.0,1.0 -1568.0,1.0 -1569.0,1.0 -1570.0,1.0 -1571.0,1.0 -1572.0,1.0 -1573.0,1.0 -1574.0,1.0 -1575.0,1.0 -1576.0,1.0 -1577.0,1.0 -1578.0,1.0 -1579.0,1.0 -1580.0,1.0 -1581.0,1.0 -1582.0,1.0 -1583.0,1.0 -1584.0,1.0 -1585.0,1.0 -1586.0,1.0 -1587.0,1.0 -1588.0,1.0 -1589.0,1.0 -1590.0,1.0 -1591.0,1.0 -1592.0,1.0 -1593.0,1.0 -1594.0,1.0 -1595.0,1.0 -1596.0,1.0 -1597.0,1.0 -1598.0,1.0 -1599.0,1.0 -1600.0,1.0 -1601.0,1.0 -1602.0,1.0 -1603.0,1.0 -1604.0,1.0 -1605.0,1.0 -1606.0,1.0 -1607.0,1.0 -1608.0,1.0 -1609.0,1.0 -1610.0,1.0 -1611.0,1.0 -1612.0,1.0 -1613.0,1.0 -1614.0,1.0 -1615.0,1.0 -1616.0,1.0 -1617.0,1.0 -1618.0,1.0 -1619.0,1.0 -1620.0,1.0 -1621.0,1.0 -1622.0,1.0 -1623.0,1.0 -1624.0,1.0 -1625.0,1.0 -1626.0,1.0 -1627.0,1.0 -1628.0,1.0 -1629.0,1.0 -1630.0,1.0 -1631.0,1.0 -1632.0,1.0 -1633.0,1.0 -1634.0,1.0 -1635.0,1.0 -1636.0,1.0 -1637.0,1.0 -1638.0,1.0 -1639.0,1.0 -1640.0,1.0 -1641.0,1.0 -1642.0,1.0 -1643.0,1.0 -1644.0,1.0 -1645.0,1.0 -1646.0,1.0 -1647.0,1.0 -1648.0,1.0 -1649.0,1.0 -1650.0,1.0 -1651.0,1.0 -1652.0,1.0 -1653.0,1.0 -1654.0,1.0 -1655.0,1.0 -1656.0,1.0 -1657.0,1.0 -1658.0,1.0 -1659.0,1.0 -1660.0,1.0 -1661.0,1.0 -1662.0,1.0 -1663.0,1.0 -1664.0,1.0 -1665.0,1.0 -1666.0,1.0 -1667.0,1.0 -1668.0,1.0 -1669.0,1.0 -1670.0,1.0 -1671.0,1.0 -1672.0,1.0 -1673.0,1.0 -1674.0,1.0 -1675.0,1.0 -1676.0,1.0 -1677.0,1.0 -1678.0,1.0 -1679.0,1.0 -1680.0,1.0 -1681.0,1.0 -1682.0,1.0 -1683.0,1.0 -1684.0,1.0 -1685.0,1.0 -1686.0,1.0 -1687.0,1.0 -1688.0,1.0 -1689.0,1.0 -1690.0,1.0 -1691.0,1.0 -1692.0,1.0 -1693.0,1.0 -1694.0,1.0 -1695.0,1.0 -1696.0,1.0 -1697.0,1.0 -1698.0,1.0 -1699.0,1.0 -1700.0,1.0 -1701.0,1.0 -1702.0,1.0 -1703.0,1.0 -1704.0,1.0 -1705.0,1.0 -1706.0,1.0 -1707.0,1.0 -1708.0,1.0 -1709.0,1.0 -1710.0,1.0 -1711.0,1.0 -1712.0,1.0 -1713.0,1.0 -1714.0,1.0 -1715.0,1.0 -1716.0,1.0 -1717.0,1.0 -1718.0,1.0 -1719.0,1.0 -1720.0,1.0 -1721.0,1.0 -1722.0,1.0 -1723.0,1.0 -1724.0,1.0 -1725.0,1.0 -1726.0,1.0 -1727.0,1.0 -1728.0,1.0 -1729.0,1.0 -1730.0,1.0 -1731.0,1.0 -1732.0,1.0 -1733.0,1.0 -1734.0,1.0 -1735.0,1.0 -1736.0,1.0 -1737.0,1.0 -1738.0,1.0 -1739.0,1.0 -1740.0,1.0 -1741.0,1.0 -1742.0,1.0 -1743.0,1.0 -1744.0,1.0 -1745.0,1.0 -1746.0,1.0 -1747.0,1.0 -1748.0,1.0 -1749.0,1.0 -1750.0,1.0 -1751.0,1.0 -1752.0,1.0 -1753.0,1.0 -1754.0,1.0 -1755.0,1.0 -1756.0,1.0 -1757.0,1.0 -1758.0,1.0 -1759.0,1.0 -1760.0,1.0 -1761.0,1.0 -1762.0,1.0 -1763.0,1.0 -1764.0,1.0 -1765.0,1.0 -1766.0,1.0 -1767.0,1.0 -1768.0,1.0 -1769.0,1.0 -1770.0,1.0 -1771.0,1.0 -1772.0,1.0 -1773.0,1.0 -1774.0,1.0 -1775.0,1.0 -1776.0,1.0 -1777.0,1.0 -1778.0,1.0 -1779.0,1.0 -1780.0,1.0 -1781.0,1.0 -1782.0,1.0 -1783.0,1.0 -1784.0,1.0 -1785.0,1.0 -1786.0,1.0 -1787.0,1.0 -1788.0,1.0 -1789.0,1.0 -1790.0,1.0 -1791.0,1.0 -1792.0,1.0 -1793.0,1.0 -1794.0,1.0 -1795.0,1.0 -1796.0,1.0 -1797.0,1.0 -1798.0,1.0 -1799.0,1.0 -1800.0,1.0 -1801.0,1.0 -1802.0,1.0 -1803.0,1.0 -1804.0,1.0 -1805.0,1.0 -1806.0,1.0 -1807.0,1.0 -1808.0,1.0 -1809.0,1.0 -1810.0,1.0 -1811.0,1.0 -1812.0,1.0 -1813.0,1.0 -1814.0,1.0 -1815.0,1.0 -1816.0,1.0 -1817.0,1.0 -1818.0,1.0 -1819.0,1.0 -1820.0,1.0 -1821.0,1.0 -1822.0,1.0 -1823.0,1.0 -1824.0,1.0 -1825.0,1.0 -1826.0,1.0 -1827.0,1.0 -1828.0,1.0 -1829.0,1.0 -1830.0,1.0 -1831.0,1.0 -1832.0,1.0 -1833.0,1.0 -1834.0,1.0 -1835.0,1.0 -1836.0,1.0 -1837.0,1.0 -1838.0,1.0 -1839.0,1.0 -1840.0,1.0 -1841.0,1.0 -1842.0,1.0 -1843.0,1.0 -1844.0,1.0 -1845.0,1.0 -1846.0,1.0 -1847.0,1.0 -1848.0,1.0 -1849.0,1.0 -1850.0,1.0 -1851.0,1.0 -1852.0,1.0 -1853.0,1.0 -1854.0,1.0 -1855.0,1.0 -1856.0,1.0 -1857.0,1.0 -1858.0,1.0 -1859.0,1.0 -1860.0,1.0 -1861.0,1.0 -1862.0,1.0 -1863.0,1.0 -1864.0,1.0 -1865.0,1.0 -1866.0,1.0 -1867.0,1.0 -1868.0,1.0 -1869.0,1.0 -1870.0,1.0 -1871.0,1.0 -1872.0,1.0 -1873.0,1.0 -1874.0,1.0 -1875.0,1.0 -1876.0,1.0 -1877.0,1.0 -1878.0,1.0 -1879.0,1.0 -1880.0,1.0 -1881.0,1.0 -1882.0,1.0 -1883.0,1.0 -1884.0,1.0 -1885.0,1.0 -1886.0,1.0 -1887.0,1.0 -1888.0,1.0 -1889.0,1.0 -1890.0,1.0 -1891.0,1.0 -1892.0,1.0 -1893.0,1.0 -1894.0,1.0 -1895.0,1.0 -1896.0,1.0 -1897.0,1.0 -1898.0,1.0 -1899.0,1.0 -1900.0,1.0 -1901.0,1.0 -1902.0,1.0 -1903.0,1.0 -1904.0,1.0 -1905.0,1.0 -1906.0,1.0 -1907.0,1.0 -1908.0,1.0 -1909.0,1.0 -1910.0,1.0 -1911.0,1.0 -1912.0,1.0 -1913.0,1.0 -1914.0,1.0 -1915.0,1.0 -1916.0,1.0 -1917.0,1.0 -1918.0,1.0 -1919.0,1.0 -1920.0,1.0 -1921.0,1.0 -1922.0,1.0 -1923.0,1.0 -1924.0,1.0 -1925.0,1.0 -1926.0,1.0 -1927.0,1.0 -1928.0,1.0 -1929.0,1.0 -1930.0,1.0 -1931.0,1.0 -1932.0,1.0 -1933.0,1.0 -1934.0,1.0 -1935.0,1.0 -1936.0,1.0 -1937.0,1.0 -1938.0,1.0 -1939.0,1.0 -1940.0,1.0 -1941.0,1.0 -1942.0,1.0 -1943.0,1.0 -1944.0,1.0 -1945.0,1.0 -1946.0,1.0 -1947.0,1.0 -1948.0,1.0 -1949.0,1.0 -1950.0,1.0 -1951.0,1.0 -1952.0,1.0 -1953.0,1.0 -1954.0,1.0 -1955.0,1.0 -1956.0,1.0 -1957.0,1.0 -1958.0,1.0 -1959.0,1.0 -1960.0,1.0 -1961.0,1.0 -1962.0,1.0 -1963.0,1.0 -1964.0,1.0 -1965.0,1.0 -1966.0,1.0 -1967.0,1.0 -1968.0,1.0 -1969.0,1.0 -1970.0,1.0 -1971.0,1.0 -1972.0,1.0 -1973.0,1.0 -1974.0,1.0 -1975.0,1.0 -1976.0,1.0 -1977.0,1.0 -1978.0,1.0 -1979.0,1.0 -1980.0,1.0 -1981.0,1.0 -1982.0,1.0 -1983.0,1.0 -1984.0,1.0 -1985.0,1.0 -1986.0,1.0 -1987.0,1.0 -1988.0,1.0 -1989.0,1.0 -1990.0,1.0 -1991.0,1.0 -1992.0,1.0 -1993.0,1.0 -1994.0,1.0 -1995.0,1.0 -1996.0,1.0 -1997.0,1.0 -1998.0,1.0 -1999.0,1.0 -2000.0,1.0 -2001.0,1.0 -2002.0,1.0 -2003.0,1.0 -2004.0,1.0 -2005.0,1.0 -2006.0,1.0 -2007.0,1.0 -2008.0,1.0 -2009.0,1.0 -2010.0,1.0 -2011.0,1.0 -2012.0,1.0 -2013.0,1.0 -2014.0,1.0 -2015.0,1.0 -2016.0,1.0 -2017.0,1.0 -2018.0,1.0 -2019.0,1.0 -2020.0,1.0 -2021.0,1.0 -2022.0,1.0 -2023.0,1.0 -2024.0,1.0 -2025.0,1.0 -2026.0,1.0 -2027.0,1.0 -2028.0,1.0 -2029.0,1.0 -2030.0,1.0 -2031.0,1.0 -2032.0,1.0 -2033.0,1.0 -2034.0,1.0 -2035.0,1.0 -2036.0,1.0 -2037.0,1.0 -2038.0,1.0 -2039.0,1.0 -2040.0,1.0 -2041.0,1.0 -2042.0,1.0 -2043.0,1.0 -2044.0,1.0 -2045.0,1.0 -2046.0,1.0 -2047.0,1.0 -2048.0,1.0 -2049.0,1.0 -2050.0,1.0 -2051.0,1.0 -2052.0,1.0 -2053.0,1.0 -2054.0,1.0 -2055.0,1.0 -2056.0,1.0 -2057.0,1.0 -2058.0,1.0 -2059.0,1.0 -2060.0,1.0 -2061.0,1.0 -2062.0,1.0 -2063.0,1.0 -2064.0,1.0 -2065.0,1.0 -2066.0,1.0 -2067.0,1.0 -2068.0,1.0 -2069.0,1.0 -2070.0,1.0 -2071.0,1.0 -2072.0,1.0 -2073.0,1.0 -2074.0,1.0 -2075.0,1.0 -2076.0,1.0 -2077.0,1.0 -2078.0,1.0 -2079.0,1.0 -2080.0,1.0 -2081.0,1.0 -2082.0,1.0 -2083.0,1.0 -2084.0,1.0 -2085.0,1.0 -2086.0,1.0 -2087.0,1.0 -2088.0,1.0 -2089.0,1.0 -2090.0,1.0 -2091.0,1.0 -2092.0,1.0 -2093.0,1.0 -2094.0,1.0 -2095.0,1.0 -2096.0,1.0 -2097.0,1.0 -2098.0,1.0 -2099.0,1.0 -2100.0,1.0 -2101.0,1.0 -2102.0,1.0 -2103.0,1.0 -2104.0,1.0 -2105.0,1.0 -2106.0,1.0 -2107.0,1.0 -2108.0,1.0 -2109.0,1.0 -2110.0,1.0 -2111.0,1.0 -2112.0,1.0 -2113.0,1.0 -2114.0,1.0 -2115.0,1.0 -2116.0,1.0 -2117.0,1.0 -2118.0,1.0 -2119.0,1.0 -2120.0,1.0 -2121.0,1.0 -2122.0,1.0 -2123.0,1.0 -2124.0,1.0 -2125.0,1.0 -2126.0,1.0 -2127.0,1.0 -2128.0,1.0 -2129.0,1.0 -2130.0,1.0 -2131.0,1.0 -2132.0,1.0 -2133.0,1.0 -2134.0,1.0 -2135.0,1.0 -2136.0,1.0 -2137.0,1.0 -2138.0,1.0 -2139.0,1.0 -2140.0,1.0 -2141.0,1.0 -2142.0,1.0 -2143.0,1.0 -2144.0,1.0 -2145.0,1.0 -2146.0,1.0 -2147.0,1.0 -2148.0,1.0 -2149.0,1.0 -2150.0,1.0 -2151.0,1.0 -2152.0,1.0 -2153.0,1.0 -2154.0,1.0 -2155.0,1.0 -2156.0,1.0 -2157.0,1.0 -2158.0,1.0 -2159.0,1.0 -2160.0,1.0 -2161.0,1.0 -2162.0,1.0 -2163.0,1.0 -2164.0,1.0 -2165.0,1.0 -2166.0,1.0 -2167.0,1.0 -2168.0,1.0 -2169.0,1.0 -2170.0,1.0 -2171.0,1.0 -2172.0,1.0 -2173.0,1.0 -2174.0,1.0 -2175.0,1.0 -2176.0,1.0 -2177.0,1.0 -2178.0,1.0 -2179.0,1.0 -2180.0,1.0 -2181.0,1.0 -2182.0,1.0 -2183.0,1.0 -2184.0,1.0 -2185.0,1.0 -2186.0,1.0 -2187.0,1.0 -2188.0,1.0 -2189.0,1.0 -2190.0,1.0 -2191.0,1.0 -2192.0,1.0 -2193.0,1.0 -2194.0,1.0 -2195.0,1.0 -2196.0,1.0 -2197.0,1.0 -2198.0,1.0 -2199.0,1.0 -2200.0,1.0 -2201.0,1.0 -2202.0,1.0 -2203.0,1.0 -2204.0,1.0 -2205.0,1.0 -2206.0,1.0 -2207.0,1.0 -2208.0,1.0 -2209.0,1.0 -2210.0,1.0 -2211.0,1.0 -2212.0,1.0 -2213.0,1.0 -2214.0,1.0 -2215.0,1.0 -2216.0,1.0 -2217.0,1.0 -2218.0,1.0 -2219.0,1.0 -2220.0,1.0 -2221.0,1.0 -2222.0,1.0 -2223.0,1.0 -2224.0,1.0 -2225.0,1.0 -2226.0,1.0 -2227.0,1.0 -2228.0,1.0 -2229.0,1.0 -2230.0,1.0 -2231.0,1.0 -2232.0,1.0 -2233.0,1.0 -2234.0,1.0 -2235.0,1.0 -2236.0,1.0 -2237.0,1.0 -2238.0,1.0 -2239.0,1.0 -2240.0,1.0 -2241.0,1.0 -2242.0,1.0 -2243.0,1.0 -2244.0,1.0 -2245.0,1.0 -2246.0,1.0 -2247.0,1.0 -2248.0,1.0 -2249.0,1.0 -2250.0,1.0 -2251.0,1.0 -2252.0,1.0 -2253.0,1.0 -2254.0,1.0 -2255.0,1.0 -2256.0,1.0 -2257.0,1.0 -2258.0,1.0 -2259.0,1.0 -2260.0,1.0 -2261.0,1.0 -2262.0,1.0 -2263.0,1.0 -2264.0,1.0 -2265.0,1.0 -2266.0,1.0 -2267.0,1.0 -2268.0,1.0 -2269.0,1.0 -2270.0,1.0 -2271.0,1.0 -2272.0,1.0 -2273.0,1.0 -2274.0,1.0 -2275.0,1.0 -2276.0,1.0 -2277.0,1.0 -2278.0,1.0 -2279.0,1.0 -2280.0,1.0 -2281.0,1.0 -2282.0,1.0 -2283.0,1.0 -2284.0,1.0 -2285.0,1.0 -2286.0,1.0 -2287.0,1.0 -2288.0,1.0 -2289.0,1.0 -2290.0,1.0 -2291.0,1.0 -2292.0,1.0 -2293.0,1.0 -2294.0,1.0 -2295.0,1.0 -2296.0,1.0 -2297.0,1.0 -2298.0,1.0 -2299.0,1.0 -2300.0,1.0 -2301.0,1.0 -2302.0,1.0 -2303.0,1.0 -2304.0,1.0 -2305.0,1.0 -2306.0,1.0 -2307.0,1.0 -2308.0,1.0 -2309.0,1.0 -2310.0,1.0 -2311.0,1.0 -2312.0,1.0 -2313.0,1.0 -2314.0,1.0 -2315.0,1.0 -2316.0,1.0 -2317.0,1.0 -2318.0,1.0 -2319.0,1.0 -2320.0,1.0 -2321.0,1.0 -2322.0,1.0 -2323.0,1.0 -2324.0,1.0 -2325.0,1.0 -2326.0,1.0 -2327.0,1.0 -2328.0,1.0 -2329.0,1.0 -2330.0,1.0 -2331.0,1.0 -2332.0,1.0 -2333.0,1.0 -2334.0,1.0 -2335.0,1.0 -2336.0,1.0 -2337.0,1.0 -2338.0,1.0 -2339.0,1.0 -2340.0,1.0 -2341.0,1.0 -2342.0,1.0 -2343.0,1.0 -2344.0,1.0 -2345.0,1.0 -2346.0,1.0 -2347.0,1.0 -2348.0,1.0 -2349.0,1.0 -2350.0,1.0 -2351.0,1.0 -2352.0,1.0 -2353.0,1.0 -2354.0,1.0 -2355.0,1.0 -2356.0,1.0 -2357.0,1.0 -2358.0,1.0 -2359.0,1.0 -2360.0,1.0 -2361.0,1.0 -2362.0,1.0 -2363.0,1.0 -2364.0,1.0 -2365.0,1.0 -2366.0,1.0 -2367.0,1.0 -2368.0,1.0 -2369.0,1.0 -2370.0,1.0 -2371.0,1.0 -2372.0,1.0 -2373.0,1.0 -2374.0,1.0 -2375.0,1.0 -2376.0,1.0 -2377.0,1.0 -2378.0,1.0 -2379.0,1.0 -2380.0,1.0 -2381.0,1.0 -2382.0,1.0 -2383.0,1.0 -2384.0,1.0 -2385.0,1.0 -2386.0,1.0 -2387.0,1.0 -2388.0,1.0 -2389.0,1.0 -2390.0,1.0 -2391.0,1.0 -2392.0,1.0 -2393.0,1.0 -2394.0,1.0 -2395.0,1.0 -2396.0,1.0 -2397.0,1.0 -2398.0,1.0 -2399.0,1.0 -2400.0,1.0 -2401.0,1.0 -2402.0,1.0 -2403.0,1.0 -2404.0,1.0 -2405.0,1.0 -2406.0,1.0 -2407.0,1.0 -2408.0,1.0 -2409.0,1.0 -2410.0,1.0 -2411.0,1.0 -2412.0,1.0 -2413.0,1.0 -2414.0,1.0 -2415.0,1.0 -2416.0,1.0 -2417.0,1.0 -2418.0,1.0 -2419.0,1.0 -2420.0,1.0 -2421.0,1.0 -2422.0,1.0 -2423.0,1.0 -2424.0,1.0 -2425.0,1.0 -2426.0,1.0 -2427.0,1.0 -2428.0,1.0 -2429.0,1.0 -2430.0,1.0 -2431.0,1.0 -2432.0,1.0 -2433.0,1.0 -2434.0,1.0 -2435.0,1.0 -2436.0,1.0 -2437.0,1.0 -2438.0,1.0 -2439.0,1.0 -2440.0,1.0 -2441.0,1.0 -2442.0,1.0 -2443.0,1.0 -2444.0,1.0 -2445.0,1.0 -2446.0,1.0 -2447.0,1.0 -2448.0,1.0 -2449.0,1.0 -2450.0,1.0 -2451.0,1.0 -2452.0,1.0 -2453.0,1.0 -2454.0,1.0 -2455.0,1.0 -2456.0,1.0 -2457.0,1.0 -2458.0,1.0 -2459.0,1.0 -2460.0,1.0 -2461.0,1.0 -2462.0,1.0 -2463.0,1.0 -2464.0,1.0 -2465.0,1.0 -2466.0,1.0 -2467.0,1.0 -2468.0,1.0 -2469.0,1.0 -2470.0,1.0 -2471.0,1.0 -2472.0,1.0 -2473.0,1.0 -2474.0,1.0 -2475.0,1.0 -2476.0,1.0 -2477.0,1.0 -2478.0,1.0 -2479.0,1.0 -2480.0,1.0 -2481.0,1.0 -2482.0,1.0 -2483.0,1.0 -2484.0,1.0 -2485.0,1.0 -2486.0,1.0 -2487.0,1.0 -2488.0,1.0 -2489.0,1.0 -2490.0,1.0 -2491.0,1.0 -2492.0,1.0 -2493.0,1.0 -2494.0,1.0 -2495.0,1.0 -2496.0,1.0 -2497.0,1.0 -2498.0,1.0 -2499.0,1.0 -2500.0,1.0 -2501.0,1.0 -2502.0,1.0 -2503.0,1.0 -2504.0,1.0 -2505.0,1.0 -2506.0,1.0 -2507.0,1.0 -2508.0,1.0 -2509.0,1.0 -2510.0,1.0 -2511.0,1.0 -2512.0,1.0 -2513.0,1.0 -2514.0,1.0 -2515.0,1.0 -2516.0,1.0 -2517.0,1.0 -2518.0,1.0 -2519.0,1.0 -2520.0,1.0 -2521.0,1.0 -2522.0,1.0 -2523.0,1.0 -2524.0,1.0 -2525.0,1.0 -2526.0,1.0 -2527.0,1.0 -2528.0,1.0 -2529.0,1.0 -2530.0,1.0 -2531.0,1.0 -2532.0,1.0 -2533.0,1.0 -2534.0,1.0 -2535.0,1.0 -2536.0,1.0 -2537.0,1.0 -2538.0,1.0 -2539.0,1.0 -2540.0,1.0 -2541.0,1.0 -2542.0,1.0 -2543.0,1.0 -2544.0,1.0 -2545.0,1.0 -2546.0,1.0 -2547.0,1.0 -2548.0,1.0 -2549.0,1.0 -2550.0,1.0 -2551.0,1.0 -2552.0,1.0 -2553.0,1.0 -2554.0,1.0 -2555.0,1.0 -2556.0,1.0 -2557.0,1.0 -2558.0,1.0 -2559.0,1.0 -2560.0,1.0 -2561.0,1.0 -2562.0,1.0 -2563.0,1.0 -2564.0,1.0 -2565.0,1.0 -2566.0,1.0 -2567.0,1.0 -2568.0,1.0 -2569.0,1.0 -2570.0,1.0 -2571.0,1.0 -2572.0,1.0 -2573.0,1.0 -2574.0,1.0 -2575.0,1.0 -2576.0,1.0 -2577.0,1.0 -2578.0,1.0 -2579.0,1.0 -2580.0,1.0 -2581.0,1.0 -2582.0,1.0 -2583.0,1.0 -2584.0,1.0 -2585.0,1.0 -2586.0,1.0 -2587.0,1.0 -2588.0,1.0 -2589.0,1.0 -2590.0,1.0 -2591.0,1.0 -2592.0,1.0 -2593.0,1.0 -2594.0,1.0 -2595.0,1.0 -2596.0,1.0 -2597.0,1.0 -2598.0,1.0 -2599.0,1.0 -2600.0,1.0 -2601.0,1.0 -2602.0,1.0 -2603.0,1.0 -2604.0,1.0 -2605.0,1.0 -2606.0,1.0 -2607.0,1.0 -2608.0,1.0 -2609.0,1.0 -2610.0,1.0 -2611.0,1.0 -2612.0,1.0 -2613.0,1.0 -2614.0,1.0 -2615.0,1.0 -2616.0,1.0 -2617.0,1.0 -2618.0,1.0 -2619.0,1.0 -2620.0,1.0 -2621.0,1.0 -2622.0,1.0 -2623.0,1.0 -2624.0,1.0 -2625.0,1.0 -2626.0,1.0 -2627.0,1.0 -2628.0,1.0 -2629.0,1.0 -2630.0,1.0 -2631.0,1.0 -2632.0,1.0 -2633.0,1.0 -2634.0,1.0 -2635.0,1.0 -2636.0,1.0 -2637.0,1.0 -2638.0,1.0 -2639.0,1.0 -2640.0,1.0 -2641.0,1.0 -2642.0,1.0 -2643.0,1.0 -2644.0,1.0 -2645.0,1.0 -2646.0,1.0 -2647.0,1.0 -2648.0,1.0 -2649.0,1.0 -2650.0,1.0 -2651.0,1.0 -2652.0,1.0 -2653.0,1.0 -2654.0,1.0 -2655.0,1.0 -2656.0,1.0 -2657.0,1.0 -2658.0,1.0 -2659.0,1.0 -2660.0,1.0 -2661.0,1.0 -2662.0,1.0 -2663.0,1.0 -2664.0,1.0 -2665.0,1.0 -2666.0,1.0 -2667.0,1.0 -2668.0,1.0 -2669.0,1.0 -2670.0,1.0 -2671.0,1.0 -2672.0,1.0 -2673.0,1.0 -2674.0,1.0 -2675.0,1.0 -2676.0,1.0 -2677.0,1.0 -2678.0,1.0 -2679.0,1.0 -2680.0,1.0 -2681.0,1.0 -2682.0,1.0 -2683.0,1.0 -2684.0,1.0 -2685.0,1.0 -2686.0,1.0 -2687.0,1.0 -2688.0,1.0 -2689.0,1.0 -2690.0,1.0 -2691.0,1.0 -2692.0,1.0 -2693.0,1.0 -2694.0,1.0 -2695.0,1.0 -2696.0,1.0 -2697.0,1.0 -2698.0,1.0 -2699.0,1.0 -2700.0,1.0 -2701.0,1.0 -2702.0,1.0 -2703.0,1.0 -2704.0,1.0 -2705.0,1.0 -2706.0,1.0 -2707.0,1.0 -2708.0,1.0 -2709.0,1.0 -2710.0,1.0 -2711.0,1.0 -2712.0,1.0 -2713.0,1.0 -2714.0,1.0 -2715.0,1.0 -2716.0,1.0 -2717.0,1.0 -2718.0,1.0 -2719.0,1.0 -2720.0,1.0 -2721.0,1.0 -2722.0,1.0 -2723.0,1.0 -2724.0,1.0 -2725.0,1.0 -2726.0,1.0 -2727.0,1.0 -2728.0,1.0 -2729.0,1.0 -2730.0,1.0 -2731.0,1.0 -2732.0,1.0 -2733.0,1.0 -2734.0,1.0 -2735.0,1.0 -2736.0,1.0 -2737.0,1.0 -2738.0,1.0 -2739.0,1.0 -2740.0,1.0 -2741.0,1.0 -2742.0,1.0 -2743.0,1.0 -2744.0,1.0 -2745.0,1.0 -2746.0,1.0 -2747.0,1.0 -2748.0,1.0 -2749.0,1.0 -2750.0,1.0 -2751.0,1.0 -2752.0,1.0 -2753.0,1.0 -2754.0,1.0 -2755.0,1.0 -2756.0,1.0 -2757.0,1.0 -2758.0,1.0 -2759.0,1.0 -2760.0,1.0 -2761.0,1.0 -2762.0,1.0 -2763.0,1.0 -2764.0,1.0 -2765.0,1.0 -2766.0,1.0 -2767.0,1.0 -2768.0,1.0 -2769.0,1.0 -2770.0,1.0 -2771.0,1.0 -2772.0,1.0 -2773.0,1.0 -2774.0,1.0 -2775.0,1.0 -2776.0,1.0 -2777.0,1.0 -2778.0,1.0 -2779.0,1.0 -2780.0,1.0274113657227644 -2781.0,1.0774113657227644 -2782.0,1.1274113657227645 -2783.0,1.1774113657227645 -2784.0,1.2274113657227645 -2785.0,1.2774113657227644 -2786.0,1.3274113657227644 -2787.0,1.3774113657227645 -2788.0,1.4274113657227645 -2789.0,1.4774113657227645 -2790.0,1.5274113657227644 -2791.0,1.5774113657227646 -2792.0,1.6274113657227645 -2793.0,1.6774113657227645 -2794.0,1.7274113657227645 -2795.0,1.7774113657227644 -2796.0,1.8274113657227646 -2797.0,1.8774113657227645 -2798.0,1.9274113657227645 -2799.0,1.9774113657227645 -2800.0,2.027411365722765 -2801.0,2.0774113657227646 -2802.0,2.1274113657227645 -2803.0,2.1774113657227643 -2804.0,2.2274113657227645 -2805.0,2.277411365722765 -2806.0,2.3274113657227646 -2807.0,2.3774113657227645 -2808.0,2.4274113657227643 -2809.0,2.4774113657227645 -2810.0,2.527411365722765 -2811.0,2.5774113657227646 -2812.0,2.6274113657227645 -2813.0,2.6774113657227643 -2814.0,2.7274113657227645 -2815.0,2.777411365722765 -2816.0,2.8274113657227646 -2817.0,2.8774113657227645 -2818.0,2.9274113657227643 -2819.0,2.9774113657227645 -2820.0,3.0274113657227644 -2821.0,3.0774113657227646 -2822.0,3.1274113657227645 -2823.0,3.1774113657227647 -2824.0,3.2274113657227645 -2825.0,3.2774113657227644 -2826.0,3.3274113657227646 -2827.0,3.3774113657227645 -2828.0,3.4274113657227647 -2829.0,3.4774113657227645 -2830.0,3.527411365722765 -2831.0,3.5774113657227646 -2832.0,3.6274113657227645 -2833.0,3.6774113657227647 -2834.0,3.7274113657227645 -2835.0,3.777411365722765 -2836.0,3.8274113657227646 -2837.0,3.8774113657227645 -2838.0,3.9274113657227647 -2839.0,3.9774113657227645 -2840.0,4.027411365722765 -2841.0,4.077411365722765 -2842.0,4.1274113657227645 -2843.0,4.177411365722765 -2844.0,4.227411365722764 -2845.0,4.277411365722765 -2846.0,4.327411365722765 -2847.0,4.3774113657227645 -2848.0,4.427411365722765 -2849.0,4.477411365722764 -2850.0,4.527411365722765 -2851.0,4.577411365722765 -2852.0,4.6274113657227645 -2853.0,4.677411365722765 -2854.0,4.727411365722764 -2855.0,4.777411365722765 -2856.0,4.827411365722765 -2857.0,4.8774113657227645 -2858.0,4.927411365722765 -2859.0,4.977411365722764 -2860.0,5.027411365722765 -2861.0,5.077411365722765 -2862.0,5.1274113657227645 -2863.0,5.177411365722764 -2864.0,5.227411365722765 -2865.0,5.277411365722765 -2866.0,5.327411365722765 -2867.0,5.3774113657227645 -2868.0,5.427411365722764 -2869.0,5.477411365722765 -2870.0,5.527411365722765 -2871.0,5.577411365722765 -2872.0,5.6274113657227645 -2873.0,5.677411365722764 -2874.0,5.727411365722765 -2875.0,5.777411365722765 -2876.0,5.827411365722765 -2877.0,5.8774113657227645 -2878.0,5.927411365722765 -2879.0,5.977411365722765 -2880.0,5.972588634277235 -2881.0,5.922588634277235 -2882.0,5.8725886342772355 -2883.0,5.822588634277236 -2884.0,5.772588634277236 -2885.0,5.722588634277235 -2886.0,5.672588634277235 -2887.0,5.6225886342772355 -2888.0,5.572588634277236 -2889.0,5.522588634277236 -2890.0,5.472588634277235 -2891.0,5.422588634277235 -2892.0,5.3725886342772355 -2893.0,5.322588634277236 -2894.0,5.272588634277236 -2895.0,5.222588634277235 -2896.0,5.172588634277235 -2897.0,5.1225886342772355 -2898.0,5.072588634277236 -2899.0,5.022588634277236 -2900.0,4.972588634277235 -2901.0,4.922588634277235 -2902.0,4.8725886342772355 -2903.0,4.822588634277236 -2904.0,4.772588634277236 -2905.0,4.722588634277235 -2906.0,4.672588634277235 -2907.0,4.6225886342772355 -2908.0,4.572588634277236 -2909.0,4.522588634277236 -2910.0,4.472588634277235 -2911.0,4.422588634277235 -2912.0,4.3725886342772355 -2913.0,4.322588634277236 -2914.0,4.272588634277236 -2915.0,4.222588634277235 -2916.0,4.172588634277235 -2917.0,4.1225886342772355 -2918.0,4.072588634277236 -2919.0,4.022588634277236 -2920.0,3.9725886342772356 -2921.0,3.9225886342772354 -2922.0,3.8725886342772355 -2923.0,3.8225886342772353 -2924.0,3.7725886342772355 -2925.0,3.7225886342772356 -2926.0,3.6725886342772354 -2927.0,3.6225886342772355 -2928.0,3.5725886342772353 -2929.0,3.5225886342772355 -2930.0,3.472588634277235 -2931.0,3.4225886342772354 -2932.0,3.3725886342772355 -2933.0,3.3225886342772353 -2934.0,3.2725886342772355 -2935.0,3.222588634277235 -2936.0,3.1725886342772354 -2937.0,3.1225886342772355 -2938.0,3.0725886342772353 -2939.0,3.0225886342772355 -2940.0,2.972588634277235 -2941.0,2.9225886342772354 -2942.0,2.8725886342772355 -2943.0,2.8225886342772353 -2944.0,2.7725886342772355 -2945.0,2.722588634277235 -2946.0,2.6725886342772354 -2947.0,2.6225886342772355 -2948.0,2.5725886342772353 -2949.0,2.5225886342772355 -2950.0,2.472588634277235 -2951.0,2.4225886342772354 -2952.0,2.3725886342772355 -2953.0,2.3225886342772353 -2954.0,2.2725886342772355 -2955.0,2.222588634277235 -2956.0,2.1725886342772354 -2957.0,2.1225886342772355 -2958.0,2.0725886342772353 -2959.0,2.0225886342772355 -2960.0,1.9725886342772352 -2961.0,1.9225886342772354 -2962.0,1.8725886342772355 -2963.0,1.8225886342772357 -2964.0,1.772588634277235 -2965.0,1.7225886342772352 -2966.0,1.6725886342772354 -2967.0,1.6225886342772355 -2968.0,1.5725886342772357 -2969.0,1.522588634277235 -2970.0,1.4725886342772352 -2971.0,1.4225886342772354 -2972.0,1.3725886342772355 -2973.0,1.3225886342772357 -2974.0,1.272588634277235 -2975.0,1.2225886342772352 -2976.0,1.1725886342772354 -2977.0,1.1225886342772355 -2978.0,1.0725886342772348 -2979.0,1.022588634277235 -2980.0,0.9998106669194948 -2981.0,0.9994654041770706 -2982.0,0.9991202606635817 -2983.0,0.998775236337855 -2984.0,0.9984303311587316 -2985.0,0.9980855450850667 -2986.0,0.9977408780757301 -2987.0,0.9973963300896053 -2988.0,0.9970519010855904 -2989.0,0.9967075910225974 -2990.0,0.9963633998595527 -2991.0,0.9960193275553968 -2992.0,0.9956753740690844 -2993.0,0.9953315393595843 -2994.0,0.9949878233858795 -2995.0,0.9946442261069673 -2996.0,0.994300747481859 -2997.0,0.9939573874695802 -2998.0,0.9936141460291703 -2999.0,0.9932710231196834 -3000.0,0.9929280187001872 -3001.0,0.9925851327297639 -3002.0,0.9922423651675096 -3003.0,0.9918997159725348 -3004.0,0.9915571851039637 -3005.0,0.9912147725209352 -3006.0,0.9908724781826017 -3007.0,0.9905303020481301 -3008.0,0.9901882440767011 -3009.0,0.98984630422751 -3010.0,0.9895044824597656 -3011.0,0.9891627787326913 -3012.0,0.9888211930055241 -3013.0,0.9884797252375154 -3014.0,0.9881383753879306 -3015.0,0.9877971434160492 -3016.0,0.9874560292811646 -3017.0,0.9871150329425844 -3018.0,0.9867741543596302 -3019.0,0.9864333934916378 -3020.0,0.986092750297957 -3021.0,0.9857522247379511 -3022.0,0.9854118167709983 -3023.0,0.9850715263564903 -3024.0,0.9847313534538329 -3025.0,0.984391298022446 -3026.0,0.9840513600217633 -3027.0,0.9837115394112329 -3028.0,0.9833718361503165 -3029.0,0.9830322501984902 -3030.0,0.9826927815152436 -3031.0,0.9823534300600809 -3032.0,0.9820141957925196 -3033.0,0.9816750786720917 -3034.0,0.9813360786583429 -3035.0,0.9809971957108332 -3036.0,0.9806584297891361 -3037.0,0.9803197808528393 -3038.0,0.9799812488615446 -3039.0,0.9796428337748675 -3040.0,0.9793045355524376 -3041.0,0.9789663541538983 -3042.0,0.9786282895389071 -3043.0,0.9782903416671354 -3044.0,0.9779525104982684 -3045.0,0.9776147959920053 -3046.0,0.9772771981080592 -3047.0,0.9769397168061572 -3048.0,0.9766023520460403 -3049.0,0.9762651037874632 -3050.0,0.9759279719901949 -3051.0,0.9755909566140176 -3052.0,0.9752540576187282 -3053.0,0.9749172749641369 -3054.0,0.9745806086100682 -3055.0,0.97424405851636 -3056.0,0.9739076246428645 -3057.0,0.9735713069494475 -3058.0,0.9732351053959888 -3059.0,0.972899019942382 -3060.0,0.9725630505485346 -3061.0,0.9722271971743678 -3062.0,0.9718914597798168 -3063.0,0.9715558383248306 -3064.0,0.971220332769372 -3065.0,0.9708849430734176 -3066.0,0.9705496691969578 -3067.0,0.970214511099997 -3068.0,0.9698794687425532 -3069.0,0.9695445420846583 -3070.0,0.969209731086358 -3071.0,0.9688750357077118 -3072.0,0.968540455908793 -3073.0,0.9682059916496887 -3074.0,0.9678716428904995 -3075.0,0.9675374095913404 -3076.0,0.9672032917123397 -3077.0,0.9668692892136393 -3078.0,0.9665354020553955 -3079.0,0.9662016301977777 -3080.0,0.9658679736009695 -3081.0,0.9655344322251682 -3082.0,0.9652010060305846 -3083.0,0.9648676949774434 -3084.0,0.964534499025983 -3085.0,0.9642014181364557 -3086.0,0.9638684522691272 -3087.0,0.9635356013842772 -3088.0,0.963202865442199 -3089.0,0.9628702444031996 -3090.0,0.9625377382275997 -3091.0,0.9622053468757339 -3092.0,0.9618730703079501 -3093.0,0.9615409084846104 -3094.0,0.9612088613660901 -3095.0,0.9608769289127784 -3096.0,0.9605451110850785 -3097.0,0.9602134078434065 -3098.0,0.9598818191481928 -3099.0,0.9595503449598813 -3100.0,0.9592189852389297 -3101.0,0.9588877399458089 -3102.0,0.958556609041004 -3103.0,0.9582255924850134 -3104.0,0.9578946902383493 -3105.0,0.9575639022615372 -3106.0,0.9572332285151169 -3107.0,0.9569026689596413 -3108.0,0.956572223555677 -3109.0,0.9562418922638043 -3110.0,0.9559116750446169 -3111.0,0.9555815718587227 -3112.0,0.9552515826667425 -3113.0,0.9549217074293109 -3114.0,0.9545919461070765 -3115.0,0.954262298660701 -3116.0,0.9539327650508599 -3117.0,0.9536033452382422 -3118.0,0.9532740391835506 -3119.0,0.9529448468475011 -3120.0,0.9526157681908237 -3121.0,0.9522868031742617 -3122.0,0.9519579517585718 -3123.0,0.9516292139045245 -3124.0,0.9513005895729038 -3125.0,0.9509720787245072 -3126.0,0.9506436813201457 -3127.0,0.9503153973206439 -3128.0,0.94998722668684 -3129.0,0.9496591693795855 -3130.0,0.9493312253597457 -3131.0,0.9490033945881992 -3132.0,0.9486756770258381 -3133.0,0.9483480726335682 -3134.0,0.9480205813723087 -3135.0,0.9476932032029922 -3136.0,0.947365938086565 -3137.0,0.9470387859839865 -3138.0,0.94671174685623 -3139.0,0.9463848206642823 -3140.0,0.9460580073691431 -3141.0,0.9457313069318263 -3142.0,0.9454047193133587 -3143.0,0.9450782444747808 -3144.0,0.9447518823771467 -3145.0,0.9444256329815237 -3146.0,0.9440994962489925 -3147.0,0.9437734721406476 -3148.0,0.9434475606175964 -3149.0,0.9431217616409602 -3150.0,0.9427960751718736 -3151.0,0.9424705011714846 -3152.0,0.9421450396009544 -3153.0,0.9418196904214581 -3154.0,0.9414944535941836 -3155.0,0.9411693290803327 -3156.0,0.9408443168411205 -3157.0,0.9405194168377752 -3158.0,0.9401946290315386 -3159.0,0.9398699533836661 -3160.0,0.9395453898554261 -3161.0,0.9392209384081006 -3162.0,0.9388965990029848 -3163.0,0.9385723716013876 -3164.0,0.9382482561646308 -3165.0,0.9379242526540499 -3166.0,0.9376003610309936 -3167.0,0.9372765812568241 -3168.0,0.9369529132929166 -3169.0,0.9366293571006602 -3170.0,0.9363059126414568 -3171.0,0.9359825798767218 -3172.0,0.9356593587678841 -3173.0,0.9353362492763856 -3174.0,0.9350132513636819 -3175.0,0.9346903649912415 -3176.0,0.9343675901205465 -3177.0,0.9340449267130922 -3178.0,0.9337223747303873 -3179.0,0.9333999341339537 -3180.0,0.9330776048853264 -3181.0,0.9327553869460541 -3182.0,0.9324332802776983 -3183.0,0.9321112848418343 -3184.0,0.9317894006000501 -3185.0,0.9314676275139475 -3186.0,0.9311459655451413 -3187.0,0.9308244146552593 -3188.0,0.9305029748059432 -3189.0,0.9301816459588473 -3190.0,0.9298604280756395 -3191.0,0.929539321118001 -3192.0,0.9292183250476257 -3193.0,0.9288974398262215 -3194.0,0.928576665415509 -3195.0,0.928256001777222 -3196.0,0.9279354488731079 -3197.0,0.9276150066649269 -3198.0,0.9272946751144526 -3199.0,0.9269744541834719 -3200.0,0.9266543438337848 -3201.0,0.9263343440272043 -3202.0,0.9260144547255568 -3203.0,0.9256946758906819 -3204.0,0.9253750074844322 -3205.0,0.9250554494686738 -3206.0,0.9247360018052856 -3207.0,0.9244166644561599 -3208.0,0.9240974373832019 -3209.0,0.9237783205483305 -3210.0,0.923459313913477 -3211.0,0.9231404174405865 -3212.0,0.9228216310916169 -3213.0,0.9225029548285392 -3214.0,0.9221843886133378 -3215.0,0.92186593240801 -3216.0,0.9215475861745663 -3217.0,0.9212293498750304 -3218.0,0.9209112234714388 -3219.0,0.9205932069258416 -3220.0,0.9202753002003016 -3221.0,0.9199575032568948 -3222.0,0.9196398160577106 -3223.0,0.919322238564851 -3224.0,0.9190047707404314 -3225.0,0.9186874125465802 -3226.0,0.9183701639454387 -3227.0,0.9180530248991617 -3228.0,0.9177359953699169 -3229.0,0.9174190753198846 -3230.0,0.917102264711259 -3231.0,0.9167855635062465 -3232.0,0.9164689716670673 -3233.0,0.916152489155954 -3234.0,0.9158361159351528 -3235.0,0.9155198519669225 -3236.0,0.9152036972135352 -3237.0,0.914887651637276 -3238.0,0.9145717152004428 -3239.0,0.9142558878653468 -3240.0,0.9139401695943121 -3241.0,0.9136245603496758 -3242.0,0.913309060093788 -3243.0,0.9129936687890118 -3244.0,0.9126783863977234 -3245.0,0.9123632128823118 -3246.0,0.9120481482051792 -3247.0,0.9117331923287407 -3248.0,0.9114183452154242 -3249.0,0.9111036068276709 -3250.0,0.9107889771279347 -3251.0,0.9104744560786826 -3252.0,0.9101600436423946 -3253.0,0.9098457397815635 -3254.0,0.9095315444586951 -3255.0,0.9092174576363083 -3256.0,0.9089034792769348 -3257.0,0.9085896093431193 -3258.0,0.9082758477974194 -3259.0,0.9079621946024056 -3260.0,0.9076486497206613 -3261.0,0.9073352131147829 -3262.0,0.9070218847473799 -3263.0,0.9067086645810742 -3264.0,0.9063955525785011 -3265.0,0.9060825487023086 -3266.0,0.9057696529151578 -3267.0,0.9054568651797221 -3268.0,0.9051441854586886 -3269.0,0.9048316137147566 -3270.0,0.9045191499106388 -3271.0,0.9042067940090602 -3272.0,0.9038945459727595 -3273.0,0.9035824057644875 -3274.0,0.9032703733470081 -3275.0,0.9029584486830983 -3276.0,0.9026466317355476 -3277.0,0.9023349224671586 -3278.0,0.9020233208407467 -3279.0,0.9017118268191399 -3280.0,0.9014004403651794 -3281.0,0.901089161441719 -3282.0,0.9007779900116255 -3283.0,0.9004669260377783 -3284.0,0.9001559694830698 -3285.0,0.8998451203104051 -3286.0,0.8995343784827022 -3287.0,0.8992237439628918 -3288.0,0.8989132167139176 -3289.0,0.8986027966987359 -3290.0,0.8982924838803158 -3291.0,0.8979822782216392 -3292.0,0.897672179685701 -3293.0,0.8973621882355086 -3294.0,0.8970523038340823 -3295.0,0.8967425264444551 -3296.0,0.8964328560296729 -3297.0,0.8961232925527942 -3298.0,0.8958138359768905 -3299.0,0.8955044862650455 -3300.0,0.8951952433803565 -3301.0,0.8948861072859329 -3302.0,0.8945770779448968 -3303.0,0.8942681553203836 -3304.0,0.893959339375541 -3305.0,0.8936506300735292 -3306.0,0.8933420273775219 -3307.0,0.8930335312507046 -3308.0,0.8927251416562764 -3309.0,0.8924168585574482 -3310.0,0.8921086819174445 -3311.0,0.8918006116995019 -3312.0,0.8914926478668698 -3313.0,0.8911847903828104 -3314.0,0.8908770392105986 -3315.0,0.8905693943135219 -3316.0,0.8902618556548806 -3317.0,0.8899544231979873 -3318.0,0.889647096906168 -3319.0,0.8893398767427604 -3320.0,0.8890327626711158 -3321.0,0.8887257546545974 -3322.0,0.8884188526565816 -3323.0,0.8881120566404572 -3324.0,0.8878053665696256 -3325.0,0.887498782407501 -3326.0,0.88719230411751 -3327.0,0.8868859316630923 -3328.0,0.8865796650076995 -3329.0,0.8862735041147963 -3330.0,0.8859674489478602 -3331.0,0.8856614994703809 -3332.0,0.8853556556458607 -3333.0,0.8850499174378148 -3334.0,0.884744284809771 -3335.0,0.8844387577252694 -3336.0,0.8841333361478627 -3337.0,0.8838280200411166 -3338.0,0.883522809368609 -3339.0,0.8832177040939305 -3340.0,0.8829127041806842 -3341.0,0.8826078095924861 -3342.0,0.8823030202929641 -3343.0,0.8819983362457594 -3344.0,0.8816937574145252 -3345.0,0.8813892837629276 -3346.0,0.8810849152546449 -3347.0,0.8807806518533685 -3348.0,0.8804764935228018 -3349.0,0.8801724402266607 -3350.0,0.8798684919286743 -3351.0,0.8795646485925835 -3352.0,0.8792609101821421 -3353.0,0.8789572766611163 -3354.0,0.8786537479932849 -3355.0,0.8783503241424391 -3356.0,0.8780470050723825 -3357.0,0.8777437907469315 -3358.0,0.8774406811299149 -3359.0,0.8771376761851738 -3360.0,0.876834775876562 -3361.0,0.8765319801679458 -3362.0,0.8762292890232035 -3363.0,0.8759267024062266 -3364.0,0.8756242202809187 -3365.0,0.8753218426111957 -3366.0,0.8750195693609863 -3367.0,0.8747174004942315 -3368.0,0.8744153359748847 -3369.0,0.8741133757669118 -3370.0,0.8738115198342913 -3371.0,0.8735097681410138 -3372.0,0.8732081206510826 -3373.0,0.8729065773285133 -3374.0,0.8726051381373341 -3375.0,0.8723038030415854 -3376.0,0.8720025720053202 -3377.0,0.8717014449926036 -3378.0,0.8714004219675137 -3379.0,0.8710995028941404 -3380.0,0.8707986877365864 -3381.0,0.8704979764589665 -3382.0,0.8701973690254081 -3383.0,0.869896865400051 -3384.0,0.8695964655470472 -3385.0,0.8692961694305612 -3386.0,0.8689959770147698 -3387.0,0.8686958882638625 -3388.0,0.8683959031420406 -3389.0,0.8680960216135183 -3390.0,0.8677962436425217 -3391.0,0.8674965691932897 -3392.0,0.8671969982300731 -3393.0,0.8668975307171354 -3394.0,0.8665981666187522 -3395.0,0.8662989058992118 -3396.0,0.8659997485228142 -3397.0,0.8657006944538725 -3398.0,0.8654017436567114 -3399.0,0.8651028960956685 -3400.0,0.8648041517350933 -3401.0,0.8645055105393479 -3402.0,0.8642069724728064 -3403.0,0.8639085374998555 -3404.0,0.8636102055848942 -3405.0,0.8633119766923334 -3406.0,0.8630138507865969 -3407.0,0.8627158278321202 -3408.0,0.8624179077933514 -3409.0,0.8621200906347508 -3410.0,0.8618223763207911 -3411.0,0.861524764815957 -3412.0,0.8612272560847457 -3413.0,0.8609298500916666 -3414.0,0.8606325468012412 -3415.0,0.8603353461780036 -3416.0,0.8600382481864997 -3417.0,0.859741252791288 -3418.0,0.8594443599569392 -3419.0,0.859147569648036 -3420.0,0.8588508818291735 -3421.0,0.8585542964649591 -3422.0,0.8582578135200122 -3423.0,0.8579614329589647 -3424.0,0.8576651547464603 -3425.0,0.8573689788471555 -3426.0,0.8570729052257184 -3427.0,0.8567769338468298 -3428.0,0.8564810646751824 -3429.0,0.856185297675481 -3430.0,0.8558896328124429 -3431.0,0.8555940700507976 -3432.0,0.8552986093552862 -3433.0,0.8550032506906627 -3434.0,0.8547079940216931 -3435.0,0.854412839313155 -3436.0,0.8541177865298389 -3437.0,0.853822835636547 -3438.0,0.853527986598094 -3439.0,0.8532332393793064 -3440.0,0.8529385939450231 -3441.0,0.8526440502600949 -3442.0,0.8523496082893851 -3443.0,0.8520552679977688 -3444.0,0.8517610293501333 -3445.0,0.8514668923113782 -3446.0,0.851172856846415 -3447.0,0.8508789229201674 -3448.0,0.8505850904975713 -3449.0,0.8502913595435746 -3450.0,0.8499977300231373 -3451.0,0.8497042019012316 -3452.0,0.8494107751428418 -3453.0,0.849117449712964 -3454.0,0.8488242255766069 -3455.0,0.8485311026987907 -3456.0,0.8482380810445482 -3457.0,0.8479451605789241 -3458.0,0.8476523412669749 -3459.0,0.8473596230737694 -3460.0,0.8470670059643888 -3461.0,0.8467744899039256 -3462.0,0.846482074857485 -3463.0,0.8461897607901838 -3464.0,0.8458975476671514 -3465.0,0.8456054354535286 -3466.0,0.8453134241144687 -3467.0,0.8450215136151369 -3468.0,0.8447297039207103 -3469.0,0.8444379949963782 -3470.0,0.8441463868073419 -3471.0,0.8438548793188144 -3472.0,0.8435634724960213 -3473.0,0.8432721663041998 -3474.0,0.8429809607085991 -3475.0,0.8426898556744806 -3476.0,0.8423988511671175 -3477.0,0.8421079471517952 -3478.0,0.8418171435938109 -3479.0,0.8415264404584738 -3480.0,0.8412358377111053 -3481.0,0.8409453353170384 -3482.0,0.8406549332416186 -3483.0,0.8403646314502027 -3484.0,0.84007442990816 -3485.0,0.8397843285808714 -3486.0,0.8394943274337302 -3487.0,0.8392044264321411 -3488.0,0.8389146255415213 -3489.0,0.8386249247272994 -3490.0,0.8383353239549165 -3491.0,0.838045823189825 -3492.0,0.8377564223974898 -3493.0,0.8374671215433874 -3494.0,0.8371779205930064 -3495.0,0.8368888195118472 -3496.0,0.8365998182654221 -3497.0,0.8363109168192554 -3498.0,0.8360221151388832 -3499.0,0.8357334131898538 -3500.0,0.8354448109377268 -3501.0,0.8351563083480744 -3502.0,0.83486790538648 -3503.0,0.8345796020185396 -3504.0,0.8342913982098604 -3505.0,0.834003293926062 -3506.0,0.8337152891327756 -3507.0,0.8334273837956442 -3508.0,0.8331395778803229 -3509.0,0.8328518713524786 -3510.0,0.83256426417779 -3511.0,0.8322767563219475 -3512.0,0.8319893477506537 -3513.0,0.8317020384296228 -3514.0,0.8314148283245808 -3515.0,0.8311277174012657 -3516.0,0.8308407056254273 -3517.0,0.8305537929628272 -3518.0,0.8302669793792387 -3519.0,0.8299802648404471 -3520.0,0.8296936493122494 -3521.0,0.8294071327604545 -3522.0,0.8291207151508831 -3523.0,0.8288343964493676 -3524.0,0.8285481766217523 -3525.0,0.8282620556338933 -3526.0,0.8279760334516584 -3527.0,0.8276901100409272 -3528.0,0.8274042853675911 -3529.0,0.8271185593975535 -3530.0,0.8268329320967291 -3531.0,0.8265474034310449 -3532.0,0.8262619733664394 -3533.0,0.8259766418688625 -3534.0,0.8256914089042767 -3535.0,0.8254062744386556 -3536.0,0.8251212384379847 -3537.0,0.8248363008682613 -3538.0,0.8245514616954944 -3539.0,0.8242667208857049 -3540.0,0.8239820784049251 -3541.0,0.8236975342191994 -3542.0,0.8234130882945837 -3543.0,0.8231287405971456 -3544.0,0.8228444910929645 -3545.0,0.8225603397481317 -3546.0,0.8222762865287498 -3547.0,0.8219923314009334 -3548.0,0.8217084743308087 -3549.0,0.8214247152845137 -3550.0,0.8211410542281979 -3551.0,0.8208574911280228 -3552.0,0.820574025950161 -3553.0,0.8202906586607975 -3554.0,0.8200073892261287 -3555.0,0.8197242176123625 -3556.0,0.8194411437857184 -3557.0,0.819158167712428 -3558.0,0.8188752893587343 -3559.0,0.818592508690892 -3560.0,0.8183098256751673 -3561.0,0.8180272402778382 -3562.0,0.8177447524651944 -3563.0,0.8174623622035371 -3564.0,0.8171800694591792 -3565.0,0.8168978741984453 -3566.0,0.8166157763876715 -3567.0,0.8163337759932056 -3568.0,0.816051872981407 -3569.0,0.8157700673186469 -3570.0,0.8154883589713076 -3571.0,0.8152067479057836 -3572.0,0.8149252340884807 -3573.0,0.8146438174858163 -3574.0,0.8143624980642196 -3575.0,0.814081275790131 -3576.0,0.8138001506300029 -3577.0,0.8135191225502991 -3578.0,0.813238191517495 -3579.0,0.8129573574980775 -3580.0,0.8126766204585453 -3581.0,0.8123959803654084 -3582.0,0.8121154371851884 -3583.0,0.8118349908844188 -3584.0,0.8115546414296443 -3585.0,0.8112743887874211 -3586.0,0.8109942329243172 -3587.0,0.8107141738069121 -3588.0,0.8104342114017967 -3589.0,0.8101543456755737 -3590.0,0.809874576594857 -3591.0,0.8095949041262721 -3592.0,0.8093153282364564 -3593.0,0.8090358488920583 -3594.0,0.808756466059738 -3595.0,0.8084771797061673 -3596.0,0.8081979897980291 -3597.0,0.8079188963020184 -3598.0,0.8076398991848411 -3599.0,0.8073609984132152 -3600.0,0.8070821939538695 -3601.0,0.8068034857735449 -3602.0,0.8065248738389934 -3603.0,0.8062463581169788 -3604.0,0.8059679385742761 -3605.0,0.8056896151776719 -3606.0,0.8054113878939643 -3607.0,0.8051332566899626 -3608.0,0.804855221532488 -3609.0,0.8045772823883729 -3610.0,0.8042994392244611 -3611.0,0.8040216920076081 -3612.0,0.8037440407046805 -3613.0,0.8034664852825566 -3614.0,0.8031890257081261 -3615.0,0.80291166194829 -3616.0,0.8026343939699608 -3617.0,0.8023572217400626 -3618.0,0.8020801452255308 -3619.0,0.801803164393312 -3620.0,0.8015262792103645 -3621.0,0.8012494896436579 -3622.0,0.8009727956601733 -3623.0,0.800696197226903 -3624.0,0.8004196943108509 -3625.0,0.8001432868790322 -3626.0,0.7998669748984737 -3627.0,0.799590758336213 -3628.0,0.7993146371592997 -3629.0,0.7990386113347947 -3630.0,0.7987626808297699 -3631.0,0.7984868456113088 -3632.0,0.7982111056465064 -3633.0,0.7979354609024689 -3634.0,0.7976599113463139 -3635.0,0.7973844569451704 -3636.0,0.7971090976661784 -3637.0,0.79683383347649 -3638.0,0.7965586643432677 -3639.0,0.7962835902336863 -3640.0,0.7960086111149312 -3641.0,0.7957337269541994 -3642.0,0.7954589377186994 -3643.0,0.7951842433756505 -3644.0,0.794909643892284 -3645.0,0.7946351392358422 -3646.0,0.7943607293735784 -3647.0,0.7940864142727576 -3648.0,0.7938121939006563 -3649.0,0.7935380682245616 -3650.0,0.7932640372117726 -3651.0,0.7929901008295992 -3652.0,0.7927162590453629 -3653.0,0.7924425118263965 -3654.0,0.7921688591400436 -3655.0,0.7918953009536598 -3656.0,0.7916218372346113 -3657.0,0.791348467950276 -3658.0,0.7910751930680431 -3659.0,0.7908020125553126 -3660.0,0.7905289263794962 -3661.0,0.7902559345080168 -3662.0,0.7899830369083084 -3663.0,0.7897102335478162 -3664.0,0.7894375243939968 -3665.0,0.789164909414318 -3666.0,0.7888923885762589 -3667.0,0.7886199618473096 -3668.0,0.7883476291949718 -3669.0,0.788075390586758 -3670.0,0.7878032459901921 -3671.0,0.7875311953728095 -3672.0,0.7872592387021562 -3673.0,0.7869873759457899 -3674.0,0.7867156070712794 -3675.0,0.7864439320462047 -3676.0,0.7861723508381568 -3677.0,0.7859008634147381 -3678.0,0.7856294697435622 -3679.0,0.7853581697922537 -3680.0,0.7850869635284486 -3681.0,0.7848158509197939 -3682.0,0.7845448319339479 -3683.0,0.7842739065385799 -3684.0,0.7840030747013707 -3685.0,0.7837323363900117 -3686.0,0.783461691572206 -3687.0,0.7831911402156677 -3688.0,0.782920682288122 -3689.0,0.7826503177573051 -3690.0,0.7823800465909645 -3691.0,0.7821098687568588 -3692.0,0.781839784222758 -3693.0,0.7815697929564427 -3694.0,0.7812998949257051 -3695.0,0.7810300900983481 -3696.0,0.7807603784421863 -3697.0,0.7804907599250447 -3698.0,0.78022123451476 -3699.0,0.7799518021791797 -3700.0,0.7796824628861626 -3701.0,0.7794132166035783 -3702.0,0.779144063299308 -3703.0,0.7788750029412432 -3704.0,0.7786060354972874 -3705.0,0.7783371609353544 -3706.0,0.7780683792233696 -3707.0,0.7777996903292694 -3708.0,0.777531094221001 -3709.0,0.7772625908665229 -3710.0,0.7769941802338046 -3711.0,0.7767258622908269 -3712.0,0.7764576370055809 -3713.0,0.7761895043460697 -3714.0,0.775921464280307 -3715.0,0.7756535167763174 -3716.0,0.7753856618021367 -3717.0,0.7751178993258121 -3718.0,0.7748502293154012 -3719.0,0.7745826517389729 -3720.0,0.7743151665646072 -3721.0,0.7740477737603951 -3722.0,0.7737804732944386 -3723.0,0.7735132651348506 -3724.0,0.7732461492497553 -3725.0,0.7729791256072875 -3726.0,0.7727121941755934 -3727.0,0.77244535492283 -3728.0,0.7721786078171653 -3729.0,0.7719119528267783 -3730.0,0.7716453899198589 -3731.0,0.7713789190646083 -3732.0,0.7711125402292384 -3733.0,0.7708462533819721 -3734.0,0.7705800584910433 -3735.0,0.7703139555246968 -3736.0,0.7700479444511887 -3737.0,0.7697820252387858 -3738.0,0.7695161978557656 -3739.0,0.7692504622704172 -3740.0,0.7689848184510399 -3741.0,0.7687192663659446 -3742.0,0.7684538059834528 -3743.0,0.768188437271897 -3744.0,0.7679231601996206 -3745.0,0.7676579747349781 -3746.0,0.7673928808463347 -3747.0,0.7671278785020667 -3748.0,0.7668629676705612 -3749.0,0.7665981483202163 -3750.0,0.766333420419441 -3751.0,0.7660687839366551 -3752.0,0.7658042388402896 -3753.0,0.765539785098786 -3754.0,0.7652754226805969 -3755.0,0.7650111515541859 -3756.0,0.7647469716880273 -3757.0,0.7644828830506064 -3758.0,0.7642188856104194 -3759.0,0.7639549793359732 -3760.0,0.7636911641957859 -3761.0,0.7634274401583862 -3762.0,0.7631638071923135 -3763.0,0.7629002652661186 -3764.0,0.7626368143483628 -3765.0,0.7623734544076184 -3766.0,0.7621101854124683 -3767.0,0.7618470073315067 -3768.0,0.761583920133338 -3769.0,0.7613209237865781 -3770.0,0.7610580182598533 -3771.0,0.7607952035218011 -3772.0,0.7605324795410694 -3773.0,0.7602698462863171 -3774.0,0.7600073037262142 -3775.0,0.7597448518294412 -3776.0,0.7594824905646894 -3777.0,0.7592202199006611 -3778.0,0.7589580398060694 -3779.0,0.7586959502496379 -3780.0,0.7584339512001014 -3781.0,0.7581720426262053 -3782.0,0.7579102244967058 -3783.0,0.7576484967803699 -3784.0,0.7573868594459754 -3785.0,0.757125312462311 -3786.0,0.7568638557981758 -3787.0,0.7566024894223801 -3788.0,0.7563412133037447 -3789.0,0.7560800274111014 -3790.0,0.7558189317132924 -3791.0,0.7555579261791712 -3792.0,0.7552970107776015 -3793.0,0.755036185477458 -3794.0,0.7547754502476263 -3795.0,0.7545148050570024 -3796.0,0.7542542498744934 -3797.0,0.7539937846690169 -3798.0,0.7537334094095013 -3799.0,0.7534731240648858 -3800.0,0.75321292860412 -3801.0,0.7529528229961647 -3802.0,0.7526928072099912 -3803.0,0.7524328812145815 -3804.0,0.7521730449789283 -3805.0,0.751913298472035 -3806.0,0.7516536416629158 -3807.0,0.7513940745205955 -3808.0,0.7511345970141096 -3809.0,0.7508752091125043 -3810.0,0.7506159107848366 -3811.0,0.750356702000174 -3812.0,0.750097582727595 -3813.0,0.7498385529361883 -3814.0,0.7495796125950537 -3815.0,0.7493207616733014 -3816.0,0.7490620001400525 -3817.0,0.7488033279644385 -3818.0,0.7485447451156018 -3819.0,0.7482862515626952 -3820.0,0.7480278472748826 -3821.0,0.7477695322213379 -3822.0,0.7475113063712462 -3823.0,0.7472531696938031 -3824.0,0.7469951221582145 -3825.0,0.7467371637336976 -3826.0,0.7464792943894795 -3827.0,0.7462215140947983 -3828.0,0.7459638228189029 -3829.0,0.7457062205310525 -3830.0,0.745448707200517 -3831.0,0.745191282796577 -3832.0,0.7449339472885236 -3833.0,0.7446767006456585 -3834.0,0.7444195428372941 -3835.0,0.7441624738327534 -3836.0,0.7439054936013698 -3837.0,0.7436486021124877 -3838.0,0.7433917993354615 -3839.0,0.7431350852396567 -3840.0,0.7428784597944491 -3841.0,0.7426219229692252 -3842.0,0.742365474733382 -3843.0,0.7421091150563272 -3844.0,0.7418528439074787 -3845.0,0.7415966612562656 -3846.0,0.7413405670721268 -3847.0,0.7410845613245123 -3848.0,0.7408286439828825 -3849.0,0.7405728150167082 -3850.0,0.7403170743954711 -3851.0,0.7400614220886631 -3852.0,0.7398058580657867 -3853.0,0.739550382296355 -3854.0,0.7392949947498916 -3855.0,0.7390396953959306 -3856.0,0.7387844842040167 -3857.0,0.738529361143705 -3858.0,0.7382743261845613 -3859.0,0.7380193792961617 -3860.0,0.7377645204480929 -3861.0,0.7375097496099521 -3862.0,0.737255066751347 -3863.0,0.7370004718418958 -3864.0,0.7367459648512271 -3865.0,0.7364915457489802 -3866.0,0.7362372145048048 -3867.0,0.7359829710883609 -3868.0,0.7357288154693191 -3869.0,0.7354747476173605 -3870.0,0.7352207675021768 -3871.0,0.7349668750934699 -3872.0,0.7347130703609523 -3873.0,0.734459353274347 -3874.0,0.7342057238033873 -3875.0,0.7339521819178172 -3876.0,0.7336987275873909 -3877.0,0.7334453607818731 -3878.0,0.7331920814710391 -3879.0,0.7329388896246744 -3880.0,0.7326857852125752 -3881.0,0.732432768204548 -3882.0,0.7321798385704095 -3883.0,0.7319269962799871 -3884.0,0.7316742413031189 -3885.0,0.7314215736096527 -3886.0,0.7311689931694471 -3887.0,0.7309164999523713 -3888.0,0.7306640939283044 -3889.0,0.7304117750671366 -3890.0,0.7301595433387679 -3891.0,0.7299073987131088 -3892.0,0.7296553411600805 -3893.0,0.7294033706496141 -3894.0,0.7291514871516516 -3895.0,0.7288996906361449 -3896.0,0.7286479810730567 -3897.0,0.7283963584323598 -3898.0,0.7281448226840376 -3899.0,0.7278933737980836 -3900.0,0.7276420117445017 -3901.0,0.7273907364933063 -3902.0,0.7271395480145222 -3903.0,0.7268884462781844 -3904.0,0.7266374312543382 -3905.0,0.7263865029130394 -3906.0,0.726135661224354 -3907.0,0.7258849061583585 -3908.0,0.7256342376851398 -3909.0,0.7253836557747947 -3910.0,0.7251331603974307 -3911.0,0.7248827515231656 -3912.0,0.7246324291221274 -3913.0,0.7243821931644545 -3914.0,0.7241320436202955 -3915.0,0.7238819804598093 -3916.0,0.7236320036531655 -3917.0,0.7233821131705434 -3918.0,0.723132308982133 -3919.0,0.7228825910581345 -3920.0,0.7226329593687583 -3921.0,0.7223834138842251 -3922.0,0.7221339545747661 -3923.0,0.7218845814106227 -3924.0,0.7216352943620462 -3925.0,0.7213860933992987 -3926.0,0.7211369784926523 -3927.0,0.7208879496123894 -3928.0,0.7206390067288027 -3929.0,0.720390149812195 -3930.0,0.7201413788328795 -3931.0,0.7198926937611798 -3932.0,0.7196440945674295 -3933.0,0.7193955812219726 -3934.0,0.719147153695163 -3935.0,0.7188988119573654 -3936.0,0.7186505559789543 -3937.0,0.7184023857303147 -3938.0,0.7181543011818415 -3939.0,0.7179063023039403 -3940.0,0.7176583890670264 -3941.0,0.7174105614415256 -3942.0,0.7171628193978739 -3943.0,0.7169151629065175 -3944.0,0.7166675919379126 -3945.0,0.7164201064625262 -3946.0,0.7161727064508348 -3947.0,0.7159253918733254 -3948.0,0.7156781627004951 -3949.0,0.7154310189028515 -3950.0,0.715183960450912 -3951.0,0.7149369873152044 -3952.0,0.7146900994662664 -3953.0,0.7144432968746462 -3954.0,0.7141965795109022 -3955.0,0.7139499473456027 -3956.0,0.7137034003493262 -3957.0,0.7134569384926616 -3958.0,0.7132105617462077 -3959.0,0.7129642700805735 -3960.0,0.7127180634663782 -3961.0,0.7124719418742513 -3962.0,0.7122259052748322 -3963.0,0.7119799536387705 -3964.0,0.7117340869367261 -3965.0,0.7114883051393687 -3966.0,0.7112426082173784 -3967.0,0.7109969961414454 -3968.0,0.7107514688822699 -3969.0,0.7105060264105623 -3970.0,0.7102606686970431 -3971.0,0.710015395712443 -3972.0,0.7097702074275025 -3973.0,0.7095251038129727 -3974.0,0.7092800848396145 -3975.0,0.7090351504781987 -3976.0,0.7087903006995065 -3977.0,0.7085455354743293 -3978.0,0.7083008547734682 -3979.0,0.7080562585677345 -3980.0,0.7078117468279499 -3981.0,0.7075673195249457 -3982.0,0.7073229766295637 -3983.0,0.7070787181126553 -3984.0,0.7068345439450827 -3985.0,0.7065904540977174 -3986.0,0.7063464485414411 -3987.0,0.7061025272471461 -3988.0,0.7058586901857341 -3989.0,0.7056149373281172 -3990.0,0.7053712686452174 -3991.0,0.7051276841079669 -3992.0,0.7048841836873078 -3993.0,0.7046407673541922 -3994.0,0.7043974350795825 -3995.0,0.7041541868344507 -3996.0,0.7039110225897793 -3997.0,0.7036679423165604 -3998.0,0.7034249459857963 -3999.0,0.7031820335684994 -4000.0,0.7029392050356918 -4001.0,0.7026964603584063 -4002.0,0.7024537995076847 -4003.0,0.7022112224545797 -4004.0,0.7019687291701534 -4005.0,0.7017263196254783 -4006.0,0.7014839937916365 -4007.0,0.7012417516397205 -4008.0,0.7009995931408324 -4009.0,0.7007575182660846 -4010.0,0.7005155269865991 -4011.0,0.7002736192735085 -4012.0,0.7000317950979548 -4013.0,0.6997900544310899 -4014.0,0.6995483972440761 -4015.0,0.6993068235080856 -4016.0,0.6990653331943002 -4017.0,0.698823926273912 -4018.0,0.6985826027181228 -4019.0,0.6983413624981445 -4020.0,0.6981002055851988 -4021.0,0.6978591319505177 -4022.0,0.6976181415653427 -4023.0,0.6973772344009255 -4024.0,0.6971364104285274 -4025.0,0.6968956696194201 -4026.0,0.6966550119448849 -4027.0,0.696414437376213 -4028.0,0.6961739458847057 -4029.0,0.6959335374416742 -4030.0,0.6956932120184394 -4031.0,0.6954529695863323 -4032.0,0.6952128101166936 -4033.0,0.6949727335808742 -4034.0,0.6947327399502347 -4035.0,0.6944928291961454 -4036.0,0.6942530012899869 -4037.0,0.6940132562031495 -4038.0,0.6937735939070332 -4039.0,0.6935340143730481 -4040.0,0.6932945175726142 -4041.0,0.6930551034771611 -4042.0,0.6928157720581287 -4043.0,0.6925765232869664 -4044.0,0.6923373571351333 -4045.0,0.692098273574099 -4046.0,0.6918592725753425 -4047.0,0.6916203541103525 -4048.0,0.691381518150628 -4049.0,0.6911427646676774 -4050.0,0.6909040936330194 -4051.0,0.6906655050181821 -4052.0,0.6904269987947037 -4053.0,0.6901885749341321 -4054.0,0.6899502334080252 -4055.0,0.6897119741879504 -4056.0,0.6894737972454852 -4057.0,0.6892357025522169 -4058.0,0.6889976900797423 -4059.0,0.6887597597996686 -4060.0,0.6885219116836122 -4061.0,0.6882841457031996 -4062.0,0.6880464618300672 -4063.0,0.6878088600358608 -4064.0,0.6875713402922364 -4065.0,0.6873339025708596 -4066.0,0.6870965468434058 -4067.0,0.6868592730815601 -4068.0,0.6866220812570177 -4069.0,0.6863849713414831 -4070.0,0.6861479433066711 -4071.0,0.6859109971243056 -4072.0,0.685674132766121 -4073.0,0.6854373502038609 -4074.0,0.6852006494092788 -4075.0,0.6849640303541383 -4076.0,0.6847274930102123 -4077.0,0.6844910373492837 -4078.0,0.6842546633431449 -4079.0,0.6840183709635984 -4080.0,0.6837821601824561 -4081.0,0.6835460309715399 -4082.0,0.6833099833026811 -4083.0,0.6830740171477212 -4084.0,0.682838132478511 -4085.0,0.6826023292669112 -4086.0,0.6823666074847922 -4087.0,0.6821309671040341 -4088.0,0.6818954080965267 -4089.0,0.6816599304341696 -4090.0,0.681424534088872 -4091.0,0.6811892190325529 -4092.0,0.6809539852371408 -4093.0,0.680718832674574 -4094.0,0.6804837613168007 -4095.0,0.6802487711357784 -4096.0,0.6800138621034746 -4097.0,0.6797790341918664 -4098.0,0.6795442873729405 -4099.0,0.6793096216186932 -4100.0,0.6790750369011308 -4101.0,0.6788405331922689 -4102.0,0.678606110464133 -4103.0,0.678371768688758 -4104.0,0.6781375078381889 -4105.0,0.6779033278844799 -4106.0,0.6776692287996952 -4107.0,0.6774352105559083 -4108.0,0.6772012731252026 -4109.0,0.6769674164796712 -4110.0,0.6767336405914165 -4111.0,0.6764999454325509 -4112.0,0.6762663309751962 -4113.0,0.6760327971914838 -4114.0,0.675799344053555 -4115.0,0.6755659715335605 -4116.0,0.6753326796036605 -4117.0,0.6750994682360253 -4118.0,0.6748663374028342 -4119.0,0.6746332870762765 -4120.0,0.6744003172285509 -4121.0,0.6741674278318659 -4122.0,0.6739346188584394 -4123.0,0.6737018902804992 -4124.0,0.6734692420702822 -4125.0,0.6732366742000354 -4126.0,0.673004186642015 -4127.0,0.672771779368487 -4128.0,0.6725394523517267 -4129.0,0.6723072055640196 -4130.0,0.67207503897766 -4131.0,0.6718429525649523 -4132.0,0.67161094629821 -4133.0,0.6713790201497569 -4134.0,0.6711471740919256 -4135.0,0.6709154080970585 -4136.0,0.6706837221375079 -4137.0,0.670452116185635 -4138.0,0.6702205902138112 -4139.0,0.669989144194417 -4140.0,0.6697577780998426 -4141.0,0.6695264919024877 -4142.0,0.6692952855747615 -4143.0,0.6690641590890828 -4144.0,0.6688331124178799 -4145.0,0.6686021455335908 -4146.0,0.6683712584086625 -4147.0,0.668140451015552 -4148.0,0.6679097233267257 -4149.0,0.6676790753146595 -4150.0,0.6674485069518388 -4151.0,0.6672180182107582 -4152.0,0.6669876090639223 -4153.0,0.666757279483845 -4154.0,0.6665270294430496 -4155.0,0.666296858914069 -4156.0,0.6660667678694454 -4157.0,0.6658367562817307 -4158.0,0.6656068241234862 -4159.0,0.6653769713672827 -4160.0,0.6651471979857003 -4161.0,0.6649175039513289 -4162.0,0.6646878892367675 -4163.0,0.6644583538146249 -4164.0,0.6642288976575191 -4165.0,0.6639995207380777 -4166.0,0.6637702230289377 -4167.0,0.6635410045027456 -4168.0,0.6633118651321571 -4169.0,0.6630828048898377 -4170.0,0.6628538237484622 -4171.0,0.6626249216807149 -4172.0,0.6623960986592892 -4173.0,0.6621673546568884 -4174.0,0.6619386896462248 -4175.0,0.6617101036000206 -4176.0,0.661481596491007 -4177.0,0.6612531682919247 -4178.0,0.661024818975524 -4179.0,0.6607965485145645 -4180.0,0.6605683568818151 -4181.0,0.6603402440500543 -4182.0,0.6601122099920699 -4183.0,0.6598842546806589 -4184.0,0.6596563780886282 -4185.0,0.6594285801887936 -4186.0,0.6592008609539804 -4187.0,0.6589732203570237 -4188.0,0.6587456583707672 -4189.0,0.6585181749680646 -4190.0,0.6582907701217788 -4191.0,0.6580634438047822 -4192.0,0.6578361959899562 -4193.0,0.6576090266501919 -4194.0,0.6573819357583897 -4195.0,0.6571549232874592 -4196.0,0.6569279892103195 -4197.0,0.656701133499899 -4198.0,0.6564743561291355 -4199.0,0.6562476570709762 -4200.0,0.6560210362983774 -4201.0,0.655794493784305 -4202.0,0.6555680295017341 -4203.0,0.6553416434236491 -4204.0,0.6551153355230439 -4205.0,0.6548891057729216 -4206.0,0.6546629541462945 -4207.0,0.6544368806161845 -4208.0,0.6542108851556228 -4209.0,0.6539849677376494 -4210.0,0.6537591283353144 -4211.0,0.6535333669216765 -4212.0,0.6533076834698043 -4213.0,0.6530820779527752 -4214.0,0.6528565503436761 -4215.0,0.6526311006156033 -4216.0,0.6524057287416622 -4217.0,0.6521804346949678 -4218.0,0.6519552184486439 -4219.0,0.6517300799758239 -4220.0,0.6515050192496505 -4221.0,0.6512800362432756 -4222.0,0.6510551309298602 -4223.0,0.650830303282575 -4224.0,0.6506055532745996 -4225.0,0.6503808808791228 -4226.0,0.650156286069343 -4227.0,0.6499317688184676 -4228.0,0.6497073290997133 -4229.0,0.6494829668863062 -4230.0,0.6492586821514815 -4231.0,0.6490344748684835 -4232.0,0.6488103450105662 -4233.0,0.6485862925509923 -4234.0,0.648362317463034 -4235.0,0.6481384197199728 -4236.0,0.6479145992950993 -4237.0,0.6476908561617133 -4238.0,0.6474671902931238 -4239.0,0.6472436016626494 -4240.0,0.6470200902436173 -4241.0,0.6467966560093644 -4242.0,0.6465732989332365 -4243.0,0.6463500189885888 -4244.0,0.6461268161487856 -4245.0,0.6459036903872005 -4246.0,0.6456806416772161 -4247.0,0.6454576699922244 -4248.0,0.6452347753056265 -4249.0,0.6450119575908326 -4250.0,0.6447892168212623 -4251.0,0.6445665529703443 -4252.0,0.6443439660115162 -4253.0,0.6441214559182252 -4254.0,0.6438990226639273 -4255.0,0.643676666222088 -4256.0,0.6434543865661817 -4257.0,0.643232183669692 -4258.0,0.643010057506112 -4259.0,0.6427880080489432 -4260.0,0.6425660352716972 -4261.0,0.6423441391478939 -4262.0,0.6421223196510629 -4263.0,0.6419005767547428 -4264.0,0.6416789104324812 -4265.0,0.6414573206578348 -4266.0,0.6412358074043697 -4267.0,0.641014370645661 -4268.0,0.6407930103552928 -4269.0,0.6405717265068587 -4270.0,0.6403505190739608 -4271.0,0.6401293880302108 -4272.0,0.6399083333492295 -4273.0,0.6396873550046465 -4274.0,0.6394664529701007 -4275.0,0.6392456272192404 -4276.0,0.6390248777257224 -4277.0,0.6388042044632128 -4278.0,0.6385836074053872 -4279.0,0.6383630865259299 -4280.0,0.6381426417985343 -4281.0,0.6379222731969029 -4282.0,0.6377019806947474 -4283.0,0.6374817642657885 -4284.0,0.637261623883756 -4285.0,0.6370415595223887 -4286.0,0.6368215711554346 -4287.0,0.6366016587566506 -4288.0,0.6363818222998029 -4289.0,0.6361620617586665 -4290.0,0.6359423771070257 -4291.0,0.6357227683186736 -4292.0,0.6355032353674124 -4293.0,0.6352837782270535 -4294.0,0.6350643968714174 -4295.0,0.6348450912743333 -4296.0,0.6346258614096397 -4297.0,0.6344067072511842 -4298.0,0.6341876287728232 -4299.0,0.6339686259484222 -4300.0,0.6337496987518557 -4301.0,0.6335308471570076 -4302.0,0.6333120711377701 -4303.0,0.633093370668045 -4304.0,0.6328747457217431 -4305.0,0.6326561962727837 -4306.0,0.6324377222950957 -4307.0,0.6322193237626166 -4308.0,0.6320010006492932 -4309.0,0.6317827529290809 -4310.0,0.6315645805759447 -4311.0,0.6313464835638578 -4312.0,0.6311284618668032 -4313.0,0.6309105154587722 -4314.0,0.6306926443137656 -4315.0,0.6304748484057929 -4316.0,0.6302571277088725 -4317.0,0.6300394821970322 -4318.0,0.6298219118443081 -4319.0,0.6296044166247461 -4320.0,0.6293869965124002 -4321.0,0.6291696514813339 -4322.0,0.6289523815056195 -4323.0,0.6287351865593384 -4324.0,0.6285180666165807 -4325.0,0.6283010216514456 -4326.0,0.6280840516380413 -4327.0,0.6278671565504848 -4328.0,0.627650336362902 -4329.0,0.627433591049428 -4330.0,0.6272169205842065 -4331.0,0.6270003249413905 -4332.0,0.6267838040951416 -4333.0,0.6265673580196304 -4334.0,0.6263509866890364 -4335.0,0.6261346900775483 -4336.0,0.6259184681593634 -4337.0,0.6257023209086878 -4338.0,0.6254862482997371 -4339.0,0.6252702503067351 -4340.0,0.6250543269039148 -4341.0,0.6248384780655184 -4342.0,0.6246227037657964 -4343.0,0.6244070039790087 -4344.0,0.6241913786794239 -4345.0,0.6239758278413192 -4346.0,0.6237603514389813 -4347.0,0.6235449494467052 -4348.0,0.6233296218387951 -4349.0,0.6231143685895641 -4350.0,0.6228991896733339 -4351.0,0.6226840850644352 -4352.0,0.6224690547372076 -4353.0,0.6222540986659998 -4354.0,0.6220392168251687 -4355.0,0.6218244091890808 -4356.0,0.621609675732111 -4357.0,0.6213950164286431 -4358.0,0.6211804312530699 -4359.0,0.6209659201797929 -4360.0,0.6207514831832225 -4361.0,0.620537120237778 -4362.0,0.6203228313178873 -4363.0,0.6201086163979874 -4364.0,0.6198944754525242 -4365.0,0.6196804084559518 -4366.0,0.6194664153827341 -4367.0,0.6192524962073429 -4368.0,0.6190386509042592 -4369.0,0.6188248794479732 -4370.0,0.618611181812983 -4371.0,0.6183975579737965 -4372.0,0.6181840079049297 -4373.0,0.6179705315809075 -4374.0,0.617757128976264 -4375.0,0.6175438000655418 -4376.0,0.6173305448232921 -4377.0,0.6171173632240753 -4378.0,0.6169042552424603 -4379.0,0.6166912208530249 -4380.0,0.6164782600303557 -4381.0,0.6162653727490479 -4382.0,0.6160525589837057 -4383.0,0.6158398187089419 -4384.0,0.6156271518993782 -4385.0,0.6154145585296451 -4386.0,0.6152020385743816 -4387.0,0.6149895920082356 -4388.0,0.6147772188058639 -4389.0,0.6145649189419318 -4390.0,0.6143526923911136 -4391.0,0.6141405391280921 -4392.0,0.613928459127559 -4393.0,0.6137164523642147 -4394.0,0.6135045188127685 -4395.0,0.613292658447938 -4396.0,0.61308087124445 -4397.0,0.6128691571770397 -4398.0,0.6126575162204513 -4399.0,0.6124459483494374 -4400.0,0.6122344535387596 -4401.0,0.6120230317631882 -4402.0,0.611811682997502 -4403.0,0.6116004072164887 -4404.0,0.6113892043949445 -4405.0,0.6111780745076746 -4406.0,0.6109670175294927 -4407.0,0.6107560334352212 -4408.0,0.6105451221996913 -4409.0,0.6103342837977428 -4410.0,0.6101235182042242 -4411.0,0.6099128253939926 -4412.0,0.6097022053419141 -4413.0,0.6094916580228632 -4414.0,0.609281183411723 -4415.0,0.6090707814833856 -4416.0,0.6088604522127514 -4417.0,0.6086501955747299 -4418.0,0.6084400115442387 -4419.0,0.6082299000962046 -4420.0,0.6080198612055627 -4421.0,0.6078098948472571 -4422.0,0.6076000009962402 -4423.0,0.6073901796274732 -4424.0,0.6071804307159259 -4425.0,0.6069707542365769 -4426.0,0.6067611501644132 -4427.0,0.6065516184744306 -4428.0,0.6063421591416335 -4429.0,0.606132772141035 -4430.0,0.6059234574476567 -4431.0,0.6057142150365289 -4432.0,0.6055050448826905 -4433.0,0.605295946961189 -4434.0,0.6050869212470805 -4435.0,0.6048779677154299 -4436.0,0.6046690863413104 -4437.0,0.6044602770998042 -4438.0,0.6042515399660017 -4439.0,0.6040428749150021 -4440.0,0.6038342819219131 -4441.0,0.6036257609618513 -4442.0,0.6034173120099414 -4443.0,0.6032089350413172 -4444.0,0.6030006300311208 -4445.0,0.6027923969545029 -4446.0,0.6025842357866228 -4447.0,0.6023761465026484 -4448.0,0.6021681290777561 -4449.0,0.601960183487131 -4450.0,0.6017523097059666 -4451.0,0.6015445077094653 -4452.0,0.6013367774728378 -4453.0,0.6011291189713032 -4454.0,0.6009215321800894 -4455.0,0.600714017074433 -4456.0,0.6005065736295787 -4457.0,0.6002992018207802 -4458.0,0.6000919016232995 -4459.0,0.5998846730124072 -4460.0,0.5996775159633824 -4461.0,0.5994704304515128 -4462.0,0.5992634164520947 -4463.0,0.5990564739404327 -4464.0,0.5988496028918402 -4465.0,0.5986428032816389 -4466.0,0.5984360750851591 -4467.0,0.5982294182777396 -4468.0,0.5980228328347279 -4469.0,0.5978163187314798 -4470.0,0.5976098759433596 -4471.0,0.5974035044457402 -4472.0,0.597197204214003 -4473.0,0.596990975223538 -4474.0,0.5967848174497433 -4475.0,0.5965787308680262 -4476.0,0.5963727154538017 -4477.0,0.5961667711824938 -4478.0,0.595960898029535 -4479.0,0.5957550959703658 -4480.0,0.5955493649804358 -4481.0,0.5953437050352026 -4482.0,0.5951381161101327 -4483.0,0.5949325981807007 -4484.0,0.5947271512223897 -4485.0,0.5945217752106916 -4486.0,0.5943164701211063 -4487.0,0.5941112359291427 -4488.0,0.5939060726103176 -4489.0,0.5937009801401566 -4490.0,0.5934959584941937 -4491.0,0.5932910076479712 -4492.0,0.59308612757704 -4493.0,0.5928813182569596 -4494.0,0.5926765796632975 -4495.0,0.5924719117716299 -4496.0,0.5922673145575414 -4497.0,0.5920627879966253 -4498.0,0.5918583320644828 -4499.0,0.5916539467367238 -4500.0,0.5914496319889668 -4501.0,0.5912453877968384 -4502.0,0.5910412141359739 -4503.0,0.5908371109820166 -4504.0,0.5906330783106187 -4505.0,0.5904291160974406 -4506.0,0.590225224318151 -4507.0,0.5900214029484273 -4508.0,0.5898176519639547 -4509.0,0.5896139713404276 -4510.0,0.5894103610535482 -4511.0,0.5892068210790271 -4512.0,0.5890033513925838 -4513.0,0.5887999519699457 -4514.0,0.5885966227868487 -4515.0,0.5883933638190372 -4516.0,0.5881901750422638 -4517.0,0.5879870564322895 -4518.0,0.587784007964884 -4519.0,0.5875810296158248 -4520.0,0.5873781213608982 -4521.0,0.5871752831758987 -4522.0,0.5869725150366293 -4523.0,0.5867698169189011 -4524.0,0.5865671887985336 -4525.0,0.586364630651355 -4526.0,0.5861621424532014 -4527.0,0.5859597241799176 -4528.0,0.5857573758073563 -4529.0,0.5855550973113791 -4530.0,0.5853528886678555 -4531.0,0.5851507498526636 -4532.0,0.5849486808416895 -4533.0,0.5847466816108281 -4534.0,0.5845447521359821 -4535.0,0.584342892393063 -4536.0,0.5841411023579903 -4537.0,0.5839393820066919 -4538.0,0.5837377313151042 -4539.0,0.5835361502591716 -4540.0,0.5833346388148469 -4541.0,0.5831331969580914 -4542.0,0.5829318246648744 -4543.0,0.5827305219111738 -4544.0,0.5825292886729756 -4545.0,0.5823281249262741 -4546.0,0.5821270306470719 -4547.0,0.58192600581138 -4548.0,0.5817250503952176 -4549.0,0.5815241643746122 -4550.0,0.5813233477255995 -4551.0,0.5811226004242236 -4552.0,0.5809219224465367 -4553.0,0.5807213137685995 -4554.0,0.5805207743664808 -4555.0,0.5803203042162576 -4556.0,0.5801199032940155 -4557.0,0.5799195715758481 -4558.0,0.5797193090378571 -4559.0,0.5795191156561527 -4560.0,0.5793189914068534 -4561.0,0.5791189362660858 -4562.0,0.5789189502099847 -4563.0,0.5787190332146933 -4564.0,0.5785191852563629 -4565.0,0.5783194063111532 -4566.0,0.5781196963552319 -4567.0,0.5779200553647751 -4568.0,0.577720483315967 -4569.0,0.5775209801850004 -4570.0,0.5773215459480758 -4571.0,0.5771221805814022 -4572.0,0.5769228840611966 -4573.0,0.5767236563636847 -4574.0,0.5765244974650998 -4575.0,0.5763254073416839 -4576.0,0.5761263859696869 -4577.0,0.575927433325367 -4578.0,0.5757285493849907 -4579.0,0.5755297341248324 -4580.0,0.5753309875211752 -4581.0,0.5751323095503097 -4582.0,0.5749337001885353 -4583.0,0.5747351594121594 -4584.0,0.5745366871974973 -4585.0,0.5743382835208728 -4586.0,0.5741399483586179 -4587.0,0.5739416816870727 -4588.0,0.5737434834825852 -4589.0,0.573545353721512 -4590.0,0.5733472923802175 -4591.0,0.5731492994350746 -4592.0,0.5729513748624642 -4593.0,0.572753518638775 -4594.0,0.5725557307404046 -4595.0,0.5723580111437582 -4596.0,0.5721603598252492 -4597.0,0.5719627767612994 -4598.0,0.5717652619283384 -4599.0,0.5715678153028043 -4600.0,0.571370436861143 -4601.0,0.5711731265798088 -4602.0,0.570975884435264 -4603.0,0.5707787104039791 -4604.0,0.5705816044624326 -4605.0,0.5703845665871111 -4606.0,0.5701875967545097 -4607.0,0.5699906949411311 -4608.0,0.5697938611234863 -4609.0,0.5695970952780947 -4610.0,0.5694003973814834 -4611.0,0.569203767410188 -4612.0,0.5690072053407516 -4613.0,0.5688107111497259 -4614.0,0.5686142848136708 -4615.0,0.568417926309154 -4616.0,0.5682216356127512 -4617.0,0.5680254127010463 -4618.0,0.5678292575506317 -4619.0,0.5676331701381072 -4620.0,0.567437150440081 -4621.0,0.5672411984331697 -4622.0,0.5670453140939973 -4623.0,0.5668494973991963 -4624.0,0.5666537483254074 -4625.0,0.5664580668492789 -4626.0,0.5662624529474676 -4627.0,0.566066906596638 -4628.0,0.5658714277734631 -4629.0,0.5656760164546236 -4630.0,0.5654806726168083 -4631.0,0.565285396236714 -4632.0,0.565090187291046 -4633.0,0.5648950457565171 -4634.0,0.5646999716098482 -4635.0,0.5645049648277685 -4636.0,0.5643100253870151 -4637.0,0.5641151532643333 -4638.0,0.563920348436476 -4639.0,0.5637256108802046 -4640.0,0.5635309405722883 -4641.0,0.5633363374895042 -4642.0,0.5631418016086378 -4643.0,0.5629473329064822 -4644.0,0.5627529313598388 -4645.0,0.5625585969455169 -4646.0,0.5623643296403339 -4647.0,0.562170129421115 -4648.0,0.5619759962646935 -4649.0,0.5617819301479109 -4650.0,0.5615879310476163 -4651.0,0.5613939989406672 -4652.0,0.561200133803929 -4653.0,0.5610063356142747 -4654.0,0.5608126043485859 -4655.0,0.5606189399837517 -4656.0,0.5604253424966693 -4657.0,0.5602318118642441 -4658.0,0.5600383480633891 -4659.0,0.5598449510710257 -4660.0,0.5596516208640829 -4661.0,0.559458357419498 -4662.0,0.5592651607142158 -4663.0,0.5590720307251895 -4664.0,0.5588789674293801 -4665.0,0.5586859708037566 -4666.0,0.5584930408252958 -4667.0,0.5583001774709827 -4668.0,0.5581073807178099 -4669.0,0.5579146505427782 -4670.0,0.5577219869228965 -4671.0,0.5575293898351814 -4672.0,0.5573368592566572 -4673.0,0.5571443951643568 -4674.0,0.5569519975353202 -4675.0,0.5567596663465961 -4676.0,0.5565674015752407 -4677.0,0.556375203198318 -4678.0,0.5561830711929006 -4679.0,0.5559910055360681 -4680.0,0.5557990062049086 -4681.0,0.5556070731765183 -4682.0,0.5554152064280005 -4683.0,0.5552234059364671 -4684.0,0.5550316716790378 -4685.0,0.5548400036328399 -4686.0,0.5546484017750091 -4687.0,0.5544568660826883 -4688.0,0.554265396533029 -4689.0,0.5540739931031902 -4690.0,0.5538826557703387 -4691.0,0.5536913845116497 -4692.0,0.5535001793043056 -4693.0,0.5533090401254971 -4694.0,0.5531179669524229 -4695.0,0.552926959762289 -4696.0,0.5527360185323099 -4697.0,0.5525451432397077 -4698.0,0.5523543338617123 -4699.0,0.5521635903755614 -4700.0,0.5519729127585009 -4701.0,0.5517823009877844 -4702.0,0.551591755040673 -4703.0,0.5514012748944362 -4704.0,0.551210860526351 -4705.0,0.5510205119137025 -4706.0,0.5508302290337834 -4707.0,0.5506400118638942 -4708.0,0.5504498603813437 -4709.0,0.5502597745634479 -4710.0,0.5500697543875311 -4711.0,0.5498797998309253 -4712.0,0.5496899108709703 -4713.0,0.5495000874850136 -4714.0,0.5493103296504108 -4715.0,0.5491206373445251 -4716.0,0.5489310105447277 -4717.0,0.5487414492283973 -4718.0,0.5485519533729208 -4719.0,0.5483625229556928 -4720.0,0.5481731579541153 -4721.0,0.5479838583455987 -4722.0,0.5477946241075609 -4723.0,0.5476054552174275 -4724.0,0.5474163516526322 -4725.0,0.5472273133906164 -4726.0,0.5470383404088288 -4727.0,0.5468494326847267 -4728.0,0.5466605901957747 -4729.0,0.5464718129194452 -4730.0,0.5462831008332185 -4731.0,0.5460944539145826 -4732.0,0.5459058721410333 -4733.0,0.5457173554900742 -4734.0,0.5455289039392165 -4735.0,0.5453405174659794 -4736.0,0.5451521960478898 -4737.0,0.5449639396624824 -4738.0,0.5447757482872995 -4739.0,0.5445876218998911 -4740.0,0.5443995604778153 -4741.0,0.5442115639986377 -4742.0,0.5440236324399316 -4743.0,0.5438357657792782 -4744.0,0.5436479639942664 -4745.0,0.5434602270624928 -4746.0,0.5432725549615617 -4747.0,0.5430849476690852 -4748.0,0.5428974051626831 -4749.0,0.5427099274199831 -4750.0,0.5425225144186204 -4751.0,0.542335166136238 -4752.0,0.5421478825504864 -4753.0,0.5419606636390243 -4754.0,0.5417735093795178 -4755.0,0.5415864197496407 -4756.0,0.5413993947270745 -4757.0,0.5412124342895087 -4758.0,0.5410255384146401 -4759.0,0.5408387070801735 -4760.0,0.540651940263821 -4761.0,0.5404652379433031 -4762.0,0.5402786000963473 -4763.0,0.5400920267006892 -4764.0,0.5399055177340718 -4765.0,0.5397190731742462 -4766.0,0.5395326929989707 -4767.0,0.5393463771860115 -4768.0,0.5391601257131425 -4769.0,0.5389739385581455 -4770.0,0.5387878156988094 -4771.0,0.5386017571129312 -4772.0,0.5384157627783156 -4773.0,0.5382298326727747 -4774.0,0.5380439667741284 -4775.0,0.5378581650602043 -4776.0,0.5376724275088376 -4777.0,0.5374867540978712 -4778.0,0.5373011448051555 -4779.0,0.5371155996085487 -4780.0,0.5369301184859168 -4781.0,0.536744701415133 -4782.0,0.5365593483740785 -4783.0,0.5363740593406419 -4784.0,0.5361888342927198 -4785.0,0.5360036732082162 -4786.0,0.5358185760650426 -4787.0,0.5356335428411182 -4788.0,0.53544857351437 -4789.0,0.5352636680627326 -4790.0,0.535078826464148 -4791.0,0.5348940486965659 -4792.0,0.5347093347379437 -4793.0,0.5345246845662464 -4794.0,0.5343400981594466 -4795.0,0.5341555754955245 -4796.0,0.5339711165524678 -4797.0,0.533786721308272 -4798.0,0.53360238974094 -4799.0,0.5334181218284824 -4800.0,0.5332339175489174 -4801.0,0.5330497768802708 -4802.0,0.5328656998005759 -4803.0,0.5326816862878737 -4804.0,0.5324977363202128 -4805.0,0.5323138498756492 -4806.0,0.5321300269322465 -4807.0,0.5319462674680763 -4808.0,0.5317625714612171 -4809.0,0.5315789388897554 -4810.0,0.5313953697317851 -4811.0,0.531211863965408 -4812.0,0.531028421568733 -4813.0,0.5308450425198767 -4814.0,0.5306617267969634 -4815.0,0.530478474378125 -4816.0,0.5302952852415006 -4817.0,0.5301121593652373 -4818.0,0.5299290967274892 -4819.0,0.5297460973064186 -4820.0,0.5295631610801949 -4821.0,0.5293802880269949 -4822.0,0.5291974781250035 -4823.0,0.5290147313524126 -4824.0,0.5288320476874221 -4825.0,0.5286494271082388 -4826.0,0.5284668695930778 -4827.0,0.528284375120161 -4828.0,0.5281019436677182 -4829.0,0.5279195752139869 -4830.0,0.5277372697372116 -4831.0,0.5275550272156446 -4832.0,0.5273728476275458 -4833.0,0.5271907309511825 -4834.0,0.5270086771648295 -4835.0,0.5268266862467691 -4836.0,0.526644758175291 -4837.0,0.5264628929286927 -4838.0,0.5262810904852789 -4839.0,0.5260993508233619 -4840.0,0.5259176739212614 -4841.0,0.525736059757305 -4842.0,0.525554508309827 -4843.0,0.52537301955717 -4844.0,0.5251915934776834 -4845.0,0.5250102300497247 -4846.0,0.5248289292516584 -4847.0,0.5246476910618566 -4848.0,0.5244665154586989 -4849.0,0.5242854024205725 -4850.0,0.524104351925872 -4851.0,0.5239233639529991 -4852.0,0.5237424384803635 -4853.0,0.523561575486382 -4854.0,0.5233807749494791 -4855.0,0.5232000368480864 -4856.0,0.5230193611606433 -4857.0,0.5228387478655965 -4858.0,0.5226581969414 -4859.0,0.5224777083665156 -4860.0,0.5222972821194124 -4861.0,0.5221169181785666 -4862.0,0.5219366165224623 -4863.0,0.5217563771295906 -4864.0,0.5215761999784505 -4865.0,0.521396085047548 -4866.0,0.5212160323153968 -4867.0,0.5210360417605179 -4868.0,0.5208561133614398 -4869.0,0.5206762470966981 -4870.0,0.5204964429448364 -4871.0,0.5203167008844053 -4872.0,0.5201370208939627 -4873.0,0.5199574029520743 -4874.0,0.5197778470373128 -4875.0,0.5195983531282585 -4876.0,0.5194189212034993 -4877.0,0.5192395512416301 -4878.0,0.5190602432212534 -4879.0,0.5188809971209791 -4880.0,0.5187018129194245 -4881.0,0.518522690595214 -4882.0,0.5183436301269799 -4883.0,0.5181646314933614 -4884.0,0.5179856946730055 -4885.0,0.517806819644566 -4886.0,0.5176280063867046 -4887.0,0.5174492548780901 -4888.0,0.5172705650973989 -4889.0,0.5170919370233146 -4890.0,0.5169133706345279 -4891.0,0.5167348659097375 -4892.0,0.5165564228276489 -4893.0,0.5163780413669751 -4894.0,0.5161997215064366 -4895.0,0.5160214632247611 -4896.0,0.5158432665006836 -4897.0,0.5156651313129467 -4898.0,0.5154870576403 -4899.0,0.5153090454615007 -4900.0,0.5151310947553133 -4901.0,0.5149532055005095 -4902.0,0.5147753776758685 -4903.0,0.5145976112601764 -4904.0,0.5144199062322274 -4905.0,0.5142422625708225 -4906.0,0.5140646802547699 -4907.0,0.5138871592628855 -4908.0,0.5137096995739923 -4909.0,0.5135323011669205 -4910.0,0.513354964020508 -4911.0,0.5131776881135997 -4912.0,0.5130004734250477 -4913.0,0.5128233199337118 -4914.0,0.5126462276184588 -4915.0,0.5124691964581629 -4916.0,0.5122922264317056 -4917.0,0.5121153175179755 -4918.0,0.5119384696958689 -4919.0,0.5117616829442889 -4920.0,0.5115849572421464 -4921.0,0.5114082925683591 -4922.0,0.5112316889018522 -4923.0,0.5110551462215583 -4924.0,0.5108786645064171 -4925.0,0.5107022437353755 -4926.0,0.510525883887388 -4927.0,0.5103495849414159 -4928.0,0.5101733468764282 -4929.0,0.509997169671401 -4930.0,0.5098210533053176 -4931.0,0.5096449977571684 -4932.0,0.5094690030059517 -4933.0,0.5092930690306722 -4934.0,0.5091171958103423 -4935.0,0.5089413833239819 -4936.0,0.5087656315506176 -4937.0,0.5085899404692836 -4938.0,0.5084143100590213 -4939.0,0.508238740298879 -4940.0,0.5080632311679127 -4941.0,0.5078877826451855 -4942.0,0.5077123947097676 -4943.0,0.5075370673407364 -4944.0,0.5073618005171768 -4945.0,0.5071865942181807 -4946.0,0.5070114484228472 -4947.0,0.5068363631102826 -4948.0,0.5066613382596007 -4949.0,0.5064863738499222 -4950.0,0.5063114698603751 -4951.0,0.5061366262700948 -4952.0,0.5059618430582234 -4953.0,0.5057871202039109 -4954.0,0.5056124576863139 -4955.0,0.5054378554845966 -4956.0,0.5052633135779301 -4957.0,0.5050888319454929 -4958.0,0.5049144105664706 -4959.0,0.5047400494200559 -4960.0,0.5045657484854489 -4961.0,0.5043915077418568 -4962.0,0.5042173271684938 -4963.0,0.5040432067445816 -4964.0,0.5038691464493488 -4965.0,0.5036951462620313 -4966.0,0.503521206161872 -4967.0,0.5033473261281214 -4968.0,0.5031735061400368 -4969.0,0.5029997461768825 -4970.0,0.5028260462179305 -4971.0,0.5026524062424595 -4972.0,0.5024788262297555 -4973.0,0.5023053061591118 -4974.0,0.5021318460098287 -4975.0,0.5019584457612136 -4976.0,0.5017851053925811 -4977.0,0.5016118248832531 -4978.0,0.5014386042125583 -4979.0,0.5012654433598327 -4980.0,0.5010923423044198 -4981.0,0.5009193010256696 -4982.0,0.5007463195029397 -4983.0,0.5005733977155946 -4984.0,0.500400535643006 -4985.0,0.5002277332645527 -4986.0,0.5000549905596207 -4987.0,0.499882307507603 -4988.0,0.4997096840878998 -4989.0,0.4995371202799183 -4990.0,0.499364616063073 -4991.0,0.4991921714167853 -4992.0,0.49901978632048394 -4993.0,0.49884746075360453 -4994.0,0.49867519469558996 -4995.0,0.4985029881258901 -4996.0,0.49833084102396197 -4997.0,0.4981587533692697 -4998.0,0.49798672514128445 -4999.0,0.4978147563194845 -5000.0,0.4976428468833553 -5001.0,0.49747099681238927 -5002.0,0.4972992060860859 -5003.0,0.49712747468395185 -5004.0,0.4969558025855008 -5005.0,0.4967841897702535 -5006.0,0.4966126362177379 -5007.0,0.4964411419074888 -5008.0,0.4962697068190482 -5009.0,0.49609833093196515 -5010.0,0.4959270142257957 -5011.0,0.4957557566801032 -5012.0,0.4955845582744577 -5013.0,0.49541341898843655 -5014.0,0.49524233880162405 -5015.0,0.4950713176936116 -5016.0,0.49490035564399765 -5017.0,0.49472945263238766 -5018.0,0.49455860863839407 -5019.0,0.4943878236416365 -5020.0,0.4942170976217416 -5021.0,0.49404643055834296 -5022.0,0.4938758224310812 -5023.0,0.493705273219604 -5024.0,0.49353478290356617 -5025.0,0.49336435146262947 -5026.0,0.49319397887646255 -5027.0,0.4930236651247413 -5028.0,0.49285341018714846 -5029.0,0.4926832140433739 -5030.0,0.49251307667311445 -5031.0,0.492342998056074 -5032.0,0.4921729781719634 -5033.0,0.49200301700050053 -5034.0,0.4918331145214102 -5035.0,0.4916632707144243 -5036.0,0.49149348555928174 -5037.0,0.49132375903572834 -5038.0,0.49115409112351704 -5039.0,0.4909844818024076 -5040.0,0.4908149310521669 -5041.0,0.49064543885256884 -5042.0,0.4904760051833941 -5043.0,0.49030663002443065 -5044.0,0.4901373133554731 -5045.0,0.4899680551563233 -5046.0,0.48979885540678997 -5047.0,0.4896297140866888 -5048.0,0.48946063117584243 -5049.0,0.48929160665408056 -5050.0,0.4891226405012398 -5051.0,0.48895373269716375 -5052.0,0.4887848832217028 -5053.0,0.48861609205471457 -5054.0,0.48844735917606347 -5055.0,0.4882786845656209 -5056.0,0.48811006820326514 -5057.0,0.4879415100688816 -5058.0,0.48777301014236246 -5059.0,0.4876045684036069 -5060.0,0.48743618483252105 -5061.0,0.487267859409018 -5062.0,0.4870995921130178 -5063.0,0.4869313829244473 -5064.0,0.4867632318232404 -5065.0,0.4865951387893379 -5066.0,0.48642710380268755 -5067.0,0.48625912684324396 -5068.0,0.4860912078909687 -5069.0,0.4859233469258304 -5070.0,0.4857555439278043 -5071.0,0.48558779887687276 -5072.0,0.4854201117530251 -5073.0,0.48525248253625736 -5074.0,0.48508491120657266 -5075.0,0.48491739774398096 -5076.0,0.48474994212849914 -5077.0,0.48458254434015097 -5078.0,0.484415204358967 -5079.0,0.48424792216498497 -5080.0,0.4840806977382492 -5081.0,0.4839135310588111 -5082.0,0.48374642210672886 -5083.0,0.48357937086206765 -5084.0,0.48341237730489944 -5085.0,0.4832454414153031 -5086.0,0.4830785631733644 -5087.0,0.482911742559176 -5088.0,0.48274497955283746 -5089.0,0.48257827413445514 -5090.0,0.4824116262841423 -5091.0,0.482245035982019 -5092.0,0.48207850320821233 -5093.0,0.4819120279428561 -5094.0,0.48174561016609097 -5095.0,0.4815792498580646 -5096.0,0.4814129469989314 -5097.0,0.48124670156885263 -5098.0,0.48108051354799647 -5099.0,0.48091438291653776 -5100.0,0.48074830965465853 -5101.0,0.4805822937425473 -5102.0,0.4804163351603996 -5103.0,0.48025043388841787 -5104.0,0.4800845899068112 -5105.0,0.4799188031957956 -5106.0,0.47975307373559406 -5107.0,0.47958740150643614 -5108.0,0.47942178648855843 -5109.0,0.47925622866220424 -5110.0,0.47909072800762365 -5111.0,0.47892528450507377 -5112.0,0.47875989813481823 -5113.0,0.4785945688771278 -5114.0,0.4784292967122799 -5115.0,0.47826408162055867 -5116.0,0.4780989235822552 -5117.0,0.4779338225776673 -5118.0,0.4777687785870997 -5119.0,0.4776037915908638 -5120.0,0.4774388615692779 -5121.0,0.477273988502667 -5122.0,0.47710917237136297 -5123.0,0.47694441315570446 -5124.0,0.47677971083603676 -5125.0,0.4766150653927123 -5126.0,0.47645047680609004 -5127.0,0.47628594505653565 -5128.0,0.47612147012442174 -5129.0,0.47595705199012767 -5130.0,0.47579269063403956 -5131.0,0.4756283860365503 -5132.0,0.4754641381780595 -5133.0,0.4752999470389736 -5134.0,0.47513581259970583 -5135.0,0.4749717348406761 -5136.0,0.47480771374231123 -5137.0,0.4746437492850446 -5138.0,0.4744798414493165 -5139.0,0.47431599021557386 -5140.0,0.47415219556427046 -5141.0,0.4739884574758668 -5142.0,0.4738247759308301 -5143.0,0.47366115090963434 -5144.0,0.4734975823927603 -5145.0,0.4733340703606954 -5146.0,0.47317061479393385 -5147.0,0.47300721567297666 -5148.0,0.4728438729783314 -5149.0,0.47268058669051255 -5150.0,0.4725173567900412 -5151.0,0.47235418325744527 -5152.0,0.4721910660732593 -5153.0,0.47202800521802457 -5154.0,0.4718650006722892 -5155.0,0.47170205241660784 -5156.0,0.47153916043154204 -5157.0,0.47137632469765994 -5158.0,0.4712135451955364 -5159.0,0.471050821905753 -5160.0,0.4708881548088981 -5161.0,0.47072554388556664 -5162.0,0.47056298911636035 -5163.0,0.47040049048188765 -5164.0,0.47023804796276364 -5165.0,0.47007566153961006 -5166.0,0.46991333119305545 -5167.0,0.469751056903735 -5168.0,0.46958883865229045 -5169.0,0.46942667641937047 -5170.0,0.4692645701856302 -5171.0,0.46910251993173163 -5172.0,0.4689405256383433 -5173.0,0.46877858728614047 -5174.0,0.4686167048558051 -5175.0,0.4684548783280258 -5176.0,0.46829310768349774 -5177.0,0.46813139290292305 -5178.0,0.4679697339670102 -5179.0,0.46780813085647444 -5180.0,0.4676465835520378 -5181.0,0.4674850920344288 -5182.0,0.46732365628438266 -5183.0,0.46716227628264134 -5184.0,0.46700095200995334 -5185.0,0.4668396834470739 -5186.0,0.46667847057476475 -5187.0,0.4665173133737945 -5188.0,0.46635621182493814 -5189.0,0.4661951659089775 -5190.0,0.466034175606701 -5191.0,0.46587324089890364 -5192.0,0.4657123617663871 -5193.0,0.4655515381899596 -5194.0,0.4653907701504362 -5195.0,0.4652300576286383 -5196.0,0.4650694006053941 -5197.0,0.4649087990615385 -5198.0,0.4647482529779128 -5199.0,0.46458776233536503 -5200.0,0.46442732711474977 -5201.0,0.4642669472969284 -5202.0,0.46410662286276877 -5203.0,0.46394635379314525 -5204.0,0.463786140068939 -5205.0,0.4636259816710376 -5206.0,0.4634658785803354 -5207.0,0.4633058307777332 -5208.0,0.4631458382441385 -5209.0,0.4629859009604654 -5210.0,0.4628260189076344 -5211.0,0.46266619206657295 -5212.0,0.46250642041821466 -5213.0,0.46234670394350014 -5214.0,0.46218704262337623 -5215.0,0.4620274364387965 -5216.0,0.4618678853707212 -5217.0,0.461708389400117 -5218.0,0.4615489485079572 -5219.0,0.4613895626752216 -5220.0,0.4612302318828967 -5221.0,0.46107095611197546 -5222.0,0.46091173534345753 -5223.0,0.4607525695583489 -5224.0,0.4605934587376624 -5225.0,0.46043440286241716 -5226.0,0.46027540191363897 -5227.0,0.4601164558723602 -5228.0,0.4599575647196198 -5229.0,0.4597987284364632 -5230.0,0.4596399470039423 -5231.0,0.4594812204031157 -5232.0,0.45932254861504845 -5233.0,0.4591639316208122 -5234.0,0.45900536940148506 -5235.0,0.4588468619381518 -5236.0,0.45868840921190346 -5237.0,0.45853001120383796 -5238.0,0.45837166789505945 -5239.0,0.4582133792666788 -5240.0,0.45805514529981334 -5241.0,0.4578969659755869 -5242.0,0.4577388412751298 -5243.0,0.45758077117957896 -5244.0,0.45742275567007773 -5245.0,0.457264794727776 -5246.0,0.45710688833383023 -5247.0,0.4569490364694034 -5248.0,0.45679123911566477 -5249.0,0.45663349625379035 -5250.0,0.4564758078649626 -5251.0,0.4563181739303704 -5252.0,0.45616059443120915 -5253.0,0.45600306934868085 -5254.0,0.4558455986639939 -5255.0,0.45568818235836306 -5256.0,0.45553082041300985 -5257.0,0.455373512809162 -5258.0,0.45521625952805406 -5259.0,0.4550590605509267 -5260.0,0.4549019158590273 -5261.0,0.4547448254336096 -5262.0,0.4545877892559339 -5263.0,0.4544308073072669 -5264.0,0.4542738795688818 -5265.0,0.4541170060220583 -5266.0,0.4539601866480825 -5267.0,0.453803421428247 -5268.0,0.45364671034385085 -5269.0,0.4534900533761995 -5270.0,0.453333450506605 -5271.0,0.4531769017163858 -5272.0,0.45302040698686663 -5273.0,0.452863966299379 -5274.0,0.4527075796352605 -5275.0,0.45255124697585536 -5276.0,0.4523949683025143 -5277.0,0.45223874359659444 -5278.0,0.45208257283945924 -5279.0,0.4519264560124787 -5280.0,0.45177039309702927 -5281.0,0.4516143840744937 -5282.0,0.4514584289262613 -5283.0,0.45130252763372775 -5284.0,0.45114668017829507 -5285.0,0.4509908865413719 -5286.0,0.45083514670437325 -5287.0,0.4506794606487204 -5288.0,0.4505238283558411 -5289.0,0.4503682498071696 -5290.0,0.45021272498414655 -5291.0,0.45005725386821893 -5292.0,0.4499018364408402 -5293.0,0.4497464726834702 -5294.0,0.4495911625775751 -5295.0,0.4494359061046275 -5296.0,0.4492807032461066 -5297.0,0.44912555398349774 -5298.0,0.44897045829829274 -5299.0,0.44881541617198983 -5300.0,0.44866042758609365 -5301.0,0.4485054925221151 -5302.0,0.44835061096157164 -5303.0,0.44819578288598694 -5304.0,0.44804100827689125 -5305.0,0.447886287115821 -5306.0,0.44773161938431916 -5307.0,0.4475770050639349 -5308.0,0.44742244413622395 -5309.0,0.44726793658274827 -5310.0,0.44711348238507626 -5311.0,0.4469590815247826 -5312.0,0.4468047339834485 -5313.0,0.44665043974266133 -5314.0,0.4464961987840149 -5315.0,0.4463420110891095 -5316.0,0.44618787663955156 -5317.0,0.44603379541695404 -5318.0,0.4458797674029361 -5319.0,0.4457257925791234 -5320.0,0.4455718709271478 -5321.0,0.4454180024286476 -5322.0,0.4452641870652674 -5323.0,0.44511042481865815 -5324.0,0.4449567156704771 -5325.0,0.4448030596023879 -5326.0,0.4446494565960606 -5327.0,0.4444959066331713 -5328.0,0.4443424096954027 -5329.0,0.4441889657644437 -5330.0,0.4440355748219897 -5331.0,0.4438822368497421 -5332.0,0.44372895182940886 -5333.0,0.44357571974270416 -5334.0,0.4434225405713486 -5335.0,0.443269414297069 -5336.0,0.4431163409015985 -5337.0,0.4429633203666766 -5338.0,0.442810352674049 -5339.0,0.4426574378054678 -5340.0,0.44250457574269136 -5341.0,0.44235176646748436 -5342.0,0.4421990099616178 -5343.0,0.4420463062068689 -5344.0,0.4418936551850212 -5345.0,0.4417410568778646 -5346.0,0.44158851126719517 -5347.0,0.4414360183348154 -5348.0,0.44128357806253393 -5349.0,0.4411311904321658 -5350.0,0.4409788554255323 -5351.0,0.4408265730244609 -5352.0,0.44067434321078536 -5353.0,0.4405221659663459 -5354.0,0.4403700412729889 -5355.0,0.44021796911256694 -5356.0,0.44006594946693894 -5357.0,0.43991398231797 -5358.0,0.4397620676475316 -5359.0,0.43961020543750146 -5360.0,0.43945839566976347 -5361.0,0.4393066383262078 -5362.0,0.439154933388731 -5363.0,0.43900328083923573 -5364.0,0.4388516806596309 -5365.0,0.43870013283183185 -5366.0,0.43854863733775984 -5367.0,0.43839719415934275 -5368.0,0.43824580327851437 -5369.0,0.43809446467721497 -5370.0,0.4379431783373908 -5371.0,0.4377919442409947 -5372.0,0.4376407623699855 -5373.0,0.43748963270632824 -5374.0,0.4373385552319943 -5375.0,0.43718752992896115 -5376.0,0.4370365567792127 -5377.0,0.4368856357647389 -5378.0,0.436734766867536 -5379.0,0.4365839500696063 -5380.0,0.43643318535295866 -5381.0,0.43628247269960785 -5382.0,0.4361318120915749 -5383.0,0.4359812035108872 -5384.0,0.4358306469395782 -5385.0,0.43568014235968755 -5386.0,0.43552968975326123 -5387.0,0.4353792891023513 -5388.0,0.4352289403890161 -5389.0,0.43507864359532 -5390.0,0.43492839870333383 -5391.0,0.4347782056951344 -5392.0,0.4346280645528049 -5393.0,0.4344779752584344 -5394.0,0.43432793779411843 -5395.0,0.43417795214195865 -5396.0,0.4340280182840628 -5397.0,0.43387813620254484 -5398.0,0.43372830587952504 -5399.0,0.4335785272971297 -5400.0,0.43342880043749127 -5401.0,0.4332791252827484 -5402.0,0.4331295018150461 -5403.0,0.43297993001653523 -5404.0,0.43283040986937305 -5405.0,0.4326809413557228 -5406.0,0.43253152445775406 -5407.0,0.43238215915764244 -5408.0,0.43223284543756973 -5409.0,0.432083583279724 -5410.0,0.4319343726662993 -5411.0,0.43178521357949584 -5412.0,0.4316361060015201 -5413.0,0.4314870499145846 -5414.0,0.431338045300908 -5415.0,0.4311890921427153 -5416.0,0.43104019042223723 -5417.0,0.43089134012171104 -5418.0,0.43074254122338 -5419.0,0.4305937937094934 -5420.0,0.4304450975623068 -5421.0,0.43029645276408185 -5422.0,0.43014785929708627 -5423.0,0.4299993171435939 -5424.0,0.4298508262858849 -5425.0,0.4297023867062452 -5426.0,0.4295539983869672 -5427.0,0.4294056613103491 -5428.0,0.4292573754586955 -5429.0,0.42910914081431695 -5430.0,0.42896095735953016 -5431.0,0.42881282507665786 -5432.0,0.42866474394802895 -5433.0,0.42851671395597846 -5434.0,0.4283687350828475 -5435.0,0.4282208073109833 -5436.0,0.42807293062273905 -5437.0,0.42792510500047426 -5438.0,0.4277773304265543 -5439.0,0.42762960688335083 -5440.0,0.42748193435324144 -5441.0,0.42733431281860995 -5442.0,0.4271867422618461 -5443.0,0.4270392226653459 -5444.0,0.42689175401151125 -5445.0,0.4267443362827502 -5446.0,0.42659696946147696 -5447.0,0.4264496535301117 -5448.0,0.4263023884710808 -5449.0,0.4261551742668165 -5450.0,0.42600801089975726 -5451.0,0.42586089835234753 -5452.0,0.4257138366070379 -5453.0,0.42556682564628495 -5454.0,0.42541986545255134 -5455.0,0.42527295600830584 -5456.0,0.42512609729602313 -5457.0,0.4249792892981841 -5458.0,0.42483253199727566 -5459.0,0.4246858253757907 -5460.0,0.42453916941622816 -5461.0,0.4243925641010931 -5462.0,0.42424600941289653 -5463.0,0.4240995053341556 -5464.0,0.42395305184739335 -5465.0,0.423806648935139 -5466.0,0.42366029657992776 -5467.0,0.4235139947643009 -5468.0,0.4233677434708056 -5469.0,0.4232215426819952 -5470.0,0.423075392380429 -5471.0,0.42292929254867234 -5472.0,0.42278324316929655 -5473.0,0.42263724422487897 -5474.0,0.4224912956980031 -5475.0,0.4223453975712583 -5476.0,0.4221995498272399 -5477.0,0.4220537524485495 -5478.0,0.42190800541779433 -5479.0,0.42176230871758796 -5480.0,0.42161666233054984 -5481.0,0.4214710662393054 -5482.0,0.4213255204264861 -5483.0,0.4211800248747293 -5484.0,0.4210345795666785 -5485.0,0.42088918448498314 -5486.0,0.4207438396122987 -5487.0,0.4205985449312865 -5488.0,0.42045330042461404 -5489.0,0.42030810607495467 -5490.0,0.4201629618649877 -5491.0,0.4200178677773985 -5492.0,0.41987282379487856 -5493.0,0.41972782990012497 -5494.0,0.41958288607584115 -5495.0,0.4194379923047363 -5496.0,0.41929314856952565 -5497.0,0.4191483548529305 -5498.0,0.41900361113767787 -5499.0,0.41885891740650094 -5500.0,0.41871427364213887 -5501.0,0.41856967982733667 -5502.0,0.4184251359448453 -5503.0,0.4182806419774217 -5504.0,0.41813619790782897 -5505.0,0.4179918037188359 -5506.0,0.41784745939321727 -5507.0,0.41770316491375387 -5508.0,0.41755892026323244 -5509.0,0.41741472542444563 -5510.0,0.41727058038019205 -5511.0,0.41712648511327627 -5512.0,0.41698243960650877 -5513.0,0.41683844384270596 -5514.0,0.41669449780469014 -5515.0,0.4165506014752897 -5516.0,0.4164067548373388 -5517.0,0.4162629578736776 -5518.0,0.4161192105671522 -5519.0,0.4159755129006145 -5520.0,0.4158318648569225 -5521.0,0.41568826641894 -5522.0,0.4155447175695367 -5523.0,0.41540121829158844 -5524.0,0.41525776856797664 -5525.0,0.4151143683815889 -5526.0,0.4149710177153185 -5527.0,0.41482771655206485 -5528.0,0.41468446487473315 -5529.0,0.41454126266623453 -5530.0,0.41439810990948595 -5531.0,0.41425500658741043 -5532.0,0.41411195268293666 -5533.0,0.41396894817899943 -5534.0,0.4138259930585394 -5535.0,0.41368308730450293 -5536.0,0.4135402308998425 -5537.0,0.4133974238275164 -5538.0,0.41325466607048866 -5539.0,0.4131119576117294 -5540.0,0.41296929843421465 -5541.0,0.412826688520926 -5542.0,0.4126841278548513 -5543.0,0.412541616418984 -5544.0,0.4123991541963236 -5545.0,0.4122567411698754 -5546.0,0.41211437732265044 -5547.0,0.41197206263766584 -5548.0,0.41182979709794454 -5549.0,0.41168758068651523 -5550.0,0.41154541338641254 -5551.0,0.4114032951806769 -5552.0,0.41126122605235477 -5553.0,0.41111920598449825 -5554.0,0.4109772349601654 -5555.0,0.4108353129624201 -5556.0,0.4106934399743321 -5557.0,0.410551615978977 -5558.0,0.4104098409594362 -5559.0,0.41026811489879705 -5560.0,0.4101264377801525 -5561.0,0.40998480958660166 -5562.0,0.4098432303012493 -5563.0,0.409701699907206 -5564.0,0.40956021838758827 -5565.0,0.4094187857255183 -5566.0,0.40927740190412426 -5567.0,0.40913606690654014 -5568.0,0.4089947807159056 -5569.0,0.40885354331536633 -5570.0,0.40871235468807365 -5571.0,0.40857121481718484 -5572.0,0.40843012368586296 -5573.0,0.4082890812772768 -5574.0,0.4081480875746011 -5575.0,0.4080071425610163 -5576.0,0.4078662462197087 -5577.0,0.40772539853387035 -5578.0,0.4075845994866992 -5579.0,0.4074438490613989 -5580.0,0.407303147241179 -5581.0,0.4071624940092548 -5582.0,0.4070218893488474 -5583.0,0.4068813332431837 -5584.0,0.4067408256754963 -5585.0,0.4066003666290237 -5586.0,0.40645995608701024 -5587.0,0.4063195940327059 -5588.0,0.4061792804493665 -5589.0,0.40603901532025366 -5590.0,0.4058987986286348 -5591.0,0.4057586303577831 -5592.0,0.4056185104909774 -5593.0,0.4054784390115026 -5594.0,0.4053384159026491 -5595.0,0.4051984411477131 -5596.0,0.4050585147299967 -5597.0,0.4049186366328077 -5598.0,0.4047788068394596 -5599.0,0.40463902533327184 -5600.0,0.40449929209756946 -5601.0,0.4043596071156833 -5602.0,0.4042199703709499 -5603.0,0.4040803818467117 -5604.0,0.40394084152631676 -5605.0,0.40380134939311896 -5606.0,0.40366190543047786 -5607.0,0.4035225096217589 -5608.0,0.4033831619503331 -5609.0,0.4032438623995773 -5610.0,0.40310461095287414 -5611.0,0.4029654075936119 -5612.0,0.4028262523051846 -5613.0,0.40268714507099207 -5614.0,0.4025480858744398 -5615.0,0.4024090746989391 -5616.0,0.4022701115279069 -5617.0,0.4021311963447659 -5618.0,0.4019923291329446 -5619.0,0.40185350987587704 -5620.0,0.40171473855700324 -5621.0,0.40157601515976865 -5622.0,0.4014373396676247 -5623.0,0.40129871206402834 -5624.0,0.40116013233244235 -5625.0,0.4010216004563351 -5626.0,0.4008831164191809 -5627.0,0.4007446802044594 -5628.0,0.4006062917956564 -5629.0,0.400467951176263 -5630.0,0.40032965832977624 -5631.0,0.40019141323969876 -5632.0,0.40005321588953896 -5633.0,0.3999150662628109 -5634.0,0.3997769643430344 -5635.0,0.39963891011373476 -5636.0,0.3995009035584432 -5637.0,0.39936294466069655 -5638.0,0.3992250334040373 -5639.0,0.3990871697720137 -5640.0,0.3989493537481796 -5641.0,0.39881158531609445 -5642.0,0.3986738644593236 -5643.0,0.3985361911614379 -5644.0,0.398398565406014 -5645.0,0.39826098717663405 -5646.0,0.398123456456886 -5647.0,0.39798597323036355 -5648.0,0.3978485374806658 -5649.0,0.3977111491913977 -5650.0,0.3975738083461699 -5651.0,0.3974365149285986 -5652.0,0.39729926892230566 -5653.0,0.39716207031091866 -5654.0,0.39702491907807086 -5655.0,0.39688781520740096 -5656.0,0.39675075868255366 -5657.0,0.396613749487179 -5658.0,0.3964767876049328 -5659.0,0.3963398730194766 -5660.0,0.3962030057144773 -5661.0,0.3960661856736078 -5662.0,0.3959294128805464 -5663.0,0.3957926873189771 -5664.0,0.39565600897258957 -5665.0,0.395519377825079 -5666.0,0.39538279386014635 -5667.0,0.3952462570614982 -5668.0,0.3951097674128466 -5669.0,0.3949733248979094 -5670.0,0.39483692950040994 -5671.0,0.3947005812040773 -5672.0,0.3945642799926461 -5673.0,0.39442802584985664 -5674.0,0.3942918187594547 -5675.0,0.3941556587051918 -5676.0,0.39401954567082514 -5677.0,0.3938834796401174 -5678.0,0.39374746059683674 -5679.0,0.39361148852475725 -5680.0,0.3934755634076584 -5681.0,0.3933396852293253 -5682.0,0.3932038539735486 -5683.0,0.39306806962412477 -5684.0,0.3929323321648557 -5685.0,0.39279664157954874 -5686.0,0.3926609978520172 -5687.0,0.3925254009660797 -5688.0,0.39238985090556044 -5689.0,0.39225434765428935 -5690.0,0.39211889119610194 -5691.0,0.39198348151483914 -5692.0,0.3918481185943476 -5693.0,0.3917128024184795 -5694.0,0.3915775329710926 -5695.0,0.39144231023605036 -5696.0,0.3913071341972215 -5697.0,0.3911720048384807 -5698.0,0.39103692214370783 -5699.0,0.3909018860967886 -5700.0,0.39076689668161424 -5701.0,0.39063195388208144 -5702.0,0.3904970576820925 -5703.0,0.39036220806555527 -5704.0,0.3902274050163832 -5705.0,0.3900926485184953 -5706.0,0.38995793855581606 -5707.0,0.3898232751122756 -5708.0,0.38968865817180953 -5709.0,0.38955408771835903 -5710.0,0.38941956373587083 -5711.0,0.38928508620829716 -5712.0,0.38915065511959585 -5713.0,0.38901627045373033 -5714.0,0.38888193219466943 -5715.0,0.38874764032638753 -5716.0,0.38861339483286467 -5717.0,0.3884791956980863 -5718.0,0.38834504290604344 -5719.0,0.3882109364407327 -5720.0,0.38807687628615606 -5721.0,0.38794286242632114 -5722.0,0.3878088948452411 -5723.0,0.3876749735269346 -5724.0,0.3875410984554258 -5725.0,0.3874072696147443 -5726.0,0.3872734869889254 -5727.0,0.3871397505620097 -5728.0,0.3870060603180435 -5729.0,0.38687241624107854 -5730.0,0.386738818315172 -5731.0,0.3866052665243866 -5732.0,0.38647176085279067 -5733.0,0.3863383012844579 -5734.0,0.3862048878034676 -5735.0,0.38607152039390447 -5736.0,0.3859381990398587 -5737.0,0.3858049237254261 -5738.0,0.3856716944347079 -5739.0,0.38553851115181076 -5740.0,0.3854053738608469 -5741.0,0.38527228254593404 -5742.0,0.38513923719119536 -5743.0,0.38500623778075943 -5744.0,0.38487328429876055 -5745.0,0.3847403767293382 -5746.0,0.38460751505663754 -5747.0,0.3844746992648091 -5748.0,0.384341929338009 -5749.0,0.38420920526039865 -5750.0,0.38407652701614503 -5751.0,0.38394389458942074 -5752.0,0.38381130796440366 -5753.0,0.38367876712527704 -5754.0,0.3835462720562299 -5755.0,0.38341382274145636 -5756.0,0.38328141916515635 -5757.0,0.383149061311535 -5758.0,0.38301674916480294 -5759.0,0.3828844827091764 -5760.0,0.3827522619288769 -5761.0,0.3826200868081315 -5762.0,0.38248795733117263 -5763.0,0.38235587348223826 -5764.0,0.3822238352455717 -5765.0,0.3820918426054217 -5766.0,0.3819598955460426 -5767.0,0.3818279940516941 -5768.0,0.3816961381066412 -5769.0,0.38156432769515447 -5770.0,0.38143256280151 -5771.0,0.38130084340998904 -5772.0,0.3811691695048786 -5773.0,0.38103754107047083 -5774.0,0.3809059580910634 -5775.0,0.3807744205509595 -5776.0,0.3806429284344676 -5777.0,0.38051148172590166 -5778.0,0.3803800804095811 -5779.0,0.3802487244698306 -5780.0,0.38011741389098047 -5781.0,0.3799861486573662 -5782.0,0.3798549287533289 -5783.0,0.37972375416321497 -5784.0,0.3795926248713762 -5785.0,0.3794615408621698 -5786.0,0.3793305021199585 -5787.0,0.3791995086291102 -5788.0,0.37906856037399844 -5789.0,0.3789376573390021 -5790.0,0.37880679950850527 -5791.0,0.3786759868668976 -5792.0,0.3785452193985741 -5793.0,0.37841449708793523 -5794.0,0.3782838199193867 -5795.0,0.3781531878773397 -5796.0,0.37802260094621076 -5797.0,0.37789205911042184 -5798.0,0.3777615623544002 -5799.0,0.3776311106625786 -5800.0,0.37750070401939506 -5801.0,0.37737034240929307 -5802.0,0.37724002581672134 -5803.0,0.37710975422613413 -5804.0,0.37697952762199094 -5805.0,0.37684934598875675 -5806.0,0.3767192093109018 -5807.0,0.3765891175729017 -5808.0,0.3764590707592375 -5809.0,0.3763290688543956 -5810.0,0.37619911184286764 -5811.0,0.37606919970915076 -5812.0,0.37593933243774735 -5813.0,0.3758095100131652 -5814.0,0.3756797324199174 -5815.0,0.37554999964252256 -5816.0,0.3754203116655044 -5817.0,0.37529066847339204 -5818.0,0.37516107005072014 -5819.0,0.3750315163820284 -5820.0,0.37490200745186214 -5821.0,0.3747725432447718 -5822.0,0.37464312374531333 -5823.0,0.37451374893804784 -5824.0,0.3743844188075419 -5825.0,0.3742551333383674 -5826.0,0.3741258925151014 -5827.0,0.37399669632232657 -5828.0,0.37386754474463063 -5829.0,0.37373843776660687 -5830.0,0.3736093753728536 -5831.0,0.37348035754797476 -5832.0,0.3733513842765794 -5833.0,0.37322245554328193 -5834.0,0.37309357133270216 -5835.0,0.3729647316294651 -5836.0,0.37283593641820106 -5837.0,0.3727071856835458 -5838.0,0.3725784794101403 -5839.0,0.37244981758263074 -5840.0,0.3723212001856688 -5841.0,0.37219262720391133 -5842.0,0.3720640986220205 -5843.0,0.3719356144246638 -5844.0,0.37180717459651397 -5845.0,0.37167877912224906 -5846.0,0.3715504279865525 -5847.0,0.37142212117411294 -5848.0,0.3712938586696242 -5849.0,0.37116564045778566 -5850.0,0.3710374665233017 -5851.0,0.3709093368508822 -5852.0,0.3707812514252421 -5853.0,0.3706532102311018 -5854.0,0.37052521325318694 -5855.0,0.3703972604762284 -5856.0,0.37026935188496235 -5857.0,0.3701414874641302 -5858.0,0.3700136671984788 -5859.0,0.3698858910727599 -5860.0,0.3697581590717308 -5861.0,0.36963047118015413 -5862.0,0.36950282738279755 -5863.0,0.36937522766443415 -5864.0,0.3692476720098421 -5865.0,0.3691201604038051 -5866.0,0.36899269283111175 -5867.0,0.3688652692765563 -5868.0,0.36873788972493793 -5869.0,0.3686105541610612 -5870.0,0.36848326256973596 -5871.0,0.3683560149357772 -5872.0,0.3682288112440052 -5873.0,0.3681016514792455 -5874.0,0.36797453562632887 -5875.0,0.3678474636700913 -5876.0,0.3677204355953741 -5877.0,0.3675934513870236 -5878.0,0.36746651102989175 -5879.0,0.36733961450883523 -5880.0,0.3672127618087164 -5881.0,0.3670859529144025 -5882.0,0.36695918781076636 -5883.0,0.3668324664826856 -5884.0,0.36670578891504346 -5885.0,0.3665791550927281 -5886.0,0.36645256500063317 -5887.0,0.36632601862365727 -5888.0,0.3661995159467044 -5889.0,0.3660730569546837 -5890.0,0.36594664163250956 -5891.0,0.3658202699651015 -5892.0,0.36569394193738425 -5893.0,0.36556765753428805 -5894.0,0.36544141674074776 -5895.0,0.3653152195417041 -5896.0,0.3651890659221023 -5897.0,0.3650629558668935 -5898.0,0.3649368893610335 -5899.0,0.36481086638948357 -5900.0,0.36468488693720996 -5901.0,0.3645589509891844 -5902.0,0.3644330585303835 -5903.0,0.3643072095457894 -5904.0,0.36418140402038895 -5905.0,0.3640556419391748 -5906.0,0.3639299232871442 -5907.0,0.36380424804929995 -5908.0,0.3636786162106498 -5909.0,0.36355302775620696 -5910.0,0.36342748267098945 -5911.0,0.36330198094002075 -5912.0,0.3631765225483295 -5913.0,0.3630511074809493 -5914.0,0.36292573572291914 -5915.0,0.362800407259283 -5916.0,0.36267512207509023 -5917.0,0.362549880155395 -5918.0,0.36242468148525714 -5919.0,0.36229952604974114 -5920.0,0.362174413833917 -5921.0,0.36204934482285966 -5922.0,0.3619243190016494 -5923.0,0.3617993363553714 -5924.0,0.36167439686911634 -5925.0,0.36154950052797963 -5926.0,0.3614246473170622 -5927.0,0.3612998372214699 -5928.0,0.3611750702263139 -5929.0,0.36105034631671024 -5930.0,0.3609256654777804 -5931.0,0.36080102769465083 -5932.0,0.3606764329524531 -5933.0,0.3605518812363241 -5934.0,0.36042737253140555 -5935.0,0.36030290682284466 -5936.0,0.36017848409579334 -5937.0,0.3600541043354091 -5938.0,0.3599297675268541 -5939.0,0.35980547365529614 -5940.0,0.3596812227059076 -5941.0,0.35955701466386647 -5942.0,0.3594328495143555 -5943.0,0.35930872724256274 -5944.0,0.3591846478336813 -5945.0,0.35906061127290945 -5946.0,0.3589366175454504 -5947.0,0.35881266663651284 -5948.0,0.35868875853131005 -5949.0,0.35856489321506085 -5950.0,0.35844107067298914 -5951.0,0.3583172908903235 -5952.0,0.3581935538522981 -5953.0,0.358069859544152 -5954.0,0.35794620795112936 -5955.0,0.3578225990584793 -5956.0,0.35769903285145643 -5957.0,0.35757550931532 -5958.0,0.3574520284353347 -5959.0,0.35732859019677005 -5960.0,0.35720519458490085 -5961.0,0.3570818415850068 -5962.0,0.3569585311823729 -5963.0,0.356835263362289 -5964.0,0.3567120381100503 -5965.0,0.3565888554109568 -5966.0,0.3564657152503138 -5967.0,0.3563426176134314 -5968.0,0.35621956248562514 -5969.0,0.3560965498522154 -5970.0,0.35597357969852755 -5971.0,0.35585065200989235 -5972.0,0.35572776677164525 -5973.0,0.355604923969127 -5974.0,0.35548212358768333 -5975.0,0.3553593656126652 -5976.0,0.35523665002942817 -5977.0,0.35511397682333345 -5978.0,0.35499134597974685 -5979.0,0.3548687574840395 -5980.0,0.3547462113215874 -5981.0,0.35462370747777183 -5982.0,0.3545012459379788 -5983.0,0.35437882668759974 -5984.0,0.3542564497120307 -5985.0,0.35413411499667313 -5986.0,0.35401182252693336 -5987.0,0.3538895722882228 -5988.0,0.35376736426595795 -5989.0,0.35364519844556014 -5990.0,0.35352307481245604 -5991.0,0.35340099335207703 -5992.0,0.3532789540498599 -5993.0,0.353156956891246 -5994.0,0.35303500186168213 -5995.0,0.3529130889466198 -5996.0,0.35279121813151587 -5997.0,0.3526693894018319 -5998.0,0.3525476027430347 -5999.0,0.3524258581405959 -6000.0,0.35230415557999245 -6001.0,0.35218249504670585 -6002.0,0.35206087652622314 -6003.0,0.3519393000040359 -6004.0,0.35181776546564114 -6005.0,0.35169627289654054 -6006.0,0.3515748222822409 -6007.0,0.3514534136082542 -6008.0,0.35133204686009717 -6009.0,0.3512107220232917 -6010.0,0.35108943908336443 -6011.0,0.35096819802584744 -6012.0,0.3508469988362774 -6013.0,0.35072584150019626 -6014.0,0.3506047260031507 -6015.0,0.3504836523306926 -6016.0,0.3503626204683787 -6017.0,0.35024163040177086 -6018.0,0.3501206821164357 -6019.0,0.3499997755979452 -6020.0,0.3498789108318759 -6021.0,0.3497580878038096 -6022.0,0.34963730649933294 -6023.0,0.3495165669040377 -6024.0,0.3493958690035203 -6025.0,0.34927521278338264 -6026.0,0.3491545982292312 -6027.0,0.34903402532667743 -6028.0,0.34891349406133804 -6029.0,0.3487930044188344 -6030.0,0.34867255638479305 -6031.0,0.34855214994484535 -6032.0,0.3484317850846278 -6033.0,0.3483114617897816 -6034.0,0.3481911800459533 -6035.0,0.34807093983879384 -6036.0,0.3479507411539597 -6037.0,0.3478305839771118 -6038.0,0.3477104682939166 -6039.0,0.3475903940900449 -6040.0,0.3474703613511729 -6041.0,0.34735037006298136 -6042.0,0.34723042021115647 -6043.0,0.3471105117813888 -6044.0,0.3469906447593743 -6045.0,0.3468708191308138 -6046.0,0.3467510348814128 -6047.0,0.34663129199688203 -6048.0,0.34651159046293695 -6049.0,0.34639193026529813 -6050.0,0.3462723113896909 -6051.0,0.3461527338218457 -6052.0,0.3460331975474976 -6053.0,0.34591370255238707 -6054.0,0.34579424882225895 -6055.0,0.3456748363428635 -6056.0,0.34555546509995555 -6057.0,0.3454361350792951 -6058.0,0.34531684626664677 -6059.0,0.3451975986477805 -6060.0,0.3450783922084707 -6061.0,0.3449592269344971 -6062.0,0.34484010281164396 -6063.0,0.3447210198257008 -6064.0,0.34460197796246184 -6065.0,0.3444829772077262 -6066.0,0.34436401754729806 -6067.0,0.3442450989669863 -6068.0,0.3441262214526049 -6069.0,0.3440073849899725 -6070.0,0.34388858956491297 -6071.0,0.34376983516325466 -6072.0,0.34365112177083124 -6073.0,0.3435324493734809 -6074.0,0.34341381795704695 -6075.0,0.34329522750737756 -6076.0,0.3431766780103258 -6077.0,0.34305816945174944 -6078.0,0.3429397018175114 -6079.0,0.3428212750934792 -6080.0,0.3427028892655256 -6081.0,0.34258454431952784 -6082.0,0.34246624024136835 -6083.0,0.34234797701693437 -6084.0,0.3422297546321178 -6085.0,0.3421115730728157 -6086.0,0.34199343232492974 -6087.0,0.34187533237436674 -6088.0,0.3417572732070381 -6089.0,0.34163925480886037 -6090.0,0.34152127716575464 -6091.0,0.34140334026364727 -6092.0,0.341285444088469 -6093.0,0.3411675886261558 -6094.0,0.34104977386264834 -6095.0,0.34093199978389227 -6096.0,0.3408142663758379 -6097.0,0.3406965736244405 -6098.0,0.34057892151566016 -6099.0,0.340461310035462 -6100.0,0.3403437391698156 -6101.0,0.34022620890469574 -6102.0,0.340108719226082 -6103.0,0.3399912701199585 -6104.0,0.3398738615723146 -6105.0,0.3397564935691442 -6106.0,0.3396391660964463 -6107.0,0.3395218791402244 -6108.0,0.3394046326864872 -6109.0,0.3392874267212479 -6110.0,0.3391702612305248 -6111.0,0.3390531362003408 -6112.0,0.33893605161672385 -6113.0,0.33881900746570653 -6114.0,0.33870200373332643 -6115.0,0.3385850404056257 -6116.0,0.3384681174686517 -6117.0,0.3383512349084561 -6118.0,0.33823439271109584 -6119.0,0.33811759086263243 -6120.0,0.3380008293491322 -6121.0,0.3378841081566666 -6122.0,0.33776742727131137 -6123.0,0.3376507866791475 -6124.0,0.33753418636626054 -6125.0,0.33741762631874095 -6126.0,0.3373011065226839 -6127.0,0.3371846269641896 -6128.0,0.33706818762936264 -6129.0,0.3369517885043129 -6130.0,0.3368354295751546 -6131.0,0.33671911082800715 -6132.0,0.33660283224899445 -6133.0,0.3364865938242454 -6134.0,0.3363703955398935 -6135.0,0.33625423738207727 -6136.0,0.33613811933693977 -6137.0,0.336022041390629 -6138.0,0.3359060035292977 -6139.0,0.33579000573910345 -6140.0,0.3356740480062086 -6141.0,0.33555813031678006 -6142.0,0.3354422526569899 -6143.0,0.3353264150130146 -6144.0,0.3352106173710357 -6145.0,0.33509485971723924 -6146.0,0.3349791420378163 -6147.0,0.3348634643189625 -6148.0,0.3347478265468785 -6149.0,0.3346322287077694 -6150.0,0.3345166707878453 -6151.0,0.3344011527733209 -6152.0,0.33428567465041586 -6153.0,0.3341702364053543 -6154.0,0.33405483802436553 -6155.0,0.3339394794936832 -6156.0,0.3338241607995459 -6157.0,0.3337088819281969 -6158.0,0.3335936428658844 -6159.0,0.33347844359886114 -6160.0,0.3333632841133847 -6161.0,0.3332481643957174 -6162.0,0.33313308443212625 -6163.0,0.3330180442088832 -6164.0,0.33290304371226453 -6165.0,0.33278808292855183 -6166.0,0.33267316184403084 -6167.0,0.33255828044499247 -6168.0,0.33244343871773213 -6169.0,0.3323286366485501 -6170.0,0.3322138742237513 -6171.0,0.33209915142964547 -6172.0,0.33198446825254685 -6173.0,0.3318698246787748 -6174.0,0.33175522069465296 -6175.0,0.3316406562865101 -6176.0,0.3315261314406794 -6177.0,0.3314116461434989 -6178.0,0.3312972003813114 -6179.0,0.3311827941404642 -6180.0,0.3310684274073097 -6181.0,0.3309541001682046 -6182.0,0.33083981240951055 -6183.0,0.33072556411759385 -6184.0,0.3306113552788256 -6185.0,0.3304971858795813 -6186.0,0.3303830559062417 -6187.0,0.33026896534519157 -6188.0,0.330154914182821 -6189.0,0.33004090240552436 -6190.0,0.329926929999701 -6191.0,0.32981299695175476 -6192.0,0.3296991032480943 -6193.0,0.3295852488751329 -6194.0,0.3294714338192886 -6195.0,0.329357658066984 -6196.0,0.32924392160464655 -6197.0,0.32913022441870843 -6198.0,0.3290165664956062 -6199.0,0.3289029478217814 -6200.0,0.3287893683836801 -6201.0,0.32867582816775326 -6202.0,0.3285623271604561 -6203.0,0.328448865348249 -6204.0,0.3283354427175967 -6205.0,0.32822205925496867 -6206.0,0.32810871494683913 -6207.0,0.327995409779687 -6208.0,0.3278821437399957 -6209.0,0.32776891681425346 -6210.0,0.32765572898895307 -6211.0,0.3275425802505922 -6212.0,0.32742947058567284 -6213.0,0.327316399980702 -6214.0,0.32720336842219105 -6215.0,0.3270903758966562 -6216.0,0.32697742239061833 -6217.0,0.3268645078906028 -6218.0,0.3267516323831398 -6219.0,0.3266387958547641 -6220.0,0.3265259982920151 -6221.0,0.32641323968143693 -6222.0,0.32630052000957827 -6223.0,0.3261878392629924 -6224.0,0.3260751974282375 -6225.0,0.32596259449187603 -6226.0,0.3258500304404755 -6227.0,0.32573750526060763 -6228.0,0.32562501893884915 -6229.0,0.32551257146178114 -6230.0,0.32540016281598955 -6231.0,0.3252877929880647 -6232.0,0.32517546196460184 -6233.0,0.32506316973220056 -6234.0,0.3249509162774653 -6235.0,0.32483870158700506 -6236.0,0.3247265256474334 -6237.0,0.3246143884453686 -6238.0,0.3245022899674334 -6239.0,0.3243902302002554 -6240.0,0.3242782091304666 -6241.0,0.3241662267447038 -6242.0,0.32405428302960815 -6243.0,0.32394237797182573 -6244.0,0.323830511558007 -6245.0,0.3237186837748072 -6246.0,0.323606894608886 -6247.0,0.3234951440469078 -6248.0,0.32338343207554154 -6249.0,0.32327175868146096 -6250.0,0.32316012385134396 -6251.0,0.3230485275718736 -6252.0,0.32293696982973696 -6253.0,0.32282545061162626 -6254.0,0.32271396990423806 -6255.0,0.3226025276942734 -6256.0,0.3224911239684381 -6257.0,0.3223797587134425 -6258.0,0.3222684319160015 -6259.0,0.3221571435628347 -6260.0,0.3220458936406662 -6261.0,0.3219346821362246 -6262.0,0.32182350903624335 -6263.0,0.3217123743274601 -6264.0,0.3216012779966175 -6265.0,0.32149022003046235 -6266.0,0.32137920041574647 -6267.0,0.3212682191392258 -6268.0,0.3211572761876613 -6269.0,0.3210463715478181 -6270.0,0.3209355052064663 -6271.0,0.3208246771503801 -6272.0,0.32071388736633866 -6273.0,0.32060313584112565 -6274.0,0.320492422561529 -6275.0,0.3203817475143416 -6276.0,0.32027111068636066 -6277.0,0.3201605120643881 -6278.0,0.32004995163523015 -6279.0,0.31993942938569786 -6280.0,0.3198289453026067 -6281.0,0.3197184993727768 -6282.0,0.3196080915830326 -6283.0,0.3194977219202035 -6284.0,0.3193873903711229 -6285.0,0.31927709692262934 -6286.0,0.3191668415615654 -6287.0,0.3190566242747786 -6288.0,0.3189464450491206 -6289.0,0.31883630387144807 -6290.0,0.3187262007286218 -6291.0,0.3186161356075073 -6292.0,0.31850610849497474 -6293.0,0.3183961193778985 -6294.0,0.31828616824315786 -6295.0,0.31817625507763625 -6296.0,0.31806637986822206 -6297.0,0.3179565426018078 -6298.0,0.3178467432652908 -6299.0,0.31773698184557264 -6300.0,0.3176272583295598 -6301.0,0.31751757270416286 -6302.0,0.3174079249562973 -6303.0,0.3172983150728828 -6304.0,0.3171887430408438 -6305.0,0.3170792088471091 -6306.0,0.3169697124786121 -6307.0,0.31686025392229067 -6308.0,0.31675083316508723 -6309.0,0.31664145019394857 -6310.0,0.3165321049958262 -6311.0,0.31642279755767605 -6312.0,0.3163135278664585 -6313.0,0.3162042959091385 -6314.0,0.3160951016726854 -6315.0,0.31598594514407324 -6316.0,0.3158768263102803 -6317.0,0.31576774515828965 -6318.0,0.3156587016750886 -6319.0,0.3155496958476691 -6320.0,0.3154407276630275 -6321.0,0.3153317971081648 -6322.0,0.31522290417008625 -6323.0,0.3151140488358018 -6324.0,0.31500523109232575 -6325.0,0.314896450926677 -6326.0,0.31478770832587877 -6327.0,0.314679003276959 -6328.0,0.3145703357669498 -6329.0,0.31446170578288807 -6330.0,0.31435311331181504 -6331.0,0.3142445583407763 -6332.0,0.3141360408568222 -6333.0,0.3140275608470072 -6334.0,0.31391911829839064 -6335.0,0.3138107131980359 -6336.0,0.31370234553301124 -6337.0,0.31359401529038905 -6338.0,0.3134857224572464 -6339.0,0.31337746702066466 -6340.0,0.31326924896772984 -6341.0,0.3131610682855322 -6342.0,0.31305292496116677 -6343.0,0.3129448189817326 -6344.0,0.3128367503343336 -6345.0,0.3127287190060779 -6346.0,0.3126207249840782 -6347.0,0.31251276825545155 -6348.0,0.3124048488073195 -6349.0,0.3122969666268081 -6350.0,0.31218912170104773 -6351.0,0.3120813140171734 -6352.0,0.3119735435623242 -6353.0,0.3118658103236442 -6354.0,0.3117581142882813 -6355.0,0.31165045544338843 -6356.0,0.31154283377612246 -6357.0,0.3114352492736451 -6358.0,0.3113277019231221 -6359.0,0.311220191711724 -6360.0,0.3111127186266255 -6361.0,0.311005282655006 -6362.0,0.310897883784049 -6363.0,0.31079052200094276 -6364.0,0.31068319729287963 -6365.0,0.3105759096470567 -6366.0,0.3104686590506752 -6367.0,0.3103614454909411 -6368.0,0.31025426895506447 -6369.0,0.3101471294302599 -6370.0,0.31004002690374655 -6371.0,0.3099329613627478 -6372.0,0.3098259327944915 -6373.0,0.30971894118620996 -6374.0,0.3096119865251398 -6375.0,0.3095050687985222 -6376.0,0.30939818799360264 -6377.0,0.30929134409763087 -6378.0,0.30918453709786137 -6379.0,0.30907776698155276 -6380.0,0.30897103373596824 -6381.0,0.3088643373483751 -6382.0,0.30875767780604546 -6383.0,0.3086510550962555 -6384.0,0.308544469206286 -6385.0,0.3084379201234219 -6386.0,0.3083314078349527 -6387.0,0.30822493232817244 -6388.0,0.3081184935903792 -6389.0,0.30801209160887566 -6390.0,0.30790572637096875 -6391.0,0.30779939786397004 -6392.0,0.3076931060751952 -6393.0,0.3075868509919644 -6394.0,0.30748063260160224 -6395.0,0.3073744508914376 -6396.0,0.30726830584880377 -6397.0,0.30716219746103846 -6398.0,0.3070561257154837 -6399.0,0.30695009059948586 -6400.0,0.3068440921003957 -6401.0,0.30673813020556856 -6402.0,0.3066322049023637 -6403.0,0.3065263161781452 -6404.0,0.30642046402028117 -6405.0,0.3063146484161443 -6406.0,0.30620886935311165 -6407.0,0.30610312681856433 -6408.0,0.3059974207998882 -6409.0,0.3058917512844732 -6410.0,0.3057861182597138 -6411.0,0.3056805217130087 -6412.0,0.30557496163176107 -6413.0,0.3054694380033783 -6414.0,0.3053639508152722 -6415.0,0.3052585000548589 -6416.0,0.30515308570955896 -6417.0,0.30504770776679707 -6418.0,0.3049423662140026 -6419.0,0.30483706103860897 -6420.0,0.3047317922280541 -6421.0,0.3046265597697801 -6422.0,0.30452136365123356 -6423.0,0.3044162038598653 -6424.0,0.30431108038313054 -6425.0,0.3042059932084889 -6426.0,0.3041009423234042 -6427.0,0.3039959277153446 -6428.0,0.30389094937178257 -6429.0,0.30378600728019517 -6430.0,0.3036811014280633 -6431.0,0.3035762318028727 -6432.0,0.303471398392113 -6433.0,0.30336660118327846 -6434.0,0.3032618401638675 -6435.0,0.3031571153213829 -6436.0,0.30305242664333165 -6437.0,0.30294777411722534 -6438.0,0.3028431577305795 -6439.0,0.30273857747091437 -6440.0,0.30263403332575406 -6441.0,0.3025295252826274 -6442.0,0.3024250533290672 -6443.0,0.3023206174526108 -6444.0,0.30221621764079976 -6445.0,0.3021118538811799 -6446.0,0.30200752616130144 -6447.0,0.3019032344687188 -6448.0,0.3017989787909908 -6449.0,0.3016947591156804 -6450.0,0.30159057543035506 -6451.0,0.30148642772258627 -6452.0,0.3013823159799502 -6453.0,0.30127824019002686 -6454.0,0.30117420034040093 -6455.0,0.30107019641866106 -6456.0,0.30096622841240045 -6457.0,0.30086229630921646 -6458.0,0.30075840009671073 -6459.0,0.3006545397624892 -6460.0,0.3005507152941621 -6461.0,0.30044692667934386 -6462.0,0.30034317390565335 -6463.0,0.30023945696071364 -6464.0,0.30013577583215195 -6465.0,0.30003213050759997 -6466.0,0.29992852097469347 -6467.0,0.2998249472210727 -6468.0,0.29972140923438195 -6469.0,0.29961790700227003 -6470.0,0.29951444051238973 -6471.0,0.29941100975239837 -6472.0,0.29930761470995737 -6473.0,0.29920425537273243 -6474.0,0.2991009317283936 -6475.0,0.2989976437646151 -6476.0,0.29889439146907526 -6477.0,0.29879117482945716 -6478.0,0.2986879938334475 -6479.0,0.2985848484687378 -6480.0,0.29848173872302336 -6481.0,0.29837866458400397 -6482.0,0.2982756260393838 -6483.0,0.2981726230768709 -6484.0,0.298069655684178 -6485.0,0.2979667238490215 -6486.0,0.2978638275591228 -6487.0,0.2977609668022067 -6488.0,0.297658141566003 -6489.0,0.2975553518382452 -6490.0,0.29745259760667137 -6491.0,0.29734987885902353 -6492.0,0.29724719558304824 -6493.0,0.29714454776649596 -6494.0,0.29704193539712176 -6495.0,0.2969393584626845 -6496.0,0.2968368169509477 -6497.0,0.29673431084967883 -6498.0,0.2966318401466497 -6499.0,0.29652940482963613 -6500.0,0.2964270048864185 -6501.0,0.2963246403047813 -6502.0,0.296222311072513 -6503.0,0.2961200171774066 -6504.0,0.2960177586072591 -6505.0,0.2959155353498719 -6506.0,0.2958133473930504 -6507.0,0.2957111947246044 -6508.0,0.29560907733234776 -6509.0,0.29550699520409873 -6510.0,0.29540494832767955 -6511.0,0.29530293669091684 -6512.0,0.2952009602816412 -6513.0,0.2950990190876879 -6514.0,0.2949971130968958 -6515.0,0.29489524229710845 -6516.0,0.2947934066761732 -6517.0,0.29469160622194207 -6518.0,0.29458984092227075 -6519.0,0.2944881107650196 -6520.0,0.2943864157380528 -6521.0,0.2942847558292389 -6522.0,0.2941831310264507 -6523.0,0.29408154131756503 -6524.0,0.29397998669046305 -6525.0,0.2938784671330299 -6526.0,0.29377698263315516 -6527.0,0.29367553317873235 -6528.0,0.2935741187576595 -6529.0,0.29347273935783835 -6530.0,0.29337139496717524 -6531.0,0.2932700855735805 -6532.0,0.2931688111649686 -6533.0,0.2930675717292583 -6534.0,0.2929663672543725 -6535.0,0.2928651977282381 -6536.0,0.2927640631387865 -6537.0,0.29266296347395293 -6538.0,0.29256189872167704 -6539.0,0.2924608688699025 -6540.0,0.29235987390657714 -6541.0,0.29225891381965313 -6542.0,0.2921579885970865 -6543.0,0.2920570982268378 -6544.0,0.2919562426968713 -6545.0,0.29185542199515596 -6546.0,0.2917546361096643 -6547.0,0.2916538850283736 -6548.0,0.2915531687392647 -6549.0,0.2914524872303231 -6550.0,0.29135184048953805 -6551.0,0.29125122850490337 -6552.0,0.2911506512644165 -6553.0,0.2910501087560796 -6554.0,0.2909496009678984 -6555.0,0.2908491278878833 -6556.0,0.29074868950404836 -6557.0,0.2906482858044122 -6558.0,0.2905479167769974 -6559.0,0.29044758240983043 -6560.0,0.2903472826909424 -6561.0,0.29024701760836813 -6562.0,0.29014678715014686 -6563.0,0.29004659130432164 -6564.0,0.28994643005894 -6565.0,0.2898463034020533 -6566.0,0.28974621132171735 -6567.0,0.2896461538059916 -6568.0,0.2895461308429403 -6569.0,0.2894461424206311 -6570.0,0.2893461885271363 -6571.0,0.28924626915053203 -6572.0,0.2891463842788987 -6573.0,0.28904653390032076 -6574.0,0.2889467180028868 -6575.0,0.2888469365746894 -6576.0,0.2887471896038255 -6577.0,0.28864747707839605 -6578.0,0.2885477989865059 -6579.0,0.28844815531626433 -6580.0,0.28834854605578447 -6581.0,0.28824897119318377 -6582.0,0.28814943071658355 -6583.0,0.2880499246141095 -6584.0,0.2879504528738911 -6585.0,0.2878510154840623 -6586.0,0.2877516124327607 -6587.0,0.2876522437081285 -6588.0,0.28755290929831145 -6589.0,0.28745360919145996 -6590.0,0.28735434337572807 -6591.0,0.2872551118392742 -6592.0,0.2871559145702607 -6593.0,0.28705675155685406 -6594.0,0.2869576227872248 -6595.0,0.2868585282495476 -6596.0,0.28675946793200136 -6597.0,0.28666044182276873 -6598.0,0.2865614499100367 -6599.0,0.28646249218199615 -6600.0,0.2863635686268423 -6601.0,0.2862646792327742 -6602.0,0.2861658239879951 -6603.0,0.28606700288071224 -6604.0,0.28596821589913707 -6605.0,0.2858694630314849 -6606.0,0.2857707442659754 -6607.0,0.2856720595908319 -6608.0,0.2855734089942823 -6609.0,0.2854747924645581 -6610.0,0.28537620998989527 -6611.0,0.2852776615585334 -6612.0,0.28517914715871656 -6613.0,0.2850806667786926 -6614.0,0.28498222040671356 -6615.0,0.2848838080310356 -6616.0,0.28478542963991865 -6617.0,0.2846870852216271 -6618.0,0.284588774764429 -6619.0,0.2844904982565967 -6620.0,0.2843922556864066 -6621.0,0.28429404704213895 -6622.0,0.2841958723120782 -6623.0,0.2840977314845129 -6624.0,0.2839996245477355 -6625.0,0.2839015514900426 -6626.0,0.2838035122997347 -6627.0,0.2837055069651166 -6628.0,0.2836075354744968 -6629.0,0.2835095978161882 -6630.0,0.28341169397850735 -6631.0,0.2833138239497753 -6632.0,0.2832159877183166 -6633.0,0.28311818527246013 -6634.0,0.283020416600539 -6635.0,0.2829226816908899 -6636.0,0.28282498053185395 -6637.0,0.2827273131117759 -6638.0,0.2826296794190049 -6639.0,0.28253207944189385 -6640.0,0.2824345131687999 -6641.0,0.28233698058808404 -6642.0,0.28223948168811136 -6643.0,0.2821420164572509 -6644.0,0.2820445848838759 -6645.0,0.2819471869563633 -6646.0,0.28184982266309444 -6647.0,0.2817524919924542 -6648.0,0.2816551949328321 -6649.0,0.281557931472621 -6650.0,0.28146070160021813 -6651.0,0.2813635053040249 -6652.0,0.2812663425724462 -6653.0,0.28116921339389145 -6654.0,0.2810721177567737 -6655.0,0.2809750556495103 -6656.0,0.2808780270605223 -6657.0,0.28078103197823495 -6658.0,0.28068407039107746 -6659.0,0.280587142287483 -6660.0,0.28049024765588876 -6661.0,0.28039338648473594 -6662.0,0.28029655876246967 -6663.0,0.28019976447753914 -6664.0,0.28010300361839746 -6665.0,0.2800062761735018 -6666.0,0.27990958213131323 -6667.0,0.27981292148029696 -6668.0,0.27971629420892197 -6669.0,0.27961970030566136 -6670.0,0.2795231397589923 -6671.0,0.2794266125573956 -6672.0,0.2793301186893565 -6673.0,0.27923365814336376 -6674.0,0.27913723090791054 -6675.0,0.2790408369714936 -6676.0,0.27894447632261404 -6677.0,0.2788481489497765 -6678.0,0.27875185484149007 -6679.0,0.2786555939862674 -6680.0,0.27855936637262535 -6681.0,0.2784631719890846 -6682.0,0.2783670108241699 -6683.0,0.27827088286640994 -6684.0,0.27817478810433743 -6685.0,0.27807872652648874 -6686.0,0.27798269812140464 -6687.0,0.2778867028776295 -6688.0,0.2777907407837119 -6689.0,0.2776948118282042 -6690.0,0.2775989159996628 -6691.0,0.27750305328664804 -6692.0,0.2774072236777241 -6693.0,0.27731142716145935 -6694.0,0.2772156637264258 -6695.0,0.2771199333611998 -6696.0,0.2770242360543611 -6697.0,0.27692857179449404 -6698.0,0.2768329405701863 -6699.0,0.27673734237003 -6700.0,0.2766417771826208 -6701.0,0.27654624499655855 -6702.0,0.27645074580044693 -6703.0,0.27635527958289363 -6704.0,0.2762598463325101 -6705.0,0.276164446037912 -6706.0,0.2760690786877187 -6707.0,0.27597374427055354 -6708.0,0.2758784427750439 -6709.0,0.2757831741898209 -6710.0,0.27568793850351986 -6711.0,0.27559273570477966 -6712.0,0.2754975657822435 -6713.0,0.27540242872455806 -6714.0,0.27530732452037443 -6715.0,0.2752122531583472 -6716.0,0.2751172146271351 -6717.0,0.27502220891540075 -6718.0,0.2749272360118107 -6719.0,0.2748322959050352 -6720.0,0.27473738858374885 -6721.0,0.27464251403662965 -6722.0,0.27454767225235993 -6723.0,0.27445286321962564 -6724.0,0.2743580869271169 -6725.0,0.27426334336352737 -6726.0,0.27416863251755497 -6727.0,0.27407395437790144 -6728.0,0.27397930893327227 -6729.0,0.27388469617237704 -6730.0,0.273790116083929 -6731.0,0.2736955686566456 -6732.0,0.2736010538792479 -6733.0,0.273506571740461 -6734.0,0.27341212222901384 -6735.0,0.2733177053336394 -6736.0,0.27322332104307434 -6737.0,0.27312896934605935 -6738.0,0.2730346502313388 -6739.0,0.2729403636876614 -6740.0,0.27284610970377915 -6741.0,0.2727518882684485 -6742.0,0.27265769937042933 -6743.0,0.2725635429984857 -6744.0,0.2724694191413853 -6745.0,0.27237532778789997 -6746.0,0.2722812689268053 -6747.0,0.27218724254688076 -6748.0,0.27209324863690965 -6749.0,0.2719992871856791 -6750.0,0.27190535818198036 -6751.0,0.27181146161460823 -6752.0,0.2717175974723616 -6753.0,0.27162376574404323 -6754.0,0.2715299664184596 -6755.0,0.2714361994844211 -6756.0,0.27134246493074216 -6757.0,0.2712487627462407 -6758.0,0.27115509291973905 -6759.0,0.27106145544006277 -6760.0,0.27096785029604176 -6761.0,0.27087427747650955 -6762.0,0.2707807369703037 -6763.0,0.27068722876626533 -6764.0,0.27059375285323967 -6765.0,0.2705003092200758 -6766.0,0.2704068978556265 -6767.0,0.2703135187487485 -6768.0,0.2702201718883023 -6769.0,0.2701268572631524 -6770.0,0.2700335748621669 -6771.0,0.269940324674218 -6772.0,0.2698471066881817 -6773.0,0.2697539208929376 -6774.0,0.26966076727736943 -6775.0,0.26956764583036463 -6776.0,0.2694745565408144 -6777.0,0.269381499397614 -6778.0,0.2692884743896623 -6779.0,0.26919548150586214 -6780.0,0.26910252073512014 -6781.0,0.2690095920663467 -6782.0,0.2689166954884562 -6783.0,0.2688238309903667 -6784.0,0.2687309985610002 -6785.0,0.2686381981892823 -6786.0,0.26854542986414287 -6787.0,0.26845269357451507 -6788.0,0.2683599893093363 -6789.0,0.26826731705754747 -6790.0,0.2681746768080936 -6791.0,0.2680820685499233 -6792.0,0.26798949227198915 -6793.0,0.26789694796324737 -6794.0,0.2678044356126582 -6795.0,0.2677119552091855 -6796.0,0.26761950674179713 -6797.0,0.2675270901994646 -6798.0,0.2674347055711633 -6799.0,0.2673423528458724 -6800.0,0.2672500320125749 -6801.0,0.26715774306025764 -6802.0,0.2670654859779112 -6803.0,0.26697326075453 -6804.0,0.2668810673791121 -6805.0,0.26678890584065973 -6806.0,0.26669677612817855 -6807.0,0.26660467823067824 -6808.0,0.26651261213717203 -6809.0,0.26642057783667733 -6810.0,0.2663285753182149 -6811.0,0.2662366045708097 -6812.0,0.2661446655834902 -6813.0,0.26605275834528874 -6814.0,0.26596088284524144 -6815.0,0.26586903907238835 -6816.0,0.265777227015773 -6817.0,0.265685446664443 -6818.0,0.26559369800744953 -6819.0,0.26550198103384776 -6820.0,0.2654102957326964 -6821.0,0.26531864209305817 -6822.0,0.26522702010399946 -6823.0,0.2651354297545903 -6824.0,0.2650438710339048 -6825.0,0.2649523439310206 -6826.0,0.2648608484350191 -6827.0,0.26476938453498566 -6828.0,0.26467795222000934 -6829.0,0.26458655147918275 -6830.0,0.2644951823016027 -6831.0,0.26440384467636924 -6832.0,0.2643125385925867 -6833.0,0.26422126403936275 -6834.0,0.2641300210058091 -6835.0,0.26403880948104114 -6836.0,0.26394762945417793 -6837.0,0.26385648091434233 -6838.0,0.2637653638506611 -6839.0,0.2636742782522646 -6840.0,0.2635832241082869 -6841.0,0.263492201407866 -6842.0,0.26340121014014345 -6843.0,0.26331025029426486 -6844.0,0.26321932185937913 -6845.0,0.26312842482463933 -6846.0,0.263037559179202 -6847.0,0.2629467249122277 -6848.0,0.2628559220128803 -6849.0,0.262765150470328 -6850.0,0.2626744102737421 -6851.0,0.2625837014122982 -6852.0,0.26249302387517526 -6853.0,0.26240237765155616 -6854.0,0.2623117627306274 -6855.0,0.2622211791015794 -6856.0,0.26213062675360604 -6857.0,0.26204010567590524 -6858.0,0.2619496158576784 -6859.0,0.26185915728813075 -6860.0,0.26176872995647127 -6861.0,0.26167833385191264 -6862.0,0.2615879689636713 -6863.0,0.26149763528096726 -6864.0,0.2614073327930245 -6865.0,0.2613170614890705 -6866.0,0.2612268213583367 -6867.0,0.26113661239005787 -6868.0,0.26104643457347293 -6869.0,0.2609562878978242 -6870.0,0.260866172352358 -6871.0,0.26077608792632395 -6872.0,0.26068603460897594 -6873.0,0.260596012389571 -6874.0,0.2605060212573703 -6875.0,0.26041606120163846 -6876.0,0.26032613221164397 -6877.0,0.26023623427665893 -6878.0,0.26014636738595914 -6879.0,0.2600565315288242 -6880.0,0.2599667266945373 -6881.0,0.25987695287238544 -6882.0,0.2597872100516591 -6883.0,0.25969749822165283 -6884.0,0.2596078173716645 -6885.0,0.25951816749099593 -6886.0,0.2594285485689525 -6887.0,0.25933896059484335 -6888.0,0.25924940355798126 -6889.0,0.25915987744768276 -6890.0,0.25907038225326795 -6891.0,0.25898091796406086 -6892.0,0.25889148456938893 -6893.0,0.25880208205858346 -6894.0,0.2587127104209793 -6895.0,0.25862336964591526 -6896.0,0.2585340597227334 -6897.0,0.2584447806407798 -6898.0,0.25835553238940423 -6899.0,0.2582663149579598 -6900.0,0.25817712833580375 -6901.0,0.2580879725122966 -6902.0,0.2579988474768028 -6903.0,0.2579097532186903 -6904.0,0.2578206897273309 -6905.0,0.2577316569920999 -6906.0,0.25764265500237643 -6907.0,0.25755368374754306 -6908.0,0.2574647432169863 -6909.0,0.2573758334000961 -6910.0,0.2572869542862663 -6911.0,0.2571981058648941 -6912.0,0.2571092881253807 -6913.0,0.2570205010571306 -6914.0,0.2569317446495524 -6915.0,0.2568430188920578 -6916.0,0.25675432377406265 -6917.0,0.25666565928498636 -6918.0,0.25657702541425165 -6919.0,0.2564884221512854 -6920.0,0.2563998494855177 -6921.0,0.25631130740638264 -6922.0,0.2562227959033176 -6923.0,0.25613431496576394 -6924.0,0.25604586458316647 -6925.0,0.25595744474497384 -6926.0,0.255869055440638 -6927.0,0.2557806966596149 -6928.0,0.25569236839136383 -6929.0,0.25560407062534807 -6930.0,0.2555158033510342 -6931.0,0.25542756655789267 -6932.0,0.2553393602353974 -6933.0,0.255251184373026 -6934.0,0.2551630389602598 -6935.0,0.25507492398658366 -6936.0,0.25498683944148615 -6937.0,0.25489878531445936 -6938.0,0.25481076159499916 -6939.0,0.2547227682726048 -6940.0,0.25463480533677957 -6941.0,0.25454687277702986 -6942.0,0.2544589705828662 -6943.0,0.2543710987438023 -6944.0,0.25428325724935585 -6945.0,0.25419544608904787 -6946.0,0.25410766525240325 -6947.0,0.25401991472895025 -6948.0,0.25393219450822097 -6949.0,0.25384450457975094 -6950.0,0.2537568449330795 -6951.0,0.2536692155577494 -6952.0,0.2535816164433072 -6953.0,0.2534940475793028 -6954.0,0.25340650895528993 -6955.0,0.253319000560826 -6956.0,0.2532315223854718 -6957.0,0.25314407441879183 -6958.0,0.25305665665035415 -6959.0,0.25296926906973055 -6960.0,0.2528819116664962 -6961.0,0.2527945844302301 -6962.0,0.2527072873505147 -6963.0,0.25262002041693615 -6964.0,0.25253278361908404 -6965.0,0.25244557694655173 -6966.0,0.2523584003889361 -6967.0,0.2522712539358376 -6968.0,0.2521841375768603 -6969.0,0.2520970513016119 -6970.0,0.2520099950997035 -6971.0,0.25192296896075017 -6972.0,0.25183597287437004 -6973.0,0.2517490068301853 -6974.0,0.25166207081782155 -6975.0,0.25157516482690784 -6976.0,0.251488288847077 -6977.0,0.25140144286796534 -6978.0,0.25131462687921274 -6979.0,0.25122784087046274 -6980.0,0.2511410848313623 -6981.0,0.25105435875156223 -6982.0,0.2509676626207166 -6983.0,0.2508809964284832 -6984.0,0.25079436016452344 -6985.0,0.25070775381850224 -6986.0,0.2506211773800881 -6987.0,0.250534630838953 -6988.0,0.25044811418477264 -6989.0,0.25036162740722623 -6990.0,0.2502751704959965 -6991.0,0.25018874344076975 -6992.0,0.25010234623123584 -6993.0,0.2500159788570883 -6994.0,0.24992964130802411 -6995.0,0.24984333357374383 -6996.0,0.2497570556439515 -6997.0,0.2496708075083549 -6998.0,0.24958458915666515 -6999.0,0.24949840057859715 -7000.0,0.24941224176386909 -7001.0,0.24932611270220298 -7002.0,0.24924001338332416 -7003.0,0.24915394379696168 -7004.0,0.249067903932848 -7005.0,0.24898189378071925 -7006.0,0.24889591333031497 -7007.0,0.24880996257137844 -7008.0,0.24872404149365623 -7009.0,0.24863815008689868 -7010.0,0.2485522883408595 -7011.0,0.24846645624529604 -7012.0,0.2483806537899692 -7013.0,0.24829488096464328 -7014.0,0.24820913775908632 -7015.0,0.24812342416306968 -7016.0,0.24803774016636843 -7017.0,0.247952085758761 -7018.0,0.24786646093002956 -7019.0,0.24778086566995958 -7020.0,0.24769529996834028 -7021.0,0.24760976381496416 -7022.0,0.24752425719962756 -7023.0,0.24743878011212997 -7024.0,0.24735333254227476 -7025.0,0.24726791447986854 -7026.0,0.24718252591472165 -7027.0,0.24709716683664776 -7028.0,0.24701183723546427 -7029.0,0.24692653710099186 -7030.0,0.24684126642305487 -7031.0,0.24675602519148127 -7032.0,0.2466708133961022 -7033.0,0.24658563102675268 -7034.0,0.24650047807327097 -7035.0,0.246415354525499 -7036.0,0.2463302603732821 -7037.0,0.24624519560646924 -7038.0,0.2461601602149127 -7039.0,0.24607515418846848 -7040.0,0.24599017751699592 -7041.0,0.24590523019035798 -7042.0,0.24582031219842096 -7043.0,0.24573542353105488 -7044.0,0.24565056417813305 -7045.0,0.24556573412953248 -7046.0,0.2454809333751334 -7047.0,0.24539616190481986 -7048.0,0.2453114197084791 -7049.0,0.24522670677600208 -7050.0,0.24514202309728322 -7051.0,0.24505736866222025 -7052.0,0.2449727434607146 -7053.0,0.24488814748267101 -7054.0,0.24480358071799793 -7055.0,0.24471904315660703 -7056.0,0.24463453478841368 -7057.0,0.2445500556033366 -7058.0,0.2444656055912981 -7059.0,0.24438118474222378 -7060.0,0.24429679304604304 -7061.0,0.2442124304926884 -7062.0,0.24412809707209612 -7063.0,0.24404379277420574 -7064.0,0.2439595175889605 -7065.0,0.2438752715063069 -7066.0,0.24379105451619504 -7067.0,0.24370686660857835 -7068.0,0.2436227077734139 -7069.0,0.24353857800066225 -7070.0,0.24345447728028716 -7071.0,0.24337040560225615 -7072.0,0.24328636295654 -7073.0,0.2432023493331131 -7074.0,0.24311836472195317 -7075.0,0.24303440911304153 -7076.0,0.24295048249636284 -7077.0,0.2428665848619053 -7078.0,0.24278271619966046 -7079.0,0.24269887649962352 -7080.0,0.24261506575179287 -7081.0,0.24253128394617066 -7082.0,0.2424475310727622 -7083.0,0.24236380712157646 -7084.0,0.24228011208262573 -7085.0,0.24219644594592588 -7086.0,0.242112808701496 -7087.0,0.24202920033935893 -7088.0,0.24194562084954077 -7089.0,0.241862070222071 -7090.0,0.24177854844698282 -7091.0,0.24169505551431247 -7092.0,0.24161159141410007 -7093.0,0.24152815613638878 -7094.0,0.2414447496712255 -7095.0,0.24136137200866037 -7096.0,0.2412780231387471 -7097.0,0.24119470305154272 -7098.0,0.24111141173710784 -7099.0,0.2410281491855063 -7100.0,0.2409449153868056 -7101.0,0.24086171033107645 -7102.0,0.24077853400839316 -7103.0,0.24069538640883337 -7104.0,0.24061226752247822 -7105.0,0.24052917733941215 -7106.0,0.24044611584972317 -7107.0,0.24036308304350268 -7108.0,0.24028007891084538 -7109.0,0.2401971034418496 -7110.0,0.24011415662661684 -7111.0,0.24003123845525226 -7112.0,0.23994834891786423 -7113.0,0.23986548800456475 -7114.0,0.239782655705469 -7115.0,0.23969985201069577 -7116.0,0.23961707691036713 -7117.0,0.23953433039460867 -7118.0,0.23945161245354926 -7119.0,0.23936892307732133 -7120.0,0.2392862622560606 -7121.0,0.23920362997990624 -7122.0,0.2391210262390008 -7123.0,0.23903845102349033 -7124.0,0.23895590432352412 -7125.0,0.23887338612925496 -7126.0,0.23879089643083914 -7127.0,0.2387084352184361 -7128.0,0.23862600248220894 -7129.0,0.2385435982123239 -7130.0,0.2384612223989509 -7131.0,0.238378875032263 -7132.0,0.2382965561024368 -7133.0,0.2382142655996522 -7134.0,0.23813200351409267 -7135.0,0.23804976983594478 -7136.0,0.2379675645553988 -7137.0,0.2378853876626481 -7138.0,0.23780323914788973 -7139.0,0.2377211190013238 -7140.0,0.23763902721315414 -7141.0,0.23755696377358768 -7142.0,0.23747492867283493 -7143.0,0.2373929219011096 -7144.0,0.23731094344862896 -7145.0,0.23722899330561362 -7146.0,0.2371470714622874 -7147.0,0.23706517790887774 -7148.0,0.23698331263561523 -7149.0,0.23690147563273406 -7150.0,0.23681966689047154 -7151.0,0.23673788639906862 -7152.0,0.23665613414876935 -7153.0,0.2365744101298214 -7154.0,0.23649271433247557 -7155.0,0.2364110467469863 -7156.0,0.23632940736361108 -7157.0,0.23624779617261105 -7158.0,0.23616621316425052 -7159.0,0.23608465832879727 -7160.0,0.23600313165652237 -7161.0,0.23592163313770034 -7162.0,0.23584016276260888 -7163.0,0.2357587205215293 -7164.0,0.2356773064047461 -7165.0,0.23559592040254712 -7166.0,0.23551456250522368 -7167.0,0.2354332327030703 -7168.0,0.235351930986385 -7169.0,0.23527065734546895 -7170.0,0.23518941177062697 -7171.0,0.23510819425216692 -7172.0,0.23502700478040026 -7173.0,0.23494584334564153 -7174.0,0.2348647099382089 -7175.0,0.23478360454842365 -7176.0,0.2347025271666106 -7177.0,0.23462147778309766 -7178.0,0.2345404563882164 -7179.0,0.2344594629723014 -7180.0,0.2343784975256909 -7181.0,0.23429756003872615 -7182.0,0.23421665050175197 -7183.0,0.2341357689051165 -7184.0,0.23405491523917105 -7185.0,0.23397408949427048 -7186.0,0.23389329166077272 -7187.0,0.23381252172903935 -7188.0,0.23373177968943495 -7189.0,0.2336510655323277 -7190.0,0.23357037924808888 -7191.0,0.23348972082709335 -7192.0,0.23340909025971898 -7193.0,0.23332848753634727 -7194.0,0.23324791264736283 -7195.0,0.2331673655831537 -7196.0,0.23308684633411114 -7197.0,0.2330063548906299 -7198.0,0.2329258912431078 -7199.0,0.23284545538194626 -7200.0,0.23276504729754974 -7201.0,0.23268466698032617 -7202.0,0.23260431442068685 -7203.0,0.23252398960904622 -7204.0,0.23244369253582217 -7205.0,0.23236342319143577 -7206.0,0.2322831815663116 -7207.0,0.23220296765087722 -7208.0,0.23212278143556392 -7209.0,0.23204262291080588 -7210.0,0.23196249206704092 -7211.0,0.2318823888947099 -7212.0,0.2318023133842572 -7213.0,0.2317222655261303 -7214.0,0.23164224531078012 -7215.0,0.23156225272866082 -7216.0,0.2314822877702299 -7217.0,0.23140235042594806 -7218.0,0.23132244068627944 -7219.0,0.2312425585416913 -7220.0,0.23116270398265432 -7221.0,0.23108287699964247 -7222.0,0.23100307758313293 -7223.0,0.23092330572360628 -7224.0,0.2308435614115462 -7225.0,0.23076384463743987 -7226.0,0.2306841553917776 -7227.0,0.23060449366505315 -7228.0,0.2305248594477633 -7229.0,0.23044525273040842 -7230.0,0.23036567350349185 -7231.0,0.23028612175752056 -7232.0,0.23020659748300443 -7233.0,0.2301271006704569 -7234.0,0.23004763131039452 -7235.0,0.22996818939333724 -7236.0,0.22988877490980814 -7237.0,0.22980938785033372 -7238.0,0.22973002820544364 -7239.0,0.22965069596567086 -7240.0,0.22957139112155173 -7241.0,0.2294921136636256 -7242.0,0.2294128635824354 -7243.0,0.22933364086852703 -7244.0,0.22925444551244994 -7245.0,0.22917527750475655 -7246.0,0.22909613683600286 -7247.0,0.22901702349674782 -7248.0,0.2289379374775539 -7249.0,0.22885887876898658 -7250.0,0.22877984736161489 -7251.0,0.2287008432460108 -7252.0,0.22862186641274987 -7253.0,0.22854291685241057 -7254.0,0.22846399455557492 -7255.0,0.22838509951282795 -7256.0,0.2283062317147582 -7257.0,0.22822739115195717 -7258.0,0.22814857781501982 -7259.0,0.22806979169454436 -7260.0,0.22799103278113206 -7261.0,0.22791230106538768 -7262.0,0.22783359653791896 -7263.0,0.22775491918933716 -7264.0,0.22767626901025653 -7265.0,0.22759764599129478 -7266.0,0.22751905012307266 -7267.0,0.22744048139621434 -7268.0,0.22736193980134708 -7269.0,0.2272834253291015 -7270.0,0.22720493797011132 -7271.0,0.22712647771501368 -7272.0,0.2270480445544487 -7273.0,0.22696963847906002 -7274.0,0.22689125947949426 -7275.0,0.22681290754640146 -7276.0,0.2267345826704347 -7277.0,0.22665628484225045 -7278.0,0.22657801405250844 -7279.0,0.22649977029187138 -7280.0,0.22642155355100546 -7281.0,0.22634336382057996 -7282.0,0.22626520109126744 -7283.0,0.22618706535374358 -7284.0,0.2261089565986875 -7285.0,0.22603087481678122 -7286.0,0.2259528199987103 -7287.0,0.2258747921351633 -7288.0,0.22579679121683208 -7289.0,0.22571881723441165 -7290.0,0.22564087017860038 -7291.0,0.22556295004009963 -7292.0,0.22548505680961425 -7293.0,0.225407190477852 -7294.0,0.2253293510355241 -7295.0,0.22525153847334478 -7296.0,0.2251737527820316 -7297.0,0.2250959939523054 -7298.0,0.22501826197488994 -7299.0,0.22494055684051253 -7300.0,0.2248628785399034 -7301.0,0.22478522706379614 -7302.0,0.22470760240292745 -7303.0,0.22463000454803736 -7304.0,0.22455243348986892 -7305.0,0.22447488921916856 -7306.0,0.2243973717266857 -7307.0,0.22431988100317318 -7308.0,0.22424241703938685 -7309.0,0.22416497982608588 -7310.0,0.22408756935403248 -7311.0,0.22401018561399227 -7312.0,0.22393282859673383 -7313.0,0.22385549829302911 -7314.0,0.2237781946936531 -7315.0,0.22370091778938408 -7316.0,0.2236236675710035 -7317.0,0.2235464440292959 -7318.0,0.2234692471550492 -7319.0,0.22339207693905422 -7320.0,0.22331493337210526 -7321.0,0.22323781644499954 -7322.0,0.22316072614853766 -7323.0,0.22308366247352324 -7324.0,0.2230066254107632 -7325.0,0.2229296149510675 -7326.0,0.2228526310852495 -7327.0,0.2227756738041254 -7328.0,0.22269874309851495 -7329.0,0.2226218389592407 -7330.0,0.2225449613771287 -7331.0,0.2224681103430079 -7332.0,0.22239128584771062 -7333.0,0.22231448788207214 -7334.0,0.2222377164369311 -7335.0,0.2221609715031293 -7336.0,0.22208425307151147 -7337.0,0.22200756113292583 -7338.0,0.22193089567822344 -7339.0,0.22185425669825876 -7340.0,0.22177764418388926 -7341.0,0.2217010581259757 -7342.0,0.22162449851538185 -7343.0,0.22154796534297475 -7344.0,0.22147145859962453 -7345.0,0.22139497827620452 -7346.0,0.2213185243635911 -7347.0,0.221242096852664 -7348.0,0.22116569573430583 -7349.0,0.22108932099940265 -7350.0,0.22101297263884337 -7351.0,0.2209366506435203 -7352.0,0.22086035500432866 -7353.0,0.22078408571216704 -7354.0,0.22070784275793706 -7355.0,0.22063162613254342 -7356.0,0.22055543582689413 -7357.0,0.22047927183190016 -7358.0,0.22040313413847576 -7359.0,0.2203270227375382 -7360.0,0.22025093762000802 -7361.0,0.22017487877680872 -7362.0,0.22009884619886713 -7363.0,0.22002283987711305 -7364.0,0.21994685980247955 -7365.0,0.21987090596590267 -7366.0,0.2197949783583218 -7367.0,0.21971907697067916 -7368.0,0.2196432017939204 -7369.0,0.21956735281899412 -7370.0,0.2194915300368521 -7371.0,0.2194157334384492 -7372.0,0.21933996301474346 -7373.0,0.21926421875669608 -7374.0,0.21918850065527123 -7375.0,0.21911280870143637 -7376.0,0.21903714288616194 -7377.0,0.2189615032004216 -7378.0,0.21888588963519204 -7379.0,0.2188103021814532 -7380.0,0.21873474083018793 -7381.0,0.21865920557238241 -7382.0,0.21858369639902578 -7383.0,0.2185082133011104 -7384.0,0.2184327562696316 -7385.0,0.21835732529558802 -7386.0,0.21828192036998115 -7387.0,0.2182065414838159 -7388.0,0.21813118862809996 -7389.0,0.21805586179384442 -7390.0,0.21798056097206323 -7391.0,0.21790528615377358 -7392.0,0.2178300373299958 -7393.0,0.21775481449175318 -7394.0,0.21767961763007224 -7395.0,0.21760444673598245 -7396.0,0.2175293018005166 -7397.0,0.21745418281471032 -7398.0,0.21737908976960255 -7399.0,0.2173040226562352 -7400.0,0.21722898146565334 -7401.0,0.217153966188905 -7402.0,0.21707897681704158 -7403.0,0.21700401334111724 -7404.0,0.2169290757521895 -7405.0,0.21685416404131874 -7406.0,0.21677927819956863 -7407.0,0.21670441821800576 -7408.0,0.21662958408769997 -7409.0,0.21655477579972401 -7410.0,0.21647999334515383 -7411.0,0.21640523671506848 -7412.0,0.21633050590054992 -7413.0,0.21625580089268343 -7414.0,0.21618112168255715 -7415.0,0.21610646826126248 -7416.0,0.21603184061989372 -7417.0,0.21595723874954845 -7418.0,0.2158826626413271 -7419.0,0.21580811228633337 -7420.0,0.21573358767567388 -7421.0,0.21565908880045845 -7422.0,0.21558461565179982 -7423.0,0.21551016822081398 -7424.0,0.21543574649861982 -7425.0,0.21536135047633945 -7426.0,0.21528698014509787 -7427.0,0.21521263549602335 -7428.0,0.21513831652024698 -7429.0,0.21506402320890317 -7430.0,0.21498975555312924 -7431.0,0.21491551354406555 -7432.0,0.21484129717285566 -7433.0,0.21476710643064598 -7434.0,0.21469294130858624 -7435.0,0.2146188017978289 -7436.0,0.21454468788952985 -7437.0,0.2144705995748477 -7438.0,0.21439653684494434 -7439.0,0.21432249969098455 -7440.0,0.21424848810413633 -7441.0,0.2141745020755705 -7442.0,0.21410054159646125 -7443.0,0.21402660665798545 -7444.0,0.21395269725132335 -7445.0,0.213878813367658 -7446.0,0.21380495499817564 -7447.0,0.21373112213406545 -7448.0,0.21365731476651975 -7449.0,0.2135835328867339 -7450.0,0.2135097764859062 -7451.0,0.21343604555523807 -7452.0,0.2133623400859339 -7453.0,0.21328866006920127 -7454.0,0.21321500549625058 -7455.0,0.21314137635829547 -7456.0,0.21306777264655244 -7457.0,0.21299419435224118 -7458.0,0.21292064146658424 -7459.0,0.21284711398080738 -7460.0,0.21277361188613927 -7461.0,0.2127001351738117 -7462.0,0.2126266838350593 -7463.0,0.21255325786112006 -7464.0,0.2124798572432346 -7465.0,0.21240648197264692 -7466.0,0.21233313204060375 -7467.0,0.21225980743835504 -7468.0,0.21218650815715376 -7469.0,0.2121132341882557 -7470.0,0.21203998552291997 -7471.0,0.21196676215240842 -7472.0,0.2118935640679861 -7473.0,0.21182039126092095 -7474.0,0.21174724372248407 -7475.0,0.21167412144394943 -7476.0,0.2116010244165941 -7477.0,0.2115279526316981 -7478.0,0.21145490608054457 -7479.0,0.21138188475441952 -7480.0,0.2113088886446121 -7481.0,0.21123591774241432 -7482.0,0.21116297203912138 -7483.0,0.2110900515260313 -7484.0,0.2110171561944453 -7485.0,0.21094428603566737 -7486.0,0.21087144104100472 -7487.0,0.2107986212017675 -7488.0,0.21072582650926874 -7489.0,0.21065305695482464 -7490.0,0.21058031252975426 -7491.0,0.21050759322537982 -7492.0,0.2104348990330263 -7493.0,0.21036222994402193 -7494.0,0.21028958594969774 -7495.0,0.21021696704138793 -7496.0,0.21014437321042945 -7497.0,0.2100718044481625 -7498.0,0.2099992607459301 -7499.0,0.20992674209507836 -7500.0,0.20985424848695627 -7501.0,0.20978177991291594 -7502.0,0.20970933636431235 -7503.0,0.20963691783250354 -7504.0,0.20956452430885047 -7505.0,0.20949215578471714 -7506.0,0.20941981225147058 -7507.0,0.2093474937004806 -7508.0,0.20927520012312026 -7509.0,0.20920293151076536 -7510.0,0.20913068785479486 -7511.0,0.20905846914659051 -7512.0,0.2089862753775373 -7513.0,0.2089141065390229 -7514.0,0.20884196262243818 -7515.0,0.20876984361917683 -7516.0,0.20869774952063566 -7517.0,0.20862568031821427 -7518.0,0.20855363600331542 -7519.0,0.20848161656734468 -7520.0,0.20840962200171076 -7521.0,0.20833765229782508 -7522.0,0.20826570744710232 -7523.0,0.20819378744095987 -7524.0,0.20812189227081826 -7525.0,0.20805002192810096 -7526.0,0.20797817640423427 -7527.0,0.20790635569064764 -7528.0,0.20783455977877327 -7529.0,0.20776278866004655 -7530.0,0.2076910423259056 -7531.0,0.2076193207677917 -7532.0,0.2075476239771489 -7533.0,0.2074759519454244 -7534.0,0.20740430466406812 -7535.0,0.2073326821245332 -7536.0,0.20726108431827547 -7537.0,0.20718951123675394 -7538.0,0.2071179628714304 -7539.0,0.20704643921376967 -7540.0,0.20697494025523946 -7541.0,0.20690346598731055 -7542.0,0.2068320164014565 -7543.0,0.20676059148915388 -7544.0,0.20668919124188234 -7545.0,0.20661781565112425 -7546.0,0.20654646470836507 -7547.0,0.20647513840509307 -7548.0,0.2064038367327997 -7549.0,0.206332559682979 -7550.0,0.2062613072471283 -7551.0,0.20619007941674758 -7552.0,0.20611887618334 -7553.0,0.2060476975384114 -7554.0,0.2059765434734708 -7555.0,0.20590541398002996 -7556.0,0.20583430904960373 -7557.0,0.20576322867370972 -7558.0,0.20569217284386865 -7559.0,0.20562114155160396 -7560.0,0.20555013478844228 -7561.0,0.2054791525459129 -7562.0,0.2054081948155482 -7563.0,0.2053372615888835 -7564.0,0.20526635285745684 -7565.0,0.2051954686128095 -7566.0,0.20512460884648534 -7567.0,0.20505377355003143 -7568.0,0.20498296271499758 -7569.0,0.2049121763329366 -7570.0,0.20484141439540415 -7571.0,0.2047706768939589 -7572.0,0.2046999638201623 -7573.0,0.2046292751655789 -7574.0,0.204558610921776 -7575.0,0.20448797108032388 -7576.0,0.20441735563279567 -7577.0,0.2043467645707676 -7578.0,0.2042761978858185 -7579.0,0.20420565556953044 -7580.0,0.2041351376134881 -7581.0,0.20406464400927926 -7582.0,0.20399417474849457 -7583.0,0.20392372982272752 -7584.0,0.2038533092235746 -7585.0,0.20378291294263506 -7586.0,0.20371254097151126 -7587.0,0.2036421933018082 -7588.0,0.203571869925134 -7589.0,0.20350157083309955 -7590.0,0.20343129601731877 -7591.0,0.20336104546940825 -7592.0,0.2032908191809877 -7593.0,0.20322061714367962 -7594.0,0.20315043934910945 -7595.0,0.2030802857889054 -7596.0,0.20301015645469878 -7597.0,0.20294005133812357 -7598.0,0.2028699704308168 -7599.0,0.20279991372441827 -7600.0,0.20272988121057078 -7601.0,0.20265987288092 -7602.0,0.20258988872711434 -7603.0,0.20251992874080532 -7604.0,0.2024499929136471 -7605.0,0.20238008123729692 -7606.0,0.2023101937034148 -7607.0,0.20224033030366373 -7608.0,0.2021704910297094 -7609.0,0.20210067587322061 -7610.0,0.20203088482586884 -7611.0,0.20196111787932858 -7612.0,0.20189137502527707 -7613.0,0.2018216562553946 -7614.0,0.20175196156136413 -7615.0,0.20168229093487167 -7616.0,0.20161264436760595 -7617.0,0.20154302185125872 -7618.0,0.20147342337752444 -7619.0,0.20140384893810057 -7620.0,0.2013342985246874 -7621.0,0.201264772128988 -7622.0,0.2011952697427085 -7623.0,0.20112579135755765 -7624.0,0.20105633696524727 -7625.0,0.20098690655749188 -7626.0,0.200917500126009 -7627.0,0.20084811766251892 -7628.0,0.20077875915874488 -7629.0,0.20070942460641278 -7630.0,0.20064011399725168 -7631.0,0.20057082732299317 -7632.0,0.200501564575372 -7633.0,0.2004323257461255 -7634.0,0.2003631108269941 -7635.0,0.20029391980972086 -7636.0,0.2002247526860519 -7637.0,0.20015560944773594 -7638.0,0.20008649008652482 -7639.0,0.20001739459417311 -7640.0,0.19994832296243817 -7641.0,0.19987927518308027 -7642.0,0.1998102512478625 -7643.0,0.19974125114855085 -7644.0,0.19967227487691405 -7645.0,0.1996033224247238 -7646.0,0.1995343937837545 -7647.0,0.19946548894578356 -7648.0,0.19939660790259103 -7649.0,0.19932775064596 -7650.0,0.19925891716767624 -7651.0,0.19919010745952845 -7652.0,0.19912132151330808 -7653.0,0.19905255932080956 -7654.0,0.19898382087382996 -7655.0,0.19891510616416938 -7656.0,0.19884641518363055 -7657.0,0.19877774792401923 -7658.0,0.1987091043771439 -7659.0,0.19864048453481584 -7660.0,0.19857188838884926 -7661.0,0.19850331593106108 -7662.0,0.19843476715327119 -7663.0,0.1983662420473021 -7664.0,0.1982977406049794 -7665.0,0.19822926281813125 -7666.0,0.19816080867858885 -7667.0,0.198092378178186 -7668.0,0.19802397130875957 -7669.0,0.19795558806214902 -7670.0,0.1978872284301968 -7671.0,0.19781889240474804 -7672.0,0.1977505799776508 -7673.0,0.1976822911407559 -7674.0,0.1976140258859169 -7675.0,0.1975457842049904 -7676.0,0.19747756608983552 -7677.0,0.19740937153231447 -7678.0,0.197341200524292 -7679.0,0.19727305305763593 -7680.0,0.19720492912421667 -7681.0,0.1971368287159076 -7682.0,0.19706875182458478 -7683.0,0.19700069844212717 -7684.0,0.19693266856041647 -7685.0,0.19686466217133725 -7686.0,0.1967966792667768 -7687.0,0.1967287198386253 -7688.0,0.19666078387877564 -7689.0,0.19659287137912362 -7690.0,0.19652498233156768 -7691.0,0.19645711672800925 -7692.0,0.19638927456035238 -7693.0,0.19632145582050403 -7694.0,0.19625366050037393 -7695.0,0.19618588859187455 -7696.0,0.19611814008692127 -7697.0,0.19605041497743209 -7698.0,0.195982713255328 -7699.0,0.1959150349125326 -7700.0,0.1958473799409724 -7701.0,0.19577974833257658 -7702.0,0.1957121400792773 -7703.0,0.19564455517300933 -7704.0,0.19557699360571026 -7705.0,0.19550945536932052 -7706.0,0.1954419404557833 -7707.0,0.1953744488570445 -7708.0,0.19530698056505297 -7709.0,0.19523953557176013 -7710.0,0.19517211386912034 -7711.0,0.19510471544909067 -7712.0,0.19503734030363096 -7713.0,0.1949699884247039 -7714.0,0.19490265980427485 -7715.0,0.19483535443431202 -7716.0,0.19476807230678636 -7717.0,0.19470081341367163 -7718.0,0.1946335777469443 -7719.0,0.19456636529858365 -7720.0,0.19449917606057174 -7721.0,0.19443201002489338 -7722.0,0.19436486718353613 -7723.0,0.19429774752849038 -7724.0,0.1942306510517492 -7725.0,0.19416357774530854 -7726.0,0.1940965276011669 -7727.0,0.1940295006113259 -7728.0,0.19396249676778948 -7729.0,0.19389551606256478 -7730.0,0.1938285584876613 -7731.0,0.19376162403509162 -7732.0,0.1936947126968709 -7733.0,0.1936278244650171 -7734.0,0.193560959331551 -7735.0,0.193494117288496 -7736.0,0.1934272983278784 -7737.0,0.1933605024417271 -7738.0,0.19329372962207392 -7739.0,0.19322697986095327 -7740.0,0.1931602531504025 -7741.0,0.1930935494824615 -7742.0,0.19302686884917306 -7743.0,0.1929602112425826 -7744.0,0.19289357665473847 -7745.0,0.19282696507769154 -7746.0,0.19276037650349565 -7747.0,0.19269381092420712 -7748.0,0.1926272683318853 -7749.0,0.19256074871859202 -7750.0,0.19249425207639204 -7751.0,0.19242777839735284 -7752.0,0.19236132767354452 -7753.0,0.19229489989704004 -7754.0,0.19222849505991502 -7755.0,0.1921621131542479 -7756.0,0.1920957541721197 -7757.0,0.19202941810561436 -7758.0,0.19196310494681845 -7759.0,0.19189681468782133 -7760.0,0.19183054732071494 -7761.0,0.19176430283759424 -7762.0,0.19169808123055657 -7763.0,0.19163188249170232 -7764.0,0.19156570661313435 -7765.0,0.19149955358695847 -7766.0,0.191433423405283 -7767.0,0.19136731606021914 -7768.0,0.19130123154388076 -7769.0,0.19123516984838446 -7770.0,0.19116913096584962 -7771.0,0.19110311488839815 -7772.0,0.19103712160815495 -7773.0,0.1909711511172474 -7774.0,0.19090520340780578 -7775.0,0.19083927847196297 -7776.0,0.19077337630185462 -7777.0,0.19070749688961902 -7778.0,0.19064164022739735 -7779.0,0.19057580630733328 -7780.0,0.1905099951215734 -7781.0,0.1904442066622668 -7782.0,0.19037844092156553 -7783.0,0.1903126978916241 -7784.0,0.19024697756459993 -7785.0,0.19018127993265302 -7786.0,0.19011560498794616 -7787.0,0.19004995272264472 -7788.0,0.18998432312891694 -7789.0,0.1899187161989337 -7790.0,0.1898531319248685 -7791.0,0.1897875702988977 -7792.0,0.1897220313132002 -7793.0,0.18965651495995775 -7794.0,0.18959102123135466 -7795.0,0.18952555011957806 -7796.0,0.18946010161681764 -7797.0,0.189394675715266 -7798.0,0.18932927240711817 -7799.0,0.1892638916845721 -7800.0,0.18919853353982832 -7801.0,0.18913319796509012 -7802.0,0.18906788495256335 -7803.0,0.18900259449445672 -7804.0,0.18893732658298154 -7805.0,0.18887208121035182 -7806.0,0.18880685836878422 -7807.0,0.1887416580504982 -7808.0,0.18867648024771583 -7809.0,0.1886113249526618 -7810.0,0.18854619215756366 -7811.0,0.18848108185465146 -7812.0,0.18841599403615808 -7813.0,0.18835092869431894 -7814.0,0.18828588582137232 -7815.0,0.18822086540955896 -7816.0,0.18815586745112253 -7817.0,0.18809089193830913 -7818.0,0.18802593886336774 -7819.0,0.18796100821854986 -7820.0,0.18789609999610982 -7821.0,0.18783121418830445 -7822.0,0.18776635078739345 -7823.0,0.187701509785639 -7824.0,0.18763669117530607 -7825.0,0.18757189494866228 -7826.0,0.18750712109797787 -7827.0,0.1874423696155259 -7828.0,0.18737764049358188 -7829.0,0.18731293372442417 -7830.0,0.18724824930033365 -7831.0,0.18718358721359404 -7832.0,0.18711894745649152 -7833.0,0.1870543300213151 -7834.0,0.18698973490035636 -7835.0,0.18692516208590965 -7836.0,0.18686061157027178 -7837.0,0.18679608334574244 -7838.0,0.18673157740462384 -7839.0,0.1866670937392209 -7840.0,0.18660263234184118 -7841.0,0.18653819320479498 -7842.0,0.18647377632039505 -7843.0,0.18640938168095703 -7844.0,0.18634500927879905 -7845.0,0.18628065910624197 -7846.0,0.18621633115560932 -7847.0,0.18615202541922718 -7848.0,0.1860877418894244 -7849.0,0.18602348055853238 -7850.0,0.18595924141888526 -7851.0,0.18589502446281972 -7852.0,0.1858308296826752 -7853.0,0.18576665707079368 -7854.0,0.18570250661951992 -7855.0,0.18563837832120111 -7856.0,0.18557427216818734 -7857.0,0.18551018815283113 -7858.0,0.18544612626748777 -7859.0,0.1853820865045151 -7860.0,0.1853180688562737 -7861.0,0.18525407331512664 -7862.0,0.18519009987343985 -7863.0,0.18512614852358164 -7864.0,0.18506221925792313 -7865.0,0.18499831206883807 -7866.0,0.1849344269487027 -7867.0,0.18487056388989612 -7868.0,0.18480672288479982 -7869.0,0.1847429039257981 -7870.0,0.18467910700527776 -7871.0,0.18461533211562836 -7872.0,0.18455157924924195 -7873.0,0.18448784839851337 -7874.0,0.18442413955583992 -7875.0,0.18436045271362161 -7876.0,0.18429678786426107 -7877.0,0.1842331450001636 -7878.0,0.18416952411373697 -7879.0,0.18410592519739177 -7880.0,0.18404234824354104 -7881.0,0.18397879324460056 -7882.0,0.18391526019298865 -7883.0,0.18385174908112628 -7884.0,0.18378825990143707 -7885.0,0.1837247926463472 -7886.0,0.1836613473082855 -7887.0,0.1835979238796834 -7888.0,0.18353452235297496 -7889.0,0.1834711427205968 -7890.0,0.18340778497498825 -7891.0,0.18334444910859113 -7892.0,0.18328113511385 -7893.0,0.18321784298321186 -7894.0,0.18315457270912658 -7895.0,0.18309132428404631 -7896.0,0.18302809770042608 -7897.0,0.18296489295072335 -7898.0,0.18290171002739836 -7899.0,0.1828385489229137 -7900.0,0.18277540962973488 -7901.0,0.18271229214032966 -7902.0,0.1826491964471687 -7903.0,0.1825861225427252 -7904.0,0.18252307041947471 -7905.0,0.18246004006989577 -7906.0,0.18239703148646919 -7907.0,0.1823340446616786 -7908.0,0.18227107958801003 -7909.0,0.1822081362579523 -7910.0,0.18214521466399664 -7911.0,0.18208231479863704 -7912.0,0.18201943665436993 -7913.0,0.18195658022369451 -7914.0,0.18189374549911236 -7915.0,0.18183093247312784 -7916.0,0.18176814113824774 -7917.0,0.18170537148698157 -7918.0,0.18164262351184132 -7919.0,0.18157989720534168 -7920.0,0.18151719255999976 -7921.0,0.18145450956833542 -7922.0,0.18139184822287108 -7923.0,0.1813292085161316 -7924.0,0.18126659044064458 -7925.0,0.18120399398894013 -7926.0,0.18114141915355095 -7927.0,0.18107886592701228 -7928.0,0.18101633430186206 -7929.0,0.18095382427064063 -7930.0,0.18089133582589106 -7931.0,0.1808288689601589 -7932.0,0.18076642366599235 -7933.0,0.1807039999359421 -7934.0,0.1806415977625615 -7935.0,0.18057921713840636 -7936.0,0.18051685805603518 -7937.0,0.18045452050800892 -7938.0,0.18039220448689128 -7939.0,0.18032990998524825 -7940.0,0.18026763699564866 -7941.0,0.1802053855106638 -7942.0,0.18014315552286747 -7943.0,0.18008094702483615 -7944.0,0.18001876000914874 -7945.0,0.17995659446838685 -7946.0,0.17989445039513455 -7947.0,0.17983232778197852 -7948.0,0.17977022662150796 -7949.0,0.1797081469063147 -7950.0,0.179646088628993 -7951.0,0.17958405178213988 -7952.0,0.17952203635835468 -7953.0,0.17946004235023952 -7954.0,0.17939806975039885 -7955.0,0.17933611855143988 -7956.0,0.17927418874597223 -7957.0,0.17921228032660821 -7958.0,0.17915039328596247 -7959.0,0.17908852761665242 -7960.0,0.17902668331129795 -7961.0,0.17896486036252143 -7962.0,0.17890305876294788 -7963.0,0.17884127850520476 -7964.0,0.17877951958192223 -7965.0,0.17871778198573282 -7966.0,0.17865606570927173 -7967.0,0.1785943707451766 -7968.0,0.17853269708608774 -7969.0,0.1784710447246479 -7970.0,0.1784094136535024 -7971.0,0.17834780386529908 -7972.0,0.17828621535268843 -7973.0,0.17822464810832325 -7974.0,0.17816310212485917 -7975.0,0.17810157739495408 -7976.0,0.1780400739112686 -7977.0,0.17797859166646576 -7978.0,0.17791713065321121 -7979.0,0.17785569086417313 -7980.0,0.17779427229202213 -7981.0,0.1777328749294315 -7982.0,0.1776714987690769 -7983.0,0.17761014380363666 -7984.0,0.17754881002579154 -7985.0,0.17748749742822492 -7986.0,0.1774262060036226 -7987.0,0.17736493574467302 -7988.0,0.177303686644067 -7989.0,0.17724245869449806 -7990.0,0.17718125188866207 -7991.0,0.17712006621925758 -7992.0,0.17705890167898553 -7993.0,0.17699775826054948 -7994.0,0.1769366359566554 -7995.0,0.17687553476001192 -7996.0,0.17681445466333004 -7997.0,0.17675339565932338 -7998.0,0.1766923577407081 -7999.0,0.17663134090020277 -8000.0,0.17657034513052855 -8001.0,0.17650937042440903 -8002.0,0.17644841677457046 -8003.0,0.17638748417374142 -8004.0,0.17632657261465318 -8005.0,0.17626568209003937 -8006.0,0.17620481259263623 -8007.0,0.17614396411518246 -8008.0,0.17608313665041933 -8009.0,0.17602233019109045 -8010.0,0.1759615447299422 -8011.0,0.1759007802597232 -8012.0,0.17584003677318474 -8013.0,0.17577931426308055 -8014.0,0.1757186127221669 -8015.0,0.17565793214320252 -8016.0,0.17559727251894863 -8017.0,0.17553663384216908 -8018.0,0.17547601610563002 -8019.0,0.17541541930210025 -8020.0,0.17535484342435095 -8021.0,0.17529428846515593 -8022.0,0.1752337544172914 -8023.0,0.1751732412735361 -8024.0,0.17511274902667118 -8025.0,0.17505227766948045 -8026.0,0.17499182719475007 -8027.0,0.1749313975952688 -8028.0,0.1748709888638277 -8029.0,0.1748106009932206 -8030.0,0.17475023397624356 -8031.0,0.1746898878056953 -8032.0,0.1746295624743769 -8033.0,0.17456925797509204 -8034.0,0.1745089743006468 -8035.0,0.1744487114438498 -8036.0,0.17438846939751212 -8037.0,0.17432824815444728 -8038.0,0.17426804770747142 -8039.0,0.17420786804940297 -8040.0,0.174147709173063 -8041.0,0.17408757107127493 -8042.0,0.1740274537368648 -8043.0,0.17396735716266096 -8044.0,0.1739072813414944 -8045.0,0.17384722626619847 -8046.0,0.17378719192960912 -8047.0,0.17372717832456455 -8048.0,0.17366718544390572 -8049.0,0.1736072132804758 -8050.0,0.17354726182712063 -8051.0,0.17348733107668837 -8052.0,0.1734274210220298 -8053.0,0.17336753165599797 -8054.0,0.17330766297144862 -8055.0,0.17324781496123984 -8056.0,0.17318798761823215 -8057.0,0.17312818093528867 -8058.0,0.17306839490527479 -8059.0,0.17300862952105853 -8060.0,0.1729488847755103 -8061.0,0.17288916066150303 -8062.0,0.172829457171912 -8063.0,0.1727697742996151 -8064.0,0.1727101120374925 -8065.0,0.172650470378427 -8066.0,0.17259084931530377 -8067.0,0.17253124884101048 -8068.0,0.17247166894843713 -8069.0,0.1724121096304764 -8070.0,0.17235257088002318 -8071.0,0.17229305268997502 -8072.0,0.17223355505323176 -8073.0,0.17217407796269585 -8074.0,0.17211462141127207 -8075.0,0.17205518539186762 -8076.0,0.17199576989739235 -8077.0,0.1719363749207583 -8078.0,0.17187700045488016 -8079.0,0.17181764649267495 -8080.0,0.1717583130270622 -8081.0,0.17169900005096383 -8082.0,0.1716397075573043 -8083.0,0.1715804355390103 -8084.0,0.1715211839890113 -8085.0,0.1714619529002389 -8086.0,0.17140274226562732 -8087.0,0.1713435520781131 -8088.0,0.17128438233063537 -8089.0,0.17122523301613551 -8090.0,0.17116610412755753 -8091.0,0.1711069956578477 -8092.0,0.17104790759995486 -8093.0,0.17098883994683028 -8094.0,0.17092979269142752 -8095.0,0.17087076582670277 -8096.0,0.17081175934561446 -8097.0,0.17075277324112365 -8098.0,0.17069380750619362 -8099.0,0.17063486213379028 -8100.0,0.1705759371168818 -8101.0,0.1705170324484389 -8102.0,0.1704581481214347 -8103.0,0.1703992841288447 -8104.0,0.17034044046364683 -8105.0,0.17028161711882153 -8106.0,0.17022281408735157 -8107.0,0.1701640313622222 -8108.0,0.170105268936421 -8109.0,0.1700465268029381 -8110.0,0.169987804954766 -8111.0,0.16992910338489958 -8112.0,0.1698704220863362 -8113.0,0.16981176105207557 -8114.0,0.16975312027511993 -8115.0,0.16969449974847375 -8116.0,0.16963589946514415 -8117.0,0.16957731941814044 -8118.0,0.16951875960047455 -8119.0,0.1694602200051606 -8120.0,0.16940170062521534 -8121.0,0.16934320145365778 -8122.0,0.16928472248350945 -8123.0,0.16922626370779417 -8124.0,0.16916782511953832 -8125.0,0.16910940671177047 -8126.0,0.16905100847752186 -8127.0,0.16899263040982593 -8128.0,0.16893427250171866 -8129.0,0.1688759347462383 -8130.0,0.16881761713642562 -8131.0,0.16875931966532381 -8132.0,0.16870104232597832 -8133.0,0.16864278511143715 -8134.0,0.1685845480147506 -8135.0,0.16852633102897144 -8136.0,0.16846813414715475 -8137.0,0.16840995736235814 -8138.0,0.1683518006676415 -8139.0,0.1682936640560672 -8140.0,0.16823554752069989 -8141.0,0.16817745105460677 -8142.0,0.1681193746508573 -8143.0,0.16806131830252344 -8144.0,0.16800328200267944 -8145.0,0.16794526574440205 -8146.0,0.16788726952077027 -8147.0,0.16782929332486568 -8148.0,0.16777133714977202 -8149.0,0.16771340098857562 -8150.0,0.16765548483436515 -8151.0,0.16759758868023156 -8152.0,0.1675397125192683 -8153.0,0.16748185634457113 -8154.0,0.1674240201492383 -8155.0,0.16736620392637028 -8156.0,0.16730840766907012 -8157.0,0.16725063137044305 -8158.0,0.16719287502359687 -8159.0,0.16713513862164156 -8160.0,0.1670774221576897 -8161.0,0.16701972562485606 -8162.0,0.1669620490162579 -8163.0,0.16690439232501483 -8164.0,0.1668467555442488 -8165.0,0.16678913866708414 -8166.0,0.16673154168664767 -8167.0,0.16667396459606837 -8168.0,0.16661640738847777 -8169.0,0.16655887005700978 -8170.0,0.1665013525948005 -8171.0,0.1664438549949886 -8172.0,0.16638637725071498 -8173.0,0.166328919355123 -8174.0,0.16627148130135833 -8175.0,0.16621406308256906 -8176.0,0.16615666469190554 -8177.0,0.1660992861225207 -8178.0,0.16604192736756954 -8179.0,0.1659845884202097 -8180.0,0.16592726927360096 -8181.0,0.16586996992090566 -8182.0,0.1658126903552883 -8183.0,0.16575543056991596 -8184.0,0.16569819055795787 -8185.0,0.16564097031258582 -8186.0,0.1655837698269737 -8187.0,0.16552658909429802 -8188.0,0.16546942810773754 -8189.0,0.16541228686047332 -8190.0,0.16535516534568886 -8191.0,0.16529806355656995 -8192.0,0.1652409814863048 -8193.0,0.16518391912808392 -8194.0,0.16512687647510016 -8195.0,0.16506985352054876 -8196.0,0.16501285025762735 -8197.0,0.16495586667953577 -8198.0,0.16489890277947636 -8199.0,0.1648419585506537 -8200.0,0.1647850339862748 -8201.0,0.16472812907954895 -8202.0,0.1646712438236878 -8203.0,0.16461437821190536 -8204.0,0.16455753223741804 -8205.0,0.1645007058934444 -8206.0,0.16444389917320557 -8207.0,0.1643871120699249 -8208.0,0.16433034457682807 -8209.0,0.16427359668714323 -8210.0,0.16421686839410063 -8211.0,0.16416015969093314 -8212.0,0.16410347057087568 -8213.0,0.1640468010271658 -8214.0,0.1639901510530431 -8215.0,0.16393352064174976 -8216.0,0.1638769097865301 -8217.0,0.16382031848063094 -8218.0,0.1637637467173013 -8219.0,0.16370719448979257 -8220.0,0.1636506617913585 -8221.0,0.16359414861525517 -8222.0,0.16353765495474093 -8223.0,0.16348118080307655 -8224.0,0.163424726153525 -8225.0,0.16336829099935168 -8226.0,0.16331187533382438 -8227.0,0.163255479150213 -8228.0,0.16319910244178995 -8229.0,0.16314274520182986 -8230.0,0.16308640742360977 -8231.0,0.16303008910040895 -8232.0,0.1629737902255091 -8233.0,0.16291751079219405 -8234.0,0.16286125079375022 -8235.0,0.1628050102234661 -8236.0,0.16274878907463267 -8237.0,0.16269258734054307 -8238.0,0.16263640501449295 -8239.0,0.16258024208978006 -8240.0,0.16252409855970465 -8241.0,0.1624679744175692 -8242.0,0.16241186965667848 -8243.0,0.16235578427033956 -8244.0,0.16229971825186196 -8245.0,0.16224367159455738 -8246.0,0.16218764429173982 -8247.0,0.1621316363367257 -8248.0,0.1620756477228336 -8249.0,0.16201967844338455 -8250.0,0.16196372849170176 -8251.0,0.1619077978611109 -8252.0,0.16185188654493976 -8253.0,0.1617959945365186 -8254.0,0.16174012182917988 -8255.0,0.1616842684162584 -8256.0,0.16162843429109122 -8257.0,0.16157261944701778 -8258.0,0.16151682387737976 -8259.0,0.16146104757552115 -8260.0,0.16140529053478825 -8261.0,0.1613495527485297 -8262.0,0.16129383421009627 -8263.0,0.16123813491284122 -8264.0,0.16118245485012006 -8265.0,0.1611267940152905 -8266.0,0.16107115240171269 -8267.0,0.16101553000274887 -8268.0,0.16095992681176383 -8269.0,0.16090434282212437 -8270.0,0.16084877802719988 -8271.0,0.16079323242036175 -8272.0,0.1607377059949839 -8273.0,0.16068219874444234 -8274.0,0.16062671066211553 -8275.0,0.1605712417413841 -8276.0,0.16051579197563107 -8277.0,0.1604603613582416 -8278.0,0.16040494988260331 -8279.0,0.16034955754210595 -8280.0,0.16029418433014167 -8281.0,0.1602388302401048 -8282.0,0.160183495265392 -8283.0,0.1601281793994023 -8284.0,0.1600728826355368 -8285.0,0.16001760496719908 -8286.0,0.15996234638779486 -8287.0,0.1599071068907323 -8288.0,0.15985188646942158 -8289.0,0.15979668511727543 -8290.0,0.15974150282770866 -8291.0,0.15968633959413847 -8292.0,0.15963119540998422 -8293.0,0.1595760702686677 -8294.0,0.15952096416361283 -8295.0,0.1594658770882459 -8296.0,0.15941080903599533 -8297.0,0.15935576000029203 -8298.0,0.15930072997456893 -8299.0,0.15924571895226142 -8300.0,0.15919072692680705 -8301.0,0.1591357538916457 -8302.0,0.15908079984021947 -8303.0,0.15902586476597275 -8304.0,0.15897094866235223 -8305.0,0.15891605152280672 -8306.0,0.1588611733407875 -8307.0,0.1588063141097479 -8308.0,0.1587514738231437 -8309.0,0.1586966524744328 -8310.0,0.15864185005707546 -8311.0,0.15858706656453408 -8312.0,0.15853230199027346 -8313.0,0.15847755632776053 -8314.0,0.15842282957046458 -8315.0,0.15836812171185707 -8316.0,0.1583134327454118 -8317.0,0.1582587626646047 -8318.0,0.1582041114629141 -8319.0,0.15814947913382044 -8320.0,0.15809486567080652 -8321.0,0.1580402710673574 -8322.0,0.15798569531696027 -8323.0,0.1579311384131047 -8324.0,0.15787660034928236 -8325.0,0.15782208111898735 -8326.0,0.15776758071571584 -8327.0,0.15771309913296644 -8328.0,0.15765863636423977 -8329.0,0.1576041924030389 -8330.0,0.15754976724286904 -8331.0,0.15749536087723767 -8332.0,0.15744097329965448 -8333.0,0.1573866045036315 -8334.0,0.15733225448268284 -8335.0,0.157277923230325 -8336.0,0.1572236107400766 -8337.0,0.15716931700545864 -8338.0,0.15711504201999418 -8339.0,0.15706078577720867 -8340.0,0.15700654827062974 -8341.0,0.1569523294937872 -8342.0,0.15689812944021322 -8343.0,0.15684394810344204 -8344.0,0.1567897854770103 -8345.0,0.15673564155445677 -8346.0,0.15668151632932245 -8347.0,0.1566274097951506 -8348.0,0.15657332194548676 -8349.0,0.15651925277387854 -8350.0,0.156465202273876 -8351.0,0.1564111704390312 -8352.0,0.15635715726289862 -8353.0,0.15630316273903483 -8354.0,0.15624918686099873 -8355.0,0.15619522962235133 -8356.0,0.15614129101665597 -8357.0,0.15608737103747813 -8358.0,0.15603346967838558 -8359.0,0.15597958693294828 -8360.0,0.15592572279473838 -8361.0,0.15587187725733034 -8362.0,0.1558180503143007 -8363.0,0.1557642419592284 -8364.0,0.15571045218569438 -8365.0,0.155656680987282 -8366.0,0.15560292835757672 -8367.0,0.15554919429016623 -8368.0,0.15549547877864045 -8369.0,0.15544178181659155 -8370.0,0.1553881033976138 -8371.0,0.15533444351530384 -8372.0,0.15528080216326037 -8373.0,0.15522717933508443 -8374.0,0.15517357502437915 -8375.0,0.15511998922474995 -8376.0,0.1550664219298044 -8377.0,0.15501287313315237 -8378.0,0.1549593428284059 -8379.0,0.1549058310091791 -8380.0,0.1548523376690885 -8381.0,0.15479886280175273 -8382.0,0.1547454064007926 -8383.0,0.1546919684598311 -8384.0,0.15463854897249357 -8385.0,0.1545851479324074 -8386.0,0.15453176533320226 -8387.0,0.15447840116850997 -8388.0,0.15442505543196458 -8389.0,0.15437172811720234 -8390.0,0.1543184192178617 -8391.0,0.1542651287275833 -8392.0,0.15421185664000994 -8393.0,0.15415860294878667 -8394.0,0.15410536764756072 -8395.0,0.1540521507299815 -8396.0,0.15399895218970056 -8397.0,0.15394577202037182 -8398.0,0.1538926102156512 -8399.0,0.1538394667691969 -8400.0,0.15378634167466929 -8401.0,0.15373323492573093 -8402.0,0.15368014651604658 -8403.0,0.1536270764392832 -8404.0,0.15357402468910986 -8405.0,0.15352099125919794 -8406.0,0.15346797614322086 -8407.0,0.15341497933485437 -8408.0,0.15336200082777632 -8409.0,0.15330904061566678 -8410.0,0.1532560986922079 -8411.0,0.1532031750510842 -8412.0,0.1531502696859822 -8413.0,0.15309738259059075 -8414.0,0.1530445137586007 -8415.0,0.15299166318370525 -8416.0,0.15293883085959975 -8417.0,0.15288601677998162 -8418.0,0.15283322093855056 -8419.0,0.15278044332900836 -8420.0,0.15272768394505915 -8421.0,0.152674942780409 -8422.0,0.15262221982876634 -8423.0,0.15256951508384164 -8424.0,0.15251682853934773 -8425.0,0.15246416018899933 -8426.0,0.15241151002651365 -8427.0,0.1523588780456098 -8428.0,0.1523062642400092 -8429.0,0.1522536686034354 -8430.0,0.15220109112961416 -8431.0,0.1521485318122733 -8432.0,0.15209599064514298 -8433.0,0.1520434676219553 -8434.0,0.15199096273644475 -8435.0,0.15193847598234783 -8436.0,0.15188600735340327 -8437.0,0.15183355684335192 -8438.0,0.15178112444593683 -8439.0,0.15172871015490322 -8440.0,0.15167631396399842 -8441.0,0.15162393586697195 -8442.0,0.1515715758575755 -8443.0,0.15151923392956287 -8444.0,0.15146691007669008 -8445.0,0.1514146042927153 -8446.0,0.15136231657139873 -8447.0,0.15131004690650296 -8448.0,0.1512577952917925 -8449.0,0.15120556172103417 -8450.0,0.15115334618799683 -8451.0,0.15110114868645164 -8452.0,0.1510489692101717 -8453.0,0.15099680775293245 -8454.0,0.15094466430851142 -8455.0,0.15089253887068824 -8456.0,0.15084043143324474 -8457.0,0.15078834198996488 -8458.0,0.1507362705346348 -8459.0,0.15068421706104268 -8460.0,0.150632181562979 -8461.0,0.15058016403423627 -8462.0,0.1505281644686092 -8463.0,0.15047618285989456 -8464.0,0.1504242192018914 -8465.0,0.15037227348840074 -8466.0,0.15032034571322594 -8467.0,0.15026843587017233 -8468.0,0.1502165439530475 -8469.0,0.15016466995566105 -8470.0,0.15011281387182485 -8471.0,0.1500609756953528 -8472.0,0.150009155420061 -8473.0,0.1499573530397677 -8474.0,0.1499055685482932 -8475.0,0.14985380193946005 -8476.0,0.1498020532070928 -8477.0,0.14975032234501828 -8478.0,0.14969860934706533 -8479.0,0.14964691420706497 -8480.0,0.14959523691885035 -8481.0,0.14954357747625674 -8482.0,0.14949193587312154 -8483.0,0.14944031210328435 -8484.0,0.1493887061605867 -8485.0,0.1493371180388725 -8486.0,0.1492855477319876 -8487.0,0.1492339952337801 -8488.0,0.14918246053810003 -8489.0,0.14913094363879983 -8490.0,0.14907944452973382 -8491.0,0.14902796320475853 -8492.0,0.14897649965773269 -8493.0,0.14892505388251698 -8494.0,0.14887362587297437 -8495.0,0.14882221562296982 -8496.0,0.1487708231263705 -8497.0,0.14871944837704562 -8498.0,0.14866809136886658 -8499.0,0.14861675209570685 -8500.0,0.14856543055144206 -8501.0,0.14851412672994985 -8502.0,0.14846284062511012 -8503.0,0.14841157223080476 -8504.0,0.14836032154091788 -8505.0,0.1483090885493356 -8506.0,0.14825787324994624 -8507.0,0.1482066756366401 -8508.0,0.14815549570330983 -8509.0,0.14810433344384985 -8510.0,0.148053188852157 -8511.0,0.1480020619221301 -8512.0,0.14795095264767005 -8513.0,0.1478998610226799 -8514.0,0.14784878704106477 -8515.0,0.14779773069673194 -8516.0,0.14774669198359072 -8517.0,0.1476956708955526 -8518.0,0.1476446674265311 -8519.0,0.14759368157044192 -8520.0,0.14754271332120278 -8521.0,0.14749176267273356 -8522.0,0.14744082961895622 -8523.0,0.14738991415379482 -8524.0,0.1473390162711755 -8525.0,0.14728813596502655 -8526.0,0.14723727322927824 -8527.0,0.1471864280578631 -8528.0,0.14713560044471566 -8529.0,0.1470847903837725 -8530.0,0.14703399786897242 -8531.0,0.1469832228942562 -8532.0,0.14693246545356678 -8533.0,0.14688172554084913 -8534.0,0.14683100315005043 -8535.0,0.14678029827511976 -8536.0,0.1467296109100085 -8537.0,0.1466789410486699 -8538.0,0.14662828868505953 -8539.0,0.14657765381313487 -8540.0,0.14652703642685558 -8541.0,0.14647643652018333 -8542.0,0.14642585408708197 -8543.0,0.14637528912151737 -8544.0,0.14632474161745748 -8545.0,0.14627421156887235 -8546.0,0.14622369896973417 -8547.0,0.14617320381401708 -8548.0,0.14612272609569738 -8549.0,0.14607226580875352 -8550.0,0.1460218229471659 -8551.0,0.14597139750491706 -8552.0,0.1459209894759916 -8553.0,0.14587059885437625 -8554.0,0.14582022563405975 -8555.0,0.14576986980903295 -8556.0,0.14571953137328875 -8557.0,0.14566921032082217 -8558.0,0.14561890664563024 -8559.0,0.14556862034171214 -8560.0,0.145518351403069 -8561.0,0.14546809982370423 -8562.0,0.1454178655976231 -8563.0,0.14536764871883304 -8564.0,0.1453174491813435 -8565.0,0.14526726697916617 -8566.0,0.14521710210631456 -8567.0,0.14516695455680437 -8568.0,0.14511682432465345 -8569.0,0.14506671140388155 -8570.0,0.14501661578851063 -8571.0,0.14496653747256458 -8572.0,0.14491647645006947 -8573.0,0.14486643271505334 -8574.0,0.14481640626154638 -8575.0,0.14476639708358077 -8576.0,0.14471640517519083 -8577.0,0.1446664305304128 -8578.0,0.14461647314328516 -8579.0,0.1445665330078483 -8580.0,0.14451661011814476 -8581.0,0.14446670446821908 -8582.0,0.1444168160521179 -8583.0,0.14436694486388987 -8584.0,0.14431709089758574 -8585.0,0.14426725414725827 -8586.0,0.14421743460696235 -8587.0,0.14416763227075485 -8588.0,0.14411784713269465 -8589.0,0.1440680791868429 -8590.0,0.14401832842726245 -8591.0,0.14396859484801855 -8592.0,0.14391887844317827 -8593.0,0.14386917920681086 -8594.0,0.1438194971329875 -8595.0,0.14376983221578155 -8596.0,0.14372018444926826 -8597.0,0.1436705538275251 -8598.0,0.14362094034463144 -8599.0,0.1435713439946688 -8600.0,0.14352176477172066 -8601.0,0.1434722026698726 -8602.0,0.1434226576832122 -8603.0,0.14337312980582914 -8604.0,0.14332361903181506 -8605.0,0.1432741253552637 -8606.0,0.14322464877027088 -8607.0,0.14317518927093434 -8608.0,0.14312574685135396 -8609.0,0.14307632150563154 -8610.0,0.14302691322787114 -8611.0,0.1429775220121786 -8612.0,0.14292814785266195 -8613.0,0.14287879074343116 -8614.0,0.14282945067859837 -8615.0,0.1427801276522776 -8616.0,0.14273082165858506 -8617.0,0.14268153269163877 -8618.0,0.14263226074555904 -8619.0,0.14258300581446803 -8620.0,0.14253376789249 -8621.0,0.1424845469737512 -8622.0,0.14243534305237998 -8623.0,0.1423861561225066 -8624.0,0.1423369861782635 -8625.0,0.14228783321378505 -8626.0,0.14223869722320756 -8627.0,0.1421895782006696 -8628.0,0.14214047614031153 -8629.0,0.1420913910362759 -8630.0,0.14204232288270718 -8631.0,0.1419932716737519 -8632.0,0.1419442374035586 -8633.0,0.1418952200662779 -8634.0,0.14184621965606228 -8635.0,0.14179723616706646 -8636.0,0.14174826959344702 -8637.0,0.14169931992936263 -8638.0,0.14165038716897388 -8639.0,0.14160147130644354 -8640.0,0.14155257233593624 -8641.0,0.14150369025161874 -8642.0,0.14145482504765972 -8643.0,0.1414059767182299 -8644.0,0.14135714525750215 -8645.0,0.14130833065965107 -8646.0,0.14125953291885357 -8647.0,0.14121075202928832 -8648.0,0.14116198798513624 -8649.0,0.14111324078058002 -8650.0,0.14106451040980453 -8651.0,0.14101579686699658 -8652.0,0.14096710014634503 -8653.0,0.14091842024204065 -8654.0,0.14086975714827638 -8655.0,0.14082111085924695 -8656.0,0.1407724813691493 -8657.0,0.14072386867218226 -8658.0,0.14067527276254668 -8659.0,0.14062669363444544 -8660.0,0.1405781312820834 -8661.0,0.1405295856996674 -8662.0,0.14048105688140633 -8663.0,0.14043254482151107 -8664.0,0.14038404951419445 -8665.0,0.14033557095367138 -8666.0,0.14028710913415865 -8667.0,0.1402386640498752 -8668.0,0.1401902356950418 -8669.0,0.1401418240638814 -8670.0,0.14009342915061873 -8671.0,0.14004505094948075 -8672.0,0.1399966894546962 -8673.0,0.13994834466049597 -8674.0,0.1399000165611128 -8675.0,0.1398517051507816 -8676.0,0.13980341042373906 -8677.0,0.1397551323742241 -8678.0,0.13970687099647738 -8679.0,0.13965862628474174 -8680.0,0.1396103982332619 -8681.0,0.13956218683628463 -8682.0,0.1395139920880587 -8683.0,0.13946581398283472 -8684.0,0.13941765251486551 -8685.0,0.13936950767840567 -8686.0,0.13932137946771195 -8687.0,0.13927326787704292 -8688.0,0.13922517290065928 -8689.0,0.1391770945328236 -8690.0,0.13912903276780056 -8691.0,0.13908098759985665 -8692.0,0.13903295902326052 -8693.0,0.13898494703228262 -8694.0,0.13893695162119554 -8695.0,0.13888897278427376 -8696.0,0.13884101051579376 -8697.0,0.13879306481003392 -8698.0,0.13874513566127475 -8699.0,0.13869722306379867 -8700.0,0.13864932701188998 -8701.0,0.13860144749983508 -8702.0,0.13855358452192226 -8703.0,0.13850573807244185 -8704.0,0.1384579081456861 -8705.0,0.13841009473594923 -8706.0,0.1383622978375275 -8707.0,0.13831451744471904 -8708.0,0.138266753551824 -8709.0,0.13821900615314453 -8710.0,0.13817127524298467 -8711.0,0.13812356081565055 -8712.0,0.13807586286545007 -8713.0,0.13802818138669332 -8714.0,0.13798051637369216 -8715.0,0.13793286782076059 -8716.0,0.13788523572221437 -8717.0,0.13783762007237144 -8718.0,0.1377900208655516 -8719.0,0.1377424380960765 -8720.0,0.13769487175827003 -8721.0,0.1376473218464577 -8722.0,0.1375997883549673 -8723.0,0.13755227127812833 -8724.0,0.1375047706102724 -8725.0,0.13745728634573298 -8726.0,0.13740981847884562 -8727.0,0.13736236700394766 -8728.0,0.13731493191537858 -8729.0,0.13726751320747962 -8730.0,0.13722011087459415 -8731.0,0.13717272491106738 -8732.0,0.13712535531124653 -8733.0,0.13707800206948073 -8734.0,0.13703066518012114 -8735.0,0.1369833446375207 -8736.0,0.13693604043603452 -8737.0,0.13688875257001953 -8738.0,0.1368414810338346 -8739.0,0.13679422582184061 -8740.0,0.13674698692840034 -8741.0,0.13669976434787856 -8742.0,0.1366525580746419 -8743.0,0.13660536810305912 -8744.0,0.13655819442750067 -8745.0,0.13651103704233913 -8746.0,0.13646389594194894 -8747.0,0.13641677112070658 -8748.0,0.13636966257299032 -8749.0,0.1363225702931805 -8750.0,0.13627549427565933 -8751.0,0.13622843451481104 -8752.0,0.13618139100502163 -8753.0,0.1361343637406793 -8754.0,0.13608735271617392 -8755.0,0.13604035792589744 -8756.0,0.1359933793642438 -8757.0,0.1359464170256087 -8758.0,0.13589947090438997 -8759.0,0.1358525409949872 -8760.0,0.13580562729180204 -8761.0,0.13575872978923798 -8762.0,0.13571184848170056 -8763.0,0.1356649833635971 -8764.0,0.13561813442933704 -8765.0,0.13557130167333153 -8766.0,0.13552448508999385 -8767.0,0.13547768467373905 -8768.0,0.13543090041898426 -8769.0,0.13538413232014837 -8770.0,0.13533738037165238 -8771.0,0.13529064456791906 -8772.0,0.13524392490337317 -8773.0,0.13519722137244147 -8774.0,0.13515053396955248 -8775.0,0.13510386268913674 -8776.0,0.13505720752562675 -8777.0,0.13501056847345685 -8778.0,0.13496394552706342 -8779.0,0.1349173386808846 -8780.0,0.13487074792936052 -8781.0,0.1348241732669333 -8782.0,0.13477761468804697 -8783.0,0.1347310721871473 -8784.0,0.13468454575868216 -8785.0,0.1346380353971013 -8786.0,0.13459154109685645 -8787.0,0.13454506285240103 -8788.0,0.1344986006581906 -8789.0,0.13445215450868256 -8790.0,0.13440572439833628 -8791.0,0.13435931032161286 -8792.0,0.1343129122729755 -8793.0,0.13426653024688925 -8794.0,0.1342201642378211 -8795.0,0.13417381424023994 -8796.0,0.13412748024861645 -8797.0,0.1340811622574234 -8798.0,0.13403486026113537 -8799.0,0.13398857425422891 -8800.0,0.1339423042311824 -8801.0,0.13389605018647613 -8802.0,0.13384981211459238 -8803.0,0.13380359001001532 -8804.0,0.13375738386723088 -8805.0,0.1337111936807271 -8806.0,0.13366501944499376 -8807.0,0.1336188611545227 -8808.0,0.13357271880380747 -8809.0,0.13352659238734368 -8810.0,0.13348048189962877 -8811.0,0.13343438733516216 -8812.0,0.13338830868844498 -8813.0,0.13334224595398045 -8814.0,0.13329619912627363 -8815.0,0.13325016819983146 -8816.0,0.13320415316916281 -8817.0,0.13315815402877837 -8818.0,0.13311217077319082 -8819.0,0.13306620339691466 -8820.0,0.1330202518944664 -8821.0,0.1329743162603642 -8822.0,0.1329283964891284 -8823.0,0.1328824925752811 -8824.0,0.1328366045133463 -8825.0,0.13279073229784982 -8826.0,0.1327448759233195 -8827.0,0.13269903538428496 -8828.0,0.13265321067527786 -8829.0,0.1326074017908315 -8830.0,0.1325616087254813 -8831.0,0.1325158314737645 -8832.0,0.13247007003022013 -8833.0,0.13242432438938934 -8834.0,0.1323785945458148 -8835.0,0.13233288049404138 -8836.0,0.13228718222861574 -8837.0,0.13224149974408644 -8838.0,0.1321958330350038 -8839.0,0.1321501820959201 -8840.0,0.13210454692138965 -8841.0,0.13205892750596845 -8842.0,0.13201332384421435 -8843.0,0.13196773593068725 -8844.0,0.1319221637599488 -8845.0,0.1318766073265627 -8846.0,0.13183106662509422 -8847.0,0.13178554165011075 -8848.0,0.13174003239618154 -8849.0,0.13169453885787766 -8850.0,0.131649061029772 -8851.0,0.1316035989064394 -8852.0,0.13155815248245661 -8853.0,0.13151272175240217 -8854.0,0.13146730671085657 -8855.0,0.13142190735240206 -8856.0,0.13137652367162286 -8857.0,0.131331155663105 -8858.0,0.1312858033214365 -8859.0,0.13124046664120703 -8860.0,0.13119514561700832 -8861.0,0.1311498402434339 -8862.0,0.13110455051507922 -8863.0,0.13105927642654142 -8864.0,0.1310140179724197 -8865.0,0.13096877514731506 -8866.0,0.13092354794583042 -8867.0,0.1308783363625704 -8868.0,0.1308331403921416 -8869.0,0.13078796002915252 -8870.0,0.13074279526821347 -8871.0,0.13069764610393664 -8872.0,0.130652512530936 -8873.0,0.13060739454382744 -8874.0,0.13056229213722875 -8875.0,0.13051720530575964 -8876.0,0.13047213404404137 -8877.0,0.13042707834669742 -8878.0,0.1303820382083529 -8879.0,0.13033701362363495 -8880.0,0.13029200458717233 -8881.0,0.13024701109359585 -8882.0,0.13020203313753814 -8883.0,0.1301570707136337 -8884.0,0.13011212381651868 -8885.0,0.13006719244083137 -8886.0,0.13002227658121174 -8887.0,0.12997737623230174 -8888.0,0.12993249138874496 -8889.0,0.12988762204518703 -8890.0,0.12984276819627535 -8891.0,0.12979792983665916 -8892.0,0.1297531069609897 -8893.0,0.12970829956391977 -8894.0,0.1296635076401042 -8895.0,0.1296187311841997 -8896.0,0.12957397019086478 -8897.0,0.1295292246547597 -8898.0,0.12948449457054664 -8899.0,0.1294397799328897 -8900.0,0.12939508073645478 -8901.0,0.12935039697590944 -8902.0,0.12930572864592335 -8903.0,0.12926107574116788 -8904.0,0.12921643825631632 -8905.0,0.1291718161860436 -8906.0,0.12912720952502674 -8907.0,0.12908261826794445 -8908.0,0.12903804240947736 -8909.0,0.1289934819443079 -8910.0,0.12894893686712028 -8911.0,0.1289044071726006 -8912.0,0.1288598928554368 -8913.0,0.12881539391031874 -8914.0,0.12877091033193785 -8915.0,0.12872644211498768 -8916.0,0.12868198925416344 -8917.0,0.12863755174416233 -8918.0,0.12859312957968316 -8919.0,0.12854872275542673 -8920.0,0.12850433126609562 -8921.0,0.12845995510639432 -8922.0,0.12841559427102897 -8923.0,0.12837124875470768 -8924.0,0.12832691855214037 -8925.0,0.12828260365803887 -8926.0,0.12823830406711653 -8927.0,0.12819401977408887 -8928.0,0.12814975077367305 -8929.0,0.1281054970605881 -8930.0,0.12806125862955497 -8931.0,0.1280170354752962 -8932.0,0.12797282759253634 -8933.0,0.1279286349760017 -8934.0,0.12788445762042053 -8935.0,0.12784029552052265 -8936.0,0.1277961486710399 -8937.0,0.12775201706670586 -8938.0,0.12770790070225604 -8939.0,0.12766379957242757 -8940.0,0.12761971367195954 -8941.0,0.12757564299559282 -8942.0,0.1275315875380702 -8943.0,0.12748754729413603 -8944.0,0.1274435222585367 -8945.0,0.12739951242602032 -8946.0,0.1273555177913369 -8947.0,0.1273115383492382 -8948.0,0.12726757409447767 -8949.0,0.1272236250218108 -8950.0,0.12717969112599478 -8951.0,0.12713577240178867 -8952.0,0.12709186884395313 -8953.0,0.12704798044725088 -8954.0,0.12700410720644636 -8955.0,0.12696024911630585 -8956.0,0.1269164061715973 -8957.0,0.12687257836709062 -8958.0,0.12682876569755747 -8959.0,0.12678496815777138 -8960.0,0.12674118574250748 -8961.0,0.12669741844654295 -8962.0,0.12665366626465663 -8963.0,0.12660992919162928 -8964.0,0.1265662072222433 -8965.0,0.12652250035128298 -8966.0,0.12647880857353444 -8967.0,0.12643513188378555 -8968.0,0.1263914702768261 -8969.0,0.1263478237474474 -8970.0,0.12630419229044285 -8971.0,0.12626057590060752 -8972.0,0.12621697457273834 -8973.0,0.12617338830163388 -8974.0,0.12612981708209467 -8975.0,0.126086260908923 -8976.0,0.12604271977692294 -8977.0,0.1259991936809003 -8978.0,0.12595568261566276 -8979.0,0.12591218657601977 -8980.0,0.12586870555678265 -8981.0,0.12582523955276426 -8982.0,0.12578178855877953 -8983.0,0.12573835256964508 -8984.0,0.12569493158017925 -8985.0,0.12565152558520237 -8986.0,0.12560813457953623 -8987.0,0.12556475855800472 -8988.0,0.1255213975154334 -8989.0,0.1254780514466496 -8990.0,0.1254347203464824 -8991.0,0.12539140420976275 -8992.0,0.12534810303132332 -8993.0,0.12530481680599873 -8994.0,0.12526154552862506 -8995.0,0.12521828919404046 -8996.0,0.12517504779708474 -8997.0,0.12513182133259962 -8998.0,0.12508860979542832 -8999.0,0.12504541318041612 -9000.0,0.12500223148240996 -9001.0,0.12495906469625864 -9002.0,0.12491591281681258 -9003.0,0.1248727758389241 -9004.0,0.12482965375744728 -9005.0,0.124786546567238 -9006.0,0.12474345426315392 -9007.0,0.12470037684005432 -9008.0,0.12465731429280044 -9009.0,0.12461426661625526 -9010.0,0.12457123380528352 -9011.0,0.12452821585475164 -9012.0,0.12448521275952792 -9013.0,0.12444222451448243 -9014.0,0.12439925111448703 -9015.0,0.1243562925544152 -9016.0,0.12431334882914234 -9017.0,0.1242704199335456 -9018.0,0.1242275058625039 -9019.0,0.12418460661089782 -9020.0,0.12414172217360984 -9021.0,0.12409885254552416 -9022.0,0.12405599772152674 -9023.0,0.12401315769650537 -9024.0,0.12397033246534943 -9025.0,0.12392752202295025 -9026.0,0.12388472636420085 -9027.0,0.12384194548399607 -9028.0,0.12379917937723238 -9029.0,0.12375642803880811 -9030.0,0.12371369146362336 -9031.0,0.12367096964658003 -9032.0,0.12362826258258158 -9033.0,0.12358557026653345 -9034.0,0.12354289269334276 -9035.0,0.12350022985791842 -9036.0,0.12345758175517098 -9037.0,0.12341494838001285 -9038.0,0.12337232972735822 -9039.0,0.12332972579212303 -9040.0,0.12328713656922484 -9041.0,0.12324456205358311 -9042.0,0.12320200224011901 -9043.0,0.12315945712375548 -9044.0,0.12311692669941723 -9045.0,0.12307441096203062 -9046.0,0.12303190990652384 -9047.0,0.12298942352782685 -9048.0,0.1229469518208714 -9049.0,0.12290449478059078 -9050.0,0.12286205240192026 -9051.0,0.12281962467979676 -9052.0,0.12277721160915903 -9053.0,0.12273481318494738 -9054.0,0.12269242940210404 -9055.0,0.12265006025557293 -9056.0,0.12260770574029978 -9057.0,0.12256536585123191 -9058.0,0.12252304058331852 -9059.0,0.1224807299315105 -9060.0,0.12243843389076053 -9061.0,0.12239615245602303 -9062.0,0.12235388562225404 -9063.0,0.12231163338441148 -9064.0,0.12226939573745496 -9065.0,0.12222717267634592 -9066.0,0.12218496419604731 -9067.0,0.12214277029152404 -9068.0,0.12210059095774269 -9069.0,0.12205842618967161 -9070.0,0.12201627598228076 -9071.0,0.12197414033054196 -9072.0,0.12193201922942877 -9073.0,0.12188991267391647 -9074.0,0.12184782065898196 -9075.0,0.12180574317960402 -9076.0,0.12176368023076312 -9077.0,0.1217216318074415 -9078.0,0.12167959790462299 -9079.0,0.12163757851729332 -9080.0,0.12159557364043984 -9081.0,0.12155358326905172 -9082.0,0.12151160739811985 -9083.0,0.1214696460226367 -9084.0,0.12142769913759666 -9085.0,0.12138576673799574 -9086.0,0.12134384881883178 -9087.0,0.12130194537510419 -9088.0,0.12126005640181423 -9089.0,0.12121818189396484 -9090.0,0.12117632184656077 -9091.0,0.1211344762546083 -9092.0,0.12109264511311563 -9093.0,0.12105082841709258 -9094.0,0.12100902616155079 -9095.0,0.12096723834150347 -9096.0,0.12092546495196566 -9097.0,0.1208837059879541 -9098.0,0.12084196144448728 -9099.0,0.1208002313165854 -9100.0,0.12075851559927028 -9101.0,0.12071681428756559 -9102.0,0.12067512737649665 -9103.0,0.12063345486109057 -9104.0,0.12059179673637603 -9105.0,0.12055015299738356 -9106.0,0.12050852363914538 -9107.0,0.12046690865669545 -9108.0,0.1204253080450693 -9109.0,0.12038372179930436 -9110.0,0.12034214991443966 -9111.0,0.12030059238551605 -9112.0,0.1202590492075759 -9113.0,0.12021752037566347 -9114.0,0.12017600588482467 -9115.0,0.1201345057301072 -9116.0,0.12009301990656027 -9117.0,0.12005154840923497 -9118.0,0.12001009123318405 -9119.0,0.119968648373462 -9120.0,0.11992721982512501 -9121.0,0.11988580558323086 -9122.0,0.1198444056428392 -9123.0,0.11980301999901131 -9124.0,0.11976164864681023 -9125.0,0.11972029158130056 -9126.0,0.11967894879754876 -9127.0,0.11963762029062291 -9128.0,0.11959630605559293 -9129.0,0.11955500608753018 -9130.0,0.11951372038150794 -9131.0,0.11947244893260113 -9132.0,0.11943119173588641 -9133.0,0.119389948786442 -9134.0,0.11934872007934798 -9135.0,0.11930750560968605 -9136.0,0.11926630537253963 -9137.0,0.11922511936299388 -9138.0,0.11918394757613551 -9139.0,0.11914279000705308 -9140.0,0.11910164665083678 -9141.0,0.11906051750257857 -9142.0,0.11901940255737194 -9143.0,0.11897830181031223 -9144.0,0.1189372152564964 -9145.0,0.11889614289102321 -9146.0,0.11885508470899289 -9147.0,0.11881404070550758 -9148.0,0.11877301087567099 -9149.0,0.11873199521458866 -9150.0,0.11869099371736759 -9151.0,0.11865000637911664 -9152.0,0.11860903319494635 -9153.0,0.11856807415996895 -9154.0,0.11852712926929823 -9155.0,0.1184861985180498 -9156.0,0.11844528190134095 -9157.0,0.11840437941429059 -9158.0,0.11836349105201943 -9159.0,0.11832261680964967 -9160.0,0.11828175668230537 -9161.0,0.1182409106651122 -9162.0,0.11820007875319762 -9163.0,0.11815926094169052 -9164.0,0.11811845722572172 -9165.0,0.11807766760042362 -9166.0,0.11803689206093039 -9167.0,0.11799613060237767 -9168.0,0.11795538321990298 -9169.0,0.11791464990864547 -9170.0,0.11787393066374599 -9171.0,0.11783322548034693 -9172.0,0.11779253435359249 -9173.0,0.11775185727862855 -9174.0,0.11771119425060261 -9175.0,0.11767054526466394 -9176.0,0.11762991031596329 -9177.0,0.11758928939965324 -9178.0,0.11754868251088806 -9179.0,0.11750808964482365 -9180.0,0.1174675107966175 -9181.0,0.1174269459614289 -9182.0,0.11738639513441874 -9183.0,0.11734585831074969 -9184.0,0.11730533548558586 -9185.0,0.11726482665409324 -9186.0,0.11722433181143943 -9187.0,0.11718385095279374 -9188.0,0.11714338407332699 -9189.0,0.11710293116821183 -9190.0,0.11706249223262251 -9191.0,0.11702206726173503 -9192.0,0.11698165625072689 -9193.0,0.11694125919477737 -9194.0,0.11690087608906742 -9195.0,0.11686050692877964 -9196.0,0.1168201517090983 -9197.0,0.11677981042520924 -9198.0,0.11673948307230009 -9199.0,0.11669916964556007 -9200.0,0.11665887014018016 -9201.0,0.11661858455135281 -9202.0,0.11657831287427228 -9203.0,0.11653805510413448 -9204.0,0.11649781123613698 -9205.0,0.11645758126547888 -9206.0,0.11641736518736111 -9207.0,0.11637716299698615 -9208.0,0.11633697468955825 -9209.0,0.11629680026028315 -9210.0,0.11625663970436834 -9211.0,0.11621649301702298 -9212.0,0.11617636019345787 -9213.0,0.11613624122888551 -9214.0,0.11609613611851988 -9215.0,0.1160560448575768 -9216.0,0.11601596744127365 -9217.0,0.11597590386482957 -9218.0,0.11593585412346516 -9219.0,0.11589581821240282 -9220.0,0.11585579612686654 -9221.0,0.11581578786208206 -9222.0,0.11577579341327657 -9223.0,0.11573581277567907 -9224.0,0.11569584594452018 -9225.0,0.11565589291503217 -9226.0,0.11561595368244885 -9227.0,0.11557602824200582 -9228.0,0.11553611658894025 -9229.0,0.11549621871849097 -9230.0,0.11545633462589854 -9231.0,0.11541646430640493 -9232.0,0.11537660775525396 -9233.0,0.11533676496769106 -9234.0,0.11529693593896331 -9235.0,0.11525712066431931 -9236.0,0.11521731913900941 -9237.0,0.11517753135828561 -9238.0,0.11513775731740156 -9239.0,0.11509799701161239 -9240.0,0.11505825043617504 -9241.0,0.11501851758634805 -9242.0,0.11497879845739162 -9243.0,0.11493909304456744 -9244.0,0.114899401343139 -9245.0,0.11485972334837138 -9246.0,0.11482005905553133 -9247.0,0.11478040845988707 -9248.0,0.11474077155670864 -9249.0,0.11470114834126766 -9250.0,0.11466153880883734 -9251.0,0.11462194295469262 -9252.0,0.1145823607741099 -9253.0,0.11454279226236735 -9254.0,0.11450323741474476 -9255.0,0.11446369622652355 -9256.0,0.11442416869298667 -9257.0,0.11438465480941881 -9258.0,0.11434515457110625 -9259.0,0.11430566797333695 -9260.0,0.11426619501140035 -9261.0,0.11422673568058767 -9262.0,0.11418728997619168 -9263.0,0.11414785789350687 -9264.0,0.11410843942782915 -9265.0,0.11406903457445627 -9266.0,0.1140296433286875 -9267.0,0.11399026568582374 -9268.0,0.11395090164116758 -9269.0,0.1139115511900231 -9270.0,0.11387221432769609 -9271.0,0.11383289104949398 -9272.0,0.11379358135072584 -9273.0,0.11375428522670218 -9274.0,0.11371500267273535 -9275.0,0.11367573368413919 -9276.0,0.11363647825622926 -9277.0,0.11359723638432258 -9278.0,0.11355800806373792 -9279.0,0.11351879328979564 -9280.0,0.11347959205781774 -9281.0,0.11344040436312772 -9282.0,0.11340123020105079 -9283.0,0.11336206956691379 -9284.0,0.11332292245604518 -9285.0,0.1132837888637749 -9286.0,0.11324466878543463 -9287.0,0.11320556221635764 -9288.0,0.1131664691518788 -9289.0,0.11312738958733466 -9290.0,0.1130883235180632 -9291.0,0.11304927093940416 -9292.0,0.11301023184669887 -9293.0,0.11297120623529029 -9294.0,0.11293219410052285 -9295.0,0.11289319543774276 -9296.0,0.11285421024229773 -9297.0,0.11281523850953717 -9298.0,0.11277628023481195 -9299.0,0.11273733541347468 -9300.0,0.11269840404087951 -9301.0,0.11265948611238227 -9302.0,0.11262058162334024 -9303.0,0.11258169056911244 -9304.0,0.11254281294505945 -9305.0,0.11250394874654347 -9306.0,0.11246509796892831 -9307.0,0.11242626060757928 -9308.0,0.1123874366578634 -9309.0,0.11234862611514926 -9310.0,0.11230982897480708 -9311.0,0.11227104523220857 -9312.0,0.11223227488272716 -9313.0,0.11219351792173782 -9314.0,0.11215477434461717 -9315.0,0.11211604414674328 -9316.0,0.112077327323496 -9317.0,0.11203862387025668 -9318.0,0.11199993378240831 -9319.0,0.11196125705533538 -9320.0,0.11192259368442406 -9321.0,0.1118839436650621 -9322.0,0.1118453069926389 -9323.0,0.11180668366254526 -9324.0,0.11176807367017377 -9325.0,0.11172947701091852 -9326.0,0.11169089368017524 -9327.0,0.11165232367334123 -9328.0,0.11161376698581531 -9329.0,0.11157522361299796 -9330.0,0.11153669355029126 -9331.0,0.11149817679309891 -9332.0,0.11145967333682602 -9333.0,0.11142118317687948 -9334.0,0.11138270630866769 -9335.0,0.11134424272760067 -9336.0,0.11130579242908992 -9337.0,0.11126735540854862 -9338.0,0.11122893166139156 -9339.0,0.11119052118303507 -9340.0,0.111152123968897 -9341.0,0.11111374001439686 -9342.0,0.11107536931495574 -9343.0,0.1110370118659963 -9344.0,0.1109986676629428 -9345.0,0.11096033670122098 -9346.0,0.11092201897625828 -9347.0,0.11088371448348368 -9348.0,0.11084542321832778 -9349.0,0.11080714517622262 -9350.0,0.11076888035260192 -9351.0,0.11073062874290102 -9352.0,0.11069239034255679 -9353.0,0.11065416514700759 -9354.0,0.11061595315169347 -9355.0,0.11057775435205604 -9356.0,0.11053956874353847 -9357.0,0.11050139632158544 -9358.0,0.11046323708164328 -9359.0,0.11042509101915989 -9360.0,0.11038695812958475 -9361.0,0.1103488384083688 -9362.0,0.1103107318509647 -9363.0,0.11027263845282657 -9364.0,0.1102345582094102 -9365.0,0.1101964911161729 -9366.0,0.11015843716857347 -9367.0,0.1101203963620724 -9368.0,0.11008236869213167 -9369.0,0.11004435415421494 -9370.0,0.11000635274378724 -9371.0,0.10996836445631533 -9372.0,0.10993038928726749 -9373.0,0.10989242723211361 -9374.0,0.10985447828632497 -9375.0,0.10981654244537462 -9376.0,0.10977861970473705 -9377.0,0.10974071005988845 -9378.0,0.10970281350630635 -9379.0,0.10966493003947002 -9380.0,0.10962705965486025 -9381.0,0.10958920234795935 -9382.0,0.1095513581142513 -9383.0,0.10951352694922147 -9384.0,0.10947570884835688 -9385.0,0.10943790380714613 -9386.0,0.10940011182107942 -9387.0,0.10936233288564833 -9388.0,0.10932456699634614 -9389.0,0.10928681414866767 -9390.0,0.10924907433810935 -9391.0,0.10921134756016897 -9392.0,0.10917363381034606 -9393.0,0.10913593308414164 -9394.0,0.10909824537705834 -9395.0,0.10906057068460019 -9396.0,0.10902290900227293 -9397.0,0.1089852603255838 -9398.0,0.10894762465004161 -9399.0,0.10891000197115663 -9400.0,0.10887239228444079 -9401.0,0.10883479558540753 -9402.0,0.10879721186957182 -9403.0,0.10875964113245026 -9404.0,0.10872208336956084 -9405.0,0.10868453857642324 -9406.0,0.10864700674855864 -9407.0,0.1086094878814898 -9408.0,0.10857198197074092 -9409.0,0.10853448901183785 -9410.0,0.10849700900030795 -9411.0,0.1084595419316802 -9412.0,0.10842208780148493 -9413.0,0.10838464660525421 -9414.0,0.10834721833852154 -9415.0,0.10830980299682208 -9416.0,0.10827240057569236 -9417.0,0.10823501107067056 -9418.0,0.10819763447729641 -9419.0,0.10816027079111115 -9420.0,0.10812292000765761 -9421.0,0.10808558212248003 -9422.0,0.10804825713112429 -9423.0,0.10801094502913781 -9424.0,0.1079736458120696 -9425.0,0.10793635947547 -9426.0,0.1078990860148911 -9427.0,0.10786182542588642 -9428.0,0.1078245777040111 -9429.0,0.10778734284482168 -9430.0,0.10775012084387633 -9431.0,0.10771291169673478 -9432.0,0.10767571539895826 -9433.0,0.10763853194610945 -9434.0,0.10760136133375266 -9435.0,0.10756420355745373 -9436.0,0.10752705861278004 -9437.0,0.10748992649530038 -9438.0,0.10745280720058521 -9439.0,0.10741570072420646 -9440.0,0.10737860706173762 -9441.0,0.1073415262087537 -9442.0,0.10730445816083115 -9443.0,0.10726740291354807 -9444.0,0.10723036046248403 -9445.0,0.10719333080322019 -9446.0,0.10715631393133909 -9447.0,0.10711930984242493 -9448.0,0.10708231853206339 -9449.0,0.10704533999584172 -9450.0,0.10700837422934857 -9451.0,0.10697142122817423 -9452.0,0.10693448098791049 -9453.0,0.10689755350415067 -9454.0,0.10686063877248951 -9455.0,0.1068237367885234 -9456.0,0.10678684754785021 -9457.0,0.10674997104606931 -9458.0,0.10671310727878165 -9459.0,0.10667625624158956 -9460.0,0.10663941793009704 -9461.0,0.10660259233990953 -9462.0,0.10656577946663406 -9463.0,0.10652897930587903 -9464.0,0.10649219185325448 -9465.0,0.10645541710437195 -9466.0,0.10641865505484455 -9467.0,0.10638190570028669 -9468.0,0.10634516903631452 -9469.0,0.10630844505854563 -9470.0,0.10627173376259914 -9471.0,0.10623503514409559 -9472.0,0.10619834919865714 -9473.0,0.10616167592190741 -9474.0,0.10612501530947162 -9475.0,0.1060883673569763 -9476.0,0.1060517320600497 -9477.0,0.10601510941432146 -9478.0,0.10597849941542278 -9479.0,0.10594190205898642 -9480.0,0.10590531734064645 -9481.0,0.10586874525603866 -9482.0,0.10583218580080027 -9483.0,0.10579563897057001 -9484.0,0.10575910476098806 -9485.0,0.10572258316769617 -9486.0,0.1056860741863376 -9487.0,0.10564957781255714 -9488.0,0.10561309404200094 -9489.0,0.1055766228703168 -9490.0,0.10554016429315397 -9491.0,0.10550371830616326 -9492.0,0.10546728490499682 -9493.0,0.1054308640853085 -9494.0,0.10539445584275352 -9495.0,0.10535806017298865 -9496.0,0.10532167707167221 -9497.0,0.10528530653446387 -9498.0,0.10524894855702494 -9499.0,0.10521260313501814 -9500.0,0.10517627026410782 -9501.0,0.1051399499399596 -9502.0,0.10510364215824083 -9503.0,0.1050673469146202 -9504.0,0.10503106420476804 -9505.0,0.10499479402435598 -9506.0,0.10495853636905728 -9507.0,0.10492229123454669 -9508.0,0.10488605861650045 -9509.0,0.10484983851059622 -9510.0,0.10481363091251322 -9511.0,0.10477743581793215 -9512.0,0.10474125322253527 -9513.0,0.10470508312200615 -9514.0,0.10466892551202998 -9515.0,0.10463278038829348 -9516.0,0.10459664774648475 -9517.0,0.10456052758229349 -9518.0,0.10452441989141076 -9519.0,0.10448832466952919 -9520.0,0.10445224191234288 -9521.0,0.1044161716155475 -9522.0,0.10438011377484001 -9523.0,0.10434406838591902 -9524.0,0.10430803544448458 -9525.0,0.10427201494623828 -9526.0,0.10423600688688303 -9527.0,0.10420001126212339 -9528.0,0.10416402806766532 -9529.0,0.10412805729921637 -9530.0,0.10409209895248536 -9531.0,0.1040561530231828 -9532.0,0.10402021950702058 -9533.0,0.1039842983997121 -9534.0,0.10394838969697229 -9535.0,0.1039124933945174 -9536.0,0.1038766094880653 -9537.0,0.10384073797333533 -9538.0,0.1038048788460483 -9539.0,0.10376903210192641 -9540.0,0.10373319773669341 -9541.0,0.10369737574607457 -9542.0,0.1036615661257966 -9543.0,0.10362576887158759 -9544.0,0.10358998397917725 -9545.0,0.10355421144429668 -9546.0,0.10351845126267853 -9547.0,0.10348270343005679 -9548.0,0.10344696794216704 -9549.0,0.1034112447947463 -9550.0,0.1033755339835331 -9551.0,0.10333983550426731 -9552.0,0.10330414935269043 -9553.0,0.10326847552454532 -9554.0,0.1032328140155764 -9555.0,0.10319716482152952 -9556.0,0.1031615279381519 -9557.0,0.1031259033611924 -9558.0,0.10309029108640125 -9559.0,0.1030546911095302 -9560.0,0.10301910342633233 -9561.0,0.10298352803256237 -9562.0,0.10294796492397641 -9563.0,0.10291241409633209 -9564.0,0.10287687554538835 -9565.0,0.10284134926690576 -9566.0,0.10280583525664629 -9567.0,0.10277033351037342 -9568.0,0.10273484402385195 -9569.0,0.10269936679284832 -9570.0,0.10266390181313031 -9571.0,0.10262844908046724 -9572.0,0.10259300859062989 -9573.0,0.10255758033939039 -9574.0,0.10252216432252242 -9575.0,0.10248676053580115 -9576.0,0.10245136897500319 -9577.0,0.10241598963590651 -9578.0,0.10238062251429063 -9579.0,0.10234526760593651 -9580.0,0.10230992490662666 -9581.0,0.10227459441214481 -9582.0,0.10223927611827636 -9583.0,0.1022039700208081 -9584.0,0.1021686761155283 -9585.0,0.10213339439822655 -9586.0,0.10209812486469409 -9587.0,0.10206286751072348 -9588.0,0.10202762233210885 -9589.0,0.10199238932464559 -9590.0,0.10195716848413072 -9591.0,0.10192195980636265 -9592.0,0.10188676328714123 -9593.0,0.10185157892226783 -9594.0,0.10181640670754512 -9595.0,0.10178124663877736 -9596.0,0.10174609871177019 -9597.0,0.10171096292233078 -9598.0,0.1016758392662676 -9599.0,0.10164072773939069 -9600.0,0.1016056283375115 -9601.0,0.10157054105644298 -9602.0,0.10153546589199937 -9603.0,0.10150040283999652 -9604.0,0.10146535189625167 -9605.0,0.1014303130565835 -9606.0,0.10139528631681209 -9607.0,0.10136027167275903 -9608.0,0.10132526912024732 -9609.0,0.10129027865510143 -9610.0,0.10125530027314728 -9611.0,0.10122033397021213 -9612.0,0.10118537974212478 -9613.0,0.10115043758471547 -9614.0,0.10111550749381588 -9615.0,0.10108058946525902 -9616.0,0.10104568349487948 -9617.0,0.10101078957851323 -9618.0,0.1009759077119977 -9619.0,0.10094103789117168 -9620.0,0.10090618011187548 -9621.0,0.10087133436995083 -9622.0,0.10083650066124093 -9623.0,0.10080167898159029 -9624.0,0.10076686932684496 -9625.0,0.10073207169285242 -9626.0,0.1006972860754616 -9627.0,0.10066251247052277 -9628.0,0.10062775087388769 -9629.0,0.10059300128140959 -9630.0,0.10055826368894309 -9631.0,0.10052353809234428 -9632.0,0.10048882448747058 -9633.0,0.10045412287018093 -9634.0,0.10041943323633572 -9635.0,0.10038475558179673 -9636.0,0.1003500899024271 -9637.0,0.1003154361940915 -9638.0,0.10028079445265602 -9639.0,0.10024616467398818 -9640.0,0.1002115468539568 -9641.0,0.1001769409884323 -9642.0,0.10014234707328644 -9643.0,0.10010776510439245 -9644.0,0.10007319507762487 -9645.0,0.1000386369888598 -9646.0,0.10000409083397471 -9647.0,0.0999695566088485 -9648.0,0.09993503430936153 -9649.0,0.09990052393139544 -9650.0,0.09986602547083344 -9651.0,0.09983153892356013 -9652.0,0.09979706428546156 -9653.0,0.09976260155242506 -9654.0,0.09972815072033951 -9655.0,0.0996937117850952 -9656.0,0.09965928474258386 -9657.0,0.09962486958869848 -9658.0,0.09959046631933365 -9659.0,0.0995560749303853 -9660.0,0.09952169541775086 -9661.0,0.09948732777732897 -9662.0,0.0994529720050199 -9663.0,0.09941862809672523 -9664.0,0.09938429604834806 -9665.0,0.09934997585579272 -9666.0,0.09931566751496511 -9667.0,0.09928137102177248 -9668.0,0.09924708637212352 -9669.0,0.09921281356192838 -9670.0,0.09917855258709844 -9671.0,0.09914430344354669 -9672.0,0.09911006612718745 -9673.0,0.0990758406339365 -9674.0,0.09904162695971089 -9675.0,0.09900742510042923 -9676.0,0.0989732350520115 -9677.0,0.09893905681037911 -9678.0,0.09890489037145475 -9679.0,0.09887073573116266 -9680.0,0.09883659288542845 -9681.0,0.09880246183017916 -9682.0,0.09876834256134312 -9683.0,0.0987342350748502 -9684.0,0.09870013936663162 -9685.0,0.09866605543262001 -9686.0,0.09863198326874946 -9687.0,0.0985979228709553 -9688.0,0.09856387423517443 -9689.0,0.09852983735734511 -9690.0,0.09849581223340699 -9691.0,0.09846179885930108 -9692.0,0.09842779723096985 -9693.0,0.09839380734435717 -9694.0,0.09835982919540831 -9695.0,0.09832586278006987 -9696.0,0.09829190809428992 -9697.0,0.09825796513401794 -9698.0,0.09822403389520482 -9699.0,0.09819011437380269 -9700.0,0.09815620656576529 -9701.0,0.09812231046704764 -9702.0,0.09808842607360622 -9703.0,0.0980545533813988 -9704.0,0.09802069238638465 -9705.0,0.0979868430845244 -9706.0,0.09795300547178008 -9707.0,0.09791917954411515 -9708.0,0.09788536529749432 -9709.0,0.09785156272788388 -9710.0,0.09781777183125138 -9711.0,0.0977839926035659 -9712.0,0.09775022504079771 -9713.0,0.09771646913891864 -9714.0,0.09768272489390185 -9715.0,0.09764899230172196 -9716.0,0.09761527135835481 -9717.0,0.09758156205977779 -9718.0,0.09754786440196962 -9719.0,0.09751417838091048 -9720.0,0.09748050399258175 -9721.0,0.09744684123296639 -9722.0,0.09741319009804866 -9723.0,0.09737955058381426 -9724.0,0.09734592268625025 -9725.0,0.09731230640134499 -9726.0,0.09727870172508835 -9727.0,0.09724510865347154 -9728.0,0.09721152718248718 -9729.0,0.09717795730812917 -9730.0,0.09714439902639292 -9731.0,0.09711085233327515 -9732.0,0.09707731722477404 -9733.0,0.09704379369688902 -9734.0,0.097010281745621 -9735.0,0.09697678136697227 -9736.0,0.0969432925569465 -9737.0,0.09690981531154864 -9738.0,0.09687634962678517 -9739.0,0.09684289549866383 -9740.0,0.09680945292319386 -9741.0,0.0967760218963857 -9742.0,0.09674260241425134 -9743.0,0.09670919447280406 -9744.0,0.09667579806805854 -9745.0,0.09664241319603088 -9746.0,0.09660903985273843 -9747.0,0.09657567803420002 -9748.0,0.09654232773643583 -9749.0,0.09650898895546746 -9750.0,0.09647566168731775 -9751.0,0.09644234592801104 -9752.0,0.09640904167357302 -9753.0,0.09637574892003076 -9754.0,0.09634246766341259 -9755.0,0.09630919789974836 -9756.0,0.09627593962506921 -9757.0,0.09624269283540772 -9758.0,0.0962094575267977 -9759.0,0.09617623369527448 -9760.0,0.09614302133687468 -9761.0,0.09610982044763632 -9762.0,0.0960766310235988 -9763.0,0.0960434530608028 -9764.0,0.09601028655529047 -9765.0,0.09597713150310527 -9766.0,0.09594398790029211 -9767.0,0.09591085574289711 -9768.0,0.09587773502696788 -9769.0,0.09584462574855336 -9770.0,0.0958115279037039 -9771.0,0.09577844148847109 -9772.0,0.09574536649890798 -9773.0,0.095712302931069 -9774.0,0.09567925078100992 -9775.0,0.0956462100447878 -9776.0,0.09561318071846113 -9777.0,0.09558016279808978 -9778.0,0.09554715627973501 -9779.0,0.09551416115945925 -9780.0,0.0954811774333265 -9781.0,0.09544820509740204 -9782.0,0.0954152441477525 -9783.0,0.09538229458044592 -9784.0,0.09534935639155158 -9785.0,0.09531642957714023 -9786.0,0.09528351413328395 -9787.0,0.09525061005605621 -9788.0,0.0952177173415317 -9789.0,0.0951848359857866 -9790.0,0.09515196598489842 -9791.0,0.09511910733494602 -9792.0,0.09508626003200957 -9793.0,0.09505342407217061 -9794.0,0.09502059945151209 -9795.0,0.09498778616611829 -9796.0,0.09495498421207475 -9797.0,0.09492219358546848 -9798.0,0.09488941428238781 -9799.0,0.09485664629892238 -9800.0,0.09482388963116327 -9801.0,0.09479114427520276 -9802.0,0.0947584102271346 -9803.0,0.09472568748305386 -9804.0,0.09469297603905702 -9805.0,0.09466027589124174 -9806.0,0.09462758703570717 -9807.0,0.09459490946855377 -9808.0,0.0945622431858834 -9809.0,0.0945295881837991 -9810.0,0.09449694445840544 -9811.0,0.09446431200580822 -9812.0,0.09443169082211472 -9813.0,0.09439908090343335 -9814.0,0.09436648224587404 -9815.0,0.09433389484554801 -9816.0,0.09430131869856785 -9817.0,0.09426875380104738 -9818.0,0.0942362001491019 -9819.0,0.09420365773884799 -9820.0,0.09417112656640358 -9821.0,0.09413860662788799 -9822.0,0.09410609791942172 -9823.0,0.09407360043712677 -9824.0,0.09404111417712645 -9825.0,0.09400863913554539 -9826.0,0.09397617530850949 -9827.0,0.0939437226921461 -9828.0,0.09391128128258386 -9829.0,0.09387885107595277 -9830.0,0.09384643206838407 -9831.0,0.09381402425601044 -9832.0,0.09378162763496589 -9833.0,0.09374924220138577 -9834.0,0.09371686795140664 -9835.0,0.09368450488116653 -9836.0,0.09365215298680478 -9837.0,0.09361981226446202 -9838.0,0.0935874827102803 -9839.0,0.09355516432040285 -9840.0,0.09352285709097435 -9841.0,0.09349056101814081 -9842.0,0.09345827609804956 -9843.0,0.09342600232684918 -9844.0,0.09339373970068968 -9845.0,0.09336148821572235 -9846.0,0.09332924786809989 -9847.0,0.09329701865397616 -9848.0,0.09326480056950649 -9849.0,0.0932325936108475 -9850.0,0.09320039777415719 -9851.0,0.09316821305559474 -9852.0,0.09313603945132078 -9853.0,0.09310387695749725 -9854.0,0.09307172557028742 -9855.0,0.0930395852858558 -9856.0,0.09300745610036833 -9857.0,0.0929753380099922 -9858.0,0.09294323101089601 -9859.0,0.09291113509924963 -9860.0,0.09287905027122417 -9861.0,0.0928469765229922 -9862.0,0.09281491385072756 -9863.0,0.09278286225060543 -9864.0,0.09275082171880222 -9865.0,0.09271879225149578 -9866.0,0.09268677384486519 -9867.0,0.09265476649509095 -9868.0,0.09262277019835474 -9869.0,0.09259078495083968 -9870.0,0.09255881074873015 -9871.0,0.0925268475882119 -9872.0,0.0924948954654719 -9873.0,0.0924629543766985 -9874.0,0.0924310243180814 -9875.0,0.09239910528581154 -9876.0,0.09236719727608127 -9877.0,0.09233530028508412 -9878.0,0.09230341430901504 -9879.0,0.09227153934407029 -9880.0,0.09223967538644742 -9881.0,0.09220782243234525 -9882.0,0.09217598047796396 -9883.0,0.09214414951950507 -9884.0,0.0921123295531714 -9885.0,0.092080520575167 -9886.0,0.09204872258169729 -9887.0,0.09201693556896903 -9888.0,0.09198515953319032 -9889.0,0.09195339447057038 -9890.0,0.09192164037731997 -9891.0,0.09188989724965099 -9892.0,0.09185816508377681 -9893.0,0.09182644387591192 -9894.0,0.09179473362227225 -9895.0,0.09176303431907498 -9896.0,0.09173134596253864 -9897.0,0.09169966854888308 -9898.0,0.0916680020743293 -9899.0,0.0916363465350998 -9900.0,0.0916047019274183 -9901.0,0.09157306824750985 -9902.0,0.09154144549160072 -9903.0,0.09150983365591857 -9904.0,0.09147823273669235 -9905.0,0.09144664273015234 -9906.0,0.09141506363252999 -9907.0,0.09138349544005821 -9908.0,0.09135193814897112 -9909.0,0.09132039175550422 -9910.0,0.09128885625589415 -9911.0,0.09125733164637903 -9912.0,0.09122581792319819 -9913.0,0.09119431508259226 -9914.0,0.09116282312080325 -9915.0,0.09113134203407429 -9916.0,0.09109987181864997 -9917.0,0.09106841247077611 -9918.0,0.09103696398669989 -9919.0,0.09100552636266966 -9920.0,0.09097409959493517 -9921.0,0.09094268367974744 -9922.0,0.09091127861335882 -9923.0,0.09087988439202284 -9924.0,0.09084850101199442 -9925.0,0.09081712846952977 -9926.0,0.09078576676088641 -9927.0,0.09075441588232304 -9928.0,0.09072307583009975 -9929.0,0.09069174660047793 -9930.0,0.09066042818972025 -9931.0,0.09062912059409059 -9932.0,0.09059782380985419 -9933.0,0.0905665378332776 -9934.0,0.09053526266062863 -9935.0,0.09050399828817642 -9936.0,0.09047274471219124 -9937.0,0.09044150192894487 -9938.0,0.09041026993471023 -9939.0,0.09037904872576162 -9940.0,0.09034783829837449 -9941.0,0.09031663864882573 -9942.0,0.09028544977339342 -9943.0,0.09025427166835702 -9944.0,0.09022310432999711 -9945.0,0.0901919477545957 -9946.0,0.09016080193843604 -9947.0,0.0901296668778027 -9948.0,0.09009854256898141 -9949.0,0.09006742900825931 -9950.0,0.09003632619192478 -9951.0,0.09000523411626749 -9952.0,0.08997415277757839 -9953.0,0.08994308217214966 -9954.0,0.08991202229627483 -9955.0,0.08988097314624868 -9956.0,0.08984993471836732 -9957.0,0.089818907008928 -9958.0,0.08978789001422938 -9959.0,0.08975688373057138 -9960.0,0.0897258881542552 -9961.0,0.08969490328158321 -9962.0,0.08966392910885917 -9963.0,0.08963296563238814 -9964.0,0.08960201284847638 -9965.0,0.0895710707534314 -9966.0,0.08954013934356207 -9967.0,0.0895092186151785 -9968.0,0.08947830856459212 -9969.0,0.08944740918811547 -9970.0,0.08941652048206257 -9971.0,0.08938564244274859 -9972.0,0.08935477506649 -9973.0,0.08932391834960463 -9974.0,0.08929307228841137 -9975.0,0.08926223687923056 -9976.0,0.08923141211838378 -9977.0,0.08920059800219389 -9978.0,0.08916979452698491 -9979.0,0.08913900168908226 -9980.0,0.08910821948481255 -9981.0,0.08907744791050376 -9982.0,0.08904668696248498 -9983.0,0.08901593663708668 -9984.0,0.08898519693064057 -9985.0,0.08895446783947968 -9986.0,0.08892374935993816 -9987.0,0.08889304148835157 -9988.0,0.08886234422105668 -9989.0,0.08883165755439154 -9990.0,0.08880098148469548 -9991.0,0.088770316008309 -9992.0,0.08873966112157394 -9993.0,0.08870901682083344 -9994.0,0.0886783831024319 -9995.0,0.08864775996271482 -9996.0,0.08861714739802913 -9997.0,0.08858654540472301 -9998.0,0.08855595397914588 -9999.0,0.08852537311764833 -10000.0,0.08849480281658231 -10001.0,0.08846424307230104 -10002.0,0.08843369388115897 -10003.0,0.08840315523951175 -10004.0,0.08837262714371637 -10005.0,0.08834210959013106 -10006.0,0.08831160257511533 -10007.0,0.08828110609502984 -10008.0,0.08825062014623662 -10009.0,0.08822014472509891 -10010.0,0.08818967982798125 -10011.0,0.08815922545124938 -10012.0,0.08812878159127029 -10013.0,0.08809834824441226 -10014.0,0.08806792540704483 -10015.0,0.0880375130755388 -10016.0,0.08800711124626613 -10017.0,0.08797671991560015 -10018.0,0.08794633907991538 -10019.0,0.08791596873558766 -10020.0,0.08788560887899395 -10021.0,0.08785525950651257 -10022.0,0.08782492061452307 -10023.0,0.08779459219940627 -10024.0,0.08776427425754416 -10025.0,0.08773396678532004 -10026.0,0.08770366977911846 -10027.0,0.08767338323532521 -10028.0,0.08764310715032736 -10029.0,0.08761284152051313 -10030.0,0.08758258634227208 -10031.0,0.08755234161199497 -10032.0,0.08752210732607389 -10033.0,0.08749188348090202 -10034.0,0.08746167007287392 -10035.0,0.08743146709838535 -10036.0,0.08740127455383334 -10037.0,0.0873710924356161 -10038.0,0.08734092074013311 -10039.0,0.08731075946378515 -10040.0,0.08728060860297421 -10041.0,0.08725046815410345 -10042.0,0.08722033811357736 -10043.0,0.08719021847780167 -10044.0,0.08716010924318335 -10045.0,0.0871300104061305 -10046.0,0.0870999219630526 -10047.0,0.08706984391036032 -10048.0,0.08703977624446557 -10049.0,0.08700971896178153 -10050.0,0.0869796720587225 -10051.0,0.08694963553170414 -10052.0,0.08691960937714333 -10053.0,0.0868895935914582 -10054.0,0.08685958817106801 -10055.0,0.08682959311239336 -10056.0,0.08679960841185606 -10057.0,0.0867696340658792 -10058.0,0.08673967007088698 -10059.0,0.08670971642330497 -10060.0,0.08667977311955988 -10061.0,0.08664984015607975 -10062.0,0.08661991752929372 -10063.0,0.08659000523563229 -10064.0,0.08656010327152712 -10065.0,0.08653021163341114 -10066.0,0.08650033031771852 -10067.0,0.08647045932088457 -10068.0,0.08644059863934592 -10069.0,0.08641074826954043 -10070.0,0.0863809082079072 -10071.0,0.08635107845088645 -10072.0,0.08632125899491974 -10073.0,0.08629144983644983 -10074.0,0.08626165097192075 -10075.0,0.08623186239777762 -10076.0,0.08620208411046694 -10077.0,0.08617231610643637 -10078.0,0.08614255838213483 -10079.0,0.08611281093401238 -10080.0,0.0860830737585204 -10081.0,0.08605334685211144 -10082.0,0.08602363021123936 -10083.0,0.08599392383235911 -10084.0,0.08596422771192697 -10085.0,0.08593454184640038 -10086.0,0.08590486623223807 -10087.0,0.08587520086589999 -10088.0,0.08584554574384717 -10089.0,0.08581590086254204 -10090.0,0.08578626621844818 -10091.0,0.0857566418080304 -10092.0,0.08572702762775468 -10093.0,0.0856974236740883 -10094.0,0.08566782994349971 -10095.0,0.08563824643245863 -10096.0,0.0856086731374359 -10097.0,0.08557911005490368 -10098.0,0.08554955718133529 -10099.0,0.08552001451320536 -10100.0,0.08549048204698956 -10101.0,0.08546095977916493 -10102.0,0.08543144770620967 -10103.0,0.08540194582460321 -10104.0,0.08537245413082625 -10105.0,0.08534297262136054 -10106.0,0.0853135012926892 -10107.0,0.08528404014129652 -10108.0,0.08525458916366803 -10109.0,0.08522514835629036 -10110.0,0.0851957177156515 -10111.0,0.08516629723824057 -10112.0,0.08513688692054795 -10113.0,0.08510748675906515 -10114.0,0.08507809675028498 -10115.0,0.08504871689070141 -10116.0,0.0850193471768097 -10117.0,0.08498998760510615 -10118.0,0.08496063817208843 -10119.0,0.08493129887425538 -10120.0,0.08490196970810707 -10121.0,0.08487265067014464 -10122.0,0.08484334175687061 -10123.0,0.08481404296478862 -10124.0,0.08478475429040357 -10125.0,0.08475547573022153 -10126.0,0.08472620728074973 -10127.0,0.0846969489384967 -10128.0,0.08466770069997212 -10129.0,0.08463846256168694 -10130.0,0.08460923452015318 -10131.0,0.08458001657188417 -10132.0,0.08455080871339445 -10133.0,0.08452161094119975 -10134.0,0.08449242325181693 -10135.0,0.08446324564176413 -10136.0,0.08443407810756069 -10137.0,0.08440492064572717 -10138.0,0.08437577325278524 -10139.0,0.08434663592525782 -10140.0,0.08431750865966908 -10141.0,0.08428839145254434 -10142.0,0.08425928430041016 -10143.0,0.0842301871997942 -10144.0,0.08420110014722541 -10145.0,0.08417202313923394 -10146.0,0.08414295617235114 -10147.0,0.08411389924310946 -10148.0,0.08408485234804265 -10149.0,0.08405581548368565 -10150.0,0.08402678864657459 -10151.0,0.0839977718332467 -10152.0,0.08396876504024055 -10153.0,0.08393976826409583 -10154.0,0.08391078150135345 -10155.0,0.08388180474855546 -10156.0,0.08385283800224516 -10157.0,0.08382388125896703 -10158.0,0.08379493451526679 -10159.0,0.08376599776769122 -10160.0,0.08373707101278843 -10161.0,0.08370815424710765 -10162.0,0.08367924746719933 -10163.0,0.08365035066961513 -10164.0,0.08362146385090781 -10165.0,0.08359258700763142 -10166.0,0.08356372013634115 -10167.0,0.08353486323359345 -10168.0,0.08350601629594581 -10169.0,0.08347717931995705 -10170.0,0.08344835230218711 -10171.0,0.08341953523919719 -10172.0,0.08339072812754957 -10173.0,0.08336193096380776 -10174.0,0.0833331437445365 -10175.0,0.08330436646630172 -10176.0,0.08327559912567042 -10177.0,0.08324684171921092 -10178.0,0.08321809424349265 -10179.0,0.08318935669508624 -10180.0,0.08316062907056357 -10181.0,0.08313191136649757 -10182.0,0.08310320357946244 -10183.0,0.08307450570603357 -10184.0,0.08304581774278753 -10185.0,0.08301713968630202 -10186.0,0.08298847153315594 -10187.0,0.08295981327992945 -10188.0,0.0829311649232038 -10189.0,0.08290252645956143 -10190.0,0.08287389788558601 -10191.0,0.08284527919786233 -10192.0,0.08281667039297644 -10193.0,0.08278807146751546 -10194.0,0.08275948241806776 -10195.0,0.08273090324122288 -10196.0,0.0827023339335716 -10197.0,0.0826737744917057 -10198.0,0.08264522491221828 -10199.0,0.0826166851917036 -10200.0,0.0825881553267571 -10201.0,0.08255963531397538 -10202.0,0.08253112514995614 -10203.0,0.08250262483129837 -10204.0,0.0824741343546022 -10205.0,0.08244565371646895 -10206.0,0.082417182913501 -10207.0,0.08238872194230204 -10208.0,0.08236027079947689 -10209.0,0.08233182948163158 -10210.0,0.08230339798537316 -10211.0,0.08227497630731002 -10212.0,0.08224656444405168 -10213.0,0.08221816239220882 -10214.0,0.08218977014839321 -10215.0,0.08216138770921791 -10216.0,0.0821330150712971 -10217.0,0.08210465223124612 -10218.0,0.08207629918568154 -10219.0,0.08204795593122098 -10220.0,0.08201962246448331 -10221.0,0.08199129878208858 -10222.0,0.081962984880658 -10223.0,0.08193468075681386 -10224.0,0.08190638640717972 -10225.0,0.08187810182838028 -10226.0,0.08184982701704142 -10227.0,0.0818215619697901 -10228.0,0.08179330668325452 -10229.0,0.08176506115406405 -10230.0,0.08173682537884924 -10231.0,0.0817085993542417 -10232.0,0.08168038307687428 -10233.0,0.08165217654338101 -10234.0,0.08162397975039706 -10235.0,0.08159579269455877 -10236.0,0.08156761537250358 -10237.0,0.08153944778087016 -10238.0,0.08151128991629833 -10239.0,0.0814831417754291 -10240.0,0.08145500335490452 -10241.0,0.08142687465136794 -10242.0,0.08139875566146379 -10243.0,0.08137064638183772 -10244.0,0.08134254680913643 -10245.0,0.08131445694000787 -10246.0,0.08128637677110113 -10247.0,0.0812583062990665 -10248.0,0.08123024552055529 -10249.0,0.0812021944322201 -10250.0,0.08117415303071462 -10251.0,0.08114612131269379 -10252.0,0.0811180992748135 -10253.0,0.08109008691373103 -10254.0,0.08106208422610466 -10255.0,0.08103409120859388 -10256.0,0.08100610785785937 -10257.0,0.08097813417056286 -10258.0,0.08095017014336732 -10259.0,0.08092221577293683 -10260.0,0.0808942710559367 -10261.0,0.08086633598903324 -10262.0,0.08083841056889404 -10263.0,0.0808104947921878 -10264.0,0.08078258865558441 -10265.0,0.0807546921557548 -10266.0,0.08072680528937115 -10267.0,0.08069892805310677 -10268.0,0.08067106044363614 -10269.0,0.08064320245763479 -10270.0,0.08061535409177949 -10271.0,0.08058751534274813 -10272.0,0.08055968620721977 -10273.0,0.08053186668187463 -10274.0,0.08050405676339396 -10275.0,0.08047625644846029 -10276.0,0.08044846573375723 -10277.0,0.08042068461596959 -10278.0,0.0803929130917832 -10279.0,0.08036515115788519 -10280.0,0.08033739881096374 -10281.0,0.08030965604770823 -10282.0,0.0802819228648091 -10283.0,0.080254199258958 -10284.0,0.08022648522684771 -10285.0,0.08019878076517219 -10286.0,0.08017108587062642 -10287.0,0.08014340053990664 -10288.0,0.0801157247697102 -10289.0,0.08008805855673559 -10290.0,0.0800604018976824 -10291.0,0.08003275478925141 -10292.0,0.08000511722814452 -10293.0,0.07997748921106476 -10294.0,0.07994987073471638 -10295.0,0.07992226179580458 -10296.0,0.07989466239103588 -10297.0,0.07986707251711787 -10298.0,0.07983949217075931 -10299.0,0.07981192134866999 -10300.0,0.07978436004756094 -10301.0,0.07975680826414433 -10302.0,0.07972926599513344 -10303.0,0.07970173323724261 -10304.0,0.07967420998718742 -10305.0,0.07964669624168456 -10306.0,0.07961919199745188 -10307.0,0.07959169725120822 -10308.0,0.07956421199967373 -10309.0,0.07953673623956958 -10310.0,0.07950926996761816 -10311.0,0.07948181318054294 -10312.0,0.07945436587506846 -10313.0,0.07942692804792052 -10314.0,0.07939949969582595 -10315.0,0.07937208081551282 -10316.0,0.07934467140371015 -10317.0,0.07931727145714827 -10318.0,0.07928988097255853 -10319.0,0.0792624999466735 -10320.0,0.07923512837622676 -10321.0,0.0792077662579531 -10322.0,0.07918041358858842 -10323.0,0.0791530703648698 -10324.0,0.07912573658353529 -10325.0,0.07909841224132423 -10326.0,0.07907109733497701 -10327.0,0.07904379186123521 -10328.0,0.07901649581684142 -10329.0,0.07898920919853944 -10330.0,0.07896193200307418 -10331.0,0.07893466422719166 -10332.0,0.07890740586763909 -10333.0,0.07888015692116467 -10334.0,0.07885291738451781 -10335.0,0.07882568725444906 -10336.0,0.07879846652771011 -10337.0,0.07877125520105362 -10338.0,0.07874405327123353 -10339.0,0.07871686073500483 -10340.0,0.07868967758912372 -10341.0,0.07866250383034736 -10342.0,0.07863533945543415 -10343.0,0.07860818446114358 -10344.0,0.07858103884423628 -10345.0,0.07855390260147393 -10346.0,0.07852677572961941 -10347.0,0.07849965822543666 -10348.0,0.07847255008569076 -10349.0,0.07844545130714796 -10350.0,0.0784183618865755 -10351.0,0.07839128182074183 -10352.0,0.0783642111064165 -10353.0,0.07833714974037023 -10354.0,0.0783100977193747 -10355.0,0.07828305504020283 -10356.0,0.07825602169962866 -10357.0,0.0782289976944273 -10358.0,0.07820198302137495 -10359.0,0.07817497767724897 -10360.0,0.07814798165882784 -10361.0,0.07812099496289114 -10362.0,0.07809401758621952 -10363.0,0.07806704952559476 -10364.0,0.07804009077779982 -10365.0,0.07801314133961872 -10366.0,0.07798620120783653 -10367.0,0.07795927037923951 -10368.0,0.07793234885061504 -10369.0,0.07790543661875153 -10370.0,0.07787853368043864 -10371.0,0.07785164003246692 -10372.0,0.07782475567162822 -10373.0,0.07779788059471543 -10374.0,0.07777101479852258 -10375.0,0.07774415827984471 -10376.0,0.07771731103547806 -10377.0,0.07769047306221996 -10378.0,0.07766364435686886 -10379.0,0.07763682491622421 -10380.0,0.07761001473708672 -10381.0,0.0775832138162581 -10382.0,0.07755642215054125 -10383.0,0.07752963973674001 -10384.0,0.07750286657165953 -10385.0,0.07747610265210592 -10386.0,0.07744934797488644 -10387.0,0.0774226025368095 -10388.0,0.07739586633468451 -10389.0,0.07736913936532205 -10390.0,0.07734242162553379 -10391.0,0.07731571311213253 -10392.0,0.07728901382193208 -10393.0,0.07726232375174745 -10394.0,0.07723564289839469 -10395.0,0.07720897125869101 -10396.0,0.07718230882945461 -10397.0,0.0771556556075049 -10398.0,0.07712901158966233 -10399.0,0.0771023767727485 -10400.0,0.07707575115358602 -10401.0,0.07704913472899864 -10402.0,0.07702252749581127 -10403.0,0.07699592945084986 -10404.0,0.07696934059094139 -10405.0,0.07694276091291405 -10406.0,0.07691619041359708 -10407.0,0.07688962908982079 -10408.0,0.07686307693841667 -10409.0,0.07683653395621715 -10410.0,0.0768100001400559 -10411.0,0.07678347548676762 -10412.0,0.07675695999318813 -10413.0,0.07673045365615429 -10414.0,0.0767039564725041 -10415.0,0.07667746843907663 -10416.0,0.07665098955271211 -10417.0,0.07662451981025173 -10418.0,0.07659805920853786 -10419.0,0.07657160774441395 -10420.0,0.07654516541472457 -10421.0,0.07651873221631528 -10422.0,0.07649230814603282 -10423.0,0.07646589320072499 -10424.0,0.07643948737724067 -10425.0,0.07641309067242989 -10426.0,0.07638670308314364 -10427.0,0.07636032460623411 -10428.0,0.07633395523855455 -10429.0,0.07630759497695928 -10430.0,0.07628124381830369 -10431.0,0.0762549017594443 -10432.0,0.07622856879723867 -10433.0,0.07620224492854555 -10434.0,0.07617593015022459 -10435.0,0.07614962445913666 -10436.0,0.07612332785214371 -10437.0,0.07609704032610877 -10438.0,0.07607076187789585 -10439.0,0.07604449250437016 -10440.0,0.07601823220239798 -10441.0,0.07599198096884664 -10442.0,0.07596573880058452 -10443.0,0.07593950569448116 -10444.0,0.07591328164740711 -10445.0,0.07588706665623407 -10446.0,0.07586086071783478 -10447.0,0.07583466382908303 -10448.0,0.07580847598685374 -10449.0,0.07578229718802287 -10450.0,0.07575612742946755 -10451.0,0.07572996670806584 -10452.0,0.07570381502069698 -10453.0,0.07567767236424126 -10454.0,0.07565153873558011 -10455.0,0.0756254141315959 -10456.0,0.07559929854917218 -10457.0,0.07557319198519356 -10458.0,0.07554709443654574 -10459.0,0.07552100590011543 -10460.0,0.07549492637279046 -10461.0,0.07546885585145975 -10462.0,0.07544279433301328 -10463.0,0.07541674181434213 -10464.0,0.07539069829233835 -10465.0,0.07536466376389518 -10466.0,0.0753386382259069 -10467.0,0.07531262167526886 -10468.0,0.07528661410887744 -10469.0,0.07526061552363013 -10470.0,0.0752346259164255 -10471.0,0.07520864528416323 -10472.0,0.07518267362374392 -10473.0,0.0751567109320694 -10474.0,0.07513075720604251 -10475.0,0.07510481244256717 -10476.0,0.07507887663854831 -10477.0,0.07505294979089201 -10478.0,0.07502703189650539 -10479.0,0.07500112295229666 -10480.0,0.074975222955175 -10481.0,0.07494933190205079 -10482.0,0.07492344978983538 -10483.0,0.07489757661544123 -10484.0,0.07487171237578191 -10485.0,0.07484585706777193 -10486.0,0.07482001068832697 -10487.0,0.07479417323436376 -10488.0,0.07476834470280008 -10489.0,0.07474252509055475 -10490.0,0.07471671439454768 -10491.0,0.07469091261169986 -10492.0,0.07466511973893333 -10493.0,0.07463933577317117 -10494.0,0.07461356071133754 -10495.0,0.07458779455035766 -10496.0,0.07456203728715786 -10497.0,0.07453628891866544 -10498.0,0.07451054944180881 -10499.0,0.07448481885351743 -10500.0,0.07445909715072187 -10501.0,0.07443338433035371 -10502.0,0.07440768038934556 -10503.0,0.07438198532463114 -10504.0,0.07435629913314523 -10505.0,0.07433062181182369 -10506.0,0.07430495335760331 -10507.0,0.07427929376742211 -10508.0,0.07425364303821905 -10509.0,0.07422800116693423 -10510.0,0.0742023681505087 -10511.0,0.07417674398588466 -10512.0,0.07415112867000531 -10513.0,0.074125522199815 -10514.0,0.07409992457225897 -10515.0,0.07407433578428367 -10516.0,0.07404875583283652 -10517.0,0.07402318471486606 -10518.0,0.07399762242732177 -10519.0,0.0739720689671543 -10520.0,0.07394652433131531 -10521.0,0.0739209885167575 -10522.0,0.07389546152043468 -10523.0,0.07386994333930158 -10524.0,0.07384443397031411 -10525.0,0.07381893341042918 -10526.0,0.07379344165660481 -10527.0,0.07376795870579995 -10528.0,0.07374248455497469 -10529.0,0.07371701920109015 -10530.0,0.07369156264110856 -10531.0,0.07366611487199304 -10532.0,0.0736406758907079 -10533.0,0.07361524569421844 -10534.0,0.0735898242794911 -10535.0,0.07356441164349317 -10536.0,0.07353900778319318 -10537.0,0.07351361269556062 -10538.0,0.07348822637756604 -10539.0,0.07346284882618108 -10540.0,0.0734374800383783 -10541.0,0.07341212001113144 -10542.0,0.07338676874141523 -10543.0,0.07336142622620546 -10544.0,0.07333609246247892 -10545.0,0.07331076744721349 -10546.0,0.07328545117738808 -10547.0,0.07326014364998268 -10548.0,0.07323484486197822 -10549.0,0.07320955481035676 -10550.0,0.07318427349210141 -10551.0,0.07315900090419632 -10552.0,0.07313373704362656 -10553.0,0.0731084819073784 -10554.0,0.07308323549243906 -10555.0,0.07305799779579689 -10556.0,0.07303276881444111 -10557.0,0.07300754854536216 -10558.0,0.07298233698555143 -10559.0,0.07295713413200136 -10560.0,0.07293193998170547 -10561.0,0.07290675453165822 -10562.0,0.0728815777788552 -10563.0,0.072856409720293 -10564.0,0.07283125035296929 -10565.0,0.07280609967388268 -10566.0,0.07278095768003293 -10567.0,0.07275582436842074 -10568.0,0.07273069973604794 -10569.0,0.07270558377991729 -10570.0,0.07268047649703266 -10571.0,0.07265537788439894 -10572.0,0.07263028793902208 -10573.0,0.07260520665790897 -10574.0,0.07258013403806762 -10575.0,0.07255507007650706 -10576.0,0.07253001477023734 -10577.0,0.07250496811626957 -10578.0,0.07247993011161581 -10579.0,0.07245490075328924 -10580.0,0.07242988003830403 -10581.0,0.07240486796367543 -10582.0,0.07237986452641962 -10583.0,0.0723548697235539 -10584.0,0.07232988355209659 -10585.0,0.07230490600906701 -10586.0,0.07227993709148552 -10587.0,0.07225497679637348 -10588.0,0.07223002512075336 -10589.0,0.07220508206164859 -10590.0,0.07218014761608363 -10591.0,0.07215522178108398 -10592.0,0.0721303045536762 -10593.0,0.07210539593088783 -10594.0,0.07208049590974744 -10595.0,0.07205560448728464 -10596.0,0.07203072166053008 -10597.0,0.0720058474265154 -10598.0,0.07198098178227334 -10599.0,0.07195612472483755 -10600.0,0.07193127625124278 -10601.0,0.07190643635852478 -10602.0,0.07188160504372038 -10603.0,0.07185678230386731 -10604.0,0.07183196813600445 -10605.0,0.07180716253717165 -10606.0,0.07178236550440978 -10607.0,0.07175757703476071 -10608.0,0.07173279712526735 -10609.0,0.07170802577297368 -10610.0,0.07168326297492467 -10611.0,0.07165850872816623 -10612.0,0.07163376302974539 -10613.0,0.07160902587671018 -10614.0,0.07158429726610963 -10615.0,0.07155957719499383 -10616.0,0.0715348656604138 -10617.0,0.07151016265942166 -10618.0,0.0714854681890705 -10619.0,0.07146078224641453 -10620.0,0.07143610482850879 -10621.0,0.07141143593240949 -10622.0,0.07138677555517382 -10623.0,0.07136212369386 -10624.0,0.07133748034552718 -10625.0,0.07131284550723563 -10626.0,0.07128821917604657 -10627.0,0.0712636013490223 -10628.0,0.07123899202322605 -10629.0,0.07121439119572211 -10630.0,0.07118979886357579 -10631.0,0.07116521502385345 -10632.0,0.07114063967362233 -10633.0,0.07111607280995082 -10634.0,0.07109151442990827 -10635.0,0.07106696453056503 -10636.0,0.07104242310899252 -10637.0,0.07101789016226306 -10638.0,0.07099336568745009 -10639.0,0.070968849681628 -10640.0,0.07094434214187226 -10641.0,0.07091984306525921 -10642.0,0.07089535244886636 -10643.0,0.07087087028977213 -10644.0,0.07084639658505601 -10645.0,0.0708219313317984 -10646.0,0.07079747452708082 -10647.0,0.07077302616798574 -10648.0,0.07074858625159669 -10649.0,0.07072415477499809 -10650.0,0.0706997317352755 -10651.0,0.07067531712951539 -10652.0,0.0706509109548053 -10653.0,0.07062651320823378 -10654.0,0.0706021238868903 -10655.0,0.07057774298786541 -10656.0,0.07055337050825065 -10657.0,0.0705290064451386 -10658.0,0.07050465079562274 -10659.0,0.07048030355679764 -10660.0,0.07045596472575887 -10661.0,0.070431634299603 -10662.0,0.07040731227542753 -10663.0,0.07038299865033106 -10664.0,0.07035869342141313 -10665.0,0.07033439658577435 -10666.0,0.07031010814051623 -10667.0,0.07028582808274135 -10668.0,0.07026155640955328 -10669.0,0.07023729311805663 -10670.0,0.07021303820535689 -10671.0,0.07018879166856067 -10672.0,0.0701645535047755 -10673.0,0.07014032371111 -10674.0,0.07011610228467371 -10675.0,0.07009188922257717 -10676.0,0.07006768452193195 -10677.0,0.0700434881798506 -10678.0,0.07001930019344671 -10679.0,0.06999512055983477 -10680.0,0.06997094927613036 -10681.0,0.06994678633945 -10682.0,0.06992263174691131 -10683.0,0.0698984854956327 -10684.0,0.06987434758273377 -10685.0,0.06985021800533502 -10686.0,0.06982609676055801 -10687.0,0.06980198384552519 -10688.0,0.06977787925736009 -10689.0,0.06975378299318723 -10690.0,0.06972969505013206 -10691.0,0.06970561542532112 -10692.0,0.06968154411588184 -10693.0,0.0696574811189427 -10694.0,0.06963342643163314 -10695.0,0.06960938005108369 -10696.0,0.06958534197442569 -10697.0,0.06956131219879162 -10698.0,0.0695372907213149 -10699.0,0.06951327753912998 -10700.0,0.06948927264937219 -10701.0,0.06946527604917796 -10702.0,0.06944128773568467 -10703.0,0.06941730770603072 -10704.0,0.06939333595735539 -10705.0,0.06936937248679909 -10706.0,0.06934541729150312 -10707.0,0.06932147036860985 -10708.0,0.06929753171526251 -10709.0,0.06927360132860544 -10710.0,0.06924967920578391 -10711.0,0.06922576534394419 -10712.0,0.06920185974023355 -10713.0,0.06917796239180017 -10714.0,0.06915407329579332 -10715.0,0.06913019244936318 -10716.0,0.06910631984966098 -10717.0,0.06908245549383883 -10718.0,0.06905859937904993 -10719.0,0.0690347515024484 -10720.0,0.06901091186118938 -10721.0,0.06898708045242895 -10722.0,0.06896325727332421 -10723.0,0.06893944232103323 -10724.0,0.06891563559271509 -10725.0,0.06889183708552976 -10726.0,0.06886804679663827 -10727.0,0.06884426472320264 -10728.0,0.06882049086238581 -10729.0,0.06879672521135179 -10730.0,0.06877296776726542 -10731.0,0.06874921852729268 -10732.0,0.06872547748860043 -10733.0,0.06870174464835657 -10734.0,0.06867802000372988 -10735.0,0.06865430355189024 -10736.0,0.06863059529000844 -10737.0,0.06860689521525626 -10738.0,0.06858320332480641 -10739.0,0.06855951961583268 -10740.0,0.06853584408550972 -10741.0,0.0685121767310133 -10742.0,0.06848851754951997 -10743.0,0.06846486653820742 -10744.0,0.06844122369425425 -10745.0,0.06841758901484006 -10746.0,0.06839396249714536 -10747.0,0.0683703441383517 -10748.0,0.06834673393564158 -10749.0,0.0683231318861985 -10750.0,0.0682995379872069 -10751.0,0.06827595223585216 -10752.0,0.0682523746293207 -10753.0,0.06822880516479989 -10754.0,0.06820524383947808 -10755.0,0.06818169065054452 -10756.0,0.06815814559518953 -10757.0,0.06813460867060434 -10758.0,0.0681110798739812 -10759.0,0.06808755920251323 -10760.0,0.06806404665339465 -10761.0,0.06804054222382054 -10762.0,0.06801704591098705 -10763.0,0.06799355771209117 -10764.0,0.06797007762433097 -10765.0,0.06794660564490541 -10766.0,0.06792314177101451 -10767.0,0.0678996859998592 -10768.0,0.06787623832864131 -10769.0,0.06785279875456375 -10770.0,0.06782936727483034 -10771.0,0.06780594388664592 -10772.0,0.06778252858721617 -10773.0,0.06775912137374786 -10774.0,0.06773572224344868 -10775.0,0.0677123311935273 -10776.0,0.0676889482211933 -10777.0,0.06766557332365727 -10778.0,0.06764220649813078 -10779.0,0.06761884774182635 -10780.0,0.06759549705195739 -10781.0,0.06757215442573836 -10782.0,0.06754881986038466 -10783.0,0.0675254933531127 -10784.0,0.0675021749011397 -10785.0,0.06747886450168399 -10786.0,0.0674555621519648 -10787.0,0.06743226784920234 -10788.0,0.06740898159061778 -10789.0,0.0673857033734332 -10790.0,0.06736243319487172 -10791.0,0.06733917105215734 -10792.0,0.06731591694251511 -10793.0,0.06729267086317092 -10794.0,0.06726943281135171 -10795.0,0.06724620278428535 -10796.0,0.06722298077920069 -10797.0,0.06719976679332747 -10798.0,0.06717656082389645 -10799.0,0.06715336286813933 -10800.0,0.0671301729232888 -10801.0,0.0671069909865784 -10802.0,0.06708381705524272 -10803.0,0.06706065112651728 -10804.0,0.06703749319763858 -10805.0,0.06701434326584403 -10806.0,0.066991201328372 -10807.0,0.06696806738246182 -10808.0,0.06694494142535379 -10809.0,0.0669218234542892 -10810.0,0.06689871346651015 -10811.0,0.06687561145925984 -10812.0,0.06685251742978238 -10813.0,0.06682943137532282 -10814.0,0.06680635329312712 -10815.0,0.06678328318044227 -10816.0,0.06676022103451615 -10817.0,0.06673716685259767 -10818.0,0.06671412063193656 -10819.0,0.0666910823697836 -10820.0,0.06666805206339052 -10821.0,0.06664502971000996 -10822.0,0.0666220153068955 -10823.0,0.0665990088513017 -10824.0,0.06657601034048405 -10825.0,0.06655301977169902 -10826.0,0.06653003714220401 -10827.0,0.0665070624492573 -10828.0,0.06648409569011823 -10829.0,0.06646113686204702 -10830.0,0.06643818596230487 -10831.0,0.06641524298815386 -10832.0,0.06639230793685708 -10833.0,0.06636938080567854 -10834.0,0.06634646159188325 -10835.0,0.06632355029273704 -10836.0,0.0663006469055068 -10837.0,0.0662777514274603 -10838.0,0.06625486385586633 -10839.0,0.0662319841879945 -10840.0,0.06620911242111548 -10841.0,0.0661862485525008 -10842.0,0.066163392579423 -10843.0,0.06614054449915553 -10844.0,0.06611770430897275 -10845.0,0.06609487200615001 -10846.0,0.06607204758796358 -10847.0,0.0660492310516907 -10848.0,0.06602642239460946 -10849.0,0.066003621613999 -10850.0,0.06598082870713935 -10851.0,0.0659580436713115 -10852.0,0.0659352665037973 -10853.0,0.06591249720187965 -10854.0,0.06588973576284232 -10855.0,0.06586698218397008 -10856.0,0.06584423646254853 -10857.0,0.06582149859586428 -10858.0,0.0657987685812049 -10859.0,0.06577604641585888 -10860.0,0.06575333209711558 -10861.0,0.06573062562226535 -10862.0,0.06570792698859951 -10863.0,0.06568523619341025 -10864.0,0.06566255323399077 -10865.0,0.06563987810763511 -10866.0,0.06561721081163828 -10867.0,0.06559455134329628 -10868.0,0.06557189969990601 -10869.0,0.06554925587876523 -10870.0,0.06552661987717275 -10871.0,0.06550399169242824 -10872.0,0.06548137132183235 -10873.0,0.06545875876268659 -10874.0,0.06543615401229345 -10875.0,0.06541355706795639 -10876.0,0.06539096792697977 -10877.0,0.06536838658666878 -10878.0,0.06534581304432971 -10879.0,0.06532324729726967 -10880.0,0.06530068934279674 -10881.0,0.06527813917821995 -10882.0,0.06525559680084918 -10883.0,0.06523306220799531 -10884.0,0.06521053539697011 -10885.0,0.06518801636508635 -10886.0,0.0651655051096576 -10887.0,0.06514300162799846 -10888.0,0.06512050591742445 -10889.0,0.065098017975252 -10890.0,0.06507553779879842 -10891.0,0.06505306538538201 -10892.0,0.06503060073232197 -10893.0,0.06500814383693848 -10894.0,0.06498569469655252 -10895.0,0.06496325330848611 -10896.0,0.06494081967006214 -10897.0,0.06491839377860449 -10898.0,0.06489597563143784 -10899.0,0.06487356522588791 -10900.0,0.0648511625592813 -10901.0,0.06482876762894553 -10902.0,0.06480638043220907 -10903.0,0.06478400096640126 -10904.0,0.0647616292288524 -10905.0,0.06473926521689369 -10906.0,0.06471690892785732 -10907.0,0.0646945603590763 -10908.0,0.06467221950788461 -10909.0,0.06464988637161716 -10910.0,0.06462756094760981 -10911.0,0.06460524323319922 -10912.0,0.06458293322572309 -10913.0,0.06456063092252 -10914.0,0.06453833632092948 -10915.0,0.06451604941829188 -10916.0,0.06449377021194858 -10917.0,0.0644714986992418 -10918.0,0.06444923487751475 -10919.0,0.06442697874411152 -10920.0,0.06440473029637707 -10921.0,0.06438248953165734 -10922.0,0.06436025644729919 -10923.0,0.06433803104065038 -10924.0,0.06431581330905954 -10925.0,0.06429360324987628 -10926.0,0.0642714008604511 -10927.0,0.06424920613813545 -10928.0,0.0642270190802816 -10929.0,0.06420483968424283 -10930.0,0.06418266794737329 -10931.0,0.06416050386702808 -10932.0,0.06413834744056315 -10933.0,0.06411619866533542 -10934.0,0.06409405753870269 -10935.0,0.06407192405802373 -10936.0,0.06404979822065811 -10937.0,0.0640276800239664 -10938.0,0.06400556946531008 -10939.0,0.0639834665420515 -10940.0,0.06396137125155399 -10941.0,0.06393928359118169 -10942.0,0.0639172035582997 -10943.0,0.06389513115027406 -10944.0,0.06387306636447172 -10945.0,0.06385100919826044 -10946.0,0.063828959649009 -10947.0,0.06380691771408706 -10948.0,0.06378488339086519 -10949.0,0.0637628566767148 -10950.0,0.0637408375690083 -10951.0,0.06371882606511896 -10952.0,0.06369682216242101 -10953.0,0.06367482585828947 -10954.0,0.06365283715010038 -10955.0,0.06363085603523067 -10956.0,0.0636088825110581 -10957.0,0.06358691657496147 -10958.0,0.06356495822432033 -10959.0,0.06354300745651523 -10960.0,0.06352106426892759 -10961.0,0.06349912865893981 -10962.0,0.06347720062393505 -10963.0,0.06345528016129749 -10964.0,0.06343336726841219 -10965.0,0.06341146194266511 -10966.0,0.06338956418144306 -10967.0,0.06336767398213383 -10968.0,0.06334579134212606 -10969.0,0.06332391625880936 -10970.0,0.06330204872957412 -10971.0,0.06328018875181174 -10972.0,0.06325833632291449 -10973.0,0.06323649144027553 -10974.0,0.06321465410128892 -10975.0,0.0631928243033496 -10976.0,0.06317100204385348 -10977.0,0.0631491873201973 -10978.0,0.06312738012977874 -10979.0,0.06310558046999633 -10980.0,0.06308378833824956 -10981.0,0.06306200373193875 -10982.0,0.06304022664846522 -10983.0,0.06301845708523104 -10984.0,0.06299669503963932 -10985.0,0.06297494050909398 -10986.0,0.06295319349099991 -10987.0,0.06293145398276277 -10988.0,0.06290972198178924 -10989.0,0.06288799748548685 -10990.0,0.06286628049126405 -10991.0,0.0628445709965301 -10992.0,0.06282286899869526 -10993.0,0.06280117449517063 -10994.0,0.0627794874833682 -10995.0,0.06275780796070092 -10996.0,0.0627361359245825 -10997.0,0.06271447137242768 -10998.0,0.06269281430165202 -10999.0,0.06267116470967202 -11000.0,0.06264952259390498 -11001.0,0.0626278879517692 -11002.0,0.0626062607806838 -11003.0,0.06258464107806887 -11004.0,0.06256302884134525 -11005.0,0.06254142406793481 -11006.0,0.06251982675526026 -11007.0,0.062498236900745206 -11008.0,0.0624766545018141 -11009.0,0.06245507955589233 -11010.0,0.06243351206040618 -11011.0,0.062411952012782816 -11012.0,0.062390399410450235 -11013.0,0.062368854250837394 -11014.0,0.06234731653137411 -11015.0,0.062325786249491096 -11016.0,0.06230426340261998 -11017.0,0.062282747988193166 -11018.0,0.062261240003644074 -11019.0,0.06223973944640694 -11020.0,0.06221824631391694 -11021.0,0.06219676060361005 -11022.0,0.06217528231292319 -11023.0,0.06215381143929418 -11024.0,0.06213234798016172 -11025.0,0.06211089193296531 -11026.0,0.062089443295145444 -11027.0,0.062068002064143445 -11028.0,0.06204656823740157 -11029.0,0.06202514181236285 -11030.0,0.062003722786471295 -11031.0,0.06198231115717179 -11032.0,0.061960906921910065 -11033.0,0.061939510078132795 -11034.0,0.06191812062328742 -11035.0,0.061896738554822375 -11036.0,0.061875363870186925 -11037.0,0.061853996566831264 -11038.0,0.06183263664220637 -11039.0,0.06181128409376418 -11040.0,0.061789938918957496 -11041.0,0.061768601115240025 -11042.0,0.06174727068006626 -11043.0,0.061725947610891674 -11044.0,0.06170463190517257 -11045.0,0.06168332356036617 -11046.0,0.06166202257393049 -11047.0,0.06164072894332451 -11048.0,0.061619442666008044 -11049.0,0.06159816373944183 -11050.0,0.061576892161087395 -11051.0,0.06155562792840721 -11052.0,0.06153437103886462 -11053.0,0.06151312148992382 -11054.0,0.061491879279049935 -11055.0,0.06147064440370886 -11056.0,0.06144941686136746 -11057.0,0.06142819664949345 -11058.0,0.06140698376555543 -11059.0,0.06138577820702281 -11060.0,0.06136457997136594 -11061.0,0.06134338905605604 -11062.0,0.0613222054585652 -11063.0,0.061301029176366324 -11064.0,0.06127986020693327 -11065.0,0.061258698547740714 -11066.0,0.061237544196264274 -11067.0,0.061216397149980326 -11068.0,0.06119525740636621 -11069.0,0.0611741249629001 -11070.0,0.061152999817061064 -11071.0,0.061131881966329044 -11072.0,0.061110771408184786 -11073.0,0.06108966814010998 -11074.0,0.06106857215958715 -11075.0,0.06104748346409974 -11076.0,0.06102640205113196 -11077.0,0.06100532791816899 -11078.0,0.060984261062696825 -11079.0,0.06096320148220237 -11080.0,0.06094214917417333 -11081.0,0.06092110413609833 -11082.0,0.06090006636546687 -11083.0,0.0608790358597693 -11084.0,0.060858012616496794 -11085.0,0.06083699663314146 -11086.0,0.060815987907196244 -11087.0,0.060794986436154975 -11088.0,0.06077399221751229 -11089.0,0.06075300524876376 -11090.0,0.060732025527405774 -11091.0,0.060711053050935625 -11092.0,0.060690087816851465 -11093.0,0.06066912982265224 -11094.0,0.060648179065837846 -11095.0,0.06062723554390901 -11096.0,0.06060629925436735 -11097.0,0.06058537019471526 -11098.0,0.060564448362456086 -11099.0,0.06054353375509401 -11100.0,0.06052262637013409 -11101.0,0.060501726205082186 -11102.0,0.06048083325744508 -11103.0,0.06045994752473039 -11104.0,0.060439069004446636 -11105.0,0.06041819769410311 -11106.0,0.06039733359121003 -11107.0,0.06037647669327848 -11108.0,0.06035562699782037 -11109.0,0.06033478450234852 -11110.0,0.06031394920437651 -11111.0,0.06029312110141887 -11112.0,0.06027230019099096 -11113.0,0.060251486470609024 -11114.0,0.06023067993779009 -11115.0,0.060209880590052105 -11116.0,0.06018908842491387 -11117.0,0.06016830343989504 -11118.0,0.06014752563251609 -11119.0,0.06012675500029839 -11120.0,0.06010599154076415 -11121.0,0.060085235251436483 -11122.0,0.06006448612983926 -11123.0,0.06004374417349727 -11124.0,0.06002300937993616 -11125.0,0.060002281746682457 -11126.0,0.05998156127126344 -11127.0,0.05996084795120733 -11128.0,0.0599401417840432 -11129.0,0.059919442767300934 -11130.0,0.05989875089851133 -11131.0,0.059878066175205934 -11132.0,0.05985738859491724 -11133.0,0.05983671815517857 -11134.0,0.05981605485352411 -11135.0,0.05979539868748883 -11136.0,0.059774749654608626 -11137.0,0.059754107752420224 -11138.0,0.05973347297846121 -11139.0,0.059712845330269965 -11140.0,0.059692224805385774 -11141.0,0.05967161140134877 -11142.0,0.05965100511569995 -11143.0,0.059630405945981076 -11144.0,0.05960981388973485 -11145.0,0.05958922894450478 -11146.0,0.05956865110783525 -11147.0,0.059548080377271474 -11148.0,0.059527516750359485 -11149.0,0.05950696022464621 -11150.0,0.059486410797679405 -11151.0,0.059465868467007695 -11152.0,0.05944533323018048 -11153.0,0.059424805084748095 -11154.0,0.05940428402826166 -11155.0,0.0593837700582732 -11156.0,0.0593632631723355 -11157.0,0.05934276336800226 -11158.0,0.059322270642828 -11159.0,0.05930178499436812 -11160.0,0.059281306420178766 -11161.0,0.059260834917817036 -11162.0,0.05924037048484082 -11163.0,0.059219913118808885 -11164.0,0.05919946281728077 -11165.0,0.059179019577816926 -11166.0,0.05915858339797862 -11167.0,0.059138154275327974 -11168.0,0.05911773220742796 -11169.0,0.05909731719184233 -11170.0,0.05907690922613574 -11171.0,0.05905650830787367 -11172.0,0.05903611443462247 -11173.0,0.05901572760394924 -11174.0,0.058995347813422014 -11175.0,0.05897497506060963 -11176.0,0.05895460934308179 -11177.0,0.05893425065840895 -11178.0,0.058913899004162516 -11179.0,0.05889355437791467 -11180.0,0.05887321677723848 -11181.0,0.05885288619970776 -11182.0,0.05883256264289724 -11183.0,0.05881224610438248 -11184.0,0.05879193658173986 -11185.0,0.05877163407254663 -11186.0,0.05875133857438079 -11187.0,0.058731050084821275 -11188.0,0.058710768601447805 -11189.0,0.05869049412184098 -11190.0,0.05867022664358214 -11191.0,0.05864996616425355 -11192.0,0.0586297126814383 -11193.0,0.058609466192720304 -11194.0,0.058589226695684254 -11195.0,0.05856899418791576 -11196.0,0.058548768667001226 -11197.0,0.05852855013052792 -11198.0,0.058508338576083875 -11199.0,0.05848813400125801 -11200.0,0.05846793640364008 -11201.0,0.05844774578082068 -11202.0,0.05842756213039116 -11203.0,0.05840738544994379 -11204.0,0.05838721573707164 -11205.0,0.058367052989368604 -11206.0,0.05834689720442944 -11207.0,0.05832674837984966 -11208.0,0.05830660651322569 -11209.0,0.058286471602154735 -11210.0,0.058266343644234886 -11211.0,0.058246222637064964 -11212.0,0.05822610857824472 -11213.0,0.05820600146537468 -11214.0,0.05818590129605624 -11215.0,0.058165808067891546 -11216.0,0.05814572177848365 -11217.0,0.0581256424254364 -11218.0,0.0581055700063545 -11219.0,0.05808550451884342 -11220.0,0.058065445960509506 -11221.0,0.058045394328959915 -11222.0,0.05802534962180264 -11223.0,0.05800531183664653 -11224.0,0.057985280971101144 -11225.0,0.057965257022777 -11226.0,0.05794523998928537 -11227.0,0.0579252298682384 -11228.0,0.057905226657248975 -11229.0,0.05788523035393089 -11230.0,0.05786524095589872 -11231.0,0.05784525846076791 -11232.0,0.05782528286615463 -11233.0,0.057805314169675985 -11234.0,0.05778535236894984 -11235.0,0.057765397461594925 -11236.0,0.05774544944523072 -11237.0,0.05772550831747758 -11238.0,0.0577055740759567 -11239.0,0.05768564671829007 -11240.0,0.05766572624210048 -11241.0,0.057645812645011556 -11242.0,0.05762590592464777 -11243.0,0.05760600607863439 -11244.0,0.05758611310459755 -11245.0,0.05756622700016408 -11246.0,0.05754634776296177 -11247.0,0.05752647539061915 -11248.0,0.05750660988076563 -11249.0,0.05748675123103134 -11250.0,0.05746689943904732 -11251.0,0.05744705450244539 -11252.0,0.05742721641885822 -11253.0,0.05740738518591923 -11254.0,0.05738756080126271 -11255.0,0.05736774326252377 -11256.0,0.05734793256733834 -11257.0,0.05732812871334309 -11258.0,0.0573083316981756 -11259.0,0.057288541519474226 -11260.0,0.05726875817487815 -11261.0,0.05724898166202738 -11262.0,0.05722921197856268 -11263.0,0.05720944912212569 -11264.0,0.057189693090358845 -11265.0,0.057169943880905426 -11266.0,0.05715020149140944 -11267.0,0.05713046591951579 -11268.0,0.05711073716287017 -11269.0,0.0570910152191191 -11270.0,0.05707130008590986 -11271.0,0.057051591760890585 -11272.0,0.05703189024171023 -11273.0,0.05701219552601857 -11274.0,0.05699250761146611 -11275.0,0.05697282649570427 -11276.0,0.056953152176385205 -11277.0,0.05693348465116194 -11278.0,0.0569138239176883 -11279.0,0.05689416997361885 -11280.0,0.05687452281660904 -11281.0,0.056854882444315115 -11282.0,0.056835248854394144 -11283.0,0.05681562204450393 -11284.0,0.056796002012303164 -11285.0,0.05677638875545132 -11286.0,0.0567567822716087 -11287.0,0.05673718255843636 -11288.0,0.056717589613596193 -11289.0,0.05669800343475093 -11290.0,0.0566784240195641 -11291.0,0.056658851365699966 -11292.0,0.05663928547082368 -11293.0,0.05661972633260118 -11294.0,0.05660017394869922 -11295.0,0.0565806283167853 -11296.0,0.056561089434527784 -11297.0,0.05654155729959584 -11298.0,0.05652203190965941 -11299.0,0.0565025132623893 -11300.0,0.056483001355457016 -11301.0,0.056463496186534956 -11302.0,0.056443997753296296 -11303.0,0.05642450605341504 -11304.0,0.05640502108456592 -11305.0,0.05638554284442456 -11306.0,0.056366071330667324 -11307.0,0.05634660654097145 -11308.0,0.05632714847301486 -11309.0,0.056307697124476384 -11310.0,0.056288252493035616 -11311.0,0.056268814576372984 -11312.0,0.05624938337216963 -11313.0,0.05622995887810758 -11314.0,0.05621054109186963 -11315.0,0.05619113001113939 -11316.0,0.056171725633601274 -11317.0,0.05615232795694043 -11318.0,0.05613293697884289 -11319.0,0.056113552696995445 -11320.0,0.05609417510908572 -11321.0,0.05607480421280207 -11322.0,0.056055440005833686 -11323.0,0.05603608248587059 -11324.0,0.05601673165060357 -11325.0,0.055997387497724184 -11326.0,0.05597805002492483 -11327.0,0.05595871922989868 -11328.0,0.055939395110339754 -11329.0,0.05592007766394277 -11330.0,0.055900766888403314 -11331.0,0.05588146278141776 -11332.0,0.055862165340683285 -11333.0,0.05584287456389781 -11334.0,0.0558235904487601 -11335.0,0.055804312992969694 -11336.0,0.05578504219422695 -11337.0,0.055765778050233014 -11338.0,0.05574652055868976 -11339.0,0.05572726971729995 -11340.0,0.055708025523767093 -11341.0,0.055688787975795524 -11342.0,0.05566955707109028 -11343.0,0.055650332807357296 -11344.0,0.05563111518230325 -11345.0,0.055611904193635646 -11346.0,0.055592699839062704 -11347.0,0.055573502116293506 -11348.0,0.05555431102303791 -11349.0,0.05553512655700657 -11350.0,0.05551594871591088 -11351.0,0.055496777497463096 -11352.0,0.055477612899376215 -11353.0,0.05545845491936405 -11354.0,0.05543930355514121 -11355.0,0.05542015880442304 -11356.0,0.05540102066492573 -11357.0,0.05538188913436624 -11358.0,0.05536276421046233 -11359.0,0.055343645890932505 -11360.0,0.0553245341734961 -11361.0,0.05530542905587324 -11362.0,0.05528633053578484 -11363.0,0.055267238610952535 -11364.0,0.05524815327909883 -11365.0,0.05522907453794697 -11366.0,0.05521000238522104 -11367.0,0.055190936818645814 -11368.0,0.05517187783594693 -11369.0,0.055152825434850804 -11370.0,0.05513377961308463 -11371.0,0.05511474036837635 -11372.0,0.05509570769845473 -11373.0,0.055076681601049324 -11374.0,0.05505766207389045 -11375.0,0.05503864911470924 -11376.0,0.05501964272123754 -11377.0,0.05500064289120805 -11378.0,0.05498164962235423 -11379.0,0.054962662912410344 -11380.0,0.05494368275911137 -11381.0,0.05492470916019313 -11382.0,0.05490574211339223 -11383.0,0.05488678161644604 -11384.0,0.05486782766709269 -11385.0,0.05484888026307111 -11386.0,0.054829939402121025 -11387.0,0.05481100508198296 -11388.0,0.054792077300398125 -11389.0,0.05477315605510861 -11390.0,0.054754241343857236 -11391.0,0.054735333164387626 -11392.0,0.05471643151444419 -11393.0,0.054697536391772064 -11394.0,0.054678647794117206 -11395.0,0.054659765719226344 -11396.0,0.05464089016484702 -11397.0,0.054622021128727466 -11398.0,0.05460315860861677 -11399.0,0.05458430260226475 -11400.0,0.05456545310742208 -11401.0,0.054546610121840075 -11402.0,0.054527773643270945 -11403.0,0.05450894366946763 -11404.0,0.054490120198183875 -11405.0,0.05447130322717413 -11406.0,0.0544524927541937 -11407.0,0.05443368877699861 -11408.0,0.05441489129334574 -11409.0,0.0543961003009926 -11410.0,0.05437731579769762 -11411.0,0.05435853778121993 -11412.0,0.054339766249319445 -11413.0,0.05432100119975689 -11414.0,0.054302242630293686 -11415.0,0.054283490538692095 -11416.0,0.05426474492271512 -11417.0,0.05424600578012658 -11418.0,0.05422727310869098 -11419.0,0.05420854690617367 -11420.0,0.05418982717034075 -11421.0,0.05417111389895913 -11422.0,0.05415240708979639 -11423.0,0.05413370674062097 -11424.0,0.05411501284920206 -11425.0,0.05409632541330964 -11426.0,0.054077644430714375 -11427.0,0.0540589698991878 -11428.0,0.05404030181650217 -11429.0,0.05402164018043052 -11430.0,0.054002984988746686 -11431.0,0.053984336239225175 -11432.0,0.05396569392964136 -11433.0,0.05394705805777135 -11434.0,0.05392842862139205 -11435.0,0.05390980561828104 -11436.0,0.05389118904621678 -11437.0,0.053872578902978425 -11438.0,0.05385397518634596 -11439.0,0.053835377894100034 -11440.0,0.05381678702402217 -11441.0,0.053798202573894595 -11442.0,0.05377962454150036 -11443.0,0.05376105292462317 -11444.0,0.053742487721047616 -11445.0,0.05372392892855899 -11446.0,0.05370537654494339 -11447.0,0.0536868305679876 -11448.0,0.053668290995479255 -11449.0,0.05364975782520671 -11450.0,0.053631231054959094 -11451.0,0.05361271068252632 -11452.0,0.05359419670569901 -11453.0,0.05357568912226859 -11454.0,0.053557187930027235 -11455.0,0.05353869312676793 -11456.0,0.05352020471028432 -11457.0,0.0535017226783709 -11458.0,0.0534832470288229 -11459.0,0.053464777759436324 -11460.0,0.05344631486800788 -11461.0,0.053427858352335114 -11462.0,0.05340940821021629 -11463.0,0.053390964439450454 -11464.0,0.05337252703783737 -11465.0,0.0533540960031776 -11466.0,0.05333567133327246 -11467.0,0.05331725302592402 -11468.0,0.05329884107893514 -11469.0,0.053280435490109364 -11470.0,0.053262036257251046 -11471.0,0.053243643378165305 -11472.0,0.05322525685065803 -11473.0,0.05320687667253579 -11474.0,0.053188502841605985 -11475.0,0.05317013535567676 -11476.0,0.05315177421255702 -11477.0,0.05313341941005637 -11478.0,0.05311507094598525 -11479.0,0.05309672881815481 -11480.0,0.053078393024376995 -11481.0,0.053060063562464434 -11482.0,0.053041740430230584 -11483.0,0.05302342362548961 -11484.0,0.0530051131460565 -11485.0,0.05298680898974688 -11486.0,0.05296851115437723 -11487.0,0.052950219637764744 -11488.0,0.05293193443772739 -11489.0,0.05291365555208389 -11490.0,0.05289538297865367 -11491.0,0.05287711671525695 -11492.0,0.05285885675971472 -11493.0,0.05284060310984871 -11494.0,0.05282235576348135 -11495.0,0.052804114718435886 -11496.0,0.052785879972536295 -11497.0,0.05276765152360733 -11498.0,0.052749429369474424 -11499.0,0.05273121350796383 -11500.0,0.05271300393690252 -11501.0,0.05269480065411826 -11502.0,0.05267660365743948 -11503.0,0.052658412944695435 -11504.0,0.0526402285137161 -11505.0,0.05262205036233221 -11506.0,0.05260387848837527 -11507.0,0.052585712889677456 -11508.0,0.05256755356407177 -11509.0,0.05254940050939194 -11510.0,0.05253125372347246 -11511.0,0.052513113204148504 -11512.0,0.05249497894925605 -11513.0,0.05247685095663184 -11514.0,0.05245872922411334 -11515.0,0.05244061374953873 -11516.0,0.05242250453074697 -11517.0,0.05240440156557777 -11518.0,0.0523863048518716 -11519.0,0.052368214387469615 -11520.0,0.05235013017021377 -11521.0,0.05233205219794675 -11522.0,0.05231398046851202 -11523.0,0.05229591497975369 -11524.0,0.05227785572951671 -11525.0,0.052259802715646744 -11526.0,0.052241755935990196 -11527.0,0.05222371538839425 -11528.0,0.05220568107070674 -11529.0,0.052187652980776336 -11530.0,0.05216963111645242 -11531.0,0.052151615475585125 -11532.0,0.05213360605602528 -11533.0,0.05211560285562452 -11534.0,0.052097605872235185 -11535.0,0.05207961510371039 -11536.0,0.05206163054790393 -11537.0,0.05204365220267039 -11538.0,0.052025680065865096 -11539.0,0.052007714135344114 -11540.0,0.05198975440896421 -11541.0,0.051971800884582926 -11542.0,0.05195385356005854 -11543.0,0.051935912433250075 -11544.0,0.05191797750201731 -11545.0,0.051900048764220684 -11546.0,0.05188212621772145 -11547.0,0.05186420986038159 -11548.0,0.051846299690063824 -11549.0,0.05182839570463157 -11550.0,0.05181049790194902 -11551.0,0.051792606279881095 -11552.0,0.051774720836293496 -11553.0,0.05175684156905256 -11554.0,0.051738968476025445 -11555.0,0.05172110155508003 -11556.0,0.05170324080408493 -11557.0,0.05168538622090945 -11558.0,0.051667537803423695 -11559.0,0.05164969554949848 -11560.0,0.05163185945700536 -11561.0,0.05161402952381659 -11562.0,0.051596205747805206 -11563.0,0.05157838812684497 -11564.0,0.05156057665881036 -11565.0,0.051542771341576615 -11566.0,0.05152497217301966 -11567.0,0.0515071791510162 -11568.0,0.05148939227344366 -11569.0,0.05147161153818021 -11570.0,0.051453836943104694 -11571.0,0.05143606848609676 -11572.0,0.051418306165036766 -11573.0,0.051400549977805805 -11574.0,0.05138279992228566 -11575.0,0.05136505599635889 -11576.0,0.05134731819790879 -11577.0,0.05132958652481938 -11578.0,0.05131186097497536 -11579.0,0.05129414154626222 -11580.0,0.05127642823656616 -11581.0,0.05125872104377412 -11582.0,0.051241019965773786 -11583.0,0.05122332500045349 -11584.0,0.05120563614570238 -11585.0,0.051187953399410305 -11586.0,0.051170276759467864 -11587.0,0.05115260622376632 -11588.0,0.05113494179019773 -11589.0,0.05111728345665485 -11590.0,0.0510996312210312 -11591.0,0.05108198508122094 -11592.0,0.05106434503511905 -11593.0,0.0510467110806212 -11594.0,0.0510290832156238 -11595.0,0.05101146143802394 -11596.0,0.05099384574571948 -11597.0,0.05097623613660902 -11598.0,0.050958632608591854 -11599.0,0.050941035159567986 -11600.0,0.05092344378743818 -11601.0,0.05090585849010393 -11602.0,0.050888279265467413 -11603.0,0.0508707061114316 -11604.0,0.050853139025900086 -11605.0,0.05083557800677727 -11606.0,0.05081802305196825 -11607.0,0.050800474159378876 -11608.0,0.050782931326915644 -11609.0,0.05076539455248584 -11610.0,0.05074786383399746 -11611.0,0.05073033916935924 -11612.0,0.05071282055648057 -11613.0,0.05069530799327163 -11614.0,0.05067780147764329 -11615.0,0.05066030100750719 -11616.0,0.050642806580775586 -11617.0,0.050625318195361556 -11618.0,0.05060783584917887 -11619.0,0.050590359540141995 -11620.0,0.05057288926616616 -11621.0,0.05055542502516726 -11622.0,0.050537966815061945 -11623.0,0.05052051463376758 -11624.0,0.05050306847920227 -11625.0,0.05048562834928478 -11626.0,0.05046819424193464 -11627.0,0.05045076615507209 -11628.0,0.05043334408661811 -11629.0,0.050415928034494344 -11630.0,0.050398517996623184 -11631.0,0.050381113970927746 -11632.0,0.050363715955331886 -11633.0,0.0503463239477601 -11634.0,0.050328937946137665 -11635.0,0.05031155794839057 -11636.0,0.05029418395244552 -11637.0,0.050276815956229876 -11638.0,0.05025945395767179 -11639.0,0.05024209795470011 -11640.0,0.05022474794524438 -11641.0,0.0502074039272349 -11642.0,0.05019006589860261 -11643.0,0.050172733857279224 -11644.0,0.05015540780119716 -11645.0,0.05013808772828957 -11646.0,0.05012077363649026 -11647.0,0.050103465523733785 -11648.0,0.050086163387955435 -11649.0,0.0500688672270912 -11650.0,0.050051577039077734 -11651.0,0.05003429282185247 -11652.0,0.05001701457335352 -11653.0,0.049999742291519746 -11654.0,0.04998247597429063 -11655.0,0.04996521561960647 -11656.0,0.04994796122540821 -11657.0,0.049930712789637545 -11658.0,0.04991347031023688 -11659.0,0.049896233785149256 -11660.0,0.049879003212318515 -11661.0,0.049861778589689175 -11662.0,0.04984455991520649 -11663.0,0.04982734718681634 -11664.0,0.049810140402465404 -11665.0,0.049792939560101036 -11666.0,0.049775744657671324 -11667.0,0.04975855569312499 -11668.0,0.04974137266441155 -11669.0,0.04972419556948119 -11670.0,0.04970702440628483 -11671.0,0.04968985917277402 -11672.0,0.04967269986690111 -11673.0,0.049655546486619115 -11674.0,0.04963839902988178 -11675.0,0.0496212574946435 -11676.0,0.04960412187885943 -11677.0,0.04958699218048542 -11678.0,0.04956986839747803 -11679.0,0.04955275052779453 -11680.0,0.04953563856939283 -11681.0,0.04951853252023164 -11682.0,0.04950143237827032 -11683.0,0.04948433814146898 -11684.0,0.04946724980778835 -11685.0,0.04945016737518994 -11686.0,0.049433090841635934 -11687.0,0.049416020205089256 -11688.0,0.049398955463513465 -11689.0,0.04938189661487287 -11690.0,0.049364843657132486 -11691.0,0.04934779658825803 -11692.0,0.04933075540621588 -11693.0,0.04931372010897316 -11694.0,0.04929669069449769 -11695.0,0.04927966716075798 -11696.0,0.04926264950572327 -11697.0,0.049245637727363435 -11698.0,0.04922863182364911 -11699.0,0.04921163179255163 -11700.0,0.049194637632043015 -11701.0,0.049177649340095955 -11702.0,0.0491606669146839 -11703.0,0.04914369035378095 -11704.0,0.049126719655361965 -11705.0,0.049109754817402415 -11706.0,0.04909279583787853 -11707.0,0.04907584271476725 -11708.0,0.04905889544604619 -11709.0,0.049041954029693635 -11710.0,0.04902501846368861 -11711.0,0.049008088746010835 -11712.0,0.04899116487464074 -11713.0,0.04897424684755937 -11714.0,0.04895733466274857 -11715.0,0.04894042831819083 -11716.0,0.048923527811869344 -11717.0,0.04890663314176803 -11718.0,0.04888974430587144 -11719.0,0.048872861302164866 -11720.0,0.0488559841286343 -11721.0,0.04883911278326644 -11722.0,0.048822247264048615 -11723.0,0.048805387568968905 -11724.0,0.04878853369601607 -11725.0,0.0487716856431796 -11726.0,0.0487548434084496 -11727.0,0.04873800698981692 -11728.0,0.04872117638527312 -11729.0,0.04870435159281044 -11730.0,0.04868753261042176 -11731.0,0.04867071943610072 -11732.0,0.04865391206784164 -11733.0,0.048637110503639516 -11734.0,0.04862031474149007 -11735.0,0.048603524779389645 -11736.0,0.04858674061533534 -11737.0,0.048569962247324926 -11738.0,0.048553189673356895 -11739.0,0.04853642289143035 -11740.0,0.048519661899545166 -11741.0,0.04850290669570187 -11742.0,0.04848615727790171 -11743.0,0.048469413644146565 -11744.0,0.048452675792439066 -11745.0,0.0484359437207825 -11746.0,0.04841921742718088 -11747.0,0.04840249690963884 -11748.0,0.04838578216616176 -11749.0,0.048369073194755696 -11750.0,0.048352369993427416 -11751.0,0.04833567256018429 -11752.0,0.04831898089303448 -11753.0,0.048302294989986776 -11754.0,0.04828561484905068 -11755.0,0.04826894046823638 -11756.0,0.04825227184555473 -11757.0,0.048235608979017276 -11758.0,0.04821895186663627 -11759.0,0.04820230050642467 -11760.0,0.04818565489639604 -11761.0,0.0481690150345647 -11762.0,0.048152380918945636 -11763.0,0.04813575254755454 -11764.0,0.048119129918407735 -11765.0,0.048102513029522266 -11766.0,0.04808590187891588 -11767.0,0.048069296464606996 -11768.0,0.04805269678461467 -11769.0,0.0480361028369587 -11770.0,0.04801951461965955 -11771.0,0.04800293213073838 -11772.0,0.047986355368217014 -11773.0,0.04796978433011795 -11774.0,0.047953219014464386 -11775.0,0.04793665941928021 -11776.0,0.04792010554259 -11777.0,0.04790355738241896 -11778.0,0.04788701493679303 -11779.0,0.04787047820373883 -11780.0,0.04785394718128366 -11781.0,0.047837421867455446 -11782.0,0.04782090226028286 -11783.0,0.04780438835779525 -11784.0,0.04778788015802262 -11785.0,0.04777137765899564 -11786.0,0.0477548808587457 -11787.0,0.047738389755304846 -11788.0,0.04772190434670583 -11789.0,0.047705424630982034 -11790.0,0.047688950606167554 -11791.0,0.047672482270297176 -11792.0,0.04765601962140633 -11793.0,0.047639562657531165 -11794.0,0.04762311137670846 -11795.0,0.0476066657769757 -11796.0,0.04759022585637105 -11797.0,0.04757379161293337 -11798.0,0.047557363044702136 -11799.0,0.047540940149717555 -11800.0,0.047524522926020496 -11801.0,0.04750811137165253 -11802.0,0.047491705484655825 -11803.0,0.04747530526307331 -11804.0,0.04745891070494856 -11805.0,0.04744252180832583 -11806.0,0.04742613857125002 -11807.0,0.04740976099176674 -11808.0,0.047393389067922266 -11809.0,0.04737702279776355 -11810.0,0.04736066217933822 -11811.0,0.04734430721069456 -11812.0,0.04732795788988154 -11813.0,0.04731161421494882 -11814.0,0.04729527618394672 -11815.0,0.04727894379492621 -11816.0,0.047262617045938975 -11817.0,0.04724629593503733 -11818.0,0.04722998046027434 -11819.0,0.04721367061970362 -11820.0,0.04719736641137955 -11821.0,0.04718106783335717 -11822.0,0.04716477488369219 -11823.0,0.04714848756044093 -11824.0,0.04713220586166047 -11825.0,0.04711592978540851 -11826.0,0.04709965932974346 -11827.0,0.04708339449272432 -11828.0,0.04706713527241085 -11829.0,0.04705088166686343 -11830.0,0.04703463367414313 -11831.0,0.04701839129231171 -11832.0,0.047002154519431516 -11833.0,0.046985923353565655 -11834.0,0.046969697792777855 -11835.0,0.046953477835132554 -11836.0,0.046937263478694785 -11837.0,0.04692105472153031 -11838.0,0.04690485156170555 -11839.0,0.0468886539972876 -11840.0,0.046872462026344174 -11841.0,0.0468562756469437 -11842.0,0.046840094857155276 -11843.0,0.04682391965504865 -11844.0,0.046807750038694224 -11845.0,0.04679158600616308 -11846.0,0.04677542755552697 -11847.0,0.04675927468485832 -11848.0,0.046743127392230216 -11849.0,0.04672698567571637 -11850.0,0.04671084953339122 -11851.0,0.04669471896332983 -11852.0,0.04667859396360797 -11853.0,0.046662474532302 -11854.0,0.046646360667489006 -11855.0,0.04663025236724672 -11856.0,0.04661414962965358 -11857.0,0.046598052452788585 -11858.0,0.046581960834731484 -11859.0,0.046565874773562665 -11860.0,0.046549794267363206 -11861.0,0.046533719314214766 -11862.0,0.046517649912199754 -11863.0,0.0465015860594012 -11864.0,0.04648552775390282 -11865.0,0.046469474993788944 -11866.0,0.04645342777714461 -11867.0,0.0464373861020555 -11868.0,0.04642134996660796 -11869.0,0.046405319368889024 -11870.0,0.04638929430698631 -11871.0,0.046373274778988165 -11872.0,0.04635726078298358 -11873.0,0.04634125231706222 -11874.0,0.04632524937931436 -11875.0,0.046309251967830964 -11876.0,0.04629326008070368 -11877.0,0.0462772737160248 -11878.0,0.04626129287188724 -11879.0,0.046245317546384605 -11880.0,0.046229347737611164 -11881.0,0.04621338344366186 -11882.0,0.04619742466263222 -11883.0,0.0461814713926185 -11884.0,0.0461655236317176 -11885.0,0.046149581378027056 -11886.0,0.0461336446296451 -11887.0,0.04611771338467056 -11888.0,0.04610178764120296 -11889.0,0.046085867397342474 -11890.0,0.046069952651189974 -11891.0,0.046054043400846886 -11892.0,0.04603813964441539 -11893.0,0.04602224137999827 -11894.0,0.04600634860569899 -11895.0,0.04599046131962165 -11896.0,0.04597457951987101 -11897.0,0.04595870320455248 -11898.0,0.04594283237177217 -11899.0,0.045926967019636764 -11900.0,0.04591110714625365 -11901.0,0.04589525274973086 -11902.0,0.04587940382817711 -11903.0,0.04586356037970169 -11904.0,0.04584772240241462 -11905.0,0.04583188989442655 -11906.0,0.04581606285384876 -11907.0,0.04580024127879323 -11908.0,0.04578442516737252 -11909.0,0.04576861451769991 -11910.0,0.04575280932788929 -11911.0,0.04573700959605525 -11912.0,0.045721215320312945 -11913.0,0.04570542649877826 -11914.0,0.045689643129567706 -11915.0,0.045673865210798456 -11916.0,0.04565809274058829 -11917.0,0.04564232571705567 -11918.0,0.04562656413831972 -11919.0,0.04561080800250021 -11920.0,0.04559505730771752 -11921.0,0.04557931205209271 -11922.0,0.0455635722337475 -11923.0,0.04554783785080423 -11924.0,0.04553210890138594 -11925.0,0.04551638538361623 -11926.0,0.04550066729561942 -11927.0,0.04548495463552046 -11928.0,0.04546924740144496 -11929.0,0.04545354559151912 -11930.0,0.045437849203869854 -11931.0,0.0454221582366247 -11932.0,0.045406472687911856 -11933.0,0.04539079255586011 -11934.0,0.045375117838598954 -11935.0,0.04535944853425851 -11936.0,0.04534378464096957 -11937.0,0.0453281261568635 -11938.0,0.04531247308007238 -11939.0,0.045296825408728904 -11940.0,0.04528118314096645 -11941.0,0.04526554627491896 -11942.0,0.0452499148087211 -11943.0,0.045234288740508145 -11944.0,0.04521866806841601 -11945.0,0.0452030527905813 -11946.0,0.04518744290514118 -11947.0,0.04517183841023351 -11948.0,0.045156239303996815 -11949.0,0.04514064558457023 -11950.0,0.04512505725009351 -11951.0,0.0451094742987071 -11952.0,0.04509389672855206 -11953.0,0.04507832453777013 -11954.0,0.04506275772450362 -11955.0,0.04504719628689553 -11956.0,0.04503164022308951 -11957.0,0.04501608953122985 -11958.0,0.04500054420946142 -11959.0,0.0449850042559298 -11960.0,0.04496946966878119 -11961.0,0.044953940446162424 -11962.0,0.044938416586221 -11963.0,0.044922898087104986 -11964.0,0.044907384946963176 -11965.0,0.04489187716394495 -11966.0,0.04487637473620037 -11967.0,0.044860877661880065 -11968.0,0.044845385939135375 -11969.0,0.04482989956611824 -11970.0,0.044814418540981275 -11971.0,0.04479894286187767 -11972.0,0.0447834725269613 -11973.0,0.04476800753438667 -11974.0,0.044752547882308945 -11975.0,0.044737093568883855 -11976.0,0.04472164459226784 -11977.0,0.04470620095061794 -11978.0,0.04469076264209186 -11979.0,0.0446753296648479 -11980.0,0.04465990201704502 -11981.0,0.04464447969684282 -11982.0,0.04462906270240153 -11983.0,0.044613651031882036 -11984.0,0.044598244683445795 -11985.0,0.044582843655254965 -11986.0,0.04456744794547232 -11987.0,0.04455205755226128 -11988.0,0.044536672473785836 -11989.0,0.04452129270821069 -11990.0,0.04450591825370114 -11991.0,0.04449054910842316 -11992.0,0.04447518527054326 -11993.0,0.04445982673822869 -11994.0,0.044444473509647274 -11995.0,0.044429125582967514 -11996.0,0.044413782956358464 -11997.0,0.044398445627989884 -11998.0,0.04438311359603215 -11999.0,0.04436778685865625 -12000.0,0.04435246541403384 -12001.0,0.044337149260337154 -12002.0,0.04432183839573909 -12003.0,0.04430653281841319 -12004.0,0.044291232526533615 -12005.0,0.04427593751827512 -12006.0,0.04426064779181314 -12007.0,0.044245363345323724 -12008.0,0.04423008417698357 -12009.0,0.04421481028496994 -12010.0,0.04419954166746079 -12011.0,0.04418427832263468 -12012.0,0.044169020248670844 -12013.0,0.04415376744374905 -12014.0,0.04413851990604977 -12015.0,0.04412327763375409 -12016.0,0.04410804062504373 -12017.0,0.044092808878101 -12018.0,0.044077582391108865 -12019.0,0.04406236116225093 -12020.0,0.0440471451897114 -12021.0,0.04403193447167516 -12022.0,0.04401672900632762 -12023.0,0.04400152879185492 -12024.0,0.04398633382644378 -12025.0,0.043971144108281554 -12026.0,0.043955959635556194 -12027.0,0.043940780406456326 -12028.0,0.04392560641917117 -12029.0,0.0439104376718906 -12030.0,0.043895274162805066 -12031.0,0.04388011589010569 -12032.0,0.043864962851984185 -12033.0,0.043849815046632934 -12034.0,0.04383467247224488 -12035.0,0.043819535127013635 -12036.0,0.04380440300913343 -12037.0,0.043789276116799114 -12038.0,0.043774154448206176 -12039.0,0.04375903800155067 -12040.0,0.043743926775029335 -12041.0,0.04372882076683952 -12042.0,0.04371371997517919 -12043.0,0.043698624398246906 -12044.0,0.0436835340342419 -12045.0,0.04366844888136398 -12046.0,0.04365336893781364 -12047.0,0.043638294201791904 -12048.0,0.043623224671500475 -12049.0,0.043608160345141686 -12050.0,0.04359310122091849 -12051.0,0.043578047297034385 -12052.0,0.04356299857169359 -12053.0,0.04354795504310089 -12054.0,0.04353291670946172 -12055.0,0.04351788356898209 -12056.0,0.043502855619868656 -12057.0,0.043487832860328715 -12058.0,0.043472815288570145 -12059.0,0.04345780290280148 -12060.0,0.04344279570123182 -12061.0,0.043427793682070934 -12062.0,0.04341279684352918 -12063.0,0.043397805183817584 -12064.0,0.04338281870114769 -12065.0,0.04336783739373175 -12066.0,0.043352861259782605 -12067.0,0.043337890297513726 -12068.0,0.04332292450513915 -12069.0,0.04330796388087358 -12070.0,0.043293008422932336 -12071.0,0.04327805812953135 -12072.0,0.043263112998887125 -12073.0,0.04324817302921684 -12074.0,0.04323323821873825 -12075.0,0.04321830856566976 -12076.0,0.04320338406823038 -12077.0,0.04318846472463969 -12078.0,0.043173550533117944 -12079.0,0.043158641491885974 -12080.0,0.04314373759916528 -12081.0,0.043128838853177885 -12082.0,0.04311394525214649 -12083.0,0.04309905679429442 -12084.0,0.043084173477845586 -12085.0,0.04306929530102449 -12086.0,0.04305442226205629 -12087.0,0.04303955435916674 -12088.0,0.04302469159058223 -12089.0,0.0430098339545297 -12090.0,0.04299498144923677 -12091.0,0.04298013407293163 -12092.0,0.04296529182384312 -12093.0,0.04295045470020063 -12094.0,0.042935622700234224 -12095.0,0.04292079582217455 -12096.0,0.042905974064252866 -12097.0,0.042891157424701065 -12098.0,0.04287634590175159 -12099.0,0.04286153949363756 -12100.0,0.04284673819859267 -12101.0,0.04283194201485126 -12102.0,0.04281715094064821 -12103.0,0.042802364974219076 -12104.0,0.042787584113799994 -12105.0,0.042772808357627735 -12106.0,0.04275803770393963 -12107.0,0.042743272150973656 -12108.0,0.04272851169696839 -12109.0,0.04271375634016305 -12110.0,0.042699006078797376 -12111.0,0.0426842609111118 -12112.0,0.04266952083534732 -12113.0,0.04265478584974556 -12114.0,0.042640055952548765 -12115.0,0.04262533114199972 -12116.0,0.042610611416341884 -12117.0,0.0425958967738193 -12118.0,0.04258118721267665 -12119.0,0.04256648273115913 -12120.0,0.04255178332751264 -12121.0,0.04253708899998364 -12122.0,0.04252239974681922 -12123.0,0.042507715566267035 -12124.0,0.04249303645657537 -12125.0,0.042478362415993134 -12126.0,0.042463693442769825 -12127.0,0.0424490295351555 -12128.0,0.0424343706914009 -12129.0,0.04241971690975732 -12130.0,0.04240506818847668 -12131.0,0.04239042452581148 -12132.0,0.042375785920014834 -12133.0,0.04236115236934048 -12134.0,0.04234652387204273 -12135.0,0.04233190042637653 -12136.0,0.04231728203059738 -12137.0,0.04230266868296143 -12138.0,0.04228806038172541 -12139.0,0.04227345712514668 -12140.0,0.04225885891148313 -12141.0,0.04224426573899333 -12142.0,0.04222967760593641 -12143.0,0.04221509451057214 -12144.0,0.042200516451160824 -12145.0,0.04218594342596342 -12146.0,0.042171375433241474 -12147.0,0.04215681247125715 -12148.0,0.04214225453827316 -12149.0,0.04212770163255286 -12150.0,0.0421131537523602 -12151.0,0.04209861089595972 -12152.0,0.042084073061616586 -12153.0,0.0420695402475965 -12154.0,0.04205501245216582 -12155.0,0.042040489673591495 -12156.0,0.04202597191014107 -12157.0,0.04201145916008265 -12158.0,0.04199695142168499 -12159.0,0.04198244869321742 -12160.0,0.04196795097294989 -12161.0,0.04195345825915289 -12162.0,0.04193897055009757 -12163.0,0.04192448784405564 -12164.0,0.041910010139299445 -12165.0,0.04189553743410186 -12166.0,0.04188106972673642 -12167.0,0.041866607015477224 -12168.0,0.041852149298599005 -12169.0,0.04183769657437702 -12170.0,0.041823248841087186 -12171.0,0.04180880609700599 -12172.0,0.04179436834041052 -12173.0,0.04177993556957847 -12174.0,0.04176550778278809 -12175.0,0.04175108497831826 -12176.0,0.041736667154448445 -12177.0,0.04172225430945873 -12178.0,0.04170784644162972 -12179.0,0.04169344354924268 -12180.0,0.04167904563057947 -12181.0,0.04166465268392251 -12182.0,0.04165026470755482 -12183.0,0.04163588169976002 -12184.0,0.04162150365882232 -12185.0,0.04160713058302656 -12186.0,0.04159276247065807 -12187.0,0.041578399320002894 -12188.0,0.041564041129347584 -12189.0,0.04154968789697933 -12190.0,0.041535339621185906 -12191.0,0.04152099630025564 -12192.0,0.04150665793247748 -12193.0,0.041492324516140974 -12194.0,0.04147799604953627 -12195.0,0.041463672530954045 -12196.0,0.041449353958685625 -12197.0,0.04143504033102292 -12198.0,0.04142073164625842 -12199.0,0.04140642790268517 -12200.0,0.04139212909859687 -12201.0,0.04137783523228777 -12202.0,0.041363546302052724 -12203.0,0.04134926230618714 -12204.0,0.04133498324298707 -12205.0,0.0413207091107491 -12206.0,0.04130643990777046 -12207.0,0.04129217563234892 -12208.0,0.041277916282782844 -12209.0,0.041263661857371216 -12210.0,0.04124941235441358 -12211.0,0.04123516777221009 -12212.0,0.041220928109061444 -12213.0,0.04120669336326896 -12214.0,0.04119246353313455 -12215.0,0.041178238616960704 -12216.0,0.04116401861305046 -12217.0,0.0411498035197075 -12218.0,0.041135593335236066 -12219.0,0.041121388057940994 -12220.0,0.04110718768612768 -12221.0,0.04109299221810212 -12222.0,0.04107880165217092 -12223.0,0.04106461598664125 -12224.0,0.04105043521982083 -12225.0,0.04103625935001803 -12226.0,0.04102208837554175 -12227.0,0.041007922294701515 -12228.0,0.04099376110580742 -12229.0,0.04097960480717012 -12230.0,0.040965453397100865 -12231.0,0.04095130687391151 -12232.0,0.0409371652359145 -12233.0,0.04092302848142279 -12234.0,0.04090889660875 -12235.0,0.040894769616210296 -12236.0,0.04088064750211844 -12237.0,0.04086653026478975 -12238.0,0.04085241790254014 -12239.0,0.04083831041368612 -12240.0,0.04082420779654479 -12241.0,0.040810110049433766 -12242.0,0.040796017170671314 -12243.0,0.040781929158576244 -12244.0,0.040767846011468 -12245.0,0.0407537677276665 -12246.0,0.040739694305492354 -12247.0,0.040725625743266686 -12248.0,0.04071156203931122 -12249.0,0.040697503191948294 -12250.0,0.04068344919950073 -12251.0,0.04066940006029203 -12252.0,0.040655355772646215 -12253.0,0.040641316334887934 -12254.0,0.040627281745342345 -12255.0,0.04061325200233524 -12256.0,0.040599227104192975 -12257.0,0.0405852070492425 -12258.0,0.04057119183581128 -12259.0,0.040557181462227435 -12260.0,0.04054317592681962 -12261.0,0.0405291752279171 -12262.0,0.04051517936384966 -12263.0,0.040501188332947705 -12264.0,0.04048720213354221 -12265.0,0.04047322076396472 -12266.0,0.04045924422254739 -12267.0,0.04044527250762287 -12268.0,0.04043130561752446 -12269.0,0.040417343550586016 -12270.0,0.040403386305141974 -12271.0,0.04038943387952731 -12272.0,0.04037548627207761 -12273.0,0.04036154348112904 -12274.0,0.040347605505018334 -12275.0,0.04033367234208275 -12276.0,0.0403197439906602 -12277.0,0.04030582044908912 -12278.0,0.04029190171570855 -12279.0,0.04027798778885806 -12280.0,0.04026407866687784 -12281.0,0.04025017434810862 -12282.0,0.040236274830891726 -12283.0,0.04022238011356905 -12284.0,0.04020849019448304 -12285.0,0.04019460507197673 -12286.0,0.04018072474439374 -12287.0,0.04016684921007826 -12288.0,0.040152978467375 -12289.0,0.040139112514629295 -12290.0,0.040125251350187054 -12291.0,0.04011139497239475 -12292.0,0.04009754337959938 -12293.0,0.040083696570148576 -12294.0,0.0400698545423905 -12295.0,0.04005601729467394 -12296.0,0.04004218482534815 -12297.0,0.04002835713276306 -12298.0,0.040014534215269106 -12299.0,0.04000071607121735 -12300.0,0.039986902698959347 -12301.0,0.039973094096847274 -12302.0,0.03995929026323387 -12303.0,0.039945491196472435 -12304.0,0.039931696894916865 -12305.0,0.039917907356921564 -12306.0,0.03990412258084155 -12307.0,0.03989034256503241 -12308.0,0.0398765673078503 -12309.0,0.0398627968076519 -12310.0,0.03984903106279451 -12311.0,0.039835270071635974 -12312.0,0.03982151383253472 -12313.0,0.039807762343849695 -12314.0,0.03979401560394047 -12315.0,0.03978027361116715 -12316.0,0.039766536363890444 -12317.0,0.03975280386047155 -12318.0,0.03973907609927231 -12319.0,0.0397253530786551 -12320.0,0.039711634796982864 -12321.0,0.039697921252619124 -12322.0,0.03968421244392792 -12323.0,0.03967050836927391 -12324.0,0.039656809027022295 -12325.0,0.03964311441553887 -12326.0,0.03962942453318992 -12327.0,0.03961573937834237 -12328.0,0.039602058949363673 -12329.0,0.039588383244621876 -12330.0,0.03957471226248553 -12331.0,0.039561046001323805 -12332.0,0.03954738445950642 -12333.0,0.03953372763540366 -12334.0,0.03952007552738634 -12335.0,0.03950642813382587 -12336.0,0.03949278545309423 -12337.0,0.03947914748356395 -12338.0,0.0394655142236081 -12339.0,0.03945188567160034 -12340.0,0.03943826182591487 -12341.0,0.03942464268492649 -12342.0,0.039411028247010545 -12343.0,0.03939741851054289 -12344.0,0.0393838134739 -12345.0,0.0393702131354589 -12346.0,0.03935661749359719 -12347.0,0.03934302654669296 -12348.0,0.039329440293124934 -12349.0,0.03931585873127237 -12350.0,0.039302281859515106 -12351.0,0.039288709676233484 -12352.0,0.039275142179808466 -12353.0,0.039261579368621534 -12354.0,0.039248021241054774 -12355.0,0.03923446779549076 -12356.0,0.03922091903031268 -12357.0,0.03920737494390427 -12358.0,0.03919383553464982 -12359.0,0.03918030080093419 -12360.0,0.03916677074114275 -12361.0,0.03915324535366148 -12362.0,0.0391397246368769 -12363.0,0.039126208589176106 -12364.0,0.0391126972089467 -12365.0,0.03909919049457689 -12366.0,0.03908568844445542 -12367.0,0.03907219105697161 -12368.0,0.039058698330515285 -12369.0,0.03904521026347689 -12370.0,0.03903172685424738 -12371.0,0.03901824810121831 -12372.0,0.039004774002781725 -12373.0,0.038991304557330284 -12374.0,0.03897783976325718 -12375.0,0.03896437961895617 -12376.0,0.038950924122821536 -12377.0,0.03893747327324815 -12378.0,0.038924027068631406 -12379.0,0.03891058550736729 -12380.0,0.038897148587852336 -12381.0,0.03888371630848358 -12382.0,0.03887028866765866 -12383.0,0.03885686566377576 -12384.0,0.03884344729523364 -12385.0,0.03883003356043154 -12386.0,0.03881662445776932 -12387.0,0.03880321998564738 -12388.0,0.03878982014246667 -12389.0,0.03877642492662866 -12390.0,0.038763034336535405 -12391.0,0.03874964837058952 -12392.0,0.03873626702719416 -12393.0,0.038722890304753003 -12394.0,0.03870951820167032 -12395.0,0.038696150716350915 -12396.0,0.03868278784720014 -12397.0,0.03866942959262393 -12398.0,0.03865607595102869 -12399.0,0.03864272692082146 -12400.0,0.03862938250040981 -12401.0,0.03861604268820183 -12402.0,0.03860270748260618 -12403.0,0.03858937688203205 -12404.0,0.038576050884889225 -12405.0,0.03856272948958802 -12406.0,0.03854941269453925 -12407.0,0.038536100498154334 -12408.0,0.03852279289884523 -12409.0,0.03850948989502445 -12410.0,0.03849619148510502 -12411.0,0.03848289766750054 -12412.0,0.038469608440625164 -12413.0,0.03845632380289359 -12414.0,0.03844304375272104 -12415.0,0.038429768288523306 -12416.0,0.03841649740871673 -12417.0,0.03840323111171818 -12418.0,0.038389969395945106 -12419.0,0.038376712259815454 -12420.0,0.03836345970174776 -12421.0,0.038350211720161086 -12422.0,0.03833696831347506 -12423.0,0.038323729480109814 -12424.0,0.03831049521848606 -12425.0,0.03829726552702505 -12426.0,0.0382840404041486 -12427.0,0.038270819848279014 -12428.0,0.03825760385783919 -12429.0,0.03824439243125255 -12430.0,0.0382311855669431 -12431.0,0.03821798326333531 -12432.0,0.03820478551885427 -12433.0,0.038191592331925574 -12434.0,0.038178403700975375 -12435.0,0.03816521962443038 -12436.0,0.0381520401007178 -12437.0,0.03813886512826543 -12438.0,0.038125694705501575 -12439.0,0.038112528830855134 -12440.0,0.03809936750275547 -12441.0,0.038086210719632564 -12442.0,0.03807305847991689 -12443.0,0.038059910782039505 -12444.0,0.03804676762443196 -12445.0,0.03803362900552638 -12446.0,0.038020494923755414 -12447.0,0.038007365377552296 -12448.0,0.03799424036535073 -12449.0,0.03798111988558501 -12450.0,0.037968003936689955 -12451.0,0.037954892517100956 -12452.0,0.03794178562525387 -12453.0,0.037928683259585164 -12454.0,0.03791558541853182 -12455.0,0.037902492100531364 -12456.0,0.03788940330402187 -12457.0,0.037876319027441915 -12458.0,0.037863239269230645 -12459.0,0.037850164027827746 -12460.0,0.03783709330167346 -12461.0,0.037824027089208505 -12462.0,0.03781096538887419 -12463.0,0.03779790819911236 -12464.0,0.03778485551836539 -12465.0,0.03777180734507617 -12466.0,0.037758763677688156 -12467.0,0.037745724514645335 -12468.0,0.03773268985439226 -12469.0,0.037719659695373935 -12470.0,0.03770663403603599 -12471.0,0.037693612874824554 -12472.0,0.037680596210186296 -12473.0,0.03766758404056844 -12474.0,0.0376545763644187 -12475.0,0.03764157318018537 -12476.0,0.03762857448631726 -12477.0,0.037615580281263744 -12478.0,0.03760259056347467 -12479.0,0.037589605331400475 -12480.0,0.03757662458349212 -12481.0,0.0375636483182011 -12482.0,0.037550676533979435 -12483.0,0.03753770922927968 -12484.0,0.03752474640255493 -12485.0,0.03751178805225885 -12486.0,0.03749883417684555 -12487.0,0.03748588477476975 -12488.0,0.037472939844486686 -12489.0,0.03745999938445213 -12490.0,0.03744706339312235 -12491.0,0.037434131868954196 -12492.0,0.037421204810405034 -12493.0,0.03740828221593275 -12494.0,0.0373953640839958 -12495.0,0.037382450413053096 -12496.0,0.03736954120156417 -12497.0,0.03735663644798903 -12498.0,0.03734373615078826 -12499.0,0.0373308403084229 -12500.0,0.03731794891935461 -12501.0,0.03730506198204552 -12502.0,0.03729217949495835 -12503.0,0.03727930145655625 -12504.0,0.037266427865303015 -12505.0,0.03725355871966289 -12506.0,0.03724069401810071 -12507.0,0.037227833759081785 -12508.0,0.03721497794107198 -12509.0,0.0372021265625377 -12510.0,0.03718927962194586 -12511.0,0.037176437117763944 -12512.0,0.03716359904845989 -12513.0,0.03715076541250223 -12514.0,0.037137936208360006 -12515.0,0.037125111434502804 -12516.0,0.03711229108940069 -12517.0,0.0370994751715243 -12518.0,0.037086663679344795 -12519.0,0.037073856611333875 -12520.0,0.03706105396596371 -12521.0,0.037048255741707066 -12522.0,0.037035461937037197 -12523.0,0.03702267255042791 -12524.0,0.03700988758035351 -12525.0,0.036997107025288835 -12526.0,0.036984330883709275 -12527.0,0.03697155915409074 -12528.0,0.036958791834909625 -12529.0,0.036946028924642896 -12530.0,0.036933270421768034 -12531.0,0.03692051632476304 -12532.0,0.03690776663210646 -12533.0,0.03689502134227732 -12534.0,0.03688228045375521 -12535.0,0.036869543965020235 -12536.0,0.036856811874553044 -12537.0,0.036844084180834756 -12538.0,0.03683136088234707 -12539.0,0.03681864197757219 -12540.0,0.03680592746499286 -12541.0,0.036793217343092294 -12542.0,0.03678051161035428 -12543.0,0.03676781026526313 -12544.0,0.03675511330630367 -12545.0,0.03674242073196122 -12546.0,0.03672973254072166 -12547.0,0.036717048731071386 -12548.0,0.03670436930149731 -12549.0,0.03669169425048688 -12550.0,0.03667902357652803 -12551.0,0.036666357278109254 -12552.0,0.036653695353719554 -12553.0,0.03664103780184847 -12554.0,0.03662838462098602 -12555.0,0.03661573580962278 -12556.0,0.036603091366249854 -12557.0,0.03659045128935886 -12558.0,0.036577815577441886 -12559.0,0.03656518422899162 -12560.0,0.03655255724250121 -12561.0,0.03653993461646439 -12562.0,0.036527316349375324 -12563.0,0.03651470243972877 -12564.0,0.03650209288601997 -12565.0,0.036489487686744725 -12566.0,0.036476886840399285 -12567.0,0.03646429034548048 -12568.0,0.03645169820048564 -12569.0,0.036439110403912615 -12570.0,0.03642652695425979 -12571.0,0.03641394785002601 -12572.0,0.036401373089710705 -12573.0,0.0363888026718138 -12574.0,0.03637623659483574 -12575.0,0.03636367485727746 -12576.0,0.036351117457640456 -12577.0,0.03633856439442672 -12578.0,0.036326015666138765 -12579.0,0.0363134712712796 -12580.0,0.036300931208352795 -12581.0,0.03628839547586239 -12582.0,0.036275864072312994 -12583.0,0.03626333699620967 -12584.0,0.036250814246058034 -12585.0,0.036238295820364225 -12586.0,0.03622578171763489 -12587.0,0.03621327193637718 -12588.0,0.03620076647509877 -12589.0,0.03618826533230784 -12590.0,0.0361757685065131 -12591.0,0.03616327599622379 -12592.0,0.03615078779994962 -12593.0,0.03613830391620084 -12594.0,0.036125824343488225 -12595.0,0.036113349080323064 -12596.0,0.03610087812521712 -12597.0,0.03608841147668271 -12598.0,0.03607594913323266 -12599.0,0.03606349109338031 -12600.0,0.036051037355639484 -12601.0,0.03603858791852455 -12602.0,0.03602614278055039 -12603.0,0.0360137019402324 -12604.0,0.03600126539608645 -12605.0,0.035988833146628964 -12606.0,0.03597640519037687 -12607.0,0.035963981525847594 -12608.0,0.035951562151559105 -12609.0,0.03593914706602983 -12610.0,0.03592673626777876 -12611.0,0.03591432975532537 -12612.0,0.03590192752718967 -12613.0,0.035889529581892135 -12614.0,0.0358771359179538 -12615.0,0.035864746533896194 -12616.0,0.03585236142824135 -12617.0,0.03583998059951181 -12618.0,0.03582760404623063 -12619.0,0.03581523176692138 -12620.0,0.035802863760108154 -12621.0,0.03579050002431551 -12622.0,0.035778140558068564 -12623.0,0.03576578535989291 -12624.0,0.03575343442831467 -12625.0,0.03574108776186048 -12626.0,0.03572874535905745 -12627.0,0.03571640721843323 -12628.0,0.03570407333851597 -12629.0,0.035691743717834346 -12630.0,0.03567941835491749 -12631.0,0.035667097248295095 -12632.0,0.03565478039649734 -12633.0,0.03564246779805493 -12634.0,0.035630159451499034 -12635.0,0.03561785535536137 -12636.0,0.035605555508174146 -12637.0,0.0355932599084701 -12638.0,0.035580968554782426 -12639.0,0.035568681445644866 -12640.0,0.035556398579591655 -12641.0,0.03554411995515756 -12642.0,0.0355318455708778 -12643.0,0.035519575425288136 -12644.0,0.035507309516924844 -12645.0,0.035495047844324674 -12646.0,0.03548279040602492 -12647.0,0.03547053720056333 -12648.0,0.03545828822647821 -12649.0,0.03544604348230833 -12650.0,0.035433802966593 -12651.0,0.035421566677871996 -12652.0,0.03540933461468562 -12653.0,0.035397106775574685 -12654.0,0.03538488315908052 -12655.0,0.035372663763744885 -12656.0,0.03536044858811013 -12657.0,0.035348237630719065 -12658.0,0.035336030890115035 -12659.0,0.03532382836484182 -12660.0,0.035311630053443774 -12661.0,0.035299435954465726 -12662.0,0.035287246066453004 -12663.0,0.03527506038795147 -12664.0,0.035262878917507415 -12665.0,0.035250701653667706 -12666.0,0.035238528594979675 -12667.0,0.03522635973999119 -12668.0,0.03521419508725056 -12669.0,0.03520203463530664 -12670.0,0.03518987838270879 -12671.0,0.03517772632800686 -12672.0,0.03516557846975118 -12673.0,0.0351534348064926 -12674.0,0.03514129533678248 -12675.0,0.03512916005917268 -12676.0,0.035117028972215525 -12677.0,0.03510490207446387 -12678.0,0.03509277936447108 -12679.0,0.035080660840791006 -12680.0,0.03506854650197797 -12681.0,0.03505643634658684 -12682.0,0.03504433037317295 -12683.0,0.03503222858029216 -12684.0,0.03502013096650082 -12685.0,0.03500803753035575 -12686.0,0.0349959482704143 -12687.0,0.03498386318523431 -12688.0,0.034971782273374136 -12689.0,0.03495970553339258 -12690.0,0.034947632963849 -12691.0,0.034935564563303205 -12692.0,0.034923500330315556 -12693.0,0.03491144026344685 -12694.0,0.034899384361258404 -12695.0,0.034887332622312056 -12696.0,0.03487528504517013 -12697.0,0.03486324162839541 -12698.0,0.03485120237055121 -12699.0,0.034839167270201345 -12700.0,0.03482713632591011 -12701.0,0.03481510953624232 -12702.0,0.03480308689976323 -12703.0,0.03479106841503866 -12704.0,0.034779054080634864 -12705.0,0.03476704389511865 -12706.0,0.03475503785705727 -12707.0,0.03474303596501849 -12708.0,0.03473103821757057 -12709.0,0.0347190446132823 -12710.0,0.034707055150722886 -12711.0,0.03469506982846209 -12712.0,0.03468308864507015 -12713.0,0.034671111599117815 -12714.0,0.034659138689176285 -12715.0,0.034647169913817284 -12716.0,0.03463520527161303 -12717.0,0.03462324476113625 -12718.0,0.0346112883809601 -12719.0,0.03459933612965829 -12720.0,0.03458738800580501 -12721.0,0.03457544400797493 -12722.0,0.03456350413474323 -12723.0,0.03455156838468555 -12724.0,0.03453963675637805 -12725.0,0.034527709248397376 -12726.0,0.03451578585932068 -12727.0,0.03450386658772554 -12728.0,0.034491951432190124 -12729.0,0.034480040391293015 -12730.0,0.03446813346361333 -12731.0,0.03445623064773064 -12732.0,0.03444433194222503 -12733.0,0.03443243734567708 -12734.0,0.03442054685666786 -12735.0,0.03440866047377889 -12736.0,0.03439677819559223 -12737.0,0.03438490002069042 -12738.0,0.03437302594765646 -12739.0,0.034361155975073894 -12740.0,0.03434929010152668 -12741.0,0.03433742832559932 -12742.0,0.034325570645876796 -12743.0,0.03431371706094458 -12744.0,0.03430186756938861 -12745.0,0.034290022169795334 -12746.0,0.034278180860751684 -12747.0,0.03426634364084508 -12748.0,0.034254510508663426 -12749.0,0.034242681462795105 -12750.0,0.03423085650182901 -12751.0,0.03421903562435453 -12752.0,0.03420721882896147 -12753.0,0.03419540611424021 -12754.0,0.034183597478781566 -12755.0,0.03417179292117687 -12756.0,0.034159992440017904 -12757.0,0.03414819603389695 -12758.0,0.03413640370140681 -12759.0,0.03412461544114073 -12760.0,0.034112831251692476 -12761.0,0.03410105113165624 -12762.0,0.034089275079626766 -12763.0,0.03407750309419925 -12764.0,0.0340657351739694 -12765.0,0.034053971317533356 -12766.0,0.03404221152348779 -12767.0,0.03403045579042985 -12768.0,0.03401870411695717 -12769.0,0.03400695650166784 -12770.0,0.03399521294316046 -12771.0,0.03398347344003411 -12772.0,0.03397173799088838 -12773.0,0.03396000659432328 -12774.0,0.033948279248939346 -12775.0,0.0339365559533376 -12776.0,0.03392483670611954 -12777.0,0.03391312150588715 -12778.0,0.033901410351242875 -12779.0,0.033889703240789666 -12780.0,0.03387800017313095 -12781.0,0.033866301146870656 -12782.0,0.03385460616061315 -12783.0,0.03384291521296331 -12784.0,0.03383122830252649 -12785.0,0.03381954542790855 -12786.0,0.03380786658771578 -12787.0,0.03379619178055498 -12788.0,0.033784521005033444 -12789.0,0.03377285425975895 -12790.0,0.0337611915433397 -12791.0,0.03374953285438444 -12792.0,0.03373787819150237 -12793.0,0.033726227553303186 -12794.0,0.03371458093839703 -12795.0,0.033702938345394555 -12796.0,0.033691299772906885 -12797.0,0.03367966521954562 -12798.0,0.03366803468392286 -12799.0,0.033656408164651146 -12800.0,0.033644785660343526 -12801.0,0.033633167169613516 -12802.0,0.033621552691075134 -12803.0,0.03360994222334283 -12804.0,0.033598335765031566 -12805.0,0.033586733314756784 -12806.0,0.033575134871134414 -12807.0,0.03356354043278081 -12808.0,0.033551949998312854 -12809.0,0.033540363566347896 -12810.0,0.033528781135503775 -12811.0,0.03351720270439876 -12812.0,0.033505628271651634 -12813.0,0.03349405783588167 -12814.0,0.03348249139570859 -12815.0,0.03347092894975261 -12816.0,0.03345937049663439 -12817.0,0.03344781603497511 -12818.0,0.033436265563396406 -12819.0,0.0334247190805204 -12820.0,0.03341317658496966 -12821.0,0.03340163807536726 -12822.0,0.03339010355033674 -12823.0,0.033378573008502124 -12824.0,0.03336704644848788 -12825.0,0.03335552386891899 -12826.0,0.03334400526842089 -12827.0,0.033332490645619516 -12828.0,0.03332097999914122 -12829.0,0.03330947332761289 -12830.0,0.03329797062966185 -12831.0,0.03328647190391593 -12832.0,0.0332749771490034 -12833.0,0.03326348636355302 -12834.0,0.03325199954619403 -12835.0,0.03324051669555613 -12836.0,0.03322903781026953 -12837.0,0.03321756288896483 -12838.0,0.03320609193027319 -12839.0,0.0331946249328262 -12840.0,0.03318316189525594 -12841.0,0.03317170281619494 -12842.0,0.03316024769427622 -12843.0,0.03314879652813326 -12844.0,0.03313734931640004 -12845.0,0.03312590605771097 -12846.0,0.03311446675070096 -12847.0,0.03310303139400538 -12848.0,0.0330915999862601 -12849.0,0.0330801725261014 -12850.0,0.03306874901216609 -12851.0,0.033057329443091414 -12852.0,0.033045913817515114 -12853.0,0.0330345021340754 -12854.0,0.0330230943914109 -12855.0,0.03301169058816079 -12856.0,0.03300029072296466 -12857.0,0.03298889479446261 -12858.0,0.032977502801295175 -12859.0,0.03296611474210336 -12860.0,0.03295473061552868 -12861.0,0.03294335042021308 -12862.0,0.032931974154798975 -12863.0,0.032920601817929274 -12864.0,0.03290923340824733 -12865.0,0.03289786892439699 -12866.0,0.03288650836502254 -12867.0,0.032875151728768745 -12868.0,0.032863799014280846 -12869.0,0.03285245022020457 -12870.0,0.03284110534518605 -12871.0,0.03282976438787194 -12872.0,0.032818427346909346 -12873.0,0.03280709422094585 -12874.0,0.0327957650086295 -12875.0,0.032784439708608774 -12876.0,0.03277311831953267 -12877.0,0.03276180084005061 -12878.0,0.032750487268812536 -12879.0,0.03273917760446879 -12880.0,0.032727871845670206 -12881.0,0.03271656999106811 -12882.0,0.03270527203931429 -12883.0,0.03269397798906093 -12884.0,0.03268268783896077 -12885.0,0.032671401587666966 -12886.0,0.03266011923383317 -12887.0,0.03264884077611345 -12888.0,0.032637566213162376 -12889.0,0.03262629554363499 -12890.0,0.032615028766186764 -12891.0,0.03260376587947368 -12892.0,0.03259250688215213 -12893.0,0.032581251772879 -12894.0,0.03257000055031165 -12895.0,0.0325587532131079 -12896.0,0.032547509759926006 -12897.0,0.032536270189424704 -12898.0,0.0325250345002632 -12899.0,0.032513802691101185 -12900.0,0.032502574760598736 -12901.0,0.032491350707416475 -12902.0,0.03248013053021545 -12903.0,0.032468914227657186 -12904.0,0.03245770179840363 -12905.0,0.03244649324111725 -12906.0,0.03243528855446093 -12907.0,0.03242408773709805 -12908.0,0.03241289078769241 -12909.0,0.032401697704908305 -12910.0,0.032390508487410485 -12911.0,0.032379323133864164 -12912.0,0.032368141642935014 -12913.0,0.03235696401328914 -12914.0,0.03234579024359315 -12915.0,0.03233462033251409 -12916.0,0.032323454278719486 -12917.0,0.03231229208087729 -12918.0,0.03230113373765593 -12919.0,0.03228997924772432 -12920.0,0.0322788286097518 -12921.0,0.03226768182240817 -12922.0,0.0322565388843637 -12923.0,0.03224539979428913 -12924.0,0.03223426455085566 -12925.0,0.0322231331527349 -12926.0,0.03221200559859898 -12927.0,0.03220088188712046 -12928.0,0.03218976201697236 -12929.0,0.03217864598682818 -12930.0,0.03216753379536182 -12931.0,0.03215642544124771 -12932.0,0.03214532092316068 -12933.0,0.03213422023977607 -12934.0,0.03212312338976962 -12935.0,0.032112030371817576 -12936.0,0.03210094118459661 -12937.0,0.03208985582678389 -12938.0,0.032078774297056974 -12939.0,0.032067696594093933 -12940.0,0.03205662271657328 -12941.0,0.032045552663174 -12942.0,0.032034486432575476 -12943.0,0.03202342402345761 -12944.0,0.03201236543450075 -12945.0,0.032001310664385677 -12946.0,0.03199025971179362 -12947.0,0.0319792125754063 -12948.0,0.03196816925390586 -12949.0,0.03195712974597493 -12950.0,0.03194609405029658 -12951.0,0.03193506216555431 -12952.0,0.0319240340904321 -12953.0,0.03191300982361439 -12954.0,0.03190198936378608 -12955.0,0.03189097270963248 -12956.0,0.0318799598598394 -12957.0,0.03186895081309308 -12958.0,0.03185794556808024 -12959.0,0.03184694412348801 -12960.0,0.031835946478004 -12961.0,0.03182495263031628 -12962.0,0.031813962579113376 -12963.0,0.03180297632308423 -12964.0,0.03179199386091827 -12965.0,0.03178101519130538 -12966.0,0.03177004031293587 -12967.0,0.03175906922450054 -12968.0,0.03174810192469058 -12969.0,0.031737138412197705 -12970.0,0.031726178685714035 -12971.0,0.03171522274393217 -12972.0,0.03170427058554511 -12973.0,0.03169332220924637 -12974.0,0.031682377613729884 -12975.0,0.03167143679769006 -12976.0,0.03166049975982169 -12977.0,0.03164956649882011 -12978.0,0.03163863701338104 -12979.0,0.03162771130220069 -12980.0,0.031616789363975675 -12981.0,0.03160587119740311 -12982.0,0.031594956801180525 -12983.0,0.03158404617400593 -12984.0,0.031573139314577746 -12985.0,0.03156223622159487 -12986.0,0.03155133689375664 -12987.0,0.03154044132976285 -12988.0,0.03152954952831376 -12989.0,0.031518661488110014 -12990.0,0.03150777720785278 -12991.0,0.03149689668624363 -12992.0,0.03148601992198461 -12993.0,0.03147514691377818 -12994.0,0.03146427766032728 -12995.0,0.03145341216033529 -12996.0,0.03144255041250605 -12997.0,0.0314316924155438 -12998.0,0.031420838168153276 -12999.0,0.03140998766903964 -13000.0,0.031399140916908534 -13001.0,0.03138829791046598 -13002.0,0.03137745864841851 -13003.0,0.031366623129473074 -13004.0,0.03135579135233707 -13005.0,0.03134496331571836 -13006.0,0.03133413901832521 -13007.0,0.031323318458866385 -13008.0,0.031312501636051066 -13009.0,0.03130168854858889 -13010.0,0.03129087919518991 -13011.0,0.03128007357456468 -13012.0,0.03126927168542414 -13013.0,0.03125847352647974 -13014.0,0.031247679096443298 -13015.0,0.031236888394027135 -13016.0,0.031226101417944 -13017.0,0.031215318166907098 -13018.0,0.031204538639630037 -13019.0,0.031193762834826916 -13020.0,0.031182990751212256 -13021.0,0.031172222387501038 -13022.0,0.031161457742408652 -13023.0,0.031150696814650967 -13024.0,0.031139939602944283 -13025.0,0.03112918610600534 -13026.0,0.031118436322551343 -13027.0,0.031107690251299887 -13028.0,0.031096947890969066 -13029.0,0.031086209240277385 -13030.0,0.031075474297943825 -13031.0,0.03106474306268775 -13032.0,0.03105401553322902 -13033.0,0.03104329170828792 -13034.0,0.031032571586585185 -13035.0,0.03102185516684196 -13036.0,0.031011142447779864 -13037.0,0.031000433428120953 -13038.0,0.030989728106587726 -13039.0,0.030979026481903094 -13040.0,0.03096832855279044 -13041.0,0.030957634317973586 -13042.0,0.030946943776176784 -13043.0,0.03093625692612474 -13044.0,0.03092557376654257 -13045.0,0.030914894296155862 -13046.0,0.030904218513690632 -13047.0,0.03089354641787335 -13048.0,0.030882878007430888 -13049.0,0.030872213281090598 -13050.0,0.03086155223758025 -13051.0,0.030850894875628077 -13052.0,0.030840241193962704 -13053.0,0.03082959119131324 -13054.0,0.030818944866409216 -13055.0,0.03080830221798062 -13056.0,0.030797663244757828 -13057.0,0.030787027945471706 -13058.0,0.03077639631885354 -13059.0,0.030765768363635065 -13060.0,0.030755144078548423 -13061.0,0.030744523462326222 -13062.0,0.0307339065137015 -13063.0,0.030723293231407735 -13064.0,0.030712683614178855 -13065.0,0.03070207766074918 -13066.0,0.030691475369853508 -13067.0,0.030680876740227066 -13068.0,0.03067028177060553 -13069.0,0.03065969045972497 -13070.0,0.03064910280632193 -13071.0,0.030638518809133382 -13072.0,0.030627938466896747 -13073.0,0.03061736177834984 -13074.0,0.030606788742230946 -13075.0,0.03059621935727879 -13076.0,0.03058565362223253 -13077.0,0.03057509153583172 -13078.0,0.030564533096816403 -13079.0,0.030553978303927025 -13080.0,0.03054342715590448 -13081.0,0.030532879651490107 -13082.0,0.030522335789425634 -13083.0,0.030511795568453275 -13084.0,0.030501258987315656 -13085.0,0.030490726044755855 -13086.0,0.030480196739517334 -13087.0,0.030469671070344047 -13088.0,0.030459149035980355 -13089.0,0.030448630635171066 -13090.0,0.03043811586666139 -13091.0,0.030427604729197002 -13092.0,0.030417097221523998 -13093.0,0.030406593342388925 -13094.0,0.030396093090538725 -13095.0,0.030385596464720797 -13096.0,0.030375103463682978 -13097.0,0.030364614086173542 -13098.0,0.030354128330941154 -13099.0,0.030343646196734953 -13100.0,0.0303331676823045 -13101.0,0.03032269278639978 -13102.0,0.03031222150777123 -13103.0,0.030301753845169678 -13104.0,0.03029128979734642 -13105.0,0.03028082936305317 -13106.0,0.03027037254104209 -13107.0,0.030259919330065728 -13108.0,0.030249469728877106 -13109.0,0.030239023736229664 -13110.0,0.030228581350877286 -13111.0,0.030218142571574246 -13112.0,0.03020770739707528 -13113.0,0.030197275826135555 -13114.0,0.03018684785751067 -13115.0,0.030176423489956618 -13116.0,0.030166002722229864 -13117.0,0.030155585553087283 -13118.0,0.030145171981286183 -13119.0,0.030134762005584317 -13120.0,0.03012435562473982 -13121.0,0.030113952837511306 -13122.0,0.030103553642657793 -13123.0,0.03009315803893875 -13124.0,0.03008276602511403 -13125.0,0.03007237759994395 -13126.0,0.03006199276218925 -13127.0,0.030051611510611108 -13128.0,0.03004123384397109 -13129.0,0.03003085976103123 -13130.0,0.030020489260553975 -13131.0,0.030010122341302212 -13132.0,0.029999759002039217 -13133.0,0.029989399241528734 -13134.0,0.029979043058534917 -13135.0,0.029968690451822363 -13136.0,0.029958341420156055 -13137.0,0.02994799596230144 -13138.0,0.029937654077024388 -13139.0,0.02992731576309118 -13140.0,0.029916981019268544 -13141.0,0.029906649844323598 -13142.0,0.029896322237023917 -13143.0,0.0298859981961375 -13144.0,0.029875677720432765 -13145.0,0.02986536080867854 -13146.0,0.029855047459644103 -13147.0,0.02984473767209914 -13148.0,0.02983443144481379 -13149.0,0.029824128776558566 -13150.0,0.029813829666104446 -13151.0,0.029803534112222824 -13152.0,0.029793242113685524 -13153.0,0.029782953669264766 -13154.0,0.029772668777733224 -13155.0,0.029762387437863982 -13156.0,0.029752109648430555 -13157.0,0.02974183540820689 -13158.0,0.02973156471596732 -13159.0,0.029721297570486638 -13160.0,0.029711033970540045 -13161.0,0.029700773914903188 -13162.0,0.02969051740235209 -13163.0,0.029680264431663227 -13164.0,0.02967001500161351 -13165.0,0.02965976911098026 -13166.0,0.02964952675854119 -13167.0,0.02963928794307448 -13168.0,0.02962905266335871 -13169.0,0.029618820918172903 -13170.0,0.029608592706296455 -13171.0,0.029598368026509236 -13172.0,0.029588146877591506 -13173.0,0.029577929258323976 -13174.0,0.029567715167487733 -13175.0,0.02955750460386432 -13176.0,0.029547297566235694 -13177.0,0.029537094053384227 -13178.0,0.02952689406409273 -13179.0,0.02951669759714439 -13180.0,0.02950650465132286 -13181.0,0.02949631522541219 -13182.0,0.029486129318196875 -13183.0,0.029475946928461783 -13184.0,0.029465768054992236 -13185.0,0.029455592696573975 -13186.0,0.029445420851993167 -13187.0,0.029435252520036356 -13188.0,0.02942508769949055 -13189.0,0.029414926389143156 -13190.0,0.029404768587782022 -13191.0,0.029394614294195365 -13192.0,0.02938446350717187 -13193.0,0.02937431622550062 -13194.0,0.029364172447971116 -13195.0,0.029354032173373297 -13196.0,0.02934389540049747 -13197.0,0.02933376212813441 -13198.0,0.029323632355075287 -13199.0,0.029313506080111712 -13200.0,0.029303383302035666 -13201.0,0.029293264019639585 -13202.0,0.029283148231716315 -13203.0,0.029273035937059128 -13204.0,0.02926292713446168 -13205.0,0.02925282182271807 -13206.0,0.02924272000062281 -13207.0,0.029232621666970843 -13208.0,0.029222526820557482 -13209.0,0.0292124354601785 -13210.0,0.029202347584630074 -13211.0,0.0291922631927088 -13212.0,0.029182182283211663 -13213.0,0.0291721048549361 -13214.0,0.029162030906679934 -13215.0,0.02915196043724143 -13216.0,0.029141893445419263 -13217.0,0.02913182993001249 -13218.0,0.029121769889820612 -13219.0,0.02911171332364355 -13220.0,0.029101660230281635 -13221.0,0.029091610608535583 -13222.0,0.02908156445720656 -13223.0,0.029071521775096136 -13224.0,0.029061482561006304 -13225.0,0.029051446813739428 -13226.0,0.029041414532098332 -13227.0,0.029031385714886244 -13228.0,0.029021360360906804 -13229.0,0.02901133846896404 -13230.0,0.029001320037862422 -13231.0,0.028991305066406826 -13232.0,0.02898129355340254 -13233.0,0.028971285497655277 -13234.0,0.02896128089797112 -13235.0,0.02895127975315661 -13236.0,0.02894128206201868 -13237.0,0.028931287823364692 -13238.0,0.028921297036002384 -13239.0,0.028911309698739934 -13240.0,0.02890132581038593 -13241.0,0.02889134536974938 -13242.0,0.028881368375639663 -13243.0,0.028871394826866608 -13244.0,0.028861424722240448 -13245.0,0.028851458060571832 -13246.0,0.02884149484067178 -13247.0,0.028831535061351776 -13248.0,0.02882157872142368 -13249.0,0.02881162581969979 -13250.0,0.028801676354992777 -13251.0,0.028791730326115747 -13252.0,0.028781787731882218 -13253.0,0.028771848571106106 -13254.0,0.028761912842601756 -13255.0,0.028751980545183884 -13256.0,0.02874205167766765 -13257.0,0.028732126238868613 -13258.0,0.028722204227602754 -13259.0,0.028712285642686425 -13260.0,0.02870237048293642 -13261.0,0.028692458747169938 -13262.0,0.028682550434204587 -13263.0,0.02867264554285836 -13264.0,0.028662744071949683 -13265.0,0.028652846020297384 -13266.0,0.028642951386720714 -13267.0,0.028633060170039283 -13268.0,0.02862317236907316 -13269.0,0.028613287982642795 -13270.0,0.02860340700956906 -13271.0,0.02859352944867324 -13272.0,0.028583655298776982 -13273.0,0.02857378455870239 -13274.0,0.028563917227271956 -13275.0,0.028554053303308586 -13276.0,0.02854419278563557 -13277.0,0.028534335673076627 -13278.0,0.028524481964455877 -13279.0,0.028514631658597855 -13280.0,0.02850478475432747 -13281.0,0.028494941250470068 -13282.0,0.02848510114585139 -13283.0,0.0284752644392976 -13284.0,0.02846543112963522 -13285.0,0.028455601215691222 -13286.0,0.02844577469629297 -13287.0,0.028435951570268247 -13288.0,0.028426131836445195 -13289.0,0.028416315493652408 -13290.0,0.028406502540718866 -13291.0,0.02839669297647396 -13292.0,0.028386886799747484 -13293.0,0.028377084009369613 -13294.0,0.02836728460417096 -13295.0,0.028357488582982524 -13296.0,0.028347695944635726 -13297.0,0.028337906687962346 -13298.0,0.028328120811794616 -13299.0,0.02831833831496515 -13300.0,0.028308559196306978 -13301.0,0.028298783454653496 -13302.0,0.028289011088838547 -13303.0,0.028279242097696358 -13304.0,0.02826947648006157 -13305.0,0.02825971423476919 -13306.0,0.028249955360654666 -13307.0,0.02824019985655384 -13308.0,0.028230447721302943 -13309.0,0.02822069895373864 -13310.0,0.02821095355269794 -13311.0,0.028201211517018304 -13312.0,0.02819147284553758 -13313.0,0.028181737537094024 -13314.0,0.02817200559052626 -13315.0,0.028162277004673355 -13316.0,0.02815255177837475 -13317.0,0.028142829910470322 -13318.0,0.02813311139980029 -13319.0,0.028123396245205316 -13320.0,0.028113684445526463 -13321.0,0.028103975999605187 -13322.0,0.02809427090628332 -13323.0,0.028084569164403127 -13324.0,0.028074870772807264 -13325.0,0.02806517573033878 -13326.0,0.02805548403584114 -13327.0,0.02804579568815817 -13328.0,0.02803611068613414 -13329.0,0.02802642902861369 -13330.0,0.028016750714441884 -13331.0,0.02800707574246415 -13332.0,0.02799740411152634 -13333.0,0.027987735820474705 -13334.0,0.0279780708681559 -13335.0,0.027968409253416936 -13336.0,0.02795875097510527 -13337.0,0.02794909603206874 -13338.0,0.02793944442315559 -13339.0,0.027929796147214435 -13340.0,0.027920151203094313 -13341.0,0.027910509589644656 -13342.0,0.027900871305715298 -13343.0,0.027891236350156442 -13344.0,0.02788160472181872 -13345.0,0.027871976419553145 -13346.0,0.027862351442211133 -13347.0,0.02785272978864451 -13348.0,0.02784311145770545 -13349.0,0.027833496448246578 -13350.0,0.027823884759120888 -13351.0,0.02781427638918179 -13352.0,0.02780467133728305 -13353.0,0.027795069602278864 -13354.0,0.02778547118302382 -13355.0,0.027775876078372907 -13356.0,0.027766284287181475 -13357.0,0.02775669580830531 -13358.0,0.027747110640600564 -13359.0,0.027737528782923824 -13360.0,0.027727950234132007 -13361.0,0.02771837499308248 -13362.0,0.027708803058632988 -13363.0,0.027699234429641666 -13364.0,0.02768966910496706 -13365.0,0.027680107083468068 -13366.0,0.02767054836400403 -13367.0,0.027660992945434656 -13368.0,0.027651440826620067 -13369.0,0.02764189200642074 -13370.0,0.027632346483697584 -13371.0,0.027622804257311888 -13372.0,0.027613265326125343 -13373.0,0.027603729689000003 -13374.0,0.027594197344798347 -13375.0,0.027584668292383235 -13376.0,0.027575142530617935 -13377.0,0.027565620058366068 -13378.0,0.02755610087449168 -13379.0,0.02754658497785921 -13380.0,0.027537072367333486 -13381.0,0.027527563041779703 -13382.0,0.02751805700006348 -13383.0,0.027508554241050812 -13384.0,0.02749905476360809 -13385.0,0.02748955856660211 -13386.0,0.02748006564890002 -13387.0,0.027470576009369394 -13388.0,0.02746108964687819 -13389.0,0.027451606560294765 -13390.0,0.02744212674848783 -13391.0,0.02743265021032653 -13392.0,0.02742317694468038 -13393.0,0.0274137069504193 -13394.0,0.02740424022641356 -13395.0,0.02739477677153387 -13396.0,0.027385316584651303 -13397.0,0.02737585966463734 -13398.0,0.02736640601036382 -13399.0,0.027356955620702998 -13400.0,0.027347508494527512 -13401.0,0.027338064630710392 -13402.0,0.02732862402812506 -13403.0,0.027319186685645303 -13404.0,0.027309752602145326 -13405.0,0.027300321776499707 -13406.0,0.027290894207583433 -13407.0,0.02728146989427184 -13408.0,0.027272048835440686 -13409.0,0.02726263102996611 -13410.0,0.027253216476724646 -13411.0,0.027243805174593183 -13412.0,0.027234397122449037 -13413.0,0.02722499231916989 -13414.0,0.027215590763633835 -13415.0,0.027206192454719304 -13416.0,0.027196797391305167 -13417.0,0.027187405572270656 -13418.0,0.02717801699649541 -13419.0,0.027168631662859415 -13420.0,0.027159249570243085 -13421.0,0.0271498707175272 -13422.0,0.027140495103592933 -13423.0,0.027131122727321853 -13424.0,0.02712175358759588 -13425.0,0.027112387683297358 -13426.0,0.027103025013309 -13427.0,0.027093665576513923 -13428.0,0.027084309371795585 -13429.0,0.027074956398037878 -13430.0,0.027065606654125055 -13431.0,0.027056260138941773 -13432.0,0.02704691685137304 -13433.0,0.027037576790304278 -13434.0,0.027028239954621287 -13435.0,0.027018906343210265 -13436.0,0.02700957595495775 -13437.0,0.02700024878875071 -13438.0,0.02699092484347649 -13439.0,0.0269816041180228 -13440.0,0.02697228661127776 -13441.0,0.02696297232212984 -13442.0,0.02695366124946792 -13443.0,0.026944353392181257 -13444.0,0.02693504874915951 -13445.0,0.026925747319292672 -13446.0,0.026916449101471163 -13447.0,0.02690715409458578 -13448.0,0.0268978622975277 -13449.0,0.02688857370918846 -13450.0,0.02687928832846001 -13451.0,0.026870006154234672 -13452.0,0.02686072718540516 -13453.0,0.026851451420864543 -13454.0,0.026842178859506294 -13455.0,0.02683290950022427 -13456.0,0.02682364334191271 -13457.0,0.026814380383466216 -13458.0,0.026805120623779783 -13459.0,0.0267958640617488 -13460.0,0.026786610696269017 -13461.0,0.026777360526236596 -13462.0,0.02676811355054803 -13463.0,0.026758869768100237 -13464.0,0.026749629177790498 -13465.0,0.02674039177851649 -13466.0,0.02673115756917624 -13467.0,0.02672192654866818 -13468.0,0.026712698715891117 -13469.0,0.026703474069744257 -13470.0,0.026694252609127132 -13471.0,0.02668503433293971 -13472.0,0.026675819240082315 -13473.0,0.026666607329455663 -13474.0,0.02665739859996082 -13475.0,0.02664819305049926 -13476.0,0.026638990679972833 -13477.0,0.026629791487283762 -13478.0,0.026620595471334656 -13479.0,0.026611402631028482 -13480.0,0.026602212965268608 -13481.0,0.026593026472958775 -13482.0,0.026583843153003113 -13483.0,0.0265746630043061 -13484.0,0.026565486025772612 -13485.0,0.026556312216307915 -13486.0,0.02654714157481764 -13487.0,0.026537974100207785 -13488.0,0.026528809791384743 -13489.0,0.026519648647255277 -13490.0,0.026510490666726543 -13491.0,0.026501335848706037 -13492.0,0.026492184192101666 -13493.0,0.02648303569582171 -13494.0,0.026473890358774826 -13495.0,0.026464748179870018 -13496.0,0.02645560915801671 -13497.0,0.026446473292124673 -13498.0,0.02643734058110407 -13499.0,0.026428211023865448 -13500.0,0.026419084619319695 -13501.0,0.026409961366378104 -13502.0,0.02640084126395234 -13503.0,0.026391724310954455 -13504.0,0.026382610506296835 -13505.0,0.026373499848892288 -13506.0,0.026364392337653975 -13507.0,0.026355287971495445 -13508.0,0.026346186749330595 -13509.0,0.026337088670073724 -13510.0,0.026327993732639502 -13511.0,0.026318901935942975 -13512.0,0.02630981327889954 -13513.0,0.026300727760424993 -13514.0,0.026291645379435503 -13515.0,0.026282566134847606 -13516.0,0.026273490025578224 -13517.0,0.026264417050544622 -13518.0,0.026255347208664473 -13519.0,0.026246280498855808 -13520.0,0.026237216920037047 -13521.0,0.026228156471126952 -13522.0,0.026219099151044683 -13523.0,0.026210044958709773 -13524.0,0.026200993893042132 -13525.0,0.02619194595296201 -13526.0,0.026182901137390063 -13527.0,0.02617385944524732 -13528.0,0.026164820875455172 -13529.0,0.02615578542693537 -13530.0,0.026146753098610056 -13531.0,0.026137723889401745 -13532.0,0.026128697798233326 -13533.0,0.02611967482402803 -13534.0,0.026110654965709492 -13535.0,0.026101638222201712 -13536.0,0.026092624592429055 -13537.0,0.026083614075316276 -13538.0,0.026074606669788458 -13539.0,0.026065602374771096 -13540.0,0.026056601189190048 -13541.0,0.026047603111971542 -13542.0,0.026038608142042157 -13543.0,0.02602961627832887 -13544.0,0.026020627519759008 -13545.0,0.0260116418652603 -13546.0,0.026002659313760796 -13547.0,0.025993679864188952 -13548.0,0.02598470351547359 -13549.0,0.0259757302665439 -13550.0,0.025966760116329427 -13551.0,0.0259577930637601 -13552.0,0.025948829107766223 -13553.0,0.025939868247278456 -13554.0,0.025930910481227847 -13555.0,0.025921955808545775 -13556.0,0.025913004228164022 -13557.0,0.025904055739014737 -13558.0,0.02589511034003044 -13559.0,0.025886168030143982 -13560.0,0.025877228808288626 -13561.0,0.025868292673397988 -13562.0,0.025859359624406063 -13563.0,0.02585042966024718 -13564.0,0.025841502779856074 -13565.0,0.025832578982167828 -13566.0,0.025823658266117912 -13567.0,0.025814740630642128 -13568.0,0.02580582607467668 -13569.0,0.02579691459715812 -13570.0,0.02578800619702339 -13571.0,0.02577910087320976 -13572.0,0.025770198624654902 -13573.0,0.025761299450296836 -13574.0,0.025752403349073964 -13575.0,0.025743510319925052 -13576.0,0.02573462036178921 -13577.0,0.025725733473605933 -13578.0,0.025716849654315085 -13579.0,0.0257079689028569 -13580.0,0.025699091218171953 -13581.0,0.025690216599201208 -13582.0,0.025681345044885985 -13583.0,0.025672476554167985 -13584.0,0.025663611125989243 -13585.0,0.025654748759292183 -13586.0,0.025645889453019596 -13587.0,0.02563703320611464 -13588.0,0.0256281800175208 -13589.0,0.02561932988618198 -13590.0,0.025610482811042414 -13591.0,0.025601638791046714 -13592.0,0.02559279782513986 -13593.0,0.02558395991226717 -13594.0,0.02557512505137436 -13595.0,0.025566293241407488 -13596.0,0.025557464481313002 -13597.0,0.025548638770037668 -13598.0,0.025539816106528657 -13599.0,0.025530996489733487 -13600.0,0.025522179918600053 -13601.0,0.025513366392076586 -13602.0,0.025504555909111697 -13603.0,0.02549574846865437 -13604.0,0.02548694406965395 -13605.0,0.02547814271106011 -13606.0,0.025469344391822926 -13607.0,0.02546054911089282 -13608.0,0.0254517568672206 -13609.0,0.02544296765975738 -13610.0,0.02543418148745469 -13611.0,0.025425398349264404 -13612.0,0.025416618244138756 -13613.0,0.025407841171030354 -13614.0,0.025399067128892137 -13615.0,0.025390296116677435 -13616.0,0.02538152813333993 -13617.0,0.025372763177833678 -13618.0,0.02536400124911306 -13619.0,0.025355242346132855 -13620.0,0.025346486467848185 -13621.0,0.025337733613214557 -13622.0,0.025328983781187787 -13623.0,0.025320236970724105 -13624.0,0.025311493180780072 -13625.0,0.025302752410312636 -13626.0,0.02529401465827906 -13627.0,0.025285279923637 -13628.0,0.025276548205344477 -13629.0,0.025267819502359855 -13630.0,0.025259093813641876 -13631.0,0.025250371138149603 -13632.0,0.0252416514748425 -13633.0,0.02523293482268037 -13634.0,0.025224221180623393 -13635.0,0.025215510547632075 -13636.0,0.025206802922667314 -13637.0,0.025198098304690348 -13638.0,0.02518939669266279 -13639.0,0.02518069808554659 -13640.0,0.025172002482304064 -13641.0,0.0251633098818979 -13642.0,0.02515462028329114 -13643.0,0.02514593368544716 -13644.0,0.025137250087329723 -13645.0,0.025128569487902933 -13646.0,0.025119891886131278 -13647.0,0.025111217280979554 -13648.0,0.025102545671412957 -13649.0,0.025093877056397026 -13650.0,0.025085211434897666 -13651.0,0.025076548805881133 -13652.0,0.02506788916831402 -13653.0,0.025059232521163304 -13654.0,0.025050578863396317 -13655.0,0.025041928193980746 -13656.0,0.02503328051188461 -13657.0,0.02502463581607631 -13658.0,0.025015994105524603 -13659.0,0.0250073553791986 -13660.0,0.02499871963606775 -13661.0,0.024990086875101878 -13662.0,0.024981457095271158 -13663.0,0.024972830295546134 -13664.0,0.02496420647489767 -13665.0,0.024955585632297012 -13666.0,0.02494696776671576 -13667.0,0.02493835287712587 -13668.0,0.024929740962499652 -13669.0,0.02492113202180975 -13670.0,0.02491252605402919 -13671.0,0.024903923058131345 -13672.0,0.024895323033089948 -13673.0,0.024886725977879057 -13674.0,0.02487813189147312 -13675.0,0.02486954077284692 -13676.0,0.024860952620975617 -13677.0,0.02485236743483468 -13678.0,0.024843785213399968 -13679.0,0.02483520595564769 -13680.0,0.024826629660554413 -13681.0,0.02481805632709702 -13682.0,0.024809485954252794 -13683.0,0.024800918540999348 -13684.0,0.024792354086314663 -13685.0,0.02478379258917704 -13686.0,0.024775234048565166 -13687.0,0.02476667846345807 -13688.0,0.024758125832835133 -13689.0,0.0247495761556761 -13690.0,0.024741029430961032 -13691.0,0.024732485657670382 -13692.0,0.024723944834784937 -13693.0,0.024715406961285852 -13694.0,0.024706872036154598 -13695.0,0.02469834005837303 -13696.0,0.02468981102692335 -13697.0,0.024681284940788115 -13698.0,0.024672761798950203 -13699.0,0.024664241600392878 -13700.0,0.02465572434409974 -13701.0,0.02464721002905475 -13702.0,0.0246386986542422 -13703.0,0.024630190218646746 -13704.0,0.024621684721253402 -13705.0,0.024613182161047516 -13706.0,0.024604682537014814 -13707.0,0.024596185848141328 -13708.0,0.024587692093413473 -13709.0,0.024579201271818004 -13710.0,0.024570713382342048 -13711.0,0.024562228423973032 -13712.0,0.024553746395698777 -13713.0,0.024545267296507436 -13714.0,0.02453679112538753 -13715.0,0.024528317881327883 -13716.0,0.02451984756331772 -13717.0,0.024511380170346587 -13718.0,0.0245029157014044 -13719.0,0.024494454155481384 -13720.0,0.024485995531568154 -13721.0,0.024477539828655654 -13722.0,0.024469087045735194 -13723.0,0.024460637181798393 -13724.0,0.02445219023583726 -13725.0,0.02444374620684413 -13726.0,0.0244353050938117 -13727.0,0.02442686689573301 -13728.0,0.024418431611601427 -13729.0,0.02440999924041069 -13730.0,0.024401569781154882 -13731.0,0.02439314323282844 -13732.0,0.024384719594426115 -13733.0,0.024376298864943042 -13734.0,0.02436788104337469 -13735.0,0.02435946612871688 -13736.0,0.024351054119965757 -13737.0,0.02434264501611784 -13738.0,0.02433423881616998 -13739.0,0.024325835519119394 -13740.0,0.02431743512396361 -13741.0,0.024309037629700526 -13742.0,0.024300643035328386 -13743.0,0.024292251339845777 -13744.0,0.024283862542251643 -13745.0,0.024275476641545238 -13746.0,0.024267093636726193 -13747.0,0.02425871352679448 -13748.0,0.024250336310750423 -13749.0,0.02424196198759466 -13750.0,0.02423359055632821 -13751.0,0.024225222015952414 -13752.0,0.024216856365468983 -13753.0,0.02420849360387993 -13754.0,0.024200133730187656 -13755.0,0.024191776743394882 -13756.0,0.024183422642504695 -13757.0,0.02417507142652049 -13758.0,0.024166723094446035 -13759.0,0.02415837764528544 -13760.0,0.024150035078043162 -13761.0,0.02414169539172397 -13762.0,0.024133358585333015 -13763.0,0.024125024657875777 -13764.0,0.024116693608358074 -13765.0,0.024108365435786087 -13766.0,0.024100040139166307 -13767.0,0.024091717717505592 -13768.0,0.02408339816981114 -13769.0,0.0240750814950905 -13770.0,0.024066767692351533 -13771.0,0.024058456760602472 -13772.0,0.024050148698851886 -13773.0,0.024041843506108693 -13774.0,0.024033541181382123 -13775.0,0.024025241723681777 -13776.0,0.024016945132017593 -13777.0,0.02400865140539986 -13778.0,0.024000360542839175 -13779.0,0.023992072543346503 -13780.0,0.023983787405933155 -13781.0,0.02397550512961077 -13782.0,0.023967225713391348 -13783.0,0.023958949156287185 -13784.0,0.023950675457310968 -13785.0,0.0239424046154757 -13786.0,0.02393413662979474 -13787.0,0.023925871499281756 -13788.0,0.023917609222950793 -13789.0,0.023909349799816217 -13790.0,0.023901093228892754 -13791.0,0.02389283950919543 -13792.0,0.02388458863973965 -13793.0,0.023876340619541143 -13794.0,0.023868095447615995 -13795.0,0.02385985312298059 -13796.0,0.023851613644651697 -13797.0,0.023843377011646398 -13798.0,0.02383514322298214 -13799.0,0.023826912277676665 -13800.0,0.023818684174748098 -13801.0,0.02381045891321488 -13802.0,0.023802236492095803 -13803.0,0.02379401691041 -13804.0,0.02378580016717691 -13805.0,0.023777586261416354 -13806.0,0.023769375192148466 -13807.0,0.023761166958393743 -13808.0,0.02375296155917297 -13809.0,0.023744758993507326 -13810.0,0.0237365592604183 -13811.0,0.02372836235892773 -13812.0,0.02372016828805777 -13813.0,0.023711977046830934 -13814.0,0.023703788634270067 -13815.0,0.023695603049398363 -13816.0,0.02368742029123932 -13817.0,0.023679240358816807 -13818.0,0.023671063251155013 -13819.0,0.023662888967278473 -13820.0,0.023654717506212064 -13821.0,0.023646548866980966 -13822.0,0.023638383048610732 -13823.0,0.023630220050127246 -13824.0,0.02362205987055672 -13825.0,0.023613902508925696 -13826.0,0.023605747964261063 -13827.0,0.023597596235590042 -13828.0,0.023589447321940207 -13829.0,0.02358130122233943 -13830.0,0.023573157935815946 -13831.0,0.023565017461398326 -13832.0,0.02355687979811548 -13833.0,0.023548744944996623 -13834.0,0.023540612901071335 -13835.0,0.023532483665369523 -13836.0,0.02352435723692144 -13837.0,0.023516233614757645 -13838.0,0.023508112797909052 -13839.0,0.02349999478540691 -13840.0,0.0234918795762828 -13841.0,0.023483767169568646 -13842.0,0.02347565756429668 -13843.0,0.02346755075949949 -13844.0,0.02345944675421 -13845.0,0.023451345547461463 -13846.0,0.02344324713828745 -13847.0,0.023435151525721887 -13848.0,0.02342705870879903 -13849.0,0.023418968686553472 -13850.0,0.023410881458020113 -13851.0,0.023402797022234214 -13852.0,0.023394715378231363 -13853.0,0.023386636525047487 -13854.0,0.02337856046171882 -13855.0,0.023370487187281956 -13856.0,0.02336241670077381 -13857.0,0.023354349001231633 -13858.0,0.02334628408769302 -13859.0,0.02333822195919586 -13860.0,0.023330162614778417 -13861.0,0.023322106053479265 -13862.0,0.023314052274337325 -13863.0,0.02330600127639182 -13864.0,0.023297953058682336 -13865.0,0.02328990762024878 -13866.0,0.0232818649601314 -13867.0,0.02327382507737074 -13868.0,0.023265787971007718 -13869.0,0.02325775364008356 -13870.0,0.023249722083639845 -13871.0,0.02324169330071844 -13872.0,0.023233667290361585 -13873.0,0.023225644051611833 -13874.0,0.02321762358351208 -13875.0,0.02320960588510552 -13876.0,0.023201590955435718 -13877.0,0.023193578793546544 -13878.0,0.02318556939848221 -13879.0,0.02317756276928726 -13880.0,0.023169558905006545 -13881.0,0.02316155780468527 -13882.0,0.02315355946736896 -13883.0,0.023145563892103486 -13884.0,0.023137571077935012 -13885.0,0.023129581023910065 -13886.0,0.023121593729075487 -13887.0,0.023113609192478467 -13888.0,0.023105627413166484 -13889.0,0.023097648390187377 -13890.0,0.023089672122589312 -13891.0,0.02308169860942079 -13892.0,0.023073727849730604 -13893.0,0.023065759842567913 -13894.0,0.023057794586982188 -13895.0,0.023049832082023238 -13896.0,0.0230418723267412 -13897.0,0.023033915320186518 -13898.0,0.023025961061409982 -13899.0,0.023018009549462714 -13900.0,0.023010060783396163 -13901.0,0.023002114762262077 -13902.0,0.022994171485112565 -13903.0,0.022986230951000056 -13904.0,0.02297829315897731 -13905.0,0.022970358108097385 -13906.0,0.022962425797413696 -13907.0,0.02295449622597998 -13908.0,0.022946569392850304 -13909.0,0.022938645297079036 -13910.0,0.022930723937720898 -13911.0,0.02292280531383093 -13912.0,0.02291488942446451 -13913.0,0.022906976268677305 -13914.0,0.02289906584552535 -13915.0,0.022891158154064985 -13916.0,0.02288325319335288 -13917.0,0.022875350962446042 -13918.0,0.022867451460401773 -13919.0,0.02285955468627773 -13920.0,0.022851660639131882 -13921.0,0.022843769318022542 -13922.0,0.022835880722008307 -13923.0,0.02282799485014814 -13924.0,0.022820111701501312 -13925.0,0.022812231275127434 -13926.0,0.0228043535700864 -13927.0,0.022796478585438477 -13928.0,0.02278860632024423 -13929.0,0.02278073677356457 -13930.0,0.022772869944460695 -13931.0,0.02276500583199416 -13932.0,0.02275714443522683 -13933.0,0.022749285753220907 -13934.0,0.02274142978503891 -13935.0,0.022733576529743657 -13936.0,0.02272572598639833 -13937.0,0.022717878154066413 -13938.0,0.022710033031811724 -13939.0,0.02270219061869838 -13940.0,0.022694350913790847 -13941.0,0.022686513916153908 -13942.0,0.022678679624852673 -13943.0,0.02267084803895255 -13944.0,0.0226630191575193 -13945.0,0.022655192979618988 -13946.0,0.022647369504318022 -13947.0,0.0226395487306831 -13948.0,0.02263173065778127 -13949.0,0.022623915284679892 -13950.0,0.022616102610446658 -13951.0,0.022608292634149554 -13952.0,0.022600485354856918 -13953.0,0.022592680771637393 -13954.0,0.022584878883559957 -13955.0,0.02257707968969391 -13956.0,0.02256928318910884 -13957.0,0.022561489380874693 -13958.0,0.02255369826406173 -13959.0,0.022545909837740533 -13960.0,0.022538124100981976 -13961.0,0.022530341052857294 -13962.0,0.022522560692438024 -13963.0,0.022514783018796034 -13964.0,0.022507008031003486 -13965.0,0.02249923572813289 -13966.0,0.02249146610925707 -13967.0,0.02248369917344917 -13968.0,0.02247593491978264 -13969.0,0.022468173347331262 -13970.0,0.02246041445516914 -13971.0,0.0224526582423707 -13972.0,0.02244490470801069 -13973.0,0.022437153851164144 -13974.0,0.02242940567090646 -13975.0,0.02242166016631333 -13976.0,0.022413917336460785 -13977.0,0.02240617718042514 -13978.0,0.02239843969728306 -13979.0,0.022390704886111525 -13980.0,0.022382972745987835 -13981.0,0.02237524327598958 -13982.0,0.022367516475194704 -13983.0,0.022359792342681453 -13984.0,0.022352070877528406 -13985.0,0.022344352078814432 -13986.0,0.022336635945618737 -13987.0,0.022328922477020847 -13988.0,0.022321211672100612 -13989.0,0.022313503529938168 -13990.0,0.022305798049614002 -13991.0,0.0222980952302089 -13992.0,0.02229039507080398 -13993.0,0.022282697570480674 -13994.0,0.022275002728320708 -13995.0,0.022267310543406152 -13996.0,0.022259621014819386 -13997.0,0.022251934141643115 -13998.0,0.022244249922960334 -13999.0,0.022236568357854373 -14000.0,0.02222888944540889 -14001.0,0.022221213184707843 -14002.0,0.0222135395748355 -14003.0,0.022205868614876462 -14004.0,0.022198200303915637 -14005.0,0.022190534641038265 -14006.0,0.02218287162532987 -14007.0,0.022175211255876313 -14008.0,0.022167553531763775 -14009.0,0.022159898452078743 -14010.0,0.02215224601590803 -14011.0,0.022144596222338737 -14012.0,0.022136949070458312 -14013.0,0.0221293045593545 -14014.0,0.02212166268811538 -14015.0,0.022114023455829315 -14016.0,0.022106386861585007 -14017.0,0.022098752904471466 -14018.0,0.022091121583578024 -14019.0,0.02208349289799431 -14020.0,0.022075866846810278 -14021.0,0.0220682434291162 -14022.0,0.022060622644002662 -14023.0,0.022053004490560545 -14024.0,0.02204538896788107 -14025.0,0.02203777607505576 -14026.0,0.022030165811176457 -14027.0,0.0220225581753353 -14028.0,0.022014953166624756 -14029.0,0.02200735078413761 -14030.0,0.021999751026966947 -14031.0,0.021992153894206185 -14032.0,0.02198455938494902 -14033.0,0.021976967498289496 -14034.0,0.02196937823332195 -14035.0,0.021961791589141053 -14036.0,0.02195420756484175 -14037.0,0.021946626159519336 -14038.0,0.021939047372269403 -14039.0,0.021931471202187865 -14040.0,0.021923897648370924 -14041.0,0.021916326709915116 -14042.0,0.021908758385917288 -14043.0,0.0219011926754746 -14044.0,0.0218936295776845 -14045.0,0.021886069091644773 -14046.0,0.02187851121645351 -14047.0,0.021870955951209112 -14048.0,0.021863403295010304 -14049.0,0.021855853246956082 -14050.0,0.021848305806145798 -14051.0,0.02184076097167909 -14052.0,0.021833218742655928 -14053.0,0.02182567911817656 -14054.0,0.02181814209734157 -14055.0,0.021810607679251855 -14056.0,0.021803075863008614 -14057.0,0.02179554664771334 -14058.0,0.021788020032467863 -14059.0,0.02178049601637431 -14060.0,0.021772974598535135 -14061.0,0.02176545577805307 -14062.0,0.021757939554031176 -14063.0,0.021750425925572824 -14064.0,0.02174291489178171 -14065.0,0.021735406451761793 -14066.0,0.02172790060461739 -14067.0,0.0217203973494531 -14068.0,0.021712896685373847 -14069.0,0.021705398611484863 -14070.0,0.02169790312689166 -14071.0,0.021690410230700095 -14072.0,0.021682919922016316 -14073.0,0.0216754321999468 -14074.0,0.02166794706359829 -14075.0,0.021660464512077877 -14076.0,0.021652984544492947 -14077.0,0.021645507159951206 -14078.0,0.021638032357560632 -14079.0,0.02163056013642955 -14080.0,0.021623090495666575 -14081.0,0.021615623434380647 -14082.0,0.021608158951680976 -14083.0,0.021600697046677116 -14084.0,0.021593237718478916 -14085.0,0.021585780966196535 -14086.0,0.021578326788940443 -14087.0,0.021570875185821393 -14088.0,0.021563426155950468 -14089.0,0.021555979698439063 -14090.0,0.02154853581239887 -14091.0,0.021541094496941873 -14092.0,0.021533655751180387 -14093.0,0.021526219574227026 -14094.0,0.02151878596519471 -14095.0,0.021511354923196654 -14096.0,0.021503926447346392 -14097.0,0.02149650053675776 -14098.0,0.02148907719054492 -14099.0,0.02148165640782229 -14100.0,0.02147423818770464 -14101.0,0.021466822529307032 -14102.0,0.02145940943174484 -14103.0,0.021451998894133715 -14104.0,0.021444590915589645 -14105.0,0.02143718549522891 -14106.0,0.0214297826321681 -14107.0,0.02142238232552412 -14108.0,0.02141498457441414 -14109.0,0.021407589377955675 -14110.0,0.021400196735266535 -14111.0,0.021392806645464838 -14112.0,0.021385419107668984 -14113.0,0.021378034120997702 -14114.0,0.021370651684570013 -14115.0,0.021363271797505263 -14116.0,0.02135589445892306 -14117.0,0.021348519667943353 -14118.0,0.021341147423686382 -14119.0,0.021333777725272705 -14120.0,0.021326410571823152 -14121.0,0.021319045962458878 -14122.0,0.021311683896301344 -14123.0,0.02130432437247231 -14124.0,0.021296967390093846 -14125.0,0.021289612948288298 -14126.0,0.021282261046178346 -14127.0,0.02127491168288696 -14128.0,0.021267564857537426 -14129.0,0.021260220569253297 -14130.0,0.021252878817158472 -14131.0,0.021245539600377127 -14132.0,0.021238202918033754 -14133.0,0.02123086876925313 -14134.0,0.021223537153160346 -14135.0,0.021216208068880797 -14136.0,0.021208881515540186 -14137.0,0.02120155749226449 -14138.0,0.021194235998180013 -14139.0,0.02118691703241336 -14140.0,0.021179600594091436 -14141.0,0.021172286682341425 -14142.0,0.02116497529629084 -14143.0,0.021157666435067495 -14144.0,0.02115036009779948 -14145.0,0.021143056283615222 -14146.0,0.02113575499164341 -14147.0,0.02112845622101306 -14148.0,0.02112115997085348 -14149.0,0.021113866240294293 -14150.0,0.021106575028465396 -14151.0,0.021099286334497 -14152.0,0.021092000157519622 -14153.0,0.021084716496664085 -14154.0,0.02107743535106148 -14155.0,0.021070156719843233 -14156.0,0.02106288060214105 -14157.0,0.021055606997086956 -14158.0,0.021048335903813244 -14159.0,0.02104106732145254 -14160.0,0.021033801249137743 -14161.0,0.021026537686002073 -14162.0,0.021019276631179046 -14163.0,0.021012018083802455 -14164.0,0.021004762043006418 -14165.0,0.020997508507925335 -14166.0,0.02099025747769393 -14167.0,0.020983008951447186 -14168.0,0.020975762928320416 -14169.0,0.02096851940744922 -14170.0,0.02096127838796951 -14171.0,0.02095403986901747 -14172.0,0.020946803849729603 -14173.0,0.020939570329242704 -14174.0,0.020932339306693876 -14175.0,0.020925110781220495 -14176.0,0.02091788475196026 -14177.0,0.020910661218051154 -14178.0,0.020903440178631476 -14179.0,0.020896221632839787 -14180.0,0.020889005579814976 -14181.0,0.020881792018696225 -14182.0,0.020874580948623007 -14183.0,0.020867372368735097 -14184.0,0.020860166278172554 -14185.0,0.02085296267607575 -14186.0,0.020845761561585345 -14187.0,0.020838562933842314 -14188.0,0.02083136679198789 -14189.0,0.02082417313516363 -14190.0,0.020816981962511395 -14191.0,0.020809793273173335 -14192.0,0.02080260706629187 -14193.0,0.02079542334100975 -14194.0,0.020788242096470004 -14195.0,0.02078106333181598 -14196.0,0.02077388704619128 -14197.0,0.020766713238739836 -14198.0,0.020759541908605864 -14199.0,0.020752373054933874 -14200.0,0.020745206676868688 -14201.0,0.02073804277355539 -14202.0,0.02073088134413939 -14203.0,0.020723722387766375 -14204.0,0.020716565903582347 -14205.0,0.02070941189073357 -14206.0,0.020702260348366634 -14207.0,0.02069511127562841 -14208.0,0.020687964671666077 -14209.0,0.020680820535627076 -14210.0,0.020673678866659176 -14211.0,0.020666539663910424 -14212.0,0.020659402926529177 -14213.0,0.020652268653664055 -14214.0,0.020645136844464 -14215.0,0.02063800749807824 -14216.0,0.02063088061365631 -14217.0,0.020623756190347998 -14218.0,0.020616634227303424 -14219.0,0.020609514723672992 -14220.0,0.020602397678607397 -14221.0,0.020595283091257636 -14222.0,0.02058817096077497 -14223.0,0.020581061286310983 -14224.0,0.020573954067017546 -14225.0,0.020566849302046827 -14226.0,0.02055974699055126 -14227.0,0.0205526471316836 -14228.0,0.02054554972459689 -14229.0,0.020538454768444462 -14230.0,0.02053136226237993 -14231.0,0.020524272205557213 -14232.0,0.020517184597130523 -14233.0,0.020510099436254366 -14234.0,0.020503016722083517 -14235.0,0.02049593645377307 -14236.0,0.020488858630478397 -14237.0,0.02048178325135517 -14238.0,0.020474710315559353 -14239.0,0.02046763982224718 -14240.0,0.0204605717705752 -14241.0,0.02045350615970025 -14242.0,0.02044644298877946 -14243.0,0.020439382256970225 -14244.0,0.020432323963430265 -14245.0,0.020425268107317575 -14246.0,0.020418214687790454 -14247.0,0.02041116370400746 -14248.0,0.020404115155127467 -14249.0,0.02039706904030964 -14250.0,0.02039002535871344 -14251.0,0.020382984109498587 -14252.0,0.020375945291825116 -14253.0,0.02036890890485335 -14254.0,0.020361874947743913 -14255.0,0.020354843419657678 -14256.0,0.020347814319755853 -14257.0,0.02034078764719991 -14258.0,0.020333763401151627 -14259.0,0.020326741580773064 -14260.0,0.020319722185226555 -14261.0,0.02031270521367474 -14262.0,0.020305690665280554 -14263.0,0.02029867853920722 -14264.0,0.02029166883461822 -14265.0,0.020284661550677357 -14266.0,0.02027765668654872 -14267.0,0.02027065424139668 -14268.0,0.020263654214385883 -14269.0,0.020256656604681282 -14270.0,0.02024966141144812 -14271.0,0.020242668633851924 -14272.0,0.02023567827105849 -14273.0,0.02022869032223393 -14274.0,0.020221704786544635 -14275.0,0.020214721663157274 -14276.0,0.020207740951238826 -14277.0,0.020200762649956523 -14278.0,0.020193786758477914 -14279.0,0.020186813275970824 -14280.0,0.02017984220160338 -14281.0,0.020172873534543962 -14282.0,0.02016590727396127 -14283.0,0.02015894341902428 -14284.0,0.020151981968902263 -14285.0,0.020145022922764752 -14286.0,0.02013806627978159 -14287.0,0.020131112039122902 -14288.0,0.02012416019995911 -14289.0,0.020117210761460887 -14290.0,0.020110263722799226 -14291.0,0.020103319083145398 -14292.0,0.020096376841670965 -14293.0,0.02008943699754775 -14294.0,0.020082499549947893 -14295.0,0.0200755644980438 -14296.0,0.020068631841008176 -14297.0,0.020061701578014013 -14298.0,0.020054773708234563 -14299.0,0.02004784823084339 -14300.0,0.020040925145014335 -14301.0,0.020034004449921535 -14302.0,0.020027086144739383 -14303.0,0.020020170228642584 -14304.0,0.020013256700806118 -14305.0,0.020006345560405262 -14306.0,0.01999943680661555 -14307.0,0.019992530438612828 -14308.0,0.019985626455573214 -14309.0,0.01997872485667312 -14310.0,0.019971825641089225 -14311.0,0.019964928807998508 -14312.0,0.019958034356578228 -14313.0,0.019951142286005925 -14314.0,0.019944252595459434 -14315.0,0.01993736528411685 -14316.0,0.019930480351156573 -14317.0,0.019923597795757284 -14318.0,0.01991671761709795 -14319.0,0.0199098398143578 -14320.0,0.01990296438671637 -14321.0,0.01989609133335347 -14322.0,0.01988922065344921 -14323.0,0.019882352346183945 -14324.0,0.019875486410738347 -14325.0,0.01986862284629336 -14326.0,0.019861761652030217 -14327.0,0.01985490282713041 -14328.0,0.019848046370775745 -14329.0,0.01984119228214829 -14330.0,0.01983434056043041 -14331.0,0.019827491204804745 -14332.0,0.019820644214454206 -14333.0,0.019813799588562 -14334.0,0.019806957326311617 -14335.0,0.019800117426886834 -14336.0,0.01979327988947168 -14337.0,0.0197864447132505 -14338.0,0.019779611897407904 -14339.0,0.019772781441128796 -14340.0,0.019765953343598337 -14341.0,0.01975912760400199 -14342.0,0.019752304221525498 -14343.0,0.019745483195354886 -14344.0,0.019738664524676437 -14345.0,0.01973184820867675 -14346.0,0.019725034246542678 -14347.0,0.019718222637461383 -14348.0,0.019711413380620265 -14349.0,0.019704606475207043 -14350.0,0.019697801920409697 -14351.0,0.0196909997154165 -14352.0,0.019684199859416007 -14353.0,0.01967740235159702 -14354.0,0.01967060719114866 -14355.0,0.019663814377260315 -14356.0,0.019657023909121656 -14357.0,0.019650235785922617 -14358.0,0.019643450006853427 -14359.0,0.0196366665711046 -14360.0,0.019629885477866926 -14361.0,0.01962310672633145 -14362.0,0.01961633031568953 -14363.0,0.01960955624513279 -14364.0,0.019602784513853135 -14365.0,0.019596015121042736 -14366.0,0.019589248065894058 -14367.0,0.019582483347599842 -14368.0,0.01957572096535311 -14369.0,0.019568960918347166 -14370.0,0.019562203205775563 -14371.0,0.01955544782683217 -14372.0,0.019548694780711116 -14373.0,0.019541944066606823 -14374.0,0.019535195683713962 -14375.0,0.01952844963122751 -14376.0,0.01952170590834271 -14377.0,0.019514964514255093 -14378.0,0.019508225448160443 -14379.0,0.01950148870925485 -14380.0,0.019494754296734668 -14381.0,0.01948802220979654 -14382.0,0.01948129244763736 -14383.0,0.019474565009454322 -14384.0,0.019467839894444894 -14385.0,0.01946111710180683 -14386.0,0.01945439663073813 -14387.0,0.0194476784804371 -14388.0,0.01944096265010231 -14389.0,0.019434249138932616 -14390.0,0.01942753794612715 -14391.0,0.0194208290708853 -14392.0,0.01941412251240676 -14393.0,0.019407418269891476 -14394.0,0.019400716342539696 -14395.0,0.01939401672955191 -14396.0,0.019387319430128908 -14397.0,0.01938062444347176 -14398.0,0.019373931768781803 -14399.0,0.019367241405260638 -14400.0,0.019360553352110156 -14401.0,0.019353867608532527 -14402.0,0.019347184173730197 -14403.0,0.019340503046905863 -14404.0,0.019333824227262524 -14405.0,0.01932714771400345 -14406.0,0.019320473506332172 -14407.0,0.019313801603452523 -14408.0,0.019307132004568576 -14409.0,0.019300464708884697 -14410.0,0.019293799715605534 -14411.0,0.01928713702393601 -14412.0,0.019280476633081294 -14413.0,0.01927381854224686 -14414.0,0.019267162750638448 -14415.0,0.019260509257462075 -14416.0,0.019253858061924013 -14417.0,0.019247209163230833 -14418.0,0.01924056256058937 -14419.0,0.019233918253206736 -14420.0,0.019227276240290303 -14421.0,0.019220636521047732 -14422.0,0.019213999094686955 -14423.0,0.019207363960416182 -14424.0,0.019200731117443873 -14425.0,0.019194100564978788 -14426.0,0.019187472302229953 -14427.0,0.019180846328406657 -14428.0,0.019174222642718487 -14429.0,0.01916760124437526 -14430.0,0.019160982132587108 -14431.0,0.019154365306564412 -14432.0,0.019147750765517845 -14433.0,0.019141138508658326 -14434.0,0.019134528535197065 -14435.0,0.01912792084434554 -14436.0,0.019121315435315516 -14437.0,0.019114712307318996 -14438.0,0.01910811145956828 -14439.0,0.019101512891275936 -14440.0,0.019094916601654816 -14441.0,0.01908832258991801 -14442.0,0.019081730855278912 -14443.0,0.01907514139695117 -14444.0,0.019068554214148714 -14445.0,0.019061969306085752 -14446.0,0.01905538667197673 -14447.0,0.0190488063110364 -14448.0,0.019042228222479772 -14449.0,0.019035652405522133 -14450.0,0.019029078859379028 -14451.0,0.01902250758326628 -14452.0,0.019015938576399986 -14453.0,0.019009371837996523 -14454.0,0.01900280736727251 -14455.0,0.01899624516344486 -14456.0,0.01898968522573075 -14457.0,0.01898312755334763 -14458.0,0.018976572145513213 -14459.0,0.018970019001445487 -14460.0,0.01896346812036271 -14461.0,0.01895691950148342 -14462.0,0.018950373144026398 -14463.0,0.018943829047210717 -14464.0,0.018937287210255716 -14465.0,0.018930747632381003 -14466.0,0.018924210312806458 -14467.0,0.018917675250752216 -14468.0,0.018911142445438695 -14469.0,0.018904611896086578 -14470.0,0.018898083601916832 -14471.0,0.018891557562150656 -14472.0,0.018885033776009554 -14473.0,0.018878512242715285 -14474.0,0.018871992961489885 -14475.0,0.018865475931555634 -14476.0,0.01885896115213511 -14477.0,0.018852448622451144 -14478.0,0.018845938341726844 -14479.0,0.01883943030918557 -14480.0,0.01883292452405097 -14481.0,0.018826420985546946 -14482.0,0.018819919692897678 -14483.0,0.01881342064532761 -14484.0,0.018806923842061448 -14485.0,0.01880042928232417 -14486.0,0.018793936965341027 -14487.0,0.01878744689033754 -14488.0,0.01878095905653947 -14489.0,0.018774473463172882 -14490.0,0.018767990109464082 -14491.0,0.01876150899463967 -14492.0,0.018755030117926477 -14493.0,0.018748553478551627 -14494.0,0.018742079075742504 -14495.0,0.01873560690872677 -14496.0,0.018729136976732324 -14497.0,0.01872266927898736 -14498.0,0.018716203814720323 -14499.0,0.018709740583159946 -14500.0,0.018703279583535196 -14501.0,0.018696820815075326 -14502.0,0.018690364277009857 -14503.0,0.018683909968568568 -14504.0,0.018677457888981515 -14505.0,0.018671008037478995 -14506.0,0.0186645604132916 -14507.0,0.01865811501565017 -14508.0,0.01865167184378583 -14509.0,0.018645230896929935 -14510.0,0.01863879217431414 -14511.0,0.01863235567517035 -14512.0,0.018625921398730743 -14513.0,0.018619489344227746 -14514.0,0.018613059510894064 -14515.0,0.018606631897962668 -14516.0,0.0186002065046668 -14517.0,0.01859378333023994 -14518.0,0.018587362373915856 -14519.0,0.018580943634928578 -14520.0,0.018574527112512396 -14521.0,0.018568112805901874 -14522.0,0.018561700714331813 -14523.0,0.01855529083703731 -14524.0,0.018548883173253712 -14525.0,0.018542477722216635 -14526.0,0.018536074483161948 -14527.0,0.01852967345532579 -14528.0,0.01852327463794457 -14529.0,0.018516878030254962 -14530.0,0.018510483631493886 -14531.0,0.01850409144089854 -14532.0,0.01849770145770638 -14533.0,0.018491313681155145 -14534.0,0.018484928110482794 -14535.0,0.018478544744927588 -14536.0,0.018472163583728034 -14537.0,0.01846578462612292 -14538.0,0.018459407871351263 -14539.0,0.018453033318652372 -14540.0,0.01844666096726581 -14541.0,0.0184402908164314 -14542.0,0.018433922865389234 -14543.0,0.018427557113379657 -14544.0,0.01842119355964328 -14545.0,0.018414832203420977 -14546.0,0.018408473043953894 -14547.0,0.018402116080483418 -14548.0,0.018395761312251215 -14549.0,0.018389408738499206 -14550.0,0.018383058358469585 -14551.0,0.01837671017140478 -14552.0,0.01837036417654751 -14553.0,0.01836402037314074 -14554.0,0.018357678760427713 -14555.0,0.018351339337651897 -14556.0,0.018345002104057064 -14557.0,0.018338667058887217 -14558.0,0.018332334201386642 -14559.0,0.018326003530799877 -14560.0,0.018319675046371702 -14561.0,0.018313348747347188 -14562.0,0.01830702463297165 -14563.0,0.01830070270249067 -14564.0,0.018294382955150082 -14565.0,0.018288065390196007 -14566.0,0.018281750006874774 -14567.0,0.01827543680443302 -14568.0,0.01826912578211762 -14569.0,0.018262816939175724 -14570.0,0.018256510274854726 -14571.0,0.01825020578840229 -14572.0,0.018243903479066337 -14573.0,0.018237603346095064 -14574.0,0.018231305388736876 -14575.0,0.018225009606240492 -14576.0,0.018218715997854868 -14577.0,0.018212424562829226 -14578.0,0.01820613530041304 -14579.0,0.018199848209856047 -14580.0,0.018193563290408245 -14581.0,0.018187280541319892 -14582.0,0.01818099996184151 -14583.0,0.018174721551223846 -14584.0,0.018168445308717942 -14585.0,0.018162171233575095 -14586.0,0.018155899325046847 -14587.0,0.01814962958238501 -14588.0,0.018143362004841648 -14589.0,0.01813709659166908 -14590.0,0.01813083334211991 -14591.0,0.018124572255446947 -14592.0,0.0181183133309033 -14593.0,0.018112056567742323 -14594.0,0.018105801965217636 -14595.0,0.018099549522583108 -14596.0,0.01809329923909287 -14597.0,0.018087051114001305 -14598.0,0.018080805146563062 -14599.0,0.01807456133603305 -14600.0,0.01806831968166641 -14601.0,0.01806208018271856 -14602.0,0.01805584283844518 -14603.0,0.018049607648102203 -14604.0,0.01804337461094581 -14605.0,0.018037143726232448 -14606.0,0.01803091499321882 -14607.0,0.018024688411161893 -14608.0,0.018018463979318857 -14609.0,0.018012241696947193 -14610.0,0.018006021563304633 -14611.0,0.017999803577649156 -14612.0,0.017993587739239 -14613.0,0.01798737404733267 -14614.0,0.017981162501188912 -14615.0,0.01797495310006673 -14616.0,0.017968745843225407 -14617.0,0.017962540729924436 -14618.0,0.0179563377594236 -14619.0,0.01795013693098293 -14620.0,0.01794393824386272 -14621.0,0.017937741697323508 -14622.0,0.017931547290626088 -14623.0,0.017925355023031518 -14624.0,0.017919164893801114 -14625.0,0.017912976902196415 -14626.0,0.01790679104747925 -14627.0,0.017900607328911692 -14628.0,0.01789442574575607 -14629.0,0.017888246297274965 -14630.0,0.017882068982731213 -14631.0,0.01787589380138791 -14632.0,0.017869720752508412 -14633.0,0.01786354983535629 -14634.0,0.017857381049195414 -14635.0,0.017851214393289894 -14636.0,0.017845049866904092 -14637.0,0.017838887469302626 -14638.0,0.01783272719975036 -14639.0,0.017826569057512433 -14640.0,0.01782041304185421 -14641.0,0.017814259152041347 -14642.0,0.01780810738733969 -14643.0,0.017801957747015408 -14644.0,0.01779581023033488 -14645.0,0.01778966483656476 -14646.0,0.017783521564971944 -14647.0,0.017777380414823584 -14648.0,0.017771241385387087 -14649.0,0.017765104475930125 -14650.0,0.017758969685720584 -14651.0,0.017752837014026638 -14652.0,0.017746706460116706 -14653.0,0.017740578023259457 -14654.0,0.017734451702723815 -14655.0,0.017728327497778952 -14656.0,0.0177222054076943 -14657.0,0.01771608543173953 -14658.0,0.017709967569184595 -14659.0,0.01770385181929965 -14660.0,0.017697738181355137 -14661.0,0.01769162665462175 -14662.0,0.017685517238370432 -14663.0,0.017679409931872368 -14664.0,0.017673304734399 -14665.0,0.017667201645222026 -14666.0,0.017661100663613406 -14667.0,0.01765500178884531 -14668.0,0.017648905020190193 -14669.0,0.017642810356920766 -14670.0,0.017636717798309973 -14671.0,0.01763062734363102 -14672.0,0.017624538992157355 -14673.0,0.017618452743162687 -14674.0,0.01761236859592097 -14675.0,0.017606286549706425 -14676.0,0.017600206603793474 -14677.0,0.017594128757456844 -14678.0,0.01758805300997149 -14679.0,0.01758197936061262 -14680.0,0.017575907808655693 -14681.0,0.017569838353376412 -14682.0,0.017563770994050744 -14683.0,0.017557705729954905 -14684.0,0.017551642560365323 -14685.0,0.017545581484558728 -14686.0,0.01753952250181207 -14687.0,0.017533465611402562 -14688.0,0.01752741081260766 -14689.0,0.01752135810470507 -14690.0,0.017515307486972744 -14691.0,0.017509258958688895 -14692.0,0.017503212519131988 -14693.0,0.0174971681675807 -14694.0,0.017491125903313993 -14695.0,0.017485085725611076 -14696.0,0.017479047633751393 -14697.0,0.01747301162701465 -14698.0,0.01746697770468079 -14699.0,0.017460945866030017 -14700.0,0.017454916110342784 -14701.0,0.01744888843689976 -14702.0,0.0174428628449819 -14703.0,0.017436839333870396 -14704.0,0.017430817902846688 -14705.0,0.017424798551192458 -14706.0,0.01741878127818965 -14707.0,0.01741276608312044 -14708.0,0.017406752965267277 -14709.0,0.017400741923912808 -14710.0,0.01739473295833998 -14711.0,0.01738872606783196 -14712.0,0.017382721251672173 -14713.0,0.01737671850914429 -14714.0,0.017370717839532222 -14715.0,0.01736471924212014 -14716.0,0.01735872271619245 -14717.0,0.017352728261033828 -14718.0,0.017346735875929147 -14719.0,0.017340745560163576 -14720.0,0.017334757313022517 -14721.0,0.017328771133791606 -14722.0,0.017322787021756745 -14723.0,0.017316804976204067 -14724.0,0.017310824996419963 -14725.0,0.017304847081691076 -14726.0,0.017298871231304254 -14727.0,0.01729289744454664 -14728.0,0.017286925720705604 -14729.0,0.01728095605906876 -14730.0,0.017274988458923973 -14731.0,0.01726902291955935 -14732.0,0.01726305944026325 -14733.0,0.01725709802032427 -14734.0,0.01725113865903127 -14735.0,0.017245181355673316 -14736.0,0.017239226109539756 -14737.0,0.017233272919920172 -14738.0,0.017227321786104397 -14739.0,0.0172213727073825 -14740.0,0.017215425683044797 -14741.0,0.017209480712381858 -14742.0,0.017203537794684504 -14743.0,0.017197596929243757 -14744.0,0.01719165811535093 -14745.0,0.017185721352297564 -14746.0,0.01717978663937545 -14747.0,0.01717385397587662 -14748.0,0.017167923361093344 -14749.0,0.017161994794318153 -14750.0,0.017156068274843807 -14751.0,0.01715014380196333 -14752.0,0.017144221374969945 -14753.0,0.017138300993157166 -14754.0,0.017132382655818734 -14755.0,0.017126466362248637 -14756.0,0.017120552111741103 -14757.0,0.017114639903590603 -14758.0,0.017108729737091856 -14759.0,0.017102821611539833 -14760.0,0.017096915526229713 -14761.0,0.01709101148045696 -14762.0,0.017085109473517254 -14763.0,0.01707920950470654 -14764.0,0.017073311573320985 -14765.0,0.01706741567865702 -14766.0,0.017061521820011295 -14767.0,0.017055629996680723 -14768.0,0.017049740207962467 -14769.0,0.01704385245315389 -14770.0,0.017037966731552636 -14771.0,0.017032083042456583 -14772.0,0.017026201385163853 -14773.0,0.017020321758972803 -14774.0,0.017014444163182037 -14775.0,0.017008568597090407 -14776.0,0.017002695059997006 -14777.0,0.016996823551201138 -14778.0,0.016990954070002392 -14779.0,0.01698508661570058 -14780.0,0.016979221187595758 -14781.0,0.01697335778498822 -14782.0,0.016967496407178508 -14783.0,0.016961637053467402 -14784.0,0.016955779723155942 -14785.0,0.016949924415545353 -14786.0,0.016944071129937163 -14787.0,0.01693821986563311 -14788.0,0.01693237062193519 -14789.0,0.016926523398145623 -14790.0,0.01692067819356688 -14791.0,0.016914835007501672 -14792.0,0.01690899383925295 -14793.0,0.016903154688123916 -14794.0,0.016897317553417977 -14795.0,0.016891482434438818 -14796.0,0.01688564933049035 -14797.0,0.01687981824087673 -14798.0,0.01687398916490235 -14799.0,0.016868162101871843 -14800.0,0.016862337051090085 -14801.0,0.0168565140118622 -14802.0,0.01685069298349352 -14803.0,0.016844873965289647 -14804.0,0.016839056956556415 -14805.0,0.016833241956599902 -14806.0,0.016827428964726415 -14807.0,0.01682161798024251 -14808.0,0.016815809002454978 -14809.0,0.016810002030670852 -14810.0,0.016804197064197415 -14811.0,0.016798394102342146 -14812.0,0.016792593144412813 -14813.0,0.0167867941897174 -14814.0,0.016780997237564137 -14815.0,0.01677520228726149 -14816.0,0.016769409338118157 -14817.0,0.016763618389443093 -14818.0,0.016757829440545484 -14819.0,0.01675204249073473 -14820.0,0.0167462575393205 -14821.0,0.01674047458561269 -14822.0,0.016734693628921434 -14823.0,0.016728914668557113 -14824.0,0.01672313770383034 -14825.0,0.016717362734051958 -14826.0,0.016711589758533058 -14827.0,0.01670581877658498 -14828.0,0.016700049787519263 -14829.0,0.01669428279064772 -14830.0,0.016688517785282388 -14831.0,0.016682754770735546 -14832.0,0.01667699374631971 -14833.0,0.01667123471134763 -14834.0,0.016665477665132294 -14835.0,0.01665972260698695 -14836.0,0.01665396953622502 -14837.0,0.016648218452160232 -14838.0,0.016642469354106515 -14839.0,0.016636722241378046 -14840.0,0.016630977113289237 -14841.0,0.016625233969154735 -14842.0,0.016619492808289428 -14843.0,0.016613753630008433 -14844.0,0.016608016433627124 -14845.0,0.016602281218461065 -14846.0,0.016596547983826107 -14847.0,0.01659081672903831 -14848.0,0.01658508745341398 -14849.0,0.016579360156269655 -14850.0,0.016573634836922112 -14851.0,0.01656791149468836 -14852.0,0.016562190128885663 -14853.0,0.016556470738831472 -14854.0,0.016550753323843523 -14855.0,0.016545037883239768 -14856.0,0.0165393244163384 -14857.0,0.016533612922457835 -14858.0,0.016527903400916744 -14859.0,0.016522195851034017 -14860.0,0.016516490272128804 -14861.0,0.016510786663520436 -14862.0,0.01650508502452853 -14863.0,0.016499385354472925 -14864.0,0.016493687652673693 -14865.0,0.016487991918451135 -14866.0,0.016482298151125792 -14867.0,0.016476606350018443 -14868.0,0.016470916514450092 -14869.0,0.016465228643742003 -14870.0,0.016459542737215622 -14871.0,0.01645385879419268 -14872.0,0.01644817681399512 -14873.0,0.016442496795945123 -14874.0,0.01643681873936511 -14875.0,0.016431142643577725 -14876.0,0.01642546850790585 -14877.0,0.016419796331672624 -14878.0,0.01641412611420136 -14879.0,0.01640845785481566 -14880.0,0.016402791552839344 -14881.0,0.016397127207596465 -14882.0,0.016391464818411302 -14883.0,0.016385804384608377 -14884.0,0.016380145905512438 -14885.0,0.016374489380448474 -14886.0,0.016368834808741718 -14887.0,0.01636318218971759 -14888.0,0.016357531522701786 -14889.0,0.016351882807020223 -14890.0,0.016346236041999054 -14891.0,0.01634059122696466 -14892.0,0.01633494836124365 -14893.0,0.01632930744416288 -14894.0,0.01632366847504944 -14895.0,0.016318031453230613 -14896.0,0.01631239637803396 -14897.0,0.016306763248787257 -14898.0,0.016301132064818508 -14899.0,0.016295502825455957 -14900.0,0.01628987553002808 -14901.0,0.016284250177863578 -14902.0,0.016278626768291386 -14903.0,0.016273005300640693 -14904.0,0.01626738577424086 -14905.0,0.016261768188421545 -14906.0,0.016256152542512604 -14907.0,0.016250538835844132 -14908.0,0.016244927067746454 -14909.0,0.01623931723755013 -14910.0,0.016233709344585942 -14911.0,0.01622810338818493 -14912.0,0.016222499367678313 -14913.0,0.01621689728239759 -14914.0,0.016211297131674466 -14915.0,0.01620569891484089 -14916.0,0.016200102631229035 -14917.0,0.016194508280171303 -14918.0,0.016188915861000328 -14919.0,0.016183325373048976 -14920.0,0.016177736815650358 -14921.0,0.016172150188137772 -14922.0,0.016166565489844787 -14923.0,0.016160982720105188 -14924.0,0.01615540187825299 -14925.0,0.016149822963622447 -14926.0,0.016144245975548026 -14927.0,0.016138670913364437 -14928.0,0.016133097776406632 -14929.0,0.016127526564009745 -14930.0,0.016121957275509184 -14931.0,0.01611638991024058 -14932.0,0.01611082446753978 -14933.0,0.016105260946742868 -14934.0,0.01609969934718616 -14935.0,0.016094139668206196 -14936.0,0.01608858190913976 -14937.0,0.016083026069323825 -14938.0,0.016077472148095632 -14939.0,0.016071920144792643 -14940.0,0.01606637005875254 -14941.0,0.01606082188931324 -14942.0,0.016055275635812886 -14943.0,0.016049731297589853 -14944.0,0.016044188873982738 -14945.0,0.016038648364330388 -14946.0,0.01603310976797183 -14947.0,0.016027573084246363 -14948.0,0.016022038312493502 -14949.0,0.016016505452052993 -14950.0,0.0160109745022648 -14951.0,0.016005445462469126 -14952.0,0.015999918332006393 -14953.0,0.015994393110217272 -14954.0,0.015988869796442616 -14955.0,0.015983348390023543 -14956.0,0.015977828890301395 -14957.0,0.015972311296617733 -14958.0,0.015966795608314353 -14959.0,0.015961281824733265 -14960.0,0.015955769945216722 -14961.0,0.015950259969107195 -14962.0,0.015944751895747396 -14963.0,0.015939245724480227 -14964.0,0.015933741454648855 -14965.0,0.015928239085596662 -14966.0,0.01592273861666725 -14967.0,0.015917240047204458 -14968.0,0.015911743376552347 -14969.0,0.015906248604055203 -14970.0,0.015900755729057556 -14971.0,0.015895264750904112 -14972.0,0.015889775668939857 -14973.0,0.015884288482509983 -14974.0,0.015878803190959905 -14975.0,0.01587331979363527 -14976.0,0.01586783828988195 -14977.0,0.01586235867904604 -14978.0,0.015856880960473864 -14979.0,0.01585140513351198 -14980.0,0.01584593119750714 -14981.0,0.01584045915180635 -14982.0,0.015834988995756843 -14983.0,0.015829520728706064 -14984.0,0.015824054350001688 -14985.0,0.01581858985899162 -14986.0,0.01581312725502398 -14987.0,0.01580766653744714 -14988.0,0.015802207705609642 -14989.0,0.015796750758860306 -14990.0,0.015791295696548156 -14991.0,0.015785842518022446 -14992.0,0.015780391222632646 -14993.0,0.01577494180972846 -14994.0,0.01576949427865981 -14995.0,0.015764048628776846 -14996.0,0.015758604859429957 -14997.0,0.015753162969969713 -14998.0,0.01574772295974695 -14999.0,0.015742284828112716 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516210500_theo_VPR_VPR.png b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516210500_theo_VPR_VPR.png deleted file mode 100644 index b5803c1..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516210500_theo_VPR_VPR.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516211000_theo_VPR_VPR.csv b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516211000_theo_VPR_VPR.csv deleted file mode 100644 index 5903aed..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516211000_theo_VPR_VPR.csv +++ /dev/null @@ -1,15008 +0,0 @@ -# Height Profile -# ============== -# -# Datatype (Unit) : normalized reflectivity (-) -# Fill value : -9999.0 -# Time : 2020-05-16 21:10:00 -# Sector specification: None -Altitude [m MSL],Znorm -0.0,1.0 -1.0,1.0 -2.0,1.0 -3.0,1.0 -4.0,1.0 -5.0,1.0 -6.0,1.0 -7.0,1.0 -8.0,1.0 -9.0,1.0 -10.0,1.0 -11.0,1.0 -12.0,1.0 -13.0,1.0 -14.0,1.0 -15.0,1.0 -16.0,1.0 -17.0,1.0 -18.0,1.0 -19.0,1.0 -20.0,1.0 -21.0,1.0 -22.0,1.0 -23.0,1.0 -24.0,1.0 -25.0,1.0 -26.0,1.0 -27.0,1.0 -28.0,1.0 -29.0,1.0 -30.0,1.0 -31.0,1.0 -32.0,1.0 -33.0,1.0 -34.0,1.0 -35.0,1.0 -36.0,1.0 -37.0,1.0 -38.0,1.0 -39.0,1.0 -40.0,1.0 -41.0,1.0 -42.0,1.0 -43.0,1.0 -44.0,1.0 -45.0,1.0 -46.0,1.0 -47.0,1.0 -48.0,1.0 -49.0,1.0 -50.0,1.0 -51.0,1.0 -52.0,1.0 -53.0,1.0 -54.0,1.0 -55.0,1.0 -56.0,1.0 -57.0,1.0 -58.0,1.0 -59.0,1.0 -60.0,1.0 -61.0,1.0 -62.0,1.0 -63.0,1.0 -64.0,1.0 -65.0,1.0 -66.0,1.0 -67.0,1.0 -68.0,1.0 -69.0,1.0 -70.0,1.0 -71.0,1.0 -72.0,1.0 -73.0,1.0 -74.0,1.0 -75.0,1.0 -76.0,1.0 -77.0,1.0 -78.0,1.0 -79.0,1.0 -80.0,1.0 -81.0,1.0 -82.0,1.0 -83.0,1.0 -84.0,1.0 -85.0,1.0 -86.0,1.0 -87.0,1.0 -88.0,1.0 -89.0,1.0 -90.0,1.0 -91.0,1.0 -92.0,1.0 -93.0,1.0 -94.0,1.0 -95.0,1.0 -96.0,1.0 -97.0,1.0 -98.0,1.0 -99.0,1.0 -100.0,1.0 -101.0,1.0 -102.0,1.0 -103.0,1.0 -104.0,1.0 -105.0,1.0 -106.0,1.0 -107.0,1.0 -108.0,1.0 -109.0,1.0 -110.0,1.0 -111.0,1.0 -112.0,1.0 -113.0,1.0 -114.0,1.0 -115.0,1.0 -116.0,1.0 -117.0,1.0 -118.0,1.0 -119.0,1.0 -120.0,1.0 -121.0,1.0 -122.0,1.0 -123.0,1.0 -124.0,1.0 -125.0,1.0 -126.0,1.0 -127.0,1.0 -128.0,1.0 -129.0,1.0 -130.0,1.0 -131.0,1.0 -132.0,1.0 -133.0,1.0 -134.0,1.0 -135.0,1.0 -136.0,1.0 -137.0,1.0 -138.0,1.0 -139.0,1.0 -140.0,1.0 -141.0,1.0 -142.0,1.0 -143.0,1.0 -144.0,1.0 -145.0,1.0 -146.0,1.0 -147.0,1.0 -148.0,1.0 -149.0,1.0 -150.0,1.0 -151.0,1.0 -152.0,1.0 -153.0,1.0 -154.0,1.0 -155.0,1.0 -156.0,1.0 -157.0,1.0 -158.0,1.0 -159.0,1.0 -160.0,1.0 -161.0,1.0 -162.0,1.0 -163.0,1.0 -164.0,1.0 -165.0,1.0 -166.0,1.0 -167.0,1.0 -168.0,1.0 -169.0,1.0 -170.0,1.0 -171.0,1.0 -172.0,1.0 -173.0,1.0 -174.0,1.0 -175.0,1.0 -176.0,1.0 -177.0,1.0 -178.0,1.0 -179.0,1.0 -180.0,1.0 -181.0,1.0 -182.0,1.0 -183.0,1.0 -184.0,1.0 -185.0,1.0 -186.0,1.0 -187.0,1.0 -188.0,1.0 -189.0,1.0 -190.0,1.0 -191.0,1.0 -192.0,1.0 -193.0,1.0 -194.0,1.0 -195.0,1.0 -196.0,1.0 -197.0,1.0 -198.0,1.0 -199.0,1.0 -200.0,1.0 -201.0,1.0 -202.0,1.0 -203.0,1.0 -204.0,1.0 -205.0,1.0 -206.0,1.0 -207.0,1.0 -208.0,1.0 -209.0,1.0 -210.0,1.0 -211.0,1.0 -212.0,1.0 -213.0,1.0 -214.0,1.0 -215.0,1.0 -216.0,1.0 -217.0,1.0 -218.0,1.0 -219.0,1.0 -220.0,1.0 -221.0,1.0 -222.0,1.0 -223.0,1.0 -224.0,1.0 -225.0,1.0 -226.0,1.0 -227.0,1.0 -228.0,1.0 -229.0,1.0 -230.0,1.0 -231.0,1.0 -232.0,1.0 -233.0,1.0 -234.0,1.0 -235.0,1.0 -236.0,1.0 -237.0,1.0 -238.0,1.0 -239.0,1.0 -240.0,1.0 -241.0,1.0 -242.0,1.0 -243.0,1.0 -244.0,1.0 -245.0,1.0 -246.0,1.0 -247.0,1.0 -248.0,1.0 -249.0,1.0 -250.0,1.0 -251.0,1.0 -252.0,1.0 -253.0,1.0 -254.0,1.0 -255.0,1.0 -256.0,1.0 -257.0,1.0 -258.0,1.0 -259.0,1.0 -260.0,1.0 -261.0,1.0 -262.0,1.0 -263.0,1.0 -264.0,1.0 -265.0,1.0 -266.0,1.0 -267.0,1.0 -268.0,1.0 -269.0,1.0 -270.0,1.0 -271.0,1.0 -272.0,1.0 -273.0,1.0 -274.0,1.0 -275.0,1.0 -276.0,1.0 -277.0,1.0 -278.0,1.0 -279.0,1.0 -280.0,1.0 -281.0,1.0 -282.0,1.0 -283.0,1.0 -284.0,1.0 -285.0,1.0 -286.0,1.0 -287.0,1.0 -288.0,1.0 -289.0,1.0 -290.0,1.0 -291.0,1.0 -292.0,1.0 -293.0,1.0 -294.0,1.0 -295.0,1.0 -296.0,1.0 -297.0,1.0 -298.0,1.0 -299.0,1.0 -300.0,1.0 -301.0,1.0 -302.0,1.0 -303.0,1.0 -304.0,1.0 -305.0,1.0 -306.0,1.0 -307.0,1.0 -308.0,1.0 -309.0,1.0 -310.0,1.0 -311.0,1.0 -312.0,1.0 -313.0,1.0 -314.0,1.0 -315.0,1.0 -316.0,1.0 -317.0,1.0 -318.0,1.0 -319.0,1.0 -320.0,1.0 -321.0,1.0 -322.0,1.0 -323.0,1.0 -324.0,1.0 -325.0,1.0 -326.0,1.0 -327.0,1.0 -328.0,1.0 -329.0,1.0 -330.0,1.0 -331.0,1.0 -332.0,1.0 -333.0,1.0 -334.0,1.0 -335.0,1.0 -336.0,1.0 -337.0,1.0 -338.0,1.0 -339.0,1.0 -340.0,1.0 -341.0,1.0 -342.0,1.0 -343.0,1.0 -344.0,1.0 -345.0,1.0 -346.0,1.0 -347.0,1.0 -348.0,1.0 -349.0,1.0 -350.0,1.0 -351.0,1.0 -352.0,1.0 -353.0,1.0 -354.0,1.0 -355.0,1.0 -356.0,1.0 -357.0,1.0 -358.0,1.0 -359.0,1.0 -360.0,1.0 -361.0,1.0 -362.0,1.0 -363.0,1.0 -364.0,1.0 -365.0,1.0 -366.0,1.0 -367.0,1.0 -368.0,1.0 -369.0,1.0 -370.0,1.0 -371.0,1.0 -372.0,1.0 -373.0,1.0 -374.0,1.0 -375.0,1.0 -376.0,1.0 -377.0,1.0 -378.0,1.0 -379.0,1.0 -380.0,1.0 -381.0,1.0 -382.0,1.0 -383.0,1.0 -384.0,1.0 -385.0,1.0 -386.0,1.0 -387.0,1.0 -388.0,1.0 -389.0,1.0 -390.0,1.0 -391.0,1.0 -392.0,1.0 -393.0,1.0 -394.0,1.0 -395.0,1.0 -396.0,1.0 -397.0,1.0 -398.0,1.0 -399.0,1.0 -400.0,1.0 -401.0,1.0 -402.0,1.0 -403.0,1.0 -404.0,1.0 -405.0,1.0 -406.0,1.0 -407.0,1.0 -408.0,1.0 -409.0,1.0 -410.0,1.0 -411.0,1.0 -412.0,1.0 -413.0,1.0 -414.0,1.0 -415.0,1.0 -416.0,1.0 -417.0,1.0 -418.0,1.0 -419.0,1.0 -420.0,1.0 -421.0,1.0 -422.0,1.0 -423.0,1.0 -424.0,1.0 -425.0,1.0 -426.0,1.0 -427.0,1.0 -428.0,1.0 -429.0,1.0 -430.0,1.0 -431.0,1.0 -432.0,1.0 -433.0,1.0 -434.0,1.0 -435.0,1.0 -436.0,1.0 -437.0,1.0 -438.0,1.0 -439.0,1.0 -440.0,1.0 -441.0,1.0 -442.0,1.0 -443.0,1.0 -444.0,1.0 -445.0,1.0 -446.0,1.0 -447.0,1.0 -448.0,1.0 -449.0,1.0 -450.0,1.0 -451.0,1.0 -452.0,1.0 -453.0,1.0 -454.0,1.0 -455.0,1.0 -456.0,1.0 -457.0,1.0 -458.0,1.0 -459.0,1.0 -460.0,1.0 -461.0,1.0 -462.0,1.0 -463.0,1.0 -464.0,1.0 -465.0,1.0 -466.0,1.0 -467.0,1.0 -468.0,1.0 -469.0,1.0 -470.0,1.0 -471.0,1.0 -472.0,1.0 -473.0,1.0 -474.0,1.0 -475.0,1.0 -476.0,1.0 -477.0,1.0 -478.0,1.0 -479.0,1.0 -480.0,1.0 -481.0,1.0 -482.0,1.0 -483.0,1.0 -484.0,1.0 -485.0,1.0 -486.0,1.0 -487.0,1.0 -488.0,1.0 -489.0,1.0 -490.0,1.0 -491.0,1.0 -492.0,1.0 -493.0,1.0 -494.0,1.0 -495.0,1.0 -496.0,1.0 -497.0,1.0 -498.0,1.0 -499.0,1.0 -500.0,1.0 -501.0,1.0 -502.0,1.0 -503.0,1.0 -504.0,1.0 -505.0,1.0 -506.0,1.0 -507.0,1.0 -508.0,1.0 -509.0,1.0 -510.0,1.0 -511.0,1.0 -512.0,1.0 -513.0,1.0 -514.0,1.0 -515.0,1.0 -516.0,1.0 -517.0,1.0 -518.0,1.0 -519.0,1.0 -520.0,1.0 -521.0,1.0 -522.0,1.0 -523.0,1.0 -524.0,1.0 -525.0,1.0 -526.0,1.0 -527.0,1.0 -528.0,1.0 -529.0,1.0 -530.0,1.0 -531.0,1.0 -532.0,1.0 -533.0,1.0 -534.0,1.0 -535.0,1.0 -536.0,1.0 -537.0,1.0 -538.0,1.0 -539.0,1.0 -540.0,1.0 -541.0,1.0 -542.0,1.0 -543.0,1.0 -544.0,1.0 -545.0,1.0 -546.0,1.0 -547.0,1.0 -548.0,1.0 -549.0,1.0 -550.0,1.0 -551.0,1.0 -552.0,1.0 -553.0,1.0 -554.0,1.0 -555.0,1.0 -556.0,1.0 -557.0,1.0 -558.0,1.0 -559.0,1.0 -560.0,1.0 -561.0,1.0 -562.0,1.0 -563.0,1.0 -564.0,1.0 -565.0,1.0 -566.0,1.0 -567.0,1.0 -568.0,1.0 -569.0,1.0 -570.0,1.0 -571.0,1.0 -572.0,1.0 -573.0,1.0 -574.0,1.0 -575.0,1.0 -576.0,1.0 -577.0,1.0 -578.0,1.0 -579.0,1.0 -580.0,1.0 -581.0,1.0 -582.0,1.0 -583.0,1.0 -584.0,1.0 -585.0,1.0 -586.0,1.0 -587.0,1.0 -588.0,1.0 -589.0,1.0 -590.0,1.0 -591.0,1.0 -592.0,1.0 -593.0,1.0 -594.0,1.0 -595.0,1.0 -596.0,1.0 -597.0,1.0 -598.0,1.0 -599.0,1.0 -600.0,1.0 -601.0,1.0 -602.0,1.0 -603.0,1.0 -604.0,1.0 -605.0,1.0 -606.0,1.0 -607.0,1.0 -608.0,1.0 -609.0,1.0 -610.0,1.0 -611.0,1.0 -612.0,1.0 -613.0,1.0 -614.0,1.0 -615.0,1.0 -616.0,1.0 -617.0,1.0 -618.0,1.0 -619.0,1.0 -620.0,1.0 -621.0,1.0 -622.0,1.0 -623.0,1.0 -624.0,1.0 -625.0,1.0 -626.0,1.0 -627.0,1.0 -628.0,1.0 -629.0,1.0 -630.0,1.0 -631.0,1.0 -632.0,1.0 -633.0,1.0 -634.0,1.0 -635.0,1.0 -636.0,1.0 -637.0,1.0 -638.0,1.0 -639.0,1.0 -640.0,1.0 -641.0,1.0 -642.0,1.0 -643.0,1.0 -644.0,1.0 -645.0,1.0 -646.0,1.0 -647.0,1.0 -648.0,1.0 -649.0,1.0 -650.0,1.0 -651.0,1.0 -652.0,1.0 -653.0,1.0 -654.0,1.0 -655.0,1.0 -656.0,1.0 -657.0,1.0 -658.0,1.0 -659.0,1.0 -660.0,1.0 -661.0,1.0 -662.0,1.0 -663.0,1.0 -664.0,1.0 -665.0,1.0 -666.0,1.0 -667.0,1.0 -668.0,1.0 -669.0,1.0 -670.0,1.0 -671.0,1.0 -672.0,1.0 -673.0,1.0 -674.0,1.0 -675.0,1.0 -676.0,1.0 -677.0,1.0 -678.0,1.0 -679.0,1.0 -680.0,1.0 -681.0,1.0 -682.0,1.0 -683.0,1.0 -684.0,1.0 -685.0,1.0 -686.0,1.0 -687.0,1.0 -688.0,1.0 -689.0,1.0 -690.0,1.0 -691.0,1.0 -692.0,1.0 -693.0,1.0 -694.0,1.0 -695.0,1.0 -696.0,1.0 -697.0,1.0 -698.0,1.0 -699.0,1.0 -700.0,1.0 -701.0,1.0 -702.0,1.0 -703.0,1.0 -704.0,1.0 -705.0,1.0 -706.0,1.0 -707.0,1.0 -708.0,1.0 -709.0,1.0 -710.0,1.0 -711.0,1.0 -712.0,1.0 -713.0,1.0 -714.0,1.0 -715.0,1.0 -716.0,1.0 -717.0,1.0 -718.0,1.0 -719.0,1.0 -720.0,1.0 -721.0,1.0 -722.0,1.0 -723.0,1.0 -724.0,1.0 -725.0,1.0 -726.0,1.0 -727.0,1.0 -728.0,1.0 -729.0,1.0 -730.0,1.0 -731.0,1.0 -732.0,1.0 -733.0,1.0 -734.0,1.0 -735.0,1.0 -736.0,1.0 -737.0,1.0 -738.0,1.0 -739.0,1.0 -740.0,1.0 -741.0,1.0 -742.0,1.0 -743.0,1.0 -744.0,1.0 -745.0,1.0 -746.0,1.0 -747.0,1.0 -748.0,1.0 -749.0,1.0 -750.0,1.0 -751.0,1.0 -752.0,1.0 -753.0,1.0 -754.0,1.0 -755.0,1.0 -756.0,1.0 -757.0,1.0 -758.0,1.0 -759.0,1.0 -760.0,1.0 -761.0,1.0 -762.0,1.0 -763.0,1.0 -764.0,1.0 -765.0,1.0 -766.0,1.0 -767.0,1.0 -768.0,1.0 -769.0,1.0 -770.0,1.0 -771.0,1.0 -772.0,1.0 -773.0,1.0 -774.0,1.0 -775.0,1.0 -776.0,1.0 -777.0,1.0 -778.0,1.0 -779.0,1.0 -780.0,1.0 -781.0,1.0 -782.0,1.0 -783.0,1.0 -784.0,1.0 -785.0,1.0 -786.0,1.0 -787.0,1.0 -788.0,1.0 -789.0,1.0 -790.0,1.0 -791.0,1.0 -792.0,1.0 -793.0,1.0 -794.0,1.0 -795.0,1.0 -796.0,1.0 -797.0,1.0 -798.0,1.0 -799.0,1.0 -800.0,1.0 -801.0,1.0 -802.0,1.0 -803.0,1.0 -804.0,1.0 -805.0,1.0 -806.0,1.0 -807.0,1.0 -808.0,1.0 -809.0,1.0 -810.0,1.0 -811.0,1.0 -812.0,1.0 -813.0,1.0 -814.0,1.0 -815.0,1.0 -816.0,1.0 -817.0,1.0 -818.0,1.0 -819.0,1.0 -820.0,1.0 -821.0,1.0 -822.0,1.0 -823.0,1.0 -824.0,1.0 -825.0,1.0 -826.0,1.0 -827.0,1.0 -828.0,1.0 -829.0,1.0 -830.0,1.0 -831.0,1.0 -832.0,1.0 -833.0,1.0 -834.0,1.0 -835.0,1.0 -836.0,1.0 -837.0,1.0 -838.0,1.0 -839.0,1.0 -840.0,1.0 -841.0,1.0 -842.0,1.0 -843.0,1.0 -844.0,1.0 -845.0,1.0 -846.0,1.0 -847.0,1.0 -848.0,1.0 -849.0,1.0 -850.0,1.0 -851.0,1.0 -852.0,1.0 -853.0,1.0 -854.0,1.0 -855.0,1.0 -856.0,1.0 -857.0,1.0 -858.0,1.0 -859.0,1.0 -860.0,1.0 -861.0,1.0 -862.0,1.0 -863.0,1.0 -864.0,1.0 -865.0,1.0 -866.0,1.0 -867.0,1.0 -868.0,1.0 -869.0,1.0 -870.0,1.0 -871.0,1.0 -872.0,1.0 -873.0,1.0 -874.0,1.0 -875.0,1.0 -876.0,1.0 -877.0,1.0 -878.0,1.0 -879.0,1.0 -880.0,1.0 -881.0,1.0 -882.0,1.0 -883.0,1.0 -884.0,1.0 -885.0,1.0 -886.0,1.0 -887.0,1.0 -888.0,1.0 -889.0,1.0 -890.0,1.0 -891.0,1.0 -892.0,1.0 -893.0,1.0 -894.0,1.0 -895.0,1.0 -896.0,1.0 -897.0,1.0 -898.0,1.0 -899.0,1.0 -900.0,1.0 -901.0,1.0 -902.0,1.0 -903.0,1.0 -904.0,1.0 -905.0,1.0 -906.0,1.0 -907.0,1.0 -908.0,1.0 -909.0,1.0 -910.0,1.0 -911.0,1.0 -912.0,1.0 -913.0,1.0 -914.0,1.0 -915.0,1.0 -916.0,1.0 -917.0,1.0 -918.0,1.0 -919.0,1.0 -920.0,1.0 -921.0,1.0 -922.0,1.0 -923.0,1.0 -924.0,1.0 -925.0,1.0 -926.0,1.0 -927.0,1.0 -928.0,1.0 -929.0,1.0 -930.0,1.0 -931.0,1.0 -932.0,1.0 -933.0,1.0 -934.0,1.0 -935.0,1.0 -936.0,1.0 -937.0,1.0 -938.0,1.0 -939.0,1.0 -940.0,1.0 -941.0,1.0 -942.0,1.0 -943.0,1.0 -944.0,1.0 -945.0,1.0 -946.0,1.0 -947.0,1.0 -948.0,1.0 -949.0,1.0 -950.0,1.0 -951.0,1.0 -952.0,1.0 -953.0,1.0 -954.0,1.0 -955.0,1.0 -956.0,1.0 -957.0,1.0 -958.0,1.0 -959.0,1.0 -960.0,1.0 -961.0,1.0 -962.0,1.0 -963.0,1.0 -964.0,1.0 -965.0,1.0 -966.0,1.0 -967.0,1.0 -968.0,1.0 -969.0,1.0 -970.0,1.0 -971.0,1.0 -972.0,1.0 -973.0,1.0 -974.0,1.0 -975.0,1.0 -976.0,1.0 -977.0,1.0 -978.0,1.0 -979.0,1.0 -980.0,1.0 -981.0,1.0 -982.0,1.0 -983.0,1.0 -984.0,1.0 -985.0,1.0 -986.0,1.0 -987.0,1.0 -988.0,1.0 -989.0,1.0 -990.0,1.0 -991.0,1.0 -992.0,1.0 -993.0,1.0 -994.0,1.0 -995.0,1.0 -996.0,1.0 -997.0,1.0 -998.0,1.0 -999.0,1.0 -1000.0,1.0 -1001.0,1.0 -1002.0,1.0 -1003.0,1.0 -1004.0,1.0 -1005.0,1.0 -1006.0,1.0 -1007.0,1.0 -1008.0,1.0 -1009.0,1.0 -1010.0,1.0 -1011.0,1.0 -1012.0,1.0 -1013.0,1.0 -1014.0,1.0 -1015.0,1.0 -1016.0,1.0 -1017.0,1.0 -1018.0,1.0 -1019.0,1.0 -1020.0,1.0 -1021.0,1.0 -1022.0,1.0 -1023.0,1.0 -1024.0,1.0 -1025.0,1.0 -1026.0,1.0 -1027.0,1.0 -1028.0,1.0 -1029.0,1.0 -1030.0,1.0 -1031.0,1.0 -1032.0,1.0 -1033.0,1.0 -1034.0,1.0 -1035.0,1.0 -1036.0,1.0 -1037.0,1.0 -1038.0,1.0 -1039.0,1.0 -1040.0,1.0 -1041.0,1.0 -1042.0,1.0 -1043.0,1.0 -1044.0,1.0 -1045.0,1.0 -1046.0,1.0 -1047.0,1.0 -1048.0,1.0 -1049.0,1.0 -1050.0,1.0 -1051.0,1.0 -1052.0,1.0 -1053.0,1.0 -1054.0,1.0 -1055.0,1.0 -1056.0,1.0 -1057.0,1.0 -1058.0,1.0 -1059.0,1.0 -1060.0,1.0 -1061.0,1.0 -1062.0,1.0 -1063.0,1.0 -1064.0,1.0 -1065.0,1.0 -1066.0,1.0 -1067.0,1.0 -1068.0,1.0 -1069.0,1.0 -1070.0,1.0 -1071.0,1.0 -1072.0,1.0 -1073.0,1.0 -1074.0,1.0 -1075.0,1.0 -1076.0,1.0 -1077.0,1.0 -1078.0,1.0 -1079.0,1.0 -1080.0,1.0 -1081.0,1.0 -1082.0,1.0 -1083.0,1.0 -1084.0,1.0 -1085.0,1.0 -1086.0,1.0 -1087.0,1.0 -1088.0,1.0 -1089.0,1.0 -1090.0,1.0 -1091.0,1.0 -1092.0,1.0 -1093.0,1.0 -1094.0,1.0 -1095.0,1.0 -1096.0,1.0 -1097.0,1.0 -1098.0,1.0 -1099.0,1.0 -1100.0,1.0 -1101.0,1.0 -1102.0,1.0 -1103.0,1.0 -1104.0,1.0 -1105.0,1.0 -1106.0,1.0 -1107.0,1.0 -1108.0,1.0 -1109.0,1.0 -1110.0,1.0 -1111.0,1.0 -1112.0,1.0 -1113.0,1.0 -1114.0,1.0 -1115.0,1.0 -1116.0,1.0 -1117.0,1.0 -1118.0,1.0 -1119.0,1.0 -1120.0,1.0 -1121.0,1.0 -1122.0,1.0 -1123.0,1.0 -1124.0,1.0 -1125.0,1.0 -1126.0,1.0 -1127.0,1.0 -1128.0,1.0 -1129.0,1.0 -1130.0,1.0 -1131.0,1.0 -1132.0,1.0 -1133.0,1.0 -1134.0,1.0 -1135.0,1.0 -1136.0,1.0 -1137.0,1.0 -1138.0,1.0 -1139.0,1.0 -1140.0,1.0 -1141.0,1.0 -1142.0,1.0 -1143.0,1.0 -1144.0,1.0 -1145.0,1.0 -1146.0,1.0 -1147.0,1.0 -1148.0,1.0 -1149.0,1.0 -1150.0,1.0 -1151.0,1.0 -1152.0,1.0 -1153.0,1.0 -1154.0,1.0 -1155.0,1.0 -1156.0,1.0 -1157.0,1.0 -1158.0,1.0 -1159.0,1.0 -1160.0,1.0 -1161.0,1.0 -1162.0,1.0 -1163.0,1.0 -1164.0,1.0 -1165.0,1.0 -1166.0,1.0 -1167.0,1.0 -1168.0,1.0 -1169.0,1.0 -1170.0,1.0 -1171.0,1.0 -1172.0,1.0 -1173.0,1.0 -1174.0,1.0 -1175.0,1.0 -1176.0,1.0 -1177.0,1.0 -1178.0,1.0 -1179.0,1.0 -1180.0,1.0 -1181.0,1.0 -1182.0,1.0 -1183.0,1.0 -1184.0,1.0 -1185.0,1.0 -1186.0,1.0 -1187.0,1.0 -1188.0,1.0 -1189.0,1.0 -1190.0,1.0 -1191.0,1.0 -1192.0,1.0 -1193.0,1.0 -1194.0,1.0 -1195.0,1.0 -1196.0,1.0 -1197.0,1.0 -1198.0,1.0 -1199.0,1.0 -1200.0,1.0 -1201.0,1.0 -1202.0,1.0 -1203.0,1.0 -1204.0,1.0 -1205.0,1.0 -1206.0,1.0 -1207.0,1.0 -1208.0,1.0 -1209.0,1.0 -1210.0,1.0 -1211.0,1.0 -1212.0,1.0 -1213.0,1.0 -1214.0,1.0 -1215.0,1.0 -1216.0,1.0 -1217.0,1.0 -1218.0,1.0 -1219.0,1.0 -1220.0,1.0 -1221.0,1.0 -1222.0,1.0 -1223.0,1.0 -1224.0,1.0 -1225.0,1.0 -1226.0,1.0 -1227.0,1.0 -1228.0,1.0 -1229.0,1.0 -1230.0,1.0 -1231.0,1.0 -1232.0,1.0 -1233.0,1.0 -1234.0,1.0 -1235.0,1.0 -1236.0,1.0 -1237.0,1.0 -1238.0,1.0 -1239.0,1.0 -1240.0,1.0 -1241.0,1.0 -1242.0,1.0 -1243.0,1.0 -1244.0,1.0 -1245.0,1.0 -1246.0,1.0 -1247.0,1.0 -1248.0,1.0 -1249.0,1.0 -1250.0,1.0 -1251.0,1.0 -1252.0,1.0 -1253.0,1.0 -1254.0,1.0 -1255.0,1.0 -1256.0,1.0 -1257.0,1.0 -1258.0,1.0 -1259.0,1.0 -1260.0,1.0 -1261.0,1.0 -1262.0,1.0 -1263.0,1.0 -1264.0,1.0 -1265.0,1.0 -1266.0,1.0 -1267.0,1.0 -1268.0,1.0 -1269.0,1.0 -1270.0,1.0 -1271.0,1.0 -1272.0,1.0 -1273.0,1.0 -1274.0,1.0 -1275.0,1.0 -1276.0,1.0 -1277.0,1.0 -1278.0,1.0 -1279.0,1.0 -1280.0,1.0 -1281.0,1.0 -1282.0,1.0 -1283.0,1.0 -1284.0,1.0 -1285.0,1.0 -1286.0,1.0 -1287.0,1.0 -1288.0,1.0 -1289.0,1.0 -1290.0,1.0 -1291.0,1.0 -1292.0,1.0 -1293.0,1.0 -1294.0,1.0 -1295.0,1.0 -1296.0,1.0 -1297.0,1.0 -1298.0,1.0 -1299.0,1.0 -1300.0,1.0 -1301.0,1.0 -1302.0,1.0 -1303.0,1.0 -1304.0,1.0 -1305.0,1.0 -1306.0,1.0 -1307.0,1.0 -1308.0,1.0 -1309.0,1.0 -1310.0,1.0 -1311.0,1.0 -1312.0,1.0 -1313.0,1.0 -1314.0,1.0 -1315.0,1.0 -1316.0,1.0 -1317.0,1.0 -1318.0,1.0 -1319.0,1.0 -1320.0,1.0 -1321.0,1.0 -1322.0,1.0 -1323.0,1.0 -1324.0,1.0 -1325.0,1.0 -1326.0,1.0 -1327.0,1.0 -1328.0,1.0 -1329.0,1.0 -1330.0,1.0 -1331.0,1.0 -1332.0,1.0 -1333.0,1.0 -1334.0,1.0 -1335.0,1.0 -1336.0,1.0 -1337.0,1.0 -1338.0,1.0 -1339.0,1.0 -1340.0,1.0 -1341.0,1.0 -1342.0,1.0 -1343.0,1.0 -1344.0,1.0 -1345.0,1.0 -1346.0,1.0 -1347.0,1.0 -1348.0,1.0 -1349.0,1.0 -1350.0,1.0 -1351.0,1.0 -1352.0,1.0 -1353.0,1.0 -1354.0,1.0 -1355.0,1.0 -1356.0,1.0 -1357.0,1.0 -1358.0,1.0 -1359.0,1.0 -1360.0,1.0 -1361.0,1.0 -1362.0,1.0 -1363.0,1.0 -1364.0,1.0 -1365.0,1.0 -1366.0,1.0 -1367.0,1.0 -1368.0,1.0 -1369.0,1.0 -1370.0,1.0 -1371.0,1.0 -1372.0,1.0 -1373.0,1.0 -1374.0,1.0 -1375.0,1.0 -1376.0,1.0 -1377.0,1.0 -1378.0,1.0 -1379.0,1.0 -1380.0,1.0 -1381.0,1.0 -1382.0,1.0 -1383.0,1.0 -1384.0,1.0 -1385.0,1.0 -1386.0,1.0 -1387.0,1.0 -1388.0,1.0 -1389.0,1.0 -1390.0,1.0 -1391.0,1.0 -1392.0,1.0 -1393.0,1.0 -1394.0,1.0 -1395.0,1.0 -1396.0,1.0 -1397.0,1.0 -1398.0,1.0 -1399.0,1.0 -1400.0,1.0 -1401.0,1.0 -1402.0,1.0 -1403.0,1.0 -1404.0,1.0 -1405.0,1.0 -1406.0,1.0 -1407.0,1.0 -1408.0,1.0 -1409.0,1.0 -1410.0,1.0 -1411.0,1.0 -1412.0,1.0 -1413.0,1.0 -1414.0,1.0 -1415.0,1.0 -1416.0,1.0 -1417.0,1.0 -1418.0,1.0 -1419.0,1.0 -1420.0,1.0 -1421.0,1.0 -1422.0,1.0 -1423.0,1.0 -1424.0,1.0 -1425.0,1.0 -1426.0,1.0 -1427.0,1.0 -1428.0,1.0 -1429.0,1.0 -1430.0,1.0 -1431.0,1.0 -1432.0,1.0 -1433.0,1.0 -1434.0,1.0 -1435.0,1.0 -1436.0,1.0 -1437.0,1.0 -1438.0,1.0 -1439.0,1.0 -1440.0,1.0 -1441.0,1.0 -1442.0,1.0 -1443.0,1.0 -1444.0,1.0 -1445.0,1.0 -1446.0,1.0 -1447.0,1.0 -1448.0,1.0 -1449.0,1.0 -1450.0,1.0 -1451.0,1.0 -1452.0,1.0 -1453.0,1.0 -1454.0,1.0 -1455.0,1.0 -1456.0,1.0 -1457.0,1.0 -1458.0,1.0 -1459.0,1.0 -1460.0,1.0 -1461.0,1.0 -1462.0,1.0 -1463.0,1.0 -1464.0,1.0 -1465.0,1.0 -1466.0,1.0 -1467.0,1.0 -1468.0,1.0 -1469.0,1.0 -1470.0,1.0 -1471.0,1.0 -1472.0,1.0 -1473.0,1.0 -1474.0,1.0 -1475.0,1.0 -1476.0,1.0 -1477.0,1.0 -1478.0,1.0 -1479.0,1.0 -1480.0,1.0 -1481.0,1.0 -1482.0,1.0 -1483.0,1.0 -1484.0,1.0 -1485.0,1.0 -1486.0,1.0 -1487.0,1.0 -1488.0,1.0 -1489.0,1.0 -1490.0,1.0 -1491.0,1.0 -1492.0,1.0 -1493.0,1.0 -1494.0,1.0 -1495.0,1.0 -1496.0,1.0 -1497.0,1.0 -1498.0,1.0 -1499.0,1.0 -1500.0,1.0 -1501.0,1.0 -1502.0,1.0 -1503.0,1.0 -1504.0,1.0 -1505.0,1.0 -1506.0,1.0 -1507.0,1.0 -1508.0,1.0 -1509.0,1.0 -1510.0,1.0 -1511.0,1.0 -1512.0,1.0 -1513.0,1.0 -1514.0,1.0 -1515.0,1.0 -1516.0,1.0 -1517.0,1.0 -1518.0,1.0 -1519.0,1.0 -1520.0,1.0 -1521.0,1.0 -1522.0,1.0 -1523.0,1.0 -1524.0,1.0 -1525.0,1.0 -1526.0,1.0 -1527.0,1.0 -1528.0,1.0 -1529.0,1.0 -1530.0,1.0 -1531.0,1.0 -1532.0,1.0 -1533.0,1.0 -1534.0,1.0 -1535.0,1.0 -1536.0,1.0 -1537.0,1.0 -1538.0,1.0 -1539.0,1.0 -1540.0,1.0 -1541.0,1.0 -1542.0,1.0 -1543.0,1.0 -1544.0,1.0 -1545.0,1.0 -1546.0,1.0 -1547.0,1.0 -1548.0,1.0 -1549.0,1.0 -1550.0,1.0 -1551.0,1.0 -1552.0,1.0 -1553.0,1.0 -1554.0,1.0 -1555.0,1.0 -1556.0,1.0 -1557.0,1.0 -1558.0,1.0 -1559.0,1.0 -1560.0,1.0 -1561.0,1.0 -1562.0,1.0 -1563.0,1.0 -1564.0,1.0 -1565.0,1.0 -1566.0,1.0 -1567.0,1.0 -1568.0,1.0 -1569.0,1.0 -1570.0,1.0 -1571.0,1.0 -1572.0,1.0 -1573.0,1.0 -1574.0,1.0 -1575.0,1.0 -1576.0,1.0 -1577.0,1.0 -1578.0,1.0 -1579.0,1.0 -1580.0,1.0 -1581.0,1.0 -1582.0,1.0 -1583.0,1.0 -1584.0,1.0 -1585.0,1.0 -1586.0,1.0 -1587.0,1.0 -1588.0,1.0 -1589.0,1.0 -1590.0,1.0 -1591.0,1.0 -1592.0,1.0 -1593.0,1.0 -1594.0,1.0 -1595.0,1.0 -1596.0,1.0 -1597.0,1.0 -1598.0,1.0 -1599.0,1.0 -1600.0,1.0 -1601.0,1.0 -1602.0,1.0 -1603.0,1.0 -1604.0,1.0 -1605.0,1.0 -1606.0,1.0 -1607.0,1.0 -1608.0,1.0 -1609.0,1.0 -1610.0,1.0 -1611.0,1.0 -1612.0,1.0 -1613.0,1.0 -1614.0,1.0 -1615.0,1.0 -1616.0,1.0 -1617.0,1.0 -1618.0,1.0 -1619.0,1.0 -1620.0,1.0 -1621.0,1.0 -1622.0,1.0 -1623.0,1.0 -1624.0,1.0 -1625.0,1.0 -1626.0,1.0 -1627.0,1.0 -1628.0,1.0 -1629.0,1.0 -1630.0,1.0 -1631.0,1.0 -1632.0,1.0 -1633.0,1.0 -1634.0,1.0 -1635.0,1.0 -1636.0,1.0 -1637.0,1.0 -1638.0,1.0 -1639.0,1.0 -1640.0,1.0 -1641.0,1.0 -1642.0,1.0 -1643.0,1.0 -1644.0,1.0 -1645.0,1.0 -1646.0,1.0 -1647.0,1.0 -1648.0,1.0 -1649.0,1.0 -1650.0,1.0 -1651.0,1.0 -1652.0,1.0 -1653.0,1.0 -1654.0,1.0 -1655.0,1.0 -1656.0,1.0 -1657.0,1.0 -1658.0,1.0 -1659.0,1.0 -1660.0,1.0 -1661.0,1.0 -1662.0,1.0 -1663.0,1.0 -1664.0,1.0 -1665.0,1.0 -1666.0,1.0 -1667.0,1.0 -1668.0,1.0 -1669.0,1.0 -1670.0,1.0 -1671.0,1.0 -1672.0,1.0 -1673.0,1.0 -1674.0,1.0 -1675.0,1.0 -1676.0,1.0 -1677.0,1.0 -1678.0,1.0 -1679.0,1.0 -1680.0,1.0 -1681.0,1.0 -1682.0,1.0 -1683.0,1.0 -1684.0,1.0 -1685.0,1.0 -1686.0,1.0 -1687.0,1.0 -1688.0,1.0 -1689.0,1.0 -1690.0,1.0 -1691.0,1.0 -1692.0,1.0 -1693.0,1.0 -1694.0,1.0 -1695.0,1.0 -1696.0,1.0 -1697.0,1.0 -1698.0,1.0 -1699.0,1.0 -1700.0,1.0 -1701.0,1.0 -1702.0,1.0 -1703.0,1.0 -1704.0,1.0 -1705.0,1.0 -1706.0,1.0 -1707.0,1.0 -1708.0,1.0 -1709.0,1.0 -1710.0,1.0 -1711.0,1.0 -1712.0,1.0 -1713.0,1.0 -1714.0,1.0 -1715.0,1.0 -1716.0,1.0 -1717.0,1.0 -1718.0,1.0 -1719.0,1.0 -1720.0,1.0 -1721.0,1.0 -1722.0,1.0 -1723.0,1.0 -1724.0,1.0 -1725.0,1.0 -1726.0,1.0 -1727.0,1.0 -1728.0,1.0 -1729.0,1.0 -1730.0,1.0 -1731.0,1.0 -1732.0,1.0 -1733.0,1.0 -1734.0,1.0 -1735.0,1.0 -1736.0,1.0 -1737.0,1.0 -1738.0,1.0 -1739.0,1.0 -1740.0,1.0 -1741.0,1.0 -1742.0,1.0 -1743.0,1.0 -1744.0,1.0 -1745.0,1.0 -1746.0,1.0 -1747.0,1.0 -1748.0,1.0 -1749.0,1.0 -1750.0,1.0 -1751.0,1.0 -1752.0,1.0 -1753.0,1.0 -1754.0,1.0 -1755.0,1.0 -1756.0,1.0 -1757.0,1.0 -1758.0,1.0 -1759.0,1.0 -1760.0,1.0 -1761.0,1.0 -1762.0,1.0 -1763.0,1.0 -1764.0,1.0 -1765.0,1.0 -1766.0,1.0 -1767.0,1.0 -1768.0,1.0 -1769.0,1.0 -1770.0,1.0 -1771.0,1.0 -1772.0,1.0 -1773.0,1.0 -1774.0,1.0 -1775.0,1.0 -1776.0,1.0 -1777.0,1.0 -1778.0,1.0 -1779.0,1.0 -1780.0,1.0 -1781.0,1.0 -1782.0,1.0 -1783.0,1.0 -1784.0,1.0 -1785.0,1.0 -1786.0,1.0 -1787.0,1.0 -1788.0,1.0 -1789.0,1.0 -1790.0,1.0 -1791.0,1.0 -1792.0,1.0 -1793.0,1.0 -1794.0,1.0 -1795.0,1.0 -1796.0,1.0 -1797.0,1.0 -1798.0,1.0 -1799.0,1.0 -1800.0,1.0 -1801.0,1.0 -1802.0,1.0 -1803.0,1.0 -1804.0,1.0 -1805.0,1.0 -1806.0,1.0 -1807.0,1.0 -1808.0,1.0 -1809.0,1.0 -1810.0,1.0 -1811.0,1.0 -1812.0,1.0 -1813.0,1.0 -1814.0,1.0 -1815.0,1.0 -1816.0,1.0 -1817.0,1.0 -1818.0,1.0 -1819.0,1.0 -1820.0,1.0 -1821.0,1.0 -1822.0,1.0 -1823.0,1.0 -1824.0,1.0 -1825.0,1.0 -1826.0,1.0 -1827.0,1.0 -1828.0,1.0 -1829.0,1.0 -1830.0,1.0 -1831.0,1.0 -1832.0,1.0 -1833.0,1.0 -1834.0,1.0 -1835.0,1.0 -1836.0,1.0 -1837.0,1.0 -1838.0,1.0 -1839.0,1.0 -1840.0,1.0 -1841.0,1.0 -1842.0,1.0 -1843.0,1.0 -1844.0,1.0 -1845.0,1.0 -1846.0,1.0 -1847.0,1.0 -1848.0,1.0 -1849.0,1.0 -1850.0,1.0 -1851.0,1.0 -1852.0,1.0 -1853.0,1.0 -1854.0,1.0 -1855.0,1.0 -1856.0,1.0 -1857.0,1.0 -1858.0,1.0 -1859.0,1.0 -1860.0,1.0 -1861.0,1.0 -1862.0,1.0 -1863.0,1.0 -1864.0,1.0 -1865.0,1.0 -1866.0,1.0 -1867.0,1.0 -1868.0,1.0 -1869.0,1.0 -1870.0,1.0 -1871.0,1.0 -1872.0,1.0 -1873.0,1.0 -1874.0,1.0 -1875.0,1.0 -1876.0,1.0 -1877.0,1.0 -1878.0,1.0 -1879.0,1.0 -1880.0,1.0 -1881.0,1.0 -1882.0,1.0 -1883.0,1.0 -1884.0,1.0 -1885.0,1.0 -1886.0,1.0 -1887.0,1.0 -1888.0,1.0 -1889.0,1.0 -1890.0,1.0 -1891.0,1.0 -1892.0,1.0 -1893.0,1.0 -1894.0,1.0 -1895.0,1.0 -1896.0,1.0 -1897.0,1.0 -1898.0,1.0 -1899.0,1.0 -1900.0,1.0 -1901.0,1.0 -1902.0,1.0 -1903.0,1.0 -1904.0,1.0 -1905.0,1.0 -1906.0,1.0 -1907.0,1.0 -1908.0,1.0 -1909.0,1.0 -1910.0,1.0 -1911.0,1.0 -1912.0,1.0 -1913.0,1.0 -1914.0,1.0 -1915.0,1.0 -1916.0,1.0 -1917.0,1.0 -1918.0,1.0 -1919.0,1.0 -1920.0,1.0 -1921.0,1.0 -1922.0,1.0 -1923.0,1.0 -1924.0,1.0 -1925.0,1.0 -1926.0,1.0 -1927.0,1.0 -1928.0,1.0 -1929.0,1.0 -1930.0,1.0 -1931.0,1.0 -1932.0,1.0 -1933.0,1.0 -1934.0,1.0 -1935.0,1.0 -1936.0,1.0 -1937.0,1.0 -1938.0,1.0 -1939.0,1.0 -1940.0,1.0 -1941.0,1.0 -1942.0,1.0 -1943.0,1.0 -1944.0,1.0 -1945.0,1.0 -1946.0,1.0 -1947.0,1.0 -1948.0,1.0 -1949.0,1.0 -1950.0,1.0 -1951.0,1.0 -1952.0,1.0 -1953.0,1.0 -1954.0,1.0 -1955.0,1.0 -1956.0,1.0 -1957.0,1.0 -1958.0,1.0 -1959.0,1.0 -1960.0,1.0 -1961.0,1.0 -1962.0,1.0 -1963.0,1.0 -1964.0,1.0 -1965.0,1.0 -1966.0,1.0 -1967.0,1.0 -1968.0,1.0 -1969.0,1.0 -1970.0,1.0 -1971.0,1.0 -1972.0,1.0 -1973.0,1.0 -1974.0,1.0 -1975.0,1.0 -1976.0,1.0 -1977.0,1.0 -1978.0,1.0 -1979.0,1.0 -1980.0,1.0 -1981.0,1.0 -1982.0,1.0 -1983.0,1.0 -1984.0,1.0 -1985.0,1.0 -1986.0,1.0 -1987.0,1.0 -1988.0,1.0 -1989.0,1.0 -1990.0,1.0 -1991.0,1.0 -1992.0,1.0 -1993.0,1.0 -1994.0,1.0 -1995.0,1.0 -1996.0,1.0 -1997.0,1.0 -1998.0,1.0 -1999.0,1.0 -2000.0,1.0 -2001.0,1.0 -2002.0,1.0 -2003.0,1.0 -2004.0,1.0 -2005.0,1.0 -2006.0,1.0 -2007.0,1.0 -2008.0,1.0 -2009.0,1.0 -2010.0,1.0 -2011.0,1.0 -2012.0,1.0 -2013.0,1.0 -2014.0,1.0 -2015.0,1.0 -2016.0,1.0 -2017.0,1.0 -2018.0,1.0 -2019.0,1.0 -2020.0,1.0 -2021.0,1.0 -2022.0,1.0 -2023.0,1.0 -2024.0,1.0 -2025.0,1.0 -2026.0,1.0 -2027.0,1.0 -2028.0,1.0 -2029.0,1.0 -2030.0,1.0 -2031.0,1.0 -2032.0,1.0 -2033.0,1.0 -2034.0,1.0 -2035.0,1.0 -2036.0,1.0 -2037.0,1.0 -2038.0,1.0 -2039.0,1.0 -2040.0,1.0 -2041.0,1.0 -2042.0,1.0 -2043.0,1.0 -2044.0,1.0 -2045.0,1.0 -2046.0,1.0 -2047.0,1.0 -2048.0,1.0 -2049.0,1.0 -2050.0,1.0 -2051.0,1.0 -2052.0,1.0 -2053.0,1.0 -2054.0,1.0 -2055.0,1.0 -2056.0,1.0 -2057.0,1.0 -2058.0,1.0 -2059.0,1.0 -2060.0,1.0 -2061.0,1.0 -2062.0,1.0 -2063.0,1.0 -2064.0,1.0 -2065.0,1.0 -2066.0,1.0 -2067.0,1.0 -2068.0,1.0 -2069.0,1.0 -2070.0,1.0 -2071.0,1.0 -2072.0,1.0 -2073.0,1.0 -2074.0,1.0 -2075.0,1.0 -2076.0,1.0 -2077.0,1.0 -2078.0,1.0 -2079.0,1.0 -2080.0,1.0 -2081.0,1.0 -2082.0,1.0 -2083.0,1.0 -2084.0,1.0 -2085.0,1.0 -2086.0,1.0 -2087.0,1.0 -2088.0,1.0 -2089.0,1.0 -2090.0,1.0 -2091.0,1.0 -2092.0,1.0 -2093.0,1.0 -2094.0,1.0 -2095.0,1.0 -2096.0,1.0 -2097.0,1.0 -2098.0,1.0 -2099.0,1.0 -2100.0,1.0 -2101.0,1.0 -2102.0,1.0 -2103.0,1.0 -2104.0,1.0 -2105.0,1.0 -2106.0,1.0 -2107.0,1.0 -2108.0,1.0 -2109.0,1.0 -2110.0,1.0 -2111.0,1.0 -2112.0,1.0 -2113.0,1.0 -2114.0,1.0 -2115.0,1.0 -2116.0,1.0 -2117.0,1.0 -2118.0,1.0 -2119.0,1.0 -2120.0,1.0 -2121.0,1.0 -2122.0,1.0 -2123.0,1.0 -2124.0,1.0 -2125.0,1.0 -2126.0,1.0 -2127.0,1.0 -2128.0,1.0 -2129.0,1.0 -2130.0,1.0 -2131.0,1.0 -2132.0,1.0 -2133.0,1.0 -2134.0,1.0 -2135.0,1.0 -2136.0,1.0 -2137.0,1.0 -2138.0,1.0 -2139.0,1.0 -2140.0,1.0 -2141.0,1.0 -2142.0,1.0 -2143.0,1.0 -2144.0,1.0 -2145.0,1.0 -2146.0,1.0 -2147.0,1.0 -2148.0,1.0 -2149.0,1.0 -2150.0,1.0 -2151.0,1.0 -2152.0,1.0 -2153.0,1.0 -2154.0,1.0 -2155.0,1.0 -2156.0,1.0 -2157.0,1.0 -2158.0,1.0 -2159.0,1.0 -2160.0,1.0 -2161.0,1.0 -2162.0,1.0 -2163.0,1.0 -2164.0,1.0 -2165.0,1.0 -2166.0,1.0 -2167.0,1.0 -2168.0,1.0 -2169.0,1.0 -2170.0,1.0 -2171.0,1.0 -2172.0,1.0 -2173.0,1.0 -2174.0,1.0 -2175.0,1.0 -2176.0,1.0 -2177.0,1.0 -2178.0,1.0 -2179.0,1.0 -2180.0,1.0 -2181.0,1.0 -2182.0,1.0 -2183.0,1.0 -2184.0,1.0 -2185.0,1.0 -2186.0,1.0 -2187.0,1.0 -2188.0,1.0 -2189.0,1.0 -2190.0,1.0 -2191.0,1.0 -2192.0,1.0 -2193.0,1.0 -2194.0,1.0 -2195.0,1.0 -2196.0,1.0 -2197.0,1.0 -2198.0,1.0 -2199.0,1.0 -2200.0,1.0 -2201.0,1.0 -2202.0,1.0 -2203.0,1.0 -2204.0,1.0 -2205.0,1.0 -2206.0,1.0 -2207.0,1.0 -2208.0,1.0 -2209.0,1.0 -2210.0,1.0 -2211.0,1.0 -2212.0,1.0 -2213.0,1.0 -2214.0,1.0 -2215.0,1.0 -2216.0,1.0 -2217.0,1.0 -2218.0,1.0 -2219.0,1.0 -2220.0,1.0 -2221.0,1.0 -2222.0,1.0 -2223.0,1.0 -2224.0,1.0 -2225.0,1.0 -2226.0,1.0 -2227.0,1.0 -2228.0,1.0 -2229.0,1.0 -2230.0,1.0 -2231.0,1.0 -2232.0,1.0 -2233.0,1.0 -2234.0,1.0 -2235.0,1.0 -2236.0,1.0 -2237.0,1.0 -2238.0,1.0 -2239.0,1.0 -2240.0,1.0 -2241.0,1.0 -2242.0,1.0 -2243.0,1.0 -2244.0,1.0 -2245.0,1.0 -2246.0,1.0 -2247.0,1.0 -2248.0,1.0 -2249.0,1.0 -2250.0,1.0 -2251.0,1.0 -2252.0,1.0 -2253.0,1.0 -2254.0,1.0 -2255.0,1.0 -2256.0,1.0 -2257.0,1.0 -2258.0,1.0 -2259.0,1.0 -2260.0,1.0 -2261.0,1.0 -2262.0,1.0 -2263.0,1.0 -2264.0,1.0 -2265.0,1.0 -2266.0,1.0 -2267.0,1.0 -2268.0,1.0 -2269.0,1.0 -2270.0,1.0 -2271.0,1.0 -2272.0,1.0 -2273.0,1.0 -2274.0,1.0 -2275.0,1.0 -2276.0,1.0 -2277.0,1.0 -2278.0,1.0 -2279.0,1.0 -2280.0,1.0 -2281.0,1.0 -2282.0,1.0 -2283.0,1.0 -2284.0,1.0 -2285.0,1.0 -2286.0,1.0 -2287.0,1.0 -2288.0,1.0 -2289.0,1.0 -2290.0,1.0 -2291.0,1.0 -2292.0,1.0 -2293.0,1.0 -2294.0,1.0 -2295.0,1.0 -2296.0,1.0 -2297.0,1.0 -2298.0,1.0 -2299.0,1.0 -2300.0,1.0 -2301.0,1.0 -2302.0,1.0 -2303.0,1.0 -2304.0,1.0 -2305.0,1.0 -2306.0,1.0 -2307.0,1.0 -2308.0,1.0 -2309.0,1.0 -2310.0,1.0 -2311.0,1.0 -2312.0,1.0 -2313.0,1.0 -2314.0,1.0 -2315.0,1.0 -2316.0,1.0 -2317.0,1.0 -2318.0,1.0 -2319.0,1.0 -2320.0,1.0 -2321.0,1.0 -2322.0,1.0 -2323.0,1.0 -2324.0,1.0 -2325.0,1.0 -2326.0,1.0 -2327.0,1.0 -2328.0,1.0 -2329.0,1.0 -2330.0,1.0 -2331.0,1.0 -2332.0,1.0 -2333.0,1.0 -2334.0,1.0 -2335.0,1.0 -2336.0,1.0 -2337.0,1.0 -2338.0,1.0 -2339.0,1.0 -2340.0,1.0 -2341.0,1.0 -2342.0,1.0 -2343.0,1.0 -2344.0,1.0 -2345.0,1.0 -2346.0,1.0 -2347.0,1.0 -2348.0,1.0 -2349.0,1.0 -2350.0,1.0 -2351.0,1.0 -2352.0,1.0 -2353.0,1.0 -2354.0,1.0 -2355.0,1.0 -2356.0,1.0 -2357.0,1.0 -2358.0,1.0 -2359.0,1.0 -2360.0,1.0 -2361.0,1.0 -2362.0,1.0 -2363.0,1.0 -2364.0,1.0 -2365.0,1.0 -2366.0,1.0 -2367.0,1.0 -2368.0,1.0 -2369.0,1.0 -2370.0,1.0 -2371.0,1.0 -2372.0,1.0 -2373.0,1.0 -2374.0,1.0 -2375.0,1.0 -2376.0,1.0 -2377.0,1.0 -2378.0,1.0 -2379.0,1.0 -2380.0,1.0 -2381.0,1.0 -2382.0,1.0 -2383.0,1.0 -2384.0,1.0 -2385.0,1.0 -2386.0,1.0 -2387.0,1.0 -2388.0,1.0 -2389.0,1.0 -2390.0,1.0 -2391.0,1.0 -2392.0,1.0 -2393.0,1.0 -2394.0,1.0 -2395.0,1.0 -2396.0,1.0 -2397.0,1.0 -2398.0,1.0 -2399.0,1.0 -2400.0,1.0 -2401.0,1.0 -2402.0,1.0 -2403.0,1.0 -2404.0,1.0 -2405.0,1.0 -2406.0,1.0 -2407.0,1.0 -2408.0,1.0 -2409.0,1.0 -2410.0,1.0 -2411.0,1.0 -2412.0,1.0 -2413.0,1.0 -2414.0,1.0 -2415.0,1.0 -2416.0,1.0 -2417.0,1.0 -2418.0,1.0 -2419.0,1.0 -2420.0,1.0 -2421.0,1.0 -2422.0,1.0 -2423.0,1.0 -2424.0,1.0 -2425.0,1.0 -2426.0,1.0 -2427.0,1.0 -2428.0,1.0 -2429.0,1.0 -2430.0,1.0 -2431.0,1.0 -2432.0,1.0 -2433.0,1.0 -2434.0,1.0 -2435.0,1.0 -2436.0,1.0 -2437.0,1.0 -2438.0,1.0 -2439.0,1.0 -2440.0,1.0 -2441.0,1.0 -2442.0,1.0 -2443.0,1.0 -2444.0,1.0 -2445.0,1.0 -2446.0,1.0 -2447.0,1.0 -2448.0,1.0 -2449.0,1.0 -2450.0,1.0 -2451.0,1.0 -2452.0,1.0 -2453.0,1.0 -2454.0,1.0 -2455.0,1.0 -2456.0,1.0 -2457.0,1.0 -2458.0,1.0 -2459.0,1.0 -2460.0,1.0 -2461.0,1.0 -2462.0,1.0 -2463.0,1.0 -2464.0,1.0 -2465.0,1.0 -2466.0,1.0 -2467.0,1.0 -2468.0,1.0 -2469.0,1.0 -2470.0,1.0 -2471.0,1.0 -2472.0,1.0 -2473.0,1.0 -2474.0,1.0 -2475.0,1.0 -2476.0,1.0 -2477.0,1.0 -2478.0,1.0 -2479.0,1.0 -2480.0,1.0 -2481.0,1.0 -2482.0,1.0 -2483.0,1.0 -2484.0,1.0 -2485.0,1.0 -2486.0,1.0 -2487.0,1.0 -2488.0,1.0 -2489.0,1.0 -2490.0,1.0 -2491.0,1.0 -2492.0,1.0 -2493.0,1.0 -2494.0,1.0 -2495.0,1.0 -2496.0,1.0 -2497.0,1.0 -2498.0,1.0 -2499.0,1.0 -2500.0,1.0 -2501.0,1.0 -2502.0,1.0 -2503.0,1.0 -2504.0,1.0 -2505.0,1.0 -2506.0,1.0 -2507.0,1.0 -2508.0,1.0 -2509.0,1.0 -2510.0,1.0 -2511.0,1.0 -2512.0,1.0 -2513.0,1.0 -2514.0,1.0 -2515.0,1.0 -2516.0,1.0 -2517.0,1.0 -2518.0,1.0 -2519.0,1.0 -2520.0,1.0 -2521.0,1.0 -2522.0,1.0 -2523.0,1.0 -2524.0,1.0 -2525.0,1.0 -2526.0,1.0 -2527.0,1.0 -2528.0,1.0 -2529.0,1.0 -2530.0,1.0 -2531.0,1.0 -2532.0,1.0 -2533.0,1.0 -2534.0,1.0 -2535.0,1.0 -2536.0,1.0 -2537.0,1.0 -2538.0,1.0 -2539.0,1.0 -2540.0,1.0 -2541.0,1.0 -2542.0,1.0 -2543.0,1.0 -2544.0,1.0 -2545.0,1.0 -2546.0,1.0 -2547.0,1.0 -2548.0,1.0 -2549.0,1.0 -2550.0,1.0 -2551.0,1.0 -2552.0,1.0 -2553.0,1.0 -2554.0,1.0 -2555.0,1.0 -2556.0,1.0 -2557.0,1.0 -2558.0,1.0 -2559.0,1.0 -2560.0,1.0 -2561.0,1.0 -2562.0,1.0 -2563.0,1.0 -2564.0,1.0 -2565.0,1.0 -2566.0,1.0 -2567.0,1.0 -2568.0,1.0 -2569.0,1.0 -2570.0,1.0 -2571.0,1.0 -2572.0,1.0 -2573.0,1.0 -2574.0,1.0 -2575.0,1.0 -2576.0,1.0 -2577.0,1.0 -2578.0,1.0 -2579.0,1.0 -2580.0,1.0 -2581.0,1.0 -2582.0,1.0 -2583.0,1.0 -2584.0,1.0 -2585.0,1.0 -2586.0,1.0 -2587.0,1.0 -2588.0,1.0 -2589.0,1.0 -2590.0,1.0 -2591.0,1.0 -2592.0,1.0 -2593.0,1.0 -2594.0,1.0 -2595.0,1.0 -2596.0,1.0 -2597.0,1.0 -2598.0,1.0 -2599.0,1.0 -2600.0,1.0 -2601.0,1.0 -2602.0,1.0 -2603.0,1.0 -2604.0,1.0 -2605.0,1.0 -2606.0,1.0 -2607.0,1.0 -2608.0,1.0 -2609.0,1.0 -2610.0,1.0 -2611.0,1.0 -2612.0,1.0 -2613.0,1.0 -2614.0,1.0 -2615.0,1.0 -2616.0,1.0 -2617.0,1.0 -2618.0,1.0 -2619.0,1.0 -2620.0,1.0 -2621.0,1.0 -2622.0,1.0 -2623.0,1.0 -2624.0,1.0 -2625.0,1.0 -2626.0,1.0 -2627.0,1.0 -2628.0,1.0 -2629.0,1.0 -2630.0,1.0 -2631.0,1.0 -2632.0,1.0 -2633.0,1.0 -2634.0,1.0 -2635.0,1.0 -2636.0,1.0 -2637.0,1.0 -2638.0,1.0 -2639.0,1.0 -2640.0,1.0 -2641.0,1.0 -2642.0,1.0 -2643.0,1.0 -2644.0,1.0 -2645.0,1.0 -2646.0,1.0 -2647.0,1.0 -2648.0,1.0 -2649.0,1.0 -2650.0,1.0 -2651.0,1.0 -2652.0,1.0 -2653.0,1.0 -2654.0,1.0 -2655.0,1.0 -2656.0,1.0 -2657.0,1.0 -2658.0,1.0 -2659.0,1.0 -2660.0,1.0 -2661.0,1.0 -2662.0,1.0 -2663.0,1.0 -2664.0,1.0 -2665.0,1.0 -2666.0,1.0 -2667.0,1.0 -2668.0,1.0 -2669.0,1.0 -2670.0,1.0 -2671.0,1.0 -2672.0,1.0 -2673.0,1.0 -2674.0,1.0 -2675.0,1.0 -2676.0,1.0 -2677.0,1.0 -2678.0,1.0 -2679.0,1.0 -2680.0,1.0 -2681.0,1.0 -2682.0,1.0 -2683.0,1.0 -2684.0,1.0 -2685.0,1.0 -2686.0,1.0 -2687.0,1.0 -2688.0,1.0 -2689.0,1.0 -2690.0,1.0 -2691.0,1.0 -2692.0,1.0 -2693.0,1.0 -2694.0,1.0 -2695.0,1.0 -2696.0,1.0 -2697.0,1.0 -2698.0,1.0 -2699.0,1.0 -2700.0,1.0 -2701.0,1.0 -2702.0,1.0 -2703.0,1.0 -2704.0,1.0 -2705.0,1.0 -2706.0,1.0 -2707.0,1.0 -2708.0,1.0 -2709.0,1.0 -2710.0,1.0 -2711.0,1.0 -2712.0,1.0 -2713.0,1.0 -2714.0,1.0 -2715.0,1.0 -2716.0,1.0 -2717.0,1.0 -2718.0,1.0 -2719.0,1.0 -2720.0,1.0 -2721.0,1.0 -2722.0,1.0 -2723.0,1.0 -2724.0,1.0 -2725.0,1.0 -2726.0,1.0 -2727.0,1.0 -2728.0,1.0 -2729.0,1.0 -2730.0,1.0 -2731.0,1.0 -2732.0,1.0 -2733.0,1.0 -2734.0,1.0 -2735.0,1.0 -2736.0,1.0 -2737.0,1.0 -2738.0,1.0 -2739.0,1.0 -2740.0,1.0 -2741.0,1.0 -2742.0,1.0 -2743.0,1.0 -2744.0,1.0 -2745.0,1.0 -2746.0,1.0 -2747.0,1.0 -2748.0,1.0 -2749.0,1.0 -2750.0,1.0 -2751.0,1.0 -2752.0,1.0 -2753.0,1.0 -2754.0,1.0 -2755.0,1.0 -2756.0,1.0 -2757.0,1.0 -2758.0,1.0 -2759.0,1.0 -2760.0,1.0 -2761.0,1.0 -2762.0,1.0 -2763.0,1.0 -2764.0,1.0 -2765.0,1.0 -2766.0,1.0 -2767.0,1.0 -2768.0,1.0 -2769.0,1.0 -2770.0,1.0 -2771.0,1.0 -2772.0,1.0 -2773.0,1.0 -2774.0,1.0 -2775.0,1.0 -2776.0,1.0 -2777.0,1.0 -2778.0,1.0 -2779.0,1.0 -2780.0,1.0 -2781.0,1.0 -2782.0,1.0 -2783.0,1.0 -2784.0,1.0 -2785.0,1.0 -2786.0,1.0 -2787.0,1.0 -2788.0,1.0 -2789.0,1.0 -2790.0,1.0 -2791.0,1.0 -2792.0,1.0 -2793.0,1.0 -2794.0,1.0 -2795.0,1.0 -2796.0,1.0 -2797.0,1.0 -2798.0,1.0 -2799.0,1.0 -2800.0,1.0 -2801.0,1.0 -2802.0,1.0 -2803.0,1.0 -2804.0,1.0 -2805.0,1.0 -2806.0,1.0 -2807.0,1.0 -2808.0,1.0110156694074477 -2809.0,1.0610156694074475 -2810.0,1.1110156694074476 -2811.0,1.1610156694074476 -2812.0,1.2110156694074476 -2813.0,1.2610156694074477 -2814.0,1.3110156694074475 -2815.0,1.3610156694074476 -2816.0,1.4110156694074476 -2817.0,1.4610156694074476 -2818.0,1.5110156694074477 -2819.0,1.5610156694074475 -2820.0,1.6110156694074478 -2821.0,1.6610156694074476 -2822.0,1.7110156694074476 -2823.0,1.7610156694074477 -2824.0,1.8110156694074475 -2825.0,1.8610156694074478 -2826.0,1.9110156694074476 -2827.0,1.9610156694074476 -2828.0,2.0110156694074477 -2829.0,2.061015669407448 -2830.0,2.111015669407448 -2831.0,2.1610156694074476 -2832.0,2.2110156694074474 -2833.0,2.2610156694074477 -2834.0,2.311015669407448 -2835.0,2.361015669407448 -2836.0,2.4110156694074476 -2837.0,2.4610156694074474 -2838.0,2.5110156694074477 -2839.0,2.561015669407448 -2840.0,2.611015669407448 -2841.0,2.6610156694074476 -2842.0,2.7110156694074474 -2843.0,2.7610156694074477 -2844.0,2.811015669407448 -2845.0,2.861015669407448 -2846.0,2.9110156694074476 -2847.0,2.9610156694074474 -2848.0,3.0110156694074477 -2849.0,3.0610156694074475 -2850.0,3.111015669407448 -2851.0,3.1610156694074476 -2852.0,3.211015669407448 -2853.0,3.2610156694074477 -2854.0,3.3110156694074475 -2855.0,3.361015669407448 -2856.0,3.4110156694074476 -2857.0,3.461015669407448 -2858.0,3.5110156694074477 -2859.0,3.561015669407448 -2860.0,3.611015669407448 -2861.0,3.6610156694074476 -2862.0,3.711015669407448 -2863.0,3.7610156694074477 -2864.0,3.811015669407448 -2865.0,3.861015669407448 -2866.0,3.9110156694074476 -2867.0,3.961015669407448 -2868.0,4.011015669407447 -2869.0,4.061015669407448 -2870.0,4.111015669407448 -2871.0,4.161015669407448 -2872.0,4.211015669407448 -2873.0,4.261015669407447 -2874.0,4.311015669407448 -2875.0,4.361015669407448 -2876.0,4.411015669407448 -2877.0,4.461015669407448 -2878.0,4.511015669407447 -2879.0,4.561015669407448 -2880.0,4.611015669407448 -2881.0,4.661015669407448 -2882.0,4.711015669407448 -2883.0,4.761015669407447 -2884.0,4.811015669407448 -2885.0,4.861015669407448 -2886.0,4.911015669407448 -2887.0,4.961015669407448 -2888.0,5.011015669407448 -2889.0,5.061015669407448 -2890.0,5.111015669407448 -2891.0,5.161015669407448 -2892.0,5.211015669407447 -2893.0,5.261015669407448 -2894.0,5.311015669407448 -2895.0,5.361015669407448 -2896.0,5.411015669407448 -2897.0,5.461015669407447 -2898.0,5.511015669407448 -2899.0,5.561015669407448 -2900.0,5.611015669407448 -2901.0,5.661015669407448 -2902.0,5.711015669407447 -2903.0,5.761015669407448 -2904.0,5.811015669407448 -2905.0,5.861015669407448 -2906.0,5.911015669407448 -2907.0,5.961015669407448 -2908.0,5.988984330592553 -2909.0,5.938984330592552 -2910.0,5.888984330592552 -2911.0,5.838984330592552 -2912.0,5.788984330592553 -2913.0,5.738984330592553 -2914.0,5.688984330592552 -2915.0,5.638984330592552 -2916.0,5.588984330592552 -2917.0,5.538984330592553 -2918.0,5.488984330592553 -2919.0,5.438984330592552 -2920.0,5.388984330592552 -2921.0,5.338984330592552 -2922.0,5.288984330592553 -2923.0,5.238984330592553 -2924.0,5.188984330592552 -2925.0,5.138984330592552 -2926.0,5.088984330592552 -2927.0,5.038984330592553 -2928.0,4.988984330592553 -2929.0,4.938984330592552 -2930.0,4.888984330592552 -2931.0,4.838984330592552 -2932.0,4.788984330592553 -2933.0,4.738984330592553 -2934.0,4.688984330592552 -2935.0,4.638984330592552 -2936.0,4.588984330592552 -2937.0,4.538984330592553 -2938.0,4.488984330592553 -2939.0,4.438984330592552 -2940.0,4.388984330592552 -2941.0,4.338984330592552 -2942.0,4.288984330592553 -2943.0,4.238984330592553 -2944.0,4.188984330592552 -2945.0,4.138984330592552 -2946.0,4.088984330592552 -2947.0,4.038984330592553 -2948.0,3.9889843305925523 -2949.0,3.9389843305925525 -2950.0,3.888984330592552 -2951.0,3.8389843305925524 -2952.0,3.788984330592552 -2953.0,3.7389843305925523 -2954.0,3.6889843305925525 -2955.0,3.638984330592552 -2956.0,3.5889843305925524 -2957.0,3.538984330592552 -2958.0,3.4889843305925523 -2959.0,3.438984330592552 -2960.0,3.388984330592552 -2961.0,3.3389843305925524 -2962.0,3.288984330592552 -2963.0,3.2389843305925523 -2964.0,3.188984330592552 -2965.0,3.138984330592552 -2966.0,3.0889843305925524 -2967.0,3.038984330592552 -2968.0,2.9889843305925523 -2969.0,2.938984330592552 -2970.0,2.888984330592552 -2971.0,2.8389843305925524 -2972.0,2.788984330592552 -2973.0,2.7389843305925523 -2974.0,2.688984330592552 -2975.0,2.638984330592552 -2976.0,2.5889843305925524 -2977.0,2.538984330592552 -2978.0,2.4889843305925523 -2979.0,2.438984330592552 -2980.0,2.388984330592552 -2981.0,2.3389843305925524 -2982.0,2.288984330592552 -2983.0,2.2389843305925523 -2984.0,2.188984330592552 -2985.0,2.138984330592552 -2986.0,2.0889843305925524 -2987.0,2.038984330592552 -2988.0,1.9889843305925519 -2989.0,1.938984330592552 -2990.0,1.8889843305925522 -2991.0,1.8389843305925524 -2992.0,1.7889843305925526 -2993.0,1.7389843305925519 -2994.0,1.688984330592552 -2995.0,1.6389843305925522 -2996.0,1.5889843305925524 -2997.0,1.5389843305925526 -2998.0,1.4889843305925519 -2999.0,1.438984330592552 -3000.0,1.3889843305925522 -3001.0,1.3389843305925524 -3002.0,1.2889843305925526 -3003.0,1.2389843305925519 -3004.0,1.188984330592552 -3005.0,1.1389843305925522 -3006.0,1.0889843305925524 -3007.0,1.0389843305925517 -3008.0,0.9999239093465399 -3009.0,0.9995786074983207 -3010.0,0.9992334248925412 -3011.0,0.9988883614880235 -3012.0,0.9985434172436041 -3013.0,0.9981985921181337 -3014.0,0.9978538860704771 -3015.0,0.9975092990595135 -3016.0,0.997164831044136 -3017.0,0.9968204819832523 -3018.0,0.9964762518357839 -3019.0,0.9961321405606667 -3020.0,0.9957881481168508 -3021.0,0.9954442744633003 -3022.0,0.9951005195589936 -3023.0,0.9947568833629233 -3024.0,0.9944133658340961 -3025.0,0.9940699669315328 -3026.0,0.9937266866142686 -3027.0,0.9933835248413524 -3028.0,0.9930404815718477 -3029.0,0.9926975567648318 -3030.0,0.9923547503793964 -3031.0,0.9920120623746471 -3032.0,0.9916694927097038 -3033.0,0.9913270413437003 -3034.0,0.9909847082357849 -3035.0,0.9906424933451194 -3036.0,0.9903003966308804 -3037.0,0.989958418052258 -3038.0,0.9896165575684569 -3039.0,0.9892748151386954 -3040.0,0.9889331907222063 -3041.0,0.9885916842782362 -3042.0,0.9882502957660458 -3043.0,0.9879090251449101 -3044.0,0.9875678723741179 -3045.0,0.9872268374129722 -3046.0,0.98688592022079 -3047.0,0.9865451207569024 -3048.0,0.9862044389806545 -3049.0,0.9858638748514054 -3050.0,0.9855234283285282 -3051.0,0.9851830993714105 -3052.0,0.9848428879394531 -3053.0,0.9845027939920713 -3054.0,0.9841628174886946 -3055.0,0.9838229583887662 -3056.0,0.9834832166517433 -3057.0,0.9831435922370974 -3058.0,0.9828040851043135 -3059.0,0.982464695212891 -3060.0,0.9821254225223431 -3061.0,0.9817862669921973 -3062.0,0.9814472285819945 -3063.0,0.9811083072512901 -3064.0,0.980769502959653 -3065.0,0.9804308156666667 -3066.0,0.980092245331928 -3067.0,0.9797537919150479 -3068.0,0.9794154553756514 -3069.0,0.9790772356733777 -3070.0,0.9787391327678794 -3071.0,0.9784011466188233 -3072.0,0.9780632771858901 -3073.0,0.9777255244287745 -3074.0,0.977387888307185 -3075.0,0.9770503687808443 -3076.0,0.9767129658094884 -3077.0,0.976375679352868 -3078.0,0.9760385093707469 -3079.0,0.9757014558229034 -3080.0,0.9753645186691294 -3081.0,0.9750276978692308 -3082.0,0.9746909933830273 -3083.0,0.9743544051703525 -3084.0,0.9740179331910539 -3085.0,0.9736815774049928 -3086.0,0.9733453377720446 -3087.0,0.9730092142520982 -3088.0,0.9726732068050564 -3089.0,0.9723373153908361 -3090.0,0.972001539969368 -3091.0,0.9716658805005964 -3092.0,0.9713303369444796 -3093.0,0.9709949092609896 -3094.0,0.9706595974101127 -3095.0,0.9703244013518482 -3096.0,0.9699893210462097 -3097.0,0.9696543564532248 -3098.0,0.9693195075329347 -3099.0,0.9689847742453941 -3100.0,0.9686501565506719 -3101.0,0.9683156544088506 -3102.0,0.9679812677800266 -3103.0,0.9676469966243099 -3104.0,0.9673128409018246 -3105.0,0.9669788005727081 -3106.0,0.966644875597112 -3107.0,0.9663110659352014 -3108.0,0.9659773715471554 -3109.0,0.9656437923931663 -3110.0,0.965310328433441 -3111.0,0.9649769796281995 -3112.0,0.9646437459376757 -3113.0,0.9643106273221173 -3114.0,0.9639776237417855 -3115.0,0.9636447351569556 -3116.0,0.9633119615279163 -3117.0,0.9629793028149702 -3118.0,0.9626467589784337 -3119.0,0.9623143299786364 -3120.0,0.9619820157759221 -3121.0,0.9616498163306483 -3122.0,0.9613177316031857 -3123.0,0.9609857615539193 -3124.0,0.9606539061432474 -3125.0,0.960322165331582 -3126.0,0.959990539079349 -3127.0,0.9596590273469876 -3128.0,0.959327630094951 -3129.0,0.958996347283706 -3130.0,0.9586651788737327 -3131.0,0.9583341248255254 -3132.0,0.9580031850995917 -3133.0,0.9576723596564528 -3134.0,0.9573416484566436 -3135.0,0.957011051460713 -3136.0,0.9566805686292228 -3137.0,0.9563501999227491 -3138.0,0.9560199453018811 -3139.0,0.9556898047272219 -3140.0,0.9553597781593881 -3141.0,0.95502986555901 -3142.0,0.9547000668867316 -3143.0,0.95437038210321 -3144.0,0.9540408111691164 -3145.0,0.9537113540451353 -3146.0,0.953382010691965 -3147.0,0.9530527810703171 -3148.0,0.952723665140917 -3149.0,0.9523946628645035 -3150.0,0.952065774201829 -3151.0,0.9517369991136596 -3152.0,0.9514083375607748 -3153.0,0.9510797895039677 -3154.0,0.9507513549040446 -3155.0,0.9504230337218261 -3156.0,0.9500948259181456 -3157.0,0.9497667314538505 -3158.0,0.9494387502898013 -3159.0,0.9491108823868724 -3160.0,0.9487831277059514 -3161.0,0.9484554862079397 -3162.0,0.9481279578537519 -3163.0,0.9478005426043166 -3164.0,0.9474732404205751 -3165.0,0.947146051263483 -3166.0,0.9468189750940087 -3167.0,0.9464920118731346 -3168.0,0.9461651615618564 -3169.0,0.9458384241211831 -3170.0,0.9455117995121374 -3171.0,0.9451852876957554 -3172.0,0.9448588886330865 -3173.0,0.9445326022851938 -3174.0,0.9442064286131536 -3175.0,0.9438803675780558 -3176.0,0.9435544191410038 -3177.0,0.9432285832631142 -3178.0,0.9429028599055171 -3179.0,0.9425772490293564 -3180.0,0.9422517505957886 -3181.0,0.9419263645659846 -3182.0,0.9416010909011279 -3183.0,0.9412759295624158 -3184.0,0.9409508805110589 -3185.0,0.9406259437082813 -3186.0,0.9403011191153204 -3187.0,0.939976406693427 -3188.0,0.9396518064038653 -3189.0,0.9393273182079126 -3190.0,0.9390029420668601 -3191.0,0.9386786779420121 -3192.0,0.938354525794686 -3193.0,0.9380304855862132 -3194.0,0.9377065572779376 -3195.0,0.9373827408312173 -3196.0,0.9370590362074231 -3197.0,0.9367354433679397 -3198.0,0.9364119622741646 -3199.0,0.9360885928875088 -3200.0,0.9357653351693969 -3201.0,0.9354421890812664 -3202.0,0.9351191545845685 -3203.0,0.9347962316407675 -3204.0,0.934473420211341 -3205.0,0.93415072025778 -3206.0,0.9338281317415887 -3207.0,0.9335056546242848 -3208.0,0.9331832888673989 -3209.0,0.9328610344324751 -3210.0,0.9325388912810711 -3211.0,0.9322168593747573 -3212.0,0.9318949386751177 -3213.0,0.9315731291437496 -3214.0,0.9312514307422634 -3215.0,0.9309298434322828 -3216.0,0.9306083671754448 -3217.0,0.9302870019333996 -3218.0,0.9299657476678107 -3219.0,0.9296446043403549 -3220.0,0.929323571912722 -3221.0,0.9290026503466152 -3222.0,0.928681839603751 -3223.0,0.9283611396458589 -3224.0,0.9280405504346817 -3225.0,0.9277200719319756 -3226.0,0.9273997040995098 -3227.0,0.9270794468990666 -3228.0,0.9267593002924419 -3229.0,0.9264392642414444 -3230.0,0.9261193387078961 -3231.0,0.9257995236536323 -3232.0,0.9254798190405014 -3233.0,0.9251602248303649 -3234.0,0.9248407409850975 -3235.0,0.9245213674665872 -3236.0,0.9242021042367351 -3237.0,0.9238829512574555 -3238.0,0.9235639084906754 -3239.0,0.9232449758983358 -3240.0,0.9229261534423899 -3241.0,0.922607441084805 -3242.0,0.9222888387875606 -3243.0,0.9219703465126501 -3244.0,0.9216519642220794 -3245.0,0.9213336918778681 -3246.0,0.9210155294420485 -3247.0,0.920697476876666 -3248.0,0.9203795341437795 -3249.0,0.9200617012054605 -3250.0,0.9197439780237942 -3251.0,0.9194263645608781 -3252.0,0.9191088607788236 -3253.0,0.9187914666397545 -3254.0,0.9184741821058083 -3255.0,0.9181570071391352 -3256.0,0.9178399417018983 -3257.0,0.9175229857562743 -3258.0,0.9172061392644525 -3259.0,0.9168894021886355 -3260.0,0.9165727744910387 -3261.0,0.916256256133891 -3262.0,0.9159398470794339 -3263.0,0.9156235472899221 -3264.0,0.9153073567276234 -3265.0,0.9149912753548185 -3266.0,0.9146753031338013 -3267.0,0.9143594400268786 -3268.0,0.9140436859963702 -3269.0,0.9137280410046089 -3270.0,0.9134125050139406 -3271.0,0.9130970779867241 -3272.0,0.9127817598853315 -3273.0,0.9124665506721473 -3274.0,0.9121514503095696 -3275.0,0.911836458760009 -3276.0,0.9115215759858896 -3277.0,0.9112068019496479 -3278.0,0.9108921366137337 -3279.0,0.9105775799406098 -3280.0,0.910263131892752 -3281.0,0.9099487924326487 -3282.0,0.9096345615228016 -3283.0,0.9093204391257254 -3284.0,0.9090064252039473 -3285.0,0.9086925197200079 -3286.0,0.9083787226364605 -3287.0,0.9080650339158715 -3288.0,0.9077514535208199 -3289.0,0.9074379814138981 -3290.0,0.907124617557711 -3291.0,0.9068113619148767 -3292.0,0.9064982144480259 -3293.0,0.9061851751198026 -3294.0,0.9058722438928634 -3295.0,0.9055594207298778 -3296.0,0.9052467055935285 -3297.0,0.9049340984465106 -3298.0,0.9046215992515326 -3299.0,0.9043092079713154 -3300.0,0.9039969245685932 -3301.0,0.9036847490061126 -3302.0,0.9033726812466336 -3303.0,0.9030607212529287 -3304.0,0.9027488689877833 -3305.0,0.9024371244139957 -3306.0,0.902125487494377 -3307.0,0.9018139581917515 -3308.0,0.9015025364689556 -3309.0,0.9011912222888392 -3310.0,0.9008800156142648 -3311.0,0.9005689164081075 -3312.0,0.9002579246332557 -3313.0,0.8999470402526103 -3314.0,0.8996362632290849 -3315.0,0.8993255935256061 -3316.0,0.8990150311051135 -3317.0,0.898704575930559 -3318.0,0.8983942279649076 -3319.0,0.8980839871711371 -3320.0,0.8977738535122382 -3321.0,0.897463826951214 -3322.0,0.8971539074510806 -3323.0,0.8968440949748668 -3324.0,0.8965343894856146 -3325.0,0.896224790946378 -3326.0,0.8959152993202243 -3327.0,0.8956059145702334 -3328.0,0.895296636659498 -3329.0,0.8949874655511233 -3330.0,0.8946784012082277 -3331.0,0.894369443593942 -3332.0,0.8940605926714098 -3333.0,0.8937518484037873 -3334.0,0.8934432107542438 -3335.0,0.8931346796859608 -3336.0,0.8928262551621331 -3337.0,0.8925179371459677 -3338.0,0.8922097256006846 -3339.0,0.8919016204895163 -3340.0,0.8915936217757082 -3341.0,0.8912857294225183 -3342.0,0.8909779433932172 -3343.0,0.8906702636510884 -3344.0,0.8903626901594278 -3345.0,0.8900552228815444 -3346.0,0.8897478617807592 -3347.0,0.8894406068204066 -3348.0,0.889133457963833 -3349.0,0.8888264151743982 -3350.0,0.8885194784154739 -3351.0,0.8882126476504449 -3352.0,0.8879059228427085 -3353.0,0.8875993039556747 -3354.0,0.887292790952766 -3355.0,0.8869863837974179 -3356.0,0.886680082453078 -3357.0,0.8863738868832067 -3358.0,0.8860677970512775 -3359.0,0.8857618129207757 -3360.0,0.8854559344551999 -3361.0,0.8851501616180609 -3362.0,0.8848444943728823 -3363.0,0.8845389326832002 -3364.0,0.8842334765125632 -3365.0,0.8839281258245327 -3366.0,0.8836228805826828 -3367.0,0.8833177407505995 -3368.0,0.8830127062918823 -3369.0,0.8827077771701426 -3370.0,0.8824029533490046 -3371.0,0.882098234792105 -3372.0,0.8817936214630933 -3373.0,0.881489113325631 -3374.0,0.8811847103433927 -3375.0,0.8808804124800654 -3376.0,0.8805762196993485 -3377.0,0.880272131964954 -3378.0,0.8799681492406066 -3379.0,0.8796642714900432 -3380.0,0.8793604986770135 -3381.0,0.8790568307652795 -3382.0,0.8787532677186161 -3383.0,0.8784498095008101 -3384.0,0.8781464560756613 -3385.0,0.877843207406982 -3386.0,0.8775400634585966 -3387.0,0.8772370241943422 -3388.0,0.8769340895780688 -3389.0,0.8766312595736382 -3390.0,0.8763285341449251 -3391.0,0.8760259132558164 -3392.0,0.8757233968702118 -3393.0,0.8754209849520233 -3394.0,0.8751186774651754 -3395.0,0.8748164743736048 -3396.0,0.874514375641261 -3397.0,0.8742123812321059 -3398.0,0.8739104911101138 -3399.0,0.8736087052392711 -3400.0,0.8733070235835774 -3401.0,0.8730054461070439 -3402.0,0.8727039727736948 -3403.0,0.8724026035475665 -3404.0,0.8721013383927079 -3405.0,0.87180017727318 -3406.0,0.8714991201530569 -3407.0,0.8711981669964243 -3408.0,0.8708973177673808 -3409.0,0.8705965724300374 -3410.0,0.8702959309485172 -3411.0,0.8699953932869561 -3412.0,0.8696949594095018 -3413.0,0.8693946292803151 -3414.0,0.8690944028635685 -3415.0,0.8687942801234474 -3416.0,0.8684942610241492 -3417.0,0.8681943455298838 -3418.0,0.8678945336048737 -3419.0,0.8675948252133533 -3420.0,0.8672952203195695 -3421.0,0.8669957188877819 -3422.0,0.866696320882262 -3423.0,0.8663970262672938 -3424.0,0.8660978350071736 -3425.0,0.8657987470662101 -3426.0,0.8654997624087244 -3427.0,0.8652008809990497 -3428.0,0.8649021028015316 -3429.0,0.864603427780528 -3430.0,0.8643048559004093 -3431.0,0.864006387125558 -3432.0,0.8637080214203688 -3433.0,0.8634097587492492 -3434.0,0.8631115990766183 -3435.0,0.8628135423669079 -3436.0,0.8625155885845621 -3437.0,0.8622177376940371 -3438.0,0.8619199896598015 -3439.0,0.8616223444463361 -3440.0,0.8613248020181341 -3441.0,0.8610273623397008 -3442.0,0.8607300253755537 -3443.0,0.8604327910902227 -3444.0,0.8601356594482501 -3445.0,0.8598386304141902 -3446.0,0.8595417039526094 -3447.0,0.8592448800280867 -3448.0,0.8589481586052132 -3449.0,0.8586515396485922 -3450.0,0.8583550231228391 -3451.0,0.8580586089925817 -3452.0,0.85776229722246 -3453.0,0.8574660877771261 -3454.0,0.8571699806212444 -3455.0,0.8568739757194915 -3456.0,0.8565780730365562 -3457.0,0.8562822725371393 -3458.0,0.8559865741859541 -3459.0,0.8556909779477261 -3460.0,0.8553954837871924 -3461.0,0.8551000916691032 -3462.0,0.8548048015582199 -3463.0,0.8545096134193169 -3464.0,0.8542145272171802 -3465.0,0.8539195429166082 -3466.0,0.8536246604824116 -3467.0,0.8533298798794128 -3468.0,0.8530352010724468 -3469.0,0.8527406240263605 -3470.0,0.8524461487060132 -3471.0,0.8521517750762758 -3472.0,0.8518575031020319 -3473.0,0.851563332748177 -3474.0,0.8512692639796186 -3475.0,0.8509752967612765 -3476.0,0.8506814310580826 -3477.0,0.8503876668349808 -3478.0,0.8500940040569273 -3479.0,0.8498004426888901 -3480.0,0.8495069826958495 -3481.0,0.8492136240427979 -3482.0,0.8489203666947398 -3483.0,0.8486272106166917 -3484.0,0.8483341557736821 -3485.0,0.848041202130752 -3486.0,0.8477483496529538 -3487.0,0.8474555983053526 -3488.0,0.8471629480530251 -3489.0,0.8468703988610604 -3490.0,0.8465779506945594 -3491.0,0.8462856035186354 -3492.0,0.8459933572984133 -3493.0,0.8457012119990303 -3494.0,0.8454091675856356 -3495.0,0.8451172240233904 -3496.0,0.844825381277468 -3497.0,0.8445336393130537 -3498.0,0.8442419980953448 -3499.0,0.8439504575895507 -3500.0,0.8436590177608926 -3501.0,0.8433676785746039 -3502.0,0.8430764399959301 -3503.0,0.8427853019901284 -3504.0,0.8424942645224681 -3505.0,0.8422033275582307 -3506.0,0.8419124910627095 -3507.0,0.8416217550012098 -3508.0,0.841331119339049 -3509.0,0.8410405840415563 -3510.0,0.840750149074073 -3511.0,0.8404598144019523 -3512.0,0.8401695799905594 -3513.0,0.8398794458052714 -3514.0,0.8395894118114774 -3515.0,0.8392994779745786 -3516.0,0.8390096442599878 -3517.0,0.8387199106331301 -3518.0,0.8384302770594424 -3519.0,0.8381407435043735 -3520.0,0.8378513099333841 -3521.0,0.837561976311947 -3522.0,0.8372727426055466 -3523.0,0.8369836087796796 -3524.0,0.8366945747998544 -3525.0,0.8364056406315914 -3526.0,0.8361168062404228 -3527.0,0.8358280715918929 -3528.0,0.8355394366515575 -3529.0,0.8352509013849847 -3530.0,0.8349624657577545 -3531.0,0.8346741297354583 -3532.0,0.8343858932836999 -3533.0,0.8340977563680949 -3534.0,0.8338097189542705 -3535.0,0.833521781007866 -3536.0,0.8332339424945324 -3537.0,0.8329462033799329 -3538.0,0.8326585636297421 -3539.0,0.8323710232096467 -3540.0,0.8320835820853454 -3541.0,0.8317962402225485 -3542.0,0.831508997586978 -3543.0,0.8312218541443681 -3544.0,0.8309348098604649 -3545.0,0.8306478647010257 -3546.0,0.8303610186318203 -3547.0,0.8300742716186299 -3548.0,0.8297876236272479 -3549.0,0.8295010746234791 -3550.0,0.8292146245731403 -3551.0,0.8289282734420601 -3552.0,0.828642021196079 -3553.0,0.8283558678010491 -3554.0,0.8280698132228345 -3555.0,0.8277838574273108 -3556.0,0.8274980003803657 -3557.0,0.8272122420478984 -3558.0,0.8269265823958202 -3559.0,0.8266410213900538 -3560.0,0.826355558996534 -3561.0,0.8260701951812071 -3562.0,0.8257849299100314 -3563.0,0.8254997631489767 -3564.0,0.8252146948640248 -3565.0,0.8249297250211691 -3566.0,0.8246448535864147 -3567.0,0.8243600805257787 -3568.0,0.8240754058052895 -3569.0,0.8237908293909877 -3570.0,0.8235063512489252 -3571.0,0.8232219713451661 -3572.0,0.8229376896457856 -3573.0,0.8226535061168714 -3574.0,0.822369420724522 -3575.0,0.8220854334348485 -3576.0,0.8218015442139731 -3577.0,0.8215177530280299 -3578.0,0.8212340598431646 -3579.0,0.8209504646255348 -3580.0,0.8206669673413096 -3581.0,0.8203835679566699 -3582.0,0.8201002664378081 -3583.0,0.8198170627509285 -3584.0,0.819533956862247 -3585.0,0.819250948737991 -3586.0,0.8189680383443997 -3587.0,0.8186852256477241 -3588.0,0.8184025106142265 -3589.0,0.8181198932101813 -3590.0,0.8178373734018741 -3591.0,0.8175549511556024 -3592.0,0.8172726264376754 -3593.0,0.8169903992144137 -3594.0,0.8167082694521497 -3595.0,0.8164262371172274 -3596.0,0.8161443021760022 -3597.0,0.8158624645948416 -3598.0,0.8155807243401243 -3599.0,0.8152990813782407 -3600.0,0.8150175356755929 -3601.0,0.8147360871985946 -3602.0,0.8144547359136709 -3603.0,0.8141734817872588 -3604.0,0.8138923247858066 -3605.0,0.8136112648757745 -3606.0,0.813330302023634 -3607.0,0.8130494361958682 -3608.0,0.8127686673589719 -3609.0,0.8124879954794515 -3610.0,0.8122074205238249 -3611.0,0.8119269424586214 -3612.0,0.8116465612503821 -3613.0,0.8113662768656597 -3614.0,0.8110860892710181 -3615.0,0.8108059984330331 -3616.0,0.8105260043182918 -3617.0,0.810246106893393 -3618.0,0.8099663061249471 -3619.0,0.8096866019795756 -3620.0,0.8094069944239123 -3621.0,0.8091274834246015 -3622.0,0.8088480689483001 -3623.0,0.8085687509616756 -3624.0,0.8082895294314075 -3625.0,0.8080104043241869 -3626.0,0.8077313756067159 -3627.0,0.8074524432457088 -3628.0,0.8071736072078906 -3629.0,0.8068948674599984 -3630.0,0.8066162239687806 -3631.0,0.806337676700997 -3632.0,0.8060592256234189 -3633.0,0.8057808707028292 -3634.0,0.8055026119060222 -3635.0,0.8052244491998036 -3636.0,0.8049463825509907 -3637.0,0.804668411926412 -3638.0,0.8043905372929078 -3639.0,0.8041127586173297 -3640.0,0.8038350758665405 -3641.0,0.8035574890074149 -3642.0,0.8032799980068387 -3643.0,0.8030026028317093 -3644.0,0.8027253034489354 -3645.0,0.8024480998254374 -3646.0,0.8021709919281468 -3647.0,0.8018939797240066 -3648.0,0.8016170631799713 -3649.0,0.8013402422630067 -3650.0,0.8010635169400903 -3651.0,0.8007868871782106 -3652.0,0.8005103529443677 -3653.0,0.8002339142055731 -3654.0,0.7999575709288498 -3655.0,0.7996813230812319 -3656.0,0.7994051706297651 -3657.0,0.7991291135415065 -3658.0,0.7988531517835243 -3659.0,0.7985772853228985 -3660.0,0.7983015141267202 -3661.0,0.7980258381620918 -3662.0,0.7977502573961271 -3663.0,0.7974747717959516 -3664.0,0.7971993813287017 -3665.0,0.7969240859615254 -3666.0,0.7966488856615819 -3667.0,0.7963737803960418 -3668.0,0.7960987701320871 -3669.0,0.795823854836911 -3670.0,0.7955490344777182 -3671.0,0.7952743090217246 -3672.0,0.7949996784361574 -3673.0,0.7947251426882553 -3674.0,0.7944507017452681 -3675.0,0.7941763555744571 -3676.0,0.7939021041430946 -3677.0,0.7936279474184647 -3678.0,0.7933538853678621 -3679.0,0.7930799179585936 -3680.0,0.7928060451579766 -3681.0,0.7925322669333402 -3682.0,0.7922585832520246 -3683.0,0.7919849940813815 -3684.0,0.7917114993887734 -3685.0,0.7914380991415747 -3686.0,0.7911647933071705 -3687.0,0.7908915818529575 -3688.0,0.7906184647463436 -3689.0,0.7903454419547479 -3690.0,0.7900725134456007 -3691.0,0.7897996791863436 -3692.0,0.7895269391444297 -3693.0,0.7892542932873229 -3694.0,0.7889817415824986 -3695.0,0.7887092839974432 -3696.0,0.7884369204996547 -3697.0,0.7881646510566422 -3698.0,0.7878924756359257 -3699.0,0.7876203942050368 -3700.0,0.7873484067315181 -3701.0,0.7870765131829235 -3702.0,0.7868047135268181 -3703.0,0.7865330077307782 -3704.0,0.7862613957623912 -3705.0,0.7859898775892559 -3706.0,0.7857184531789819 -3707.0,0.7854471224991907 -3708.0,0.785175885517514 -3709.0,0.7849047422015957 -3710.0,0.78463369251909 -3711.0,0.7843627364376629 -3712.0,0.7840918739249911 -3713.0,0.7838211049487628 -3714.0,0.7835504294766773 -3715.0,0.7832798474764449 -3716.0,0.783009358915787 -3717.0,0.7827389637624367 -3718.0,0.7824686619841373 -3719.0,0.7821984535486443 -3720.0,0.7819283384237233 -3721.0,0.7816583165771519 -3722.0,0.7813883879767184 -3723.0,0.7811185525902221 -3724.0,0.7808488103854738 -3725.0,0.7805791613302951 -3726.0,0.780309605392519 -3727.0,0.7800401425399893 -3728.0,0.7797707727405611 -3729.0,0.7795014959621004 -3730.0,0.7792323121724847 -3731.0,0.778963221339602 -3732.0,0.7786942234313521 -3733.0,0.7784253184156453 -3734.0,0.7781565062604032 -3735.0,0.7778877869335586 -3736.0,0.7776191604030551 -3737.0,0.7773506266368475 -3738.0,0.7770821856029019 -3739.0,0.776813837269195 -3740.0,0.7765455816037147 -3741.0,0.7762774185744604 -3742.0,0.776009348149442 -3743.0,0.7757413702966808 -3744.0,0.7754734849842088 -3745.0,0.7752056921800693 -3746.0,0.7749379918523167 -3747.0,0.7746703839690161 -3748.0,0.774402868498244 -3749.0,0.7741354454080877 -3750.0,0.7738681146666454 -3751.0,0.7736008762420268 -3752.0,0.7733337301023521 -3753.0,0.7730666762157529 -3754.0,0.7727997145503713 -3755.0,0.772532845074361 -3756.0,0.7722660677558864 -3757.0,0.7719993825631227 -3758.0,0.7717327894642565 -3759.0,0.7714662884274851 -3760.0,0.771199879421017 -3761.0,0.7709335624130713 -3762.0,0.7706673373718786 -3763.0,0.77040120426568 -3764.0,0.7701351630627278 -3765.0,0.7698692137312853 -3766.0,0.7696033562396266 -3767.0,0.7693375905560369 -3768.0,0.7690719166488121 -3769.0,0.7688063344862596 -3770.0,0.7685408440366971 -3771.0,0.7682754452684536 -3772.0,0.768010138149869 -3773.0,0.767744922649294 -3774.0,0.7674797987350904 -3775.0,0.7672147663756309 -3776.0,0.766949825539299 -3777.0,0.7666849761944893 -3778.0,0.7664202183096069 -3779.0,0.7661555518530684 -3780.0,0.765890976793301 -3781.0,0.7656264930987428 -3782.0,0.7653621007378427 -3783.0,0.7650977996790608 -3784.0,0.7648335898908677 -3785.0,0.7645694713417454 -3786.0,0.7643054440001861 -3787.0,0.7640415078346936 -3788.0,0.763777662813782 -3789.0,0.7635139089059767 -3790.0,0.7632502460798137 -3791.0,0.7629866743038399 -3792.0,0.7627231935466132 -3793.0,0.7624598037767023 -3794.0,0.7621965049626865 -3795.0,0.7619332970731565 -3796.0,0.7616701800767132 -3797.0,0.7614071539419688 -3798.0,0.7611442186375462 -3799.0,0.7608813741320791 -3800.0,0.7606186203942121 -3801.0,0.7603559573926008 -3802.0,0.760093385095911 -3803.0,0.75983090347282 -3804.0,0.7595685124920156 -3805.0,0.7593062121221965 -3806.0,0.7590440023320721 -3807.0,0.7587818830903628 -3808.0,0.7585198543657996 -3809.0,0.7582579161271245 -3810.0,0.7579960683430899 -3811.0,0.7577343109824596 -3812.0,0.7574726440140076 -3813.0,0.7572110674065191 -3814.0,0.75694958112879 -3815.0,0.7566881851496265 -3816.0,0.7564268794378464 -3817.0,0.7561656639622777 -3818.0,0.7559045386917591 -3819.0,0.7556435035951405 -3820.0,0.7553825586412823 -3821.0,0.7551217037990555 -3822.0,0.7548609390373422 -3823.0,0.754600264325035 -3824.0,0.7543396796310372 -3825.0,0.7540791849242631 -3826.0,0.7538187801736375 -3827.0,0.753558465348096 -3828.0,0.7532982404165851 -3829.0,0.7530381053480616 -3830.0,0.7527780601114935 -3831.0,0.7525181046758592 -3832.0,0.752258239010148 -3833.0,0.7519984630833596 -3834.0,0.7517387768645049 -3835.0,0.751479180322605 -3836.0,0.7512196734266922 -3837.0,0.7509602561458089 -3838.0,0.7507009284490087 -3839.0,0.7504416903053557 -3840.0,0.7501825416839245 -3841.0,0.7499234825538008 -3842.0,0.7496645128840806 -3843.0,0.7494056326438708 -3844.0,0.7491468418022887 -3845.0,0.7488881403284627 -3846.0,0.7486295281915314 -3847.0,0.7483710053606443 -3848.0,0.7481125718049615 -3849.0,0.7478542274936538 -3850.0,0.7475959723959026 -3851.0,0.7473378064808999 -3852.0,0.7470797297178484 -3853.0,0.7468217420759615 -3854.0,0.7465638435244631 -3855.0,0.7463060340325878 -3856.0,0.7460483135695808 -3857.0,0.7457906821046979 -3858.0,0.7455331396072056 -3859.0,0.745275686046381 -3860.0,0.7450183213915116 -3861.0,0.7447610456118957 -3862.0,0.7445038586768424 -3863.0,0.7442467605556708 -3864.0,0.7439897512177114 -3865.0,0.7437328306323047 -3866.0,0.7434759987688017 -3867.0,0.7432192555965645 -3868.0,0.7429626010849655 -3869.0,0.7427060352033875 -3870.0,0.7424495579212242 -3871.0,0.7421931692078798 -3872.0,0.7419368690327689 -3873.0,0.7416806573653167 -3874.0,0.7414245341749591 -3875.0,0.7411684994311425 -3876.0,0.7409125531033238 -3877.0,0.7406566951609704 -3878.0,0.7404009255735604 -3879.0,0.7401452443105823 -3880.0,0.7398896513415352 -3881.0,0.7396341466359287 -3882.0,0.739378730163283 -3883.0,0.7391234018931288 -3884.0,0.7388681617950071 -3885.0,0.73861300983847 -3886.0,0.7383579459930794 -3887.0,0.7381029702284081 -3888.0,0.7378480825140394 -3889.0,0.7375932828195672 -3890.0,0.7373385711145954 -3891.0,0.7370839473687392 -3892.0,0.7368294115516233 -3893.0,0.7365749636328839 -3894.0,0.7363206035821671 -3895.0,0.7360663313691295 -3896.0,0.7358121469634382 -3897.0,0.7355580503347712 -3898.0,0.7353040414528162 -3899.0,0.7350501202872722 -3900.0,0.7347962868078479 -3901.0,0.7345425409842631 -3902.0,0.7342888827862476 -3903.0,0.7340353121835418 -3904.0,0.7337818291458967 -3905.0,0.7335284336430736 -3906.0,0.7332751256448442 -3907.0,0.7330219051209909 -3908.0,0.732768772041306 -3909.0,0.7325157263755928 -3910.0,0.7322627680936648 -3911.0,0.7320098971653457 -3912.0,0.7317571135604701 -3913.0,0.7315044172488826 -3914.0,0.7312518082004386 -3915.0,0.7309992863850034 -3916.0,0.7307468517724531 -3917.0,0.7304945043326742 -3918.0,0.7302422440355634 -3919.0,0.7299900708510277 -3920.0,0.729737984748985 -3921.0,0.7294859856993631 -3922.0,0.7292340736721004 -3923.0,0.7289822486371456 -3924.0,0.7287305105644577 -3925.0,0.7284788594240064 -3926.0,0.7282272951857715 -3927.0,0.7279758178197431 -3928.0,0.7277244272959218 -3929.0,0.7274731235843187 -3930.0,0.7272219066549549 -3931.0,0.7269707764778622 -3932.0,0.7267197330230826 -3933.0,0.7264687762606683 -3934.0,0.7262179061606822 -3935.0,0.7259671226931971 -3936.0,0.7257164258282965 -3937.0,0.7254658155360741 -3938.0,0.7252152917866339 -3939.0,0.7249648545500902 -3940.0,0.7247145037965677 -3941.0,0.7244642394962013 -3942.0,0.7242140616191365 -3943.0,0.7239639701355286 -3944.0,0.7237139650155439 -3945.0,0.7234640462293582 -3946.0,0.7232142137471582 -3947.0,0.7229644675391408 -3948.0,0.722714807575513 -3949.0,0.7224652338264921 -3950.0,0.722215746262306 -3951.0,0.7219663448531924 -3952.0,0.7217170295693998 -3953.0,0.7214678003811864 -3954.0,0.7212186572588212 -3955.0,0.720969600172583 -3956.0,0.7207206290927616 -3957.0,0.720471743989656 -3958.0,0.7202229448335763 -3959.0,0.7199742315948425 -3960.0,0.7197256042437851 -3961.0,0.7194770627507444 -3962.0,0.7192286070860714 -3963.0,0.718980237220127 -3964.0,0.7187319531232828 -3965.0,0.71848375476592 -3966.0,0.7182356421184304 -3967.0,0.717987615151216 -3968.0,0.717739673834689 -3969.0,0.7174918181392718 -3970.0,0.7172440480353971 -3971.0,0.7169963634935076 -3972.0,0.7167487644840564 -3973.0,0.7165012509775068 -3974.0,0.7162538229443323 -3975.0,0.7160064803550162 -3976.0,0.7157592231800528 -3977.0,0.7155120513899458 -3978.0,0.7152649649552094 -3979.0,0.7150179638463682 -3980.0,0.7147710480339566 -3981.0,0.7145242174885195 -3982.0,0.7142774721806117 -3983.0,0.7140308120807982 -3984.0,0.7137842371596543 -3985.0,0.7135377473877657 -3986.0,0.7132913427357275 -3987.0,0.7130450231741458 -3988.0,0.7127987886736361 -3989.0,0.7125526392048248 -3990.0,0.7123065747383479 -3991.0,0.7120605952448518 -3992.0,0.7118147006949926 -3993.0,0.7115688910594373 -3994.0,0.7113231663088624 -3995.0,0.7110775264139547 -3996.0,0.7108319713454112 -3997.0,0.7105865010739391 -3998.0,0.7103411155702553 -3999.0,0.7100958148050873 -4000.0,0.7098505987491724 -4001.0,0.7096054673732584 -4002.0,0.7093604206481025 -4003.0,0.7091154585444727 -4004.0,0.7088705810331466 -4005.0,0.7086257880849123 -4006.0,0.7083810796705676 -4007.0,0.7081364557609208 -4008.0,0.7078919163267898 -4009.0,0.707647461339003 -4010.0,0.7074030907683986 -4011.0,0.7071588045858251 -4012.0,0.7069146027621407 -4013.0,0.7066704852682142 -4014.0,0.706426452074924 -4015.0,0.7061825031531588 -4016.0,0.7059386384738172 -4017.0,0.7056948580078078 -4018.0,0.7054511617260497 -4019.0,0.7052075495994714 -4020.0,0.704964021599012 -4021.0,0.7047205776956201 -4022.0,0.7044772178602549 -4023.0,0.7042339420638851 -4024.0,0.7039907502774898 -4025.0,0.703747642472058 -4026.0,0.7035046186185887 -4027.0,0.703261678688091 -4028.0,0.7030188226515837 -4029.0,0.7027760504800961 -4030.0,0.7025333621446671 -4031.0,0.7022907576163459 -4032.0,0.7020482368661913 -4033.0,0.7018057998652726 -4034.0,0.7015634465846686 -4035.0,0.7013211769954686 -4036.0,0.7010789910687715 -4037.0,0.7008368887756861 -4038.0,0.7005948700873316 -4039.0,0.7003529349748367 -4040.0,0.7001110834093406 -4041.0,0.6998693153619918 -4042.0,0.6996276308039495 -4043.0,0.6993860297063823 -4044.0,0.699144512040469 -4045.0,0.6989030777773984 -4046.0,0.6986617268883689 -4047.0,0.6984204593445893 -4048.0,0.6981792751172781 -4049.0,0.6979381741776637 -4050.0,0.6976971564969846 -4051.0,0.6974562220464892 -4052.0,0.6972153707974357 -4053.0,0.6969746027210922 -4054.0,0.6967339177887371 -4055.0,0.6964933159716581 -4056.0,0.6962527972411534 -4057.0,0.6960123615685309 -4058.0,0.6957720089251082 -4059.0,0.695531739282213 -4060.0,0.695291552611183 -4061.0,0.6950514488833657 -4062.0,0.6948114280701183 -4063.0,0.6945714901428082 -4064.0,0.6943316350728126 -4065.0,0.6940918628315184 -4066.0,0.6938521733903226 -4067.0,0.693612566720632 -4068.0,0.6933730427938631 -4069.0,0.6931336015814428 -4070.0,0.6928942430548072 -4071.0,0.6926549671854028 -4072.0,0.6924157739446853 -4073.0,0.6921766633041213 -4074.0,0.6919376352351863 -4075.0,0.691698689709366 -4076.0,0.691459826698156 -4077.0,0.6912210461730616 -4078.0,0.6909823481055981 -4079.0,0.6907437324672906 -4080.0,0.6905051992296739 -4081.0,0.6902667483642927 -4082.0,0.6900283798427017 -4083.0,0.6897900936364653 -4084.0,0.6895518897171574 -4085.0,0.6893137680563624 -4086.0,0.6890757286256737 -4087.0,0.6888377713966952 -4088.0,0.6885998963410404 -4089.0,0.6883621034303323 -4090.0,0.6881243926362042 -4091.0,0.6878867639302987 -4092.0,0.6876492172842685 -4093.0,0.687411752669776 -4094.0,0.6871743700584936 -4095.0,0.6869370694221031 -4096.0,0.6866998507322962 -4097.0,0.6864627139607747 -4098.0,0.6862256590792497 -4099.0,0.6859886860594423 -4100.0,0.6857517948730832 -4101.0,0.6855149854919135 -4102.0,0.685278257887683 -4103.0,0.6850416120321523 -4104.0,0.684805047897091 -4105.0,0.6845685654542786 -4106.0,0.6843321646755048 -4107.0,0.6840958455325685 -4108.0,0.6838596079972786 -4109.0,0.6836234520414537 -4110.0,0.6833873776369221 -4111.0,0.683151384755522 -4112.0,0.6829154733691007 -4113.0,0.6826796434495163 -4114.0,0.6824438949686357 -4115.0,0.6822082278983357 -4116.0,0.6819726422105031 -4117.0,0.6817371378770344 -4118.0,0.6815017148698354 -4119.0,0.6812663731608217 -4120.0,0.6810311127219192 -4121.0,0.6807959335250628 -4122.0,0.6805608355421974 -4123.0,0.6803258187452774 -4124.0,0.6800908831062672 -4125.0,0.6798560285971406 -4126.0,0.679621255189881 -4127.0,0.6793865628564819 -4128.0,0.6791519515689461 -4129.0,0.6789174212992862 -4130.0,0.6786829720195245 -4131.0,0.6784486037016928 -4132.0,0.6782143163178328 -4133.0,0.6779801098399957 -4134.0,0.6777459842402421 -4135.0,0.6775119394906429 -4136.0,0.6772779755632782 -4137.0,0.6770440924302377 -4138.0,0.6768102900636207 -4139.0,0.6765765684355366 -4140.0,0.676342927518104 -4141.0,0.6761093672834512 -4142.0,0.6758758877037161 -4143.0,0.6756424887510465 -4144.0,0.6754091703975993 -4145.0,0.6751759326155417 -4146.0,0.6749427753770497 -4147.0,0.6747096986543097 -4148.0,0.6744767024195172 -4149.0,0.6742437866448775 -4150.0,0.6740109513026054 -4151.0,0.6737781963649253 -4152.0,0.6735455218040713 -4153.0,0.6733129275922871 -4154.0,0.6730804137018258 -4155.0,0.6728479801049502 -4156.0,0.6726156267739326 -4157.0,0.6723833536810551 -4158.0,0.672151160798609 -4159.0,0.6719190480988956 -4160.0,0.6716870155542255 -4161.0,0.6714550631369187 -4162.0,0.6712231908193053 -4163.0,0.6709913985737244 -4164.0,0.6707596863725249 -4165.0,0.6705280541880653 -4166.0,0.6702965019927135 -4167.0,0.6700650297588471 -4168.0,0.6698336374588529 -4169.0,0.6696023250651278 -4170.0,0.6693710925500779 -4171.0,0.6691399398861186 -4172.0,0.6689088670456752 -4173.0,0.6686778740011825 -4174.0,0.6684469607250846 -4175.0,0.6682161271898351 -4176.0,0.6679853733678975 -4177.0,0.6677546992317445 -4178.0,0.6675241047538583 -4179.0,0.6672935899067306 -4180.0,0.6670631546628627 -4181.0,0.6668327989947653 -4182.0,0.6666025228749589 -4183.0,0.666372326275973 -4184.0,0.6661422091703468 -4185.0,0.6659121715306292 -4186.0,0.6656822133293782 -4187.0,0.6654523345391616 -4188.0,0.6652225351325565 -4189.0,0.6649928150821494 -4190.0,0.6647631743605366 -4191.0,0.6645336129403233 -4192.0,0.6643041307941248 -4193.0,0.6640747278945655 -4194.0,0.6638454042142791 -4195.0,0.6636161597259091 -4196.0,0.6633869944021085 -4197.0,0.6631579082155392 -4198.0,0.6629289011388732 -4199.0,0.6626999731447913 -4200.0,0.6624711242059844 -4201.0,0.6622423542951522 -4202.0,0.6620136633850043 -4203.0,0.6617850514482595 -4204.0,0.661556518457646 -4205.0,0.6613280643859015 -4206.0,0.6610996892057731 -4207.0,0.6608713928900174 -4208.0,0.6606431754114003 -4209.0,0.660415036742697 -4210.0,0.6601869768566923 -4211.0,0.6599589957261802 -4212.0,0.6597310933239644 -4213.0,0.6595032696228577 -4214.0,0.6592755245956823 -4215.0,0.6590478582152701 -4216.0,0.6588202704544621 -4217.0,0.6585927612861087 -4218.0,0.6583653306830696 -4219.0,0.6581379786182141 -4220.0,0.6579107050644208 -4221.0,0.6576835099945776 -4222.0,0.6574563933815817 -4223.0,0.6572293551983398 -4224.0,0.6570023954177678 -4225.0,0.6567755140127913 -4226.0,0.6565487109563448 -4227.0,0.6563219862213725 -4228.0,0.6560953397808276 -4229.0,0.655868771607673 -4230.0,0.6556422816748806 -4231.0,0.655415869955432 -4232.0,0.6551895364223178 -4233.0,0.654963281048538 -4234.0,0.6547371038071021 -4235.0,0.6545110046710289 -4236.0,0.6542849836133462 -4237.0,0.6540590406070915 -4238.0,0.6538331756253114 -4239.0,0.6536073886410618 -4240.0,0.653381679627408 -4241.0,0.6531560485574246 -4242.0,0.6529304954041953 -4243.0,0.6527050201408134 -4244.0,0.6524796227403814 -4245.0,0.652254303176011 -4246.0,0.6520290614208231 -4247.0,0.651803897447948 -4248.0,0.6515788112305254 -4249.0,0.6513538027417041 -4250.0,0.6511288719546422 -4251.0,0.6509040188425073 -4252.0,0.6506792433784756 -4253.0,0.6504545455357336 -4254.0,0.650229925287476 -4255.0,0.6500053826069075 -4256.0,0.6497809174672419 -4257.0,0.6495565298417018 -4258.0,0.6493322197035196 -4259.0,0.6491079870259369 -4260.0,0.648883831782204 -4261.0,0.6486597539455811 -4262.0,0.6484357534893371 -4263.0,0.6482118303867507 -4264.0,0.6479879846111093 -4265.0,0.6477642161357097 -4266.0,0.647540524933858 -4267.0,0.6473169109788697 -4268.0,0.647093374244069 -4269.0,0.6468699147027895 -4270.0,0.6466465323283745 -4271.0,0.6464232270941758 -4272.0,0.6461999989735548 -4273.0,0.6459768479398821 -4274.0,0.6457537739665372 -4275.0,0.6455307770269092 -4276.0,0.6453078570943961 -4277.0,0.6450850141424053 -4278.0,0.644862248144353 -4279.0,0.6446395590736651 -4280.0,0.6444169469037764 -4281.0,0.6441944116081306 -4282.0,0.6439719531601812 -4283.0,0.6437495715333904 -4284.0,0.6435272667012296 -4285.0,0.6433050386371797 -4286.0,0.6430828873147303 -4287.0,0.6428608127073804 -4288.0,0.6426388147886382 -4289.0,0.6424168935320208 -4290.0,0.6421950489110548 -4291.0,0.6419732808992757 -4292.0,0.6417515894702281 -4293.0,0.6415299745974661 -4294.0,0.6413084362545522 -4295.0,0.6410869744150589 -4296.0,0.6408655890525673 -4297.0,0.6406442801406677 -4298.0,0.6404230476529595 -4299.0,0.6402018915630514 -4300.0,0.639980811844561 -4301.0,0.6397598084711151 -4302.0,0.6395388814163498 -4303.0,0.6393180306539099 -4304.0,0.6390972561574496 -4305.0,0.638876557900632 -4306.0,0.6386559358571295 -4307.0,0.6384353900006237 -4308.0,0.6382149203048046 -4309.0,0.6379945267433722 -4310.0,0.637774209290035 -4311.0,0.6375539679185108 -4312.0,0.6373338026025264 -4313.0,0.6371137133158176 -4314.0,0.6368937000321293 -4315.0,0.6366737627252156 -4316.0,0.6364539013688397 -4317.0,0.6362341159367736 -4318.0,0.6360144064027985 -4319.0,0.6357947727407047 -4320.0,0.6355752149242916 -4321.0,0.6353557329273674 -4322.0,0.6351363267237495 -4323.0,0.6349169962872644 -4324.0,0.6346977415917476 -4325.0,0.6344785626110436 -4326.0,0.6342594593190058 -4327.0,0.6340404316894971 -4328.0,0.6338214796963888 -4329.0,0.6336026033135617 -4330.0,0.6333838025149052 -4331.0,0.6331650772743183 -4332.0,0.6329464275657084 -4333.0,0.6327278533629923 -4334.0,0.6325093546400957 -4335.0,0.6322909313709534 -4336.0,0.6320725835295088 -4337.0,0.6318543110897148 -4338.0,0.6316361140255331 -4339.0,0.6314179923109343 -4340.0,0.6311999459198981 -4341.0,0.6309819748264132 -4342.0,0.6307640790044772 -4343.0,0.6305462584280968 -4344.0,0.6303285130712873 -4345.0,0.6301108429080736 -4346.0,0.6298932479124891 -4347.0,0.6296757280585763 -4348.0,0.6294582833203867 -4349.0,0.6292409136719808 -4350.0,0.6290236190874278 -4351.0,0.6288063995408061 -4352.0,0.6285892550062031 -4353.0,0.628372185457715 -4354.0,0.6281551908694469 -4355.0,0.627938271215513 -4356.0,0.6277214264700364 -4357.0,0.6275046566071489 -4358.0,0.6272879616009918 -4359.0,0.6270713414257146 -4360.0,0.6268547960554763 -4361.0,0.6266383254644445 -4362.0,0.6264219296267961 -4363.0,0.6262056085167163 -4364.0,0.6259893621083997 -4365.0,0.6257731903760498 -4366.0,0.6255570932938788 -4367.0,0.6253410708361078 -4368.0,0.625125122976967 -4369.0,0.6249092496906954 -4370.0,0.6246934509515409 -4371.0,0.6244777267337602 -4372.0,0.6242620770116191 -4373.0,0.624046501759392 -4374.0,0.6238310009513626 -4375.0,0.6236155745618228 -4376.0,0.6234002225650742 -4377.0,0.6231849449354268 -4378.0,0.6229697416471993 -4379.0,0.6227546126747199 -4380.0,0.622539557992325 -4381.0,0.6223245775743602 -4382.0,0.6221096713951799 -4383.0,0.6218948394291475 -4384.0,0.6216800816506349 -4385.0,0.6214653980340232 -4386.0,0.6212507885537023 -4387.0,0.6210362531840706 -4388.0,0.6208217918995358 -4389.0,0.6206074046745141 -4390.0,0.6203930914834307 -4391.0,0.6201788523007197 -4392.0,0.6199646871008239 -4393.0,0.6197505958581948 -4394.0,0.6195365785472929 -4395.0,0.6193226351425877 -4396.0,0.6191087656185572 -4397.0,0.6188949699496883 -4398.0,0.6186812481104766 -4399.0,0.618467600075427 -4400.0,0.6182540258190525 -4401.0,0.6180405253158755 -4402.0,0.6178270985404268 -4403.0,0.6176137454672461 -4404.0,0.6174004660708821 -4405.0,0.617187260325892 -4406.0,0.6169741282068419 -4407.0,0.6167610696883068 -4408.0,0.6165480847448702 -4409.0,0.6163351733511248 -4410.0,0.6161223354816716 -4411.0,0.6159095711111207 -4412.0,0.6156968802140907 -4413.0,0.6154842627652094 -4414.0,0.615271718739113 -4415.0,0.6150592481104464 -4416.0,0.6148468508538636 -4417.0,0.614634526944027 -4418.0,0.6144222763556079 -4419.0,0.6142100990632865 -4420.0,0.6139979950417515 -4421.0,0.6137859642657003 -4422.0,0.6135740067098395 -4423.0,0.6133621223488839 -4424.0,0.6131503111575571 -4425.0,0.612938573110592 -4426.0,0.6127269081827293 -4427.0,0.6125153163487194 -4428.0,0.6123037975833205 -4429.0,0.6120923518613003 -4430.0,0.6118809791574346 -4431.0,0.6116696794465083 -4432.0,0.6114584527033148 -4433.0,0.6112472989026565 -4434.0,0.611036218019344 -4435.0,0.6108252100281972 -4436.0,0.6106142749040442 -4437.0,0.6104034126217219 -4438.0,0.6101926231560763 -4439.0,0.6099819064819614 -4440.0,0.6097712625742403 -4441.0,0.6095606914077848 -4442.0,0.6093501929574753 -4443.0,0.6091397671982008 -4444.0,0.6089294141048592 -4445.0,0.6087191336523567 -4446.0,0.6085089258156086 -4447.0,0.6082987905695384 -4448.0,0.6080887278890786 -4449.0,0.6078787377491703 -4450.0,0.6076688201247632 -4451.0,0.6074589749908156 -4452.0,0.6072492023222945 -4453.0,0.6070395020941756 -4454.0,0.6068298742814432 -4455.0,0.6066203188590902 -4456.0,0.6064108358021181 -4457.0,0.6062014250855372 -4458.0,0.6059920866843663 -4459.0,0.605782820573633 -4460.0,0.6055736267283731 -4461.0,0.6053645051236315 -4462.0,0.6051554557344614 -4463.0,0.6049464785359248 -4464.0,0.6047375735030922 -4465.0,0.6045287406110428 -4466.0,0.6043199798348643 -4467.0,0.6041112911496531 -4468.0,0.6039026745305142 -4469.0,0.6036941299525611 -4470.0,0.603485657390916 -4471.0,0.6032772568207095 -4472.0,0.6030689282170812 -4473.0,0.6028606715551789 -4474.0,0.6026524868101589 -4475.0,0.6024443739571864 -4476.0,0.6022363329714352 -4477.0,0.6020283638280874 -4478.0,0.6018204665023339 -4479.0,0.601612640969374 -4480.0,0.6014048872044154 -4481.0,0.6011972051826749 -4482.0,0.6009895948793775 -4483.0,0.6007820562697568 -4484.0,0.6005745893290548 -4485.0,0.6003671940325225 -4486.0,0.6001598703554188 -4487.0,0.5999526182730117 -4488.0,0.5997454377605775 -4489.0,0.5995383287934012 -4490.0,0.599331291346776 -4491.0,0.5991243253960039 -4492.0,0.5989174309163955 -4493.0,0.5987106078832697 -4494.0,0.5985038562719538 -4495.0,0.5982971760577843 -4496.0,0.5980905672161054 -4497.0,0.5978840297222704 -4498.0,0.5976775635516408 -4499.0,0.5974711686795866 -4500.0,0.5972648450814865 -4501.0,0.5970585927327275 -4502.0,0.5968524116087053 -4503.0,0.5966463016848239 -4504.0,0.5964402629364961 -4505.0,0.5962342953391427 -4506.0,0.5960283988681935 -4507.0,0.5958225734990863 -4508.0,0.5956168192072678 -4509.0,0.5954111359681931 -4510.0,0.5952055237573255 -4511.0,0.5949999825501371 -4512.0,0.5947945123221082 -4513.0,0.5945891130487279 -4514.0,0.5943837847054932 -4515.0,0.5941785272679104 -4516.0,0.5939733407114935 -4517.0,0.5937682250117653 -4518.0,0.593563180144257 -4519.0,0.5933582060845082 -4520.0,0.593153302808067 -4521.0,0.59294847029049 -4522.0,0.592743708507342 -4523.0,0.5925390174341967 -4524.0,0.5923343970466357 -4525.0,0.5921298473202494 -4526.0,0.5919253682306365 -4527.0,0.591720959753404 -4528.0,0.5915166218641675 -4529.0,0.5913123545385512 -4530.0,0.5911081577521874 -4531.0,0.5909040314807167 -4532.0,0.5906999756997885 -4533.0,0.5904959903850604 -4534.0,0.5902920755121985 -4535.0,0.5900882310568772 -4536.0,0.5898844569947794 -4537.0,0.5896807533015962 -4538.0,0.5894771199530273 -4539.0,0.5892735569247808 -4540.0,0.589070064192573 -4541.0,0.5888666417321289 -4542.0,0.5886632895191813 -4543.0,0.5884600075294721 -4544.0,0.5882567957387512 -4545.0,0.5880536541227769 -4546.0,0.5878505826573157 -4547.0,0.5876475813181429 -4548.0,0.5874446500810419 -4549.0,0.5872417889218042 -4550.0,0.5870389978162303 -4551.0,0.5868362767401284 -4552.0,0.5866336256693155 -4553.0,0.5864310445796169 -4554.0,0.5862285334468661 -4555.0,0.5860260922469048 -4556.0,0.5858237209555835 -4557.0,0.5856214195487608 -4558.0,0.5854191880023033 -4559.0,0.5852170262920865 -4560.0,0.585014934393994 -4561.0,0.5848129122839175 -4562.0,0.5846109599377575 -4563.0,0.5844090773314223 -4564.0,0.584207264440829 -4565.0,0.5840055212419027 -4566.0,0.5838038477105769 -4567.0,0.5836022438227935 -4568.0,0.5834007095545024 -4569.0,0.5831992448816623 -4570.0,0.5829978497802397 -4571.0,0.5827965242262099 -4572.0,0.582595268195556 -4573.0,0.5823940816642696 -4574.0,0.5821929646083509 -4575.0,0.5819919170038078 -4576.0,0.5817909388266569 -4577.0,0.5815900300529231 -4578.0,0.5813891906586391 -4579.0,0.5811884206198467 -4580.0,0.5809877199125951 -4581.0,0.5807870885129424 -4582.0,0.5805865263969545 -4583.0,0.5803860335407061 -4584.0,0.5801856099202797 -4585.0,0.5799852555117662 -4586.0,0.5797849702912647 -4587.0,0.579584754234883 -4588.0,0.5793846073187363 -4589.0,0.5791845295189488 -4590.0,0.5789845208116527 -4591.0,0.5787845811729885 -4592.0,0.5785847105791047 -4593.0,0.578384909006158 -4594.0,0.578185176430314 -4595.0,0.5779855128277457 -4596.0,0.5777859181746348 -4597.0,0.577586392447171 -4598.0,0.5773869356215526 -4599.0,0.5771875476739856 -4600.0,0.5769882285806847 -4601.0,0.5767889783178723 -4602.0,0.5765897968617797 -4603.0,0.5763906841886456 -4604.0,0.5761916402747175 -4605.0,0.5759926650962508 -4606.0,0.5757937586295093 -4607.0,0.575594920850765 -4608.0,0.5753961517362978 -4609.0,0.5751974512623962 -4610.0,0.5749988194053565 -4611.0,0.5748002561414836 -4612.0,0.57460176144709 -4613.0,0.5744033352984971 -4614.0,0.5742049776720338 -4615.0,0.5740066885440377 -4616.0,0.5738084678908543 -4617.0,0.5736103156888371 -4618.0,0.5734122319143484 -4619.0,0.5732142165437579 -4620.0,0.5730162695534441 -4621.0,0.572818390919793 -4622.0,0.5726205806191995 -4623.0,0.5724228386280661 -4624.0,0.5722251649228035 -4625.0,0.5720275594798309 -4626.0,0.5718300222755752 -4627.0,0.5716325532864718 -4628.0,0.571435152488964 -4629.0,0.5712378198595035 -4630.0,0.5710405553745498 -4631.0,0.5708433590105707 -4632.0,0.5706462307440421 -4633.0,0.5704491705514481 -4634.0,0.5702521784092807 -4635.0,0.5700552542940404 -4636.0,0.5698583981822354 -4637.0,0.5696616100503823 -4638.0,0.5694648898750058 -4639.0,0.5692682376326385 -4640.0,0.5690716532998211 -4641.0,0.5688751368531026 -4642.0,0.5686786882690402 -4643.0,0.5684823075241989 -4644.0,0.5682859945951518 -4645.0,0.5680897494584805 -4646.0,0.5678935720907738 -4647.0,0.5676974624686298 -4648.0,0.5675014205686538 -4649.0,0.5673054463674594 -4650.0,0.5671095398416683 -4651.0,0.5669137009679105 -4652.0,0.5667179297228235 -4653.0,0.5665222260830535 -4654.0,0.5663265900252543 -4655.0,0.566131021526088 -4656.0,0.5659355205622247 -4657.0,0.5657400871103426 -4658.0,0.565544721147128 -4659.0,0.565349422649275 -4660.0,0.5651541915934859 -4661.0,0.5649590279564712 -4662.0,0.5647639317149492 -4663.0,0.5645689028456464 -4664.0,0.5643739413252973 -4665.0,0.5641790471306443 -4666.0,0.563984220238438 -4667.0,0.563789460625437 -4668.0,0.5635947682684079 -4669.0,0.5634001431441252 -4670.0,0.5632055852293718 -4671.0,0.5630110945009381 -4672.0,0.5628166709356229 -4673.0,0.5626223145102329 -4674.0,0.5624280252015827 -4675.0,0.5622338029864951 -4676.0,0.5620396478418007 -4677.0,0.5618455597443384 -4678.0,0.5616515386709546 -4679.0,0.5614575845985044 -4680.0,0.5612636975038501 -4681.0,0.5610698773638626 -4682.0,0.5608761241554205 -4683.0,0.5606824378554105 -4684.0,0.5604888184407272 -4685.0,0.5602952658882732 -4686.0,0.5601017801749592 -4687.0,0.5599083612777036 -4688.0,0.5597150091734331 -4689.0,0.5595217238390822 -4690.0,0.5593285052515932 -4691.0,0.5591353533879166 -4692.0,0.5589422682250109 -4693.0,0.5587492497398423 -4694.0,0.5585562979093852 -4695.0,0.5583634127106218 -4696.0,0.5581705941205424 -4697.0,0.557977842116145 -4698.0,0.5577851566744357 -4699.0,0.5575925377724288 -4700.0,0.5573999853871459 -4701.0,0.5572074994956171 -4702.0,0.5570150800748802 -4703.0,0.556822727101981 -4704.0,0.5566304405539731 -4705.0,0.5564382204079183 -4706.0,0.5562460666408859 -4707.0,0.5560539792299536 -4708.0,0.5558619581522066 -4709.0,0.5556700033847383 -4710.0,0.5554781149046497 -4711.0,0.55528629268905 -4712.0,0.5550945367150565 -4713.0,0.5549028469597936 -4714.0,0.5547112234003945 -4715.0,0.5545196660139997 -4716.0,0.5543281747777579 -4717.0,0.5541367496688255 -4718.0,0.5539453906643671 -4719.0,0.5537540977415547 -4720.0,0.5535628708775686 -4721.0,0.5533717100495966 -4722.0,0.553180615234835 -4723.0,0.5529895864104873 -4724.0,0.5527986235537653 -4725.0,0.5526077266418884 -4726.0,0.5524168956520841 -4727.0,0.5522261305615875 -4728.0,0.5520354313476419 -4729.0,0.5518447979874981 -4730.0,0.5516542304584151 -4731.0,0.5514637287376595 -4732.0,0.5512732928025058 -4733.0,0.5510829226302364 -4734.0,0.5508926181981416 -4735.0,0.5507023794835194 -4736.0,0.5505122064636757 -4737.0,0.5503220991159242 -4738.0,0.5501320574175866 -4739.0,0.5499420813459923 -4740.0,0.5497521708784784 -4741.0,0.5495623259923902 -4742.0,0.5493725466650803 -4743.0,0.5491828328739097 -4744.0,0.5489931845962467 -4745.0,0.5488036018094677 -4746.0,0.548614084490957 -4747.0,0.5484246326181065 -4748.0,0.5482352461683158 -4749.0,0.5480459251189926 -4750.0,0.5478566694475523 -4751.0,0.5476674791314181 -4752.0,0.5474783541480209 -4753.0,0.5472892944747996 -4754.0,0.5471003000892005 -4755.0,0.5469113709686783 -4756.0,0.5467225070906948 -4757.0,0.5465337084327201 -4758.0,0.5463449749722319 -4759.0,0.5461563066867156 -4760.0,0.5459677035536644 -4761.0,0.5457791655505795 -4762.0,0.5455906926549696 -4763.0,0.5454022848443513 -4764.0,0.5452139420962487 -4765.0,0.5450256643881942 -4766.0,0.5448374516977275 -4767.0,0.5446493040023962 -4768.0,0.5444612212797556 -4769.0,0.5442732035073689 -4770.0,0.5440852506628069 -4771.0,0.5438973627236482 -4772.0,0.543709539667479 -4773.0,0.5435217814718937 -4774.0,0.5433340881144939 -4775.0,0.5431464595728891 -4776.0,0.5429588958246967 -4777.0,0.5427713968475417 -4778.0,0.5425839626190568 -4779.0,0.5423965931168825 -4780.0,0.542209288318667 -4781.0,0.5420220482020661 -4782.0,0.5418348727447435 -4783.0,0.5416477619243706 -4784.0,0.5414607157186263 -4785.0,0.5412737341051975 -4786.0,0.5410868170617785 -4787.0,0.5408999645660716 -4788.0,0.5407131765957864 -4789.0,0.5405264531286409 -4790.0,0.54033979414236 -4791.0,0.5401531996146767 -4792.0,0.5399666695233317 -4793.0,0.5397802038460734 -4794.0,0.5395938025606576 -4795.0,0.5394074656448481 -4796.0,0.5392211930764162 -4797.0,0.539034984833141 -4798.0,0.5388488408928094 -4799.0,0.5386627612332154 -4800.0,0.5384767458321613 -4801.0,0.5382907946674568 -4802.0,0.5381049077169192 -4803.0,0.5379190849583737 -4804.0,0.5377333263696528 -4805.0,0.5375476319285969 -4806.0,0.5373620016130541 -4807.0,0.5371764354008801 -4808.0,0.536990933269938 -4809.0,0.536805495198099 -4810.0,0.5366201211632413 -4811.0,0.5364348111432515 -4812.0,0.5362495651160235 -4813.0,0.5360643830594585 -4814.0,0.5358792649514658 -4815.0,0.5356942107699622 -4816.0,0.5355092204928719 -4817.0,0.535324294098127 -4818.0,0.5351394315636673 -4819.0,0.5349546328674398 -4820.0,0.5347698979873996 -4821.0,0.534585226901509 -4822.0,0.5344006195877381 -4823.0,0.5342160760240646 -4824.0,0.5340315961884738 -4825.0,0.5338471800589588 -4826.0,0.5336628276135198 -4827.0,0.533478538830165 -4828.0,0.5332943136869102 -4829.0,0.5331101521617785 -4830.0,0.5329260542328009 -4831.0,0.532742019878016 -4832.0,0.5325580490754694 -4833.0,0.5323741418032152 -4834.0,0.5321902980393143 -4835.0,0.5320065177618356 -4836.0,0.5318228009488554 -4837.0,0.5316391475784578 -4838.0,0.531455557628734 -4839.0,0.5312720310777832 -4840.0,0.5310885679037122 -4841.0,0.5309051680846348 -4842.0,0.5307218315986731 -4843.0,0.5305385584239561 -4844.0,0.530355348538621 -4845.0,0.5301722019208118 -4846.0,0.5299891185486807 -4847.0,0.5298060984003872 -4848.0,0.5296231414540982 -4849.0,0.5294402476879883 -4850.0,0.5292574170802395 -4851.0,0.5290746496090417 -4852.0,0.528891945252592 -4853.0,0.5287093039890949 -4854.0,0.5285267257967627 -4855.0,0.5283442106538154 -4856.0,0.5281617585384801 -4857.0,0.5279793694289916 -4858.0,0.5277970433035921 -4859.0,0.5276147801405316 -4860.0,0.5274325799180674 -4861.0,0.5272504426144642 -4862.0,0.5270683682079945 -4863.0,0.5268863566769381 -4864.0,0.5267044079995823 -4865.0,0.526522522154222 -4866.0,0.5263406991191596 -4867.0,0.5261589388727049 -4868.0,0.5259772413931751 -4869.0,0.5257956066588952 -4870.0,0.5256140346481974 -4871.0,0.5254325253394216 -4872.0,0.5252510787109149 -4873.0,0.5250696947410322 -4874.0,0.5248883734081354 -4875.0,0.5247071146905946 -4876.0,0.5245259185667868 -4877.0,0.5243447850150965 -4878.0,0.5241637140139159 -4879.0,0.5239827055416445 -4880.0,0.5238017595766894 -4881.0,0.523620876097465 -4882.0,0.5234400550823932 -4883.0,0.5232592965099034 -4884.0,0.5230786003584325 -4885.0,0.5228979666064245 -4886.0,0.5227173952323315 -4887.0,0.5225368862146124 -4888.0,0.5223564395317337 -4889.0,0.5221760551621697 -4890.0,0.5219957330844017 -4891.0,0.5218154732769186 -4892.0,0.5216352757182167 -4893.0,0.5214551403867999 -4894.0,0.5212750672611791 -4895.0,0.5210950563198731 -4896.0,0.5209151075414078 -4897.0,0.5207352209043167 -4898.0,0.5205553963871407 -4899.0,0.5203756339684278 -4900.0,0.5201959336267339 -4901.0,0.5200162953406219 -4902.0,0.5198367190886624 -4903.0,0.519657204849433 -4904.0,0.5194777526015193 -4905.0,0.5192983623235138 -4906.0,0.5191190339940165 -4907.0,0.518939767591635 -4908.0,0.5187605630949839 -4909.0,0.5185814204826855 -4910.0,0.5184023397333696 -4911.0,0.5182233208256727 -4912.0,0.5180443637382396 -4913.0,0.5178654684497219 -4914.0,0.5176866349387786 -4915.0,0.5175078631840763 -4916.0,0.5173291531642886 -4917.0,0.517150504858097 -4918.0,0.5169719182441899 -4919.0,0.5167933933012632 -4920.0,0.5166149300080203 -4921.0,0.5164365283431716 -4922.0,0.5162581882854353 -4923.0,0.5160799098135367 -4924.0,0.5159016929062084 -4925.0,0.5157235375421904 -4926.0,0.51554544370023 -4927.0,0.5153674113590823 -4928.0,0.5151894404975089 -4929.0,0.5150115310942793 -4930.0,0.5148336831281703 -4931.0,0.5146558965779658 -4932.0,0.5144781714224574 -4933.0,0.5143005076404435 -4934.0,0.5141229052107303 -4935.0,0.5139453641121311 -4936.0,0.5137678843234664 -4937.0,0.5135904658235643 -4938.0,0.5134131085912599 -4939.0,0.513235812605396 -4940.0,0.5130585778448223 -4941.0,0.5128814042883961 -4942.0,0.5127042919149819 -4943.0,0.5125272407034513 -4944.0,0.5123502506326837 -4945.0,0.5121733216815652 -4946.0,0.5119964538289895 -4947.0,0.5118196470538576 -4948.0,0.5116429013350778 -4949.0,0.5114662166515656 -4950.0,0.5112895929822436 -4951.0,0.5111130303060423 -4952.0,0.5109365286018988 -4953.0,0.5107600878487576 -4954.0,0.5105837080255708 -4955.0,0.5104073891112976 -4956.0,0.5102311310849044 -4957.0,0.5100549339253647 -4958.0,0.5098787976116599 -4959.0,0.5097027221227778 -4960.0,0.509526707437714 -4961.0,0.5093507535354713 -4962.0,0.5091748603950598 -4963.0,0.5089990279954965 -4964.0,0.5088232563158058 -4965.0,0.5086475453350198 -4966.0,0.5084718950321772 -4967.0,0.5082963053863241 -4968.0,0.5081207763765141 -4969.0,0.5079453079818079 -4970.0,0.5077699001812734 -4971.0,0.5075945529539857 -4972.0,0.507419266279027 -4973.0,0.5072440401354871 -4974.0,0.5070688745024627 -4975.0,0.5068937693590578 -4976.0,0.5067187246843836 -4977.0,0.5065437404575587 -4978.0,0.5063688166577086 -4979.0,0.5061939532639663 -4980.0,0.5060191502554717 -4981.0,0.5058444076113723 -4982.0,0.5056697253108223 -4983.0,0.5054951033329836 -4984.0,0.505320541657025 -4985.0,0.5051460402621226 -4986.0,0.5049715991274596 -4987.0,0.5047972182322263 -4988.0,0.5046228975556206 -4989.0,0.5044486370768473 -4990.0,0.5042744367751183 -4991.0,0.5041002966296526 -4992.0,0.5039262166196768 -4993.0,0.5037521967244245 -4994.0,0.5035782369231361 -4995.0,0.5034043371950597 -4996.0,0.5032304975194501 -4997.0,0.5030567178755698 -4998.0,0.5028829982426879 -4999.0,0.502709338600081 -5000.0,0.5025357389270328 -5001.0,0.5023621992028341 -5002.0,0.5021887194067829 -5003.0,0.5020152995181844 -5004.0,0.5018419395163506 -5005.0,0.5016686393806011 -5006.0,0.5014953990902624 -5007.0,0.5013222186246684 -5008.0,0.5011490979631597 -5009.0,0.5009760370850843 -5010.0,0.5008030359697975 -5011.0,0.5006300945966612 -5012.0,0.500457212945045 -5013.0,0.5002843909943253 -5014.0,0.5001116287238857 -5015.0,0.499938926113117 -5016.0,0.4997662831414169 -5017.0,0.49959369978819046 -5018.0,0.49942117603284963 -5019.0,0.49924871185481373 -5020.0,0.49907630723350893 -5021.0,0.4989039621483687 -5022.0,0.4987316765788334 -5023.0,0.49855945050435074 -5024.0,0.49838728390437537 -5025.0,0.498215176758369 -5026.0,0.4980431290458006 -5027.0,0.49787114074614613 -5028.0,0.4976992118388886 -5029.0,0.4975273423035182 -5030.0,0.49735553211953204 -5031.0,0.4971837812664345 -5032.0,0.49701208972373695 -5033.0,0.4968404574709578 -5034.0,0.4966688844876226 -5035.0,0.49649737075326394 -5036.0,0.4963259162474215 -5037.0,0.49615452094964196 -5038.0,0.4959831848394792 -5039.0,0.495811907896494 -5040.0,0.49564069010025424 -5041.0,0.495469531430335 -5042.0,0.49529843186631817 -5043.0,0.49512739138779294 -5044.0,0.49495640997435525 -5045.0,0.4947854876056084 -5046.0,0.4946146242611627 -5047.0,0.4944438199206352 -5048.0,0.49427307456365027 -5049.0,0.49410238816983926 -5050.0,0.49393176071884043 -5051.0,0.4937611921902993 -5052.0,0.4935906825638682 -5053.0,0.4934202318192066 -5054.0,0.493249839935981 -5055.0,0.49307950689386476 -5056.0,0.49290923267253856 -5057.0,0.49273901725168984 -5058.0,0.4925688606110132 -5059.0,0.4923987627302101 -5060.0,0.49222872358898917 -5061.0,0.49205874316706594 -5062.0,0.491888821444163 -5063.0,0.49171895840000995 -5064.0,0.49154915401434335 -5065.0,0.4913794082669068 -5066.0,0.4912097211374508 -5067.0,0.491040092605733 -5068.0,0.4908705226515179 -5069.0,0.4907010112545771 -5070.0,0.49053155839468904 -5071.0,0.4903621640516393 -5072.0,0.4901928282052203 -5073.0,0.4900235508352315 -5074.0,0.48985433192147954 -5075.0,0.4896851714437776 -5076.0,0.48951606938194614 -5077.0,0.48934702571581257 -5078.0,0.4891780404252111 -5079.0,0.4890091134899832 -5080.0,0.48884024488997696 -5081.0,0.4886714346050477 -5082.0,0.4885026826150574 -5083.0,0.4883339888998754 -5084.0,0.4881653534393776 -5085.0,0.48799677621344717 -5086.0,0.487828257201974 -5087.0,0.48765979638485496 -5088.0,0.48749139374199396 -5089.0,0.4873230492533017 -5090.0,0.4871547628986961 -5091.0,0.48698653465810166 -5092.0,0.48681836451145 -5093.0,0.4866502524386797 -5094.0,0.4864821984197362 -5095.0,0.48631420243457185 -5096.0,0.48614626446314596 -5097.0,0.4859783844854248 -5098.0,0.4858105624813815 -5099.0,0.48564279843099606 -5100.0,0.4854750923142555 -5101.0,0.4853074441111536 -5102.0,0.4851398538016914 -5103.0,0.48497232136587637 -5104.0,0.4848048467837232 -5105.0,0.4846374300352534 -5106.0,0.48447007110049534 -5107.0,0.4843027699594843 -5108.0,0.48413552659226256 -5109.0,0.4839683409788791 -5110.0,0.48380121309939 -5111.0,0.48363414293385804 -5112.0,0.48346713046235296 -5113.0,0.4833001756649515 -5114.0,0.48313327852173704 -5115.0,0.48296643901280006 -5116.0,0.48279965711823775 -5117.0,0.48263293281815434 -5118.0,0.48246626609266074 -5119.0,0.4822996569218749 -5120.0,0.4821331052859214 -5121.0,0.48196661116493206 -5122.0,0.4818001745390453 -5123.0,0.48163379538840634 -5124.0,0.48146747369316745 -5125.0,0.4813012094334876 -5126.0,0.48113500258953273 -5127.0,0.4809688531414756 -5128.0,0.4808027610694957 -5129.0,0.4806367263537795 -5130.0,0.4804707489745203 -5131.0,0.48030482891191817 -5132.0,0.48013896614618007 -5133.0,0.47997316065751977 -5134.0,0.4798074124261579 -5135.0,0.4796417214323219 -5136.0,0.47947608765624605 -5137.0,0.4793105110781714 -5138.0,0.47914499167834596 -5139.0,0.4789795294370244 -5140.0,0.4788141243344683 -5141.0,0.478648776350946 -5142.0,0.4784834854667328 -5143.0,0.4783182516621106 -5144.0,0.4781530749173683 -5145.0,0.47798795521280146 -5146.0,0.47782289252871246 -5147.0,0.4776578868454106 -5148.0,0.4774929381432119 -5149.0,0.47732804640243914 -5150.0,0.477163211603422 -5151.0,0.4769984337264968 -5152.0,0.4768337127520068 -5153.0,0.476669048660302 -5154.0,0.47650444143173915 -5155.0,0.4763398910466818 -5156.0,0.4761753974855003 -5157.0,0.4760109607285718 -5158.0,0.47584658075628006 -5159.0,0.47568225754901594 -5160.0,0.4755179910871768 -5161.0,0.4753537813511668 -5162.0,0.475189628321397 -5163.0,0.47502553197828506 -5164.0,0.4748614923022555 -5165.0,0.47469750927373966 -5166.0,0.47453358287317543 -5167.0,0.4743697130810077 -5168.0,0.47420589987768796 -5169.0,0.4740421432436745 -5170.0,0.4738784431594323 -5171.0,0.47371479960543317 -5172.0,0.4735512125621556 -5173.0,0.4733876820100849 -5174.0,0.47322420792971304 -5175.0,0.47306079030153875 -5176.0,0.4728974291060675 -5177.0,0.47273412432381146 -5178.0,0.4725708759352896 -5179.0,0.4724076839210276 -5180.0,0.4722445482615578 -5181.0,0.4720814689374193 -5182.0,0.471918445929158 -5183.0,0.47175547921732636 -5184.0,0.4715925687824837 -5185.0,0.4714297146051959 -5186.0,0.4712669166660357 -5187.0,0.47110417494558254 -5188.0,0.47094148942442243 -5189.0,0.47077886008314823 -5190.0,0.47061628690235946 -5191.0,0.4704537698626623 -5192.0,0.47029130894466964 -5193.0,0.4701289041290011 -5194.0,0.46996655539628296 -5195.0,0.46980426272714815 -5196.0,0.4696420261022364 -5197.0,0.46947984550219407 -5198.0,0.46931772090767415 -5199.0,0.4691556522993364 -5200.0,0.46899363965784724 -5201.0,0.46883168296387967 -5202.0,0.4686697821981135 -5203.0,0.4685079373412351 -5204.0,0.46834614837393757 -5205.0,0.46818441527692073 -5206.0,0.4680227380308909 -5207.0,0.4678611166165612 -5208.0,0.4676995510146514 -5209.0,0.4675380412058879 -5210.0,0.4673765871710037 -5211.0,0.4672151888907386 -5212.0,0.46705384634583885 -5213.0,0.4668925595170576 -5214.0,0.4667313283851544 -5215.0,0.46657015293089554 -5216.0,0.46640903313505405 -5217.0,0.4662479689784095 -5218.0,0.466086960441748 -5219.0,0.46592600750586255 -5220.0,0.4657651101515526 -5221.0,0.4656042683596242 -5222.0,0.46544348211089015 -5223.0,0.46528275138616987 -5224.0,0.46512207616628926 -5225.0,0.4649614564320809 -5226.0,0.4648008921643842 -5227.0,0.4646403833440449 -5228.0,0.4644799299519155 -5229.0,0.46431953196885506 -5230.0,0.46415918937572925 -5231.0,0.46399890215341044 -5232.0,0.4638386702827775 -5233.0,0.4636784937447158 -5234.0,0.4635183725201177 -5235.0,0.4633583065898817 -5236.0,0.46319829593491324 -5237.0,0.46303834053612414 -5238.0,0.4628784403744329 -5239.0,0.46271859543076455 -5240.0,0.46255880568605084 -5241.0,0.46239907112123 -5242.0,0.4622393917172468 -5243.0,0.46207976745505275 -5244.0,0.46192019831560577 -5245.0,0.4617606842798704 -5246.0,0.4616012253288178 -5247.0,0.46144182144342577 -5248.0,0.4612824726046785 -5249.0,0.4611231787935668 -5250.0,0.46096393999108815 -5251.0,0.46080475617824646 -5252.0,0.4606456273360523 -5253.0,0.4604865534455228 -5254.0,0.4603275344876816 -5255.0,0.46016857044355886 -5256.0,0.4600096612941913 -5257.0,0.45985080702062225 -5258.0,0.4596920076039016 -5259.0,0.4595332630250856 -5260.0,0.4593745732652374 -5261.0,0.45921593830542623 -5262.0,0.45905735812672827 -5263.0,0.45889883271022597 -5264.0,0.45874036203700846 -5265.0,0.45858194608817127 -5266.0,0.4584235848448166 -5267.0,0.4582652782880531 -5268.0,0.4581070263989959 -5269.0,0.4579488291587668 -5270.0,0.4577906865484939 -5271.0,0.457632598549312 -5272.0,0.45747456514236234 -5273.0,0.4573165863087928 -5274.0,0.45715866202975747 -5275.0,0.45700079228641727 -5276.0,0.4568429770599394 -5277.0,0.4566852163314978 -5278.0,0.4565275100822726 -5279.0,0.45636985829345067 -5280.0,0.4562122609462253 -5281.0,0.45605471802179626 -5282.0,0.45589722950136985 -5283.0,0.4557397953661588 -5284.0,0.4555824155973824 -5285.0,0.45542509017626637 -5286.0,0.45526781908404296 -5287.0,0.45511060230195083 -5288.0,0.4549534398112352 -5289.0,0.45479633159314775 -5290.0,0.4546392776289465 -5291.0,0.45448227789989626 -5292.0,0.45432533238726797 -5293.0,0.45416844107233917 -5294.0,0.4540116039363939 -5295.0,0.45385482096072266 -5296.0,0.4536980921266223 -5297.0,0.4535414174153964 -5298.0,0.45338479680835453 -5299.0,0.45322823028681325 -5300.0,0.45307171783209516 -5301.0,0.4529152594255295 -5302.0,0.4527588550484519 -5303.0,0.4526025046822046 -5304.0,0.452446208308136 -5305.0,0.45228996590760107 -5306.0,0.4521337774619613 -5307.0,0.4519776429525845 -5308.0,0.45182156236084503 -5309.0,0.4516655356681235 -5310.0,0.45150956285580723 -5311.0,0.45135364390528965 -5312.0,0.45119777879797085 -5313.0,0.4510419675152572 -5314.0,0.4508862100385616 -5315.0,0.4507305063493033 -5316.0,0.450574856428908 -5317.0,0.45041926025880774 -5318.0,0.45026371782044106 -5319.0,0.45010822909525294 -5320.0,0.44995279406469463 -5321.0,0.44979741271022394 -5322.0,0.44964208501330494 -5323.0,0.4494868109554082 -5324.0,0.44933159051801064 -5325.0,0.44917642368259564 -5326.0,0.44902131043065285 -5327.0,0.4488662507436785 -5328.0,0.4487112446031749 -5329.0,0.44855629199065117 -5330.0,0.4484013928876225 -5331.0,0.44824654727561053 -5332.0,0.44809175513614335 -5333.0,0.4479370164507554 -5334.0,0.4477823312009875 -5335.0,0.4476276993683867 -5336.0,0.44747312093450664 -5337.0,0.4473185958809073 -5338.0,0.4471641241891548 -5339.0,0.44700970584082195 -5340.0,0.44685534081748773 -5341.0,0.4467010291007375 -5342.0,0.446546770672163 -5343.0,0.44639256551336226 -5344.0,0.44623841360593985 -5345.0,0.4460843149315065 -5346.0,0.44593026947167935 -5347.0,0.44577627720808194 -5348.0,0.4456223381223441 -5349.0,0.44546845219610204 -5350.0,0.44531461941099826 -5351.0,0.4451608397486816 -5352.0,0.4450071131908074 -5353.0,0.444853439719037 -5354.0,0.44469981931503844 -5355.0,0.44454625196048586 -5356.0,0.44439273763705983 -5357.0,0.4442392763264472 -5358.0,0.4440858680103411 -5359.0,0.4439325126704411 -5360.0,0.443779210288453 -5361.0,0.44362596084608896 -5362.0,0.44347276432506744 -5363.0,0.4433196207071131 -5364.0,0.4431665299739572 -5365.0,0.4430134921073371 -5366.0,0.4428605070889963 -5367.0,0.4427075749006851 -5368.0,0.4425546955241596 -5369.0,0.4424018689411825 -5370.0,0.4422490951335226 -5371.0,0.4420963740829552 -5372.0,0.4419437057712618 -5373.0,0.4417910901802301 -5374.0,0.44163852729165426 -5375.0,0.44148601708733454 -5376.0,0.44133355954907766 -5377.0,0.4411811546586965 -5378.0,0.44102880239801034 -5379.0,0.4408765027488446 -5380.0,0.44072425569303103 -5381.0,0.4405720612124078 -5382.0,0.440419919288819 -5383.0,0.4402678299041154 -5384.0,0.4401157930401537 -5385.0,0.4399638086787971 -5386.0,0.43981187680191497 -5387.0,0.43965999739138295 -5388.0,0.4395081704290829 -5389.0,0.43935639589690295 -5390.0,0.4392046737767376 -5391.0,0.4390530040504874 -5392.0,0.43890138670005935 -5393.0,0.43874982170736654 -5394.0,0.4385983090543284 -5395.0,0.43844684872287054 -5396.0,0.4382954406949249 -5397.0,0.4381440849524295 -5398.0,0.43799278147732884 -5399.0,0.4378415302515735 -5400.0,0.43769033125712026 -5401.0,0.43753918447593215 -5402.0,0.4373880898899785 -5403.0,0.4372370474812349 -5404.0,0.4370860572316829 -5405.0,0.4369351191233107 -5406.0,0.4367842331381123 -5407.0,0.43663339925808825 -5408.0,0.4364826174652451 -5409.0,0.43633188774159565 -5410.0,0.43618121006915894 -5411.0,0.4360305844299603 -5412.0,0.4358800108060311 -5413.0,0.43572948917940907 -5414.0,0.435579019532138 -5415.0,0.4354286018462681 -5416.0,0.43527823610385546 -5417.0,0.4351279222869627 -5418.0,0.4349776603776584 -5419.0,0.4348274503580174 -5420.0,0.43467729221012075 -5421.0,0.43452718591605566 -5422.0,0.4343771314579156 -5423.0,0.4342271288178001 -5424.0,0.43407717797781503 -5425.0,0.43392727892007227 -5426.0,0.43377743162668997 -5427.0,0.4336276360797925 -5428.0,0.43347789226151023 -5429.0,0.43332820015397994 -5430.0,0.4331785597393443 -5431.0,0.4330289709997525 -5432.0,0.4328794339173595 -5433.0,0.4327299484743268 -5434.0,0.43258051465282166 -5435.0,0.4324311324350179 -5436.0,0.4322818018030952 -5437.0,0.4321325227392396 -5438.0,0.4319832952256431 -5439.0,0.431834119244504 -5440.0,0.43168499477802663 -5441.0,0.43153592180842165 -5442.0,0.4313869003179056 -5443.0,0.43123793028870144 -5444.0,0.43108901170303804 -5445.0,0.43094014454315055 -5446.0,0.4307913287912802 -5447.0,0.43064256442967425 -5448.0,0.43049385144058633 -5449.0,0.430345189806276 -5450.0,0.4301965795090091 -5451.0,0.43004802053105734 -5452.0,0.42989951285469885 -5453.0,0.4297510564622177 -5454.0,0.4296026513359041 -5455.0,0.42945429745805447 -5456.0,0.4293059948109712 -5457.0,0.4291577433769629 -5458.0,0.4290095431383443 -5459.0,0.4288613940774361 -5460.0,0.4287132961765653 -5461.0,0.42856524941806473 -5462.0,0.4284172537842737 -5463.0,0.42826930925753726 -5464.0,0.4281214158202068 -5465.0,0.4279735734546397 -5466.0,0.4278257821431994 -5467.0,0.4276780418682555 -5468.0,0.4275303526121836 -5469.0,0.4273827143573655 -5470.0,0.4272351270861891 -5471.0,0.42708759078104824 -5472.0,0.4269401054243429 -5473.0,0.42679267099847923 -5474.0,0.4266452874858693 -5475.0,0.4264979548689313 -5476.0,0.4263506731300896 -5477.0,0.4262034422517746 -5478.0,0.4260562622164226 -5479.0,0.4259091330064762 -5480.0,0.4257620546043839 -5481.0,0.42561502699260034 -5482.0,0.4254680501535862 -5483.0,0.42532112406980827 -5484.0,0.4251742487237392 -5485.0,0.425027424097858 -5486.0,0.4248806501746495 -5487.0,0.42473392693660456 -5488.0,0.42458725436622025 -5489.0,0.42444063244599955 -5490.0,0.4242940611584516 -5491.0,0.42414754048609143 -5492.0,0.4240010704114403 -5493.0,0.42385465091702534 -5494.0,0.42370828198537974 -5495.0,0.4235619635990428 -5496.0,0.42341569574055976 -5497.0,0.423269478392482 -5498.0,0.4231233115373668 -5499.0,0.4229771951577775 -5500.0,0.4228311292362835 -5501.0,0.4226851137554603 -5502.0,0.4225391486978892 -5503.0,0.4223932340461577 -5504.0,0.42224736978285915 -5505.0,0.4221015558905931 -5506.0,0.421955792351965 -5507.0,0.4218100791495863 -5508.0,0.4216644162660745 -5509.0,0.42151880368405303 -5510.0,0.42137324138615145 -5511.0,0.4212277293550052 -5512.0,0.42108226757325573 -5513.0,0.4209368560235505 -5514.0,0.42079149468854304 -5515.0,0.4206461835508928 -5516.0,0.4205009225932651 -5517.0,0.42035571179833153 -5518.0,0.4202105511487694 -5519.0,0.42006544062726214 -5520.0,0.4199203802164991 -5521.0,0.41977536989917563 -5522.0,0.4196304096579931 -5523.0,0.4194854994756588 -5524.0,0.4193406393348859 -5525.0,0.41919582921839377 -5526.0,0.4190510691089076 -5527.0,0.4189063589891585 -5528.0,0.41876169884188363 -5529.0,0.4186170886498261 -5530.0,0.418472528395735 -5531.0,0.41832801806236536 -5532.0,0.41818355763247805 -5533.0,0.41803914708884005 -5534.0,0.41789478641422423 -5535.0,0.41775047559140943 -5536.0,0.4176062146031804 -5537.0,0.41746200343232787 -5538.0,0.4173178420616485 -5539.0,0.4171737304739449 -5540.0,0.4170296686520256 -5541.0,0.4168856565787051 -5542.0,0.41674169423680374 -5543.0,0.4165977816091479 -5544.0,0.41645391867856985 -5545.0,0.4163101054279078 -5546.0,0.4161663418400059 -5547.0,0.41602262789771416 -5548.0,0.4158789635838886 -5549.0,0.415735348881391 -5550.0,0.41559178377308936 -5551.0,0.41544826824185727 -5552.0,0.41530480227057437 -5553.0,0.4151613858421263 -5554.0,0.4150180189394045 -5555.0,0.4148747015453063 -5556.0,0.41473143364273496 -5557.0,0.41458821521459976 -5558.0,0.41444504624381573 -5559.0,0.41430192671330385 -5560.0,0.41415885660599105 -5561.0,0.41401583590481006 -5562.0,0.41387286459269956 -5563.0,0.41372994265260415 -5564.0,0.4135870700674742 -5565.0,0.41344424682026615 -5566.0,0.4133014728939422 -5567.0,0.4131587482714704 -5568.0,0.4130160729358249 -5569.0,0.41287344686998534 -5570.0,0.41273087005693765 -5571.0,0.4125883424796734 -5572.0,0.4124458641211901 -5573.0,0.4123034349644911 -5574.0,0.41216105499258565 -5575.0,0.41201872418848884 -5576.0,0.41187644253522165 -5577.0,0.41173421001581095 -5578.0,0.4115920266132895 -5579.0,0.4114498923106957 -5580.0,0.411307807091074 -5581.0,0.41116577093747475 -5582.0,0.411023783832954 -5583.0,0.4108818457605738 -5584.0,0.41073995670340185 -5585.0,0.41059811664451196 -5586.0,0.4104563255669835 -5587.0,0.41031458345390204 -5588.0,0.41017289028835857 -5589.0,0.4100312460534502 -5590.0,0.40988965073227984 -5591.0,0.40974810430795616 -5592.0,0.4096066067635937 -5593.0,0.4094651580823129 -5594.0,0.40932375824723977 -5595.0,0.4091824072415066 -5596.0,0.40904110504825114 -5597.0,0.40889985165061704 -5598.0,0.4087586470317538 -5599.0,0.4086174911748168 -5600.0,0.4084763840629671 -5601.0,0.4083353256793717 -5602.0,0.40819431600720335 -5603.0,0.40805335502964063 -5604.0,0.4079124427298679 -5605.0,0.40777157909107536 -5606.0,0.407630764096459 -5607.0,0.4074899977292206 -5608.0,0.40734927997256787 -5609.0,0.40720861080971404 -5610.0,0.40706799022387846 -5611.0,0.406927418198286 -5612.0,0.40678689471616747 -5613.0,0.4066464197607595 -5614.0,0.4065059933153044 -5615.0,0.4063656153630503 -5616.0,0.4062252858872512 -5617.0,0.40608500487116683 -5618.0,0.4059447722980626 -5619.0,0.40580458815120984 -5620.0,0.4056644524138856 -5621.0,0.40552436506937267 -5622.0,0.4053843261009597 -5623.0,0.40524433549194105 -5624.0,0.40510439322561687 -5625.0,0.404964499285293 -5626.0,0.4048246536542812 -5627.0,0.40468485631589884 -5628.0,0.4045451072534692 -5629.0,0.40440540645032114 -5630.0,0.40426575388978947 -5631.0,0.4041261495552146 -5632.0,0.40398659342994264 -5633.0,0.4038470854973258 -5634.0,0.4037076257407216 -5635.0,0.40356821414349364 -5636.0,0.4034288506890111 -5637.0,0.4032895353606488 -5638.0,0.40315026814178767 -5639.0,0.403011049015814 -5640.0,0.40287187796612 -5641.0,0.40273275497610356 -5642.0,0.4025936800291683 -5643.0,0.40245465310872364 -5644.0,0.4023156741981847 -5645.0,0.40217674328097225 -5646.0,0.40203786034051286 -5647.0,0.40189902536023886 -5648.0,0.40176023832358815 -5649.0,0.4016214992140046 -5650.0,0.40148280801493746 -5651.0,0.40134416470984197 -5652.0,0.401205569282179 -5653.0,0.40106702171541514 -5654.0,0.4009285219930227 -5655.0,0.4007900700984796 -5656.0,0.4006516660152696 -5657.0,0.40051330972688204 -5658.0,0.4003750012168121 -5659.0,0.40023674046856045 -5660.0,0.40009852746563374 -5661.0,0.39996036219154407 -5662.0,0.3998222446298094 -5663.0,0.3996841747639533 -5664.0,0.399546152577505 -5665.0,0.3994081780539995 -5666.0,0.3992702511769774 -5667.0,0.399132371929985 -5668.0,0.3989945402965745 -5669.0,0.39885675626030337 -5670.0,0.398719019804735 -5671.0,0.3985813309134386 -5672.0,0.39844368956998877 -5673.0,0.39830609575796594 -5674.0,0.39816854946095614 -5675.0,0.3980310506625511 -5676.0,0.3978935993463482 -5677.0,0.3977561954959506 -5678.0,0.3976188390949669 -5679.0,0.3974815301270116 -5680.0,0.3973442685757046 -5681.0,0.3972070544246717 -5682.0,0.39706988765754425 -5683.0,0.3969327682579592 -5684.0,0.39679569620955923 -5685.0,0.3966586714959927 -5686.0,0.3965216941009135 -5687.0,0.39638476400798117 -5688.0,0.3962478812008611 -5689.0,0.39611104566322397 -5690.0,0.3959742573787465 -5691.0,0.39583751633111075 -5692.0,0.39570082250400446 -5693.0,0.3955641758811212 -5694.0,0.3954275764461599 -5695.0,0.39529102418282525 -5696.0,0.3951545190748276 -5697.0,0.3950180611058829 -5698.0,0.39488165025971267 -5699.0,0.3947452865200441 -5700.0,0.39460896987061 -5701.0,0.39447270029514875 -5702.0,0.39433647777740444 -5703.0,0.3942003023011267 -5704.0,0.3940641738500708 -5705.0,0.39392809240799753 -5706.0,0.39379205795867345 -5707.0,0.39365607048587065 -5708.0,0.3935201299733667 -5709.0,0.393384236404945 -5710.0,0.39324838976439447 -5711.0,0.3931125900355095 -5712.0,0.39297683720209026 -5713.0,0.3928411312479423 -5714.0,0.392705472156877 -5715.0,0.3925698599127112 -5716.0,0.3924342944992673 -5717.0,0.3922987759003734 -5718.0,0.39216330409986305 -5719.0,0.3920278790815755 -5720.0,0.3918925008293555 -5721.0,0.39175716932705346 -5722.0,0.39162188455852526 -5723.0,0.3914866465076325 -5724.0,0.39135145515824216 -5725.0,0.39121631049422695 -5726.0,0.3910812124994651 -5727.0,0.39094616115784037 -5728.0,0.3908111564532422 -5729.0,0.39067619836956546 -5730.0,0.3905412868907106 -5731.0,0.39040642200058373 -5732.0,0.39027160368309644 -5733.0,0.39013683192216586 -5734.0,0.3900021067017147 -5735.0,0.38986742800567126 -5736.0,0.3897327958179693 -5737.0,0.38959821012254825 -5738.0,0.38946367090335293 -5739.0,0.3893291781443339 -5740.0,0.389194731829447 -5741.0,0.38906033194265394 -5742.0,0.3889259784679217 -5743.0,0.38879167138922294 -5744.0,0.3886574106905357 -5745.0,0.3885231963558437 -5746.0,0.38838902836913625 -5747.0,0.388254906714408 -5748.0,0.3881208313756592 -5749.0,0.3879868023368957 -5750.0,0.38785281958212875 -5751.0,0.3877188830953752 -5752.0,0.3875849928606575 -5753.0,0.3874511488620034 -5754.0,0.3873173510834463 -5755.0,0.38718359950902514 -5756.0,0.3870498941227843 -5757.0,0.38691623490877375 -5758.0,0.3867826218510489 -5759.0,0.38664905493367063 -5760.0,0.38651553414070544 -5761.0,0.3863820594562253 -5762.0,0.3862486308643076 -5763.0,0.38611524834903527 -5764.0,0.38598191189449677 -5765.0,0.38584862148478605 -5766.0,0.38571537710400255 -5767.0,0.3855821787362511 -5768.0,0.38544902636564227 -5769.0,0.38531591997629183 -5770.0,0.3851828595523211 -5771.0,0.3850498450778571 -5772.0,0.38491687653703205 -5773.0,0.3847839539139838 -5774.0,0.3846510771928557 -5775.0,0.38451824635779647 -5776.0,0.3843854613929604 -5777.0,0.3842527222825072 -5778.0,0.38412002901060205 -5779.0,0.3839873815614156 -5780.0,0.383854779919124 -5781.0,0.3837222240679088 -5782.0,0.3835897139919571 -5783.0,0.3834572496754614 -5784.0,0.38332483110261967 -5785.0,0.38319245825763537 -5786.0,0.3830601311247174 -5787.0,0.38292784968807997 -5788.0,0.382795613931943 -5789.0,0.38266342384053165 -5790.0,0.3825312793980767 -5791.0,0.38239918058881417 -5792.0,0.3822671273969857 -5793.0,0.3821351198068383 -5794.0,0.3820031578026244 -5795.0,0.38187124136860195 -5796.0,0.3817393704890342 -5797.0,0.38160754514819 -5798.0,0.3814757653303435 -5799.0,0.3813440310197743 -5800.0,0.3812123422007676 -5801.0,0.3810806988576137 -5802.0,0.38094910097460855 -5803.0,0.3808175485360536 -5804.0,0.3806860415262555 -5805.0,0.38055457992952646 -5806.0,0.38042316373018403 -5807.0,0.3802917929125513 -5808.0,0.38016046746095655 -5809.0,0.38002918735973373 -5810.0,0.37989795259322207 -5811.0,0.3797667631457662 -5812.0,0.3796356190017161 -5813.0,0.37950452014542735 -5814.0,0.37937346656126075 -5815.0,0.3792424582335826 -5816.0,0.3791114951467645 -5817.0,0.37898057728518353 -5818.0,0.3788497046332222 -5819.0,0.3787188771752683 -5820.0,0.3785880948957151 -5821.0,0.37845735777896117 -5822.0,0.37832666580941055 -5823.0,0.3781960189714727 -5824.0,0.3780654172495624 -5825.0,0.3779348606280997 -5826.0,0.3778043490915103 -5827.0,0.37767388262422497 -5828.0,0.37754346121068016 -5829.0,0.37741308483531744 -5830.0,0.37728275348258394 -5831.0,0.377152467136932 -5832.0,0.37702222578281946 -5833.0,0.37689202940470945 -5834.0,0.37676187798707056 -5835.0,0.37663177151437655 -5836.0,0.37650170997110677 -5837.0,0.3763716933417458 -5838.0,0.37624172161078356 -5839.0,0.37611179476271545 -5840.0,0.375981912782042 -5841.0,0.37585207565326945 -5842.0,0.375722283360909 -5843.0,0.3755925358894775 -5844.0,0.3754628332234969 -5845.0,0.3753331753474947 -5846.0,0.37520356224600365 -5847.0,0.3750739939035619 -5848.0,0.3749444703047128 -5849.0,0.3748149914340051 -5850.0,0.37468555727599306 -5851.0,0.374556167815236 -5852.0,0.37442682303629876 -5853.0,0.37429752292375146 -5854.0,0.37416826746216947 -5855.0,0.3740390566361336 -5856.0,0.37390989043023004 -5857.0,0.37378076882905004 -5858.0,0.3736516918171904 -5859.0,0.37352265937925316 -5860.0,0.3733936714998457 -5861.0,0.3732647281635808 -5862.0,0.37313582935507633 -5863.0,0.37300697505895564 -5864.0,0.37287816525984735 -5865.0,0.3727493999423854 -5866.0,0.37262067909120905 -5867.0,0.3724920026909628 -5868.0,0.3723633707262965 -5869.0,0.3722347831818653 -5870.0,0.3721062400423297 -5871.0,0.3719777412923553 -5872.0,0.3718492869166133 -5873.0,0.3717208768997799 -5874.0,0.3715925112265368 -5875.0,0.37146418988157087 -5876.0,0.37133591284957435 -5877.0,0.3712076801152447 -5878.0,0.37107949166328463 -5879.0,0.3709513474784023 -5880.0,0.37082324754531104 -5881.0,0.3706951918487294 -5882.0,0.37056718037338127 -5883.0,0.3704392131039958 -5884.0,0.3703112900253075 -5885.0,0.37018341112205605 -5886.0,0.3700555763789864 -5887.0,0.3699277857808488 -5888.0,0.3698000393123988 -5889.0,0.36967233695839713 -5890.0,0.36954467870360985 -5891.0,0.3694170645328083 -5892.0,0.369289494430769 -5893.0,0.3691619683822738 -5894.0,0.3690344863721097 -5895.0,0.3689070483850691 -5896.0,0.36877965440594956 -5897.0,0.3686523044195539 -5898.0,0.36852499841069014 -5899.0,0.36839773636417167 -5900.0,0.36827051826481705 -5901.0,0.3681433440974501 -5902.0,0.3680162138468998 -5903.0,0.3678891274980005 -5904.0,0.36776208503559177 -5905.0,0.3676350864445183 -5906.0,0.36750813170963004 -5907.0,0.36738122081578223 -5908.0,0.36725435374783544 -5909.0,0.3671275304906553 -5910.0,0.36700075102911267 -5911.0,0.36687401534808367 -5912.0,0.36674732343244976 -5913.0,0.3666206752670974 -5914.0,0.36649407083691854 -5915.0,0.36636751012681 -5916.0,0.36624099312167424 -5917.0,0.36611451980641846 -5918.0,0.3659880901659555 -5919.0,0.3658617041852031 -5920.0,0.36573536184908445 -5921.0,0.3656090631425277 -5922.0,0.3654828080504665 -5923.0,0.36535659655783936 -5924.0,0.3652304286495903 -5925.0,0.36510430431066837 -5926.0,0.36497822352602777 -5927.0,0.36485218628062815 -5928.0,0.36472619255943406 -5929.0,0.36460024234741545 -5930.0,0.36447433562954723 -5931.0,0.36434847239080986 -5932.0,0.3642226526161886 -5933.0,0.36409687629067417 -5934.0,0.3639711433992623 -5935.0,0.36384545392695405 -5936.0,0.36371980785875546 -5937.0,0.363594205179678 -5938.0,0.3634686458747381 -5939.0,0.36334312992895756 -5940.0,0.36321765732736305 -5941.0,0.3630922280549868 -5942.0,0.3629668420968659 -5943.0,0.36284149943804284 -5944.0,0.3627162000635649 -5945.0,0.362590943958485 -5946.0,0.36246573110786107 -5947.0,0.36234056149675586 -5948.0,0.3622154351102378 -5949.0,0.36209035193338 -5950.0,0.3619653119512612 -5951.0,0.36184031514896475 -5952.0,0.36171536151157974 -5953.0,0.3615904510241999 -5954.0,0.36146558367192444 -5955.0,0.3613407594398575 -5956.0,0.36121597831310853 -5957.0,0.361091240276792 -5958.0,0.3609665453160277 -5959.0,0.3608418934159402 -5960.0,0.3607172845616597 -5961.0,0.360592718738321 -5962.0,0.36046819593106455 -5963.0,0.3603437161250355 -5964.0,0.3602192793053844 -5965.0,0.3600948854572669 -5966.0,0.35997053456584366 -5967.0,0.3598462266162806 -5968.0,0.3597219615937485 -5969.0,0.3595977394834236 -5970.0,0.35947356027048705 -5971.0,0.35934942394012526 -5972.0,0.3592253304775296 -5973.0,0.35910127986789664 -5974.0,0.358977272096428 -5975.0,0.3588533071483305 -5976.0,0.358729385008816 -5977.0,0.3586055056631016 -5978.0,0.3584816690964093 -5979.0,0.35835787529396634 -5980.0,0.3582341242410049 -5981.0,0.3581104159227626 -5982.0,0.3579867503244817 -5983.0,0.3578631274314099 -5984.0,0.3577395472288 -5985.0,0.35761600970190965 -5986.0,0.3574925148360018 -5987.0,0.3573690626163443 -5988.0,0.35724565302821043 -5989.0,0.357122286056878 -5990.0,0.3569989616876305 -5991.0,0.3568756799057561 -5992.0,0.3567524406965482 -5993.0,0.35662924404530527 -5994.0,0.3565060899373309 -5995.0,0.3563829783579336 -5996.0,0.3562599092924272 -5997.0,0.35613688272613025 -5998.0,0.35601389864436683 -5999.0,0.3558909570324656 -6000.0,0.35576805787576066 -6001.0,0.355645201159591 -6002.0,0.35552238686930066 -6003.0,0.3553996149902389 -6004.0,0.3552768855077599 -6005.0,0.3551541984072229 -6006.0,0.35503155367399214 -6007.0,0.3549089512934372 -6008.0,0.35478639125093225 -6009.0,0.3546638735318571 -6010.0,0.3545413981215959 -6011.0,0.35441896500553854 -6012.0,0.35429657416907945 -6013.0,0.3541742255976184 -6014.0,0.35405191927656005 -6015.0,0.3539296551913142 -6016.0,0.35380743332729553 -6017.0,0.35368525366992404 -6018.0,0.3535631162046244 -6019.0,0.35344102091682655 -6020.0,0.3533189677919654 -6021.0,0.353196956815481 -6022.0,0.35307498797281833 -6023.0,0.35295306124942727 -6024.0,0.352831176630763 -6025.0,0.35270933410228544 -6026.0,0.3525875336494597 -6027.0,0.3524657752577559 -6028.0,0.3523440589126492 -6029.0,0.35222238459961963 -6030.0,0.3521007523041524 -6031.0,0.35197916201173757 -6032.0,0.35185761370787044 -6033.0,0.35173610737805105 -6034.0,0.3516146430077848 -6035.0,0.35149322058258153 -6036.0,0.35137184008795674 -6037.0,0.35125050150943044 -6038.0,0.35112920483252796 -6039.0,0.35100795004277935 -6040.0,0.3508867371257198 -6041.0,0.35076556606688974 -6042.0,0.35064443685183405 -6043.0,0.3505233494661031 -6044.0,0.35040230389525184 -6045.0,0.3502813001248406 -6046.0,0.3501603381404344 -6047.0,0.3500394179276035 -6048.0,0.3499185394719228 -6049.0,0.3497977027589726 -6050.0,0.3496769077743378 -6051.0,0.3495561545036085 -6052.0,0.34943544293237966 -6053.0,0.34931477304625136 -6054.0,0.34919414483082845 -6055.0,0.34907355827172104 -6056.0,0.3489530133545438 -6057.0,0.34883251006491683 -6058.0,0.34871204838846476 -6059.0,0.3485916283108175 -6060.0,0.3484712498176099 -6061.0,0.34835091289448145 -6062.0,0.3482306175270771 -6063.0,0.34811036370104625 -6064.0,0.3479901514020437 -6065.0,0.3478699806157288 -6066.0,0.34774985132776626 -6067.0,0.34762976352382535 -6068.0,0.34750971718958057 -6069.0,0.3473897123107112 -6070.0,0.3472697488729017 -6071.0,0.34714982686184104 -6072.0,0.34702994626322364 -6073.0,0.34691010706274844 -6074.0,0.34679030924611964 -6075.0,0.3466705527990461 -6076.0,0.34655083770724193 -6077.0,0.34643116395642576 -6078.0,0.3463115315323215 -6079.0,0.34619194042065804 -6080.0,0.3460723906071687 -6081.0,0.3459528820775924 -6082.0,0.3458334148176723 -6083.0,0.3457139888131572 -6084.0,0.3455946040498001 -6085.0,0.3454752605133595 -6086.0,0.3453559581895984 -6087.0,0.3452366970642851 -6088.0,0.34511747712319246 -6089.0,0.34499829835209855 -6090.0,0.3448791607367861 -6091.0,0.34476006426304295 -6092.0,0.3446410089166616 -6093.0,0.34452199468343986 -6094.0,0.3444030215491799 -6095.0,0.3442840894996894 -6096.0,0.34416519852078037 -6097.0,0.34404634859827016 -6098.0,0.3439275397179808 -6099.0,0.3438087718657392 -6100.0,0.3436900450273773 -6101.0,0.3435713591887318 -6102.0,0.3434527143356444 -6103.0,0.3433341104539615 -6104.0,0.3432155475295347 -6105.0,0.3430970255482202 -6106.0,0.3429785444958792 -6107.0,0.34286010435837777 -6108.0,0.34274170512158697 -6109.0,0.34262334677138245 -6110.0,0.34250502929364507 -6111.0,0.34238675267426033 -6112.0,0.3422685168991188 -6113.0,0.34215032195411565 -6114.0,0.3420321678251513 -6115.0,0.3419140544981306 -6116.0,0.3417959819589636 -6117.0,0.34167795019356517 -6118.0,0.3415599591878548 -6119.0,0.3414420089277573 -6120.0,0.3413240993992017 -6121.0,0.3412062305881226 -6122.0,0.3410884024804589 -6123.0,0.3409706150621547 -6124.0,0.3408528683191587 -6125.0,0.3407351622374246 -6126.0,0.3406174968029109 -6127.0,0.34049987200158116 -6128.0,0.34038228781940333 -6129.0,0.34026474424235065 -6130.0,0.34014724125640095 -6131.0,0.34002977884753705 -6132.0,0.33991235700174643 -6133.0,0.33979497570502165 -6134.0,0.3396776349433599 -6135.0,0.3395603347027632 -6136.0,0.3394430749692387 -6137.0,0.33932585572879803 -6138.0,0.3392086769674578 -6139.0,0.3390915386712394 -6140.0,0.3389744408261693 -6141.0,0.33885738341827826 -6142.0,0.33874036643360245 -6143.0,0.33862338985818236 -6144.0,0.3385064536780638 -6145.0,0.33838955787929687 -6146.0,0.338272702447937 -6147.0,0.338155887370044 -6148.0,0.33803911263168285 -6149.0,0.33792237821892296 -6150.0,0.337805684117839 -6151.0,0.33768903031451 -6152.0,0.3375724167950202 -6153.0,0.3374558435454583 -6154.0,0.337339310551918 -6155.0,0.33722281780049795 -6156.0,0.33710636527730115 -6157.0,0.3369899529684358 -6158.0,0.33687358086001473 -6159.0,0.3367572489381556 -6160.0,0.33664095718898085 -6161.0,0.3365247055986178 -6162.0,0.33640849415319835 -6163.0,0.3362923228388594 -6164.0,0.33617619164174256 -6165.0,0.33606010054799423 -6166.0,0.3359440495437655 -6167.0,0.3358280386152125 -6168.0,0.33571206774849577 -6169.0,0.335596136929781 -6170.0,0.3354802461452384 -6171.0,0.3353643953810431 -6172.0,0.33524858462337487 -6173.0,0.33513281385841837 -6174.0,0.33501708307236305 -6175.0,0.334901392251403 -6176.0,0.3347857413817372 -6177.0,0.3346701304495693 -6178.0,0.33455455944110774 -6179.0,0.3344390283425658 -6180.0,0.33432353714016144 -6181.0,0.33420808582011735 -6182.0,0.3340926743686612 -6183.0,0.333977302772025 -6184.0,0.33386197101644594 -6185.0,0.3337466790881657 -6186.0,0.33363142697343084 -6187.0,0.33351621465849257 -6188.0,0.333401042129607 -6189.0,0.3332859093730347 -6190.0,0.3331708163750414 -6191.0,0.33305576312189716 -6192.0,0.332940749599877 -6193.0,0.33282577579526085 -6194.0,0.3327108416943329 -6195.0,0.3325959472833825 -6196.0,0.3324810925487035 -6197.0,0.3323662774765947 -6198.0,0.3322515020533593 -6199.0,0.33213676626530564 -6200.0,0.3320220700987464 -6201.0,0.3319074135399993 -6202.0,0.3317927965753865 -6203.0,0.33167821919123525 -6204.0,0.3315636813738771 -6205.0,0.3314491831096486 -6206.0,0.3313347243848909 -6207.0,0.3312203051859501 -6208.0,0.3311059254991765 -6209.0,0.3309915853109257 -6210.0,0.3308772846075576 -6211.0,0.33076302337543706 -6212.0,0.3306488016009335 -6213.0,0.3305346192704211 -6214.0,0.33042047637027877 -6215.0,0.33030637288689 -6216.0,0.33019230880664324 -6217.0,0.33007828411593126 -6218.0,0.329964298801152 -6219.0,0.3298503528487076 -6220.0,0.3297364462450053 -6221.0,0.3296225789764568 -6222.0,0.32950875102947863 -6223.0,0.3293949623904918 -6224.0,0.3292812130459224 -6225.0,0.3291675029822007 -6226.0,0.3290538321857621 -6227.0,0.3289402006430464 -6228.0,0.32882660834049826 -6229.0,0.3287130552645669 -6230.0,0.3285995414017062 -6231.0,0.328486066738375 -6232.0,0.3283726312610364 -6233.0,0.32825923495615844 -6234.0,0.32814587781021376 -6235.0,0.3280325598096797 -6236.0,0.32791928094103817 -6237.0,0.327806041190776 -6238.0,0.3276928405453843 -6239.0,0.3275796789913592 -6240.0,0.3274665565152013 -6241.0,0.32735347310341595 -6242.0,0.3272404287425131 -6243.0,0.3271274234190074 -6244.0,0.32701445711941807 -6245.0,0.32690152983026916 -6246.0,0.3267886415380891 -6247.0,0.3266757922294114 -6248.0,0.3265629818907737 -6249.0,0.32645021050871864 -6250.0,0.3263374780697936 -6251.0,0.3262247845605501 -6252.0,0.32611212996754485 -6253.0,0.3259995142773389 -6254.0,0.32588693747649805 -6255.0,0.3257743995515927 -6256.0,0.3256619004891979 -6257.0,0.3255494402758933 -6258.0,0.3254370188982632 -6259.0,0.3253246363428966 -6260.0,0.3252122925963871 -6261.0,0.3250999876453329 -6262.0,0.3249877214763368 -6263.0,0.3248754940760062 -6264.0,0.3247633054309534 -6265.0,0.32465115552779483 -6266.0,0.3245390443531521 -6267.0,0.324426971893651 -6268.0,0.3243149381359221 -6269.0,0.3242029430666007 -6270.0,0.3240909866723265 -6271.0,0.323979068939744 -6272.0,0.3238671898555021 -6273.0,0.3237553494062546 -6274.0,0.32364354757865965 -6275.0,0.3235317843593802 -6276.0,0.32342005973508353 -6277.0,0.3233083736924419 -6278.0,0.3231967262181319 -6279.0,0.3230851172988348 -6280.0,0.3229735469212365 -6281.0,0.3228620150720274 -6282.0,0.3227505217379026 -6283.0,0.3226390669055618 -6284.0,0.3225276505617092 -6285.0,0.3224162726930537 -6286.0,0.32230493328630855 -6287.0,0.322193632328192 -6288.0,0.3220823698054266 -6289.0,0.32197114570473945 -6290.0,0.32185996001286243 -6291.0,0.3217488127165318 -6292.0,0.32163770380248863 -6293.0,0.32152663325747827 -6294.0,0.32141560106825096 -6295.0,0.3213046072215613 -6296.0,0.3211936517041685 -6297.0,0.3210827345028365 -6298.0,0.32097185560433356 -6299.0,0.3208610149954327 -6300.0,0.3207502126629114 -6301.0,0.32063944859355176 -6302.0,0.3205287227741405 -6303.0,0.3204180351914688 -6304.0,0.32030738583233237 -6305.0,0.32019677468353164 -6306.0,0.3200862017318714 -6307.0,0.31997566696416124 -6308.0,0.31986517036721507 -6309.0,0.31975471192785154 -6310.0,0.31964429163289365 -6311.0,0.31953390946916915 -6312.0,0.3194235654235102 -6313.0,0.31931325948275363 -6314.0,0.3192029916337406 -6315.0,0.3190927618633172 -6316.0,0.31898257015833353 -6317.0,0.3188724165056448 -6318.0,0.3187623008921103 -6319.0,0.3186522233045941 -6320.0,0.31854218372996473 -6321.0,0.31843218215509533 -6322.0,0.3183222185668634 -6323.0,0.3182122929521512 -6324.0,0.31810240529784534 -6325.0,0.317992555590837 -6326.0,0.317882743818022 -6327.0,0.31777296996630056 -6328.0,0.31766323402257746 -6329.0,0.3175535359737619 -6330.0,0.3174438758067679 -6331.0,0.31733425350851363 -6332.0,0.3172246690659221 -6333.0,0.3171151224659205 -6334.0,0.31700561369544095 -6335.0,0.3168961427414196 -6336.0,0.3167867095907975 -6337.0,0.3166773142305201 -6338.0,0.3165679566475373 -6339.0,0.31645863682880343 -6340.0,0.3163493547612777 -6341.0,0.3162401104319232 -6342.0,0.3161309038277082 -6343.0,0.3160217349356049 -6344.0,0.3159126037425904 -6345.0,0.3158035102356462 -6346.0,0.315694454401758 -6347.0,0.31558543622791646 -6348.0,0.3154764557011164 -6349.0,0.3153675128083573 -6350.0,0.315258607536643 -6351.0,0.31514973987298195 -6352.0,0.3150409098043869 -6353.0,0.3149321173178755 -6354.0,0.31482336240046926 -6355.0,0.31471464503919483 -6356.0,0.31460596522108275 -6357.0,0.31449732293316845 -6358.0,0.31438871816249164 -6359.0,0.3142801508960967 -6360.0,0.31417162112103214 -6361.0,0.31406312882435133 -6362.0,0.3139546739931118 -6363.0,0.31384625661437565 -6364.0,0.3137378766752097 -6365.0,0.3136295341626848 -6366.0,0.3135212290638766 -6367.0,0.313412961365865 -6368.0,0.31330473105573453 -6369.0,0.313196538120574 -6370.0,0.3130883825474769 -6371.0,0.312980264323541 -6372.0,0.3128721834358686 -6373.0,0.3127641398715664 -6374.0,0.3126561336177457 -6375.0,0.31254816466152197 -6376.0,0.31244023299001544 -6377.0,0.31233233859035053 -6378.0,0.3122244814496564 -6379.0,0.3121166615550663 -6380.0,0.31200887889371826 -6381.0,0.31190113345275444 -6382.0,0.31179342521932163 -6383.0,0.31168575418057115 -6384.0,0.3115781203236585 -6385.0,0.3114705236357438 -6386.0,0.3113629641039915 -6387.0,0.3112554417155706 -6388.0,0.3111479564576544 -6389.0,0.3110405083174208 -6390.0,0.3109330972820519 -6391.0,0.3108257233387344 -6392.0,0.3107183864746593 -6393.0,0.31061108667702225 -6394.0,0.310503823933023 -6395.0,0.31039659822986604 -6396.0,0.31028940955476 -6397.0,0.3101822578949181 -6398.0,0.3100751432375579 -6399.0,0.3099680655699015 -6400.0,0.30986102487917516 -6401.0,0.30975402115260975 -6402.0,0.30964705437744067 -6403.0,0.30954012454090735 -6404.0,0.309433231630254 -6405.0,0.3093263756327289 -6406.0,0.30921955653558514 -6407.0,0.30911277432607975 -6408.0,0.3090060289914746 -6409.0,0.3088993205190355 -6410.0,0.3087926488960332 -6411.0,0.30868601410974233 -6412.0,0.3085794161474422 -6413.0,0.30847285499641647 -6414.0,0.30836633064395325 -6415.0,0.3082598430773448 -6416.0,0.308153392283888 -6417.0,0.308046978250884 -6418.0,0.3079406009656385 -6419.0,0.3078342604154614 -6420.0,0.307727956587667 -6421.0,0.3076216894695742 -6422.0,0.30751545904850586 -6423.0,0.30740926531178964 -6424.0,0.3073031082467573 -6425.0,0.3071969878407452 -6426.0,0.3070909040810938 -6427.0,0.3069848569551482 -6428.0,0.3068788464502577 -6429.0,0.30677287255377605 -6430.0,0.30666693525306127 -6431.0,0.3065610345354759 -6432.0,0.30645517038838666 -6433.0,0.30634934279916487 -6434.0,0.3062435517551859 -6435.0,0.3061377972438298 -6436.0,0.30603207925248066 -6437.0,0.3059263977685273 -6438.0,0.3058207527793625 -6439.0,0.30571514427238367 -6440.0,0.3056095722349926 -6441.0,0.305504036654595 -6442.0,0.30539853751860163 -6443.0,0.3052930748144269 -6444.0,0.3051876485294901 -6445.0,0.30508225865121447 -6446.0,0.3049769051670279 -6447.0,0.3048715880643624 -6448.0,0.30476630733065446 -6449.0,0.3046610629533448 -6450.0,0.30455585491987863 -6451.0,0.30445068321770524 -6452.0,0.3043455478342786 -6453.0,0.30424044875705664 -6454.0,0.304135385973502 -6455.0,0.30403035947108126 -6456.0,0.30392536923726565 -6457.0,0.3038204152595306 -6458.0,0.30371549752535576 -6459.0,0.3036106160222254 -6460.0,0.3035057707376277 -6461.0,0.30340096165905556 -6462.0,0.30329618877400594 -6463.0,0.3031914520699802 -6464.0,0.303086751534484 -6465.0,0.3029820871550274 -6466.0,0.3028774589191246 -6467.0,0.30277286681429433 -6468.0,0.3026683108280594 -6469.0,0.30256379094794716 -6470.0,0.302459307161489 -6471.0,0.3023548594562209 -6472.0,0.30225044781968297 -6473.0,0.3021460722394197 -6474.0,0.30204173270297974 -6475.0,0.3019374291979163 -6476.0,0.3018331617117865 -6477.0,0.30172893023215214 -6478.0,0.30162473474657925 -6479.0,0.30152057524263787 -6480.0,0.3014164517079027 -6481.0,0.3013123641299525 -6482.0,0.30120831249637037 -6483.0,0.30110429679474365 -6484.0,0.30100031701266416 -6485.0,0.3008963731377277 -6486.0,0.30079246515753477 -6487.0,0.30068859305968965 -6488.0,0.3005847568318013 -6489.0,0.3004809564614827 -6490.0,0.30037719193635143 -6491.0,0.3002734632440289 -6492.0,0.3001697703721412 -6493.0,0.30006611330831845 -6494.0,0.2999624920401952 -6495.0,0.29985890655541003 -6496.0,0.29975535684160604 -6497.0,0.2996518428864306 -6498.0,0.29954836467753504 -6499.0,0.2994449222025754 -6500.0,0.29934151544921156 -6501.0,0.29923814440510793 -6502.0,0.29913480905793305 -6503.0,0.2990315093953599 -6504.0,0.29892824540506535 -6505.0,0.298825017074731 -6506.0,0.2987218243920423 -6507.0,0.2986186673446892 -6508.0,0.2985155459203657 -6509.0,0.2984124601067704 -6510.0,0.29830940989160565 -6511.0,0.2982063952625785 -6512.0,0.29810341620739994 -6513.0,0.2980004727137854 -6514.0,0.2978975647694544 -6515.0,0.2977946923621308 -6516.0,0.29769185547954274 -6517.0,0.2975890541094224 -6518.0,0.29748628823950646 -6519.0,0.29738355785753556 -6520.0,0.2972808629512549 -6521.0,0.2971782035084135 -6522.0,0.29707557951676505 -6523.0,0.2969729909640671 -6524.0,0.2968704378380817 -6525.0,0.2967679201265749 -6526.0,0.2966654378173172 -6527.0,0.296562990898083 -6528.0,0.2964605793566515 -6529.0,0.29635820318080536 -6530.0,0.29625586235833207 -6531.0,0.296153556877023 -6532.0,0.29605128672467396 -6533.0,0.2959490518890848 -6534.0,0.2958468523580597 -6535.0,0.295744688119407 -6536.0,0.2956425591609392 -6537.0,0.295540465470473 -6538.0,0.2954384070358295 -6539.0,0.2953363838448339 -6540.0,0.2952343958853154 -6541.0,0.2951324431451077 -6542.0,0.29503052561204857 -6543.0,0.29492864327398 -6544.0,0.2948267961187481 -6545.0,0.2947249841342034 -6546.0,0.29462320730820024 -6547.0,0.2945214656285976 -6548.0,0.2944197590832583 -6549.0,0.29431808766004963 -6550.0,0.29421645134684277 -6551.0,0.29411485013151334 -6552.0,0.29401328400194104 -6553.0,0.2939117529460098 -6554.0,0.2938102569516077 -6555.0,0.2937087960066269 -6556.0,0.29360737009896404 -6557.0,0.29350597921651955 -6558.0,0.29340462334719847 -6559.0,0.2933033024789095 -6560.0,0.293202016599566 -6561.0,0.29310076569708526 -6562.0,0.2929995497593888 -6563.0,0.29289836877440223 -6564.0,0.29279722273005543 -6565.0,0.29269611161428244 -6566.0,0.2925950354150214 -6567.0,0.2924939941202147 -6568.0,0.29239298771780886 -6569.0,0.29229201619575446 -6570.0,0.29219107954200635 -6571.0,0.29209017774452367 -6572.0,0.29198931079126944 -6573.0,0.291888478670211 -6574.0,0.2917876813693198 -6575.0,0.2916869188765715 -6576.0,0.2915861911799458 -6577.0,0.2914854982674267 -6578.0,0.29138484012700216 -6579.0,0.2912842167466645 -6580.0,0.29118362811441 -6581.0,0.2910830742182393 -6582.0,0.29098255504615694 -6583.0,0.29088207058617177 -6584.0,0.29078162082629666 -6585.0,0.29068120575454875 -6586.0,0.29058082535894925 -6587.0,0.2904804796275235 -6588.0,0.2903801685483009 -6589.0,0.2902798921093152 -6590.0,0.29017965029860415 -6591.0,0.2900794431042095 -6592.0,0.28997927051417743 -6593.0,0.28987913251655795 -6594.0,0.28977902909940545 -6595.0,0.2896789602507781 -6596.0,0.28957892595873874 -6597.0,0.2894789262113537 -6598.0,0.2893789609966939 -6599.0,0.2892790303028342 -6600.0,0.2891791341178536 -6601.0,0.2890792724298352 -6602.0,0.28897944522686625 -6603.0,0.288879652497038 -6604.0,0.2887798942284461 -6605.0,0.28868017040918986 -6606.0,0.28858048102737316 -6607.0,0.28848082607110365 -6608.0,0.2883812055284933 -6609.0,0.2882816193876581 -6610.0,0.28818206763671816 -6611.0,0.28808255026379764 -6612.0,0.2879830672570249 -6613.0,0.28788361860453227 -6614.0,0.2877842042944563 -6615.0,0.2876848243149376 -6616.0,0.2875854786541207 -6617.0,0.2874861673001547 -6618.0,0.2873868902411922 -6619.0,0.2872876474653903 -6620.0,0.28718843896091 -6621.0,0.28708926471591656 -6622.0,0.28699012471857904 -6623.0,0.286891018957071 -6624.0,0.28679194741956954 -6625.0,0.2866929100942564 -6626.0,0.286593906969317 -6627.0,0.2864949380329411 -6628.0,0.28639600327332243 -6629.0,0.28629710267865865 -6630.0,0.28619823623715185 -6631.0,0.2860994039370077 -6632.0,0.28600060576643654 -6633.0,0.2859018417136523 -6634.0,0.2858031117668732 -6635.0,0.28570441591432133 -6636.0,0.2856057541442232 -6637.0,0.285507126444809 -6638.0,0.28540853280431344 -6639.0,0.2853099732109747 -6640.0,0.2852114476530355 -6641.0,0.28511295611874243 -6642.0,0.2850144985963462 -6643.0,0.2849160750741015 -6644.0,0.28481768554026715 -6645.0,0.28471932998310595 -6646.0,0.28462100839088483 -6647.0,0.28452272075187485 -6648.0,0.2844244670543508 -6649.0,0.2843262472865919 -6650.0,0.2842280614368811 -6651.0,0.28412990949350575 -6652.0,0.2840317914447568 -6653.0,0.2839337072789297 -6654.0,0.28383565698432356 -6655.0,0.28373764054924183 -6656.0,0.2836396579619917 -6657.0,0.28354170921088473 -6658.0,0.2834437942842362 -6659.0,0.2833459131703657 -6660.0,0.28324806585759665 -6661.0,0.2831502523342566 -6662.0,0.2830524725886771 -6663.0,0.28295472660919385 -6664.0,0.28285701438414623 -6665.0,0.2827593359018781 -6666.0,0.282661691150737 -6667.0,0.28256408011907475 -6668.0,0.28246650279524693 -6669.0,0.28236895916761334 -6670.0,0.2822714492245378 -6671.0,0.28217397295438795 -6672.0,0.2820765303455357 -6673.0,0.2819791213863567 -6674.0,0.28188174606523103 -6675.0,0.2817844043705423 -6676.0,0.28168709629067845 -6677.0,0.28158982181403125 -6678.0,0.2814925809289967 -6679.0,0.2813953736239746 -6680.0,0.2812981998873688 -6681.0,0.2812010597075872 -6682.0,0.2811039530730417 -6683.0,0.2810068799721482 -6684.0,0.2809098403933265 -6685.0,0.28081283432500065 -6686.0,0.2807158617555984 -6687.0,0.28061892267355165 -6688.0,0.2805220170672963 -6689.0,0.2804251449252722 -6690.0,0.2803283062359232 -6691.0,0.2802315009876972 -6692.0,0.280134729169046 -6693.0,0.28003799076842545 -6694.0,0.27994128577429533 -6695.0,0.2798446141751195 -6696.0,0.2797479759593656 -6697.0,0.27965137111550564 -6698.0,0.2795547996320151 -6699.0,0.2794582614973739 -6700.0,0.27936175670006563 -6701.0,0.2792652852285781 -6702.0,0.27916884707140277 -6703.0,0.2790724422170354 -6704.0,0.27897607065397567 -6705.0,0.278879732370727 -6706.0,0.27878342735579703 -6707.0,0.2786871555976972 -6708.0,0.27859091708494305 -6709.0,0.278494711806054 -6710.0,0.2783985397495535 -6711.0,0.27830240090396885 -6712.0,0.27820629525783147 -6713.0,0.2781102227996766 -6714.0,0.2780141835180436 -6715.0,0.27791817740147545 -6716.0,0.2778222044385196 -6717.0,0.277726264617727 -6718.0,0.2776303579276528 -6719.0,0.27753448435685596 -6720.0,0.27743864389389955 -6721.0,0.2773428365273504 -6722.0,0.27724706224577944 -6723.0,0.27715132103776163 -6724.0,0.2770556128918755 -6725.0,0.27695993779670397 -6726.0,0.27686429574083354 -6727.0,0.2767686867128549 -6728.0,0.27667311070136263 -6729.0,0.2765775676949551 -6730.0,0.27648205768223477 -6731.0,0.2763865806518081 -6732.0,0.27629113659228516 -6733.0,0.27619572549228033 -6734.0,0.27610034734041167 -6735.0,0.2760050021253014 -6736.0,0.27590968983557534 -6737.0,0.27581441045986366 -6738.0,0.27571916398679996 -6739.0,0.27562395040502224 -6740.0,0.2755287697031721 -6741.0,0.27543362186989523 -6742.0,0.2753385068938412 -6743.0,0.27524342476366337 -6744.0,0.27514837546801935 -6745.0,0.2750533589955702 -6746.0,0.2749583753349814 -6747.0,0.2748634244749219 -6748.0,0.27476850640406486 -6749.0,0.2746736211110871 -6750.0,0.27457876858466973 -6751.0,0.2744839488134973 -6752.0,0.2743891617862587 -6753.0,0.2742944074916464 -6754.0,0.274199685918357 -6755.0,0.2741049970550907 -6756.0,0.2740103408905521 -6757.0,0.2739157174134492 -6758.0,0.27382112661249425 -6759.0,0.2737265684764031 -6760.0,0.27363204299389576 -6761.0,0.2735375501536961 -6762.0,0.2734430899445316 -6763.0,0.273348662355134 -6764.0,0.27325426737423875 -6765.0,0.27315990499058523 -6766.0,0.27306557519291663 -6767.0,0.2729712779699802 -6768.0,0.2728770133105269 -6769.0,0.2727827812033116 -6770.0,0.2726885816370932 -6771.0,0.2725944146006343 -6772.0,0.2725002800827015 -6773.0,0.27240617807206524 -6774.0,0.27231210855749977 -6775.0,0.27221807152778343 -6776.0,0.27212406697169805 -6777.0,0.27203009487802987 -6778.0,0.2719361552355684 -6779.0,0.2718422480331075 -6780.0,0.27174837325944484 -6781.0,0.27165453090338154 -6782.0,0.2715607209537232 -6783.0,0.2714669433992787 -6784.0,0.2713731982288613 -6785.0,0.27127948543128766 -6786.0,0.27118580499537875 -6787.0,0.27109215690995897 -6788.0,0.270998541163857 -6789.0,0.27090495774590495 -6790.0,0.2708114066449392 -6791.0,0.2707178878497996 -6792.0,0.2706244013493302 -6793.0,0.27053094713237863 -6794.0,0.27043752518779657 -6795.0,0.2703441355044393 -6796.0,0.2702507780711664 -6797.0,0.2701574528768407 -6798.0,0.2700641599103293 -6799.0,0.26997089916050315 -6800.0,0.26987767061623674 -6801.0,0.2697844742664087 -6802.0,0.2696913100999014 -6803.0,0.269598178105601 -6804.0,0.2695050782723974 -6805.0,0.2694120105891847 -6806.0,0.2693189750448604 -6807.0,0.26922597162832623 -6808.0,0.2691330003284874 -6809.0,0.2690400611342532 -6810.0,0.2689471540345366 -6811.0,0.26885427901825454 -6812.0,0.2687614360743276 -6813.0,0.26866862519168044 -6814.0,0.2685758463592412 -6815.0,0.2684830995659423 -6816.0,0.2683903848007195 -6817.0,0.2682977020525126 -6818.0,0.26820505131026545 -6819.0,0.2681124325629252 -6820.0,0.26801984579944343 -6821.0,0.26792729100877494 -6822.0,0.2678347681798788 -6823.0,0.2677422773017175 -6824.0,0.2676498183632578 -6825.0,0.26755739135346984 -6826.0,0.2674649962613279 -6827.0,0.2673726330758098 -6828.0,0.2672803017858973 -6829.0,0.267188002380576 -6830.0,0.2670957348488352 -6831.0,0.2670034991796681 -6832.0,0.26691129536207164 -6833.0,0.2668191233850466 -6834.0,0.2667269832375975 -6835.0,0.26663487490873267 -6836.0,0.2665427983874643 -6837.0,0.2664507536628084 -6838.0,0.26635874072378457 -6839.0,0.2662667595594164 -6840.0,0.26617481015873123 -6841.0,0.26608289251076017 -6842.0,0.265991006604538 -6843.0,0.2658991524291036 -6844.0,0.26580732997349926 -6845.0,0.2657155392267713 -6846.0,0.2656237801779698 -6847.0,0.2655320528161485 -6848.0,0.26544035713036496 -6849.0,0.2653486931096807 -6850.0,0.2652570607431607 -6851.0,0.265165460019874 -6852.0,0.2650738909288933 -6853.0,0.26498235345929505 -6854.0,0.26489084760015946 -6855.0,0.2647993733405706 -6856.0,0.26470793066961623 -6857.0,0.2646165195763879 -6858.0,0.264525140049981 -6859.0,0.2644337920794945 -6860.0,0.2643424756540314 -6861.0,0.26425119076269815 -6862.0,0.2641599373946053 -6863.0,0.26406871553886685 -6864.0,0.2639775251846008 -6865.0,0.2638863663209287 -6866.0,0.2637952389369761 -6867.0,0.263704143021872 -6868.0,0.2636130785647495 -6869.0,0.2635220455547451 -6870.0,0.26343104398099937 -6871.0,0.2633400738326564 -6872.0,0.26324913509886416 -6873.0,0.26315822776877423 -6874.0,0.2630673518315421 -6875.0,0.26297650727632704 -6876.0,0.26288569409229173 -6877.0,0.262794912268603 -6878.0,0.2627041617944312 -6879.0,0.2626134426589504 -6880.0,0.2625227548513385 -6881.0,0.2624320983607772 -6882.0,0.2623414731764517 -6883.0,0.26225087928755114 -6884.0,0.2621603166832683 -6885.0,0.26206978535279973 -6886.0,0.26197928528534575 -6887.0,0.2618888164701103 -6888.0,0.26179837889630114 -6889.0,0.2617079725531298 -6890.0,0.2616175974298113 -6891.0,0.26152725351556466 -6892.0,0.26143694079961244 -6893.0,0.26134665927118106 -6894.0,0.26125640891950064 -6895.0,0.2611661897338048 -6896.0,0.26107600170333123 -6897.0,0.260985844817321 -6898.0,0.2608957190650192 -6899.0,0.26080562443567434 -6900.0,0.2607155609185389 -6901.0,0.26062552850286885 -6902.0,0.26053552717792416 -6903.0,0.2604455569329681 -6904.0,0.26035561775726807 -6905.0,0.2602657096400948 -6906.0,0.2601758325707231 -6907.0,0.2600859865384311 -6908.0,0.25999617153250104 -6909.0,0.25990638754221845 -6910.0,0.25981663455687287 -6911.0,0.25972691256575736 -6912.0,0.2596372215581687 -6913.0,0.2595475615234076 -6914.0,0.2594579324507781 -6915.0,0.2593683343295881 -6916.0,0.25927876714914927 -6917.0,0.25918923089877693 -6918.0,0.25909972556778993 -6919.0,0.2590102511455111 -6920.0,0.25892080762126657 -6921.0,0.2588313949843866 -6922.0,0.25874201322420476 -6923.0,0.2586526623300586 -6924.0,0.2585633422912891 -6925.0,0.2584740530972411 -6926.0,0.25838479473726295 -6927.0,0.2582955672007069 -6928.0,0.2582063704769287 -6929.0,0.2581172045552878 -6930.0,0.2580280694251474 -6931.0,0.25793896507587427 -6932.0,0.257849891496839 -6933.0,0.2577608486774157 -6934.0,0.2576718366069823 -6935.0,0.25758285527492014 -6936.0,0.25749390467061456 -6937.0,0.2574049847834543 -6938.0,0.2573160956028319 -6939.0,0.25722723711814355 -6940.0,0.25713840931878906 -6941.0,0.2570496121941719 -6942.0,0.25696084573369926 -6943.0,0.2568721099267819 -6944.0,0.25678340476283434 -6945.0,0.2566947302312747 -6946.0,0.2566060863215247 -6947.0,0.2565174730230098 -6948.0,0.2564288903251591 -6949.0,0.25634033821740526 -6950.0,0.25625181668918473 -6951.0,0.25616332572993755 -6952.0,0.2560748653291073 -6953.0,0.2559864354761414 -6954.0,0.2558980361604907 -6955.0,0.25580966737161 -6956.0,0.25572132909895734 -6957.0,0.2556330213319947 -6958.0,0.2555447440601876 -6959.0,0.2554564972730053 -6960.0,0.25536828095992037 -6961.0,0.2552800951104095 -6962.0,0.25519193971395254 -6963.0,0.2551038147600334 -6964.0,0.25501572023813923 -6965.0,0.25492765613776114 -6966.0,0.25483962244839364 -6967.0,0.254751619159535 -6968.0,0.254663646260687 -6969.0,0.25457570374135513 -6970.0,0.2544877915910486 -6971.0,0.25439990979928007 -6972.0,0.2543120583555658 -6973.0,0.25422423724942583 -6974.0,0.2541364464703838 -6975.0,0.25404868600796676 -6976.0,0.2539609558517057 -6977.0,0.25387325599113486 -6978.0,0.25378558641579246 -6979.0,0.25369794711522003 -6980.0,0.25361033807896294 -6981.0,0.25352275929657 -6982.0,0.25343521075759373 -6983.0,0.2533476924515902 -6984.0,0.2532602043681192 -6985.0,0.25317274649674393 -6986.0,0.2530853188270314 -6987.0,0.252997921348552 -6988.0,0.2529105540508799 -6989.0,0.252823216923593 -6990.0,0.2527359099562723 -6991.0,0.252648633138503 -6992.0,0.2525613864598734 -6993.0,0.2524741699099758 -6994.0,0.2523869834784057 -6995.0,0.25229982715476257 -6996.0,0.2522127009286491 -6997.0,0.25212560478967205 -6998.0,0.2520385387274412 -6999.0,0.25195150273157035 -7000.0,0.2518644967916767 -7001.0,0.25177752089738115 -7002.0,0.251690575038308 -7003.0,0.25160365920408534 -7004.0,0.25151677338434464 -7005.0,0.25142991756872113 -7006.0,0.25134309174685354 -7007.0,0.2512562959083841 -7008.0,0.2511695300429589 -7009.0,0.25108279414022716 -7010.0,0.25099608818984215 -7011.0,0.25090941218146023 -7012.0,0.25082276610474186 -7013.0,0.25073614994935056 -7014.0,0.2506495637049538 -7015.0,0.2505630073612224 -7016.0,0.2504764809078308 -7017.0,0.25038998433445714 -7018.0,0.2503035176307829 -7019.0,0.25021708078649324 -7020.0,0.25013067379127696 -7021.0,0.25004429663482625 -7022.0,0.24995794930683699 -7023.0,0.24987163179700853 -7024.0,0.24978534409504388 -7025.0,0.24969908619064946 -7026.0,0.2496128580735354 -7027.0,0.24952665973341534 -7028.0,0.24944049116000636 -7029.0,0.24935435234302927 -7030.0,0.24926824327220823 -7031.0,0.24918216393727116 -7032.0,0.24909611432794934 -7033.0,0.24901009443397779 -7034.0,0.2489241042450948 -7035.0,0.24883814375104255 -7036.0,0.2487522129415664 -7037.0,0.2486663118064156 -7038.0,0.24858044033534263 -7039.0,0.24849459851810377 -7040.0,0.2484087863444586 -7041.0,0.24832300380417047 -7042.0,0.24823725088700602 -7043.0,0.24815152758273568 -7044.0,0.24806583388113318 -7045.0,0.2479801697719759 -7046.0,0.24789453524504487 -7047.0,0.24780893029012432 -7048.0,0.2477233548970024 -7049.0,0.2476378090554704 -7050.0,0.24755229275532345 -7051.0,0.24746680598636 -7052.0,0.24738134873838222 -7053.0,0.24729592100119555 -7054.0,0.24721052276460917 -7055.0,0.2471251540184356 -7056.0,0.24703981475249112 -7057.0,0.2469545049565952 -7058.0,0.2468692246205712 -7059.0,0.2467839737342456 -7060.0,0.24669875228744875 -7061.0,0.24661356027001424 -7062.0,0.24652839767177936 -7063.0,0.24644326448258477 -7064.0,0.24635816069227473 -7065.0,0.24627308629069705 -7066.0,0.24618804126770283 -7067.0,0.24610302561314695 -7068.0,0.24601803931688757 -7069.0,0.24593308236878653 -7070.0,0.24584815475870897 -7071.0,0.24576325647652378 -7072.0,0.24567838751210308 -7073.0,0.24559354785532275 -7074.0,0.24550873749606192 -7075.0,0.24542395642420345 -7076.0,0.24533920462963346 -7077.0,0.2452544821022418 -7078.0,0.24516978883192153 -7079.0,0.24508512480856953 -7080.0,0.24500049002208588 -7081.0,0.24491588446237436 -7082.0,0.24483130811934203 -7083.0,0.24474676098289963 -7084.0,0.24466224304296133 -7085.0,0.24457775428944467 -7086.0,0.24449329471227083 -7087.0,0.24440886430136433 -7088.0,0.2443244630466533 -7089.0,0.24424009093806925 -7090.0,0.24415574796554726 -7091.0,0.2440714341190257 -7092.0,0.24398714938844673 -7093.0,0.2439028937637556 -7094.0,0.2438186672349014 -7095.0,0.24373446979183636 -7096.0,0.24365030142451646 -7097.0,0.24356616212290097 -7098.0,0.24348205187695274 -7099.0,0.24339797067663793 -7100.0,0.24331391851192638 -7101.0,0.24322989537279116 -7102.0,0.243145901249209 -7103.0,0.2430619361311601 -7104.0,0.24297800000862788 -7105.0,0.24289409287159944 -7106.0,0.24281021471006523 -7107.0,0.24272636551401924 -7108.0,0.24264254527345883 -7109.0,0.2425587539783849 -7110.0,0.24247499161880176 -7111.0,0.24239125818471713 -7112.0,0.2423075536661423 -7113.0,0.24222387805309178 -7114.0,0.24214023133558388 -7115.0,0.24205661350364 -7116.0,0.24197302454728523 -7117.0,0.24188946445654794 -7118.0,0.24180593322146013 -7119.0,0.241722430832057 -7120.0,0.24163895727837742 -7121.0,0.24155551255046356 -7122.0,0.2414720966383611 -7123.0,0.2413887095321191 -7124.0,0.24130535122179014 -7125.0,0.24122202169743012 -7126.0,0.24113872094909847 -7127.0,0.241055448966858 -7128.0,0.24097220574077494 -7129.0,0.24088899126091906 -7130.0,0.2408058055173634 -7131.0,0.24072264850018463 -7132.0,0.24063952019946255 -7133.0,0.2405564206052807 -7134.0,0.2404733497077258 -7135.0,0.24039030749688822 -7136.0,0.2403072939628615 -7137.0,0.24022430909574283 -7138.0,0.24014135288563265 -7139.0,0.24005842532263494 -7140.0,0.23997552639685701 -7141.0,0.23989265609840968 -7142.0,0.239809814417407 -7143.0,0.23972700134396674 -7144.0,0.23964421686820975 -7145.0,0.23956146098026057 -7146.0,0.23947873367024688 -7147.0,0.23939603492830003 -7148.0,0.23931336474455467 -7149.0,0.23923072310914875 -7150.0,0.23914811001222386 -7151.0,0.23906552544392473 -7152.0,0.23898296939439972 -7153.0,0.23890044185380044 -7154.0,0.238817942812282 -7155.0,0.23873547226000277 -7156.0,0.23865303018712475 -7157.0,0.23857061658381307 -7158.0,0.2384882314402365 -7159.0,0.23840587474656702 -7160.0,0.23832354649298013 -7161.0,0.2382412466696546 -7162.0,0.23815897526677274 -7163.0,0.2380767322745201 -7164.0,0.23799451768308577 -7165.0,0.23791233148266205 -7166.0,0.23783017366344478 -7167.0,0.23774804421563317 -7168.0,0.2376659431294297 -7169.0,0.2375838703950404 -7170.0,0.23750182600267447 -7171.0,0.23741980994254475 -7172.0,0.23733782220486718 -7173.0,0.23725586277986135 -7174.0,0.23717393165775 -7175.0,0.2370920288287594 -7176.0,0.2370101542831191 -7177.0,0.23692830801106213 -7178.0,0.23684649000282473 -7179.0,0.23676470024864674 -7180.0,0.23668293873877108 -7181.0,0.23660120546344435 -7182.0,0.23651950041291622 -7183.0,0.23643782357744 -7184.0,0.23635617494727215 -7185.0,0.23627455451267262 -7186.0,0.23619296226390474 -7187.0,0.23611139819123503 -7188.0,0.23602986228493364 -7189.0,0.23594835453527377 -7190.0,0.23586687493253228 -7191.0,0.23578542346698914 -7192.0,0.23570400012892787 -7193.0,0.23562260490863518 -7194.0,0.23554123779640132 -7195.0,0.23545989878251963 -7196.0,0.23537858785728713 -7197.0,0.23529730501100388 -7198.0,0.23521605023397354 -7199.0,0.2351348235165029 -7200.0,0.23505362484890233 -7201.0,0.23497245422148527 -7202.0,0.2348913116245688 -7203.0,0.23481019704847308 -7204.0,0.2347291104835218 -7205.0,0.23464805192004198 -7206.0,0.23456702134836377 -7207.0,0.234486018758821 -7208.0,0.23440504414175045 -7209.0,0.23432409748749264 -7210.0,0.23424317878639103 -7211.0,0.2341622880287928 -7212.0,0.2340814252050481 -7213.0,0.2340005903055107 -7214.0,0.23391978332053753 -7215.0,0.23383900424048898 -7216.0,0.23375825305572856 -7217.0,0.23367752975662337 -7218.0,0.23359683433354364 -7219.0,0.23351616677686304 -7220.0,0.23343552707695844 -7221.0,0.23335491522421023 -7222.0,0.2332743312090019 -7223.0,0.23319377502172037 -7224.0,0.23311324665275598 -7225.0,0.23303274609250216 -7226.0,0.23295227333135587 -7227.0,0.23287182835971723 -7228.0,0.2327914111679898 -7229.0,0.23271102174658032 -7230.0,0.232630660085899 -7231.0,0.2325503261763592 -7232.0,0.23247002000837774 -7233.0,0.23238974157237463 -7234.0,0.2323094908587733 -7235.0,0.23222926785800035 -7236.0,0.23214907256048584 -7237.0,0.23206890495666294 -7238.0,0.2319887650369684 -7239.0,0.23190865279184192 -7240.0,0.2318285682117269 -7241.0,0.23174851128706964 -7242.0,0.23166848200832002 -7243.0,0.23158848036593122 -7244.0,0.23150850635035947 -7245.0,0.23142855995206457 -7246.0,0.23134864116150938 -7247.0,0.23126874996916033 -7248.0,0.23118888636548682 -7249.0,0.23110905034096185 -7250.0,0.23102924188606141 -7251.0,0.2309494609912651 -7252.0,0.2308697076470555 -7253.0,0.23078998184391872 -7254.0,0.23071028357234397 -7255.0,0.2306306128228239 -7256.0,0.2305509695858543 -7257.0,0.23047135385193437 -7258.0,0.2303917656115665 -7259.0,0.23031220485525644 -7260.0,0.23023267157351307 -7261.0,0.23015316575684874 -7262.0,0.23007368739577902 -7263.0,0.2299942364808226 -7264.0,0.22991481300250166 -7265.0,0.2298354169513415 -7266.0,0.22975604831787083 -7267.0,0.22967670709262142 -7268.0,0.2295973932661286 -7269.0,0.22951810682893067 -7270.0,0.22943884777156942 -7271.0,0.22935961608458977 -7272.0,0.22928041175854003 -7273.0,0.22920123478397159 -7274.0,0.22912208515143934 -7275.0,0.2290429628515012 -7276.0,0.22896386787471854 -7277.0,0.2288848002116558 -7278.0,0.22880575985288093 -7279.0,0.22872674678896485 -7280.0,0.22864776101048195 -7281.0,0.22856880250800984 -7282.0,0.22848987127212925 -7283.0,0.22841096729342433 -7284.0,0.22833209056248235 -7285.0,0.228253241069894 -7286.0,0.22817441880625297 -7287.0,0.22809562376215647 -7288.0,0.22801685592820473 -7289.0,0.22793811529500138 -7290.0,0.22785940185315318 -7291.0,0.22778071559327026 -7292.0,0.22770205650596584 -7293.0,0.22762342458185658 -7294.0,0.2275448198115621 -7295.0,0.2274662421857056 -7296.0,0.2273876916949132 -7297.0,0.22730916832981454 -7298.0,0.22723067208104222 -7299.0,0.22715220293923225 -7300.0,0.2270737608950239 -7301.0,0.2269953459390595 -7302.0,0.22691695806198484 -7303.0,0.2268385972544487 -7304.0,0.2267602635071033 -7305.0,0.22668195681060388 -7306.0,0.22660367715560917 -7307.0,0.22652542453278085 -7308.0,0.22644719893278406 -7309.0,0.22636900034628696 -7310.0,0.2262908287639611 -7311.0,0.2262126841764811 -7312.0,0.226134566574525 -7313.0,0.22605647594877382 -7314.0,0.225978412289912 -7315.0,0.22590037558862705 -7316.0,0.22582236583560983 -7317.0,0.22574438302155428 -7318.0,0.22566642713715762 -7319.0,0.22558849817312038 -7320.0,0.22551059612014607 -7321.0,0.22543272096894165 -7322.0,0.22535487271021712 -7323.0,0.22527705133468579 -7324.0,0.22519925683306408 -7325.0,0.22512148919607175 -7326.0,0.2250437484144316 -7327.0,0.22496603447886981 -7328.0,0.2248883473801156 -7329.0,0.2248106871089015 -7330.0,0.22473305365596322 -7331.0,0.22465544701203966 -7332.0,0.2245778671678728 -7333.0,0.22450031411420812 -7334.0,0.22442278784179395 -7335.0,0.2243452883413821 -7336.0,0.2242678156037273 -7337.0,0.2241903696195877 -7338.0,0.2241129503797246 -7339.0,0.2240355578749023 -7340.0,0.22395819209588866 -7341.0,0.22388085303345429 -7342.0,0.22380354067837338 -7343.0,0.22372625502142296 -7344.0,0.2236489960533836 -7345.0,0.22357176376503868 -7346.0,0.22349455814717512 -7347.0,0.2234173791905827 -7348.0,0.22334022688605468 -7349.0,0.2232631012243872 -7350.0,0.22318600219637988 -7351.0,0.22310892979283525 -7352.0,0.22303188400455923 -7353.0,0.22295486482236074 -7354.0,0.22287787223705202 -7355.0,0.22280090623944834 -7356.0,0.22272396682036824 -7357.0,0.2226470539706335 -7358.0,0.22257016768106885 -7359.0,0.22249330794250244 -7360.0,0.2224164747457653 -7361.0,0.22233966808169198 -7362.0,0.22226288794111984 -7363.0,0.2221861343148897 -7364.0,0.22210940719384528 -7365.0,0.22203270656883375 -7366.0,0.22195603243070514 -7367.0,0.22187938477031288 -7368.0,0.22180276357851336 -7369.0,0.2217261688461664 -7370.0,0.2216496005641346 -7371.0,0.22157305872328412 -7372.0,0.2214965433144839 -7373.0,0.22142005432860637 -7374.0,0.22134359175652682 -7375.0,0.22126715558912388 -7376.0,0.22119074581727932 -7377.0,0.2211143624318779 -7378.0,0.22103800542380775 -7379.0,0.22096167478395995 -7380.0,0.22088537050322887 -7381.0,0.22080909257251194 -7382.0,0.2207328409827098 -7383.0,0.22065661572472606 -7384.0,0.22058041678946777 -7385.0,0.22050424416784484 -7386.0,0.22042809785077053 -7387.0,0.220351977829161 -7388.0,0.22027588409393584 -7389.0,0.22019981663601748 -7390.0,0.22012377544633177 -7391.0,0.2200477605158074 -7392.0,0.21997177183537647 -7393.0,0.219895809395974 -7394.0,0.21981987318853827 -7395.0,0.21974396320401066 -7396.0,0.21966807943333558 -7397.0,0.21959222186746077 -7398.0,0.21951639049733684 -7399.0,0.2194405853139178 -7400.0,0.21936480630816052 -7401.0,0.21928905347102523 -7402.0,0.21921332679347505 -7403.0,0.21913762626647645 -7404.0,0.2190619518809988 -7405.0,0.21898630362801483 -7406.0,0.21891068149850013 -7407.0,0.2188350854834336 -7408.0,0.21875951557379716 -7409.0,0.2186839717605759 -7410.0,0.21860845403475795 -7411.0,0.21853296238733466 -7412.0,0.21845749680930032 -7413.0,0.21838205729165253 -7414.0,0.21830664382539192 -7415.0,0.2182312564015221 -7416.0,0.21815589501105007 -7417.0,0.21808055964498557 -7418.0,0.2180052502943418 -7419.0,0.21792996695013483 -7420.0,0.21785470960338393 -7421.0,0.2177794782451114 -7422.0,0.21770427286634278 -7423.0,0.2176290934581065 -7424.0,0.2175539400114343 -7425.0,0.21747881251736084 -7426.0,0.21740371096692407 -7427.0,0.2173286353511648 -7428.0,0.21725358566112718 -7429.0,0.2171785618878582 -7430.0,0.21710356402240816 -7431.0,0.2170285920558303 -7432.0,0.21695364597918107 -7433.0,0.21687872578351994 -7434.0,0.21680383145990942 -7435.0,0.21672896299941527 -7436.0,0.2166541203931061 -7437.0,0.21657930363205385 -7438.0,0.21650451270733334 -7439.0,0.21642974761002262 -7440.0,0.2163550083312027 -7441.0,0.21628029486195777 -7442.0,0.21620560719337503 -7443.0,0.21613094531654484 -7444.0,0.2160563092225605 -7445.0,0.21598169890251856 -7446.0,0.21590711434751844 -7447.0,0.21583255554866287 -7448.0,0.21575802249705744 -7449.0,0.21568351518381096 -7450.0,0.2156090336000352 -7451.0,0.21553457773684503 -7452.0,0.21546014758535853 -7453.0,0.2153857431366966 -7454.0,0.2153113643819834 -7455.0,0.21523701131234604 -7456.0,0.2151626839189148 -7457.0,0.2150883821928229 -7458.0,0.21501410612520674 -7459.0,0.21493985570720567 -7460.0,0.21486563092996225 -7461.0,0.21479143178462187 -7462.0,0.21471725826233323 -7463.0,0.2146431103542479 -7464.0,0.21456898805152064 -7465.0,0.21449489134530914 -7466.0,0.21442082022677422 -7467.0,0.21434677468707974 -7468.0,0.21427275471739263 -7469.0,0.2141987603088828 -7470.0,0.21412479145272326 -7471.0,0.21405084814009012 -7472.0,0.21397693036216245 -7473.0,0.2139030381101224 -7474.0,0.2138291713751551 -7475.0,0.21375533014844894 -7476.0,0.21368151442119504 -7477.0,0.21360772418458784 -7478.0,0.2135339594298246 -7479.0,0.2134602201481058 -7480.0,0.21338650633063483 -7481.0,0.21331281796861826 -7482.0,0.21323915505326546 -7483.0,0.2131655175757891 -7484.0,0.2130919055274047 -7485.0,0.21301831889933096 -7486.0,0.21294475768278942 -7487.0,0.2128712218690049 -7488.0,0.21279771144920495 -7489.0,0.2127242264146204 -7490.0,0.2126507667564851 -7491.0,0.21257733246603566 -7492.0,0.2125039235345121 -7493.0,0.21243053995315714 -7494.0,0.21235718171321671 -7495.0,0.21228384880593967 -7496.0,0.21221054122257801 -7497.0,0.21213725895438656 -7498.0,0.2120640019926234 -7499.0,0.2119907703285494 -7500.0,0.21191756395342867 -7501.0,0.21184438285852808 -7502.0,0.2117712270351178 -7503.0,0.21169809647447077 -7504.0,0.21162499116786312 -7505.0,0.21155191110657387 -7506.0,0.21147885628188515 -7507.0,0.21140582668508195 -7508.0,0.21133282230745248 -7509.0,0.21125984314028787 -7510.0,0.2111868891748821 -7511.0,0.21111396040253244 -7512.0,0.2110410568145389 -7513.0,0.21096817840220472 -7514.0,0.21089532515683596 -7515.0,0.2108224970697418 -7516.0,0.21074969413223432 -7517.0,0.21067691633562877 -7518.0,0.21060416367124316 -7519.0,0.21053143613039876 -7520.0,0.21045873370441956 -7521.0,0.21038605638463284 -7522.0,0.2103134041623686 -7523.0,0.21024077702896005 -7524.0,0.21016817497574322 -7525.0,0.21009559799405733 -7526.0,0.21002304607524433 -7527.0,0.2099505192106494 -7528.0,0.20987801739162062 -7529.0,0.20980554060950898 -7530.0,0.20973308885566863 -7531.0,0.2096606621214565 -7532.0,0.2095882603982327 -7533.0,0.20951588367736015 -7534.0,0.2094435319502049 -7535.0,0.20937120520813587 -7536.0,0.20929890344252505 -7537.0,0.2092266266447473 -7538.0,0.20915437480618063 -7539.0,0.2090821479182058 -7540.0,0.2090099459722068 -7541.0,0.2089377689595703 -7542.0,0.2088656168716863 -7543.0,0.2087934896999474 -7544.0,0.20872138743574953 -7545.0,0.20864931007049126 -7546.0,0.20857725759557433 -7547.0,0.20850523000240348 -7548.0,0.20843322728238625 -7549.0,0.20836124942693332 -7550.0,0.2082892964274582 -7551.0,0.20821736827537743 -7552.0,0.2081454649621105 -7553.0,0.20807358647907995 -7554.0,0.20800173281771106 -7555.0,0.20792990396943234 -7556.0,0.20785809992567503 -7557.0,0.2077863206778735 -7558.0,0.20771456621746498 -7559.0,0.20764283653588972 -7560.0,0.20757113162459084 -7561.0,0.20749945147501453 -7562.0,0.20742779607860978 -7563.0,0.20735616542682875 -7564.0,0.2072845595111263 -7565.0,0.20721297832296037 -7566.0,0.207141421853792 -7567.0,0.20706989009508486 -7568.0,0.2069983830383058 -7569.0,0.20692690067492456 -7570.0,0.2068554429964138 -7571.0,0.20678400999424912 -7572.0,0.20671260165990915 -7573.0,0.20664121798487528 -7574.0,0.2065698589606321 -7575.0,0.20649852457866685 -7576.0,0.20642721483047 -7577.0,0.2063559297075347 -7578.0,0.20628466920135724 -7579.0,0.2062134333034367 -7580.0,0.2061422220052752 -7581.0,0.2060710352983777 -7582.0,0.20599987317425225 -7583.0,0.20592873562440958 -7584.0,0.20585762264036359 -7585.0,0.20578653421363105 -7586.0,0.20571547033573154 -7587.0,0.20564443099818774 -7588.0,0.20557341619252512 -7589.0,0.20550242591027215 -7590.0,0.20543146014296018 -7591.0,0.2053605188821236 -7592.0,0.2052896021192995 -7593.0,0.20521870984602816 -7594.0,0.20514784205385253 -7595.0,0.2050769987343187 -7596.0,0.20500617987897551 -7597.0,0.20493538547937484 -7598.0,0.2048646155270714 -7599.0,0.20479387001362284 -7600.0,0.20472314893058974 -7601.0,0.20465245226953566 -7602.0,0.20458178002202687 -7603.0,0.2045111321796328 -7604.0,0.20444050873392566 -7605.0,0.20436990967648053 -7606.0,0.20429933499887554 -7607.0,0.20422878469269157 -7608.0,0.20415825874951254 -7609.0,0.20408775716092517 -7610.0,0.2040172799185192 -7611.0,0.2039468270138871 -7612.0,0.20387639843862448 -7613.0,0.20380599418432963 -7614.0,0.20373561424260392 -7615.0,0.2036652586050514 -7616.0,0.20359492726327932 -7617.0,0.20352462020889753 -7618.0,0.203454337433519 -7619.0,0.20338407892875945 -7620.0,0.20331384468623762 -7621.0,0.20324363469757498 -7622.0,0.20317344895439604 -7623.0,0.2031032874483282 -7624.0,0.20303315017100163 -7625.0,0.20296303711404953 -7626.0,0.20289294826910784 -7627.0,0.20282288362781556 -7628.0,0.2027528431818144 -7629.0,0.20268282692274917 -7630.0,0.20261283484226728 -7631.0,0.20254286693201934 -7632.0,0.20247292318365856 -7633.0,0.20240300358884128 -7634.0,0.20233310813922648 -7635.0,0.20226323682647626 -7636.0,0.2021933896422554 -7637.0,0.20212356657823166 -7638.0,0.20205376762607566 -7639.0,0.20198399277746093 -7640.0,0.20191424202406374 -7641.0,0.20184451535756343 -7642.0,0.20177481276964213 -7643.0,0.20170513425198472 -7644.0,0.2016354797962792 -7645.0,0.20156584939421618 -7646.0,0.20149624303748934 -7647.0,0.20142666071779508 -7648.0,0.20135710242683283 -7649.0,0.20128756815630466 -7650.0,0.2012180578979158 -7651.0,0.20114857164337405 -7652.0,0.20107910938439028 -7653.0,0.20100967111267812 -7654.0,0.20094025681995412 -7655.0,0.20087086649793756 -7656.0,0.20080150013835085 -7657.0,0.20073215773291894 -7658.0,0.20066283927336986 -7659.0,0.2005935447514344 -7660.0,0.20052427415884622 -7661.0,0.2004550274873419 -7662.0,0.20038580472866074 -7663.0,0.20031660587454503 -7664.0,0.2002474309167398 -7665.0,0.20017827984699305 -7666.0,0.20010915265705548 -7667.0,0.2000400493386808 -7668.0,0.1999709698836254 -7669.0,0.1999019142836487 -7670.0,0.1998328825305128 -7671.0,0.19976387461598274 -7672.0,0.19969489053182635 -7673.0,0.19962593026981443 -7674.0,0.19955699382172037 -7675.0,0.1994880811793207 -7676.0,0.19941919233439453 -7677.0,0.19935032727872404 -7678.0,0.199281486004094 -7679.0,0.19921266850229224 -7680.0,0.19914387476510934 -7681.0,0.19907510478433862 -7682.0,0.19900635855177642 -7683.0,0.19893763605922174 -7684.0,0.19886893729847657 -7685.0,0.19880026226134556 -7686.0,0.19873161093963634 -7687.0,0.19866298332515928 -7688.0,0.19859437940972763 -7689.0,0.1985257991851574 -7690.0,0.19845724264326753 -7691.0,0.19838870977587963 -7692.0,0.19832020057481836 -7693.0,0.19825171503191094 -7694.0,0.19818325313898766 -7695.0,0.1981148148878814 -7696.0,0.1980464002704281 -7697.0,0.1979780092784663 -7698.0,0.19790964190383745 -7699.0,0.1978412981383859 -7700.0,0.19777297797395868 -7701.0,0.1977046814024057 -7702.0,0.1976364084155797 -7703.0,0.1975681590053362 -7704.0,0.19749993316353348 -7705.0,0.1974317308820328 -7706.0,0.19736355215269805 -7707.0,0.19729539696739606 -7708.0,0.19722726531799634 -7709.0,0.19715915719637137 -7710.0,0.19709107259439626 -7711.0,0.19702301150394907 -7712.0,0.19695497391691058 -7713.0,0.19688695982516446 -7714.0,0.19681896922059702 -7715.0,0.1967510020950976 -7716.0,0.19668305844055808 -7717.0,0.1966151382488734 -7718.0,0.1965472415119411 -7719.0,0.19647936822166165 -7720.0,0.19641151836993823 -7721.0,0.19634369194867682 -7722.0,0.19627588894978631 -7723.0,0.19620810936517818 -7724.0,0.19614035318676692 -7725.0,0.19607262040646964 -7726.0,0.19600491101620637 -7727.0,0.19593722500789984 -7728.0,0.19586956237347564 -7729.0,0.19580192310486202 -7730.0,0.1957343071939902 -7731.0,0.19566671463279406 -7732.0,0.19559914541321033 -7733.0,0.19553159952717844 -7734.0,0.19546407696664073 -7735.0,0.19539657772354216 -7736.0,0.19532910178983062 -7737.0,0.19526164915745675 -7738.0,0.19519421981837384 -7739.0,0.19512681376453822 -7740.0,0.19505943098790868 -7741.0,0.19499207148044706 -7742.0,0.19492473523411777 -7743.0,0.19485742224088817 -7744.0,0.19479013249272825 -7745.0,0.1947228659816109 -7746.0,0.19465562269951162 -7747.0,0.19458840263840887 -7748.0,0.1945212057902837 -7749.0,0.19445403214712012 -7750.0,0.1943868817009047 -7751.0,0.19431975444362695 -7752.0,0.19425265036727904 -7753.0,0.194185569463856 -7754.0,0.1941185117253555 -7755.0,0.19405147714377802 -7756.0,0.19398446571112693 -7757.0,0.19391747741940818 -7758.0,0.19385051226063058 -7759.0,0.19378357022680565 -7760.0,0.19371665130994772 -7761.0,0.1936497555020738 -7762.0,0.19358288279520383 -7763.0,0.1935160331813602 -7764.0,0.19344920665256843 -7765.0,0.19338240320085645 -7766.0,0.1933156228182552 -7767.0,0.1932488654967982 -7768.0,0.19318213122852185 -7769.0,0.19311542000546514 -7770.0,0.19304873181967003 -7771.0,0.192982066663181 -7772.0,0.19291542452804544 -7773.0,0.19284880540631338 -7774.0,0.1927822092900377 -7775.0,0.19271563617127402 -7776.0,0.1926490860420805 -7777.0,0.19258255889451834 -7778.0,0.19251605472065123 -7779.0,0.19244957351254577 -7780.0,0.1923831152622712 -7781.0,0.19231667996189958 -7782.0,0.19225026760350558 -7783.0,0.19218387817916682 -7784.0,0.1921175116809634 -7785.0,0.19205116810097836 -7786.0,0.19198484743129732 -7787.0,0.1919185496640088 -7788.0,0.19185227479120387 -7789.0,0.19178602280497653 -7790.0,0.19171979369742326 -7791.0,0.19165358746064354 -7792.0,0.19158740408673935 -7793.0,0.19152124356781555 -7794.0,0.19145510589597972 -7795.0,0.191388991063342 -7796.0,0.1913228990620155 -7797.0,0.19125682988411577 -7798.0,0.19119078352176141 -7799.0,0.19112475996707343 -7800.0,0.1910587592121758 -7801.0,0.19099278124919505 -7802.0,0.19092682607026054 -7803.0,0.19086089366750422 -7804.0,0.19079498403306094 -7805.0,0.19072909715906808 -7806.0,0.19066323303766586 -7807.0,0.19059739166099712 -7808.0,0.19053157302120755 -7809.0,0.19046577711044535 -7810.0,0.19040000392086165 -7811.0,0.1903342534446101 -7812.0,0.19026852567384722 -7813.0,0.19020282060073218 -7814.0,0.19013713821742678 -7815.0,0.19007147851609563 -7816.0,0.19000584148890598 -7817.0,0.18994022712802786 -7818.0,0.18987463542563385 -7819.0,0.18980906637389947 -7820.0,0.18974351996500272 -7821.0,0.18967799619112444 -7822.0,0.18961249504444805 -7823.0,0.18954701651715986 -7824.0,0.18948156060144863 -7825.0,0.18941612728950605 -7826.0,0.18935071657352634 -7827.0,0.18928532844570653 -7828.0,0.1892199628982462 -7829.0,0.18915461992334784 -7830.0,0.1890892995132164 -7831.0,0.1890240016600597 -7832.0,0.18895872635608818 -7833.0,0.1888934735935149 -7834.0,0.1888282433645558 -7835.0,0.1887630356614293 -7836.0,0.18869785047635665 -7837.0,0.18863268780156164 -7838.0,0.18856754762927097 -7839.0,0.18850242995171376 -7840.0,0.18843733476112207 -7841.0,0.1883722620497304 -7842.0,0.18830721180977616 -7843.0,0.18824218403349924 -7844.0,0.18817717871314238 -7845.0,0.18811219584095082 -7846.0,0.1880472354091727 -7847.0,0.18798229741005862 -7848.0,0.18791738183586199 -7849.0,0.18785248867883883 -7850.0,0.18778761793124785 -7851.0,0.18772276958535053 -7852.0,0.18765794363341082 -7853.0,0.18759314006769556 -7854.0,0.18752835888047406 -7855.0,0.1874636000640185 -7856.0,0.18739886361060348 -7857.0,0.1873341495125066 -7858.0,0.18726945776200776 -7859.0,0.18720478835138984 -7860.0,0.18714014127293818 -7861.0,0.1870755165189409 -7862.0,0.18701091408168868 -7863.0,0.18694633395347499 -7864.0,0.1868817761265958 -7865.0,0.18681724059334992 -7866.0,0.18675272734603868 -7867.0,0.18668823637696616 -7868.0,0.186623767678439 -7869.0,0.18655932124276658 -7870.0,0.18649489706226097 -7871.0,0.18643049512923673 -7872.0,0.1863661154360113 -7873.0,0.18630175797490453 -7874.0,0.18623742273823915 -7875.0,0.1861731097183403 -7876.0,0.18610881890753608 -7877.0,0.18604455029815692 -7878.0,0.18598030388253614 -7879.0,0.18591607965300952 -7880.0,0.18585187760191568 -7881.0,0.1857876977215957 -7882.0,0.18572354000439342 -7883.0,0.1856594044426553 -7884.0,0.18559529102873043 -7885.0,0.1855311997549705 -7886.0,0.18546713061373 -7887.0,0.18540308359736582 -7888.0,0.1853390586982377 -7889.0,0.18527505590870794 -7890.0,0.1852110752211414 -7891.0,0.18514711662790576 -7892.0,0.18508318012137112 -7893.0,0.1850192656939104 -7894.0,0.184955373337899 -7895.0,0.1848915030457151 -7896.0,0.1848276548097394 -7897.0,0.18476382862235527 -7898.0,0.18470002447594872 -7899.0,0.1846362423629084 -7900.0,0.18457248227562553 -7901.0,0.18450874420649407 -7902.0,0.18444502814791042 -7903.0,0.1843813340922738 -7904.0,0.18431766203198593 -7905.0,0.18425401195945126 -7906.0,0.18419038386707673 -7907.0,0.18412677774727199 -7908.0,0.18406319359244935 -7909.0,0.1839996313950236 -7910.0,0.18393609114741233 -7911.0,0.1838725728420355 -7912.0,0.18380907647131603 -7913.0,0.18374560202767912 -7914.0,0.18368214950355283 -7915.0,0.1836187188913676 -7916.0,0.1835553101835568 -7917.0,0.1834919233725561 -7918.0,0.18342855845080397 -7919.0,0.1833652154107414 -7920.0,0.1833018942448121 -7921.0,0.1832385949454622 -7922.0,0.1831753175051407 -7923.0,0.18311206191629895 -7924.0,0.18304882817139106 -7925.0,0.18298561626287368 -7926.0,0.18292242618320612 -7927.0,0.1828592579248503 -7928.0,0.1827961114802706 -7929.0,0.18273298684193423 -7930.0,0.1826698840023108 -7931.0,0.18260680295387263 -7932.0,0.1825437436890946 -7933.0,0.18248070620045423 -7934.0,0.18241769048043152 -7935.0,0.1823546965215093 -7936.0,0.1822917243161727 -7937.0,0.1822287738569097 -7938.0,0.1821658451362107 -7939.0,0.18210293814656883 -7940.0,0.18204005288047967 -7941.0,0.18197718933044155 -7942.0,0.1819143474889552 -7943.0,0.1818515273485242 -7944.0,0.18178872890165437 -7945.0,0.18172595214085446 -7946.0,0.18166319705863565 -7947.0,0.18160046364751162 -7948.0,0.18153775189999885 -7949.0,0.1814750618086162 -7950.0,0.18141239336588527 -7951.0,0.18134974656433006 -7952.0,0.1812871213964774 -7953.0,0.18122451785485647 -7954.0,0.18116193593199917 -7955.0,0.18109937562043987 -7956.0,0.1810368369127157 -7957.0,0.1809743198013661 -7958.0,0.18091182427893338 -7959.0,0.18084935033796215 -7960.0,0.1807868979709998 -7961.0,0.1807244671705962 -7962.0,0.18066205792930384 -7963.0,0.18059967023967768 -7964.0,0.18053730409427537 -7965.0,0.18047495948565714 -7966.0,0.1804126364063856 -7967.0,0.1803503348490262 -7968.0,0.1802880548061467 -7969.0,0.18022579627031765 -7970.0,0.18016355923411198 -7971.0,0.1801013436901053 -7972.0,0.18003914963087575 -7973.0,0.17997697704900403 -7974.0,0.17991482593707336 -7975.0,0.17985269628766967 -7976.0,0.17979058809338122 -7977.0,0.17972850134679907 -7978.0,0.17966643604051663 -7979.0,0.17960439216713003 -7980.0,0.17954236971923784 -7981.0,0.17948036868944126 -7982.0,0.17941838907034405 -7983.0,0.17935643085455238 -7984.0,0.17929449403467526 -7985.0,0.1792325786033239 -7986.0,0.17917068455311239 -7987.0,0.17910881187665711 -7988.0,0.17904696056657718 -7989.0,0.17898513061549412 -7990.0,0.17892332201603214 -7991.0,0.17886153476081784 -7992.0,0.17879976884248056 -7993.0,0.17873802425365196 -7994.0,0.17867630098696644 -7995.0,0.17861459903506083 -7996.0,0.17855291839057458 -7997.0,0.17849125904614954 -7998.0,0.17842962099443033 -7999.0,0.17836800422806387 -8000.0,0.1783064087396998 -8001.0,0.17824483452199022 -8002.0,0.1781832815675897 -8003.0,0.17812174986915555 -8004.0,0.17806023941934734 -8005.0,0.17799875021082748 -8006.0,0.1779372822362606 -8007.0,0.17787583548831415 -8008.0,0.17781440995965786 -8009.0,0.17775300564296423 -8010.0,0.1776916225309081 -8011.0,0.17763026061616694 -8012.0,0.17756891989142065 -8013.0,0.17750760034935187 -8014.0,0.1774463019826455 -8015.0,0.17738502478398915 -8016.0,0.17732376874607286 -8017.0,0.1772625338615893 -8018.0,0.17720132012323353 -8019.0,0.1771401275237032 -8020.0,0.17707895605569854 -8021.0,0.17701780571192213 -8022.0,0.17695667648507932 -8023.0,0.1768955683678777 -8024.0,0.17683448135302765 -8025.0,0.1767734154332418 -8026.0,0.17671237060123554 -8027.0,0.1766513468497266 -8028.0,0.17659034417143535 -8029.0,0.17652936255908455 -8030.0,0.1764684020053996 -8031.0,0.1764074625031083 -8032.0,0.17634654404494104 -8033.0,0.17628564662363067 -8034.0,0.1762247702319126 -8035.0,0.1761639148625247 -8036.0,0.1761030805082074 -8037.0,0.17604226716170351 -8038.0,0.17598147481575854 -8039.0,0.17592070346312041 -8040.0,0.17585995309653946 -8041.0,0.17579922370876871 -8042.0,0.1757385152925635 -8043.0,0.17567782784068184 -8044.0,0.17561716134588407 -8045.0,0.1755565158009332 -8046.0,0.1754958911985946 -8047.0,0.17543528753163626 -8048.0,0.17537470479282852 -8049.0,0.17531414297494438 -8050.0,0.1752536020707592 -8051.0,0.17519308207305095 -8052.0,0.17513258297459997 -8053.0,0.1750721047681892 -8054.0,0.17501164744660402 -8055.0,0.17495121100263233 -8056.0,0.17489079542906444 -8057.0,0.17483040071869327 -8058.0,0.1747700268643142 -8059.0,0.174709673858725 -8060.0,0.17464934169472604 -8061.0,0.1745890303651201 -8062.0,0.17452873986271253 -8063.0,0.17446847018031103 -8064.0,0.17440822131072597 -8065.0,0.17434799324677 -8066.0,0.17428778598125844 -8067.0,0.1742275995070089 -8068.0,0.1741674338168417 -8069.0,0.17410728890357938 -8070.0,0.17404716476004717 -8071.0,0.1739870613790727 -8072.0,0.17392697875348603 -8073.0,0.17386691687611977 -8074.0,0.17380687573980902 -8075.0,0.1737468553373912 -8076.0,0.17368685566170639 -8077.0,0.17362687670559707 -8078.0,0.17356691846190814 -8079.0,0.1735069809234871 -8080.0,0.17344706408318375 -8081.0,0.1733871679338505 -8082.0,0.17332729246834216 -8083.0,0.17326743767951602 -8084.0,0.17320760356023185 -8085.0,0.17314779010335188 -8086.0,0.17308799730174076 -8087.0,0.17302822514826574 -8088.0,0.17296847363579632 -8089.0,0.17290874275720466 -8090.0,0.17284903250536524 -8091.0,0.17278934287315514 -8092.0,0.17272967385345375 -8093.0,0.17267002543914306 -8094.0,0.17261039762310737 -8095.0,0.17255079039823354 -8096.0,0.17249120375741095 -8097.0,0.17243163769353123 -8098.0,0.17237209219948865 -8099.0,0.17231256726817984 -8100.0,0.17225306289250392 -8101.0,0.17219357906536245 -8102.0,0.17213411577965945 -8103.0,0.17207467302830134 -8104.0,0.17201525080419713 -8105.0,0.17195584910025807 -8106.0,0.17189646790939805 -8107.0,0.17183710722453327 -8108.0,0.1717777670385825 -8109.0,0.1717184473444668 -8110.0,0.17165914813510988 -8111.0,0.17159986940343766 -8112.0,0.17154061114237867 -8113.0,0.17148137334486385 -8114.0,0.17142215600382651 -8115.0,0.17136295911220253 -8116.0,0.17130378266293006 -8117.0,0.17124462664894988 -8118.0,0.17118549106320502 -8119.0,0.1711263758986411 -8120.0,0.17106728114820607 -8121.0,0.17100820680485038 -8122.0,0.17094915286152687 -8123.0,0.17089011931119089 -8124.0,0.17083110614680008 -8125.0,0.1707721133613147 -8126.0,0.17071314094769724 -8127.0,0.1706541888989128 -8128.0,0.17059525720792876 -8129.0,0.1705363458677151 -8130.0,0.170477454871244 -8131.0,0.1704185842114903 -8132.0,0.1703597338814311 -8133.0,0.170300903874046 -8134.0,0.17024209418231703 -8135.0,0.1701833047992286 -8136.0,0.1701245357177676 -8137.0,0.17006578693092322 -8138.0,0.17000705843168726 -8139.0,0.16994835021305377 -8140.0,0.16988966226801933 -8141.0,0.16983099458958284 -8142.0,0.16977234717074574 -8143.0,0.1697137200045118 -8144.0,0.1696551130838872 -8145.0,0.16959652640188058 -8146.0,0.169537959951503 -8147.0,0.16947941372576783 -8148.0,0.16942088771769107 -8149.0,0.16936238192029082 -8150.0,0.16930389632658793 -8151.0,0.1692454309296054 -8152.0,0.1691869857223687 -8153.0,0.16912856069790588 -8154.0,0.16907015584924714 -8155.0,0.16901177116942526 -8156.0,0.16895340665147535 -8157.0,0.16889506228843498 -8158.0,0.16883673807334404 -8159.0,0.16877843399924494 -8160.0,0.16872015005918237 -8161.0,0.1686618862462035 -8162.0,0.1686036425533579 -8163.0,0.16854541897369754 -8164.0,0.1684872155002767 -8165.0,0.16842903212615223 -8166.0,0.16837086884438318 -8167.0,0.16831272564803115 -8168.0,0.16825460253016006 -8169.0,0.16819649948383625 -8170.0,0.16813841650212843 -8171.0,0.16808035357810777 -8172.0,0.16802231070484777 -8173.0,0.1679642878754243 -8174.0,0.16790628508291575 -8175.0,0.1678483023204027 -8176.0,0.1677903395809683 -8177.0,0.167732396857698 -8178.0,0.16767447414367967 -8179.0,0.16761657143200348 -8180.0,0.16755868871576218 -8181.0,0.16750082598805066 -8182.0,0.1674429832419664 -8183.0,0.16738516047060917 -8184.0,0.16732735766708112 -8185.0,0.1672695748244868 -8186.0,0.16721181193593315 -8187.0,0.16715406899452942 -8188.0,0.1670963459933874 -8189.0,0.16703864292562107 -8190.0,0.1669809597843469 -8191.0,0.16692329656268376 -8192.0,0.16686565325375277 -8193.0,0.16680802985067758 -8194.0,0.16675042634658405 -8195.0,0.1666928427346006 -8196.0,0.16663527900785782 -8197.0,0.1665777351594889 -8198.0,0.16652021118262916 -8199.0,0.1664627070704165 -8200.0,0.16640522281599102 -8201.0,0.16634775841249536 -8202.0,0.1662903138530743 -8203.0,0.16623288913087528 -8204.0,0.16617548423904782 -8205.0,0.16611809917074405 -8206.0,0.16606073391911824 -8207.0,0.1660033884773272 -8208.0,0.16594606283853003 -8209.0,0.16588875699588815 -8210.0,0.16583147094256548 -8211.0,0.16577420467172813 -8212.0,0.1657169581765447 -8213.0,0.16565973145018606 -8214.0,0.16560252448582555 -8215.0,0.1655453372766387 -8216.0,0.16548816981580358 -8217.0,0.16543102209650046 -8218.0,0.16537389411191208 -8219.0,0.16531678585522344 -8220.0,0.16525969731962203 -8221.0,0.1652026284982975 -8222.0,0.16514557938444205 -8223.0,0.16508854997125003 -8224.0,0.16503154025191835 -8225.0,0.1649745502196461 -8226.0,0.16491757986763483 -8227.0,0.16486062918908836 -8228.0,0.16480369817721288 -8229.0,0.16474678682521698 -8230.0,0.16468989512631152 -8231.0,0.16463302307370975 -8232.0,0.1645761706606272 -8233.0,0.1645193378802819 -8234.0,0.16446252472589395 -8235.0,0.16440573119068613 -8236.0,0.16434895726788326 -8237.0,0.16429220295071273 -8238.0,0.16423546823240404 -8239.0,0.16417875310618923 -8240.0,0.1641220575653026 -8241.0,0.16406538160298076 -8242.0,0.16400872521246268 -8243.0,0.1639520883869897 -8244.0,0.16389547111980543 -8245.0,0.16383887340415584 -8246.0,0.16378229523328924 -8247.0,0.16372573660045625 -8248.0,0.1636691974989099 -8249.0,0.16361267792190543 -8250.0,0.1635561778627005 -8251.0,0.16349969731455502 -8252.0,0.16344323627073132 -8253.0,0.16338679472449397 -8254.0,0.16333037266910996 -8255.0,0.16327397009784847 -8256.0,0.16321758700398115 -8257.0,0.16316122338078187 -8258.0,0.16310487922152692 -8259.0,0.16304855451949476 -8260.0,0.16299224926796635 -8261.0,0.16293596346022482 -8262.0,0.16287969708955574 -8263.0,0.16282345014924687 -8264.0,0.16276722263258844 -8265.0,0.16271101453287287 -8266.0,0.16265482584339494 -8267.0,0.1625986565574518 -8268.0,0.16254250666834277 -8269.0,0.1624863761693697 -8270.0,0.1624302650538365 -8271.0,0.16237417331504966 -8272.0,0.1623181009463177 -8273.0,0.16226204794095173 -8274.0,0.16220601429226494 -8275.0,0.162149999993573 -8276.0,0.1620940050381937 -8277.0,0.16203802941944737 -8278.0,0.16198207313065646 -8279.0,0.16192613616514584 -8280.0,0.16187021851624256 -8281.0,0.16181432017727615 -8282.0,0.16175844114157825 -8283.0,0.16170258140248298 -8284.0,0.1616467409533266 -8285.0,0.1615909197874478 -8286.0,0.16153511789818756 -8287.0,0.16147933527888905 -8288.0,0.16142357192289788 -8289.0,0.1613678278235618 -8290.0,0.16131210297423104 -8291.0,0.16125639736825792 -8292.0,0.1612007109989973 -8293.0,0.16114504385980608 -8294.0,0.16108939594404367 -8295.0,0.16103376724507162 -8296.0,0.16097815775625388 -8297.0,0.16092256747095657 -8298.0,0.16086699638254828 -8299.0,0.16081144448439966 -8300.0,0.16075591176988388 -8301.0,0.16070039823237622 -8302.0,0.1606449038652544 -8303.0,0.16058942866189824 -8304.0,0.16053397261569002 -8305.0,0.16047853572001425 -8306.0,0.16042311796825767 -8307.0,0.1603677193538094 -8308.0,0.16031233987006072 -8309.0,0.16025697951040532 -8310.0,0.16020163826823905 -8311.0,0.1601463161369602 -8312.0,0.16009101310996912 -8313.0,0.1600357291806687 -8314.0,0.15998046434246382 -8315.0,0.15992521858876194 -8316.0,0.15986999191297252 -8317.0,0.1598147843085075 -8318.0,0.15975959576878096 -8319.0,0.15970442628720938 -8320.0,0.15964927585721134 -8321.0,0.1595941444722079 -8322.0,0.15953903212562223 -8323.0,0.1594839388108798 -8324.0,0.15942886452140848 -8325.0,0.1593738092506382 -8326.0,0.15931877299200137 -8327.0,0.15926375573893248 -8328.0,0.15920875748486843 -8329.0,0.15915377822324828 -8330.0,0.15909881794751343 -8331.0,0.1590438766511075 -8332.0,0.15898895432747648 -8333.0,0.1589340509700684 -8334.0,0.1588791665723338 -8335.0,0.1588243011277253 -8336.0,0.15876945462969794 -8337.0,0.15871462707170883 -8338.0,0.15865981844721752 -8339.0,0.15860502874968566 -8340.0,0.15855025797257735 -8341.0,0.15849550610935872 -8342.0,0.15844077315349833 -8343.0,0.15838605909846698 -8344.0,0.15833136393773758 -8345.0,0.1582766876647855 -8346.0,0.15822203027308818 -8347.0,0.15816739175612546 -8348.0,0.15811277210737928 -8349.0,0.158058171320334 -8350.0,0.15800358938847606 -8351.0,0.1579490263052943 -8352.0,0.15789448206427972 -8353.0,0.1578399566589256 -8354.0,0.15778545008272746 -8355.0,0.15773096232918304 -8356.0,0.15767649339179232 -8357.0,0.15762204326405763 -8358.0,0.1575676119394834 -8359.0,0.15751319941157643 -8360.0,0.15745880567384565 -8361.0,0.15740443071980229 -8362.0,0.15735007454295985 -8363.0,0.15729573713683398 -8364.0,0.1572414184949427 -8365.0,0.15718711861080611 -8366.0,0.1571328374779467 -8367.0,0.15707857508988907 -8368.0,0.15702433144016015 -8369.0,0.15697010652228904 -8370.0,0.15691590032980715 -8371.0,0.156861712856248 -8372.0,0.1568075440951475 -8373.0,0.15675339404004365 -8374.0,0.1566992626844768 -8375.0,0.1566451500219894 -8376.0,0.15659105604612628 -8377.0,0.15653698075043437 -8378.0,0.15648292412846293 -8379.0,0.15642888617376333 -8380.0,0.15637486687988927 -8381.0,0.1563208662403967 -8382.0,0.15626688424884363 -8383.0,0.15621292089879052 -8384.0,0.1561589761837998 -8385.0,0.1561050500974364 -8386.0,0.15605114263326722 -8387.0,0.15599725378486157 -8388.0,0.15594338354579082 -8389.0,0.15588953190962876 -8390.0,0.15583569886995116 -8391.0,0.15578188442033622 -8392.0,0.1557280885543642 -8393.0,0.1556743112656177 -8394.0,0.15562055254768145 -8395.0,0.15556681239414247 -8396.0,0.15551309079858988 -8397.0,0.15545938775461518 -8398.0,0.15540570325581188 -8399.0,0.15535203729577585 -8400.0,0.1552983898681052 -8401.0,0.1552447609664001 -8402.0,0.15519115058426305 -8403.0,0.15513755871529872 -8404.0,0.155083985353114 -8405.0,0.15503043049131793 -8406.0,0.15497689412352186 -8407.0,0.15492337624333927 -8408.0,0.15486987684438588 -8409.0,0.15481639592027957 -8410.0,0.15476293346464048 -8411.0,0.15470948947109092 -8412.0,0.15465606393325546 -8413.0,0.1546026568447607 -8414.0,0.15454926819923573 -8415.0,0.15449589799031152 -8416.0,0.15444254621162148 -8417.0,0.1543892128568011 -8418.0,0.15433589791948812 -8419.0,0.15428260139332248 -8420.0,0.15422932327194622 -8421.0,0.1541760635490037 -8422.0,0.15412282221814141 -8423.0,0.15406959927300806 -8424.0,0.15401639470725453 -8425.0,0.1539632085145339 -8426.0,0.15391004068850145 -8427.0,0.15385689122281468 -8428.0,0.15380376011113314 -8429.0,0.15375064734711882 -8430.0,0.15369755292443563 -8431.0,0.1536444768367499 -8432.0,0.1535914190777299 -8433.0,0.15353837964104639 -8434.0,0.15348535852037204 -8435.0,0.15343235570938185 -8436.0,0.15337937120175296 -8437.0,0.1533264049911647 -8438.0,0.15327345707129866 -8439.0,0.15322052743583844 -8440.0,0.15316761607847 -8441.0,0.1531147229928813 -8442.0,0.1530618481727627 -8443.0,0.15300899161180653 -8444.0,0.15295615330370746 -8445.0,0.15290333324216218 -8446.0,0.1528505314208697 -8447.0,0.15279774783353114 -8448.0,0.15274498247384982 -8449.0,0.15269223533553117 -8450.0,0.15263950641228288 -8451.0,0.15258679569781472 -8452.0,0.1525341031858388 -8453.0,0.15248142887006913 -8454.0,0.1524287727442222 -8455.0,0.1523761348020164 -8456.0,0.15232351503717245 -8457.0,0.15227091344341326 -8458.0,0.15221833001446375 -8459.0,0.15216576474405116 -8460.0,0.1521132176259048 -8461.0,0.1520606886537562 -8462.0,0.15200817782133902 -8463.0,0.15195568512238913 -8464.0,0.15190321055064449 -8465.0,0.15185075409984533 -8466.0,0.1517983157637339 -8467.0,0.15174589553605475 -8468.0,0.1516934934105545 -8469.0,0.151641109380982 -8470.0,0.15158874344108814 -8471.0,0.15153639558462612 -8472.0,0.15148406580535115 -8473.0,0.15143175409702075 -8474.0,0.15137946045339445 -8475.0,0.15132718486823404 -8476.0,0.15127492733530343 -8477.0,0.1512226878483686 -8478.0,0.15117046640119788 -8479.0,0.1511182629875615 -8480.0,0.1510660776012321 -8481.0,0.15101391023598426 -8482.0,0.15096176088559485 -8483.0,0.15090962954384274 -8484.0,0.15085751620450916 -8485.0,0.15080542086137727 -8486.0,0.15075334350823255 -8487.0,0.1507012841388625 -8488.0,0.15064924274705685 -8489.0,0.1505972193266074 -8490.0,0.1505452138713082 -8491.0,0.1504932263749553 -8492.0,0.15044125683134704 -8493.0,0.1503893052342838 -8494.0,0.1503373715775681 -8495.0,0.15028545585500472 -8496.0,0.1502335580604004 -8497.0,0.1501816781875642 -8498.0,0.15012981623030716 -8499.0,0.15007797218244256 -8500.0,0.15002614603778575 -8501.0,0.14997433779015432 -8502.0,0.1499225474333678 -8503.0,0.14987077496124812 -8504.0,0.1498190203676191 -8505.0,0.14976728364630687 -8506.0,0.14971556479113954 -8507.0,0.14966386379594748 -8508.0,0.1496121806545631 -8509.0,0.14956051536082104 -8510.0,0.14950886790855794 -8511.0,0.14945723829161267 -8512.0,0.1494056265038262 -8513.0,0.14935403253904156 -8514.0,0.14930245639110407 -8515.0,0.14925089805386096 -8516.0,0.14919935752116179 -8517.0,0.14914783478685809 -8518.0,0.14909632984480362 -8519.0,0.14904484268885415 -8520.0,0.14899337331286772 -8521.0,0.14894192171070433 -8522.0,0.14889048787622627 -8523.0,0.14883907180329775 -8524.0,0.14878767348578528 -8525.0,0.1487362929175574 -8526.0,0.1486849300924848 -8527.0,0.14863358500444018 -8528.0,0.1485822576472986 -8529.0,0.14853094801493694 -8530.0,0.14847965610123443 -8531.0,0.14842838190007224 -8532.0,0.14837712540533377 -8533.0,0.14832588661090454 -8534.0,0.14827466551067203 -8535.0,0.14822346209852605 -8536.0,0.1481722763683583 -8537.0,0.1481211083140628 -8538.0,0.14806995792953548 -8539.0,0.14801882520867457 -8540.0,0.14796771014538018 -8541.0,0.1479166127335548 -8542.0,0.14786553296710275 -8543.0,0.1478144708399307 -8544.0,0.14776342634594722 -8545.0,0.14771239947906314 -8546.0,0.14766139023319125 -8547.0,0.14761039860224662 -8548.0,0.14755942458014623 -8549.0,0.14750846816080931 -8550.0,0.1474575293381571 -8551.0,0.14740660810611297 -8552.0,0.14735570445860244 -8553.0,0.14730481838955298 -8554.0,0.14725394989289434 -8555.0,0.1472030989625582 -8556.0,0.14715226559247852 -8557.0,0.14710144977659115 -8558.0,0.1470506515088342 -8559.0,0.14699987078314775 -8560.0,0.1469491075934741 -8561.0,0.1468983619337575 -8562.0,0.1468476337979444 -8563.0,0.1467969231799833 -8564.0,0.1467462300738248 -8565.0,0.14669555447342156 -8566.0,0.14664489637272837 -8567.0,0.1465942557657021 -8568.0,0.14654363264630166 -8569.0,0.14649302700848807 -8570.0,0.1464424388462245 -8571.0,0.1463918681534761 -8572.0,0.1463413149242102 -8573.0,0.14629077915239616 -8574.0,0.1462402608320054 -8575.0,0.1461897599570115 -8576.0,0.14613927652139 -8577.0,0.14608881051911868 -8578.0,0.14603836194417724 -8579.0,0.1459879307905476 -8580.0,0.1459375170522136 -8581.0,0.14588712072316137 -8582.0,0.1458367417973789 -8583.0,0.1457863802688564 -8584.0,0.1457360361315861 -8585.0,0.14568570937956227 -8586.0,0.14563540000678132 -8587.0,0.14558510800724175 -8588.0,0.14553483337494402 -8589.0,0.1454845761038908 -8590.0,0.1454343361880867 -8591.0,0.14538411362153852 -8592.0,0.14533390839825508 -8593.0,0.1452837205122472 -8594.0,0.14523354995752788 -8595.0,0.1451833967281121 -8596.0,0.145133260818017 -8597.0,0.14508314222126167 -8598.0,0.1450330409318674 -8599.0,0.14498295694385738 -8600.0,0.14493289025125705 -8601.0,0.14488284084809375 -8602.0,0.144832808728397 -8603.0,0.14478279388619825 -8604.0,0.1447327963155312 -8605.0,0.14468281601043143 -8606.0,0.14463285296493672 -8607.0,0.14458290717308675 -8608.0,0.14453297862892342 -8609.0,0.14448306732649063 -8610.0,0.14443317325983426 -8611.0,0.1443832964230024 -8612.0,0.144333436810045 -8613.0,0.1442835944150143 -8614.0,0.14423376923196435 -8615.0,0.14418396125495142 -8616.0,0.14413417047803376 -8617.0,0.14408439689527175 -8618.0,0.14403464050072767 -8619.0,0.14398490128846603 -8620.0,0.14393517925255325 -8621.0,0.14388547438705793 -8622.0,0.14383578668605052 -8623.0,0.14378611614360376 -8624.0,0.1437364627537922 -8625.0,0.1436868265106927 -8626.0,0.14363720740838387 -8627.0,0.1435876054409466 -8628.0,0.1435380206024637 -8629.0,0.14348845288702008 -8630.0,0.1434389022887027 -8631.0,0.14338936880160047 -8632.0,0.14333985241980446 -8633.0,0.1432903531374077 -8634.0,0.1432408709485053 -8635.0,0.14319140584719436 -8636.0,0.1431419578275741 -8637.0,0.1430925268837457 -8638.0,0.14304311300981246 -8639.0,0.14299371619987958 -8640.0,0.1429443364480545 -8641.0,0.14289497374844642 -8642.0,0.14284562809516688 -8643.0,0.14279629948232916 -8644.0,0.14274698790404888 -8645.0,0.14269769335444338 -8646.0,0.14264841582763224 -8647.0,0.14259915531773706 -8648.0,0.14254991181888133 -8649.0,0.14250068532519072 -8650.0,0.14245147583079285 -8651.0,0.14240228332981741 -8652.0,0.142353107816396 -8653.0,0.1423039492846625 -8654.0,0.1422548077287525 -8655.0,0.14220568314280388 -8656.0,0.14215657552095637 -8657.0,0.1421074848573518 -8658.0,0.14205841114613402 -8659.0,0.14200935438144893 -8660.0,0.14196031455744432 -8661.0,0.1419112916682702 -8662.0,0.14186228570807843 -8663.0,0.14181329667102302 -8664.0,0.14176432455125984 -8665.0,0.14171536934294696 -8666.0,0.14166643104024437 -8667.0,0.141617509637314 -8668.0,0.14156860512832004 -8669.0,0.14151971750742837 -8670.0,0.1414708467688072 -8671.0,0.14142199290662646 -8672.0,0.1413731559150584 -8673.0,0.141324335788277 -8674.0,0.14127553252045844 -8675.0,0.1412267461057808 -8676.0,0.14117797653842423 -8677.0,0.1411292238125709 -8678.0,0.14108048792240496 -8679.0,0.14103176886211255 -8680.0,0.14098306662588186 -8681.0,0.14093438120790308 -8682.0,0.14088571260236837 -8683.0,0.14083706080347191 -8684.0,0.14078842580540993 -8685.0,0.14073980760238064 -8686.0,0.14069120618858416 -8687.0,0.14064262155822282 -8688.0,0.1405940537055007 -8689.0,0.14054550262462412 -8690.0,0.1404969683098012 -8691.0,0.14044845075524223 -8692.0,0.14039994995515934 -8693.0,0.1403514659037668 -8694.0,0.14030299859528078 -8695.0,0.1402545480239195 -8696.0,0.14020611418390316 -8697.0,0.14015769706945397 -8698.0,0.14010929667479607 -8699.0,0.1400609129941557 -8700.0,0.14001254602176103 -8701.0,0.1399641957518422 -8702.0,0.13991586217863142 -8703.0,0.1398675452963628 -8704.0,0.13981924509927254 -8705.0,0.13977096158159874 -8706.0,0.13972269473758156 -8707.0,0.13967444456146305 -8708.0,0.13962621104748743 -8709.0,0.13957799418990066 -8710.0,0.13952979398295096 -8711.0,0.13948161042088825 -8712.0,0.13943344349796472 -8713.0,0.1393852932084343 -8714.0,0.1393371595465531 -8715.0,0.13928904250657903 -8716.0,0.13924094208277216 -8717.0,0.1391928582693944 -8718.0,0.13914479106070976 -8719.0,0.13909674045098414 -8720.0,0.13904870643448547 -8721.0,0.13900068900548357 -8722.0,0.1389526881582504 -8723.0,0.1389047038870598 -8724.0,0.13885673618618755 -8725.0,0.1388087850499115 -8726.0,0.13876085047251138 -8727.0,0.138712932448269 -8728.0,0.138665030971468 -8729.0,0.13861714603639422 -8730.0,0.1385692776373352 -8731.0,0.1385214257685807 -8732.0,0.13847359042442225 -8733.0,0.1384257715991535 -8734.0,0.13837796928706997 -8735.0,0.13833018348246925 -8736.0,0.1382824141796508 -8737.0,0.13823466137291607 -8738.0,0.13818692505656854 -8739.0,0.13813920522491363 -8740.0,0.13809150187225866 -8741.0,0.13804381499291296 -8742.0,0.13799614458118795 -8743.0,0.13794849063139675 -8744.0,0.13790085313785466 -8745.0,0.13785323209487887 -8746.0,0.13780562749678857 -8747.0,0.13775803933790481 -8748.0,0.13771046761255074 -8749.0,0.13766291231505132 -8750.0,0.13761537343973362 -8751.0,0.13756785098092655 -8752.0,0.13752034493296109 -8753.0,0.13747285529017003 -8754.0,0.13742538204688828 -8755.0,0.13737792519745257 -8756.0,0.13733048473620169 -8757.0,0.13728306065747628 -8758.0,0.1372356529556191 -8759.0,0.1371882616249746 -8760.0,0.13714088665988947 -8761.0,0.1370935280547122 -8762.0,0.13704618580379319 -8763.0,0.13699885990148494 -8764.0,0.13695155034214174 -8765.0,0.13690425712011997 -8766.0,0.13685698022977782 -8767.0,0.1368097196654756 -8768.0,0.13676247542157535 -8769.0,0.13671524749244127 -8770.0,0.13666803587243936 -8771.0,0.13662084055593768 -8772.0,0.13657366153730607 -8773.0,0.13652649881091652 -8774.0,0.1364793523711428 -8775.0,0.13643222221236073 -8776.0,0.13638510832894798 -8777.0,0.13633801071528423 -8778.0,0.13629092936575105 -8779.0,0.136243864274732 -8780.0,0.13619681543661258 -8781.0,0.13614978284578017 -8782.0,0.13610276649662417 -8783.0,0.1360557663835358 -8784.0,0.1360087825009084 -8785.0,0.13596181484313702 -8786.0,0.13591486340461884 -8787.0,0.1358679281797528 -8788.0,0.13582100916294 -8789.0,0.13577410634858322 -8790.0,0.13572721973108742 -8791.0,0.13568034930485925 -8792.0,0.1356334950643075 -8793.0,0.13558665700384273 -8794.0,0.13553983511787754 -8795.0,0.13549302940082641 -8796.0,0.1354462398471058 -8797.0,0.135399466451134 -8798.0,0.13535270920733125 -8799.0,0.13530596811011988 -8800.0,0.1352592431539239 -8801.0,0.13521253433316943 -8802.0,0.13516584164228448 -8803.0,0.13511916507569882 -8804.0,0.13507250462784437 -8805.0,0.13502586029315486 -8806.0,0.13497923206606605 -8807.0,0.13493261994101535 -8808.0,0.1348860239124424 -8809.0,0.1348394439747886 -8810.0,0.13479288012249732 -8811.0,0.13474633235001382 -8812.0,0.13469980065178527 -8813.0,0.1346532850222608 -8814.0,0.13460678545589147 -8815.0,0.13456030194713015 -8816.0,0.13451383449043172 -8817.0,0.13446738308025294 -8818.0,0.13442094771105254 -8819.0,0.13437452837729116 -8820.0,0.13432812507343117 -8821.0,0.13428173779393707 -8822.0,0.1342353665332752 -8823.0,0.13418901128591387 -8824.0,0.1341426720463231 -8825.0,0.13409634880897506 -8826.0,0.13405004156834366 -8827.0,0.13400375031890488 -8828.0,0.1339574750551364 -8829.0,0.13391121577151793 -8830.0,0.13386497246253115 -8831.0,0.13381874512265957 -8832.0,0.1337725337463885 -8833.0,0.13372633832820535 -8834.0,0.13368015886259932 -8835.0,0.13363399534406153 -8836.0,0.13358784776708507 -8837.0,0.13354171612616475 -8838.0,0.13349560041579747 -8839.0,0.13344950063048197 -8840.0,0.13340341676471892 -8841.0,0.13335734881301076 -8842.0,0.13331129676986195 -8843.0,0.13326526062977884 -8844.0,0.13321924038726968 -8845.0,0.1331732360368445 -8846.0,0.13312724757301536 -8847.0,0.1330812749902962 -8848.0,0.13303531828320286 -8849.0,0.13298937744625294 -8850.0,0.13294345247396605 -8851.0,0.13289754336086373 -8852.0,0.1328516501014694 -8853.0,0.1328057726903082 -8854.0,0.13275991112190733 -8855.0,0.13271406539079586 -8856.0,0.13266823549150475 -8857.0,0.13262242141856684 -8858.0,0.13257662316651678 -8859.0,0.1325308407298912 -8860.0,0.13248507410322857 -8861.0,0.13243932328106936 -8862.0,0.13239358825795572 -8863.0,0.1323478690284318 -8864.0,0.1323021655870437 -8865.0,0.1322564779283393 -8866.0,0.13221080604686838 -8867.0,0.13216514993718262 -8868.0,0.1321195095938356 -8869.0,0.13207388501138279 -8870.0,0.1320282761843814 -8871.0,0.1319826831073907 -8872.0,0.13193710577497178 -8873.0,0.13189154418168758 -8874.0,0.13184599832210298 -8875.0,0.13180046819078461 -8876.0,0.1317549537823011 -8877.0,0.13170945509122287 -8878.0,0.13166397211212238 -8879.0,0.13161850483957369 -8880.0,0.13157305326815297 -8881.0,0.13152761739243815 -8882.0,0.13148219720700913 -8883.0,0.1314367927064475 -8884.0,0.13139140388533688 -8885.0,0.13134603073826276 -8886.0,0.13130067325981246 -8887.0,0.13125533144457505 -8888.0,0.13121000528714166 -8889.0,0.1311646947821052 -8890.0,0.13111939992406055 -8891.0,0.1310741207076042 -8892.0,0.13102885712733475 -8893.0,0.1309836091778526 -8894.0,0.13093837685375995 -8895.0,0.13089316014966101 -8896.0,0.13084795906016164 -8897.0,0.13080277357986972 -8898.0,0.13075760370339495 -8899.0,0.130712449425349 -8900.0,0.1306673107403451 -8901.0,0.13062218764299866 -8902.0,0.1305770801279268 -8903.0,0.13053198818974857 -8904.0,0.13048691182308472 -8905.0,0.13044185102255804 -8906.0,0.13039680578279306 -8907.0,0.13035177609841633 -8908.0,0.130306761964056 -8909.0,0.13026176337434223 -8910.0,0.13021678032390707 -8911.0,0.13017181280738435 -8912.0,0.13012686081940983 -8913.0,0.13008192435462093 -8914.0,0.13003700340765717 -8915.0,0.12999209797315975 -8916.0,0.12994720804577187 -8917.0,0.12990233362013837 -8918.0,0.12985747469090608 -8919.0,0.12981263125272371 -8920.0,0.1297678033002418 -8921.0,0.1297229908281126 -8922.0,0.12967819383099033 -8923.0,0.12963341230353106 -8924.0,0.12958864624039274 -8925.0,0.12954389563623497 -8926.0,0.12949916048571944 -8927.0,0.1294544407835095 -8928.0,0.12940973652427054 -8929.0,0.1293650477026695 -8930.0,0.1293203743133754 -8931.0,0.12927571635105906 -8932.0,0.12923107381039306 -8933.0,0.12918644668605198 -8934.0,0.12914183497271198 -8935.0,0.1290972386650513 -8936.0,0.12905265775774988 -8937.0,0.12900809224548962 -8938.0,0.12896354212295408 -8939.0,0.1289190073848288 -8940.0,0.1288744880258011 -8941.0,0.12882998404056023 -8942.0,0.12878549542379703 -8943.0,0.12874102217020444 -8944.0,0.1286965642744771 -8945.0,0.12865212173131155 -8946.0,0.12860769453540602 -8947.0,0.12856328268146075 -8948.0,0.1285188861641777 -8949.0,0.12847450497826068 -8950.0,0.12843013911841542 -8951.0,0.12838578857934926 -8952.0,0.1283414533557716 -8953.0,0.12829713344239355 -8954.0,0.1282528288339281 -8955.0,0.12820853952508995 -8956.0,0.12816426551059573 -8957.0,0.12812000678516391 -8958.0,0.1280757633435148 -8959.0,0.12803153518037036 -8960.0,0.12798732229045456 -8961.0,0.12794312466849309 -8962.0,0.1278989423092136 -8963.0,0.12785477520734528 -8964.0,0.12781062335761942 -8965.0,0.12776648675476904 -8966.0,0.12772236539352896 -8967.0,0.1276782592686358 -8968.0,0.127634168374828 -8969.0,0.12759009270684585 -8970.0,0.12754603225943148 -8971.0,0.12750198702732882 -8972.0,0.1274579570052835 -8973.0,0.1274139421880431 -8974.0,0.12736994257035703 -8975.0,0.12732595814697645 -8976.0,0.12728198891265421 -8977.0,0.12723803486214524 -8978.0,0.12719409599020606 -8979.0,0.1271501722915952 -8980.0,0.12710626376107273 -8981.0,0.12706237039340076 -8982.0,0.12701849218334313 -8983.0,0.1269746291256655 -8984.0,0.12693078121513532 -8985.0,0.1268869484465218 -8986.0,0.12684313081459606 -8987.0,0.126799328314131 -8988.0,0.1267555409399013 -8989.0,0.12671176868668335 -8990.0,0.12666801154925553 -8991.0,0.12662426952239791 -8992.0,0.12658054260089244 -8993.0,0.1265368307795227 -8994.0,0.12649313405307425 -8995.0,0.1264494524163344 -8996.0,0.1264057858640923 -8997.0,0.1263621343911387 -8998.0,0.1263184979922664 -8999.0,0.12627487666226989 -9000.0,0.1262312703959455 -9001.0,0.12618767918809123 -9002.0,0.126144103033507 -9003.0,0.12610054192699452 -9004.0,0.12605699586335728 -9005.0,0.12601346483740047 -9006.0,0.12596994884393123 -9007.0,0.1259264478777584 -9008.0,0.1258829619336926 -9009.0,0.1258394910065464 -9010.0,0.12579603509113388 -9011.0,0.1257525941822711 -9012.0,0.12570916827477593 -9013.0,0.125665757363468 -9014.0,0.12562236144316857 -9015.0,0.12557898050870092 -9016.0,0.12553561455489 -9017.0,0.12549226357656265 -9018.0,0.12544892756854728 -9019.0,0.12540560652567428 -9020.0,0.12536230044277577 -9021.0,0.12531900931468568 -9022.0,0.1252757331362396 -9023.0,0.12523247190227507 -9024.0,0.12518922560763135 -9025.0,0.12514599424714942 -9026.0,0.1251027778156722 -9027.0,0.12505957630804412 -9028.0,0.12501638971911166 -9029.0,0.12497321804372297 -9030.0,0.12493006127672801 -9031.0,0.12488691941297841 -9032.0,0.1248437924473277 -9033.0,0.12480068037463116 -9034.0,0.12475758318974586 -9035.0,0.12471450088753055 -9036.0,0.12467143346284586 -9037.0,0.12462838091055416 -9038.0,0.12458534322551965 -9039.0,0.12454232040260813 -9040.0,0.12449931243668737 -9041.0,0.1244563193226268 -9042.0,0.12441334105529774 -9043.0,0.12437037762957308 -9044.0,0.12432742904032763 -9045.0,0.12428449528243797 -9046.0,0.12424157635078238 -9047.0,0.12419867224024103 -9048.0,0.12415578294569565 -9049.0,0.12411290846202991 -9050.0,0.12407004878412921 -9051.0,0.12402720390688074 -9052.0,0.12398437382517331 -9053.0,0.12394155853389768 -9054.0,0.12389875802794628 -9055.0,0.12385597230221339 -9056.0,0.12381320135159486 -9057.0,0.1237704451709885 -9058.0,0.12372770375529377 -9059.0,0.12368497709941204 -9060.0,0.12364226519824618 -9061.0,0.12359956804670104 -9062.0,0.12355688563968317 -9063.0,0.12351421797210087 -9064.0,0.12347156503886424 -9065.0,0.12342892683488499 -9066.0,0.12338630335507675 -9067.0,0.12334369459435485 -9068.0,0.12330110054763643 -9069.0,0.12325852120984022 -9070.0,0.12321595657588688 -9071.0,0.12317340664069876 -9072.0,0.1231308713992 -9073.0,0.12308835084631635 -9074.0,0.12304584497697547 -9075.0,0.12300335378610674 -9076.0,0.12296087726864131 -9077.0,0.12291841541951194 -9078.0,0.1228759682336533 -9079.0,0.12283353570600172 -9080.0,0.1227911178314954 -9081.0,0.12274871460507407 -9082.0,0.12270632602167938 -9083.0,0.1226639520762547 -9084.0,0.12262159276374512 -9085.0,0.12257924807909755 -9086.0,0.12253691801726044 -9087.0,0.1224946025731842 -9088.0,0.1224523017418209 -9089.0,0.1224100155181244 -9090.0,0.12236774389705017 -9091.0,0.12232548687355557 -9092.0,0.12228324444259964 -9093.0,0.1222410165991432 -9094.0,0.1221988033381487 -9095.0,0.12215660465458045 -9096.0,0.12211442054340445 -9097.0,0.12207225099958849 -9098.0,0.12203009601810196 -9099.0,0.12198795559391612 -9100.0,0.12194582972200393 -9101.0,0.12190371839734009 -9102.0,0.12186162161490105 -9103.0,0.12181953936966489 -9104.0,0.12177747165661154 -9105.0,0.12173541847072265 -9106.0,0.12169337980698162 -9107.0,0.12165135566037345 -9108.0,0.121609346025885 -9109.0,0.12156735089850484 -9110.0,0.12152537027322331 -9111.0,0.12148340414503232 -9112.0,0.12144145250892567 -9113.0,0.12139951535989883 -9114.0,0.12135759269294906 -9115.0,0.1213156845030752 -9116.0,0.12127379078527793 -9117.0,0.12123191153455967 -9118.0,0.12119004674592455 -9119.0,0.12114819641437834 -9120.0,0.12110636053492861 -9121.0,0.12106453910258468 -9122.0,0.12102273211235753 -9123.0,0.12098093955925997 -9124.0,0.12093916143830634 -9125.0,0.12089739774451284 -9126.0,0.12085564847289741 -9127.0,0.12081391361847969 -9128.0,0.1207721931762809 -9129.0,0.1207304871413242 -9130.0,0.1206887955086343 -9131.0,0.12064711827323779 -9132.0,0.12060545543016277 -9133.0,0.12056380697443919 -9134.0,0.12052217290109872 -9135.0,0.12048055320517476 -9136.0,0.12043894788170229 -9137.0,0.12039735692571812 -9138.0,0.1203557803322608 -9139.0,0.12031421809637051 -9140.0,0.12027267021308924 -9141.0,0.12023113667746053 -9142.0,0.12018961748452978 -9143.0,0.12014811262934405 -9144.0,0.12010662210695218 -9145.0,0.12006514591240453 -9146.0,0.12002368404075335 -9147.0,0.11998223648705254 -9148.0,0.11994080324635778 -9149.0,0.11989938431372625 -9150.0,0.11985797968421706 -9151.0,0.11981658935289091 -9152.0,0.11977521331481031 -9153.0,0.11973385156503928 -9154.0,0.11969250409864371 -9155.0,0.11965117091069118 -9156.0,0.11960985199625097 -9157.0,0.11956854735039395 -9158.0,0.11952725696819279 -9159.0,0.1194859808447219 -9160.0,0.11944471897505729 -9161.0,0.11940347135427681 -9162.0,0.11936223797745979 -9163.0,0.11932101883968746 -9164.0,0.11927981393604267 -9165.0,0.11923862326161001 -9166.0,0.11919744681147566 -9167.0,0.1191562845807276 -9168.0,0.11911513656445549 -9169.0,0.11907400275775072 -9170.0,0.11903288315570622 -9171.0,0.11899177775341675 -9172.0,0.11895068654597878 -9173.0,0.11890960952849046 -9174.0,0.11886854669605149 -9175.0,0.11882749804376341 -9176.0,0.11878646356672946 -9177.0,0.1187454432600545 -9178.0,0.11870443711884517 -9179.0,0.1186634451382096 -9180.0,0.11862246731325783 -9181.0,0.1185815036391015 -9182.0,0.11854055411085399 -9183.0,0.11849961872363021 -9184.0,0.11845869747254693 -9185.0,0.11841779035272253 -9186.0,0.11837689735927716 -9187.0,0.11833601848733245 -9188.0,0.11829515373201194 -9189.0,0.11825430308844072 -9190.0,0.1182134665517457 -9191.0,0.11817264411705523 -9192.0,0.1181318357794996 -9193.0,0.11809104153421061 -9194.0,0.11805026137632191 -9195.0,0.11800949530096858 -9196.0,0.11796874330328759 -9197.0,0.11792800537841755 -9198.0,0.11788728152149867 -9199.0,0.117846571727673 -9200.0,0.11780587599208402 -9201.0,0.11776519430987707 -9202.0,0.11772452667619915 -9203.0,0.11768387308619895 -9204.0,0.11764323353502668 -9205.0,0.11760260801783438 -9206.0,0.11756199652977577 -9207.0,0.11752139906600619 -9208.0,0.11748081562168258 -9209.0,0.1174402461919637 -9210.0,0.11739969077200987 -9211.0,0.11735914935698322 -9212.0,0.11731862194204733 -9213.0,0.11727810852236763 -9214.0,0.11723760909311115 -9215.0,0.11719712364944664 -9216.0,0.11715665218654449 -9217.0,0.11711619469957667 -9218.0,0.11707575118371695 -9219.0,0.11703532163414071 -9220.0,0.11699490604602504 -9221.0,0.11695450441454858 -9222.0,0.11691411673489173 -9223.0,0.11687374300223655 -9224.0,0.11683338321176678 -9225.0,0.11679303735866772 -9226.0,0.11675270543812645 -9227.0,0.11671238744533165 -9228.0,0.11667208337547373 -9229.0,0.1166317932237446 -9230.0,0.11659151698533803 -9231.0,0.11655125465544931 -9232.0,0.11651100622927552 -9233.0,0.11647077170201518 -9234.0,0.1164305510688687 -9235.0,0.11639034432503802 -9236.0,0.11635015146572678 -9237.0,0.1163099724861403 -9238.0,0.11626980738148544 -9239.0,0.11622965614697085 -9240.0,0.11618951877780677 -9241.0,0.11614939526920515 -9242.0,0.11610928561637944 -9243.0,0.11606918981454492 -9244.0,0.11602910785891846 -9245.0,0.1159890397447186 -9246.0,0.11594898546716541 -9247.0,0.11590894502148077 -9248.0,0.11586891840288815 -9249.0,0.1158289056066127 -9250.0,0.11578890662788109 -9251.0,0.11574892146192178 -9252.0,0.11570895010396486 -9253.0,0.115668992549242 -9254.0,0.11562904879298662 -9255.0,0.11558911883043362 -9256.0,0.1155492026568197 -9257.0,0.11550930026738315 -9258.0,0.11546941165736396 -9259.0,0.1154295368220036 -9260.0,0.11538967575654535 -9261.0,0.11534982845623408 -9262.0,0.11530999491631633 -9263.0,0.11527017513204016 -9264.0,0.11523036909865542 -9265.0,0.11519057681141352 -9266.0,0.11515079826556761 -9267.0,0.11511103345637226 -9268.0,0.1150712823790839 -9269.0,0.11503154502896051 -9270.0,0.11499182140126175 -9271.0,0.11495211149124879 -9272.0,0.11491241529418458 -9273.0,0.11487273280533365 -9274.0,0.11483306401996217 -9275.0,0.11479340893333799 -9276.0,0.11475376754073045 -9277.0,0.11471413983741068 -9278.0,0.11467452581865135 -9279.0,0.1146349254797269 -9280.0,0.11459533881591315 -9281.0,0.11455576582248778 -9282.0,0.11451620649473 -9283.0,0.11447666082792074 -9284.0,0.11443712881734236 -9285.0,0.11439761045827906 -9286.0,0.11435810574601658 -9287.0,0.11431861467584234 -9288.0,0.11427913724304525 -9289.0,0.11423967344291598 -9290.0,0.1142002232707468 -9291.0,0.11416078672183158 -9292.0,0.11412136379146588 -9293.0,0.11408195447494675 -9294.0,0.11404255876757297 -9295.0,0.11400317666464492 -9296.0,0.11396380816146466 -9297.0,0.11392445325333572 -9298.0,0.1138851119355634 -9299.0,0.11384578420345456 -9300.0,0.11380647005231773 -9301.0,0.11376716947746293 -9302.0,0.11372788247420194 -9303.0,0.1136886090378481 -9304.0,0.11364934916371643 -9305.0,0.1136101028471234 -9306.0,0.11357087008338727 -9307.0,0.11353165086782788 -9308.0,0.11349244519576668 -9309.0,0.11345325306252663 -9310.0,0.11341407446343243 -9311.0,0.1133749093938104 -9312.0,0.11333575784898839 -9313.0,0.11329661982429598 -9314.0,0.11325749531506418 -9315.0,0.11321838431662577 -9316.0,0.1131792868243151 -9317.0,0.11314020283346818 -9318.0,0.11310113233942246 -9319.0,0.11306207533751716 -9320.0,0.11302303182309309 -9321.0,0.11298400179149268 -9322.0,0.11294498523805982 -9323.0,0.11290598215814017 -9324.0,0.11286699254708098 -9325.0,0.11282801640023109 -9326.0,0.11278905371294083 -9327.0,0.11275010448056232 -9328.0,0.11271116869844915 -9329.0,0.11267224636195661 -9330.0,0.11263333746644157 -9331.0,0.1125944420072624 -9332.0,0.1125555599797792 -9333.0,0.11251669137935362 -9334.0,0.11247783620134898 -9335.0,0.11243899444113002 -9336.0,0.1124001660940633 -9337.0,0.11236135115551682 -9338.0,0.11232254962086033 -9339.0,0.11228376148546497 -9340.0,0.11224498674470366 -9341.0,0.11220622539395086 -9342.0,0.11216747742858267 -9343.0,0.11212874284397664 -9344.0,0.11209002163551206 -9345.0,0.11205131379856977 -9346.0,0.11201261932853226 -9347.0,0.11197393822078347 -9348.0,0.11193527047070907 -9349.0,0.11189661607369629 -9350.0,0.11185797502513392 -9351.0,0.11181934732041243 -9352.0,0.11178073295492372 -9353.0,0.11174213192406142 -9354.0,0.11170354422322071 -9355.0,0.1116649698477984 -9356.0,0.11162640879319277 -9357.0,0.1115878610548038 -9358.0,0.11154932662803302 -9359.0,0.11151080550828363 -9360.0,0.1114722976909602 -9361.0,0.11143380317146913 -9362.0,0.11139532194521827 -9363.0,0.11135685400761715 -9364.0,0.11131839935407671 -9365.0,0.11127995798000967 -9366.0,0.11124152988083023 -9367.0,0.11120311505195421 -9368.0,0.11116471348879904 -9369.0,0.11112632518678361 -9370.0,0.11108795014132851 -9371.0,0.11104958834785589 -9372.0,0.11101123980178951 -9373.0,0.11097290449855456 -9374.0,0.11093458243357798 -9375.0,0.11089627360228824 -9376.0,0.11085797800011539 -9377.0,0.11081969562249097 -9378.0,0.11078142646484822 -9379.0,0.11074317052262189 -9380.0,0.1107049277912484 -9381.0,0.11066669826616556 -9382.0,0.1106284819428129 -9383.0,0.11059027881663153 -9384.0,0.1105520888830641 -9385.0,0.11051391213755477 -9386.0,0.11047574857554936 -9387.0,0.11043759819249524 -9388.0,0.11039946098384135 -9389.0,0.11036133694503823 -9390.0,0.1103232260715379 -9391.0,0.11028512835879403 -9392.0,0.11024704380226184 -9393.0,0.11020897239739819 -9394.0,0.11017091413966132 -9395.0,0.1101328690245112 -9396.0,0.11009483704740937 -9397.0,0.11005681820381889 -9398.0,0.11001881248920432 -9399.0,0.1099808198990319 -9400.0,0.10994284042876938 -9401.0,0.10990487407388615 -9402.0,0.10986692082985298 -9403.0,0.1098289806921424 -9404.0,0.10979105365622843 -9405.0,0.10975313971758663 -9406.0,0.1097152388716942 -9407.0,0.10967735111402974 -9408.0,0.10963947644007359 -9409.0,0.10960161484530755 -9410.0,0.10956376632521507 -9411.0,0.109525930875281 -9412.0,0.10948810849099189 -9413.0,0.10945029916783582 -9414.0,0.10941250290130244 -9415.0,0.10937471968688285 -9416.0,0.10933694952006982 -9417.0,0.10929919239635767 -9418.0,0.10926144831124229 -9419.0,0.10922371726022097 -9420.0,0.10918599923879274 -9421.0,0.10914829424245812 -9422.0,0.10911060226671919 -9423.0,0.10907292330707952 -9424.0,0.1090352573590443 -9425.0,0.10899760441812029 -9426.0,0.10895996447981574 -9427.0,0.10892233753964052 -9428.0,0.10888472359310596 -9429.0,0.10884712263572499 -9430.0,0.10880953466301212 -9431.0,0.10877195967048342 -9432.0,0.10873439765365636 -9433.0,0.10869684860805012 -9434.0,0.10865931252918538 -9435.0,0.10862178941258441 -9436.0,0.10858427925377087 -9437.0,0.10854678204827012 -9438.0,0.108509297791609 -9439.0,0.108471826479316 -9440.0,0.10843436810692093 -9441.0,0.10839692266995536 -9442.0,0.1083594901639523 -9443.0,0.10832207058444634 -9444.0,0.10828466392697363 -9445.0,0.10824727018707174 -9446.0,0.10820988936027992 -9447.0,0.1081725214421389 -9448.0,0.10813516642819102 -9449.0,0.10809782431397999 -9450.0,0.10806049509505124 -9451.0,0.10802317876695162 -9452.0,0.10798587532522967 -9453.0,0.10794858476543523 -9454.0,0.10791130708311987 -9455.0,0.10787404227383662 -9456.0,0.10783679033314011 -9457.0,0.10779955125658638 -9458.0,0.10776232503973311 -9459.0,0.10772511167813949 -9460.0,0.10768791116736627 -9461.0,0.10765072350297562 -9462.0,0.10761354868053137 -9463.0,0.10757638669559882 -9464.0,0.10753923754374485 -9465.0,0.10750210122053785 -9466.0,0.10746497772154764 -9467.0,0.10742786704234572 -9468.0,0.10739076917850504 -9469.0,0.10735368412560016 -9470.0,0.10731661187920699 -9471.0,0.10727955243490313 -9472.0,0.10724250578826768 -9473.0,0.10720547193488127 -9474.0,0.10716845087032593 -9475.0,0.1071314425901854 -9476.0,0.10709444709004483 -9477.0,0.10705746436549099 -9478.0,0.107020494412112 -9479.0,0.10698353722549768 -9480.0,0.1069465928012393 -9481.0,0.10690966113492965 -9482.0,0.10687274222216311 -9483.0,0.10683583605853543 -9484.0,0.10679894263964403 -9485.0,0.10676206196108776 -9486.0,0.1067251940184671 -9487.0,0.10668833880738386 -9488.0,0.10665149632344155 -9489.0,0.10661466656224512 -9490.0,0.1065778495194011 -9491.0,0.10654104519051738 -9492.0,0.10650425357120352 -9493.0,0.10646747465707056 -9494.0,0.10643070844373108 -9495.0,0.10639395492679905 -9496.0,0.1063572141018901 -9497.0,0.1063204859646213 -9498.0,0.1062837705106113 -9499.0,0.10624706773548014 -9500.0,0.10621037763484946 -9501.0,0.10617370020434243 -9502.0,0.10613703543958368 -9503.0,0.10610038333619944 -9504.0,0.10606374388981725 -9505.0,0.10602711709606637 -9506.0,0.10599050295057748 -9507.0,0.10595390144898283 -9508.0,0.10591731258691603 -9509.0,0.10588073636001234 -9510.0,0.10584417276390849 -9511.0,0.10580762179424276 -9512.0,0.10577108344665477 -9513.0,0.10573455771678585 -9514.0,0.10569804460027869 -9515.0,0.10566154409277763 -9516.0,0.10562505618992832 -9517.0,0.10558858088737808 -9518.0,0.10555211818077563 -9519.0,0.10551566806577128 -9520.0,0.10547923053801683 -9521.0,0.10544280559316546 -9522.0,0.10540639322687197 -9523.0,0.10536999343479263 -9524.0,0.10533360621258528 -9525.0,0.10529723155590907 -9526.0,0.10526086946042484 -9527.0,0.10522451992179484 -9528.0,0.1051881829356829 -9529.0,0.10515185849775416 -9530.0,0.10511554660367545 -9531.0,0.10507924724911501 -9532.0,0.10504296042974265 -9533.0,0.10500668614122952 -9534.0,0.1049704243792484 -9535.0,0.10493417513947355 -9536.0,0.10489793841758067 -9537.0,0.10486171420924706 -9538.0,0.10482550251015132 -9539.0,0.10478930331597372 -9540.0,0.10475311662239593 -9541.0,0.10471694242510123 -9542.0,0.10468078071977419 -9543.0,0.10464463150210102 -9544.0,0.10460849476776939 -9545.0,0.1045723705124685 -9546.0,0.10453625873188889 -9547.0,0.10450015942172274 -9548.0,0.10446407257766366 -9549.0,0.10442799819540681 -9550.0,0.10439193627064867 -9551.0,0.10435588679908739 -9552.0,0.1043198497764225 -9553.0,0.1042838251983551 -9554.0,0.10424781306058764 -9555.0,0.10421181335882417 -9556.0,0.10417582608877018 -9557.0,0.10413985124613269 -9558.0,0.10410388882662017 -9559.0,0.10406793882594247 -9560.0,0.10403200123981109 -9561.0,0.10399607606393893 -9562.0,0.10396016329404041 -9563.0,0.10392426292583133 -9564.0,0.10388837495502906 -9565.0,0.10385249937735246 -9566.0,0.10381663618852183 -9567.0,0.1037807853842589 -9568.0,0.10374494696028698 -9569.0,0.10370912091233078 -9570.0,0.10367330723611658 -9571.0,0.10363750592737196 -9572.0,0.10360171698182616 -9573.0,0.10356594039520979 -9574.0,0.10353017616325497 -9575.0,0.10349442428169535 -9576.0,0.10345868474626589 -9577.0,0.10342295755270316 -9578.0,0.10338724269674518 -9579.0,0.10335154017413148 -9580.0,0.10331584998060289 -9581.0,0.1032801721119019 -9582.0,0.10324450656377239 -9583.0,0.10320885333195977 -9584.0,0.10317321241221078 -9585.0,0.10313758380027377 -9586.0,0.10310196749189848 -9587.0,0.10306636348283622 -9588.0,0.10303077176883958 -9589.0,0.10299519234566278 -9590.0,0.10295962520906146 -9591.0,0.10292407035479276 -9592.0,0.10288852777861515 -9593.0,0.10285299747628872 -9594.0,0.10281747944357494 -9595.0,0.10278197367623679 -9596.0,0.10274648017003873 -9597.0,0.10271099892074655 -9598.0,0.10267552992412764 -9599.0,0.1026400731759508 -9600.0,0.10260462867198636 -9601.0,0.10256919640800595 -9602.0,0.10253377637978281 -9603.0,0.10249836858309158 -9604.0,0.10246297301370842 -9605.0,0.1024275896674108 -9606.0,0.1023922185399778 -9607.0,0.10235685962718989 -9608.0,0.10232151292482908 -9609.0,0.10228617842867864 -9610.0,0.10225085613452349 -9611.0,0.10221554603814992 -9612.0,0.10218024813534572 -9613.0,0.10214496242190013 -9614.0,0.10210968889360375 -9615.0,0.10207442754624872 -9616.0,0.10203917837562866 -9617.0,0.10200394137753861 -9618.0,0.10196871654777498 -9619.0,0.10193350388213575 -9620.0,0.10189830337642031 -9621.0,0.10186311502642952 -9622.0,0.10182793882796559 -9623.0,0.10179277477683231 -9624.0,0.10175762286883484 -9625.0,0.1017224830997799 -9626.0,0.10168735546547544 -9627.0,0.10165223996173106 -9628.0,0.10161713658435771 -9629.0,0.1015820453291679 -9630.0,0.10154696619197537 -9631.0,0.1015118991685955 -9632.0,0.10147684425484504 -9633.0,0.1014418014465422 -9634.0,0.10140677073950667 -9635.0,0.10137175212955946 -9636.0,0.10133674561252314 -9637.0,0.10130175118422169 -9638.0,0.10126676884048058 -9639.0,0.10123179857712658 -9640.0,0.10119684038998804 -9641.0,0.10116189427489469 -9642.0,0.10112696022767777 -9643.0,0.1010920382441698 -9644.0,0.10105712832020491 -9645.0,0.1010222304516186 -9646.0,0.10098734463424783 -9647.0,0.10095247086393089 -9648.0,0.10091760913650766 -9649.0,0.10088275944781937 -9650.0,0.1008479217937087 -9651.0,0.10081309617001985 -9652.0,0.10077828257259826 -9653.0,0.10074348099729097 -9654.0,0.1007086914399464 -9655.0,0.10067391389641447 -9656.0,0.10063914836254638 -9657.0,0.10060439483419491 -9658.0,0.1005696533072142 -9659.0,0.10053492377745987 -9660.0,0.10050020624078887 -9661.0,0.1004655006930597 -9662.0,0.10043080713013225 -9663.0,0.10039612554786785 -9664.0,0.10036145594212915 -9665.0,0.1003267983087804 -9666.0,0.10029215264368715 -9667.0,0.1002575189427165 -9668.0,0.10022289720173681 -9669.0,0.100188287416618 -9670.0,0.10015368958323137 -9671.0,0.10011910369744964 -9672.0,0.10008452975514705 -9673.0,0.10004996775219904 -9674.0,0.1000154176844827 -9675.0,0.09998087954787645 -9676.0,0.09994635333826017 -9677.0,0.09991183905151506 -9678.0,0.09987733668352386 -9679.0,0.09984284623017069 -9680.0,0.09980836768734112 -9681.0,0.09977390105092204 -9682.0,0.09973944631680189 -9683.0,0.09970500348087043 -9684.0,0.09967057253901895 -9685.0,0.09963615348714001 -9686.0,0.0996017463211277 -9687.0,0.0995673510368775 -9688.0,0.09953296763028628 -9689.0,0.09949859609725244 -9690.0,0.09946423643367558 -9691.0,0.0994298886354569 -9692.0,0.09939555269849897 -9693.0,0.09936122861870578 -9694.0,0.09932691639198266 -9695.0,0.09929261601423642 -9696.0,0.09925832748137531 -9697.0,0.09922405078930899 -9698.0,0.0991897859339484 -9699.0,0.09915553291120605 -9700.0,0.0991212917169958 -9701.0,0.09908706234723297 -9702.0,0.09905284479783416 -9703.0,0.0990186390647175 -9704.0,0.09898444514380252 -9705.0,0.09895026303101015 -9706.0,0.09891609272226264 -9707.0,0.09888193421348375 -9708.0,0.09884778750059865 -9709.0,0.09881365257953385 -9710.0,0.09877952944621737 -9711.0,0.09874541809657848 -9712.0,0.09871131852654798 -9713.0,0.09867723073205804 -9714.0,0.0986431547090423 -9715.0,0.09860909045343562 -9716.0,0.09857503796117444 -9717.0,0.09854099722819654 -9718.0,0.09850696825044117 -9719.0,0.09847295102384881 -9720.0,0.09843894554436151 -9721.0,0.09840495180792266 -9722.0,0.09837096981047712 -9723.0,0.09833699954797097 -9724.0,0.09830304101635186 -9725.0,0.09826909421156878 -9726.0,0.09823515912957212 -9727.0,0.09820123576631373 -9728.0,0.0981673241177467 -9729.0,0.09813342417982568 -9730.0,0.09809953594850664 -9731.0,0.098065659419747 -9732.0,0.09803179458950545 -9733.0,0.09799794145374223 -9734.0,0.09796410000841888 -9735.0,0.09793027024949841 -9736.0,0.0978964521729451 -9737.0,0.09786264577472474 -9738.0,0.09782885105080448 -9739.0,0.09779506799715289 -9740.0,0.0977612966097398 -9741.0,0.0977275368845366 -9742.0,0.09769378881751598 -9743.0,0.09766005240465209 -9744.0,0.09762632764192034 -9745.0,0.09759261452529765 -9746.0,0.0975589130507623 -9747.0,0.09752522321429392 -9748.0,0.09749154501187365 -9749.0,0.09745787843948381 -9750.0,0.09742422349310825 -9751.0,0.09739058016873223 -9752.0,0.09735694846234234 -9753.0,0.0973233283699265 -9754.0,0.09728971988747413 -9755.0,0.09725612301097596 -9756.0,0.09722253773642418 -9757.0,0.09718896405981224 -9758.0,0.09715540197713507 -9759.0,0.09712185148438895 -9760.0,0.09708831257757163 -9761.0,0.09705478525268205 -9762.0,0.09702126950572068 -9763.0,0.09698776533268937 -9764.0,0.09695427272959127 -9765.0,0.09692079169243104 -9766.0,0.09688732221721452 -9767.0,0.09685386429994912 -9768.0,0.09682041793664352 -9769.0,0.09678698312330788 -9770.0,0.09675355985595359 -9771.0,0.09672014813059351 -9772.0,0.0966867479432419 -9773.0,0.09665335928991438 -9774.0,0.09661998216662786 -9775.0,0.09658661656940071 -9776.0,0.09655326249425267 -9777.0,0.09651991993720489 -9778.0,0.09648658889427977 -9779.0,0.09645326936150117 -9780.0,0.09641996133489435 -9781.0,0.09638666481048593 -9782.0,0.09635337978430379 -9783.0,0.0963201062523773 -9784.0,0.0962868442107372 -9785.0,0.09625359365541555 -9786.0,0.09622035458244585 -9787.0,0.09618712698786283 -9788.0,0.09615391086770274 -9789.0,0.09612070621800312 -9790.0,0.09608751303480294 -9791.0,0.09605433131414243 -9792.0,0.09602116105206326 -9793.0,0.0959880022446085 -9794.0,0.09595485488782257 -9795.0,0.09592171897775113 -9796.0,0.09588859451044139 -9797.0,0.09585548148194181 -9798.0,0.09582237988830229 -9799.0,0.09578928972557399 -9800.0,0.09575621098980952 -9801.0,0.09572314367706283 -9802.0,0.09569008778338924 -9803.0,0.09565704330484544 -9804.0,0.0956240102374894 -9805.0,0.09559098857738056 -9806.0,0.09555797832057968 -9807.0,0.0955249794631489 -9808.0,0.09549199200115163 -9809.0,0.09545901593065274 -9810.0,0.09542605124771843 -9811.0,0.09539309794841629 -9812.0,0.09536015602881515 -9813.0,0.09532722548498532 -9814.0,0.09529430631299843 -9815.0,0.09526139850892751 -9816.0,0.0952285020688468 -9817.0,0.09519561698883205 -9818.0,0.0951627432649603 -9819.0,0.09512988089331001 -9820.0,0.09509702986996083 -9821.0,0.09506419019099394 -9822.0,0.0950313618524918 -9823.0,0.09499854485053821 -9824.0,0.09496573918121841 -9825.0,0.09493294484061882 -9826.0,0.09490016182482736 -9827.0,0.09486739012993325 -9828.0,0.09483462975202714 -9829.0,0.09480188068720083 -9830.0,0.09476914293154765 -9831.0,0.09473641648116224 -9832.0,0.0947037013321406 -9833.0,0.09467099748057997 -9834.0,0.09463830492257906 -9835.0,0.09460562365423789 -9836.0,0.09457295367165787 -9837.0,0.0945402949709416 -9838.0,0.09450764754819321 -9839.0,0.0944750113995181 -9840.0,0.09444238652102298 -9841.0,0.09440977290881601 -9842.0,0.09437717055900653 -9843.0,0.09434457946770537 -9844.0,0.09431199963102463 -9845.0,0.09427943104507784 -9846.0,0.09424687370597971 -9847.0,0.09421432760984642 -9848.0,0.09418179275279548 -9849.0,0.09414926913094573 -9850.0,0.09411675674041728 -9851.0,0.09408425557733167 -9852.0,0.09405176563781176 -9853.0,0.09401928691798177 -9854.0,0.09398681941396714 -9855.0,0.09395436312189477 -9856.0,0.09392191803789286 -9857.0,0.09388948415809102 -9858.0,0.09385706147862001 -9859.0,0.09382464999561209 -9860.0,0.09379224970520081 -9861.0,0.09375986060352105 -9862.0,0.09372748268670907 -9863.0,0.09369511595090232 -9864.0,0.09366276039223975 -9865.0,0.09363041600686157 -9866.0,0.09359808279090938 -9867.0,0.09356576074052597 -9868.0,0.09353344985185559 -9869.0,0.09350115012104379 -9870.0,0.0934688615442375 -9871.0,0.09343658411758485 -9872.0,0.09340431783723539 -9873.0,0.09337206269934001 -9874.0,0.09333981870005095 -9875.0,0.09330758583552165 -9876.0,0.093275364101907 -9877.0,0.09324315349536318 -9878.0,0.09321095401204771 -9879.0,0.09317876564811947 -9880.0,0.09314658839973852 -9881.0,0.09311442226306642 -9882.0,0.09308226723426596 -9883.0,0.09305012330950133 -9884.0,0.0930179904849379 -9885.0,0.09298586875674253 -9886.0,0.09295375812108331 -9887.0,0.0929216585741297 -9888.0,0.09288957011205241 -9889.0,0.09285749273102353 -9890.0,0.0928254264272165 -9891.0,0.09279337119680606 -9892.0,0.09276132703596816 -9893.0,0.09272929394088023 -9894.0,0.09269727190772095 -9895.0,0.09266526093267036 -9896.0,0.0926332610119097 -9897.0,0.09260127214162167 -9898.0,0.09256929431799021 -9899.0,0.09253732753720062 -9900.0,0.09250537179543952 -9901.0,0.09247342708889475 -9902.0,0.09244149341375558 -9903.0,0.09240957076621255 -9904.0,0.09237765914245756 -9905.0,0.09234575853868372 -9906.0,0.09231386895108554 -9907.0,0.09228199037585884 -9908.0,0.09225012280920078 -9909.0,0.0922182662473097 -9910.0,0.09218642068638538 -9911.0,0.09215458612262889 -9912.0,0.09212276255224265 -9913.0,0.09209094997143023 -9914.0,0.09205914837639669 -9915.0,0.09202735776334829 -9916.0,0.0919955781284927 -9917.0,0.09196380946803884 -9918.0,0.09193205177819687 -9919.0,0.09190030505517836 -9920.0,0.09186856929519618 -9921.0,0.09183684449446451 -9922.0,0.09180513064919874 -9923.0,0.09177342775561567 -9924.0,0.09174173580993338 -9925.0,0.0917100548083713 -9926.0,0.09167838474715002 -9927.0,0.09164672562249158 -9928.0,0.0916150774306193 -9929.0,0.09158344016775778 -9930.0,0.09155181383013289 -9931.0,0.09152019841397184 -9932.0,0.09148859391550315 -9933.0,0.0914570003309567 -9934.0,0.09142541765656349 -9935.0,0.09139384588855601 -9936.0,0.09136228502316796 -9937.0,0.09133073505663435 -9938.0,0.09129919598519155 -9939.0,0.0912676678050771 -9940.0,0.09123615051252996 -9941.0,0.09120464410379035 -9942.0,0.09117314857509981 -9943.0,0.09114166392270108 -9944.0,0.09111019014283832 -9945.0,0.09107872723175692 -9946.0,0.09104727518570364 -9947.0,0.0910158340009264 -9948.0,0.09098440367367452 -9949.0,0.09095298420019861 -9950.0,0.09092157557675057 -9951.0,0.09089017779958353 -9952.0,0.090858790864952 -9953.0,0.09082741476911173 -9954.0,0.09079604950831978 -9955.0,0.09076469507883456 -9956.0,0.09073335147691564 -9957.0,0.09070201869882397 -9958.0,0.09067069674082179 -9959.0,0.09063938559917266 -9960.0,0.09060808527014132 -9961.0,0.0905767957499939 -9962.0,0.09054551703499779 -9963.0,0.0905142491214217 -9964.0,0.09048299200553551 -9965.0,0.09045174568361054 -9966.0,0.09042051015191932 -9967.0,0.0903892854067357 -9968.0,0.09035807144433473 -9969.0,0.09032686826099287 -9970.0,0.09029567585298778 -9971.0,0.09026449421659849 -9972.0,0.09023332334810517 -9973.0,0.09020216324378941 -9974.0,0.09017101389993402 -9975.0,0.09013987531282312 -9976.0,0.09010874747874216 -9977.0,0.0900776303939777 -9978.0,0.09004652405481778 -9979.0,0.09001542845755162 -9980.0,0.08998434359846978 -9981.0,0.08995326947386398 -9982.0,0.08992220608002735 -9983.0,0.08989115341325425 -9984.0,0.08986011146984038 -9985.0,0.08982908024608256 -9986.0,0.08979805973827905 -9987.0,0.0897670499427293 -9988.0,0.08973605085573415 -9989.0,0.08970506247359551 -9990.0,0.08967408479261677 -9991.0,0.08964311780910249 -9992.0,0.08961216151935855 -9993.0,0.08958121591969213 -9994.0,0.08955028100641158 -9995.0,0.08951935677582659 -9996.0,0.08948844322424816 -9997.0,0.08945754034798856 -9998.0,0.08942664814336121 -9999.0,0.08939576660668094 -10000.0,0.08936489573426382 -10001.0,0.08933403552242722 -10002.0,0.08930318596748964 -10003.0,0.08927234706577102 -10004.0,0.08924151881359248 -10005.0,0.08921070120727649 -10006.0,0.08917989424314664 -10007.0,0.08914909791752794 -10008.0,0.08911831222674661 -10009.0,0.08908753716713018 -10010.0,0.08905677273500733 -10011.0,0.08902601892670811 -10012.0,0.08899527573856385 -10013.0,0.08896454316690708 -10014.0,0.08893382120807167 -10015.0,0.08890310985839266 -10016.0,0.08887240911420642 -10017.0,0.0888417189718506 -10018.0,0.08881103942766412 -10019.0,0.08878037047798705 -10020.0,0.08874971211916086 -10021.0,0.08871906434752821 -10022.0,0.0886884271594331 -10023.0,0.08865780055122066 -10024.0,0.08862718451923739 -10025.0,0.08859657905983102 -10026.0,0.08856598416935059 -10027.0,0.08853539984414625 -10028.0,0.0885048260805696 -10029.0,0.08847426287497337 -10030.0,0.0884437102237116 -10031.0,0.08841316812313962 -10032.0,0.08838263656961393 -10033.0,0.08835211555949234 -10034.0,0.08832160508913393 -10035.0,0.08829110515489907 -10036.0,0.08826061575314927 -10037.0,0.08823013688024738 -10038.0,0.08819966853255751 -10039.0,0.08816921070644504 -10040.0,0.08813876339827649 -10041.0,0.08810832660441976 -10042.0,0.08807790032124399 -10043.0,0.08804748454511954 -10044.0,0.08801707927241799 -10045.0,0.08798668449951223 -10046.0,0.0879563002227764 -10047.0,0.08792592643858589 -10048.0,0.08789556314331728 -10049.0,0.08786521033334847 -10050.0,0.0878348680050586 -10051.0,0.08780453615482806 -10052.0,0.0877742147790385 -10053.0,0.08774390387407274 -10054.0,0.08771360343631494 -10055.0,0.08768331346215048 -10056.0,0.08765303394796603 -10057.0,0.08762276489014938 -10058.0,0.08759250628508969 -10059.0,0.08756225812917735 -10060.0,0.08753202041880398 -10061.0,0.0875017931503624 -10062.0,0.08747157632024673 -10063.0,0.08744136992485232 -10064.0,0.08741117396057584 -10065.0,0.08738098842381502 -10066.0,0.087350813310969 -10067.0,0.0873206486184381 -10068.0,0.0872904943426239 -10069.0,0.08726035047992924 -10070.0,0.08723021702675812 -10071.0,0.08720009397951586 -10072.0,0.08716998133460901 -10073.0,0.0871398790884454 -10074.0,0.08710978723743394 -10075.0,0.08707970577798496 -10076.0,0.08704963470650995 -10077.0,0.0870195740194217 -10078.0,0.08698952371313409 -10079.0,0.0869594837840624 -10080.0,0.08692945422862308 -10081.0,0.08689943504323384 -10082.0,0.08686942622431357 -10083.0,0.08683942776828245 -10084.0,0.08680943967156188 -10085.0,0.08677946193057454 -10086.0,0.08674949454174424 -10087.0,0.08671953750149612 -10088.0,0.08668959080625653 -10089.0,0.08665965445245304 -10090.0,0.08662972843651448 -10091.0,0.08659981275487086 -10092.0,0.08656990740395347 -10093.0,0.08654001238019482 -10094.0,0.08651012768002869 -10095.0,0.08648025329989 -10096.0,0.08645038923621494 -10097.0,0.086420535485441 -10098.0,0.08639069204400686 -10099.0,0.08636085890835234 -10100.0,0.08633103607491859 -10101.0,0.08630122354014799 -10102.0,0.08627142130048414 -10103.0,0.08624162935237177 -10104.0,0.08621184769225698 -10105.0,0.08618207631658702 -10106.0,0.08615231522181038 -10107.0,0.08612256440437682 -10108.0,0.0860928238607372 -10109.0,0.08606309358734374 -10110.0,0.08603337358064983 -10111.0,0.08600366383711014 -10112.0,0.08597396435318042 -10113.0,0.08594427512531777 -10114.0,0.08591459614998051 -10115.0,0.08588492742362817 -10116.0,0.08585526894272143 -10117.0,0.08582562070372225 -10118.0,0.08579598270309387 -10119.0,0.08576635493730067 -10120.0,0.08573673740280824 -10121.0,0.08570713009608344 -10122.0,0.08567753301359435 -10123.0,0.08564794615181028 -10124.0,0.08561836950720166 -10125.0,0.08558880307624026 -10126.0,0.085559246855399 -10127.0,0.08552970084115204 -10128.0,0.08550016502997482 -10129.0,0.08547063941834383 -10130.0,0.08544112400273693 -10131.0,0.08541161877963316 -10132.0,0.08538212374551277 -10133.0,0.08535263889685715 -10134.0,0.08532316423014902 -10135.0,0.08529369974187227 -10136.0,0.08526424542851203 -10137.0,0.08523480128655454 -10138.0,0.08520536731248737 -10139.0,0.08517594350279926 -10140.0,0.0851465298539802 -10141.0,0.08511712636252129 -10142.0,0.08508773302491493 -10143.0,0.08505834983765471 -10144.0,0.08502897679723545 -10145.0,0.08499961390015319 -10146.0,0.08497026114290507 -10147.0,0.08494091852198954 -10148.0,0.08491158603390628 -10149.0,0.08488226367515614 -10150.0,0.08485295144224111 -10151.0,0.0848236493316645 -10152.0,0.08479435733993078 -10153.0,0.08476507546354567 -10154.0,0.08473580369901597 -10155.0,0.08470654204284982 -10156.0,0.0846772904915565 -10157.0,0.08464804904164658 -10158.0,0.08461881768963167 -10159.0,0.08458959643202472 -10160.0,0.08456038526533986 -10161.0,0.08453118418609244 -10162.0,0.08450199319079892 -10163.0,0.08447281227597704 -10164.0,0.08444364143814576 -10165.0,0.08441448067382519 -10166.0,0.08438532997953671 -10167.0,0.08435618935180278 -10168.0,0.08432705878714716 -10169.0,0.08429793828209481 -10170.0,0.08426882783317188 -10171.0,0.08423972743690565 -10172.0,0.08421063708982468 -10173.0,0.0841815567884587 -10174.0,0.0841524865293387 -10175.0,0.08412342630899672 -10176.0,0.08409437612396611 -10177.0,0.08406533597078143 -10178.0,0.08403630584597842 -10179.0,0.08400728574609392 -10180.0,0.08397827566766608 -10181.0,0.08394927560723422 -10182.0,0.08392028556133885 -10183.0,0.08389130552652167 -10184.0,0.08386233549932554 -10185.0,0.08383337547629456 -10186.0,0.08380442545397401 -10187.0,0.08377548542891043 -10188.0,0.08374655539765137 -10189.0,0.08371763535674576 -10190.0,0.08368872530274363 -10191.0,0.08365982523219626 -10192.0,0.08363093514165601 -10193.0,0.08360205502767655 -10194.0,0.08357318488681267 -10195.0,0.08354432471562044 -10196.0,0.08351547451065697 -10197.0,0.08348663426848064 -10198.0,0.08345780398565107 -10199.0,0.08342898365872904 -10200.0,0.0834001732842764 -10201.0,0.08337137285885635 -10202.0,0.08334258237903319 -10203.0,0.08331380184137242 -10204.0,0.08328503124244079 -10205.0,0.08325627057880608 -10206.0,0.08322751984703741 -10207.0,0.08319877904370501 -10208.0,0.08317004816538037 -10209.0,0.08314132720863601 -10210.0,0.08311261617004578 -10211.0,0.08308391504618465 -10212.0,0.08305522383362883 -10213.0,0.08302654252895561 -10214.0,0.08299787112874352 -10215.0,0.0829692096295723 -10216.0,0.08294055802802287 -10217.0,0.08291191632067722 -10218.0,0.08288328450411866 -10219.0,0.08285466257493161 -10220.0,0.08282605052970168 -10221.0,0.08279744836501572 -10222.0,0.0827688560774616 -10223.0,0.0827402736636285 -10224.0,0.08271170112010678 -10225.0,0.08268313844348796 -10226.0,0.08265458563036464 -10227.0,0.08262604267733073 -10228.0,0.08259750958098125 -10229.0,0.08256898633791247 -10230.0,0.08254047294472168 -10231.0,0.08251196939800748 -10232.0,0.0824834756943696 -10233.0,0.082454991830409 -10234.0,0.08242651780272768 -10235.0,0.08239805360792894 -10236.0,0.0823695992426172 -10237.0,0.0823411547033981 -10238.0,0.08231271998687835 -10239.0,0.08228429508966592 -10240.0,0.08225588000836993 -10241.0,0.08222747473960068 -10242.0,0.08219907927996965 -10243.0,0.0821706936260894 -10244.0,0.08214231777457377 -10245.0,0.08211395172203773 -10246.0,0.08208559546509743 -10247.0,0.08205724900037013 -10248.0,0.08202891232447433 -10249.0,0.08200058543402967 -10250.0,0.08197226832565699 -10251.0,0.0819439609959782 -10252.0,0.08191566344161648 -10253.0,0.08188737565919614 -10254.0,0.08185909764534267 -10255.0,0.08183082939668267 -10256.0,0.08180257090984394 -10257.0,0.08177432218145549 -10258.0,0.08174608320814741 -10259.0,0.08171785398655107 -10260.0,0.08168963451329884 -10261.0,0.08166142478502439 -10262.0,0.08163322479836249 -10263.0,0.08160503454994913 -10264.0,0.08157685403642134 -10265.0,0.08154868325441744 -10266.0,0.08152052220057686 -10267.0,0.08149237087154021 -10268.0,0.0814642292639492 -10269.0,0.08143609737444674 -10270.0,0.08140797519967692 -10271.0,0.081379862736285 -10272.0,0.08135175998091732 -10273.0,0.08132366693022143 -10274.0,0.08129558358084606 -10275.0,0.08126750992944108 -10276.0,0.08123944597265746 -10277.0,0.08121139170714739 -10278.0,0.08118334712956422 -10279.0,0.08115531223656243 -10280.0,0.08112728702479768 -10281.0,0.08109927149092673 -10282.0,0.08107126563160755 -10283.0,0.08104326944349922 -10284.0,0.08101528292326207 -10285.0,0.08098730606755744 -10286.0,0.0809593388730479 -10287.0,0.0809313813363972 -10288.0,0.08090343345427023 -10289.0,0.08087549522333293 -10290.0,0.08084756664025253 -10291.0,0.08081964770169735 -10292.0,0.08079173840433687 -10293.0,0.08076383874484169 -10294.0,0.08073594871988359 -10295.0,0.0807080683261355 -10296.0,0.08068019756027149 -10297.0,0.08065233641896682 -10298.0,0.08062448489889779 -10299.0,0.08059664299674194 -10300.0,0.08056881070917794 -10301.0,0.08054098803288566 -10302.0,0.08051317496454595 -10303.0,0.08048537150084097 -10304.0,0.08045757763845396 -10305.0,0.08042979337406936 -10306.0,0.08040201870437264 -10307.0,0.0803742536260505 -10308.0,0.0803464981357908 -10309.0,0.08031875223028251 -10310.0,0.08029101590621571 -10311.0,0.08026328916028168 -10312.0,0.0802355719891728 -10313.0,0.08020786438958269 -10314.0,0.08018016635820595 -10315.0,0.08015247789173842 -10316.0,0.08012479898687709 -10317.0,0.08009712964032006 -10318.0,0.08006946984876663 -10319.0,0.08004181960891708 -10320.0,0.08001417891747302 -10321.0,0.07998654777113709 -10322.0,0.07995892616661314 -10323.0,0.07993131410060603 -10324.0,0.0799037115698219 -10325.0,0.07987611857096794 -10326.0,0.07984853510075257 -10327.0,0.07982096115588519 -10328.0,0.07979339673307648 -10329.0,0.0797658418290382 -10330.0,0.07973829644048329 -10331.0,0.07971076056412571 -10332.0,0.07968323419668066 -10333.0,0.07965571733486447 -10334.0,0.07962820997539455 -10335.0,0.07960071211498952 -10336.0,0.07957322375036903 -10337.0,0.07954574487825392 -10338.0,0.07951827549536619 -10339.0,0.07949081559842897 -10340.0,0.07946336518416641 -10341.0,0.07943592424930393 -10342.0,0.07940849279056801 -10343.0,0.07938107080468634 -10344.0,0.07935365828838757 -10345.0,0.07932625523840166 -10346.0,0.07929886165145959 -10347.0,0.07927147752429356 -10348.0,0.07924410285363677 -10349.0,0.07921673763622367 -10350.0,0.07918938186878975 -10351.0,0.07916203554807173 -10352.0,0.07913469867080733 -10353.0,0.07910737123373549 -10354.0,0.07908005323359622 -10355.0,0.07905274466713072 -10356.0,0.07902544553108129 -10357.0,0.07899815582219127 -10358.0,0.07897087553720525 -10359.0,0.07894360467286887 -10360.0,0.07891634322592896 -10361.0,0.07888909119313335 -10362.0,0.07886184857123113 -10363.0,0.07883461535697242 -10364.0,0.07880739154710856 -10365.0,0.07878017713839186 -10366.0,0.07875297212757588 -10367.0,0.07872577651141527 -10368.0,0.0786985902866658 -10369.0,0.07867141345008431 -10370.0,0.07864424599842883 -10371.0,0.07861708792845847 -10372.0,0.07858993923693347 -10373.0,0.07856279992061524 -10374.0,0.07853566997626618 -10375.0,0.07850854940064991 -10376.0,0.07848143819053116 -10377.0,0.07845433634267579 -10378.0,0.07842724385385066 -10379.0,0.0784001607208239 -10380.0,0.07837308694036467 -10381.0,0.07834602250924329 -10382.0,0.07831896742423113 -10383.0,0.07829192168210072 -10384.0,0.07826488527962572 -10385.0,0.07823785821358091 -10386.0,0.0782108404807421 -10387.0,0.0781838320778863 -10388.0,0.0781568330017916 -10389.0,0.07812984324923725 -10390.0,0.07810286281700347 -10391.0,0.07807589170187178 -10392.0,0.07804892990062468 -10393.0,0.07802197741004584 -10394.0,0.07799503422692004 -10395.0,0.07796810034803313 -10396.0,0.07794117577017208 -10397.0,0.07791426049012501 -10398.0,0.07788735450468115 -10399.0,0.07786045781063075 -10400.0,0.07783357040476525 -10401.0,0.07780669228387721 -10402.0,0.07777982344476027 -10403.0,0.0777529638842091 -10404.0,0.07772611359901961 -10405.0,0.07769927258598876 -10406.0,0.07767244084191462 -10407.0,0.07764561836359629 -10408.0,0.0776188051478341 -10409.0,0.07759200119142944 -10410.0,0.07756520649118474 -10411.0,0.07753842104390368 -10412.0,0.07751164484639085 -10413.0,0.0774848778954521 -10414.0,0.07745812018789429 -10415.0,0.0774313717205255 -10416.0,0.07740463249015474 -10417.0,0.07737790249359225 -10418.0,0.07735118172764933 -10419.0,0.07732447018913845 -10420.0,0.07729776787487302 -10421.0,0.0772710747816677 -10422.0,0.0772443909063382 -10423.0,0.07721771624570134 -10424.0,0.07719105079657497 -10425.0,0.07716439455577814 -10426.0,0.07713774752013096 -10427.0,0.07711110968645465 -10428.0,0.07708448105157145 -10429.0,0.0770578616123048 -10430.0,0.07703125136547917 -10431.0,0.07700465030792017 -10432.0,0.07697805843645453 -10433.0,0.07695147574790995 -10434.0,0.07692490223911534 -10435.0,0.07689833790690069 -10436.0,0.0768717827480971 -10437.0,0.07684523675953665 -10438.0,0.07681869993805265 -10439.0,0.07679217228047944 -10440.0,0.07676565378365251 -10441.0,0.0767391444444083 -10442.0,0.0767126442595845 -10443.0,0.07668615322601982 -10444.0,0.07665967134055411 -10445.0,0.07663319860002822 -10446.0,0.07660673500128415 -10447.0,0.076580280541165 -10448.0,0.07655383521651496 -10449.0,0.07652739902417931 -10450.0,0.07650097196100433 -10451.0,0.07647455402383753 -10452.0,0.07644814520952742 -10453.0,0.07642174551492366 -10454.0,0.07639535493687688 -10455.0,0.07636897347223892 -10456.0,0.07634260111786267 -10457.0,0.07631623787060214 -10458.0,0.0762898837273123 -10459.0,0.07626353868484932 -10460.0,0.07623720274007045 -10461.0,0.07621087588983404 -10462.0,0.0761845581309994 -10463.0,0.07615824946042705 -10464.0,0.0761319498749786 -10465.0,0.07610565937151667 -10466.0,0.07607937794690496 -10467.0,0.07605310559800833 -10468.0,0.07602684232169267 -10469.0,0.07600058811482495 -10470.0,0.07597434297427329 -10471.0,0.07594810689690676 -10472.0,0.07592187987959562 -10473.0,0.07589566191921117 -10474.0,0.07586945301262585 -10475.0,0.07584325315671304 -10476.0,0.07581706234834736 -10477.0,0.07579088058440439 -10478.0,0.07576470786176089 -10479.0,0.07573854417729459 -10480.0,0.07571238952788437 -10481.0,0.07568624391041016 -10482.0,0.07566010732175305 -10483.0,0.07563397975879504 -10484.0,0.07560786121841935 -10485.0,0.07558175169751022 -10486.0,0.07555565119295296 -10487.0,0.07552955970163404 -10488.0,0.07550347722044083 -10489.0,0.07547740374626195 -10490.0,0.075451339275987 -10491.0,0.07542528380650672 -10492.0,0.07539923733471281 -10493.0,0.07537319985749816 -10494.0,0.07534717137175667 -10495.0,0.07532115187438339 -10496.0,0.07529514136227429 -10497.0,0.07526913983232657 -10498.0,0.0752431472814384 -10499.0,0.07521716370650912 -10500.0,0.075191189104439 -10501.0,0.07516522347212952 -10502.0,0.07513926680648313 -10503.0,0.07511331910440343 -10504.0,0.075087380362795 -10505.0,0.07506145057856356 -10506.0,0.07503552974861587 -10507.0,0.07500961786985977 -10508.0,0.07498371493920421 -10509.0,0.07495782095355906 -10510.0,0.07493193590983542 -10511.0,0.07490605980494537 -10512.0,0.07488019263580213 -10513.0,0.07485433439931986 -10514.0,0.0748284850924139 -10515.0,0.07480264471200061 -10516.0,0.07477681325499745 -10517.0,0.07475099071832286 -10518.0,0.07472517709889644 -10519.0,0.07469937239363879 -10520.0,0.07467357659947164 -10521.0,0.07464778971331769 -10522.0,0.07462201173210076 -10523.0,0.07459624265274574 -10524.0,0.07457048247217857 -10525.0,0.07454473118732625 -10526.0,0.07451898879511683 -10527.0,0.07449325529247941 -10528.0,0.07446753067634419 -10529.0,0.07444181494364245 -10530.0,0.07441610809130642 -10531.0,0.0743904101162695 -10532.0,0.0743647210154661 -10533.0,0.07433904078583171 -10534.0,0.07431336942430285 -10535.0,0.07428770692781711 -10536.0,0.07426205329331315 -10537.0,0.07423640851773071 -10538.0,0.0742107725980105 -10539.0,0.07418514553109436 -10540.0,0.07415952731392517 -10541.0,0.07413391794344687 -10542.0,0.07410831741660448 -10543.0,0.07408272573034397 -10544.0,0.07405714288161248 -10545.0,0.07403156886735818 -10546.0,0.07400600368453027 -10547.0,0.07398044733007897 -10548.0,0.07395489980095561 -10549.0,0.07392936109411258 -10550.0,0.07390383120650332 -10551.0,0.07387831013508223 -10552.0,0.07385279787680486 -10553.0,0.0738272944286278 -10554.0,0.0738017997875087 -10555.0,0.07377631395040617 -10556.0,0.07375083691427996 -10557.0,0.07372536867609085 -10558.0,0.0736999092328007 -10559.0,0.07367445858137232 -10560.0,0.07364901671876968 -10561.0,0.07362358364195772 -10562.0,0.07359815934790248 -10563.0,0.07357274383357104 -10564.0,0.07354733709593149 -10565.0,0.07352193913195297 -10566.0,0.07349654993860574 -10567.0,0.07347116951286105 -10568.0,0.07344579785169116 -10569.0,0.07342043495206942 -10570.0,0.07339508081097024 -10571.0,0.07336973542536909 -10572.0,0.07334439879224237 -10573.0,0.07331907090856767 -10574.0,0.07329375177132352 -10575.0,0.07326844137748958 -10576.0,0.07324313972404645 -10577.0,0.07321784680797584 -10578.0,0.0731925626262605 -10579.0,0.07316728717588422 -10580.0,0.07314202045383184 -10581.0,0.07311676245708916 -10582.0,0.07309151318264312 -10583.0,0.07306627262748168 -10584.0,0.07304104078859384 -10585.0,0.07301581766296956 -10586.0,0.07299060324759996 -10587.0,0.07296539753947713 -10588.0,0.07294020053559423 -10589.0,0.0729150122329454 -10590.0,0.07288983262852587 -10591.0,0.07286466171933192 -10592.0,0.07283949950236086 -10593.0,0.07281434597461098 -10594.0,0.07278920113308164 -10595.0,0.07276406497477328 -10596.0,0.07273893749668735 -10597.0,0.07271381869582626 -10598.0,0.07268870856919356 -10599.0,0.0726636071137938 -10600.0,0.07263851432663256 -10601.0,0.07261343020471647 -10602.0,0.07258835474505314 -10603.0,0.07256328794465125 -10604.0,0.07253822980052053 -10605.0,0.07251318030967177 -10606.0,0.07248813946911666 -10607.0,0.07246310727586805 -10608.0,0.0724380837269398 -10609.0,0.07241306881934678 -10610.0,0.07238806255010487 -10611.0,0.07236306491623101 -10612.0,0.07233807591474317 -10613.0,0.07231309554266038 -10614.0,0.0722881237970026 -10615.0,0.07226316067479091 -10616.0,0.0722382061730474 -10617.0,0.07221326028879517 -10618.0,0.07218832301905839 -10619.0,0.07216339436086217 -10620.0,0.07213847431123273 -10621.0,0.07211356286719728 -10622.0,0.07208866002578411 -10623.0,0.07206376578402243 -10624.0,0.07203888013894258 -10625.0,0.07201400308757586 -10626.0,0.07198913462695467 -10627.0,0.07196427475411231 -10628.0,0.0719394234660832 -10629.0,0.07191458075990279 -10630.0,0.07188974663260754 -10631.0,0.07186492108123486 -10632.0,0.07184010410282327 -10633.0,0.07181529569441229 -10634.0,0.0717904958530425 -10635.0,0.07176570457575537 -10636.0,0.07174092185959355 -10637.0,0.0717161477016006 -10638.0,0.07169138209882117 -10639.0,0.07166662504830093 -10640.0,0.0716418765470865 -10641.0,0.07161713659222556 -10642.0,0.07159240518076683 -10643.0,0.07156768230976007 -10644.0,0.07154296797625595 -10645.0,0.07151826217730627 -10646.0,0.07149356490996381 -10647.0,0.07146887617128239 -10648.0,0.07144419595831676 -10649.0,0.07141952426812279 -10650.0,0.0713948610977573 -10651.0,0.07137020644427823 -10652.0,0.07134556030474437 -10653.0,0.07132092267621565 -10654.0,0.07129629355575298 -10655.0,0.07127167294041828 -10656.0,0.07124706082727454 -10657.0,0.07122245721338563 -10658.0,0.07119786209581656 -10659.0,0.07117327547163332 -10660.0,0.07114869733790292 -10661.0,0.07112412769169332 -10662.0,0.07109956653007356 -10663.0,0.07107501385011367 -10664.0,0.07105046964888474 -10665.0,0.07102593392345875 -10666.0,0.0710014066709088 -10667.0,0.07097688788830898 -10668.0,0.0709523775727344 -10669.0,0.0709278757212611 -10670.0,0.0709033823309662 -10671.0,0.07087889739892785 -10672.0,0.07085442092222517 -10673.0,0.07082995289793827 -10674.0,0.0708054933231483 -10675.0,0.07078104219493742 -10676.0,0.07075659951038878 -10677.0,0.07073216526658659 -10678.0,0.07070773946061594 -10679.0,0.07068332208956307 -10680.0,0.07065891315051515 -10681.0,0.07063451264056038 -10682.0,0.07061012055678793 -10683.0,0.07058573689628803 -10684.0,0.07056136165615187 -10685.0,0.07053699483347171 -10686.0,0.07051263642534068 -10687.0,0.07048828642885306 -10688.0,0.07046394484110405 -10689.0,0.07043961165918991 -10690.0,0.07041528688020782 -10691.0,0.07039097050125603 -10692.0,0.07036666251943377 -10693.0,0.07034236293184129 -10694.0,0.07031807173557986 -10695.0,0.07029378892775162 -10696.0,0.07026951450545989 -10697.0,0.07024524846580886 -10698.0,0.07022099080590384 -10699.0,0.07019674152285098 -10700.0,0.07017250061375756 -10701.0,0.07014826807573181 -10702.0,0.07012404390588299 -10703.0,0.07009982810132129 -10704.0,0.07007562065915796 -10705.0,0.07005142157650522 -10706.0,0.07002723085047635 -10707.0,0.07000304847818549 -10708.0,0.0699788744567479 -10709.0,0.06995470878327979 -10710.0,0.06993055145489842 -10711.0,0.06990640246872191 -10712.0,0.0698822618218695 -10713.0,0.0698581295114614 -10714.0,0.0698340055346188 -10715.0,0.0698098898884639 -10716.0,0.06978578257011982 -10717.0,0.06976168357671077 -10718.0,0.06973759290536193 -10719.0,0.06971351055319945 -10720.0,0.06968943651735046 -10721.0,0.06966537079494312 -10722.0,0.06964131338310656 -10723.0,0.06961726427897093 -10724.0,0.0695932234796673 -10725.0,0.06956919098232782 -10726.0,0.06954516678408555 -10727.0,0.06952115088207464 -10728.0,0.06949714327343011 -10729.0,0.06947314395528803 -10730.0,0.06944915292478548 -10731.0,0.0694251701790605 -10732.0,0.06940119571525213 -10733.0,0.06937722953050038 -10734.0,0.06935327162194624 -10735.0,0.06932932198673174 -10736.0,0.06930538062199988 -10737.0,0.06928144752489457 -10738.0,0.06925752269256079 -10739.0,0.06923360612214448 -10740.0,0.06920969781079261 -10741.0,0.06918579775565305 -10742.0,0.06916190595387468 -10743.0,0.06913802240260741 -10744.0,0.06911414709900215 -10745.0,0.06909028004021067 -10746.0,0.06906642122338583 -10747.0,0.06904257064568146 -10748.0,0.06901872830425239 -10749.0,0.06899489419625433 -10750.0,0.0689710683188441 -10751.0,0.06894725066917941 -10752.0,0.06892344124441901 -10753.0,0.06889964004172265 -10754.0,0.06887584705825095 -10755.0,0.0688520622911656 -10756.0,0.06882828573762925 -10757.0,0.06880451739480557 -10758.0,0.06878075725985912 -10759.0,0.0687570053299555 -10760.0,0.06873326160226129 -10761.0,0.06870952607394407 -10762.0,0.06868579874217229 -10763.0,0.06866207960411548 -10764.0,0.06863836865694413 -10765.0,0.06861466589782973 -10766.0,0.06859097132394466 -10767.0,0.06856728493246234 -10768.0,0.06854360672055716 -10769.0,0.0685199366854045 -10770.0,0.0684962748241807 -10771.0,0.06847262113406305 -10772.0,0.06844897561222983 -10773.0,0.06842533825586032 -10774.0,0.06840170906213479 -10775.0,0.06837808802823436 -10776.0,0.06835447515134128 -10777.0,0.0683308704286387 -10778.0,0.06830727385731075 -10779.0,0.0682836854345425 -10780.0,0.06826010515752004 -10781.0,0.06823653302343043 -10782.0,0.06821296902946168 -10783.0,0.06818941317280276 -10784.0,0.06816586545064364 -10785.0,0.06814232586017524 -10786.0,0.0681187943985895 -10787.0,0.06809527106307924 -10788.0,0.0680717558508383 -10789.0,0.0680482487590615 -10790.0,0.06802474978494462 -10791.0,0.06800125892568441 -10792.0,0.06797777617847856 -10793.0,0.06795430154052576 -10794.0,0.06793083500902565 -10795.0,0.06790737658117887 -10796.0,0.06788392625418697 -10797.0,0.0678604840252525 -10798.0,0.06783704989157899 -10799.0,0.06781362385037092 -10800.0,0.06779020589883371 -10801.0,0.06776679603417378 -10802.0,0.0677433942535985 -10803.0,0.06772000055431625 -10804.0,0.06769661493353626 -10805.0,0.06767323738846885 -10806.0,0.06764986791632523 -10807.0,0.06762650651431758 -10808.0,0.0676031531796591 -10809.0,0.06757980790956387 -10810.0,0.06755647070124696 -10811.0,0.06753314155192444 -10812.0,0.06750982045881332 -10813.0,0.06748650741913151 -10814.0,0.06746320243009798 -10815.0,0.0674399054889326 -10816.0,0.06741661659285625 -10817.0,0.06739333573909066 -10818.0,0.06737006292485866 -10819.0,0.06734679814738394 -10820.0,0.06732354140389121 -10821.0,0.06730029269160608 -10822.0,0.06727705200775515 -10823.0,0.06725381934956598 -10824.0,0.06723059471426712 -10825.0,0.06720737809908799 -10826.0,0.06718416950125902 -10827.0,0.06716096891801163 -10828.0,0.06713777634657812 -10829.0,0.06711459178419184 -10830.0,0.06709141522808698 -10831.0,0.06706824667549877 -10832.0,0.06704508612366337 -10833.0,0.06702193356981793 -10834.0,0.06699878901120045 -10835.0,0.06697565244505 -10836.0,0.06695252386860653 -10837.0,0.06692940327911102 -10838.0,0.0669062906738053 -10839.0,0.06688318604993221 -10840.0,0.06686008940473555 -10841.0,0.06683700073546008 -10842.0,0.06681392003935145 -10843.0,0.06679084731365631 -10844.0,0.06676778255562225 -10845.0,0.06674472576249785 -10846.0,0.06672167693153258 -10847.0,0.06669863605997686 -10848.0,0.06667560314508211 -10849.0,0.06665257818410066 -10850.0,0.06662956117428581 -10851.0,0.06660655211289178 -10852.0,0.06658355099717375 -10853.0,0.06656055782438788 -10854.0,0.06653757259179129 -10855.0,0.06651459529664192 -10856.0,0.06649162593619877 -10857.0,0.0664686645077218 -10858.0,0.0664457110084719 -10859.0,0.0664227654357108 -10860.0,0.06639982778670131 -10861.0,0.06637689805870714 -10862.0,0.06635397624899296 -10863.0,0.0663310623548243 -10864.0,0.06630815637346774 -10865.0,0.06628525830219076 -10866.0,0.06626236813826179 -10867.0,0.06623948587895023 -10868.0,0.06621661152152633 -10869.0,0.06619374506326138 -10870.0,0.06617088650142758 -10871.0,0.06614803583329808 -10872.0,0.06612519305614693 -10873.0,0.06610235816724917 -10874.0,0.06607953116388077 -10875.0,0.06605671204331864 -10876.0,0.0660339008028406 -10877.0,0.06601109743972546 -10878.0,0.06598830195125292 -10879.0,0.0659655143347037 -10880.0,0.06594273458735933 -10881.0,0.06591996270650238 -10882.0,0.06589719868941635 -10883.0,0.06587444253338565 -10884.0,0.06585169423569565 -10885.0,0.06582895379363259 -10886.0,0.06580622120448375 -10887.0,0.06578349646553727 -10888.0,0.06576077957408231 -10889.0,0.06573807052740885 -10890.0,0.06571536932280787 -10891.0,0.0656926759575713 -10892.0,0.06566999042899202 -10893.0,0.06564731273436374 -10894.0,0.06562464287098121 -10895.0,0.0656019808361401 -10896.0,0.065579326627137 -10897.0,0.06555668024126937 -10898.0,0.06553404167583571 -10899.0,0.06551141092813538 -10900.0,0.06548878799546874 -10901.0,0.06546617287513698 -10902.0,0.06544356556444231 -10903.0,0.06542096606068784 -10904.0,0.06539837436117762 -10905.0,0.06537579046321665 -10906.0,0.06535321436411076 -10907.0,0.06533064606116686 -10908.0,0.06530808555169267 -10909.0,0.06528553283299693 -10910.0,0.06526298790238921 -10911.0,0.0652404507571801 -10912.0,0.06521792139468108 -10913.0,0.06519539981220458 -10914.0,0.06517288600706389 -10915.0,0.0651503799765733 -10916.0,0.06512788171804801 -10917.0,0.06510539122880417 -10918.0,0.06508290850615876 -10919.0,0.0650604335474298 -10920.0,0.0650379663499362 -10921.0,0.06501550691099775 -10922.0,0.06499305522793526 -10923.0,0.06497061129807034 -10924.0,0.06494817511872564 -10925.0,0.06492574668722467 -10926.0,0.06490332600089191 -10927.0,0.06488091305705268 -10928.0,0.0648585078530333 -10929.0,0.06483611038616102 -10930.0,0.06481372065376399 -10931.0,0.06479133865317123 -10932.0,0.06476896438171276 -10933.0,0.06474659783671947 -10934.0,0.06472423901552327 -10935.0,0.06470188791545681 -10936.0,0.06467954453385381 -10937.0,0.06465720886804889 -10938.0,0.06463488091537757 -10939.0,0.06461256067317625 -10940.0,0.0645902481387823 -10941.0,0.064567943309534 -10942.0,0.06454564618277055 -10943.0,0.06452335675583211 -10944.0,0.06450107502605963 -10945.0,0.0644788009907951 -10946.0,0.0644565346473814 -10947.0,0.06443427599316233 -10948.0,0.06441202502548254 -10949.0,0.0643897817416877 -10950.0,0.06436754613912433 -10951.0,0.06434531821513992 -10952.0,0.06432309796708278 -10953.0,0.06430088539230223 -10954.0,0.06427868048814847 -10955.0,0.06425648325197264 -10956.0,0.06423429368112671 -10957.0,0.06421211177296368 -10958.0,0.06418993752483738 -10959.0,0.0641677709341026 -10960.0,0.06414561199811505 -10961.0,0.06412346071423128 -10962.0,0.06410131707980883 -10963.0,0.06407918109220612 -10964.0,0.06405705274878253 -10965.0,0.06403493204689822 -10966.0,0.06401281898391442 -10967.0,0.06399071355719319 -10968.0,0.06396861576409753 -10969.0,0.0639465256019913 -10970.0,0.0639244430682393 -10971.0,0.06390236816020728 -10972.0,0.06388030087526186 -10973.0,0.06385824121077055 -10974.0,0.06383618916410179 -10975.0,0.06381414473262496 -10976.0,0.06379210791371033 -10977.0,0.06377007870472902 -10978.0,0.06374805710305312 -10979.0,0.06372604310605563 -10980.0,0.06370403671111044 -10981.0,0.06368203791559236 -10982.0,0.06366004671687706 -10983.0,0.06363806311234116 -10984.0,0.06361608709936219 -10985.0,0.06359411867531858 -10986.0,0.06357215783758963 -10987.0,0.06355020458355558 -10988.0,0.06352825891059757 -10989.0,0.06350632081609767 -10990.0,0.06348439029743877 -10991.0,0.06346246735200475 -10992.0,0.06344055197718036 -10993.0,0.06341864417035127 -10994.0,0.06339674392890401 -10995.0,0.06337485125022604 -10996.0,0.06335296613170575 -10997.0,0.0633310885707324 -10998.0,0.06330921856469617 -10999.0,0.06328735611098807 -11000.0,0.0632655012070001 -11001.0,0.06324365385012515 -11002.0,0.063221814037757 -11003.0,0.06319998176729025 -11004.0,0.06317815703612052 -11005.0,0.06315633984164429 -11006.0,0.06313453018125892 -11007.0,0.06311272805236263 -11008.0,0.06309093345235464 -11009.0,0.06306914637863499 -11010.0,0.06304736682860466 -11011.0,0.06302559479966549 -11012.0,0.06300383028922021 -11013.0,0.06298207329467252 -11014.0,0.06296032381342698 -11015.0,0.06293858184288897 -11016.0,0.06291684738046488 -11017.0,0.06289512042356192 -11018.0,0.06287340096958825 -11019.0,0.06285168901595291 -11020.0,0.06282998456006576 -11021.0,0.06280828759933767 -11022.0,0.06278659813118033 -11023.0,0.06276491615300636 -11024.0,0.06274324166222923 -11025.0,0.06272157465626337 -11026.0,0.06269991513252401 -11027.0,0.0626782630884274 -11028.0,0.06265661852139055 -11029.0,0.06263498142883143 -11030.0,0.0626133518081689 -11031.0,0.06259172965682275 -11032.0,0.06257011497221353 -11033.0,0.06254850775176281 -11034.0,0.062526907992893 -11035.0,0.0625053156930274 -11036.0,0.06248373084959027 -11037.0,0.062462153460006595 -11038.0,0.062440583521702404 -11039.0,0.062419021032104546 -11040.0,0.06239746598864081 -11041.0,0.06237591838873977 -11042.0,0.062354378229831 -11043.0,0.062332845509344904 -11044.0,0.062311320224712814 -11045.0,0.06228980237336687 -11046.0,0.062268291952740175 -11047.0,0.06224678896026668 -11048.0,0.06222529339338129 -11049.0,0.062203805249519656 -11050.0,0.062182324526118445 -11051.0,0.06216085122061516 -11052.0,0.062139385330448216 -11053.0,0.06211792685305684 -11054.0,0.062096475785881206 -11055.0,0.062075032126362374 -11056.0,0.062053595871942265 -11057.0,0.062032167020063714 -11058.0,0.06201074556817037 -11059.0,0.06198933151370683 -11060.0,0.06196792485411855 -11061.0,0.06194652558685191 -11062.0,0.06192513370935407 -11063.0,0.06190374921907316 -11064.0,0.06188237211345818 -11065.0,0.061861002389959015 -11066.0,0.06183964004602635 -11067.0,0.06181828507911186 -11068.0,0.061796937486668035 -11069.0,0.061775597266148306 -11070.0,0.06175426441500687 -11071.0,0.06173293893069891 -11072.0,0.06171162081068045 -11073.0,0.061690310052408395 -11074.0,0.06166900665334055 -11075.0,0.06164771061093552 -11076.0,0.06162642192265288 -11077.0,0.061605140585953025 -11078.0,0.061583866598297295 -11079.0,0.061562599957147794 -11080.0,0.06154134065996759 -11081.0,0.06152008870422061 -11082.0,0.06149884408737168 -11083.0,0.061477606806886416 -11084.0,0.061456376860231386 -11085.0,0.061435154244874016 -11086.0,0.061413938958282635 -11087.0,0.06139273099792635 -11088.0,0.06137153036127524 -11089.0,0.06135033704580022 -11090.0,0.061329151048973116 -11091.0,0.06130797236826654 -11092.0,0.06128680100115404 -11093.0,0.06126563694511004 -11094.0,0.06124448019760982 -11095.0,0.06122333075612956 -11096.0,0.06120218861814623 -11097.0,0.061181053781137765 -11098.0,0.06115992624258292 -11099.0,0.06113880599996137 -11100.0,0.06111769305075356 -11101.0,0.06109658739244091 -11102.0,0.061075489022505654 -11103.0,0.06105439793843094 -11104.0,0.06103331413770071 -11105.0,0.06101223761779984 -11106.0,0.060991168376214065 -11107.0,0.06097010641042999 -11108.0,0.060949051717935035 -11109.0,0.06092800429621755 -11110.0,0.06090696414276673 -11111.0,0.060885931255072634 -11112.0,0.060864905630626236 -11113.0,0.06084388726691926 -11114.0,0.0608228761614444 -11115.0,0.06080187231169519 -11116.0,0.06078087571516604 -11117.0,0.06075988636935217 -11118.0,0.06073890427174972 -11119.0,0.06071792941985569 -11120.0,0.060696961811167946 -11121.0,0.06067600144318516 -11122.0,0.060655048313406935 -11123.0,0.06063410241933372 -11124.0,0.06061316375846685 -11125.0,0.06059223232830843 -11126.0,0.06057130812636154 -11127.0,0.060550391150130056 -11128.0,0.06052948139711877 -11129.0,0.060508578864833254 -11130.0,0.060487683550780005 -11131.0,0.06046679545246637 -11132.0,0.06044591456740055 -11133.0,0.06042504089309163 -11134.0,0.060404174427049484 -11135.0,0.06038331516678492 -11136.0,0.060362463109809576 -11137.0,0.060341618253635994 -11138.0,0.060320780595777466 -11139.0,0.060299950133748254 -11140.0,0.06027912686506342 -11141.0,0.06025831078723893 -11142.0,0.06023750189779153 -11143.0,0.060216700194238894 -11144.0,0.06019590567409953 -11145.0,0.060175118334892835 -11146.0,0.06015433817413897 -11147.0,0.06013356518935905 -11148.0,0.060112799378074996 -11149.0,0.06009204073780961 -11150.0,0.06007128926608656 -11151.0,0.060050544960430295 -11152.0,0.06002980781836619 -11153.0,0.06000907783742047 -11154.0,0.05998835501512021 -11155.0,0.05996763934899328 -11156.0,0.059946930836568484 -11157.0,0.059926229475375445 -11158.0,0.05990553526294467 -11159.0,0.05988484819680743 -11160.0,0.059864168274495935 -11161.0,0.05984349549354323 -11162.0,0.059822829851483225 -11163.0,0.059802171345850606 -11164.0,0.059781519974181 -11165.0,0.05976087573401083 -11166.0,0.05974023862287743 -11167.0,0.059719608638318884 -11168.0,0.05969898577787421 -11169.0,0.05967837003908326 -11170.0,0.05965776141948672 -11171.0,0.05963715991662616 -11172.0,0.05961656552804392 -11173.0,0.05959597825128325 -11174.0,0.059575398083888266 -11175.0,0.05955482502340391 -11176.0,0.05953425906737592 -11177.0,0.05951370021335095 -11178.0,0.05949314845887649 -11179.0,0.05947260380150088 -11180.0,0.059452066238773235 -11181.0,0.059431535768243615 -11182.0,0.05941101238746287 -11183.0,0.05939049609398275 -11184.0,0.05936998688535576 -11185.0,0.05934948475913531 -11186.0,0.05932898971287566 -11187.0,0.05930850174413189 -11188.0,0.05928802085045997 -11189.0,0.05926754702941662 -11190.0,0.059247080278559495 -11191.0,0.05922662059544705 -11192.0,0.059206167977638634 -11193.0,0.05918572242269434 -11194.0,0.05916528392817519 -11195.0,0.059144852491643016 -11196.0,0.05912442811066052 -11197.0,0.059104010782791185 -11198.0,0.05908360050559939 -11199.0,0.05906319727665033 -11200.0,0.05904280109351009 -11201.0,0.05902241195374549 -11202.0,0.05900202985492429 -11203.0,0.058981654794615035 -11204.0,0.05896128677038718 -11205.0,0.0589409257798109 -11206.0,0.05892057182045731 -11207.0,0.05890022488989833 -11208.0,0.05887988498570671 -11209.0,0.05885955210545609 -11210.0,0.05883922624672085 -11211.0,0.05881890740707628 -11212.0,0.058798595584098494 -11213.0,0.058778290775364464 -11214.0,0.05875799297845193 -11215.0,0.05873770219093954 -11216.0,0.05871741841040674 -11217.0,0.058697141634433854 -11218.0,0.058676871860601956 -11219.0,0.05865660908649305 -11220.0,0.05863635330968991 -11221.0,0.058616104527776214 -11222.0,0.05859586273833638 -11223.0,0.05857562793895572 -11224.0,0.05855540012722038 -11225.0,0.058535179300717326 -11226.0,0.0585149654570344 -11227.0,0.05849475859376017 -11228.0,0.05847455870848413 -11229.0,0.058454365798796586 -11230.0,0.05843417986228871 -11231.0,0.05841400089655239 -11232.0,0.05839382889918047 -11233.0,0.058373663867766566 -11234.0,0.05835350579990516 -11235.0,0.0583333546931915 -11236.0,0.05831321054522173 -11237.0,0.0582930733535928 -11238.0,0.058272943115902504 -11239.0,0.05825281982974942 -11240.0,0.05823270349273299 -11241.0,0.058212594102453497 -11242.0,0.05819249165651206 -11243.0,0.058172396152510554 -11244.0,0.058152307588051746 -11245.0,0.058132225960739234 -11246.0,0.05811215126817742 -11247.0,0.058092083507971556 -11248.0,0.05807202267772766 -11249.0,0.058051968775052656 -11250.0,0.058031921797554245 -11251.0,0.058011881742841 -11252.0,0.05799184860852224 -11253.0,0.057971822392208175 -11254.0,0.05795180309150984 -11255.0,0.05793179070403908 -11256.0,0.05791178522740854 -11257.0,0.05789178665923172 -11258.0,0.05787179499712294 -11259.0,0.05785181023869736 -11260.0,0.0578318323815709 -11261.0,0.05781186142336038 -11262.0,0.0577918973616834 -11263.0,0.05777194019415839 -11264.0,0.05775198991840464 -11265.0,0.057732046532042176 -11266.0,0.057712110032691916 -11267.0,0.05769218041797559 -11268.0,0.05767225768551576 -11269.0,0.05765234183293573 -11270.0,0.057632432857859725 -11271.0,0.05761253075791275 -11272.0,0.05759263553072064 -11273.0,0.05757274717391 -11274.0,0.057552865685108305 -11275.0,0.05753299106194386 -11276.0,0.057513123302045784 -11277.0,0.05749326240304394 -11278.0,0.057473408362569096 -11279.0,0.05745356117825282 -11280.0,0.0574337208477275 -11281.0,0.057413887368626286 -11282.0,0.05739406073858321 -11283.0,0.0573742409552331 -11284.0,0.05735442801621161 -11285.0,0.057334621919155206 -11286.0,0.05731482266170113 -11287.0,0.0572950302414875 -11288.0,0.05727524465615322 -11289.0,0.057255465903338035 -11290.0,0.05723569398068244 -11291.0,0.05721592888582782 -11292.0,0.05719617061641633 -11293.0,0.05717641917009099 -11294.0,0.05715667454449553 -11295.0,0.0571369367372746 -11296.0,0.05711720574607362 -11297.0,0.057097481568538846 -11298.0,0.057077764202317284 -11299.0,0.05705805364505682 -11300.0,0.05703834989440612 -11301.0,0.057018652948014684 -11302.0,0.056998962803532824 -11303.0,0.05697927945861161 -11304.0,0.056959602910902976 -11305.0,0.056939933158059654 -11306.0,0.05692027019773522 -11307.0,0.05690061402758397 -11308.0,0.056880964645261094 -11309.0,0.05686132204842256 -11310.0,0.05684168623472518 -11311.0,0.05682205720182649 -11312.0,0.05680243494738491 -11313.0,0.056782819469059664 -11314.0,0.05676321076451078 -11315.0,0.056743608831399034 -11316.0,0.05672401366738609 -11317.0,0.056704425270134376 -11318.0,0.05668484363730718 -11319.0,0.05666526876656849 -11320.0,0.0566457006555832 -11321.0,0.05662613930201697 -11322.0,0.056606584703536286 -11323.0,0.05658703685780845 -11324.0,0.05656749576250148 -11325.0,0.05654796141528431 -11326.0,0.05652843381382663 -11327.0,0.056508912955798955 -11328.0,0.056489398838872544 -11329.0,0.05646989146071953 -11330.0,0.05645039081901284 -11331.0,0.05643089691142619 -11332.0,0.05641140973563406 -11333.0,0.056391929289311804 -11334.0,0.05637245557013554 -11335.0,0.05635298857578221 -11336.0,0.056333528303929514 -11337.0,0.056314074752256 -11338.0,0.056294627918441 -11339.0,0.05627518780016464 -11340.0,0.05625575439510789 -11341.0,0.05623632770095244 -11342.0,0.05621690771538084 -11343.0,0.05619749443607644 -11344.0,0.0561780878607234 -11345.0,0.05615868798700659 -11346.0,0.056139294812611804 -11347.0,0.056119908335225545 -11348.0,0.056100528552535195 -11349.0,0.056081155462228825 -11350.0,0.056061789061995396 -11351.0,0.056042429349524636 -11352.0,0.0560230763225071 -11353.0,0.056003729978634065 -11354.0,0.05598439031559767 -11355.0,0.05596505733109084 -11356.0,0.05594573102280732 -11357.0,0.05592641138844156 -11358.0,0.0559070984256889 -11359.0,0.05588779213224545 -11360.0,0.05586849250580811 -11361.0,0.055849199544074586 -11362.0,0.05582991324474333 -11363.0,0.05581063360551365 -11364.0,0.05579136062408563 -11365.0,0.05577209429816016 -11366.0,0.05575283462543886 -11367.0,0.055733581603624224 -11368.0,0.0557143352304195 -11369.0,0.05569509550352876 -11370.0,0.0556758624206568 -11371.0,0.055656635979509275 -11372.0,0.05563741617779261 -11373.0,0.05561820301321405 -11374.0,0.05559899648348156 -11375.0,0.05557979658630395 -11376.0,0.055560603319390826 -11377.0,0.05554141668045257 -11378.0,0.055522236667200374 -11379.0,0.05550306327734616 -11380.0,0.055483896508602706 -11381.0,0.05546473635868355 -11382.0,0.055445582825303055 -11383.0,0.0554264359061763 -11384.0,0.055407295599019205 -11385.0,0.055388161901548494 -11386.0,0.055369034811481664 -11387.0,0.05534991432653694 -11388.0,0.055330800444433434 -11389.0,0.05531169316289098 -11390.0,0.055292592479630254 -11391.0,0.055273498392372625 -11392.0,0.05525441089884034 -11393.0,0.05523532999675639 -11394.0,0.055216255683844605 -11395.0,0.05519718795782949 -11396.0,0.05517812681643644 -11397.0,0.0551590722573916 -11398.0,0.0551400242784219 -11399.0,0.055120982877255066 -11400.0,0.05510194805161957 -11401.0,0.055082919799244706 -11402.0,0.05506389811786055 -11403.0,0.05504488300519797 -11404.0,0.05502587445898856 -11405.0,0.05500687247696476 -11406.0,0.05498787705685977 -11407.0,0.054968888196407606 -11408.0,0.05494990589334298 -11409.0,0.05493093014540148 -11410.0,0.054911960950319416 -11411.0,0.05489299830583394 -11412.0,0.054874042209682894 -11413.0,0.05485509265960498 -11414.0,0.05483614965333966 -11415.0,0.05481721318862716 -11416.0,0.05479828326320853 -11417.0,0.05477935987482551 -11418.0,0.05476044302122071 -11419.0,0.05474153270013749 -11420.0,0.054722628909320004 -11421.0,0.054703731646513126 -11422.0,0.054684840909462566 -11423.0,0.0546659566959148 -11424.0,0.05464707900361711 -11425.0,0.054628207830317466 -11426.0,0.05460934317376471 -11427.0,0.054590485031708415 -11428.0,0.054571633401898974 -11429.0,0.05455278828208747 -11430.0,0.05453394967002585 -11431.0,0.054515117563466796 -11432.0,0.05449629196016381 -11433.0,0.05447747285787108 -11434.0,0.05445866025434364 -11435.0,0.054439854147337305 -11436.0,0.054421054534608625 -11437.0,0.05440226141391497 -11438.0,0.05438347478301442 -11439.0,0.054364694639665874 -11440.0,0.05434592098162901 -11441.0,0.054327153806664294 -11442.0,0.05430839311253289 -11443.0,0.0542896388969968 -11444.0,0.05427089115781878 -11445.0,0.0542521498927624 -11446.0,0.054233415099591904 -11447.0,0.0542146867760724 -11448.0,0.054195964919969725 -11449.0,0.054177249529050536 -11450.0,0.05415854060108216 -11451.0,0.054139838133832795 -11452.0,0.05412114212507137 -11453.0,0.05410245257256758 -11454.0,0.05408376947409193 -11455.0,0.05406509282741561 -11456.0,0.05404642263031066 -11457.0,0.05402775888054986 -11458.0,0.054009101575906784 -11459.0,0.0539904507141557 -11460.0,0.05397180629307173 -11461.0,0.05395316831043072 -11462.0,0.053934536764009326 -11463.0,0.05391591165158489 -11464.0,0.05389729297093559 -11465.0,0.053878680719840366 -11466.0,0.05386007489607892 -11467.0,0.05384147549743168 -11468.0,0.05382288252167989 -11469.0,0.05380429596660555 -11470.0,0.05378571582999143 -11471.0,0.05376714210962102 -11472.0,0.053748574803278625 -11473.0,0.053730013908749305 -11474.0,0.053711459423818886 -11475.0,0.05369291134627397 -11476.0,0.05367436967390186 -11477.0,0.0536558344044907 -11478.0,0.053637305535829356 -11479.0,0.0536187830657075 -11480.0,0.05360026699191549 -11481.0,0.05358175731224451 -11482.0,0.0535632540244865 -11483.0,0.053544757126434174 -11484.0,0.05352626661588093 -11485.0,0.05350778249062102 -11486.0,0.053489304748449415 -11487.0,0.05347083338716189 -11488.0,0.05345236840455488 -11489.0,0.05343390979842569 -11490.0,0.05341545756657233 -11491.0,0.05339701170679359 -11492.0,0.05337857221688904 -11493.0,0.05336013909465893 -11494.0,0.05334171233790434 -11495.0,0.0533232919444271 -11496.0,0.05330487791202982 -11497.0,0.05328647023851579 -11498.0,0.05326806892168913 -11499.0,0.05324967395935469 -11500.0,0.053231285349318126 -11501.0,0.05321290308938575 -11502.0,0.05319452717736472 -11503.0,0.05317615761106292 -11504.0,0.05315779438828902 -11505.0,0.053139437506852384 -11506.0,0.05312108696456318 -11507.0,0.05310274275923233 -11508.0,0.05308440488867152 -11509.0,0.05306607335069314 -11510.0,0.05304774814311039 -11511.0,0.0530294292637372 -11512.0,0.053011116710388266 -11513.0,0.05299281048087906 -11514.0,0.05297451057302573 -11515.0,0.05295621698464526 -11516.0,0.052937929713555355 -11517.0,0.0529196487575745 -11518.0,0.052901374114521865 -11519.0,0.052883105782217436 -11520.0,0.052864843758481946 -11521.0,0.05284658804113688 -11522.0,0.05282833862800442 -11523.0,0.052810095516907574 -11524.0,0.05279185870567007 -11525.0,0.0527736281921164 -11526.0,0.05275540397407177 -11527.0,0.05273718604936217 -11528.0,0.05271897441581434 -11529.0,0.052700769071255774 -11530.0,0.05268257001351472 -11531.0,0.05266437724042012 -11532.0,0.05264619074980173 -11533.0,0.05262801053949004 -11534.0,0.052609836607316295 -11535.0,0.05259166895111245 -11536.0,0.052573507568711236 -11537.0,0.05255535245794615 -11538.0,0.052537203616651436 -11539.0,0.052519061042662026 -11540.0,0.05250092473381366 -11541.0,0.05248279468794282 -11542.0,0.052464670902886736 -11543.0,0.05244655337648333 -11544.0,0.052428442106571334 -11545.0,0.05241033709099022 -11546.0,0.052392238327580186 -11547.0,0.05237414581418216 -11548.0,0.052356059548637854 -11549.0,0.052337979528789706 -11550.0,0.052319905752480904 -11551.0,0.0523018382175554 -11552.0,0.05228377692185782 -11553.0,0.05226572186323361 -11554.0,0.05224767303952893 -11555.0,0.05222963044859071 -11556.0,0.05221159408826657 -11557.0,0.0521935639564049 -11558.0,0.05217554005085485 -11559.0,0.05215752236946632 -11560.0,0.05213951091008989 -11561.0,0.05212150567057695 -11562.0,0.0521035066487796 -11563.0,0.05208551384255071 -11564.0,0.052067527249743825 -11565.0,0.0520495468682133 -11566.0,0.05203157269581421 -11567.0,0.05201360473040236 -11568.0,0.05199564296983433 -11569.0,0.051977687411967365 -11570.0,0.051959738054659525 -11571.0,0.051941794895769576 -11572.0,0.051923857933157055 -11573.0,0.051905927164682175 -11574.0,0.05188800258820594 -11575.0,0.051870084201590075 -11576.0,0.05185217200269708 -11577.0,0.051834265989390116 -11578.0,0.05181636615953314 -11579.0,0.05179847251099084 -11580.0,0.05178058504162864 -11581.0,0.05176270374931268 -11582.0,0.05174482863190985 -11583.0,0.05172695968728779 -11584.0,0.051709096913314864 -11585.0,0.05169124030786019 -11586.0,0.051673389868793565 -11587.0,0.05165554559398559 -11588.0,0.05163770748130756 -11589.0,0.05161987552863155 -11590.0,0.05160204973383029 -11591.0,0.05158423009477731 -11592.0,0.051566416609346875 -11593.0,0.05154860927541397 -11594.0,0.05153080809085427 -11595.0,0.05151301305354425 -11596.0,0.05149522416136108 -11597.0,0.05147744141218272 -11598.0,0.05145966480388775 -11599.0,0.05144189433435559 -11600.0,0.05142413000146634 -11601.0,0.05140637180310087 -11602.0,0.05138861973714071 -11603.0,0.051370873801468195 -11604.0,0.05135313399396636 -11605.0,0.051335400312518986 -11606.0,0.05131767275501059 -11607.0,0.051299951319326346 -11608.0,0.05128223600335226 -11609.0,0.05126452680497501 -11610.0,0.05124682372208204 -11611.0,0.051229126752561464 -11612.0,0.05121143589430218 -11613.0,0.0511937511451938 -11614.0,0.05117607250312668 -11615.0,0.05115839996599185 -11616.0,0.05114073353168112 -11617.0,0.05112307319808702 -11618.0,0.05110541896310282 -11619.0,0.051087770824622444 -11620.0,0.05107012878054064 -11621.0,0.05105249282875283 -11622.0,0.05103486296715517 -11623.0,0.05101723919364457 -11624.0,0.05099962150611861 -11625.0,0.05098200990247563 -11626.0,0.05096440438061471 -11627.0,0.050946804938435654 -11628.0,0.05092921157383894 -11629.0,0.05091162428472582 -11630.0,0.050894043068998265 -11631.0,0.05087646792455899 -11632.0,0.05085889884931136 -11633.0,0.050841335841159525 -11634.0,0.050823778898008355 -11635.0,0.050806228017763466 -11636.0,0.0507886831983311 -11637.0,0.050771144437618335 -11638.0,0.050753611733532905 -11639.0,0.05073608508398332 -11640.0,0.050718564486878726 -11641.0,0.05070104994012907 -11642.0,0.050683541441645 -11643.0,0.050666038989337865 -11644.0,0.05064854258111979 -11645.0,0.05063105221490352 -11646.0,0.05061356788860261 -11647.0,0.050596089600131317 -11648.0,0.05057861734740462 -11649.0,0.050561151128338165 -11650.0,0.05054369094084838 -11651.0,0.05052623678285239 -11652.0,0.05050878865226807 -11653.0,0.05049134654701394 -11654.0,0.050473910465009306 -11655.0,0.050456480404174164 -11656.0,0.05043905636242926 -11657.0,0.050421638337696 -11658.0,0.05040422632789655 -11659.0,0.05038682033095378 -11660.0,0.05036942034479129 -11661.0,0.050352026367333415 -11662.0,0.05033463839650512 -11663.0,0.05031725643023219 -11664.0,0.050299880466441065 -11665.0,0.05028251050305896 -11666.0,0.0502651465380137 -11667.0,0.050247788569233925 -11668.0,0.05023043659464895 -11669.0,0.050213090612188836 -11670.0,0.0501957506197843 -11671.0,0.05017841661536681 -11672.0,0.050161088596868554 -11673.0,0.050143766562222455 -11674.0,0.05012645050936206 -11675.0,0.050109140436221736 -11676.0,0.050091836340736495 -11677.0,0.05007453822084212 -11678.0,0.050057246074475016 -11679.0,0.05003995989957239 -11680.0,0.05002267969407212 -11681.0,0.0500054054559128 -11682.0,0.04998813718303378 -11683.0,0.04997087487337502 -11684.0,0.04995361852487727 -11685.0,0.04993636813548199 -11686.0,0.04991912370313135 -11687.0,0.04990188522576816 -11688.0,0.04988465270133603 -11689.0,0.049867426127779245 -11690.0,0.04985020550304282 -11691.0,0.049832990825072414 -11692.0,0.04981578209181446 -11693.0,0.049798579301216096 -11694.0,0.04978138245122516 -11695.0,0.049764191539790156 -11696.0,0.049747006564860356 -11697.0,0.04972982752438572 -11698.0,0.049712654416316907 -11699.0,0.04969548723860532 -11700.0,0.04967832598920299 -11701.0,0.04966117066606273 -11702.0,0.04964402126713804 -11703.0,0.049626877790383134 -11704.0,0.04960974023375288 -11705.0,0.04959260859520291 -11706.0,0.04957548287268956 -11707.0,0.04955836306416986 -11708.0,0.04954124916760151 -11709.0,0.04952414118094296 -11710.0,0.04950703910215336 -11711.0,0.04948994292919257 -11712.0,0.049472852660021105 -11713.0,0.04945576829260024 -11714.0,0.049438689824891933 -11715.0,0.04942161725485887 -11716.0,0.049404550580464376 -11717.0,0.049387489799672536 -11718.0,0.04937043491044814 -11719.0,0.04935338591075664 -11720.0,0.049336342798564255 -11721.0,0.04931930557183782 -11722.0,0.04930227422854493 -11723.0,0.04928524876665388 -11724.0,0.04926822918413368 -11725.0,0.04925121547895396 -11726.0,0.04923420764908514 -11727.0,0.049217205692498316 -11728.0,0.04920020960716529 -11729.0,0.04918321939105851 -11730.0,0.0491662350421512 -11731.0,0.049149256558417245 -11732.0,0.04913228393783125 -11733.0,0.049115317178368464 -11734.0,0.04909835627800491 -11735.0,0.04908140123471726 -11736.0,0.049064452046482916 -11737.0,0.04904750871127997 -11738.0,0.04903057122708718 -11739.0,0.04901363959188403 -11740.0,0.04899671380365071 -11741.0,0.048979793860368125 -11742.0,0.04896287976001779 -11743.0,0.04894597150058201 -11744.0,0.04892906908004375 -11745.0,0.048912172496386686 -11746.0,0.04889528174759515 -11747.0,0.04887839683165422 -11748.0,0.04886151774654964 -11749.0,0.04884464449026788 -11750.0,0.04882777706079605 -11751.0,0.048810915456122 -11752.0,0.048794059674234266 -11753.0,0.048777209713122105 -11754.0,0.048760365570775385 -11755.0,0.04874352724518475 -11756.0,0.04872669473434151 -11757.0,0.048709868036237676 -11758.0,0.04869304714886596 -11759.0,0.048676232070219705 -11760.0,0.04865942279829302 -11761.0,0.04864261933108069 -11762.0,0.04862582166657819 -11763.0,0.04860902980278165 -11764.0,0.048592243737687946 -11765.0,0.04857546346929461 -11766.0,0.04855868899559991 -11767.0,0.048541920314602735 -11768.0,0.04852515742430271 -11769.0,0.04850840032270016 -11770.0,0.048491649007796095 -11771.0,0.04847490347759217 -11772.0,0.04845816373009078 -11773.0,0.048441429763295 -11774.0,0.04842470157520858 -11775.0,0.04840797916383601 -11776.0,0.04839126252718237 -11777.0,0.048374551663253516 -11778.0,0.04835784657005596 -11779.0,0.048341147245596926 -11780.0,0.04832445368788427 -11781.0,0.04830776589492658 -11782.0,0.04829108386473314 -11783.0,0.04827440759531392 -11784.0,0.04825773708467952 -11785.0,0.048241072330841295 -11786.0,0.04822441333181125 -11787.0,0.048207760085602125 -11788.0,0.04819111259022726 -11789.0,0.04817447084370074 -11790.0,0.04815783484403734 -11791.0,0.04814120458925252 -11792.0,0.04812458007736238 -11793.0,0.04810796130638375 -11794.0,0.048091348274334124 -11795.0,0.04807474097923171 -11796.0,0.048058139419095376 -11797.0,0.04804154359194465 -11798.0,0.04802495349579979 -11799.0,0.04800836912868171 -11800.0,0.04799179048861205 -11801.0,0.04797521757361305 -11802.0,0.047958650381707706 -11803.0,0.04794208891091966 -11804.0,0.04792553315927329 -11805.0,0.04790898312479356 -11806.0,0.0478924388055062 -11807.0,0.047875900199437584 -11808.0,0.047859367304614805 -11809.0,0.047842840119065574 -11810.0,0.04782631864081832 -11811.0,0.04780980286790217 -11812.0,0.047793292798346904 -11813.0,0.047776788430183015 -11814.0,0.0477602897614416 -11815.0,0.04774379679015453 -11816.0,0.04772730951435429 -11817.0,0.04771082793207411 -11818.0,0.0476943520413478 -11819.0,0.047677881840209935 -11820.0,0.04766141732669574 -11821.0,0.047644958498841136 -11822.0,0.04762850535468267 -11823.0,0.04761205789225761 -11824.0,0.0475956161096039 -11825.0,0.047579180004760184 -11826.0,0.04756274957576571 -11827.0,0.04754632482066045 -11828.0,0.04752990573748508 -11829.0,0.04751349232428092 -11830.0,0.047497084579089945 -11831.0,0.04748068249995484 -11832.0,0.047464286084918955 -11833.0,0.04744789533202633 -11834.0,0.04743151023932168 -11835.0,0.04741513080485033 -11836.0,0.04739875702665838 -11837.0,0.04738238890279253 -11838.0,0.04736602643130023 -11839.0,0.047349669610229496 -11840.0,0.047333318437629106 -11841.0,0.04731697291154848 -11842.0,0.04730063303003774 -11843.0,0.047284298791147615 -11844.0,0.04726797019292957 -11845.0,0.04725164723343572 -11846.0,0.04723532991071889 -11847.0,0.047219018222832476 -11848.0,0.04720271216783065 -11849.0,0.047186411743768225 -11850.0,0.04717011694870066 -11851.0,0.04715382778068414 -11852.0,0.047137544237775435 -11853.0,0.04712126631803206 -11854.0,0.04710499401951218 -11855.0,0.04708872734027466 -11856.0,0.04707246627837894 -11857.0,0.04705621083188523 -11858.0,0.04703996099885437 -11859.0,0.047023716777347895 -11860.0,0.04700747816542795 -11861.0,0.046991245161157394 -11862.0,0.04697501776259976 -11863.0,0.04695879596781926 -11864.0,0.0469425797748807 -11865.0,0.04692636918184964 -11866.0,0.046910164186792266 -11867.0,0.04689396478777546 -11868.0,0.04687777098286671 -11869.0,0.04686158277013425 -11870.0,0.04684540014764692 -11871.0,0.04682922311347426 -11872.0,0.0468130516656865 -11873.0,0.04679688580235445 -11874.0,0.04678072552154966 -11875.0,0.04676457082134434 -11876.0,0.04674842169981136 -11877.0,0.046732278155024204 -11878.0,0.0467161401850571 -11879.0,0.046700007787984894 -11880.0,0.04668388096188313 -11881.0,0.04666775970482796 -11882.0,0.04665164401489626 -11883.0,0.046635533890165524 -11884.0,0.04661942932871398 -11885.0,0.04660333032862041 -11886.0,0.046587236887964345 -11887.0,0.04657114900482596 -11888.0,0.04655506667728609 -11889.0,0.04653898990342624 -11890.0,0.04652291868132854 -11891.0,0.046506853009075824 -11892.0,0.046490792884751574 -11893.0,0.04647473830643995 -11894.0,0.04645868927222573 -11895.0,0.04644264578019439 -11896.0,0.046426607828432075 -11897.0,0.04641057541502557 -11898.0,0.046394548538062304 -11899.0,0.0463785271956304 -11900.0,0.04636251138581862 -11901.0,0.04634650110671643 -11902.0,0.046330496356413876 -11903.0,0.04631449713300173 -11904.0,0.04629850343457139 -11905.0,0.04628251525921496 -11906.0,0.04626653260502511 -11907.0,0.04625055547009527 -11908.0,0.046234583852519454 -11909.0,0.04621861775039239 -11910.0,0.04620265716180944 -11911.0,0.046186702084866596 -11912.0,0.04617075251766055 -11913.0,0.04615480845828863 -11914.0,0.046138869904848855 -11915.0,0.04612293685543982 -11916.0,0.046107009308160855 -11917.0,0.04609108726111192 -11918.0,0.04607517071239365 -11919.0,0.04605925966010728 -11920.0,0.04604335410235475 -11921.0,0.046027454037238645 -11922.0,0.046011559462862235 -11923.0,0.04599567037732935 -11924.0,0.045979786778744584 -11925.0,0.04596390866521312 -11926.0,0.04594803603484082 -11927.0,0.045932168885734224 -11928.0,0.04591630721600044 -11929.0,0.045900451023747325 -11930.0,0.045884600307083336 -11931.0,0.045868755064117625 -11932.0,0.045852915292959935 -11933.0,0.0458370809917207 -11934.0,0.045821252158511024 -11935.0,0.04580542879144265 -11936.0,0.04578961088862793 -11937.0,0.045773798448179914 -11938.0,0.04575799146821231 -11939.0,0.045742189946839464 -11940.0,0.04572639388217634 -11941.0,0.045710603272338605 -11942.0,0.04569481811544254 -11943.0,0.04567903840960513 -11944.0,0.045663264152943916 -11945.0,0.04564749534357717 -11946.0,0.045631731979623794 -11947.0,0.04561597405920332 -11948.0,0.04560022158043597 -11949.0,0.04558447454144255 -11950.0,0.045568732940344574 -11951.0,0.04555299677526418 -11952.0,0.045537266044324176 -11953.0,0.045521540745647966 -11954.0,0.04550582087735965 -11955.0,0.04549010643758398 -11956.0,0.04547439742444633 -11957.0,0.04545869383607271 -11958.0,0.04544299567058981 -11959.0,0.04542730292612496 -11960.0,0.045411615600806136 -11961.0,0.045395933692761924 -11962.0,0.04538025720012161 -11963.0,0.045364586121015085 -11964.0,0.04534892045357293 -11965.0,0.045333260195926345 -11966.0,0.045317605346207136 -11967.0,0.045301955902547826 -11968.0,0.045286311863081546 -11969.0,0.04527067322594209 -11970.0,0.04525503998926385 -11971.0,0.04523941215118191 -11972.0,0.04522378970983198 -11973.0,0.04520817266335044 -11974.0,0.04519256100987425 -11975.0,0.04517695474754108 -11976.0,0.04516135387448922 -11977.0,0.0451457583888576 -11978.0,0.045130168288785764 -11979.0,0.04511458357241395 -11980.0,0.045099004237883 -11981.0,0.045083430283334454 -11982.0,0.045067861706910406 -11983.0,0.045052298506753644 -11984.0,0.04503674068100761 -11985.0,0.04502118822781636 -11986.0,0.04500564114532462 -11987.0,0.0449900994316777 -11988.0,0.0449745630850216 -11989.0,0.04495903210350296 -11990.0,0.044943506485269055 -11991.0,0.044927986228467755 -11992.0,0.04491247133124763 -11993.0,0.04489696179175786 -11994.0,0.04488145760814829 -11995.0,0.04486595877856935 -11996.0,0.04485046530117216 -11997.0,0.04483497717410846 -11998.0,0.04481949439553066 -11999.0,0.044804016963591715 -12000.0,0.04478854487644532 -12001.0,0.04477307813224576 -12002.0,0.044757616729147964 -12003.0,0.04474216066530752 -12004.0,0.044726709938880595 -12005.0,0.04471126454802405 -12006.0,0.04469582449089536 -12007.0,0.04468038976565266 -12008.0,0.044664960370454664 -12009.0,0.04464953630346077 -12010.0,0.044634117562831 -12011.0,0.04461870414672603 -12012.0,0.04460329605330712 -12013.0,0.044587893280736215 -12014.0,0.044572495827175866 -12015.0,0.0445571036907893 -12016.0,0.04454171686974031 -12017.0,0.044526335362193366 -12018.0,0.04451095916631358 -12019.0,0.044495588280266694 -12020.0,0.04448022270221904 -12021.0,0.044464862430337634 -12022.0,0.04444950746279011 -12023.0,0.044434157797744726 -12024.0,0.04441881343337041 -12025.0,0.044403474367836634 -12026.0,0.0443881405993136 -12027.0,0.044372812125972085 -12028.0,0.04435748894598354 -12029.0,0.04434217105751999 -12030.0,0.04432685845875412 -12031.0,0.04431155114785927 -12032.0,0.044296249123009404 -12033.0,0.04428095238237906 -12034.0,0.04426566092414346 -12035.0,0.044250374746478464 -12036.0,0.044235093847560546 -12037.0,0.04421981822556677 -12038.0,0.04420454787867489 -12039.0,0.04418928280506325 -12040.0,0.044174023002910866 -12041.0,0.04415876847039735 -12042.0,0.04414351920570292 -12043.0,0.04412827520700847 -12044.0,0.04411303647249549 -12045.0,0.044097803000346145 -12046.0,0.04408257478874314 -12047.0,0.04406735183586989 -12048.0,0.04405213413991041 -12049.0,0.044036921699049346 -12050.0,0.04402171451147194 -12051.0,0.044006512575364094 -12052.0,0.043991315888912336 -12053.0,0.04397612445030383 -12054.0,0.0439609382577263 -12055.0,0.04394575730936817 -12056.0,0.043930581603418464 -12057.0,0.04391541113806686 -12058.0,0.04390024591150357 -12059.0,0.04388508592191954 -12060.0,0.043869931167506274 -12061.0,0.043854781646455926 -12062.0,0.04383963735696129 -12063.0,0.043824498297215714 -12064.0,0.04380936446541325 -12065.0,0.043794235859748544 -12066.0,0.04377911247841687 -12067.0,0.04376399431961409 -12068.0,0.043748881381536736 -12069.0,0.043733773662381945 -12070.0,0.04371867116034749 -12071.0,0.043703573873631725 -12072.0,0.04368848180043366 -12073.0,0.04367339493895293 -12074.0,0.0436583132873898 -12075.0,0.04364323684394509 -12076.0,0.04362816560682032 -12077.0,0.043613099574217606 -12078.0,0.04359803874433967 -12079.0,0.04358298311538989 -12080.0,0.04356793268557219 -12081.0,0.0435528874530912 -12082.0,0.043537847416152124 -12083.0,0.04352281257296082 -12084.0,0.04350778292172369 -12085.0,0.04349275846064783 -12086.0,0.04347773918794094 -12087.0,0.043462725101811345 -12088.0,0.04344771620046793 -12089.0,0.04343271248212027 -12090.0,0.04341771394497853 -12091.0,0.0434027205872535 -12092.0,0.043387732407156564 -12093.0,0.04337274940289974 -12094.0,0.043357771572695686 -12095.0,0.04334279891475766 -12096.0,0.04332783142729949 -12097.0,0.043312869108535705 -12098.0,0.04329791195668139 -12099.0,0.04328295996995227 -12100.0,0.043268013146564706 -12101.0,0.04325307148473561 -12102.0,0.043238134982682565 -12103.0,0.04322320363862377 -12104.0,0.04320827745077802 -12105.0,0.043193356417364714 -12106.0,0.04317844053660389 -12107.0,0.0431635298067162 -12108.0,0.04314862422592291 -12109.0,0.04313372379244586 -12110.0,0.04311882850450755 -12111.0,0.0431039383603311 -12112.0,0.04308905335814022 -12113.0,0.04307417349615921 -12114.0,0.04305929877261304 -12115.0,0.04304442918572725 -12116.0,0.04302956473372801 -12117.0,0.04301470541484211 -12118.0,0.04299985122729692 -12119.0,0.04298500216932046 -12120.0,0.04297015823914134 -12121.0,0.0429553194349888 -12122.0,0.042940485755092656 -12123.0,0.04292565719768336 -12124.0,0.042910833760991994 -12125.0,0.04289601544325023 -12126.0,0.042881202242690326 -12127.0,0.04286639415754519 -12128.0,0.04285159118604832 -12129.0,0.04283679332643384 -12130.0,0.04282200057693647 -12131.0,0.042807212935791525 -12132.0,0.04279243040123497 -12133.0,0.04277765297150336 -12134.0,0.04276288064483383 -12135.0,0.04274811341946416 -12136.0,0.04273335129363273 -12137.0,0.04271859426557853 -12138.0,0.042703842333541166 -12139.0,0.042689095495760804 -12140.0,0.04267435375047828 -12141.0,0.042659617095935 -12142.0,0.04264488553037302 -12143.0,0.04263015905203492 -12144.0,0.04261543765916397 -12145.0,0.042600721350004006 -12146.0,0.04258601012279951 -12147.0,0.042571303975795484 -12148.0,0.042556602907237624 -12149.0,0.04254190691537219 -12150.0,0.0425272159984461 -12151.0,0.04251253015470677 -12152.0,0.04249784938240231 -12153.0,0.04248317367978142 -12154.0,0.04246850304509339 -12155.0,0.042453837476588145 -12156.0,0.04243917697251614 -12157.0,0.042424521531128516 -12158.0,0.04240987115067697 -12159.0,0.04239522582941386 -12160.0,0.04238058556559205 -12161.0,0.042365950357465085 -12162.0,0.04235132020328709 -12163.0,0.04233669510131283 -12164.0,0.042322075049797576 -12165.0,0.04230746004699729 -12166.0,0.04229285009116852 -12167.0,0.042278245180568406 -12168.0,0.042263645313454654 -12169.0,0.04224905048808564 -12170.0,0.04223446070272029 -12171.0,0.04221987595561818 -12172.0,0.04220529624503941 -12173.0,0.04219072156924475 -12174.0,0.04217615192649555 -12175.0,0.042161587315053754 -12176.0,0.04214702773318193 -12177.0,0.04213247317914318 -12178.0,0.04211792365120128 -12179.0,0.042103379147620586 -12180.0,0.042088839666666045 -12181.0,0.04207430520660318 -12182.0,0.042059775765698144 -12183.0,0.04204525134221769 -12184.0,0.04203073193442917 -12185.0,0.04201621754060049 -12186.0,0.04200170815900021 -12187.0,0.04198720378789746 -12188.0,0.04197270442556201 -12189.0,0.04195821007026414 -12190.0,0.041943720720274795 -12191.0,0.0419292363738655 -12192.0,0.0419147570293084 -12193.0,0.04190028268487621 -12194.0,0.04188581333884222 -12195.0,0.041871348989480354 -12196.0,0.04185688963506513 -12197.0,0.04184243527387166 -12198.0,0.04182798590417561 -12199.0,0.0418135415242533 -12200.0,0.041799102132381624 -12201.0,0.04178466772683807 -12202.0,0.0417702383059007 -12203.0,0.0417558138678482 -12204.0,0.04174139441095983 -12205.0,0.041726979933515485 -12206.0,0.04171257043379559 -12207.0,0.0416981659100812 -12208.0,0.04168376636065397 -12209.0,0.04166937178379616 -12210.0,0.041654982177790546 -12211.0,0.0416405975409206 -12212.0,0.04162621787147032 -12213.0,0.04161184316772432 -12214.0,0.041597473427967824 -12215.0,0.04158310865048659 -12216.0,0.041568748833567024 -12217.0,0.041554393975496096 -12218.0,0.041540044074561404 -12219.0,0.041525699129051075 -12220.0,0.041511359137253866 -12221.0,0.04149702409745914 -12222.0,0.04148269400795683 -12223.0,0.04146836886703743 -12224.0,0.041454048672992086 -12225.0,0.04143973342411249 -12226.0,0.041425423118690956 -12227.0,0.041411117755020335 -12228.0,0.04139681733139412 -12229.0,0.04138252184610638 -12230.0,0.041368231297451756 -12231.0,0.041353945683725524 -12232.0,0.04133966500322346 -12233.0,0.04132538925424201 -12234.0,0.04131111843507819 -12235.0,0.041296852544029594 -12236.0,0.04128259157939439 -12237.0,0.041268335539471346 -12238.0,0.04125408442255984 -12239.0,0.04123983822695982 -12240.0,0.04122559695097179 -12241.0,0.04121136059289689 -12242.0,0.04119712915103682 -12243.0,0.041182902623693896 -12244.0,0.041168681009170954 -12245.0,0.041154464305771486 -12246.0,0.04114025251179954 -12247.0,0.04112604562555977 -12248.0,0.04111184364535736 -12249.0,0.04109764656949814 -12250.0,0.041083454396288493 -12251.0,0.041069267124035407 -12252.0,0.04105508475104645 -12253.0,0.04104090727562975 -12254.0,0.041026734696094046 -12255.0,0.041012567010748645 -12256.0,0.040998404217903475 -12257.0,0.04098424631586897 -12258.0,0.04097009330295623 -12259.0,0.04095594517747689 -12260.0,0.0409418019377432 -12261.0,0.04092766358206795 -12262.0,0.04091353010876455 -12263.0,0.040899401516146974 -12264.0,0.040885277802529804 -12265.0,0.04087115896622815 -12266.0,0.04085704500555776 -12267.0,0.040842935918834936 -12268.0,0.04082883170437657 -12269.0,0.040814732360500136 -12270.0,0.04080063788552367 -12271.0,0.040786548277765816 -12272.0,0.040772463535545776 -12273.0,0.04075838365718337 -12274.0,0.04074430864099894 -12275.0,0.040730238485313444 -12276.0,0.040716173188448425 -12277.0,0.04070211274872601 -12278.0,0.040688057164468855 -12279.0,0.04067400643400025 -12280.0,0.04065996055564405 -12281.0,0.040645919527724686 -12282.0,0.04063188334856715 -12283.0,0.040617852016497036 -12284.0,0.0406038255298405 -12285.0,0.040589803886924326 -12286.0,0.040575787086075774 -12287.0,0.04056177512562277 -12288.0,0.0405477680038938 -12289.0,0.04053376571921789 -12290.0,0.04051976826992472 -12291.0,0.040505775654344434 -12292.0,0.040491787870807844 -12293.0,0.040477804917646305 -12294.0,0.04046382679319178 -12295.0,0.04044985349577673 -12296.0,0.040435885023734276 -12297.0,0.04042192137539807 -12298.0,0.04040796254910238 -12299.0,0.040394008543181974 -12300.0,0.040380059355972255 -12301.0,0.0403661149858092 -12302.0,0.04035217543102935 -12303.0,0.040338240689969794 -12304.0,0.040324310760968235 -12305.0,0.04031038564236293 -12306.0,0.04029646533249272 -12307.0,0.04028254982969702 -12308.0,0.040268639132315785 -12309.0,0.04025473323868959 -12310.0,0.04024083214715956 -12311.0,0.04022693585606741 -12312.0,0.04021304436375538 -12313.0,0.04019915766856635 -12314.0,0.04018527576884371 -12315.0,0.040171398662931485 -12316.0,0.0401575263491742 -12317.0,0.040143658825917014 -12318.0,0.040129796091505625 -12319.0,0.04011593814428632 -12320.0,0.04010208498260592 -12321.0,0.04008823660481187 -12322.0,0.04007439300925214 -12323.0,0.04006055419427533 -12324.0,0.04004672015823051 -12325.0,0.04003289089946742 -12326.0,0.04001906641633632 -12327.0,0.040005246707188045 -12328.0,0.039991431770374036 -12329.0,0.03997762160424623 -12330.0,0.039963816207157186 -12331.0,0.03995001557746002 -12332.0,0.039936219713508456 -12333.0,0.03992242861365669 -12334.0,0.03990864227625957 -12335.0,0.03989486069967249 -12336.0,0.03988108388225142 -12337.0,0.039867311822352855 -12338.0,0.0398535445183339 -12339.0,0.03983978196855223 -12340.0,0.03982602417136607 -12341.0,0.0398122711251342 -12342.0,0.039798522828215985 -12343.0,0.039784779278971366 -12344.0,0.03977104047576083 -12345.0,0.03975730641694545 -12346.0,0.03974357710088683 -12347.0,0.03972985252594717 -12348.0,0.039716132690489236 -12349.0,0.03970241759287637 -12350.0,0.039688707231472414 -12351.0,0.03967500160464185 -12352.0,0.0396613007107497 -12353.0,0.039647604548161554 -12354.0,0.03963391311524353 -12355.0,0.03962022641036236 -12356.0,0.03960654443188531 -12357.0,0.039592867178180245 -12358.0,0.039579194647615536 -12359.0,0.03956552683856016 -12360.0,0.03955186374938365 -12361.0,0.03953820537845612 -12362.0,0.03952455172414819 -12363.0,0.03951090278483109 -12364.0,0.03949725855887661 -12365.0,0.03948361904465709 -12366.0,0.039469984240545444 -12367.0,0.039456354144915114 -12368.0,0.03944272875614015 -12369.0,0.03942910807259513 -12370.0,0.03941549209265523 -12371.0,0.03940188081469613 -12372.0,0.039388274237094116 -12373.0,0.03937467235822603 -12374.0,0.03936107517646928 -12375.0,0.03934748269020179 -12376.0,0.03933389489780208 -12377.0,0.03932031179764924 -12378.0,0.03930673338812292 -12379.0,0.03929315966760327 -12380.0,0.039279590634471076 -12381.0,0.03926602628710764 -12382.0,0.039252466623894845 -12383.0,0.03923891164321513 -12384.0,0.03922536134345145 -12385.0,0.039211815722987375 -12386.0,0.03919827478020701 -12387.0,0.039184738513495035 -12388.0,0.039171206921236636 -12389.0,0.039157680001817616 -12390.0,0.03914415775362431 -12391.0,0.03913064017504363 -12392.0,0.03911712726446299 -12393.0,0.03910361902027041 -12394.0,0.039090115440854466 -12395.0,0.03907661652460429 -12396.0,0.03906312226990954 -12397.0,0.03904963267516044 -12398.0,0.0390361477387478 -12399.0,0.03902266745906298 -12400.0,0.03900919183449784 -12401.0,0.038995720863444855 -12402.0,0.03898225454429704 -12403.0,0.038968792875447966 -12404.0,0.038955335855291755 -12405.0,0.038941883482223064 -12406.0,0.038928435754637135 -12407.0,0.03891499267092975 -12408.0,0.038901554229497266 -12409.0,0.03888812042873654 -12410.0,0.038874691267045035 -12411.0,0.03886126674282075 -12412.0,0.038847846854462256 -12413.0,0.03883443160036862 -12414.0,0.03882102097893952 -12415.0,0.03880761498857516 -12416.0,0.038794213627676336 -12417.0,0.03878081689464432 -12418.0,0.03876742478788099 -12419.0,0.038754037305788774 -12420.0,0.03874065444677064 -12421.0,0.038727276209230124 -12422.0,0.03871390259157127 -12423.0,0.03870053359219872 -12424.0,0.038687169209517654 -12425.0,0.03867380944193381 -12426.0,0.038660454287853425 -12427.0,0.03864710374568336 -12428.0,0.03863375781383098 -12429.0,0.038620416490704225 -12430.0,0.038607079774711554 -12431.0,0.038593747664262004 -12432.0,0.038580420157765145 -12433.0,0.03856709725363113 -12434.0,0.03855377895027059 -12435.0,0.03854046524609477 -12436.0,0.03852715613951545 -12437.0,0.03851385162894496 -12438.0,0.03850055171279613 -12439.0,0.0384872563894824 -12440.0,0.03847396565741774 -12441.0,0.038460679515016645 -12442.0,0.03844739796069421 -12443.0,0.03843412099286601 -12444.0,0.0384208486099482 -12445.0,0.038407580810357486 -12446.0,0.03839431759251114 -12447.0,0.03838105895482693 -12448.0,0.038367804895723195 -12449.0,0.03835455541361883 -12450.0,0.0383413105069333 -12451.0,0.03832807017408652 -12452.0,0.03831483441349906 -12453.0,0.03830160322359198 -12454.0,0.03828837660278691 -12455.0,0.03827515454950598 -12456.0,0.03826193706217191 -12457.0,0.03824872413920795 -12458.0,0.038235515779037894 -12459.0,0.038222311980086104 -12460.0,0.03820911274077742 -12461.0,0.038195918059537294 -12462.0,0.038182727934791695 -12463.0,0.03816954236496715 -12464.0,0.03815636134849069 -12465.0,0.03814318488378992 -12466.0,0.038130012969293 -12467.0,0.038116845603428616 -12468.0,0.03810368278462598 -12469.0,0.03809052451131487 -12470.0,0.038077370781925614 -12471.0,0.038064221594889064 -12472.0,0.0380510769486366 -12473.0,0.03803793684160017 -12474.0,0.038024801272212264 -12475.0,0.038011670238905906 -12476.0,0.03799854374011464 -12477.0,0.03798542177427258 -12478.0,0.037972304339814376 -12479.0,0.03795919143517521 -12480.0,0.03794608305879083 -12481.0,0.03793297920909746 -12482.0,0.03791987988453193 -12483.0,0.03790678508353158 -12484.0,0.03789369480453433 -12485.0,0.03788060904597854 -12486.0,0.03786752780630322 -12487.0,0.03785445108394786 -12488.0,0.03784137887735252 -12489.0,0.037828311184957754 -12490.0,0.03781524800520469 -12491.0,0.03780218933653499 -12492.0,0.03778913517739087 -12493.0,0.03777608552621502 -12494.0,0.03776304038145074 -12495.0,0.037749999741541834 -12496.0,0.03773696360493265 -12497.0,0.037723931970068084 -12498.0,0.037710904835393536 -12499.0,0.037697882199354965 -12500.0,0.03768486406039888 -12501.0,0.03767185041697231 -12502.0,0.03765884126752281 -12503.0,0.03764583661049849 -12504.0,0.037632836444347985 -12505.0,0.03761984076752049 -12506.0,0.03760684957846569 -12507.0,0.037593862875633835 -12508.0,0.03758088065747572 -12509.0,0.03756790292244266 -12510.0,0.037554929668986485 -12511.0,0.03754196089555959 -12512.0,0.03752899660061491 -12513.0,0.03751603678260589 -12514.0,0.03750308143998651 -12515.0,0.037490130571211304 -12516.0,0.03747718417473531 -12517.0,0.03746424224901414 -12518.0,0.037451304792503914 -12519.0,0.03743837180366127 -12520.0,0.0374254432809434 -12521.0,0.037412519222808034 -12522.0,0.03739959962771345 -12523.0,0.03738668449411838 -12524.0,0.03737377382048218 -12525.0,0.037360867605264685 -12526.0,0.03734796584692631 -12527.0,0.03733506854392792 -12528.0,0.03732217569473099 -12529.0,0.03730928729779749 -12530.0,0.03729640335158995 -12531.0,0.037283523854571364 -12532.0,0.037270648805205336 -12533.0,0.03725777820195596 -12534.0,0.03724491204328786 -12535.0,0.037232050327666216 -12536.0,0.03721919305355669 -12537.0,0.037206340219425524 -12538.0,0.037193491823739454 -12539.0,0.03718064786496579 -12540.0,0.0371678083415723 -12541.0,0.037154973252027344 -12542.0,0.03714214259479979 -12543.0,0.03712931636835905 -12544.0,0.03711649457117501 -12545.0,0.037103677201718144 -12546.0,0.037090864258459436 -12547.0,0.03707805573987041 -12548.0,0.037065251644423064 -12549.0,0.037052451970589984 -12550.0,0.03703965671684427 -12551.0,0.03702686588165954 -12552.0,0.03701407946350992 -12553.0,0.03700129746087011 -12554.0,0.036988519872215284 -12555.0,0.03697574669602119 -12556.0,0.03696297793076409 -12557.0,0.03695021357492073 -12558.0,0.03693745362696844 -12559.0,0.03692469808538504 -12560.0,0.03691194694864891 -12561.0,0.036899200215238896 -12562.0,0.03688645788363442 -12563.0,0.03687371995231542 -12564.0,0.03686098641976237 -12565.0,0.03684825728445622 -12566.0,0.03683553254487849 -12567.0,0.03682281219951121 -12568.0,0.036810096246836954 -12569.0,0.03679738468533877 -12570.0,0.03678467751350028 -12571.0,0.036771974729805604 -12572.0,0.0367592763327394 -12573.0,0.036746582320786855 -12574.0,0.03673389269243363 -12575.0,0.036721207446165964 -12576.0,0.03670852658047061 -12577.0,0.03669585009383483 -12578.0,0.036683177984746386 -12579.0,0.036670510251693614 -12580.0,0.036657846893165334 -12581.0,0.03664518790765092 -12582.0,0.03663253329364022 -12583.0,0.03661988304962364 -12584.0,0.036607237174092096 -12585.0,0.03659459566553705 -12586.0,0.03658195852245043 -12587.0,0.03656932574332473 -12588.0,0.03655669732665295 -12589.0,0.036544073270928616 -12590.0,0.03653145357464578 -12591.0,0.03651883823629898 -12592.0,0.03650622725438331 -12593.0,0.03649362062739438 -12594.0,0.03648101835382831 -12595.0,0.03646842043218172 -12596.0,0.036455826860951786 -12597.0,0.03644323763863618 -12598.0,0.03643065276373313 -12599.0,0.036418072234741306 -12600.0,0.03640549605015997 -12601.0,0.03639292420848886 -12602.0,0.03638035670822827 -12603.0,0.03636779354787897 -12604.0,0.03635523472594226 -12605.0,0.036342680240919974 -12606.0,0.03633013009131447 -12607.0,0.03631758427562858 -12608.0,0.0363050427923657 -12609.0,0.0362925056400297 -12610.0,0.036279972817125 -12611.0,0.03626744432215655 -12612.0,0.03625492015362975 -12613.0,0.03624240031005058 -12614.0,0.03622988478992552 -12615.0,0.036217373591761554 -12616.0,0.036204866714066176 -12617.0,0.03619236415534741 -12618.0,0.036179865914113804 -12619.0,0.03616737198887442 -12620.0,0.036154882378138783 -12621.0,0.036142397080417 -12622.0,0.03612991609421966 -12623.0,0.036117439418057895 -12624.0,0.03610496705044329 -12625.0,0.036092498989888 -12626.0,0.036080035234904675 -12627.0,0.03606757578400649 -12628.0,0.03605512063570712 -12629.0,0.03604266978852075 -12630.0,0.03603022324096208 -12631.0,0.03601778099154633 -12632.0,0.03600534303878926 -12633.0,0.03599290938120706 -12634.0,0.035980480017316525 -12635.0,0.0359680549456349 -12636.0,0.03595563416468 -12637.0,0.035943217672970075 -12638.0,0.03593080546902394 -12639.0,0.03591839755136091 -12640.0,0.03590599391850084 -12641.0,0.03589359456896403 -12642.0,0.03588119950127133 -12643.0,0.035868808713944114 -12644.0,0.03585642220550426 -12645.0,0.035844039974474114 -12646.0,0.03583166201937659 -12647.0,0.035819288338735086 -12648.0,0.03580691893107351 -12649.0,0.0357945537949163 -12650.0,0.03578219292878835 -12651.0,0.03576983633121512 -12652.0,0.03575748400072255 -12653.0,0.03574513593583712 -12654.0,0.03573279213508576 -12655.0,0.035720452596995966 -12656.0,0.03570811732009571 -12657.0,0.035695786302913514 -12658.0,0.035683459543978335 -12659.0,0.0356711370418197 -12660.0,0.03565881879496763 -12661.0,0.035646504801952646 -12662.0,0.035634195061305766 -12663.0,0.035621889571558533 -12664.0,0.035609588331243 -12665.0,0.03559729133889171 -12666.0,0.035584998593037744 -12667.0,0.03557271009221463 -12668.0,0.035560425834956465 -12669.0,0.03554814581979781 -12670.0,0.035535870045273775 -12671.0,0.03552359850991992 -12672.0,0.03551133121227235 -12673.0,0.035499068150867674 -12674.0,0.035486809324243 -12675.0,0.03547455473093592 -12676.0,0.03546230436948457 -12677.0,0.035450058238427555 -12678.0,0.03543781633630403 -12679.0,0.035425578661653585 -12680.0,0.03541334521301638 -12681.0,0.03540111598893305 -12682.0,0.035388890987944746 -12683.0,0.03537667020859309 -12684.0,0.03536445364942025 -12685.0,0.03535224130896888 -12686.0,0.035340033185782126 -12687.0,0.03532782927840367 -12688.0,0.03531562958537765 -12689.0,0.03530343410524874 -12690.0,0.03529124283656211 -12691.0,0.035279055777863444 -12692.0,0.03526687292769889 -12693.0,0.035254694284615126 -12694.0,0.03524251984715934 -12695.0,0.035230349613879226 -12696.0,0.03521818358332293 -12697.0,0.03520602175403915 -12698.0,0.035193864124577055 -12699.0,0.035181710693486364 -12700.0,0.035169561459317225 -12701.0,0.03515741642062033 -12702.0,0.03514527557594687 -12703.0,0.03513313892384853 -12704.0,0.03512100646287751 -12705.0,0.03510887819158647 -12706.0,0.03509675410852861 -12707.0,0.03508463421225761 -12708.0,0.03507251850132768 -12709.0,0.035060406974293454 -12710.0,0.03504829962971015 -12711.0,0.03503619646613344 -12712.0,0.03502409748211953 -12713.0,0.03501200267622506 -12714.0,0.034999912047007226 -12715.0,0.0349878255930237 -12716.0,0.03497574331283267 -12717.0,0.03496366520499279 -12718.0,0.034951591268063235 -12719.0,0.03493952150060368 -12720.0,0.03492745590117429 -12721.0,0.03491539446833571 -12722.0,0.034903337200649115 -12723.0,0.034891284096676155 -12724.0,0.03487923515497898 -12725.0,0.03486719037412026 -12726.0,0.03485514975266311 -12727.0,0.03484311328917118 -12728.0,0.03483108098220862 -12729.0,0.03481905283034007 -12730.0,0.034807028832130625 -12731.0,0.03479500898614594 -12732.0,0.034782993290952115 -12733.0,0.034770981745115795 -12734.0,0.034758974347204055 -12735.0,0.034746971095784514 -12736.0,0.034734971989425274 -12737.0,0.03472297702669494 -12738.0,0.03471098620616258 -12739.0,0.03469899952639778 -12740.0,0.034687016985970626 -12741.0,0.03467503858345168 -12742.0,0.03466306431741203 -12743.0,0.0346510941864232 -12744.0,0.03463912818905725 -12745.0,0.034627166323886724 -12746.0,0.03461520858948468 -12747.0,0.03460325498442461 -12748.0,0.03459130550728057 -12749.0,0.03457936015662705 -12750.0,0.03456741893103908 -12751.0,0.034555481829092134 -12752.0,0.03454354884936222 -12753.0,0.03453161999042581 -12754.0,0.0345196952508599 -12755.0,0.03450777462924192 -12756.0,0.034495858124149854 -12757.0,0.034483945734162136 -12758.0,0.03447203745785773 -12759.0,0.034460133293816024 -12760.0,0.03444823324061696 -12761.0,0.03443633729684095 -12762.0,0.034424445461068896 -12763.0,0.0344125577318822 -12764.0,0.03440067410786271 -12765.0,0.034388794587592815 -12766.0,0.03437691916965538 -12767.0,0.03436504785263376 -12768.0,0.03435318063511176 -12769.0,0.034341317515673736 -12770.0,0.0343294584929045 -12771.0,0.03431760356538937 -12772.0,0.0343057527317141 -12773.0,0.03429390599046501 -12774.0,0.03428206334022885 -12775.0,0.03427022477959289 -12776.0,0.03425839030714487 -12777.0,0.03424655992147302 -12778.0,0.034234733621166066 -12779.0,0.03422291140481321 -12780.0,0.034211093271004175 -12781.0,0.03419927921832911 -12782.0,0.034187469245378695 -12783.0,0.03417566335074409 -12784.0,0.034163861533016954 -12785.0,0.034152063790789375 -12786.0,0.034140270122654 -12787.0,0.03412848052720392 -12788.0,0.03411669500303274 -12789.0,0.0341049135487345 -12790.0,0.034093136162903784 -12791.0,0.034081362844135626 -12792.0,0.034069593591025564 -12793.0,0.034057828402169595 -12794.0,0.03404606727616423 -12795.0,0.034034310211606446 -12796.0,0.03402255720709373 -12797.0,0.03401080826122401 -12798.0,0.03399906337259573 -12799.0,0.03398732253980781 -12800.0,0.033975585761459655 -12801.0,0.03396385303615117 -12802.0,0.0339521243624827 -12803.0,0.0339403997390551 -12804.0,0.033928679164469726 -12805.0,0.0339169626373284 -12806.0,0.03390525015623341 -12807.0,0.03389354171978755 -12808.0,0.033881837326594076 -12809.0,0.03387013697525678 -12810.0,0.033858440664379846 -12811.0,0.03384674839256801 -12812.0,0.033835060158426467 -12813.0,0.03382337596056092 -12814.0,0.033811695797577486 -12815.0,0.03380001966808283 -12816.0,0.03378834757068408 -12817.0,0.03377667950398883 -12818.0,0.03376501546660518 -12819.0,0.03375335545714167 -12820.0,0.033741699474207354 -12821.0,0.033730047516411774 -12822.0,0.03371839958236493 -12823.0,0.033706755670677296 -12824.0,0.033695115779959844 -12825.0,0.033683479908824025 -12826.0,0.033671848055881776 -12827.0,0.03366022021974547 -12828.0,0.03364859639902801 -12829.0,0.03363697659234276 -12830.0,0.03362536079830357 -12831.0,0.03361374901552474 -12832.0,0.03360214124262107 -12833.0,0.03359053747820785 -12834.0,0.03357893772090085 -12835.0,0.03356734196931627 -12836.0,0.033555750222070836 -12837.0,0.03354416247778173 -12838.0,0.03353257873506663 -12839.0,0.033520998992543696 -12840.0,0.033509423248831514 -12841.0,0.03349785150254919 -12842.0,0.03348628375231631 -12843.0,0.033474719996752944 -12844.0,0.03346316023447957 -12845.0,0.033451604464117234 -12846.0,0.033440052684287395 -12847.0,0.03342850489361204 -12848.0,0.033416961090713564 -12849.0,0.03340542127421489 -12850.0,0.033393885442739406 -12851.0,0.033382353594910985 -12852.0,0.03337082572935393 -12853.0,0.033359301844693066 -12854.0,0.03334778193955368 -12855.0,0.033336266012561525 -12856.0,0.03332475406234286 -12857.0,0.033313246087524354 -12858.0,0.03330174208673321 -12859.0,0.03329024205859709 -12860.0,0.033278746001744124 -12861.0,0.0332672539148029 -12862.0,0.0332557657964025 -12863.0,0.033244281645172485 -12864.0,0.03323280145974289 -12865.0,0.03322132523874418 -12866.0,0.03320985298080734 -12867.0,0.03319838468456383 -12868.0,0.03318692034864555 -12869.0,0.03317545997168489 -12870.0,0.033164003552314705 -12871.0,0.033152551089168335 -12872.0,0.0331411025808796 -12873.0,0.033129658026082746 -12874.0,0.03311821742341253 -12875.0,0.03310678077150418 -12876.0,0.03309534806899339 -12877.0,0.033083919314516326 -12878.0,0.03307249450670959 -12879.0,0.03306107364421031 -12880.0,0.03304965672565606 -12881.0,0.03303824374968489 -12882.0,0.0330268347149353 -12883.0,0.03301542962004628 -12884.0,0.033004028463657284 -12885.0,0.03299263124440826 -12886.0,0.03298123796093956 -12887.0,0.032969848611892075 -12888.0,0.03295846319590714 -12889.0,0.032947081711626566 -12890.0,0.0329357041576926 -12891.0,0.032924330532747986 -12892.0,0.03291296083543595 -12893.0,0.03290159506440016 -12894.0,0.03289023321828478 -12895.0,0.0328788752957344 -12896.0,0.0328675212953941 -12897.0,0.03285617121590945 -12898.0,0.03284482505592647 -12899.0,0.03283348281409163 -12900.0,0.03282214448905189 -12901.0,0.03281081007945467 -12902.0,0.03279947958394787 -12903.0,0.032788153001179814 -12904.0,0.03277683032979935 -12905.0,0.03276551156845575 -12906.0,0.032754196715798795 -12907.0,0.03274288577047867 -12908.0,0.032731578731146085 -12909.0,0.03272027559645218 -12910.0,0.032708976365048596 -12911.0,0.03269768103558738 -12912.0,0.03268638960672111 -12913.0,0.03267510207710279 -12914.0,0.0326638184453859 -12915.0,0.0326525387102244 -12916.0,0.032641262870272685 -12917.0,0.03262999092418563 -12918.0,0.032618722870618566 -12919.0,0.03260745870822733 -12920.0,0.03259619843566815 -12921.0,0.03258494205159777 -12922.0,0.03257368955467339 -12923.0,0.032562440943552685 -12924.0,0.03255119621689375 -12925.0,0.032539955373355176 -12926.0,0.03252871841159602 -12927.0,0.03251748533027581 -12928.0,0.03250625612805449 -12929.0,0.032495030803592506 -12930.0,0.03248380935555077 -12931.0,0.03247259178259064 -12932.0,0.03246137808337395 -12933.0,0.032450168256562974 -12934.0,0.03243896230082046 -12935.0,0.03242776021480963 -12936.0,0.032416561997194164 -12937.0,0.032405367646638164 -12938.0,0.03239417716180625 -12939.0,0.03238299054136348 -12940.0,0.03237180778397538 -12941.0,0.032360628888307895 -12942.0,0.03234945385302749 -12943.0,0.032338282676801056 -12944.0,0.03232711535829597 -12945.0,0.03231595189618003 -12946.0,0.03230479228912152 -12947.0,0.032293636535789184 -12948.0,0.03228248463485224 -12949.0,0.03227133658498031 -12950.0,0.032260192384843546 -12951.0,0.032249052033112506 -12952.0,0.032237915528458234 -12953.0,0.032226782869552245 -12954.0,0.03221565405506646 -12955.0,0.032204529083673314 -12956.0,0.03219340795404567 -12957.0,0.03218229066485687 -12958.0,0.03217117721478069 -12959.0,0.03216006760249138 -12960.0,0.032148961826663644 -12961.0,0.032137859885972654 -12962.0,0.032126761779094015 -12963.0,0.03211566750470381 -12964.0,0.03210457706147856 -12965.0,0.03209349044809529 -12966.0,0.032082407663231415 -12967.0,0.03207132870556485 -12968.0,0.032060253573773956 -12969.0,0.03204918226653755 -12970.0,0.032038114782534925 -12971.0,0.03202705112044577 -12972.0,0.03201599127895031 -12973.0,0.03200493525672916 -12974.0,0.03199388305246344 -12975.0,0.031982834664834675 -12976.0,0.0319717900925249 -12977.0,0.031960749334216554 -12978.0,0.03194971238859259 -12979.0,0.031938679254336334 -12980.0,0.03192764993013164 -12981.0,0.031916624414662795 -12982.0,0.031905602706614536 -12983.0,0.031894584804672034 -12984.0,0.031883570707520945 -12985.0,0.03187256041384737 -12986.0,0.031861553922337874 -12987.0,0.03185055123167943 -12988.0,0.03183955234055951 -12989.0,0.03182855724766604 -12990.0,0.031817565951687374 -12991.0,0.03180657845131235 -12992.0,0.03179559474523021 -12993.0,0.031784614832130687 -12994.0,0.03177363871070396 -12995.0,0.03176266637964068 -12996.0,0.03175169783763189 -12997.0,0.03174073308336914 -12998.0,0.03172977211554441 -12999.0,0.031718814932850156 -13000.0,0.03170786153397925 -13001.0,0.03169691191762502 -13002.0,0.03168596608248127 -13003.0,0.03167502402724225 -13004.0,0.031664085750602644 -13005.0,0.03165315125125758 -13006.0,0.03164222052790268 -13007.0,0.031631293579233964 -13008.0,0.03162037040394796 -13009.0,0.03160945100074158 -13010.0,0.03159853536831222 -13011.0,0.03158762350535774 -13012.0,0.03157671541057643 -13013.0,0.03156581108266703 -13014.0,0.03155491052032874 -13015.0,0.031544013722261184 -13016.0,0.03153312068716449 -13017.0,0.03152223141373916 -13018.0,0.0315113459006862 -13019.0,0.03150046414670705 -13020.0,0.031489586150503596 -13021.0,0.03147871191077816 -13022.0,0.03146784142623354 -13023.0,0.03145697469557295 -13024.0,0.03144611171750009 -13025.0,0.03143525249071907 -13026.0,0.031424397013934464 -13027.0,0.031413545285851295 -13028.0,0.03140269730517503 -13029.0,0.031391853070611604 -13030.0,0.03138101258086735 -13031.0,0.03137017583464908 -13032.0,0.031359342830664064 -13033.0,0.03134851356762 -13034.0,0.03133768804422503 -13035.0,0.03132686625918774 -13036.0,0.03131604821121719 -13037.0,0.031305233899022865 -13038.0,0.03129442332131467 -13039.0,0.03128361647680301 -13040.0,0.03127281336419869 -13041.0,0.031262013982213 -13042.0,0.031251218329557615 -13043.0,0.03124042640494472 -13044.0,0.03122963820708691 -13045.0,0.03121885373469723 -13046.0,0.031208072986489192 -13047.0,0.031197295961176697 -13048.0,0.031186522657474142 -13049.0,0.031175753074096348 -13050.0,0.031164987209758594 -13051.0,0.03115422506317657 -13052.0,0.031143466633066438 -13053.0,0.0311327119181448 -13054.0,0.031121960917128707 -13055.0,0.031111213628735618 -13056.0,0.03110047005168347 -13057.0,0.03108973018469064 -13058.0,0.03107899402647595 -13059.0,0.03106826157575862 -13060.0,0.031057532831258373 -13061.0,0.03104680779169534 -13062.0,0.03103608645579012 -13063.0,0.031025368822263703 -13064.0,0.03101465488983757 -13065.0,0.03100394465723363 -13066.0,0.030993238123174227 -13067.0,0.030982535286382163 -13068.0,0.03097183614558064 -13069.0,0.030961140699493347 -13070.0,0.030950448946844386 -13071.0,0.030939760886358334 -13072.0,0.03092907651676015 -13073.0,0.030918395836775275 -13074.0,0.030907718845129592 -13075.0,0.03089704554054942 -13076.0,0.030886375921761487 -13077.0,0.030875709987493 -13078.0,0.030865047736471588 -13079.0,0.03085438916742534 -13080.0,0.030843734279082734 -13081.0,0.030833083070172736 -13082.0,0.030822435539424736 -13083.0,0.03081179168556856 -13084.0,0.030801151507334482 -13085.0,0.030790515003453187 -13086.0,0.03077988217265583 -13087.0,0.030769253013673985 -13088.0,0.030758627525239696 -13089.0,0.03074800570608538 -13090.0,0.030737387554943953 -13091.0,0.030726773070548746 -13092.0,0.03071616225163354 -13093.0,0.030705555096932517 -13094.0,0.03069495160518033 -13095.0,0.030684351775112063 -13096.0,0.03067375560546325 -13097.0,0.03066316309496981 -13098.0,0.030652574242368155 -13099.0,0.030641989046395108 -13100.0,0.03063140750578795 -13101.0,0.030620829619284345 -13102.0,0.03061025538562245 -13103.0,0.030599684803540833 -13104.0,0.0305891178717785 -13105.0,0.030578554589074908 -13106.0,0.030567994954169907 -13107.0,0.03055743896580382 -13108.0,0.0305468866227174 -13109.0,0.03053633792365184 -13110.0,0.03052579286734873 -13111.0,0.030515251452550136 -13112.0,0.030504713677998542 -13113.0,0.030494179542436887 -13114.0,0.030483649044608492 -13115.0,0.03047312218325716 -13116.0,0.030462598957127118 -13117.0,0.030452079364963032 -13118.0,0.030441563405509964 -13119.0,0.03043105107751345 -13120.0,0.03042054237971945 -13121.0,0.030410037310874345 -13122.0,0.030399535869724978 -13123.0,0.030389038055018573 -13124.0,0.03037854386550283 -13125.0,0.03036805329992587 -13126.0,0.030357566357036264 -13127.0,0.03034708303558296 -13128.0,0.03033660333431539 -13129.0,0.030326127251983408 -13130.0,0.0303156547873373 -13131.0,0.030305185939127753 -13132.0,0.030294720706105924 -13133.0,0.030284259087023386 -13134.0,0.03027380108063216 -13135.0,0.03026334668568465 -13136.0,0.030252895900933743 -13137.0,0.030242448725132733 -13138.0,0.03023200515703536 -13139.0,0.030221565195395757 -13140.0,0.03021112883896853 -13141.0,0.03020069608650869 -13142.0,0.030190266936771692 -13143.0,0.030179841388513425 -13144.0,0.03016941944049017 -13145.0,0.030159001091458682 -13146.0,0.030148586340176125 -13147.0,0.030138175185400108 -13148.0,0.03012776762588863 -13149.0,0.030117363660400156 -13150.0,0.03010696328769357 -13151.0,0.030096566506528203 -13152.0,0.03008617331566376 -13153.0,0.030075783713860427 -13154.0,0.030065397699878794 -13155.0,0.030055015272479908 -13156.0,0.030044636430425188 -13157.0,0.03003426117247653 -13158.0,0.03002388949739624 -13159.0,0.03001352140394705 -13160.0,0.03000315689089214 -13161.0,0.029992795956995073 -13162.0,0.029982438601019876 -13163.0,0.029972084821730992 -13164.0,0.029961734617893303 -13165.0,0.029951387988272078 -13166.0,0.02994104493163306 -13167.0,0.029930705446742388 -13168.0,0.029920369532366653 -13169.0,0.029910037187272833 -13170.0,0.02989970841022837 -13171.0,0.029889383200001104 -13172.0,0.02987906155535934 -13173.0,0.029868743475071746 -13174.0,0.029858428957907465 -13175.0,0.02984811800263605 -13176.0,0.029837810608027496 -13177.0,0.029827506772852175 -13178.0,0.029817206495880932 -13179.0,0.029806909775885015 -13180.0,0.029796616611636104 -13181.0,0.02978632700190631 -13182.0,0.02977604094546813 -13183.0,0.029765758441094532 -13184.0,0.02975547948755888 -13185.0,0.029745204083634992 -13186.0,0.029734932228097054 -13187.0,0.029724663919719722 -13188.0,0.029714399157278065 -13189.0,0.02970413793954758 -13190.0,0.02969388026530416 -13191.0,0.029683626133324145 -13192.0,0.029673375542384296 -13193.0,0.029663128491261802 -13194.0,0.029652884978734244 -13195.0,0.02964264500357965 -13196.0,0.029632408564576475 -13197.0,0.02962217566050358 -13198.0,0.02961194629014027 -13199.0,0.02960172045226623 -13200.0,0.0295914981456616 -13201.0,0.02958127936910694 -13202.0,0.029571064121383238 -13203.0,0.029560852401271858 -13204.0,0.02955064420755463 -13205.0,0.029540439539013794 -13206.0,0.02953023839443202 -13207.0,0.029520040772592356 -13208.0,0.02950984667227832 -13209.0,0.029499656092273823 -13210.0,0.02948946903136322 -13211.0,0.02947928548833124 -13212.0,0.029469105461963078 -13213.0,0.029458928951044325 -13214.0,0.02944875595436102 -13215.0,0.029438586470699562 -13216.0,0.029428420498846825 -13217.0,0.029418258037590083 -13218.0,0.029408099085717024 -13219.0,0.029397943642015777 -13220.0,0.029387791705274842 -13221.0,0.029377643274283185 -13222.0,0.029367498347830163 -13223.0,0.02935735692470558 -13224.0,0.029347219003699614 -13225.0,0.029337084583602895 -13226.0,0.029326953663206458 -13227.0,0.029316826241301774 -13228.0,0.02930670231668069 -13229.0,0.029296581888135508 -13230.0,0.02928646495445893 -13231.0,0.0292763515144441 -13232.0,0.02926624156688453 -13233.0,0.029256135110574188 -13234.0,0.02924603214430745 -13235.0,0.029235932666879103 -13236.0,0.02922583667708437 -13237.0,0.02921574417371884 -13238.0,0.02920565515557857 -13239.0,0.029195569621460013 -13240.0,0.02918548757016005 -13241.0,0.02917540900047594 -13242.0,0.029165333911205397 -13243.0,0.029155262301146536 -13244.0,0.029145194169097898 -13245.0,0.029135129513858403 -13246.0,0.029125068334227427 -13247.0,0.029115010629004744 -13248.0,0.029104956396990553 -13249.0,0.029094905636985437 -13250.0,0.02908485834779042 -13251.0,0.029074814528206937 -13252.0,0.029064774177036845 -13253.0,0.02905473729308238 -13254.0,0.029044703875146228 -13255.0,0.02903467392203147 -13256.0,0.02902464743254161 -13257.0,0.029014624405480575 -13258.0,0.029004604839652667 -13259.0,0.02899458873386263 -13260.0,0.02898457608691562 -13261.0,0.028974566897617213 -13262.0,0.028964561164773365 -13263.0,0.02895455888719047 -13264.0,0.028944560063675333 -13265.0,0.028934564693035184 -13266.0,0.028924572774077614 -13267.0,0.02891458430561068 -13268.0,0.028904599286442827 -13269.0,0.02889461771538293 -13270.0,0.028884639591240234 -13271.0,0.028874664912824432 -13272.0,0.02886469367894562 -13273.0,0.0288547258884143 -13274.0,0.028844761540041407 -13275.0,0.02883480063263823 -13276.0,0.02882484316501653 -13277.0,0.028814889135988446 -13278.0,0.02880493854436655 -13279.0,0.028794991388963784 -13280.0,0.028785047668593536 -13281.0,0.028775107382069592 -13282.0,0.028765170528206166 -13283.0,0.028755237105817833 -13284.0,0.02874530711371962 -13285.0,0.02873538055072696 -13286.0,0.02872545741565569 -13287.0,0.02871553770732203 -13288.0,0.028705621424542648 -13289.0,0.028695708566134594 -13290.0,0.02868579913091536 -13291.0,0.02867589311770279 -13292.0,0.028665990525315183 -13293.0,0.02865609135257123 -13294.0,0.02864619559829004 -13295.0,0.028636303261291126 -13296.0,0.028626414340394382 -13297.0,0.028616528834420143 -13298.0,0.028606646742189143 -13299.0,0.02859676806252253 -13300.0,0.028586892794241828 -13301.0,0.028577020936168998 -13302.0,0.028567152487126404 -13303.0,0.02855728744593682 -13304.0,0.02854742581142339 -13305.0,0.028537567582409717 -13306.0,0.02852771275771978 -13307.0,0.02851786133617798 -13308.0,0.028508013316609092 -13309.0,0.028498168697838333 -13310.0,0.02848832747869131 -13311.0,0.028478489657994037 -13312.0,0.028468655234572947 -13313.0,0.028458824207254835 -13314.0,0.028448996574866953 -13315.0,0.028439172336236933 -13316.0,0.028429351490192822 -13317.0,0.028419534035563045 -13318.0,0.028409719971176462 -13319.0,0.02839990929586233 -13320.0,0.028390102008450314 -13321.0,0.02838029810777045 -13322.0,0.028370497592653227 -13323.0,0.028360700461929504 -13324.0,0.028350906714430572 -13325.0,0.02834111634898808 -13326.0,0.028331329364434128 -13327.0,0.028321545759601198 -13328.0,0.028311765533322184 -13329.0,0.028301988684430356 -13330.0,0.028292215211759418 -13331.0,0.02828244511414347 -13332.0,0.028272678390417007 -13333.0,0.02826291503941494 -13334.0,0.028253155059972553 -13335.0,0.02824339845092556 -13336.0,0.028233645211110072 -13337.0,0.02822389533936261 -13338.0,0.02821414883452006 -13339.0,0.028204405695419744 -13340.0,0.028194665920899382 -13341.0,0.028184929509797098 -13342.0,0.028175196460951388 -13343.0,0.028165466773201184 -13344.0,0.0281557404453858 -13345.0,0.02814601747634497 -13346.0,0.02813629786491879 -13347.0,0.0281265816099478 -13348.0,0.02811686871027291 -13349.0,0.028107159164735447 -13350.0,0.02809745297217715 -13351.0,0.02808775013144011 -13352.0,0.028078050641366866 -13353.0,0.028068354500800335 -13354.0,0.028058661708583857 -13355.0,0.02804897226356112 -13356.0,0.02803928616457626 -13357.0,0.028029603410473794 -13358.0,0.028019924000098655 -13359.0,0.028010247932296138 -13360.0,0.028000575205911964 -13361.0,0.02799090581979225 -13362.0,0.027981239772783526 -13363.0,0.02797157706373267 -13364.0,0.02796191769148701 -13365.0,0.02795226165489425 -13366.0,0.027942608952802508 -13367.0,0.027932959584060266 -13368.0,0.02792331354751643 -13369.0,0.027913670842020306 -13370.0,0.02790403146642158 -13371.0,0.02789439541957037 -13372.0,0.02788476270031713 -13373.0,0.027875133307512765 -13374.0,0.027865507240008556 -13375.0,0.027855884496656196 -13376.0,0.027846265076307736 -13377.0,0.027836648977815667 -13378.0,0.02782703620003285 -13379.0,0.027817426741812572 -13380.0,0.027807820602008468 -13381.0,0.027798217779474603 -13382.0,0.027788618273065432 -13383.0,0.027779022081635817 -13384.0,0.02776942920404098 -13385.0,0.02775983963913657 -13386.0,0.027750253385778623 -13387.0,0.02774067044282357 -13388.0,0.027731090809128247 -13389.0,0.02772151448354985 -13390.0,0.027711941464946 -13391.0,0.02770237175217471 -13392.0,0.027692805344094396 -13393.0,0.027683242239563834 -13394.0,0.02767368243744222 -13395.0,0.027664125936589144 -13396.0,0.027654572735864594 -13397.0,0.027645022834128924 -13398.0,0.027635476230242907 -13399.0,0.027625932923067704 -13400.0,0.027616392911464883 -13401.0,0.027606856194296363 -13402.0,0.0275973227704245 -13403.0,0.027587792638712017 -13404.0,0.02757826579802206 -13405.0,0.027568742247218114 -13406.0,0.02755922198516411 -13407.0,0.027549705010724342 -13408.0,0.02754019132276351 -13409.0,0.02753068092014671 -13410.0,0.027521173801739397 -13411.0,0.027511669966407453 -13412.0,0.027502169413017138 -13413.0,0.027492672140435118 -13414.0,0.027483178147528414 -13415.0,0.027473687433164477 -13416.0,0.02746419999621113 -13417.0,0.027454715835536603 -13418.0,0.027445234950009483 -13419.0,0.027435757338498776 -13420.0,0.02742628299987388 -13421.0,0.027416811933004586 -13422.0,0.027407344136761037 -13423.0,0.027397879610013807 -13424.0,0.027388418351633848 -13425.0,0.0273789603604925 -13426.0,0.027369505635461505 -13427.0,0.02736005417541296 -13428.0,0.02735060597921939 -13429.0,0.02734116104575369 -13430.0,0.02733171937388916 -13431.0,0.027322280962499456 -13432.0,0.027312845810458654 -13433.0,0.02730341391664121 -13434.0,0.02729398527992198 -13435.0,0.027284559899176174 -13436.0,0.027275137773279425 -13437.0,0.027265718901107735 -13438.0,0.02725630328153752 -13439.0,0.027246890913445544 -13440.0,0.027237481795708986 -13441.0,0.027228075927205407 -13442.0,0.027218673306812772 -13443.0,0.027209273933409387 -13444.0,0.027199877805873993 -13445.0,0.0271904849230857 -13446.0,0.027181095283923998 -13447.0,0.027171708887268792 -13448.0,0.027162325732000326 -13449.0,0.02715294581699927 -13450.0,0.02714356914114667 -13451.0,0.02713419570332397 -13452.0,0.027124825502412957 -13453.0,0.027115458537295852 -13454.0,0.027106094806855243 -13455.0,0.027096734309974117 -13456.0,0.02708737704553581 -13457.0,0.027078023012424082 -13458.0,0.027068672209523064 -13459.0,0.027059324635717287 -13460.0,0.02704998028989163 -13461.0,0.02704063917093139 -13462.0,0.02703130127772224 -13463.0,0.02702196660915024 -13464.0,0.027012635164101843 -13465.0,0.02700330694146385 -13466.0,0.026993981940123483 -13467.0,0.026984660158968343 -13468.0,0.026975341596886415 -13469.0,0.02696602625276604 -13470.0,0.026956714125495985 -13471.0,0.02694740521396537 -13472.0,0.02693809951706373 -13473.0,0.026928797033680934 -13474.0,0.026919497762707276 -13475.0,0.026910201703033425 -13476.0,0.026900908853550436 -13477.0,0.02689161921314972 -13478.0,0.026882332780723096 -13479.0,0.02687304955516277 -13480.0,0.026863769535361324 -13481.0,0.0268544927202117 -13482.0,0.026845219108607255 -13483.0,0.026835948699441708 -13484.0,0.026826681491609175 -13485.0,0.026817417484004152 -13486.0,0.02680815667552149 -13487.0,0.02679889906505645 -13488.0,0.02678964465150467 -13489.0,0.026780393433762175 -13490.0,0.026771145410725342 -13491.0,0.026761900581290958 -13492.0,0.026752658944356186 -13493.0,0.026743420498818574 -13494.0,0.02673418524357602 -13495.0,0.02672495317752684 -13496.0,0.026715724299569713 -13497.0,0.02670649860860371 -13498.0,0.026697276103528258 -13499.0,0.026688056783243184 -13500.0,0.02667884064664869 -13501.0,0.026669627692645366 -13502.0,0.02666041792013418 -13503.0,0.02665121132801645 -13504.0,0.02664200791519391 -13505.0,0.026632807680568655 -13506.0,0.02662361062304318 -13507.0,0.02661441674152032 -13508.0,0.026605226034903322 -13509.0,0.026596038502095805 -13510.0,0.02658685414200177 -13511.0,0.02657767295352557 -13512.0,0.02656849493557197 -13513.0,0.02655932008704609 -13514.0,0.02655014840685346 -13515.0,0.026540979893899936 -13516.0,0.026531814547091793 -13517.0,0.026522652365335676 -13518.0,0.026513493347538608 -13519.0,0.02650433749260797 -13520.0,0.02649518479945154 -13521.0,0.026486035266977476 -13522.0,0.0264768888940943 -13523.0,0.026467745679710927 -13524.0,0.026458605622736615 -13525.0,0.026449468722081038 -13526.0,0.02644033497665423 -13527.0,0.026431204385366606 -13528.0,0.02642207694712894 -13529.0,0.0264129526608524 -13530.0,0.026403831525448524 -13531.0,0.026394713539829247 -13532.0,0.026385598702906826 -13533.0,0.026376487013593946 -13534.0,0.02636737847080365 -13535.0,0.02635827307344936 -13536.0,0.026349170820444853 -13537.0,0.0263400717107043 -13538.0,0.02633097574314225 -13539.0,0.02632188291667362 -13540.0,0.02631279323021371 -13541.0,0.026303706682678167 -13542.0,0.02629462327298304 -13543.0,0.026285543000044747 -13544.0,0.026276465862780093 -13545.0,0.02626739186010621 -13546.0,0.026258320990940654 -13547.0,0.026249253254201334 -13548.0,0.026240188648806548 -13549.0,0.02623112717367493 -13550.0,0.02622206882772552 -13551.0,0.026213013609877732 -13552.0,0.02620396151905135 -13553.0,0.0261949125541665 -13554.0,0.02618586671414373 -13555.0,0.026176823997903925 -13556.0,0.026167784404368368 -13557.0,0.026158747932458686 -13558.0,0.026149714581096897 -13559.0,0.02614068434920539 -13560.0,0.02613165723570693 -13561.0,0.026122633239524653 -13562.0,0.026113612359582043 -13563.0,0.026104594594802983 -13564.0,0.02609557994411172 -13565.0,0.026086568406432885 -13566.0,0.026077559980691445 -13567.0,0.026068554665812767 -13568.0,0.02605955246072259 -13569.0,0.026050553364347022 -13570.0,0.026041557375612517 -13571.0,0.02603256449344593 -13572.0,0.026023574716774474 -13573.0,0.02601458804452575 -13574.0,0.02600560447562768 -13575.0,0.025996624009008616 -13576.0,0.025987646643597245 -13577.0,0.02597867237832263 -13578.0,0.025969701212114227 -13579.0,0.02596073314390181 -13580.0,0.02595176817261557 -13581.0,0.02594280629718605 -13582.0,0.025933847516544175 -13583.0,0.025924891829621207 -13584.0,0.025915939235348805 -13585.0,0.025906989732658994 -13586.0,0.025898043320484173 -13587.0,0.025889099997757074 -13588.0,0.02588015976341084 -13589.0,0.025871222616378968 -13590.0,0.02586228855559533 -13591.0,0.025853357579994133 -13592.0,0.02584442968850999 -13593.0,0.02583550488007787 -13594.0,0.025826583153633117 -13595.0,0.025817664508111415 -13596.0,0.02580874894244884 -13597.0,0.025799836455581836 -13598.0,0.025790927046447205 -13599.0,0.025782020713982133 -13600.0,0.025773117457124135 -13601.0,0.02576421727481113 -13602.0,0.02575532016598139 -13603.0,0.025746426129573566 -13604.0,0.025737535164526645 -13605.0,0.025728647269780008 -13606.0,0.02571976244427339 -13607.0,0.025710880686946914 -13608.0,0.02570200199674103 -13609.0,0.025693126372596575 -13610.0,0.025684253813454766 -13611.0,0.025675384318257173 -13612.0,0.02566651788594571 -13613.0,0.02565765451546269 -13614.0,0.02564879420575077 -13615.0,0.02563993695575299 -13616.0,0.025631082764412748 -13617.0,0.025622231630673786 -13618.0,0.025613383553480237 -13619.0,0.02560453853177659 -13620.0,0.02559569656450771 -13621.0,0.025586857650618793 -13622.0,0.025578021789055428 -13623.0,0.02556918897876357 -13624.0,0.025560359218689533 -13625.0,0.02555153250777997 -13626.0,0.02554270884498193 -13627.0,0.025533888229242813 -13628.0,0.0255250706595104 -13629.0,0.025516256134732795 -13630.0,0.0255074446538585 -13631.0,0.025498636215836364 -13632.0,0.025489830819615613 -13633.0,0.025481028464145836 -13634.0,0.025472229148376952 -13635.0,0.025463432871259278 -13636.0,0.025454639631743485 -13637.0,0.02544584942878061 -13638.0,0.02543706226132203 -13639.0,0.025428278128319506 -13640.0,0.025419497028725157 -13641.0,0.025410718961491476 -13642.0,0.025401943925571272 -13643.0,0.02539317191991777 -13644.0,0.025384402943484524 -13645.0,0.02537563699522548 -13646.0,0.02536687407409489 -13647.0,0.02535811417904742 -13648.0,0.02534935730903808 -13649.0,0.025340603463022245 -13650.0,0.02533185263995563 -13651.0,0.025323104838794325 -13652.0,0.025314360058494793 -13653.0,0.025305618298013838 -13654.0,0.025296879556308646 -13655.0,0.02528814383233673 -13656.0,0.025279411125055985 -13657.0,0.025270681433424667 -13658.0,0.0252619547564014 -13659.0,0.02525323109294513 -13660.0,0.0252445104420152 -13661.0,0.025235792802571298 -13662.0,0.02522707817357349 -13663.0,0.025218366553982154 -13664.0,0.025209657942758073 -13665.0,0.025200952338862374 -13666.0,0.025192249741256553 -13667.0,0.025183550148902428 -13668.0,0.025174853560762215 -13669.0,0.025166159975798474 -13670.0,0.025157469392974124 -13671.0,0.02514878181125245 -13672.0,0.025140097229597067 -13673.0,0.025131415646971984 -13674.0,0.02512273706234154 -13675.0,0.025114061474670463 -13676.0,0.025105388882923792 -13677.0,0.025096719286066965 -13678.0,0.025088052683065763 -13679.0,0.02507938907288633 -13680.0,0.025070728454495136 -13681.0,0.025062070826859052 -13682.0,0.02505341618894528 -13683.0,0.0250447645397214 -13684.0,0.02503611587815531 -13685.0,0.025027470203215295 -13686.0,0.025018827513869992 -13687.0,0.0250101878090884 -13688.0,0.025001551087839847 -13689.0,0.024992917349094045 -13690.0,0.024984286591821052 -13691.0,0.024975658814991277 -13692.0,0.024967034017575506 -13693.0,0.024958412198544843 -13694.0,0.02494979335687077 -13695.0,0.02494117749152513 -13696.0,0.02493256460148012 -13697.0,0.024923954685708266 -13698.0,0.024915347743182478 -13699.0,0.02490674377287601 -13700.0,0.024898142773762476 -13701.0,0.02488954474481583 -13702.0,0.02488094968501039 -13703.0,0.024872357593320835 -13704.0,0.024863768468722198 -13705.0,0.02485518231018984 -13706.0,0.0248465991166995 -13707.0,0.024838018887227274 -13708.0,0.024829441620749598 -13709.0,0.02482086731624328 -13710.0,0.024812295972685444 -13711.0,0.024803727589053602 -13712.0,0.02479516216432561 -13713.0,0.024786599697479685 -13714.0,0.02477804018749437 -13715.0,0.024769483633348577 -13716.0,0.024760930034021585 -13717.0,0.024752379388493014 -13718.0,0.024743831695742815 -13719.0,0.024735286954751322 -13720.0,0.02472674516449921 -13721.0,0.02471820632396752 -13722.0,0.0247096704321376 -13723.0,0.024701137487991198 -13724.0,0.024692607490510395 -13725.0,0.024684080438677633 -13726.0,0.024675556331475678 -13727.0,0.024667035167887673 -13728.0,0.02465851694689711 -13729.0,0.024650001667487827 -13730.0,0.02464148932864402 -13731.0,0.02463297992935021 -13732.0,0.024624473468591302 -13733.0,0.02461596994535253 -13734.0,0.024607469358619502 -13735.0,0.024598971707378136 -13736.0,0.024590476990614736 -13737.0,0.024581985207315943 -13738.0,0.02457349635646876 -13739.0,0.024565010437060508 -13740.0,0.02455652744807889 -13741.0,0.024548047388511948 -13742.0,0.024539570257348084 -13743.0,0.02453109605357601 -13744.0,0.024522624776184835 -13745.0,0.02451415642416399 -13746.0,0.02450569099650327 -13747.0,0.024497228492192814 -13748.0,0.02448876891022309 -13749.0,0.02448031224958494 -13750.0,0.02447185850926955 -13751.0,0.024463407688268456 -13752.0,0.02445495978557352 -13753.0,0.024446514800176976 -13754.0,0.0244380727310714 -13755.0,0.024429633577249726 -13756.0,0.024421197337705203 -13757.0,0.02441276401143146 -13758.0,0.02440433359742246 -13759.0,0.02439590609467253 -13760.0,0.024387481502176307 -13761.0,0.02437905981892881 -13762.0,0.024370641043925396 -13763.0,0.024362225176161774 -13764.0,0.02435381221463397 -13765.0,0.024345402158338393 -13766.0,0.024336995006271782 -13767.0,0.02432859075743123 -13768.0,0.024320189410814173 -13769.0,0.02431179096541838 -13770.0,0.024303395420241982 -13771.0,0.024295002774283453 -13772.0,0.02428661302654162 -13773.0,0.024278226176015636 -13774.0,0.02426984222170501 -13775.0,0.0242614611626096 -13776.0,0.024253082997729623 -13777.0,0.024244707726065597 -13778.0,0.024236335346618426 -13779.0,0.02422796585838935 -13780.0,0.024219599260379955 -13781.0,0.024211235551592148 -13782.0,0.024202874731028213 -13783.0,0.02419451679769076 -13784.0,0.02418616175058275 -13785.0,0.0241778095887075 -13786.0,0.024169460311068636 -13787.0,0.024161113916670158 -13788.0,0.024152770404516404 -13789.0,0.024144429773612062 -13790.0,0.024136092022962137 -13791.0,0.024127757151572008 -13792.0,0.024119425158447384 -13793.0,0.02411109604259433 -13794.0,0.024102769803019217 -13795.0,0.024094446438728805 -13796.0,0.02408612594873017 -13797.0,0.024077808332030753 -13798.0,0.0240694935876383 -13799.0,0.024061181714560932 -13800.0,0.024052872711807106 -13801.0,0.024044566578385627 -13802.0,0.024036263313305613 -13803.0,0.02402796291557656 -13804.0,0.024019665384208282 -13805.0,0.02401137071821095 -13806.0,0.02400307891659508 -13807.0,0.0239947899783715 -13808.0,0.02398650390255141 -13809.0,0.023978220688146347 -13810.0,0.023969940334168185 -13811.0,0.02396166283962912 -13812.0,0.023953388203541724 -13813.0,0.023945116424918887 -13814.0,0.023936847502773858 -13815.0,0.023928581436120196 -13816.0,0.023920318223971827 -13817.0,0.02391205786534301 -13818.0,0.023903800359248356 -13819.0,0.023895545704702783 -13820.0,0.023887293900721585 -13821.0,0.02387904494632038 -13822.0,0.023870798840515125 -13823.0,0.023862555582322132 -13824.0,0.02385431517075802 -13825.0,0.02384607760483978 -13826.0,0.023837842883584728 -13827.0,0.02382961100601053 -13828.0,0.023821381971135168 -13829.0,0.023813155777976984 -13830.0,0.023804932425554655 -13831.0,0.02379671191288721 -13832.0,0.02378849423899397 -13833.0,0.023780279402894646 -13834.0,0.02377206740360926 -13835.0,0.023763858240158205 -13836.0,0.02375565191156215 -13837.0,0.02374744841684216 -13838.0,0.023739247755019618 -13839.0,0.023731049925116248 -13840.0,0.023722854926154096 -13841.0,0.023714662757155565 -13842.0,0.02370647341714339 -13843.0,0.023698286905140642 -13844.0,0.02369010322017074 -13845.0,0.02368192236125741 -13846.0,0.023673744327424744 -13847.0,0.023665569117697162 -13848.0,0.023657396731099435 -13849.0,0.023649227166656635 -13850.0,0.023641060423394197 -13851.0,0.023632896500337897 -13852.0,0.023624735396513843 -13853.0,0.023616577110948455 -13854.0,0.02360842164266852 -13855.0,0.023600268990701154 -13856.0,0.023592119154073807 -13857.0,0.02358397213181425 -13858.0,0.02357582792295061 -13859.0,0.02356768652651134 -13860.0,0.023559547941525233 -13861.0,0.023551412167021425 -13862.0,0.02354327920202936 -13863.0,0.023535149045578838 -13864.0,0.023527021696699995 -13865.0,0.02351889715442331 -13866.0,0.023510775417779562 -13867.0,0.023502656485799894 -13868.0,0.02349454035751578 -13869.0,0.023486427031959033 -13870.0,0.023478316508161776 -13871.0,0.023470208785156488 -13872.0,0.02346210386197598 -13873.0,0.023454001737653406 -13874.0,0.023445902411222214 -13875.0,0.02343780588171623 -13876.0,0.023429712148169593 -13877.0,0.023421621209616796 -13878.0,0.02341353306509262 -13879.0,0.023405447713632226 -13880.0,0.023397365154271085 -13881.0,0.02338928538604501 -13882.0,0.023381208407990153 -13883.0,0.023373134219142968 -13884.0,0.023365062818540276 -13885.0,0.023356994205219212 -13886.0,0.023348928378217268 -13887.0,0.023340865336572224 -13888.0,0.023332805079322224 -13889.0,0.02332474760550575 -13890.0,0.0233166929141616 -13891.0,0.0233086410043289 -13892.0,0.023300591875047117 -13893.0,0.023292545525356055 -13894.0,0.02328450195429585 -13895.0,0.023276461160906946 -13896.0,0.023268423144230138 -13897.0,0.023260387903306555 -13898.0,0.02325235543717765 -13899.0,0.023244325744885216 -13900.0,0.023236298825471353 -13901.0,0.023228274677978517 -13902.0,0.023220253301449483 -13903.0,0.023212234694927374 -13904.0,0.023204218857455605 -13905.0,0.023196205788077958 -13906.0,0.023188195485838527 -13907.0,0.023180187949781758 -13908.0,0.023172183178952383 -13909.0,0.023164181172395507 -13910.0,0.023156181929156548 -13911.0,0.023148185448281264 -13912.0,0.023140191728815714 -13913.0,0.02313220076980631 -13914.0,0.0231242125702998 -13915.0,0.023116227129343248 -13916.0,0.023108244445984038 -13917.0,0.023100264519269897 -13918.0,0.023092287348248884 -13919.0,0.023084312931969376 -13920.0,0.023076341269480098 -13921.0,0.023068372359830065 -13922.0,0.02306040620206866 -13923.0,0.023052442795245567 -13924.0,0.02304448213841083 -13925.0,0.023036524230614776 -13926.0,0.023028569070908098 -13927.0,0.0230206166583418 -13928.0,0.023012666991967228 -13929.0,0.023004720070836024 -13930.0,0.02299677589400019 -13931.0,0.022988834460512045 -13932.0,0.02298089576942424 -13933.0,0.02297295981978973 -13934.0,0.022965026610661823 -13935.0,0.022957096141094147 -13936.0,0.02294916841014065 -13937.0,0.022941243416855626 -13938.0,0.02293332116029366 -13939.0,0.022925401639509693 -13940.0,0.022917484853558982 -13941.0,0.02290957080149713 -13942.0,0.022901659482380023 -13943.0,0.022893750895263906 -13944.0,0.022885845039205346 -13945.0,0.02287794191326124 -13946.0,0.022870041516488786 -13947.0,0.02286214384794553 -13948.0,0.022854248906689342 -13949.0,0.022846356691778417 -13950.0,0.02283846720227126 -13951.0,0.022830580437226713 -13952.0,0.02282269639570395 -13953.0,0.022814815076762467 -13954.0,0.022806936479462064 -13955.0,0.022799060602862888 -13956.0,0.02279118744602541 -13957.0,0.022783317008010413 -13958.0,0.022775449287879026 -13959.0,0.022767584284692662 -13960.0,0.022759721997513103 -13961.0,0.022751862425402426 -13962.0,0.022744005567423058 -13963.0,0.022736151422637706 -13964.0,0.022728299990109446 -13965.0,0.022720451268901654 -13966.0,0.022712605258078045 -13967.0,0.02270476195670263 -13968.0,0.022696921363839766 -13969.0,0.022689083478554133 -13970.0,0.022681248299910733 -13971.0,0.02267341582697487 -13972.0,0.022665586058812196 -13973.0,0.022657758994488676 -13974.0,0.0226499346330706 -13975.0,0.022642112973624586 -13976.0,0.02263429401521755 -13977.0,0.022626477756916754 -13978.0,0.02261866419778978 -13979.0,0.022610853336904532 -13980.0,0.022603045173329218 -13981.0,0.02259523970613238 -13982.0,0.022587436934382896 -13983.0,0.022579636857149955 -13984.0,0.022571839473503042 -13985.0,0.022564044782512005 -13986.0,0.022556252783246983 -13987.0,0.022548463474778468 -13988.0,0.022540676856177222 -13989.0,0.022532892926514378 -13990.0,0.022525111684861363 -13991.0,0.022517333130289946 -13992.0,0.022509557261872176 -13993.0,0.022501784078680465 -13994.0,0.02249401357978753 -13995.0,0.0224862457642664 -13996.0,0.022478480631190446 -13997.0,0.022470718179633323 -13998.0,0.022462958408669038 -13999.0,0.022455201317371908 -14000.0,0.022447446904816575 -14001.0,0.022439695170077975 -14002.0,0.022431946112231396 -14003.0,0.022424199730352427 -14004.0,0.022416456023516995 -14005.0,0.022408714990801312 -14006.0,0.022400976631281936 -14007.0,0.02239324094403574 -14008.0,0.02238550792813992 -14009.0,0.02237777758267197 -14010.0,0.02237004990670972 -14011.0,0.022362324899331317 -14012.0,0.022354602559615223 -14013.0,0.02234688288664023 -14014.0,0.022339165879485416 -14015.0,0.02233145153723021 -14016.0,0.022323739858954344 -14017.0,0.022316030843737886 -14018.0,0.022308324490661186 -14019.0,0.022300620798804936 -14020.0,0.02229291976725015 -14021.0,0.022285221395078155 -14022.0,0.022277525681370574 -14023.0,0.022269832625209374 -14024.0,0.02226214222567683 -14025.0,0.02225445448185554 -14026.0,0.0222467693928284 -14027.0,0.022239086957678636 -14028.0,0.022231407175489798 -14029.0,0.022223730045345745 -14030.0,0.022216055566330637 -14031.0,0.022208383737528977 -14032.0,0.022200714558025563 -14033.0,0.022193048026905526 -14034.0,0.022185384143254314 -14035.0,0.022177722906157656 -14036.0,0.022170064314701636 -14037.0,0.02216240836797264 -14038.0,0.022154755065057378 -14039.0,0.02214710440504285 -14040.0,0.022139456387016393 -14041.0,0.022131811010065658 -14042.0,0.022124168273278618 -14043.0,0.022116528175743527 -14044.0,0.022108890716548986 -14045.0,0.022101255894783907 -14046.0,0.022093623709537515 -14047.0,0.022085994159899335 -14048.0,0.02207836724495922 -14049.0,0.022070742963807337 -14050.0,0.022063121315534166 -14051.0,0.022055502299230506 -14052.0,0.022047885913987448 -14053.0,0.02204027215889642 -14054.0,0.022032661033049156 -14055.0,0.022025052535537718 -14056.0,0.022017446665454448 -14057.0,0.022009843421892026 -14058.0,0.02200224280394344 -14059.0,0.02199464481070201 -14060.0,0.021987049441261324 -14061.0,0.02197945669471532 -14062.0,0.021971866570158243 -14063.0,0.021964279066684654 -14064.0,0.021956694183389396 -14065.0,0.021949111919367662 -14066.0,0.021941532273714943 -14067.0,0.02193395524552705 -14068.0,0.02192638083390008 -14069.0,0.021918809037930472 -14070.0,0.021911239856714965 -14071.0,0.02190367328935061 -14072.0,0.02189610933493478 -14073.0,0.021888547992565136 -14074.0,0.02188098926133967 -14075.0,0.02187343314035668 -14076.0,0.021865879628714786 -14077.0,0.021858328725512893 -14078.0,0.02185078042985024 -14079.0,0.02184323474082637 -14080.0,0.021835691657541147 -14081.0,0.021828151179094722 -14082.0,0.021820613304587573 -14083.0,0.021813078033120492 -14084.0,0.02180554536379458 -14085.0,0.021798015295711234 -14086.0,0.021790487827972174 -14087.0,0.02178296295967943 -14088.0,0.02177544068993534 -14089.0,0.021767921017842563 -14090.0,0.021760403942504034 -14091.0,0.021752889463023038 -14092.0,0.021745377578503144 -14093.0,0.021737868288048252 -14094.0,0.02173036159076254 -14095.0,0.021722857485750525 -14096.0,0.021715355972117018 -14097.0,0.021707857048967154 -14098.0,0.021700360715406344 -14099.0,0.021692866970540348 -14100.0,0.021685375813475207 -14101.0,0.021677887243317297 -14102.0,0.02167040125917327 -14103.0,0.0216629178601501 -14104.0,0.02165543704535508 -14105.0,0.021647958813895814 -14106.0,0.021640483164880184 -14107.0,0.021633010097416406 -14108.0,0.021625539610613 -14109.0,0.021618071703578788 -14110.0,0.02161060637542292 -14111.0,0.021603143625254808 -14112.0,0.021595683452184218 -14113.0,0.021588225855321202 -14114.0,0.021580770833776134 -14115.0,0.021573318386659664 -14116.0,0.02156586851308278 -14117.0,0.021558421212156762 -14118.0,0.021550976482993218 -14119.0,0.021543534324704024 -14120.0,0.021536094736401393 -14121.0,0.02152865771719784 -14122.0,0.021521223266206185 -14123.0,0.02151379138253954 -14124.0,0.02150636206531134 -14125.0,0.02149893531363533 -14126.0,0.021491511126625545 -14127.0,0.021484089503396343 -14128.0,0.021476670443062364 -14129.0,0.021469253944738573 -14130.0,0.02146184000754024 -14131.0,0.021454428630582945 -14132.0,0.021447019812982544 -14133.0,0.02143961355385523 -14134.0,0.021432209852317488 -14135.0,0.021424808707486122 -14136.0,0.02141741011847821 -14137.0,0.021410014084411164 -14138.0,0.021402620604402692 -14139.0,0.021395229677570814 -14140.0,0.021387841303033825 -14141.0,0.021380455479910358 -14142.0,0.02137307220731934 -14143.0,0.021365691484380007 -14144.0,0.021358313310211874 -14145.0,0.021350937683934788 -14146.0,0.021343564604668894 -14147.0,0.02133619407153463 -14148.0,0.02132882608365276 -14149.0,0.02132146064014432 -14150.0,0.02131409774013067 -14151.0,0.021306737382733473 -14152.0,0.0212993795670747 -14153.0,0.0212920242922766 -14154.0,0.02128467155746175 -14155.0,0.021277321361753025 -14156.0,0.021269973704273606 -14157.0,0.021262628584146955 -14158.0,0.02125528600049686 -14159.0,0.021247945952447406 -14160.0,0.02124060843912299 -14161.0,0.021233273459648278 -14162.0,0.02122594101314827 -14163.0,0.02121861109874826 -14164.0,0.021211283715573844 -14165.0,0.021203958862750925 -14166.0,0.02119663653940568 -14167.0,0.02118931674466463 -14168.0,0.021181999477654565 -14169.0,0.0211746847375026 -14170.0,0.021167372523336128 -14171.0,0.02116006283428286 -14172.0,0.0211527556694708 -14173.0,0.02114545102802827 -14174.0,0.02113814890908386 -14175.0,0.021130849311766488 -14176.0,0.02112355223520537 -14177.0,0.02111625767853002 -14178.0,0.02110896564087024 -14179.0,0.021101676121356147 -14180.0,0.021094389119118158 -14181.0,0.02108710463328699 -14182.0,0.021079822662993648 -14183.0,0.021072543207369444 -14184.0,0.021065266265546 -14185.0,0.02105799183665523 -14186.0,0.02105071991982935 -14187.0,0.021043450514200864 -14188.0,0.02103618361890259 -14189.0,0.021028919233067635 -14190.0,0.021021657355829428 -14191.0,0.021014397986321657 -14192.0,0.021007141123678345 -14193.0,0.0209998867670338 -14194.0,0.020992634915522636 -14195.0,0.020985385568279745 -14196.0,0.02097813872444034 -14197.0,0.020970894383139926 -14198.0,0.02096365254351432 -14199.0,0.020956413204699594 -14200.0,0.020949176365832167 -14201.0,0.02094194202604873 -14202.0,0.020934710184486286 -14203.0,0.020927480840282134 -14204.0,0.020920253992573846 -14205.0,0.020913029640499323 -14206.0,0.020905807783196752 -14207.0,0.02089858841980463 -14208.0,0.020891371549461718 -14209.0,0.020884157171307104 -14210.0,0.02087694528448017 -14211.0,0.020869735888120595 -14212.0,0.020862528981368336 -14213.0,0.020855324563363666 -14214.0,0.020848122633247156 -14215.0,0.020840923190159674 -14216.0,0.020833726233242363 -14217.0,0.020826531761636683 -14218.0,0.02081933977448439 -14219.0,0.020812150270927542 -14220.0,0.020804963250108464 -14221.0,0.020797778711169803 -14222.0,0.0207905966532545 -14223.0,0.020783417075505788 -14224.0,0.020776239977067203 -14225.0,0.020769065357082554 -14226.0,0.020761893214695966 -14227.0,0.020754723549051855 -14228.0,0.020747556359294945 -14229.0,0.02074039164457022 -14230.0,0.020733229404022998 -14231.0,0.020726069636798867 -14232.0,0.020718912342043733 -14233.0,0.020711757518903764 -14234.0,0.02070460516652545 -14235.0,0.02069745528405557 -14236.0,0.020690307870641203 -14237.0,0.020683162925429693 -14238.0,0.020676020447568715 -14239.0,0.02066888043620622 -14240.0,0.020661742890490456 -14241.0,0.02065460780956998 -14242.0,0.020647475192593603 -14243.0,0.02064034503871047 -14244.0,0.020633217347070007 -14245.0,0.020626092116821936 -14246.0,0.020618969347116257 -14247.0,0.020611849037103277 -14248.0,0.020604731185933603 -14249.0,0.020597615792758133 -14250.0,0.020590502856728032 -14251.0,0.02058339237699479 -14252.0,0.020576284352710177 -14253.0,0.020569178783026273 -14254.0,0.020562075667095406 -14255.0,0.020554975004070244 -14256.0,0.020547876793103728 -14257.0,0.0205407810333491 -14258.0,0.02053368772395987 -14259.0,0.02052659686408987 -14260.0,0.020519508452893208 -14261.0,0.020512422489524288 -14262.0,0.02050533897313782 -14263.0,0.02049825790288877 -14264.0,0.02049117927793243 -14265.0,0.020484103097424367 -14266.0,0.020477029360520458 -14267.0,0.020469958066376838 -14268.0,0.020462889214149963 -14269.0,0.020455822802996567 -14270.0,0.020448758832073692 -14271.0,0.02044169730053864 -14272.0,0.020434638207549025 -14273.0,0.020427581552262757 -14274.0,0.020420527333838027 -14275.0,0.020413475551433313 -14276.0,0.020406426204207385 -14277.0,0.020399379291319315 -14278.0,0.020392334811928457 -14279.0,0.020385292765194463 -14280.0,0.02037825315027725 -14281.0,0.020371215966337057 -14282.0,0.02036418121253439 -14283.0,0.020357148888030075 -14284.0,0.02035011899198518 -14285.0,0.0203430915235611 -14286.0,0.02033606648191951 -14287.0,0.020329043866222387 -14288.0,0.02032202367563196 -14289.0,0.020315005909310783 -14290.0,0.02030799056642169 -14291.0,0.020300977646127805 -14292.0,0.020293967147592525 -14293.0,0.020286959069979554 -14294.0,0.020279953412452884 -14295.0,0.020272950174176796 -14296.0,0.020265949354315835 -14297.0,0.02025895095203487 -14298.0,0.020251954966499036 -14299.0,0.02024496139687377 -14300.0,0.020237970242324793 -14301.0,0.020230981502018096 -14302.0,0.02022399517511998 -14303.0,0.02021701126079703 -14304.0,0.02021002975821612 -14305.0,0.020203050666544396 -14306.0,0.020196073984949308 -14307.0,0.020189099712598593 -14308.0,0.020182127848660275 -14309.0,0.020175158392302647 -14310.0,0.020168191342694312 -14311.0,0.02016122669900415 -14312.0,0.02015426446040134 -14313.0,0.02014730462605532 -14314.0,0.02014034719513584 -14315.0,0.02013339216681293 -14316.0,0.02012643954025691 -14317.0,0.020119489314638386 -14318.0,0.020112541489128232 -14319.0,0.020105596062897628 -14320.0,0.020098653035118038 -14321.0,0.02009171240496122 -14322.0,0.020084774171599186 -14323.0,0.020077838334204266 -14324.0,0.020070904891949067 -14325.0,0.020063973844006485 -14326.0,0.02005704518954968 -14327.0,0.020050118927752124 -14328.0,0.020043195057787566 -14329.0,0.020036273578830047 -14330.0,0.02002935449005386 -14331.0,0.02002243779063363 -14332.0,0.020015523479744234 -14333.0,0.02000861155656086 -14334.0,0.020001702020258944 -14335.0,0.019994794870014244 -14336.0,0.019987890105002782 -14337.0,0.019980987724400868 -14338.0,0.019974087727385115 -14339.0,0.019967190113132378 -14340.0,0.019960294880819837 -14341.0,0.019953402029624936 -14342.0,0.01994651155872542 -14343.0,0.019939623467299286 -14344.0,0.019932737754524848 -14345.0,0.019925854419580686 -14346.0,0.01991897346164568 -14347.0,0.019912094879898964 -14348.0,0.01990521867351998 -14349.0,0.01989834484168845 -14350.0,0.019891473383584383 -14351.0,0.019884604298388044 -14352.0,0.019877737585280015 -14353.0,0.019870873243441143 -14354.0,0.019864011272052565 -14355.0,0.019857151670295704 -14356.0,0.019850294437352246 -14357.0,0.01984343957240418 -14358.0,0.019836587074633767 -14359.0,0.01982973694322357 -14360.0,0.01982288917735639 -14361.0,0.019816043776215358 -14362.0,0.019809200738983863 -14363.0,0.01980236006484559 -14364.0,0.019795521752984477 -14365.0,0.019788685802584773 -14366.0,0.019781852212831 -14367.0,0.019775020982907968 -14368.0,0.019768192112000746 -14369.0,0.019761365599294707 -14370.0,0.019754541443975496 -14371.0,0.01974771964522905 -14372.0,0.019740900202241562 -14373.0,0.019734083114199535 -14374.0,0.019727268380289733 -14375.0,0.01972045599969921 -14376.0,0.019713645971615307 -14377.0,0.019706838295225623 -14378.0,0.01970003296971806 -14379.0,0.01969322999428079 -14380.0,0.019686429368102276 -14381.0,0.019679631090371238 -14382.0,0.019672835160276698 -14383.0,0.01966604157700795 -14384.0,0.019659250339754582 -14385.0,0.019652461447706427 -14386.0,0.019645674900053627 -14387.0,0.019638890695986604 -14388.0,0.019632108834696054 -14389.0,0.019625329315372936 -14390.0,0.019618552137208513 -14391.0,0.019611777299394312 -14392.0,0.019605004801122147 -14393.0,0.019598234641584118 -14394.0,0.019591466819972574 -14395.0,0.019584701335480174 -14396.0,0.01957793818729985 -14397.0,0.019571177374624806 -14398.0,0.019564418896648516 -14399.0,0.019557662752564747 -14400.0,0.019550908941567545 -14401.0,0.019544157462851236 -14402.0,0.0195374083156104 -14403.0,0.019530661499039925 -14404.0,0.01952391701233496 -14405.0,0.01951717485469095 -14406.0,0.019510435025303585 -14407.0,0.019503697523368863 -14408.0,0.019496962348083045 -14409.0,0.019490229498642684 -14410.0,0.019483498974244586 -14411.0,0.019476770774085855 -14412.0,0.019470044897363863 -14413.0,0.019463321343276267 -14414.0,0.019456600111021002 -14415.0,0.019449881199796258 -14416.0,0.019443164608800526 -14417.0,0.019436450337232566 -14418.0,0.01942973838429142 -14419.0,0.019423028749176386 -14420.0,0.019416321431087066 -14421.0,0.019409616429223318 -14422.0,0.019402913742785296 -14423.0,0.019396213370973404 -14424.0,0.019389515312988343 -14425.0,0.019382819568031083 -14426.0,0.01937612613530288 -14427.0,0.01936943501400524 -14428.0,0.019362746203339967 -14429.0,0.019356059702509133 -14430.0,0.019349375510715094 -14431.0,0.019342693627160477 -14432.0,0.019336014051048168 -14433.0,0.01932933678158135 -14434.0,0.019322661817963476 -14435.0,0.019315989159398275 -14436.0,0.019309318805089733 -14437.0,0.019302650754242135 -14438.0,0.01929598500606003 -14439.0,0.01928932155974825 -14440.0,0.019282660414511876 -14441.0,0.0192760015695563 -14442.0,0.01926934502408716 -14443.0,0.01926269077731039 -14444.0,0.01925603882843217 -14445.0,0.01924938917665898 -14446.0,0.01924274182119757 -14447.0,0.01923609676125496 -14448.0,0.019229453996038426 -14449.0,0.019222813524755546 -14450.0,0.019216175346614163 -14451.0,0.019209539460822385 -14452.0,0.01920290586658861 -14453.0,0.019196274563121483 -14454.0,0.019189645549629944 -14455.0,0.019183018825323202 -14456.0,0.019176394389410743 -14457.0,0.019169772241102306 -14458.0,0.019163152379607924 -14459.0,0.019156534804137898 -14460.0,0.019149919513902804 -14461.0,0.01914330650811347 -14462.0,0.019136695785981022 -14463.0,0.019130087346716854 -14464.0,0.019123481189532627 -14465.0,0.019116877313640264 -14466.0,0.019110275718251975 -14467.0,0.01910367640258024 -14468.0,0.01909707936583781 -14469.0,0.019090484607237713 -14470.0,0.019083892125993228 -14471.0,0.019077301921317923 -14472.0,0.01907071399242564 -14473.0,0.019064128338530495 -14474.0,0.019057544958846852 -14475.0,0.019050963852589364 -14476.0,0.019044385018972956 -14477.0,0.019037808457212833 -14478.0,0.019031234166524438 -14479.0,0.019024662146123517 -14480.0,0.019018092395226074 -14481.0,0.019011524913048396 -14482.0,0.01900495969880701 -14483.0,0.018998396751718747 -14484.0,0.018991836071000693 -14485.0,0.018985277655870214 -14486.0,0.018978721505544926 -14487.0,0.01897216761924273 -14488.0,0.018965615996181802 -14489.0,0.018959066635580574 -14490.0,0.018952519536657768 -14491.0,0.018945974698632347 -14492.0,0.018939432120723566 -14493.0,0.018932891802150943 -14494.0,0.018926353742134274 -14495.0,0.0189198179398936 -14496.0,0.018913284394649253 -14497.0,0.018906753105621836 -14498.0,0.018900224072032214 -14499.0,0.01889369729310151 -14500.0,0.018887172768051134 -14501.0,0.01888065049610275 -14502.0,0.01887413047647832 -14503.0,0.01886761270840003 -14504.0,0.018861097191090363 -14505.0,0.01885458392377207 -14506.0,0.018848072905668166 -14507.0,0.018841564136001937 -14508.0,0.01883505761399692 -14509.0,0.01882855333887695 -14510.0,0.018822051309866104 -14511.0,0.01881555152618875 -14512.0,0.018809053987069495 -14513.0,0.018802558691733237 -14514.0,0.018796065639405134 -14515.0,0.018789574829310624 -14516.0,0.01878308626067538 -14517.0,0.018776599932725378 -14518.0,0.018770115844686838 -14519.0,0.018763633995786268 -14520.0,0.018757154385250413 -14521.0,0.018750677012306313 -14522.0,0.01874420187618126 -14523.0,0.018737728976102833 -14524.0,0.018731258311298838 -14525.0,0.018724789880997385 -14526.0,0.018718323684426837 -14527.0,0.018711859720815825 -14528.0,0.018705397989393246 -14529.0,0.018698938489388257 -14530.0,0.018692481220030286 -14531.0,0.018686026180549035 -14532.0,0.01867957337017447 -14533.0,0.018673122788136796 -14534.0,0.01866667443366652 -14535.0,0.018660228305994404 -14536.0,0.018653784404351472 -14537.0,0.018647342727969 -14538.0,0.018640903276078553 -14539.0,0.018634466047911948 -14540.0,0.01862803104270128 -14541.0,0.018621598259678886 -14542.0,0.01861516769807739 -14543.0,0.018608739357129665 -14544.0,0.018602313236068868 -14545.0,0.018595889334128413 -14546.0,0.018589467650541956 -14547.0,0.018583048184543448 -14548.0,0.018576630935367093 -14549.0,0.01857021590224737 -14550.0,0.018563803084418996 -14551.0,0.01855739248111697 -14552.0,0.018550984091576565 -14553.0,0.018544577915033306 -14554.0,0.01853817395072297 -14555.0,0.01853177219788162 -14556.0,0.018525372655745567 -14557.0,0.01851897532355141 -14558.0,0.01851258020053597 -14559.0,0.01850618728593637 -14560.0,0.018499796578989976 -14561.0,0.018493408078934435 -14562.0,0.018487021785007628 -14563.0,0.018480637696447724 -14564.0,0.01847425581249315 -14565.0,0.018467876132382592 -14566.0,0.01846149865535501 -14567.0,0.0184551233806496 -14568.0,0.018448750307505847 -14569.0,0.01844237943516349 -14570.0,0.018436010762862536 -14571.0,0.018429644289843238 -14572.0,0.018423280015346127 -14573.0,0.018416917938611988 -14574.0,0.01841055805888189 -14575.0,0.01840420037539712 -14576.0,0.018397844887399258 -14577.0,0.018391491594130154 -14578.0,0.018385140494831902 -14579.0,0.018378791588746855 -14580.0,0.018372444875117636 -14581.0,0.018366100353187132 -14582.0,0.018359758022198486 -14583.0,0.018353417881395113 -14584.0,0.018347079930020667 -14585.0,0.018340744167319078 -14586.0,0.01833441059253454 -14587.0,0.018328079204911515 -14588.0,0.018321750003694695 -14589.0,0.01831542298812906 -14590.0,0.018309098157459843 -14591.0,0.018302775510932536 -14592.0,0.018296455047792898 -14593.0,0.018290136767286958 -14594.0,0.01828382066866096 -14595.0,0.018277506751161455 -14596.0,0.018271195014035235 -14597.0,0.01826488545652936 -14598.0,0.018258578077891146 -14599.0,0.018252272877368164 -14600.0,0.018245969854208257 -14601.0,0.018239669007659515 -14602.0,0.018233370336970308 -14603.0,0.018227073841389226 -14604.0,0.018220779520165147 -14605.0,0.018214487372547217 -14606.0,0.018208197397784818 -14607.0,0.01820190959512761 -14608.0,0.0181956239638255 -14609.0,0.018189340503128655 -14610.0,0.01818305921228753 -14611.0,0.01817678009055277 -14612.0,0.01817050313717534 -14613.0,0.01816422835140645 -14614.0,0.018157955732497563 -14615.0,0.018151685279700396 -14616.0,0.018145416992266933 -14617.0,0.018139150869449415 -14618.0,0.018132886910500353 -14619.0,0.01812662511467247 -14620.0,0.018120365481218797 -14621.0,0.0181141080093926 -14622.0,0.01810785269844742 -14623.0,0.01810159954763703 -14624.0,0.018095348556215484 -14625.0,0.018089099723437082 -14626.0,0.01808285304855638 -14627.0,0.01807660853082822 -14628.0,0.018070366169507635 -14629.0,0.01806412596384998 -14630.0,0.01805788791311084 -14631.0,0.01805165201654606 -14632.0,0.01804541827341175 -14633.0,0.01803918668296426 -14634.0,0.018032957244460215 -14635.0,0.018026729957156498 -14636.0,0.018020504820310212 -14637.0,0.01801428183317876 -14638.0,0.018008060995019778 -14639.0,0.01800184230509117 -14640.0,0.017995625762651096 -14641.0,0.01798941136695796 -14642.0,0.017983199117270435 -14643.0,0.017976989012847444 -14644.0,0.01797078105294818 -14645.0,0.01796457523683205 -14646.0,0.01795837156375876 -14647.0,0.017952170032988258 -14648.0,0.017945970643780743 -14649.0,0.017939773395396676 -14650.0,0.017933578287096772 -14651.0,0.017927385318142 -14652.0,0.017921194487793595 -14653.0,0.017915005795313008 -14654.0,0.017908819239961987 -14655.0,0.017902634821002524 -14656.0,0.017896452537696863 -14657.0,0.017890272389307498 -14658.0,0.017884094375097186 -14659.0,0.01787791849432893 -14660.0,0.017871744746266002 -14661.0,0.017865573130171928 -14662.0,0.01785940364531045 -14663.0,0.017853236290945606 -14664.0,0.017847071066341678 -14665.0,0.0178409079707632 -14666.0,0.017834747003474958 -14667.0,0.017828588163741995 -14668.0,0.017822431450829606 -14669.0,0.017816276864003357 -14670.0,0.017810124402529017 -14671.0,0.01780397406567266 -14672.0,0.01779782585270059 -14673.0,0.01779167976287938 -14674.0,0.017785535795475836 -14675.0,0.017779393949757034 -14676.0,0.017773254224990296 -14677.0,0.017767116620443196 -14678.0,0.017760981135383578 -14679.0,0.017754847769079492 -14680.0,0.01774871652079929 -14681.0,0.017742587389811555 -14682.0,0.01773646037538513 -14683.0,0.017730335476789105 -14684.0,0.017724212693292826 -14685.0,0.017718092024165886 -14686.0,0.017711973468678154 -14687.0,0.017705857026099694 -14688.0,0.01769974269570088 -14689.0,0.017693630476752317 -14690.0,0.017687520368524858 -14691.0,0.017681412370289612 -14692.0,0.017675306481317942 -14693.0,0.01766920270088146 -14694.0,0.017663101028252026 -14695.0,0.017657001462701775 -14696.0,0.017650904003503037 -14697.0,0.017644808649928453 -14698.0,0.017638715401250882 -14699.0,0.01763262425674345 -14700.0,0.01762653521567953 -14701.0,0.017620448277332734 -14702.0,0.017614363440976947 -14703.0,0.017608280705886298 -14704.0,0.017602200071335134 -14705.0,0.0175961215365981 -14706.0,0.01759004510095006 -14707.0,0.01758397076366615 -14708.0,0.017577898524021737 -14709.0,0.017571828381292457 -14710.0,0.01756576033475418 -14711.0,0.017559694383683044 -14712.0,0.017553630527355403 -14713.0,0.017547568765047896 -14714.0,0.017541509096037394 -14715.0,0.01753545151960103 -14716.0,0.01752939603501617 -14717.0,0.017523342641560448 -14718.0,0.017517291338511737 -14719.0,0.017511242125148156 -14720.0,0.017505195000748094 -14721.0,0.017499149964590146 -14722.0,0.017493107015953194 -14723.0,0.017487066154116365 -14724.0,0.017481027378359024 -14725.0,0.01747499068796079 -14726.0,0.017468956082201524 -14727.0,0.01746292356036135 -14728.0,0.017456893121720645 -14729.0,0.017450864765559987 -14730.0,0.01744483849116026 -14731.0,0.017438814297802564 -14732.0,0.017432792184768266 -14733.0,0.017426772151338966 -14734.0,0.017420754196796517 -14735.0,0.017414738320423027 -14736.0,0.01740872452150084 -14737.0,0.01740271279931257 -14738.0,0.017396703153141034 -14739.0,0.017390695582269338 -14740.0,0.017384690085980828 -14741.0,0.017378686663559084 -14742.0,0.017372685314287945 -14743.0,0.017366686037451496 -14744.0,0.017360688832334062 -14745.0,0.01735469369822024 -14746.0,0.017348700634394823 -14747.0,0.0173427096401429 -14748.0,0.01733672071474978 -14749.0,0.017330733857501033 -14750.0,0.017324749067682475 -14751.0,0.01731876634458016 -14752.0,0.01731278568748039 -14753.0,0.017306807095669723 -14754.0,0.017300830568434965 -14755.0,0.017294856105063133 -14756.0,0.017288883704841534 -14757.0,0.0172829133670577 -14758.0,0.017276945090999418 -14759.0,0.01727097887595471 -14760.0,0.017265014721211856 -14761.0,0.01725905262605937 -14762.0,0.01725309258978604 -14763.0,0.017247134611680842 -14764.0,0.01724117869103305 -14765.0,0.017235224827132162 -14766.0,0.017229273019267927 -14767.0,0.01722332326673034 -14768.0,0.017217375568809642 -14769.0,0.017211429924796306 -14770.0,0.01720548633398107 -14771.0,0.017199544795654918 -14772.0,0.017193605309109034 -14773.0,0.0171876678736349 -14774.0,0.017181732488524223 -14775.0,0.017175799153068955 -14776.0,0.017169867866561293 -14777.0,0.017163938628293674 -14778.0,0.017158011437558785 -14779.0,0.017152086293649574 -14780.0,0.01714616319585918 -14781.0,0.017140242143481033 -14782.0,0.0171343231358088 -14783.0,0.017128406172136387 -14784.0,0.017122491251757944 -14785.0,0.017116578373967857 -14786.0,0.01711066753806077 -14787.0,0.017104758743331575 -14788.0,0.01709885198907537 -14789.0,0.017092947274587527 -14790.0,0.01708704459916367 -14791.0,0.017081143962099643 -14792.0,0.017075245362691546 -14793.0,0.01706934880023572 -14794.0,0.01706345427402875 -14795.0,0.017057561783367457 -14796.0,0.01705167132754893 -14797.0,0.017045782905870444 -14798.0,0.017039896517629577 -14799.0,0.017034012162124117 -14800.0,0.01702812983865211 -14801.0,0.017022249546511832 -14802.0,0.017016371285001813 -14803.0,0.017010495053420817 -14804.0,0.017004620851067864 -14805.0,0.01699874867724218 -14806.0,0.016992878531243268 -14807.0,0.016987010412370863 -14808.0,0.016981144319924944 -14809.0,0.01697528025320573 -14810.0,0.016969418211513675 -14811.0,0.01696355819414948 -14812.0,0.016957700200414094 -14813.0,0.016951844229608715 -14814.0,0.01694599028103473 -14815.0,0.01694013835399383 -14816.0,0.016934288447787924 -14817.0,0.01692844056171915 -14818.0,0.01692259469508991 -14819.0,0.016916750847202823 -14820.0,0.016910909017360767 -14821.0,0.01690506920486687 -14822.0,0.016899231409024457 -14823.0,0.01689339562913713 -14824.0,0.016887561864508727 -14825.0,0.01688173011444332 -14826.0,0.01687590037824523 -14827.0,0.016870072655219004 -14828.0,0.01686424694466944 -14829.0,0.016858423245901574 -14830.0,0.016852601558220697 -14831.0,0.016846781880932294 -14832.0,0.016840964213342132 -14833.0,0.016835148554756207 -14834.0,0.016829334904480756 -14835.0,0.01682352326182225 -14836.0,0.016817713626087406 -14837.0,0.01681190599658317 -14838.0,0.016806100372616754 -14839.0,0.01680029675349556 -14840.0,0.016794495138527273 -14841.0,0.0167886955270198 -14842.0,0.016782897918281293 -14843.0,0.016777102311620135 -14844.0,0.016771308706344957 -14845.0,0.016765517101764625 -14846.0,0.016759727497188237 -14847.0,0.016753939891925158 -14848.0,0.01674815428528493 -14849.0,0.016742370676577394 -14850.0,0.016736589065112606 -14851.0,0.01673080945020086 -14852.0,0.016725031831152693 -14853.0,0.016719256207278873 -14854.0,0.016713482577890418 -14855.0,0.01670771094229858 -14856.0,0.016701941299814827 -14857.0,0.016696173649750887 -14858.0,0.01669040799141873 -14859.0,0.016684644324130547 -14860.0,0.016678882647198783 -14861.0,0.016673122959936105 -14862.0,0.016667365261655426 -14863.0,0.016661609551669912 -14864.0,0.016655855829292916 -14865.0,0.01665010409383808 -14866.0,0.01664435434461926 -14867.0,0.016638606580950552 -14868.0,0.016632860802146293 -14869.0,0.01662711700752105 -14870.0,0.016621375196389634 -14871.0,0.016615635368067087 -14872.0,0.016609897521868706 -14873.0,0.016604161657109973 -14874.0,0.01659842777310666 -14875.0,0.016592695869174758 -14876.0,0.016586965944630487 -14877.0,0.016581237998790316 -14878.0,0.016575512030970938 -14879.0,0.016569788040489284 -14880.0,0.016564066026662546 -14881.0,0.016558345988808097 -14882.0,0.01655262792624359 -14883.0,0.016546911838286903 -14884.0,0.016541197724256152 -14885.0,0.01653548558346968 -14886.0,0.016529775415246074 -14887.0,0.016524067218904148 -14888.0,0.016518360993762964 -14889.0,0.016512656739141818 -14890.0,0.016506954454360206 -14891.0,0.016501254138737903 -14892.0,0.016495555791594903 -14893.0,0.016489859412251433 -14894.0,0.016484165000027962 -14895.0,0.016478472554245182 -14896.0,0.016472782074224025 -14897.0,0.01646709355928568 -14898.0,0.01646140700875151 -14899.0,0.016455722421943174 -14900.0,0.01645003979818254 -14901.0,0.01644435913679171 -14902.0,0.016438680437093022 -14903.0,0.016433003698409054 -14904.0,0.016427328920062607 -14905.0,0.016421656101376723 -14906.0,0.016415985241674688 -14907.0,0.016410316340279986 -14908.0,0.016404649396516372 -14909.0,0.016398984409707818 -14910.0,0.01639332137917853 -14911.0,0.016387660304252958 -14912.0,0.016382001184255774 -14913.0,0.01637634401851188 -14914.0,0.01637068880634644 -14915.0,0.016365035547084794 -14916.0,0.016359384240052566 -14917.0,0.0163537348845756 -14918.0,0.01634808747997996 -14919.0,0.016342442025591958 -14920.0,0.016336798520738133 -14921.0,0.016331156964745255 -14922.0,0.016325517356940326 -14923.0,0.016319879696650597 -14924.0,0.01631424398320351 -14925.0,0.016308610215926778 -14926.0,0.01630297839414833 -14927.0,0.016297348517196338 -14928.0,0.01629172058439919 -14929.0,0.016286094595085523 -14930.0,0.016280470548584194 -14931.0,0.016274848444224308 -14932.0,0.01626922828133516 -14933.0,0.016263610059246324 -14934.0,0.016257993777287587 -14935.0,0.016252379434788963 -14936.0,0.016246767031080703 -14937.0,0.01624115656549329 -14938.0,0.016235548037357436 -14939.0,0.0162299414460041 -14940.0,0.01622433679076442 -14941.0,0.01621873407096983 -14942.0,0.016213133285951954 -14943.0,0.016207534435042664 -14944.0,0.01620193751757406 -14945.0,0.016196342532878466 -14946.0,0.016190749480288445 -14947.0,0.016185158359136784 -14948.0,0.01617956916875652 -14949.0,0.01617398190848087 -14950.0,0.016168396577643334 -14951.0,0.01616281317557762 -14952.0,0.016157231701617668 -14953.0,0.016151652155097652 -14954.0,0.01614607453535197 -14955.0,0.016140498841715256 -14956.0,0.01613492507352238 -14957.0,0.01612935323010841 -14958.0,0.016123783310808673 -14959.0,0.01611821531495872 -14960.0,0.01611264924189433 -14961.0,0.016107085090951517 -14962.0,0.01610152286146651 -14963.0,0.01609596255277578 -14964.0,0.01609040416421602 -14965.0,0.01608484769512417 -14966.0,0.01607929314483736 -14967.0,0.016073740512692978 -14968.0,0.016068189798028643 -14969.0,0.01606264100018219 -14970.0,0.016057094118491693 -14971.0,0.016051549152295445 -14972.0,0.016046006100931976 -14973.0,0.01604046496374005 -14974.0,0.016034925740058624 -14975.0,0.016029388429226923 -14976.0,0.016023853030584387 -14977.0,0.01601831954347068 -14978.0,0.016012787967225703 -14979.0,0.016007258301189577 -14980.0,0.01600173054470265 -14981.0,0.015996204697105502 -14982.0,0.015990680757738955 -14983.0,0.015985158725944016 -14984.0,0.015979638601061958 -14985.0,0.015974120382434277 -14986.0,0.01596860406940268 -14987.0,0.01596308966130912 -14988.0,0.01595757715749576 -14989.0,0.01595206655730501 -14990.0,0.015946557860079494 -14991.0,0.01594105106516205 -14992.0,0.015935546171895767 -14993.0,0.01593004317962395 -14994.0,0.015924542087690133 -14995.0,0.015919042895438076 -14996.0,0.015913545602211764 -14997.0,0.015908050207355414 -14998.0,0.015902556710213463 -14999.0,0.01589706511013059 diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516211000_theo_VPR_VPR.png b/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516211000_theo_VPR_VPR.png deleted file mode 100644 index 96707e2..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/VPRtheo/20200516211000_theo_VPR_VPR.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516200500_ALONG_RNG_VPR_Zlin.png b/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516200500_ALONG_RNG_VPR_Zlin.png deleted file mode 100644 index 3621709..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516200500_ALONG_RNG_VPR_Zlin.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516201000_ALONG_RNG_VPR_Zlin.png b/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516201000_ALONG_RNG_VPR_Zlin.png deleted file mode 100644 index 96068cd..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516201000_ALONG_RNG_VPR_Zlin.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516201500_ALONG_RNG_VPR_Zlin.png b/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516201500_ALONG_RNG_VPR_Zlin.png deleted file mode 100644 index 863aa18..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516201500_ALONG_RNG_VPR_Zlin.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516202000_ALONG_RNG_VPR_Zlin.png b/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516202000_ALONG_RNG_VPR_Zlin.png deleted file mode 100644 index c530bc8..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516202000_ALONG_RNG_VPR_Zlin.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516202500_ALONG_RNG_VPR_Zlin.png b/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516202500_ALONG_RNG_VPR_Zlin.png deleted file mode 100644 index d7e73e2..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516202500_ALONG_RNG_VPR_Zlin.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516203000_ALONG_RNG_VPR_Zlin.png b/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516203000_ALONG_RNG_VPR_Zlin.png deleted file mode 100644 index 4e2b39b..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516203000_ALONG_RNG_VPR_Zlin.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516203500_ALONG_RNG_VPR_Zlin.png b/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516203500_ALONG_RNG_VPR_Zlin.png deleted file mode 100644 index 8e11a95..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516203500_ALONG_RNG_VPR_Zlin.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516204000_ALONG_RNG_VPR_Zlin.png b/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516204000_ALONG_RNG_VPR_Zlin.png deleted file mode 100644 index 0b3dbce..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516204000_ALONG_RNG_VPR_Zlin.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516204500_ALONG_RNG_VPR_Zlin.png b/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516204500_ALONG_RNG_VPR_Zlin.png deleted file mode 100644 index 39262a9..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516204500_ALONG_RNG_VPR_Zlin.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516205000_ALONG_RNG_VPR_Zlin.png b/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516205000_ALONG_RNG_VPR_Zlin.png deleted file mode 100644 index 2ce8547..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516205000_ALONG_RNG_VPR_Zlin.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516205500_ALONG_RNG_VPR_Zlin.png b/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516205500_ALONG_RNG_VPR_Zlin.png deleted file mode 100644 index 0215489..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516205500_ALONG_RNG_VPR_Zlin.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516210000_ALONG_RNG_VPR_Zlin.png b/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516210000_ALONG_RNG_VPR_Zlin.png deleted file mode 100644 index b86b69f..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516210000_ALONG_RNG_VPR_Zlin.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516210500_ALONG_RNG_VPR_Zlin.png b/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516210500_ALONG_RNG_VPR_Zlin.png deleted file mode 100644 index 8073ae9..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516210500_ALONG_RNG_VPR_Zlin.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516211000_ALONG_RNG_VPR_Zlin.png b/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516211000_ALONG_RNG_VPR_Zlin.png deleted file mode 100644 index 34b7369..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/VPR/height_Z/20200516211000_ALONG_RNG_VPR_Zlin.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516200500_ppi_hydroMF_to_SAN_echoID_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516200500_ppi_hydroMF_to_SAN_echoID_el2.2.png index bf7f275..916f032 100644 Binary files a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516200500_ppi_hydroMF_to_SAN_echoID_el2.2.png and b/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516200500_ppi_hydroMF_to_SAN_echoID_el2.2.png differ diff --git a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516201000_ppi_hydroMF_to_SAN_echoID_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516201000_ppi_hydroMF_to_SAN_echoID_el2.2.png deleted file mode 100644 index a79653b..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516201000_ppi_hydroMF_to_SAN_echoID_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516201500_ppi_hydroMF_to_SAN_echoID_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516201500_ppi_hydroMF_to_SAN_echoID_el2.2.png deleted file mode 100644 index 4e2066a..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516201500_ppi_hydroMF_to_SAN_echoID_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516202000_ppi_hydroMF_to_SAN_echoID_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516202000_ppi_hydroMF_to_SAN_echoID_el2.2.png deleted file mode 100644 index 25cf6cb..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516202000_ppi_hydroMF_to_SAN_echoID_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516202500_ppi_hydroMF_to_SAN_echoID_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516202500_ppi_hydroMF_to_SAN_echoID_el2.2.png deleted file mode 100644 index 41f1f08..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516202500_ppi_hydroMF_to_SAN_echoID_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516203000_ppi_hydroMF_to_SAN_echoID_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516203000_ppi_hydroMF_to_SAN_echoID_el2.2.png deleted file mode 100644 index 34ef8cc..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516203000_ppi_hydroMF_to_SAN_echoID_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516203500_ppi_hydroMF_to_SAN_echoID_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516203500_ppi_hydroMF_to_SAN_echoID_el2.2.png deleted file mode 100644 index f6039f8..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516203500_ppi_hydroMF_to_SAN_echoID_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516204000_ppi_hydroMF_to_SAN_echoID_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516204000_ppi_hydroMF_to_SAN_echoID_el2.2.png deleted file mode 100644 index 128087f..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516204000_ppi_hydroMF_to_SAN_echoID_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516204500_ppi_hydroMF_to_SAN_echoID_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516204500_ppi_hydroMF_to_SAN_echoID_el2.2.png deleted file mode 100644 index 34ce7c1..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516204500_ppi_hydroMF_to_SAN_echoID_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516205000_ppi_hydroMF_to_SAN_echoID_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516205000_ppi_hydroMF_to_SAN_echoID_el2.2.png deleted file mode 100644 index 80efe98..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516205000_ppi_hydroMF_to_SAN_echoID_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516205500_ppi_hydroMF_to_SAN_echoID_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516205500_ppi_hydroMF_to_SAN_echoID_el2.2.png deleted file mode 100644 index cdab0f1..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516205500_ppi_hydroMF_to_SAN_echoID_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516210000_ppi_hydroMF_to_SAN_echoID_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516210000_ppi_hydroMF_to_SAN_echoID_el2.2.png deleted file mode 100644 index 47c85ad..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516210000_ppi_hydroMF_to_SAN_echoID_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516210500_ppi_hydroMF_to_SAN_echoID_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516210500_ppi_hydroMF_to_SAN_echoID_el2.2.png deleted file mode 100644 index 9dbb81d..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516210500_ppi_hydroMF_to_SAN_echoID_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516211000_ppi_hydroMF_to_SAN_echoID_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516211000_ppi_hydroMF_to_SAN_echoID_el2.2.png deleted file mode 100644 index 05a8ca2..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516211000_ppi_hydroMF_to_SAN_echoID_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516211500_ppi_hydroMF_to_SAN_echoID_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516211500_ppi_hydroMF_to_SAN_echoID_el2.2.png deleted file mode 100644 index 95eab99..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/echoID/PPI_EL03/20200516211500_ppi_hydroMF_to_SAN_echoID_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516200500_ppi_ML_DETECTION_H_ISO0_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516200500_ppi_ML_DETECTION_H_ISO0_el2.2.png deleted file mode 100644 index 75d2909..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516200500_ppi_ML_DETECTION_H_ISO0_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516201000_ppi_ML_DETECTION_H_ISO0_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516201000_ppi_ML_DETECTION_H_ISO0_el2.2.png deleted file mode 100644 index 6327b13..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516201000_ppi_ML_DETECTION_H_ISO0_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516201500_ppi_ML_DETECTION_H_ISO0_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516201500_ppi_ML_DETECTION_H_ISO0_el2.2.png deleted file mode 100644 index 8dc119c..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516201500_ppi_ML_DETECTION_H_ISO0_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516202000_ppi_ML_DETECTION_H_ISO0_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516202000_ppi_ML_DETECTION_H_ISO0_el2.2.png deleted file mode 100644 index 79186f1..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516202000_ppi_ML_DETECTION_H_ISO0_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516202500_ppi_ML_DETECTION_H_ISO0_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516202500_ppi_ML_DETECTION_H_ISO0_el2.2.png deleted file mode 100644 index 0ba9d69..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516202500_ppi_ML_DETECTION_H_ISO0_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516203000_ppi_ML_DETECTION_H_ISO0_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516203000_ppi_ML_DETECTION_H_ISO0_el2.2.png deleted file mode 100644 index 3809556..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516203000_ppi_ML_DETECTION_H_ISO0_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516203500_ppi_ML_DETECTION_H_ISO0_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516203500_ppi_ML_DETECTION_H_ISO0_el2.2.png deleted file mode 100644 index 8e46acb..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516203500_ppi_ML_DETECTION_H_ISO0_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516204000_ppi_ML_DETECTION_H_ISO0_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516204000_ppi_ML_DETECTION_H_ISO0_el2.2.png deleted file mode 100644 index f024265..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516204000_ppi_ML_DETECTION_H_ISO0_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516204500_ppi_ML_DETECTION_H_ISO0_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516204500_ppi_ML_DETECTION_H_ISO0_el2.2.png deleted file mode 100644 index 2c6aa91..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516204500_ppi_ML_DETECTION_H_ISO0_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516205000_ppi_ML_DETECTION_H_ISO0_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516205000_ppi_ML_DETECTION_H_ISO0_el2.2.png deleted file mode 100644 index e649097..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516205000_ppi_ML_DETECTION_H_ISO0_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516205500_ppi_ML_DETECTION_H_ISO0_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516205500_ppi_ML_DETECTION_H_ISO0_el2.2.png deleted file mode 100644 index eea0a2a..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516205500_ppi_ML_DETECTION_H_ISO0_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516210000_ppi_ML_DETECTION_H_ISO0_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516210000_ppi_ML_DETECTION_H_ISO0_el2.2.png deleted file mode 100644 index e0b2880..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516210000_ppi_ML_DETECTION_H_ISO0_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516210500_ppi_ML_DETECTION_H_ISO0_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516210500_ppi_ML_DETECTION_H_ISO0_el2.2.png deleted file mode 100644 index 62b2a4a..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516210500_ppi_ML_DETECTION_H_ISO0_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516211000_ppi_ML_DETECTION_H_ISO0_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516211000_ppi_ML_DETECTION_H_ISO0_el2.2.png deleted file mode 100644 index 2910fa9..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_H_ISO0/20200516211000_ppi_ML_DETECTION_H_ISO0_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516200500_ppi_ML_DETECTION_ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516200500_ppi_ML_DETECTION_ml_el2.2.png deleted file mode 100644 index 38d28bb..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516200500_ppi_ML_DETECTION_ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516201000_ppi_ML_DETECTION_ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516201000_ppi_ML_DETECTION_ml_el2.2.png deleted file mode 100644 index 74c1f91..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516201000_ppi_ML_DETECTION_ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516201500_ppi_ML_DETECTION_ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516201500_ppi_ML_DETECTION_ml_el2.2.png deleted file mode 100644 index 4aeb85c..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516201500_ppi_ML_DETECTION_ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516202000_ppi_ML_DETECTION_ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516202000_ppi_ML_DETECTION_ml_el2.2.png deleted file mode 100644 index 1d387ba..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516202000_ppi_ML_DETECTION_ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516202500_ppi_ML_DETECTION_ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516202500_ppi_ML_DETECTION_ml_el2.2.png deleted file mode 100644 index a0bf884..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516202500_ppi_ML_DETECTION_ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516203000_ppi_ML_DETECTION_ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516203000_ppi_ML_DETECTION_ml_el2.2.png deleted file mode 100644 index 23b04f8..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516203000_ppi_ML_DETECTION_ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516203500_ppi_ML_DETECTION_ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516203500_ppi_ML_DETECTION_ml_el2.2.png deleted file mode 100644 index a8adc0a..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516203500_ppi_ML_DETECTION_ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516204000_ppi_ML_DETECTION_ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516204000_ppi_ML_DETECTION_ml_el2.2.png deleted file mode 100644 index 80a9b9f..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516204000_ppi_ML_DETECTION_ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516204500_ppi_ML_DETECTION_ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516204500_ppi_ML_DETECTION_ml_el2.2.png deleted file mode 100644 index 09815ca..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516204500_ppi_ML_DETECTION_ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516205000_ppi_ML_DETECTION_ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516205000_ppi_ML_DETECTION_ml_el2.2.png deleted file mode 100644 index ae863ee..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516205000_ppi_ML_DETECTION_ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516205500_ppi_ML_DETECTION_ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516205500_ppi_ML_DETECTION_ml_el2.2.png deleted file mode 100644 index b8b1215..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516205500_ppi_ML_DETECTION_ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516210000_ppi_ML_DETECTION_ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516210000_ppi_ML_DETECTION_ml_el2.2.png deleted file mode 100644 index e0ba38b..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516210000_ppi_ML_DETECTION_ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516210500_ppi_ML_DETECTION_ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516210500_ppi_ML_DETECTION_ml_el2.2.png deleted file mode 100644 index 19621d4..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516210500_ppi_ML_DETECTION_ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516211000_ppi_ML_DETECTION_ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516211000_ppi_ML_DETECTION_ml_el2.2.png deleted file mode 100644 index 46594c1..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/EL03_ml/20200516211000_ppi_ML_DETECTION_ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/ML_TS/20200516_ts_ML_DETECTION_ml.csv b/pyrad_outputs/05_ml/2020-05-16/ml_MF/ML_TS/20200516_ts_ML_DETECTION_ml.csv deleted file mode 100644 index ea75e25..0000000 --- a/pyrad_outputs/05_ml/2020-05-16/ml_MF/ML_TS/20200516_ts_ML_DETECTION_ml.csv +++ /dev/null @@ -1,23 +0,0 @@ -# Weather radar detected melting layer data file -# Comment lines are preceded by "#" -# Description: -# Time series of melting layer data detected by weather radar. -# Fill Value: -9999.0 -# Start: 2020-05-16 20:05:00 UTC -# -date-time [UTC],mean ml top height [m MSL],std ml top height [m MSL],mean ml thickness [m],std ml thickness [m],N valid rays,rays total -2020-05-16 20:05:00,2854.0923313570675,0.0,700.0,0.0,3600,3600 -2020-05-16 20:05:00,2854.0923313570675,0.0,700.0,0.0,3600,3600 -2020-05-16 20:10:00,2765.4759676853764,4.547473508864641e-13,700.0,0.0,4320,4320 -2020-05-16 20:15:00,2846.063728140064,4.547473508864641e-13,700.0,0.0,4320,4320 -2020-05-16 20:20:00,2840.0335039441557,9.094947017729282e-13,700.0,0.0,3600,3600 -2020-05-16 20:25:00,2791.6482995673073,4.547473508864641e-13,700.0,0.0,4320,4320 -2020-05-16 20:30:00,2790.925201985461,0.0,700.0,0.0,4320,4320 -2020-05-16 20:35:00,2664.5693170528643,4.547473508864641e-13,700.0000000000001,1.1368683772161603e-13,3600,3600 -2020-05-16 20:40:00,2784.809404167106,9.094947017729282e-13,700.0,0.0,4320,4320 -2020-05-16 20:45:00,2787.601180349058,4.547473508864641e-13,700.0,0.0,4320,4320 -2020-05-16 20:50:00,2829.266097399398,4.547473508864641e-13,700.0,0.0,3600,3600 -2020-05-16 20:55:00,2715.5275780823927,4.547473508864641e-13,700.0000000000001,1.1368683772161603e-13,4320,4320 -2020-05-16 21:00:00,2780.269798866221,4.547473508864641e-13,700.0,0.0,4320,4320 -2020-05-16 21:05:00,2780.014458903493,4.547473508864641e-13,700.0,0.0,3600,3600 -2020-05-16 21:10:00,2808.8164947077235,0.0,700.0,0.0,4320,4320 diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF/ML_TS/20200516_ts_ML_DETECTION_ml.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF/ML_TS/20200516_ts_ML_DETECTION_ml.png deleted file mode 100644 index c7e7e07..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF/ML_TS/20200516_ts_ML_DETECTION_ml.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516200500_ppi_RAW_RhoHV-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516200500_ppi_RAW_RhoHV-ml_el2.2.png deleted file mode 100644 index 93962e3..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516200500_ppi_RAW_RhoHV-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516201000_ppi_RAW_RhoHV-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516201000_ppi_RAW_RhoHV-ml_el2.2.png deleted file mode 100644 index 83e1f54..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516201000_ppi_RAW_RhoHV-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516201500_ppi_RAW_RhoHV-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516201500_ppi_RAW_RhoHV-ml_el2.2.png deleted file mode 100644 index ae97496..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516201500_ppi_RAW_RhoHV-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516202000_ppi_RAW_RhoHV-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516202000_ppi_RAW_RhoHV-ml_el2.2.png deleted file mode 100644 index 1ccafad..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516202000_ppi_RAW_RhoHV-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516202500_ppi_RAW_RhoHV-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516202500_ppi_RAW_RhoHV-ml_el2.2.png deleted file mode 100644 index 26ca3ef..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516202500_ppi_RAW_RhoHV-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516203000_ppi_RAW_RhoHV-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516203000_ppi_RAW_RhoHV-ml_el2.2.png deleted file mode 100644 index 6aed98c..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516203000_ppi_RAW_RhoHV-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516203500_ppi_RAW_RhoHV-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516203500_ppi_RAW_RhoHV-ml_el2.2.png deleted file mode 100644 index 511dc09..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516203500_ppi_RAW_RhoHV-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516204000_ppi_RAW_RhoHV-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516204000_ppi_RAW_RhoHV-ml_el2.2.png deleted file mode 100644 index 1acd9ac..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516204000_ppi_RAW_RhoHV-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516204500_ppi_RAW_RhoHV-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516204500_ppi_RAW_RhoHV-ml_el2.2.png deleted file mode 100644 index 2c64841..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516204500_ppi_RAW_RhoHV-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516205000_ppi_RAW_RhoHV-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516205000_ppi_RAW_RhoHV-ml_el2.2.png deleted file mode 100644 index fbe3a47..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516205000_ppi_RAW_RhoHV-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516205500_ppi_RAW_RhoHV-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516205500_ppi_RAW_RhoHV-ml_el2.2.png deleted file mode 100644 index 686b3ee..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516205500_ppi_RAW_RhoHV-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516210000_ppi_RAW_RhoHV-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516210000_ppi_RAW_RhoHV-ml_el2.2.png deleted file mode 100644 index 39fe646..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516210000_ppi_RAW_RhoHV-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516210500_ppi_RAW_RhoHV-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516210500_ppi_RAW_RhoHV-ml_el2.2.png deleted file mode 100644 index f4a6351..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516210500_ppi_RAW_RhoHV-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516211000_ppi_RAW_RhoHV-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516211000_ppi_RAW_RhoHV-ml_el2.2.png deleted file mode 100644 index 6a04535..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_RhoHV/20200516211000_ppi_RAW_RhoHV-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516200500_ppi_RAW_ZDR-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516200500_ppi_RAW_ZDR-ml_el2.2.png deleted file mode 100644 index 18dd581..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516200500_ppi_RAW_ZDR-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516201000_ppi_RAW_ZDR-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516201000_ppi_RAW_ZDR-ml_el2.2.png deleted file mode 100644 index 913795b..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516201000_ppi_RAW_ZDR-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516201500_ppi_RAW_ZDR-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516201500_ppi_RAW_ZDR-ml_el2.2.png deleted file mode 100644 index 3b4800e..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516201500_ppi_RAW_ZDR-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516202000_ppi_RAW_ZDR-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516202000_ppi_RAW_ZDR-ml_el2.2.png deleted file mode 100644 index b1b45cd..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516202000_ppi_RAW_ZDR-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516202500_ppi_RAW_ZDR-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516202500_ppi_RAW_ZDR-ml_el2.2.png deleted file mode 100644 index 8d927c2..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516202500_ppi_RAW_ZDR-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516203000_ppi_RAW_ZDR-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516203000_ppi_RAW_ZDR-ml_el2.2.png deleted file mode 100644 index e6d97af..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516203000_ppi_RAW_ZDR-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516203500_ppi_RAW_ZDR-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516203500_ppi_RAW_ZDR-ml_el2.2.png deleted file mode 100644 index 1de76f4..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516203500_ppi_RAW_ZDR-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516204000_ppi_RAW_ZDR-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516204000_ppi_RAW_ZDR-ml_el2.2.png deleted file mode 100644 index 38dd1b9..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516204000_ppi_RAW_ZDR-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516204500_ppi_RAW_ZDR-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516204500_ppi_RAW_ZDR-ml_el2.2.png deleted file mode 100644 index 0ad4abe..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516204500_ppi_RAW_ZDR-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516205000_ppi_RAW_ZDR-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516205000_ppi_RAW_ZDR-ml_el2.2.png deleted file mode 100644 index f7283e1..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516205000_ppi_RAW_ZDR-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516205500_ppi_RAW_ZDR-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516205500_ppi_RAW_ZDR-ml_el2.2.png deleted file mode 100644 index 116ded8..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516205500_ppi_RAW_ZDR-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516210000_ppi_RAW_ZDR-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516210000_ppi_RAW_ZDR-ml_el2.2.png deleted file mode 100644 index 28aa56b..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516210000_ppi_RAW_ZDR-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516210500_ppi_RAW_ZDR-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516210500_ppi_RAW_ZDR-ml_el2.2.png deleted file mode 100644 index af1c310..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516210500_ppi_RAW_ZDR-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516211000_ppi_RAW_ZDR-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516211000_ppi_RAW_ZDR-ml_el2.2.png deleted file mode 100644 index 1762e3f..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_ZDR/20200516211000_ppi_RAW_ZDR-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516200500_ppi_RAW_dBZ-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516200500_ppi_RAW_dBZ-ml_el2.2.png deleted file mode 100644 index efdfa2b..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516200500_ppi_RAW_dBZ-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516201000_ppi_RAW_dBZ-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516201000_ppi_RAW_dBZ-ml_el2.2.png deleted file mode 100644 index 9fe7801..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516201000_ppi_RAW_dBZ-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516201500_ppi_RAW_dBZ-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516201500_ppi_RAW_dBZ-ml_el2.2.png deleted file mode 100644 index 2fe37b1..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516201500_ppi_RAW_dBZ-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516202000_ppi_RAW_dBZ-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516202000_ppi_RAW_dBZ-ml_el2.2.png deleted file mode 100644 index 0d58c5f..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516202000_ppi_RAW_dBZ-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516202500_ppi_RAW_dBZ-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516202500_ppi_RAW_dBZ-ml_el2.2.png deleted file mode 100644 index ddd9a97..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516202500_ppi_RAW_dBZ-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516203000_ppi_RAW_dBZ-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516203000_ppi_RAW_dBZ-ml_el2.2.png deleted file mode 100644 index ad8cc10..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516203000_ppi_RAW_dBZ-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516203500_ppi_RAW_dBZ-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516203500_ppi_RAW_dBZ-ml_el2.2.png deleted file mode 100644 index de3e256..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516203500_ppi_RAW_dBZ-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516204000_ppi_RAW_dBZ-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516204000_ppi_RAW_dBZ-ml_el2.2.png deleted file mode 100644 index f25f90b..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516204000_ppi_RAW_dBZ-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516204500_ppi_RAW_dBZ-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516204500_ppi_RAW_dBZ-ml_el2.2.png deleted file mode 100644 index 3509265..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516204500_ppi_RAW_dBZ-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516205000_ppi_RAW_dBZ-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516205000_ppi_RAW_dBZ-ml_el2.2.png deleted file mode 100644 index 247eda4..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516205000_ppi_RAW_dBZ-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516205500_ppi_RAW_dBZ-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516205500_ppi_RAW_dBZ-ml_el2.2.png deleted file mode 100644 index e141710..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516205500_ppi_RAW_dBZ-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516210000_ppi_RAW_dBZ-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516210000_ppi_RAW_dBZ-ml_el2.2.png deleted file mode 100644 index 5ec6c23..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516210000_ppi_RAW_dBZ-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516210500_ppi_RAW_dBZ-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516210500_ppi_RAW_dBZ-ml_el2.2.png deleted file mode 100644 index d43ed80..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516210500_ppi_RAW_dBZ-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516211000_ppi_RAW_dBZ-ml_el2.2.png b/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516211000_ppi_RAW_dBZ-ml_el2.2.png deleted file mode 100644 index 7cced68..0000000 Binary files a/pyrad_outputs/05_ml/2020-05-16/ml_MF_plots/EL03_dBZ/20200516211000_ppi_RAW_dBZ-ml_el2.2.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516200500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516200500_ppi_RAINRATE_RR_el0.4.png index 7f5f2b6..a2a84b7 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516200500_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516200500_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516201000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516201000_ppi_RAINRATE_RR_el0.4.png index e7f15fb..340a443 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516201000_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516201000_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516201500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516201500_ppi_RAINRATE_RR_el0.4.png index 270ca53..c05a6fb 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516201500_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516201500_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516202000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516202000_ppi_RAINRATE_RR_el0.4.png index b38b8c0..7846c7b 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516202000_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516202000_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516202500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516202500_ppi_RAINRATE_RR_el0.4.png index cdb665b..cbcd484 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516202500_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516202500_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516203000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516203000_ppi_RAINRATE_RR_el0.4.png index 409a76b..aa18d1e 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516203000_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516203000_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516203500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516203500_ppi_RAINRATE_RR_el0.4.png index 5f37bd8..0ad21da 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516203500_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516203500_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516204000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516204000_ppi_RAINRATE_RR_el0.4.png index a3210a3..c467c9d 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516204000_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516204000_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516204500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516204500_ppi_RAINRATE_RR_el0.4.png index aa61dfb..6af43d9 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516204500_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516204500_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516205000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516205000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index b9c7498..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516205000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516205500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516205500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 5f016f3..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516205500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516210000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516210000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 34e8eed..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516210000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516210500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516210500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 9affb4f..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516210500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516211000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516211000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 6f3682c..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516211000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516211500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516211500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index d88b4e1..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516211500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516212000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516212000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index bedacac..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516212000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516212500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516212500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index e0a4d2a..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516212500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516213000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516213000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 1cbcbcf..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516213000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516213500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516213500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index e9d2644..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516213500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516214000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516214000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index c131c83..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516214000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516214500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516214500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index dc582b9..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516214500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516215000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516215000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 040599b..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516215000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516215500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516215500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 788cdd0..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516215500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516220000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516220000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 4004baf..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_Z/PPI_EL00/20200516220000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516200500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516200500_ppi_RAINRATE_RR_el0.4.png index 343ba3e..a965c00 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516200500_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516200500_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516201000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516201000_ppi_RAINRATE_RR_el0.4.png index 39e3439..0ad711b 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516201000_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516201000_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516201500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516201500_ppi_RAINRATE_RR_el0.4.png index 264ab08..4d345ce 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516201500_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516201500_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516202000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516202000_ppi_RAINRATE_RR_el0.4.png index 455dd90..8c9a25f 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516202000_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516202000_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516202500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516202500_ppi_RAINRATE_RR_el0.4.png index 45fbdc8..06ce10a 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516202500_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516202500_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516203000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516203000_ppi_RAINRATE_RR_el0.4.png index 820744a..00a6e0b 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516203000_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516203000_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516203500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516203500_ppi_RAINRATE_RR_el0.4.png index 01b8a4b..2778a05 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516203500_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516203500_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516204000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516204000_ppi_RAINRATE_RR_el0.4.png index 2ebefec..a6c10ad 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516204000_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516204000_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516204500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516204500_ppi_RAINRATE_RR_el0.4.png index 3a24662..108f5ca 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516204500_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516204500_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516205000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516205000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 8e8a2d5..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516205000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516205500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516205500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index de36002..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516205500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516210000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516210000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index a5259c9..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516210000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516210500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516210500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 1c1d36d..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516210500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516211000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516211000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index e27794c..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516211000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516211500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516211500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 4aa4f10..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516211500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516212000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516212000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 05fe028..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516212000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516212500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516212500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 47018fe..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516212500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516213000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516213000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 13b8c4c..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516213000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516213500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516213500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 9845b4b..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516213500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516214000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516214000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 5f60aa5..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516214000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516214500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516214500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 0537f61..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516214500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516215000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516215000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 548efc6..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516215000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516215500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516215500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index ce457c4..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516215500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516220000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516220000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 10a0826..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZA/PPI_EL00/20200516220000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516200500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516200500_ppi_RAINRATE_RR_el0.4.png index 7f5f2b6..a2a84b7 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516200500_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516200500_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516201000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516201000_ppi_RAINRATE_RR_el0.4.png index e7f15fb..340a443 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516201000_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516201000_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516201500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516201500_ppi_RAINRATE_RR_el0.4.png index 270ca53..c05a6fb 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516201500_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516201500_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516202000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516202000_ppi_RAINRATE_RR_el0.4.png index b38b8c0..7846c7b 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516202000_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516202000_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516202500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516202500_ppi_RAINRATE_RR_el0.4.png index cdb665b..cbcd484 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516202500_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516202500_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516203000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516203000_ppi_RAINRATE_RR_el0.4.png index 409a76b..aa18d1e 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516203000_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516203000_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516203500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516203500_ppi_RAINRATE_RR_el0.4.png index 5f37bd8..0ad21da 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516203500_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516203500_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516204000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516204000_ppi_RAINRATE_RR_el0.4.png index a3210a3..c467c9d 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516204000_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516204000_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516204500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516204500_ppi_RAINRATE_RR_el0.4.png index aa61dfb..6af43d9 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516204500_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516204500_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516205000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516205000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index b9c7498..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516205000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516205500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516205500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 5f016f3..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516205500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516210000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516210000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 34e8eed..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516210000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516210500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516210500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 9affb4f..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516210500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516211000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516211000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 6f3682c..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516211000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516211500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516211500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index d88b4e1..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516211500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516212000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516212000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index bedacac..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516212000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516212500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516212500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 68cbb64..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516212500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516213000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516213000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 1cbcbcf..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516213000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516213500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516213500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index e9d2644..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516213500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516214000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516214000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index c131c83..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516214000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516214500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516214500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index dc582b9..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516214500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516215000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516215000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 040599b..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516215000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516215500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516215500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 788cdd0..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516215500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516220000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516220000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 4004baf..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_ZKDP/PPI_EL00/20200516220000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516200500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516200500_ppi_RAINRATE_RR_el0.4.png index 9fb76cb..1771923 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516200500_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516200500_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516201000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516201000_ppi_RAINRATE_RR_el0.4.png index 86712f2..bc8fd70 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516201000_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516201000_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516201500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516201500_ppi_RAINRATE_RR_el0.4.png index df61171..43c3cf2 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516201500_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516201500_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516202000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516202000_ppi_RAINRATE_RR_el0.4.png index 5014fff..22bb42c 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516202000_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516202000_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516202500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516202500_ppi_RAINRATE_RR_el0.4.png index a826b54..d4a8ba2 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516202500_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516202500_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516203000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516203000_ppi_RAINRATE_RR_el0.4.png index f599cf9..e78572a 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516203000_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516203000_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516203500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516203500_ppi_RAINRATE_RR_el0.4.png index d52b7a1..d4613c1 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516203500_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516203500_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516204000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516204000_ppi_RAINRATE_RR_el0.4.png index 037d91a..b3426ef 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516204000_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516204000_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516204500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516204500_ppi_RAINRATE_RR_el0.4.png index 670f49f..9953a15 100644 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516204500_ppi_RAINRATE_RR_el0.4.png and b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516204500_ppi_RAINRATE_RR_el0.4.png differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516205000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516205000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 6d177e1..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516205000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516205500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516205500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index ba62213..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516205500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516210000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516210000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index bc5889c..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516210000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516210500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516210500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index dc93b09..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516210500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516211000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516211000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index c713845..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516211000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516211500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516211500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index a0818d6..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516211500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516212000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516212000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 2cfd111..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516212000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516212500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516212500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index bf857b7..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516212500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516213000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516213000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index e642a00..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516213000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516213500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516213500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 5876ca6..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516213500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516214000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516214000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index b6099d2..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516214000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516214500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516214500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index c6e2a76..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516214500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516215000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516215000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 72e1583..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516215000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516215500_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516215500_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index f4358ba..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516215500_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516220000_ppi_RAINRATE_RR_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516220000_ppi_RAINRATE_RR_el0.4.png deleted file mode 100644 index 389081c..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/RR_hydro/PPI_EL00/20200516220000_ppi_RAINRATE_RR_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/Raccu/PPI_EL00/20200516210000_ppi_RAIN_ACCU_Raccu_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/Raccu/PPI_EL00/20200516210000_ppi_RAIN_ACCU_Raccu_el0.4.png deleted file mode 100644 index c27a408..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/Raccu/PPI_EL00/20200516210000_ppi_RAIN_ACCU_Raccu_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/06_rr/2020-05-16/Raccu/PPI_EL00/20200516220000_ppi_RAIN_ACCU_Raccu_el0.4.png b/pyrad_outputs/06_rr/2020-05-16/Raccu/PPI_EL00/20200516220000_ppi_RAIN_ACCU_Raccu_el0.4.png deleted file mode 100644 index ab4f852..0000000 Binary files a/pyrad_outputs/06_rr/2020-05-16/Raccu/PPI_EL00/20200516220000_ppi_RAIN_ACCU_Raccu_el0.4.png and /dev/null differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_WIND_DIRECTION_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_WIND_DIRECTION_hres100.png index 66335b4..f6d3be3 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_WIND_DIRECTION_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_WIND_DIRECTION_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_WIND_SPEED_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_WIND_SPEED_hres100.png index a481733..e7fdc50 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_WIND_SPEED_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_WIND_SPEED_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_WIND_hres100.csv b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_WIND_hres100.csv index 0eb67d6..fdb6827 100644 --- a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_WIND_hres100.csv +++ b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_WIND_hres100.csv @@ -15,44 +15,44 @@ Altitude [m MSL],u_wind,std_u_wind,np_u_wind,v_wind,std_v_wind,np_v_wind,w_wind, 650.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 750.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 850.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 -950.0,0.13398150545409787,2.1151040253896674,49912,0.013102601676160425,2.1151040253896674,49912,0.0453958071973933,1.1795228543769947,7825,0.1346206595379423,185.5854290091931,49912 -1050.0,14.341172628756766,2.627504944739077,56561,0.8286927583766212,2.627504944739077,56561,-10.306775249268536,1.3405321119698745,10667,14.365095337504311,183.30711151366506,56561 -1150.0,14.993872332970037,2.8329604409259,53945,0.38106316407441126,2.8329604409259,53945,-19.676834063524428,1.1688973167316765,8612,14.998713833939853,181.45583553350423,53945 -1250.0,16.218788444907414,3.2229534425428867,50101,-0.09067660243742068,3.2229534425428867,50101,-21.38641229514304,1.256891017075686,10708,16.21904192197837,179.67967197381074,50101 -1350.0,17.74375525534225,2.0842585172952512,29383,-1.0954882993144608,2.0842585172952512,29383,-12.274029363477391,0.9874256435776628,9253,17.77754047036374,176.46707889442982,29383 -1450.0,18.273057526110215,2.277607893727051,34722,-1.9466556877914742,2.277607893727051,34722,-9.141968911580435,0.9233521295945483,10731,18.376455036794884,173.91913098510543,34722 -1550.0,18.81937082705091,1.3481279058237807,17479,-3.286701278765288,1.3481279058237807,17479,-0.6968037114237742,0.9248743970905455,9241,19.104217430240165,170.09351414634494,17479 -1650.0,18.590703398142832,1.6470355890953012,17956,-4.290254145529605,1.6470355890953012,17956,8.496292940401613,1.3110626926228743,9973,19.079322143906303,167.00511452275111,17956 -1750.0,18.03998417248777,1.8764454324067266,16277,-6.074950069064108,1.8764454324067266,16277,15.416653249631326,1.3468870589209654,8534,19.03538933894527,161.38908926322398,16277 -1850.0,17.410322646371,1.5610578951825773,12294,-7.439112483974278,1.5610578951825773,12294,23.82624429249069,1.1629279475875647,8430,18.933032752307827,156.8638673813367,12294 -1950.0,16.616604270845794,1.2677270940999892,11017,-8.789209003351035,1.2677270940999892,11017,27.800841577310816,1.2677270940999892,11017,18.79791829960109,152.1237856165685,11017 -2050.0,15.711335361324736,0.9204917134398397,8539,-9.724550400036733,0.9204917134398397,8539,31.763951491187708,0.9204917134398397,8539,18.477362888650198,148.2445125772412,8539 -2150.0,15.392075141944087,0.8886254320526095,9992,-9.831662480490388,0.8886254320526095,9992,38.7042730126533,0.8886254320526095,9992,18.264105899428404,147.43166177151357,9992 -2250.0,14.692563936055572,0.9212878673275262,9918,-10.588231909926684,0.9212878673275262,9918,21.49740238484143,0.9212878673275262,9918,18.110275812186586,144.22150134725734,9918 -2350.0,14.654468701940434,0.8647594787065409,7847,-10.701515261839482,0.8647594787065409,7847,17.68799580545529,0.8647594787065409,7847,18.14596048258496,143.86098442321895,7847 -2450.0,14.886008660406404,1.014577082774506,11465,-10.613315073780534,1.014577082774506,11465,12.28077352879808,1.014577082774506,11465,18.282114502787458,144.51217465039622,11465 -2550.0,15.081196524719049,1.183153084878358,6465,-10.760239428094865,1.183153084878358,6465,-0.6488791620819596,1.183153084878358,6465,18.52633911940309,144.49263171674977,6465 -2650.0,15.337868233189957,1.466759329780744,4262,-10.79021066965003,1.466759329780744,4262,-12.453242782675003,1.466759329780744,4262,18.753102362919233,144.87356268861606,4262 -2750.0,15.700495959857468,1.5527336945632324,3575,-11.004579792187796,1.5527336945632324,3575,-13.442415470127342,1.5527336945632324,3575,19.173063130030336,144.97313621217376,3575 -2850.0,16.398673049226364,1.4857635206878306,4292,-10.975574771977692,1.4857635206878306,4292,-14.417808829606296,1.4857635206878306,4292,19.732706842972565,146.20574255630476,4292 -2950.0,17.410430324181714,1.361826300877546,4965,-10.94567953288282,1.361826300877546,4965,-12.213239763740273,1.361826300877546,4965,20.565285908777344,147.84303338839635,4965 -3050.0,18.5697565714993,1.1176302894918244,4937,-10.789886718151102,1.1176302894918244,4937,-6.802166947805123,1.1176302894918244,4937,21.476906539706203,149.84143272128816,4937 -3150.0,19.764328497629506,0.8579715178931634,3465,-10.912496438491775,0.8579715178931634,3465,-0.5050898071763344,0.8579715178931634,3465,22.576785853666273,151.09555436886916,3465 -3250.0,19.91228102158553,1.0442973417302681,1393,-11.819072724562217,1.0442973417302681,1393,-0.08975405969801918,1.0442973417302681,1393,23.15576419708678,149.3084561985528,1393 -3350.0,20.294299278369714,1.2190811699041053,2787,-12.132980849918049,1.2190811699041053,2787,1.9821791491066756,1.2190811699041053,2787,23.644614767521915,149.12683650656845,2787 -3450.0,20.24271424676787,1.353437621165168,3403,-13.223118437796085,1.353437621165168,3403,4.978810124978132,1.353437621165168,3403,24.17888213495987,146.8462848220275,3403 -3550.0,20.287036786291065,1.3379012411333595,2672,-14.442564604662214,1.3379012411333595,2672,9.154047755315629,1.3379012411333595,2672,24.90284188457552,144.55251803215324,2672 -3650.0,20.091663446422668,1.7388163922947044,2659,-15.75004948556644,1.7388163922947044,2659,13.528007514203884,1.7388163922947044,2659,25.52917936092166,141.90675900939436,2659 -3750.0,19.96796103398778,1.2893998939958302,1987,-16.484054290392265,1.2893998939958302,1987,15.497083666713896,1.2893998939958302,1987,25.89292400837445,140.45946950909314,1987 -3850.0,20.092782010405006,0.9758747212002116,2069,-17.299706144190164,0.9758747212002116,2069,15.33568240710363,0.9758747212002116,2069,26.51414191696548,139.2718424601975,2069 -3950.0,19.897648109917718,1.6411613879806153,2037,-17.938315577514825,1.6411613879806153,2037,17.748781722251984,1.6411613879806153,2037,26.789915379945178,137.96440965840358,2037 -4050.0,19.516777153429008,2.011203253931691,2665,-18.30708040101138,2.011203253931691,2665,19.04644406077036,2.011203253931691,2665,26.759181289152018,136.83183063394253,2665 -4150.0,19.30800612605525,1.9957271092457312,1965,-18.957235422822407,1.9957271092457312,1965,18.564200791612947,1.9957271092457312,1965,27.05874859338657,135.52520556898645,1965 -4250.0,19.04132006215896,1.929169664744295,1295,-19.43253524053856,1.929169664744295,1295,21.161844970315425,1.929169664744295,1295,27.20653038489749,134.41741720601786,1295 -4350.0,19.074062737916435,1.9367969468985506,1878,-19.737067512001424,1.9367969468985506,1878,19.74619183893838,1.9367969468985506,1878,27.447617443109234,134.02131990108384,1878 -4450.0,18.40386655758776,2.353031296472261,1758,-19.919383696861196,2.353031296472261,1758,24.067082364134123,2.353031296472261,1758,27.1198110452908,132.7353822275302,1758 -4550.0,18.197459323074693,2.4247858370886877,562,-19.625547556023527,2.4247858370886877,562,18.063813388994358,2.4247858370886877,562,26.763961640398065,132.83770286991927,562 -4650.0,17.163465941451637,4.523931098118666,445,-16.865478673727104,4.523931098118666,445,29.154594287891257,4.523931098118666,445,24.063020051882805,135.50171924488222,445 +950.0,0.13398152275030006,2.11510395095221,49912,0.01310261391877071,2.11510395095221,49912,0.0453958100405406,1.1795228153621296,7825,0.13462067794359653,185.58543347853453,49912 +1050.0,14.341172346663638,2.627504879433754,56561,0.8286939110544252,2.627504879433754,56561,-10.306774835078102,1.340531912974889,10667,14.36509512237662,183.30711616841904,56561 +1150.0,14.993872223512202,2.8329604402183826,53945,0.38106439555451227,2.8329604402183826,53945,-19.676833197283102,1.1688971565587671,8612,14.998713755804864,181.45584024691988,53945 +1250.0,16.218788446098177,3.222953484018683,50101,-0.09067529894975399,3.222953484018683,50101,-21.38641060800066,1.2568909012674725,10708,16.219041915881697,179.67967657849434,50101 +1350.0,17.74375532777381,2.0842585550385944,29383,-1.0954870070095322,2.0842585550385944,29383,-12.274029032479003,0.9874256042898935,9253,17.77754046302323,176.46708306590875,29383 +1450.0,18.336910534784128,2.20201882959006,30666,-1.9683056590437633,2.20201882959006,30666,-9.141969850820203,0.9230928406897236,10731,18.442248103962296,173.8732624320068,30666 +1550.0,18.726772333763872,1.7129872246965139,21535,-3.2142973653494673,1.7129872246965139,21535,-0.6968046828932815,0.9251755869391733,9241,19.000623926427167,170.26055220741677,21535 +1650.0,18.590703561455353,1.64703555390498,17956,-4.290252865195499,1.64703555390498,17956,8.496290447916282,1.3110626463500434,9973,19.07932201513531,167.0051183794468,17956 +1750.0,18.03998454522945,1.876445405900988,16277,-6.074948954514154,1.876445405900988,16277,15.416649930615158,1.3468869308095017,8534,19.03538933649822,161.38909280060304,16277 +1850.0,17.410323108720892,1.561057832322168,12294,-7.439111472641761,1.561057832322168,12294,23.826238997189645,1.162927750077562,8430,18.9330327801029,156.86387074547997,12294 +1950.0,16.61660491987235,1.2677268680728226,11017,-8.789208043165923,1.2677268680728226,11017,27.800834994636077,1.2677268680728226,11017,18.79791842436759,152.12378912853578,11017 +2050.0,15.711335979735098,0.9204914055727804,8539,-9.724549571823818,0.9204914055727804,8539,31.763942550268364,0.9204914055727804,8539,18.47736297860107,148.24451577019244,8539 +2150.0,15.392075891899706,0.8886251612545967,9992,-9.831661471951454,0.8886251612545967,9992,38.704266957602755,0.8886251612545967,9992,18.26410598855183,147.43166570430506,9992 +2250.0,14.682442297613086,0.9285065896089255,9233,-10.620003468841233,0.9285065896089255,9233,21.332838880027776,0.9285065896089255,9233,18.120667358045555,144.12128991461236,9233 +2350.0,14.667835289153555,0.8610828838120336,8532,-10.660081866246085,0.8610828838120336,8532,18.169335936063653,0.8610828838120336,8532,18.132367122491395,143.99162596980554,8532 +2450.0,14.886009468908972,1.0145770453848766,11465,-10.613314114469077,1.0145770453848766,11465,12.280768963460941,1.0145770453848766,11465,18.282114604192703,144.51217856933985,11465 +2550.0,15.081197281283798,1.1831531059191218,6465,-10.760238382349685,1.1831531059191218,6465,-0.648882919223633,1.1831531059191218,6465,18.526339127900936,144.4926357084472,6465 +2650.0,15.291951524160226,1.4127473537390431,3563,-10.79488911447326,1.4127473537390431,3563,-12.15520070033568,1.4127473537390431,3563,18.718264139899286,144.78098065224623,3563 +2750.0,15.698857151623477,1.5805639816250652,4274,-10.97102056697216,1.5805639816250652,4274,-13.614895440638703,1.5805639816250652,4274,19.152477859222437,145.05253363253922,4274 +2850.0,16.398673673547016,1.4857637883285801,4292,-10.975573592029914,1.4857637883285801,4292,-14.417813248943661,1.4857637883285801,4292,19.732706705506683,146.20574641181054,4292 +2950.0,17.410431026444645,1.361826581247019,4965,-10.94567837579951,1.361826581247019,4965,-12.213244520879035,1.361826581247019,4965,20.565285887461698,147.8430371588928,4965 +3050.0,18.56975724125573,1.1176305642481799,4937,-10.789885535584148,1.1176305642481799,4937,-6.802171687142087,1.1176305642481799,4937,21.476906524687806,149.8414363467416,4937 +3150.0,19.28557348576569,0.8919943329701445,1366,-11.135278411335275,0.8919943329701445,1366,-2.8571610880769183,0.8919943329701445,1366,22.269435780298025,149.9983347537546,1366 +3250.0,19.97745902164108,0.9242381971042758,3492,-11.067646320890095,0.9242381971042758,3492,0.4607571150310435,0.9242381971042758,3492,22.838381379722616,151.01325306648704,3492 +3350.0,20.29430034355556,1.2190810654958764,2787,-12.132979674570427,1.2190810654958764,2787,1.9821757041116308,1.2190810654958764,2787,23.64461507865963,149.12684027561346,2787 +3450.0,20.242715422429384,1.353437510821892,3403,-13.223117285378581,1.353437510821892,3403,4.978806209918897,1.353437510821892,3403,24.17888248898899,146.84628863188806,3403 +3550.0,20.2870379940627,1.3379010672935996,2672,-14.442563410284881,1.3379010672935996,2672,9.154043612031975,1.3379010672935996,2672,24.90284217579679,144.55252188238467,2672 +3650.0,20.09166460213022,1.7388162976157768,2659,-15.750048251766824,1.7388162976157768,2659,13.528003257150164,1.7388162976157768,2659,25.529179509288497,141.90676278887304,2659 +3750.0,19.967962639694893,1.2893997221632616,1987,-16.4840535131175,1.2893997221632616,1987,15.49707839295057,1.2893997221632616,1987,25.892924751823085,140.45947309746603,1987 +3850.0,20.092783331009528,0.9758745347394836,2069,-17.29970491857433,0.9758745347394836,2069,15.335678216931225,0.9758745347394836,2069,26.514142118059173,139.27184632926173,2069 +3950.0,19.89764974523805,1.641161281446915,2037,-17.938314665382585,1.641161281446915,2037,17.748777448783596,1.641161281446915,2037,26.789915983788596,137.96441344918608,2037 +4050.0,19.516778804712576,2.0112032583721313,2665,-18.307079602345684,2.0112032583721313,2665,19.046438505074814,2.0112032583721313,2665,26.75918194711302,136.83183430008174,2665 +4150.0,19.30800774727833,1.9957271123660172,1965,-18.95723457580059,1.9957271123660172,1965,18.564195239053323,1.9957271123660172,1965,27.058749156804893,135.52520925383283,1965 +4250.0,19.04132189543193,1.9291697148597193,1295,-19.432534586909483,1.9291697148597193,1295,21.161839236335698,1.9291697148597193,1295,27.206531201108472,134.41742092702393,1295 +4350.0,19.074064282983738,1.936797018084519,1878,-19.73706637702797,1.936797018084519,1878,19.746185927351267,1.936797018084519,1878,27.447617700678578,134.02132386673742,1878 +4450.0,18.403868167141866,2.3530314071820335,1758,-19.919382898939368,2.3530314071820335,1758,24.067076581517483,2.3530314071820335,1758,27.119811551485675,132.7353858691564,1758 +4550.0,18.19746044829865,2.4247860214893135,562,-19.62554645389321,2.4247860214893135,562,18.06380905018568,2.4247860214893135,562,26.76396159729187,132.8377062405189,562 +4650.0,17.163467278142097,4.518834287001087,445,-16.86547783706665,4.518834287001087,445,29.154589893395354,4.518834287001087,445,24.06302041890088,135.50172289658005,445 4750.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 4850.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 4950.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_wind_vel_h_u_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_wind_vel_h_u_hres100.png index 339147d..5658eaa 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_wind_vel_h_u_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_wind_vel_h_u_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_wind_vel_h_v_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_wind_vel_h_v_hres100.png index 9a16853..2de3c85 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_wind_vel_h_v_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_wind_vel_h_v_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_wind_vel_v_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_wind_vel_v_hres100.png index 04f5ac4..1b0991b 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_wind_vel_v_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114101500_wind_profile_VAD_wind_vel_v_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_WIND_DIRECTION_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_WIND_DIRECTION_hres100.png index 4b80c4a..b75cb28 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_WIND_DIRECTION_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_WIND_DIRECTION_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_WIND_SPEED_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_WIND_SPEED_hres100.png index f9ef990..d61bb1c 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_WIND_SPEED_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_WIND_SPEED_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_WIND_hres100.csv b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_WIND_hres100.csv index 00540ef..e07d4e7 100644 --- a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_WIND_hres100.csv +++ b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_WIND_hres100.csv @@ -15,44 +15,44 @@ Altitude [m MSL],u_wind,std_u_wind,np_u_wind,v_wind,std_v_wind,np_v_wind,w_wind, 650.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 750.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 850.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 -950.0,0.17584128689929845,2.122355579502643,48480,0.015459350002546666,2.122355579502643,48480,0.0566327262456962,1.0336890781019639,6303,0.1765195447561052,185.02432595297216,48480 -1050.0,14.009553816371003,2.740827132442733,55160,0.6860426581229017,2.740827132442733,55160,-12.036234230980261,1.4359086501856095,9221,14.026341385498917,182.80351355402962,55160 -1150.0,14.828253798240526,2.967812056699362,52417,0.3657556733781123,2.967812056699362,52417,-20.064726539938917,1.1315351102731523,7180,14.832764001279156,181.41297877674808,52417 -1250.0,16.211874049011804,3.6810039357824538,49349,-0.11612091007866984,3.6810039357824538,49349,-19.463397389096855,0.9219688130668342,9329,16.21228991372841,179.58961411468925,49349 -1350.0,17.6450472751422,2.2216893522284114,27130,-0.9152683304712588,2.2216893522284114,27130,-12.750678928118923,0.9537746256647065,7156,17.668769324963378,177.03066505845527,27130 -1450.0,18.2690612958259,2.3523943019166165,33068,-1.73676942089832,2.3523943019166165,33068,-8.967130963775448,0.9694711126438968,9257,18.351429607853756,174.5694309999432,33068 -1550.0,19.013731327155032,1.5229091092204716,15356,-2.9244574646797106,1.5229091092204716,15356,0.5947299142929428,0.9957336062157975,7136,19.237318691646127,171.25599246236183,15356 -1650.0,18.946322984875607,1.6919446824752415,17130,-4.153630762806973,1.6919446824752415,17130,8.676777015082099,1.2770185690884281,9312,19.396283230582146,167.63458742039217,17130 -1750.0,18.236033080393256,1.946235356757174,14329,-5.5346698077388305,1.946235356757174,14329,16.59161071820802,1.4112138261302833,6397,19.05742564959635,163.11685903137743,14329 -1850.0,17.82668430271137,1.6606147616040183,10964,-7.011906228177629,1.6606147616040183,10964,25.17394373840077,1.2478209771134998,6956,19.15613484451632,158.52841716071043,10964 -1950.0,17.052600498570836,1.2015886814459162,8725,-8.411452024576171,1.2015886814459162,8725,31.41035037875685,1.2015886814459162,8725,19.01430274623829,153.7444865721944,8725 -2050.0,16.165594009208604,0.9950882590181478,7082,-9.290038161594692,0.9950882590181478,7082,37.324807113138036,0.9950882590181478,7082,18.644871646499656,150.11489343964539,7082 -2150.0,15.611655431775672,0.8760201642821367,9325,-9.50179020188943,0.8760201642821367,9325,42.38575992787792,0.8760201642821367,9325,18.27588034435586,148.67386881685707,9325 -2250.0,15.10372254245956,0.9226902611184742,7813,-10.01092305498358,0.9226902611184742,7813,31.521755745193268,0.9226902611184742,7813,18.12018253363919,146.46311948587328,7813 -2350.0,14.964240977759253,0.9097290605402876,6417,-10.196119778242794,0.9097290605402876,6417,26.83231081247973,0.9097290605402876,6417,18.107715664122935,145.73082665991006,6417 -2450.0,15.003282157543433,1.0745143444675433,9279,-10.257703292104729,1.0745143444675433,9279,17.337928130937243,1.0745143444675433,9279,18.174678878255794,145.63968978072097,9279 -2550.0,14.96269975954675,1.1916065632714345,5023,-10.474757608929105,1.1916065632714345,5023,4.262328437349447,1.1916065632714345,5023,18.264800329052562,145.00574970919394,5023 -2650.0,14.96461611310469,1.3814753796486154,2862,-10.70919771147411,1.3814753796486154,2862,-6.034671809235949,1.3814753796486154,2862,18.40181108032671,144.41117771007953,2862 -2750.0,15.376502055274623,1.5493275336923362,2108,-10.889129329317061,1.5493275336923362,2108,-10.233071627344634,1.5493275336923362,2108,18.841707804932593,144.69513814596021,2108 -2850.0,16.013656746184814,1.5435558306513044,2812,-10.989169969540514,1.5435558306513044,2812,-11.356312405089351,1.5435558306513044,2812,19.421613192628502,145.54062970324537,2812 -2950.0,17.027726218914605,1.292142791678991,2765,-11.187540261916238,1.292142791678991,2765,-12.824389298226563,1.292142791678991,2765,20.37411390216293,146.6943242407545,2765 -3050.0,18.07960035587025,1.0586352286451728,3401,-11.42388507125766,1.0586352286451728,3401,-10.378900142870899,1.0586352286451728,3401,21.386376484792542,147.71259940672252,3401 -3150.0,19.423100171503894,1.080314693478635,1378,-11.783900502728692,1.080314693478635,1378,-3.096141921521466,1.080314693478635,1378,22.718211446557234,148.7550151295732,1378 -3250.0,19.76883500801828,1.0557134343310313,681,-12.097514385122407,1.0557134343310313,681,-0.32366652903305443,1.0557134343310313,681,23.176641082617916,148.53550298234484,681 -3350.0,20.020678108225137,1.2128776903736487,1396,-12.718061319535655,1.2128776903736487,1396,0.06200737754096392,1.2128776903736487,1396,23.71869801740041,147.57439775187436,1396 -3450.0,19.969828330337727,1.7992576553980295,1378,-13.259185293640563,1.7992576553980295,1378,4.942838058759739,1.7992576553980295,1378,23.970816385643886,146.41739412030327,1378 -3550.0,20.120951856393113,1.7574108872663232,1378,-14.371007176445294,1.7574108872663232,1378,7.63744384136235,1.7574108872663232,1378,24.726070267487543,144.4643988056768,1378 -3650.0,20.020956008350357,1.4557000563127247,1346,-15.114314845532935,1.4557000563127247,1346,9.619771621774404,1.4557000563127247,1346,25.08547772593134,142.94994236102607,1346 -3750.0,19.935950890532617,1.7382463763153886,1338,-15.831266615651524,1.7382463763153886,1338,11.318071272288009,1.7382463763153886,1338,25.457241417042237,141.54668523115356,1338 -3850.0,19.605496360892822,2.351317942037095,1312,-16.114089755552488,2.351317942037095,1312,15.574635580137247,2.351317942037095,1312,25.377930889002425,140.58263513254877,1312 -3950.0,19.676611310068548,1.4671903783904476,1304,-17.208798940779367,1.4671903783904476,1304,16.202777160175064,1.4671903783904476,1304,26.14023323598484,138.82766040654184,1304 -4050.0,19.388601652429738,1.9493211725826833,1989,-17.509489721177207,1.9493211725826833,1989,19.182230223222263,1.9493211725826833,1989,26.124702952045435,137.91538788334574,1989 -4150.0,19.256110178433648,1.8779807766985654,1298,-18.028731115560827,1.8779807766985654,1298,18.934778127602563,1.8779807766985654,1298,26.378645242717965,136.88543794037483,1298 -4250.0,18.93057896900213,1.9321756072522633,1247,-18.364827736697606,1.9321756072522633,1247,21.82920349076561,1.9321756072522633,1247,26.374869059394467,135.86907945758753,1247 -4350.0,18.770553021847313,3.3934189154021306,1142,-19.006827379150828,3.3934189154021306,1142,25.347765037235263,3.3934189154021306,1142,26.713164315872778,134.64165469326554,1142 -4450.0,18.068246067502553,2.572409921322634,1094,-19.20739877642872,2.572409921322634,1094,28.24970090698004,2.572409921322634,1094,26.370166546925276,133.2495719296531,1094 +950.0,0.17584131660000252,2.1223554871623604,48480,0.015459366016876924,2.1223554871623604,48480,0.05663272461773203,1.0336889869419894,6303,0.17651957574520197,185.02433028673,48480 +1050.0,14.009553548430503,2.7408270700480695,55160,0.6860437724432686,2.7408270700480695,55160,-12.036233905531999,1.4359084978537737,9221,14.026341172381695,182.80351815396867,55160 +1150.0,14.82825376735662,2.967812070801362,52417,0.365756886552631,2.967812070801362,52417,-20.0647267032777,1.131534925745657,7180,14.832764000319916,181.4129834644973,52417 +1250.0,16.21187401522298,3.681004001563449,49349,-0.11611954826820725,3.681004001563449,49349,-19.463397678427288,0.9219687269616008,9329,16.21228987018651,179.58961892647864,49349 +1350.0,17.645047325714923,2.2216894065585784,27130,-0.9152670333837774,2.2216894065585784,27130,-12.750677906497865,0.9537745972892924,7156,17.668769308277206,177.03066926746146,27130 +1450.0,18.342128012383128,2.295882180286846,29012,-1.7666697441437547,2.295882180286846,29012,-8.967130679551715,0.9691553662105215,9257,18.427012291945832,174.498379149833,29012 +1550.0,18.881619226606855,1.8394538271549785,19412,-2.8246940599208723,1.8394538271549785,19412,0.5947282558371239,0.9961540382717873,7136,19.0917375099995,171.49163835241728,19412 +1650.0,18.94632318603647,1.6919447014786022,17130,-4.153629542210206,1.6919447014786022,17130,8.676773950283488,1.277018555790261,9312,19.396283165690907,167.6345910695884,17130 +1750.0,18.236033471349273,1.946235395437696,14329,-5.534668817484453,1.946235395437696,14329,16.591605073724235,1.411213789936496,6397,19.057425736111522,163.11686222159963,14329 +1850.0,17.82668480977585,1.6606147441531782,10964,-7.011905289211524,1.6606147441531782,10964,25.173936013434016,1.2478208625048783,6956,19.15613497269127,158.52842032938423,10964 +1950.0,17.052601212238528,1.2015885174035508,8725,-8.4114511372312,1.2015885174035508,8725,31.41034038658936,1.2015885174035508,8725,19.014302993737818,153.74448992149576,8725 +2050.0,16.16559476474283,0.9950880108861316,7082,-9.290037173126615,0.9950880108861316,7082,37.32480089514757,0.9950880108861316,7082,18.64487180905128,150.11489723014174,7082 +2150.0,15.611656174616876,0.8760199027118408,9325,-9.501789311236234,0.8760199027118408,9325,42.38575093954315,0.8760199027118408,9325,18.27588051584865,148.67387241283666,9325 +2250.0,15.128262320732265,0.9333109055995473,7106,-10.000435834041696,0.9333109055995473,7106,31.69826196989809,0.9333109055995473,7106,18.134856980844177,146.5335715867658,7106 +2350.0,14.956941022979498,0.9001691768339176,7124,-10.18435381094633,0.9001691768339176,7124,27.21666257917589,0.9001691768339176,7124,18.095058643492262,145.74859935107324,7124 +2450.0,15.00328294248555,1.0745142269800538,9279,-10.257702262612256,1.0745142269800538,9279,17.337923903892886,1.0745142269800538,9279,18.174678945188507,145.63969385649625,9279 +2550.0,14.962700451792388,1.1916065550825696,5023,-10.474756572064459,1.1916065550825696,5023,4.262323858046102,1.1916065550825696,5023,18.264800301510984,145.00575361911558,5023 +2650.0,14.964616717010545,1.3812337194724116,2862,-10.709196647330161,1.3812337194724116,2862,-6.034676008235237,1.3812337194724116,2862,18.401810952137808,144.41118149879094,2862 +2750.0,15.376502794835163,1.5496962149652074,2108,-10.889128319694734,1.5496962149652074,2108,-10.233075969162856,1.5496962149652074,2108,18.841707824991648,144.69514195120195,2108 +2850.0,16.01365735350401,1.5435560222668934,2812,-10.98916882986309,1.5435560222668934,2812,-11.356317482470171,1.5435560222668934,2812,19.421613048525796,145.54063348920212,2812 +2950.0,17.027726954217062,1.2921429762766117,2765,-11.187539016493137,1.2921429762766117,2765,-12.824393636735191,1.2921429762766117,2765,20.37411383282538,146.69432830330675,2765 +3050.0,18.079601297048917,1.0586353854950965,3401,-11.42388381597476,1.0586353854950965,3401,-10.378903597051005,1.0586353854950965,3401,21.38637660991555,147.71260359663046,3401 +3150.0,19.298606036934967,1.0969384865658744,665,-11.666189485308527,1.0969384865658744,665,-2.6552997260453344,1.0969384865658744,665,22.550746596863394,148.84664213530488,665 +3250.0,19.64878097036786,1.0602429721912918,1394,-11.990742284730022,1.0602429721912918,1394,-1.9276699761834404,1.0602429721912918,1394,23.018525021388808,148.60621408422625,1394 +3350.0,20.020679370663917,1.2128775197378725,1396,-12.718060268913515,1.2128775197378725,1396,0.06200339774097462,1.2128775197378725,1396,23.718698519662585,147.57440152931005,1396 +3450.0,19.96982963985888,1.7992576034711716,1378,-13.25918424271923,1.7992576034711716,1378,4.942834436162884,1.7992576034711716,1378,23.970816895286653,146.41739794433278,1378 +3550.0,20.12095327686283,1.757410839758984,1378,-14.371006154301618,1.757410839758984,1378,7.637439694287213,1.757410839758984,1378,24.72607082932248,144.46440264615472,1378 +3650.0,20.020957505404773,1.4556999143619658,1346,-15.114313902683465,1.4556999143619658,1346,9.619767026447224,1.4556999143619658,1346,25.085478352665998,142.94994613991983,1346 +3750.0,19.935952457538633,1.7382462975301376,1338,-15.831265740428204,1.7382462975301376,1338,11.31806658091868,1.7382462975301376,1338,25.457242099907376,141.5466889670028,1338 +3850.0,19.605497949825473,2.3513178666896493,1312,-16.114088896993948,2.3513178666896493,1312,15.574631201527318,2.3513178666896493,1312,25.377931571364016,140.58263890784897,1312 +3950.0,19.67661301098794,1.4671902594758284,1304,-17.208798139189714,1.4671902594758284,1304,16.20277188327554,1.4671902594758284,1304,26.14023398861531,138.8276641834321,1304 +4050.0,19.38860334570305,1.9493212897069458,1989,-17.509488929142616,1.9493212897069458,1989,19.18222441670233,1.9493212897069458,1989,26.124703677874997,137.91539166149133,1989 +4150.0,19.256111919387052,1.877980885742348,1298,-18.028730444390916,1.877980885742348,1298,18.934772626261257,1.877980885742348,1298,26.37864605487681,136.88544158902448,1298 +4250.0,18.93058071116233,1.9321757179513073,1247,-18.364827077998132,1.9321757179513073,1247,21.829197522033276,1.9321757179513073,1247,26.374869851178502,135.86908311986178,1247 +4350.0,18.770554852154888,3.3934192026691523,1142,-19.00682674622573,3.3934192026691523,1142,25.347758530003713,3.3934192026691523,1142,26.713165151640062,134.64165844038547,1142 +4450.0,18.068247842776252,2.572410169230282,1094,-19.2073983743743,2.572410169230282,1094,28.249694236539824,2.572410169230282,1094,26.370167470456177,133.24957533771033,1094 4550.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 -4650.0,14.61930914376068,5.256136636658541,507,-15.696793557452203,5.256136636658541,507,43.90015583752458,5.256136636658541,507,21.450257057343567,132.96447007652824,507 -4750.0,11.544809300118342,6.359366208547603,460,-12.949118234233314,6.359366208547603,460,61.55539220529738,6.359366208547603,460,17.34826460543684,131.7186565639747,460 -4850.0,10.193038900489459,6.353657322962406,479,-9.418818971805113,6.353657322962406,479,64.71911341820059,6.353657322962406,479,13.878479486259554,137.26069922543803,479 -4950.0,14.73688224105174,4.691273646201497,391,-17.490366692845797,4.691273646201497,391,30.369008990649863,4.691273646201497,391,22.871130825493427,130.11652935087358,391 +4650.0,14.619310343345289,5.2509407640317365,507,-15.696792853890193,5.2509407640317365,507,43.90015227555432,5.2509407640317365,507,21.450257360064022,132.96447370211027,507 +4750.0,11.54481013885682,6.366305349125259,460,-12.949117545454483,6.366305349125259,460,61.555389628454385,6.366305349125259,460,17.348264649475702,131.71866014545606,460 +4850.0,10.193039453234073,6.353657574146075,479,-9.418818209759184,6.353657574146075,479,64.71911164024219,6.353657574146075,479,13.878479375049617,137.26070308470568,479 +4950.0,14.736883733720505,4.691273835942886,391,-17.490366327782738,4.691273835942886,391,30.36900247278334,4.691273835942886,391,22.871131508109347,130.11653279978148,391 diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_wind_vel_h_u_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_wind_vel_h_u_hres100.png index 7143a66..0719dad 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_wind_vel_h_u_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_wind_vel_h_u_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_wind_vel_h_v_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_wind_vel_h_v_hres100.png index 8e6a9f9..5ff3ac4 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_wind_vel_h_v_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_wind_vel_h_v_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_wind_vel_v_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_wind_vel_v_hres100.png index f8f8380..3723eb1 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_wind_vel_v_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114103000_wind_profile_VAD_wind_vel_v_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_WIND_DIRECTION_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_WIND_DIRECTION_hres100.png index 3e829be..c5f7706 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_WIND_DIRECTION_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_WIND_DIRECTION_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_WIND_SPEED_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_WIND_SPEED_hres100.png index 8d0b05c..0cba163 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_WIND_SPEED_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_WIND_SPEED_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_WIND_hres100.csv b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_WIND_hres100.csv index f8a2b37..9467c6f 100644 --- a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_WIND_hres100.csv +++ b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_WIND_hres100.csv @@ -15,44 +15,44 @@ Altitude [m MSL],u_wind,std_u_wind,np_u_wind,v_wind,std_v_wind,np_v_wind,w_wind, 650.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 750.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 850.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 -950.0,0.11745714198212419,2.1887227444378694,49903,0.010015639353857754,2.1887227444378694,49903,0.026006777088760893,1.2459285746513682,7789,0.11788338828806808,184.8738548073003,49903 -1050.0,13.899312423483469,2.641395303976036,56705,0.8417524801818028,2.641395303976036,56705,-8.943060141576014,1.4326623081096133,10727,13.924777667291286,183.46564139487793,56705 -1150.0,14.585920403348569,2.9286281080062824,53869,0.4343794040718325,2.9286281080062824,53869,-14.438334911476224,1.263120038851816,8602,14.59238703843555,181.70580615397444,53869 -1250.0,16.2269231286986,3.6309438065794803,50866,0.0360666237764816,3.6309438065794803,50866,-16.525817844891627,0.9974480332091303,10711,16.226963210226497,180.12734773588488,50866 -1350.0,17.7598042187527,2.2047426886899673,29303,-0.678853719041612,2.2047426886899673,29303,-12.100736497466743,0.903185599641866,9341,17.772773791962884,177.81098226615399,29303 -1450.0,18.433439682944577,2.4575518900169055,34387,-1.6463395955518867,2.4575518900169055,34387,-6.696275330831021,0.9151512301690657,10741,18.50681314026372,174.89630288698305,34387 -1550.0,19.214990076157235,1.512724545447638,17456,-2.9984133699886097,1.512724545447638,17456,0.9106300185062556,0.877717471932065,9293,19.44752751287802,171.13077709965305,17456 -1650.0,18.87708938623818,1.6375856207513155,17874,-3.9633095215997387,1.6375856207513155,17874,12.679419883650821,1.2500678675857262,10002,19.288657964203452,168.14277688410314,17874 -1750.0,18.429115215147196,1.768134441853138,16012,-5.697967967638887,1.768134441853138,16012,15.34215551152527,1.3223239446255797,8518,19.289871087526965,162.81928352061928,16012 -1850.0,17.760102245951472,1.5031378206161286,12252,-7.136313847016902,1.5031378206161286,12252,24.551924434664578,1.1697967833180785,8448,19.140224844807225,158.10889196279618,12252 -1950.0,16.960947934936726,1.2153269433684986,10940,-8.347913737603493,1.2153269433684986,10940,30.594726360286593,1.2153269433684986,10940,18.904005359238116,153.7943089515686,10940 -2050.0,16.117016731897486,0.9746908794239991,8495,-9.122719885807378,0.9746908794239991,8495,39.928452648851774,0.9746908794239991,8495,18.519779870483582,150.48882391782575,8495 -2150.0,15.7023520181804,0.8455602795132671,10030,-9.226686159954019,0.8455602795132671,10030,49.66224933657135,0.8455602795132671,10030,18.212512083651205,149.56154810651913,10030 -2250.0,15.157901972350292,0.8546999281735881,9804,-10.033212896631428,0.8546999281735881,9804,34.89560676478102,0.8546999281735881,9804,18.17766082950477,146.49890542150627,9804 -2350.0,14.846893806533922,0.8426455918902603,7681,-10.352967544976568,0.8426455918902603,7681,26.002205124515758,0.8426455918902603,7681,18.100115819790588,145.11134282050688,7681 -2450.0,14.710298501006136,0.986355095772338,11268,-10.587656511217006,0.986355095772338,11268,14.189418460762498,0.986355095772338,11268,18.124330398340767,144.25575484629746,11268 -2550.0,14.732487511959699,1.010584529698871,6401,-10.756280991064095,1.010584529698871,6401,4.123815926072918,1.010584529698871,6401,18.24126555502044,143.8665852682517,6401 -2650.0,14.850395368371688,1.1761576730330465,4232,-10.927317835395108,1.1761576730330465,4232,-4.877832328775166,1.1761576730330465,4232,18.437475902972707,143.6533717375777,4232 -2750.0,15.066693631026444,1.214686355105928,3541,-11.100012005785285,1.214686355105928,3541,-8.514099680437456,1.214686355105928,3541,18.71404615522229,143.61999176719468,3541 -2850.0,15.837854808949976,1.2227962154201086,4174,-11.033100091090228,1.2227962154201086,4174,-11.116595664177694,1.2227962154201086,4174,19.30199322788699,145.13783368424077,4174 -2950.0,16.91158818404201,1.0680366528139686,4819,-11.147273530875815,1.0680366528139686,4819,-11.473975126207996,1.0680366528139686,4819,20.254962899960937,146.60912573407478,4819 -3050.0,17.946872667131082,1.0203151131459118,4747,-11.492780447864124,1.0203151131459118,4747,-9.316620820262584,1.0203151131459118,4747,21.311364126986913,147.3653995377408,4747 -3150.0,18.79213052974776,1.1372919482790265,3389,-11.910747797301998,1.1372919482790265,3389,-4.042427289814245,1.1372919482790265,3389,22.24882205731378,147.63283439437683,3389 -3250.0,18.95972975274473,1.4577512502681174,1346,-12.118008919721436,1.4577512502681174,1346,-1.645679367184264,1.4577512502681174,1346,22.501499782804746,147.4155396705046,1346 -3350.0,19.452038051323782,1.1186479363635573,2746,-12.659487638394676,1.1186479363635573,2746,0.33792860607697967,1.1186479363635573,2746,23.208714131050343,146.9437120901311,2746 -3450.0,19.596604576639084,1.7246322734845465,3336,-13.347483920227612,1.7246322734845465,3336,2.5310942839473722,1.7246322734845465,3336,23.71038249235736,145.74075026808578,3336 -3550.0,19.686858863518044,1.9264018246595838,2692,-14.238535112207714,1.9264018246595838,2692,5.142252297758753,1.9264018246595838,2692,24.29626090684842,144.1236375307427,2692 -3650.0,19.51490521420143,1.9511618160954958,2676,-14.945160440850573,1.9511618160954958,2676,7.476372024810068,1.9511618160954958,2676,24.580263345253872,142.55391207410696,2676 -3750.0,18.956463006759396,2.604013256862691,1981,-14.471790547446426,2.604013256862691,1981,14.813975151354013,2.604013256862691,1981,23.849113429555345,142.64107105057562,1981 -3850.0,18.806004973738332,2.7655765488094364,1970,-15.495730012091228,2.7655765488094364,1970,17.186661868059623,2.7655765488094364,1970,24.367672676722652,140.51223608484935,1970 -3950.0,18.462529424606423,2.6995545076661887,1919,-15.725322306373073,2.6995545076661887,1919,21.851076947186332,2.6995545076661887,1919,24.251819609954474,139.57754979381713,1919 -4050.0,18.57140106218573,2.661352621812312,2471,-16.694691487460172,2.661352621812312,2471,20.776290464499734,2.661352621812312,2471,24.9721777439219,138.0461613290638,2471 -4150.0,18.02083091353582,2.5647833436909018,1868,-16.844470846084352,2.5647833436909018,1868,25.128248789550504,2.5647833436909018,1868,24.667520039493915,136.9324343960199,1868 -4250.0,18.281313373386723,1.9441900565609795,1272,-17.402974852454797,1.9441900565609795,1272,24.229409373639466,1.9441900565609795,1272,25.240244697132837,136.41000236144117,1272 -4350.0,17.869905257587334,2.6069756190597655,1814,-17.331239256737835,2.6069756190597655,1814,25.320559841222984,2.6069756190597655,1814,24.893882141792147,135.87670103135127,1814 -4450.0,17.581642978536784,2.8362877274303493,1767,-17.84630382144692,2.8362877274303493,1767,25.10880935143563,2.8362877274303493,1767,25.052040434106814,134.5719857175986,1767 -4550.0,17.177971623534606,2.7959538438361102,560,-18.14604075428676,2.7959538438361102,560,19.62340688949304,2.7959538438361102,560,24.987226820021387,133.4301784569277,560 -4650.0,17.459223175756414,2.822610191955565,1120,-18.41333085581544,2.822610191955565,1120,21.1596984202351,2.822610191955565,1120,25.374696591419468,133.47645477897132,1120 -4750.0,15.840628727079693,4.306657653191451,481,-16.922012830196767,4.306657653191451,481,28.720245772482798,4.306657653191451,481,23.179301902657173,133.10954621354284,481 -4850.0,14.919628033097771,5.0949232204964305,932,-16.659385009754125,5.0949232204964305,932,29.27039620739268,5.0949232204964305,932,22.363595631052203,131.84663777724862,932 +950.0,0.11745716390740435,2.188722644176042,49903,0.010015650479182788,2.188722644176042,49903,0.026006778692172137,1.2459285142602519,7789,0.11788341107930328,184.87385928967407,49903 +1050.0,13.899312172453719,2.641395233465631,56705,0.8417535945689979,2.641395233465631,56705,-8.943059763019283,1.4326621473967758,10727,13.924777484085336,183.46564603426015,56705 +1150.0,14.585920247356077,2.9286281170263617,53869,0.43438061859649035,2.9286281170263617,53869,-14.43833405656431,1.2631198932012973,8602,14.592386918665644,181.70581093882242,53869 +1250.0,16.226923074992047,3.6309438663606906,50866,0.03606792561736186,3.6309438663606906,50866,-16.525816607569983,0.997447954282334,10711,16.226963159413646,180.1273523329646,50866 +1350.0,17.75980422342915,2.204742745590628,29303,-0.6788523810086599,2.204742745590628,29303,-12.100736332410271,0.9031855391144331,9341,17.772773745528102,177.81098657712596,29303 +1450.0,18.50054939802135,2.3917412352013203,30451,-1.6674791286481172,2.3917412352013203,30451,-6.696275379272159,0.9148945110219594,10741,18.57554345565979,174.84977131749673,30451 +1550.0,19.110482390138795,1.852769661191883,21392,-2.93018494962328,1.852769661191883,21392,0.9106279717050065,0.8780017206998284,9293,19.333818066352123,171.28280378942338,21392 +1650.0,18.877089601553777,1.6375856052424875,17874,-3.9633082718406136,1.6375856052424875,17874,12.679416099886813,1.250067863403385,10002,19.288657918132355,168.1427806486421,17874 +1750.0,18.429115619845746,1.7681344378194346,16012,-5.697966953618719,1.7681344378194346,16012,15.342149940281834,1.3223238863094933,8518,19.289871174639124,162.8192867531888,16012 +1850.0,17.76010269055225,1.5031377157539436,12252,-7.136312993888314,1.5031377157539436,12252,24.551916888414723,1.169796581619635,8448,19.14022493926601,158.1088948286879,12252 +1950.0,16.960948533772907,1.2153268045119552,10940,-8.347912813252144,1.2153268045119552,10940,30.594718135592785,1.2153268045119552,10940,18.904005488333752,153.79431226669857,10940 +2050.0,16.117017397491047,0.974690676733223,8495,-9.122718852621636,0.974690676733223,8495,39.928447214850245,0.974690676733223,8495,18.51977994078243,150.48882771389194,8495 +2150.0,15.702352695162432,0.8455600957112267,10030,-9.226685214753559,0.8455600957112267,10030,49.662240885252444,0.8455600957112267,10030,18.212512188477096,149.56155174920605,10030 +2250.0,15.17351527373959,0.8619582599110278,9103,-10.026128284876904,0.8619582599110278,9103,34.93996020336844,0.8619582599110278,9103,18.186775804062062,146.54466665810702,9103 +2350.0,14.861478412682327,0.8356017706052716,8382,-10.329252781109268,0.8356017706052716,8382,26.810200187818353,0.8356017706052716,8382,18.098535952575734,145.19933396599708,8382 +2450.0,14.710299318868703,0.9863550093372272,11268,-10.587655512092633,0.9863550093372272,11268,14.189414497930173,0.9863550093372272,11268,18.12433047848815,144.2557589201897,11268 +2550.0,14.732488287420736,1.010584514677986,6401,-10.756279933715332,1.010584514677986,6401,4.123812290682129,1.010584514677986,6401,18.24126555783442,143.8665893868156,6401 +2650.0,14.852374256275834,1.153899327154998,3535,-10.929902234105889,1.153899327154998,3535,-4.52685256456729,1.153899327154998,3535,18.440601505796877,143.65054815152487,3535 +2750.0,15.03309027588779,1.2262030957767054,4238,-11.072249923743865,1.2262030957767054,4238,-8.30487200961832,1.2262030957767054,4238,18.67052547779087,143.62741775280261,4238 +2850.0,15.837855539422899,1.2227964043434372,4174,-11.033099047178228,1.2227964043434372,4174,-11.116599855524964,1.2227964043434372,4174,19.30199323055714,145.13783746626805,4174 +2950.0,16.91158901259071,1.0680368318883693,4819,-11.147272349617218,1.0680368318883693,4819,-11.473978540877933,1.0680368318883693,4819,20.254962941642706,146.60912981384922,4819 +3050.0,17.94687367820037,1.0203151940208786,4747,-11.492779186173012,1.0203151940208786,4747,-9.316623433748694,1.0203151940208786,4747,21.311364298031528,147.36540386019777,4747 +3150.0,18.331706944954927,1.0747159339046484,1342,-11.841302614262952,1.0747159339046484,1342,-8.011591438673081,1.0747159339046484,1342,21.823563575141876,147.13970127896775,1342 +3250.0,19.026630083272284,1.295404382358111,3393,-11.987783668349845,1.295404382358111,3393,-1.802937057622323,1.295404382358111,3393,22.488210458034164,147.78690211510053,3393 +3350.0,19.45203904409917,1.1186478801174529,2746,-12.65948642736334,1.1186478801174529,2746,0.3379251157221031,1.1186478801174529,2746,23.20871430255789,146.94371593276483,2746 +3450.0,19.596605620050358,1.724632237101286,3336,-13.347482755193736,1.724632237101286,3336,2.5310901075556727,1.724632237101286,3336,23.710382698893397,145.7407540143028,3336 +3550.0,19.686859957977454,1.926401717492918,2692,-14.23853395305889,1.926401717492918,2692,5.142248087472361,1.926401717492918,2692,24.296261114365453,144.12364125821586,2692 +3650.0,19.514906371878375,1.951161722483465,2676,-14.945159375300735,1.951161722483465,2676,7.476367373990631,1.951161722483465,2676,24.580263616493593,142.55391568676075,2676 +3750.0,18.95646438179948,2.6040134210607286,1981,-14.471789731981122,2.6040134210607286,1981,14.813969558738421,2.6040134210607286,1981,23.849114027676304,142.64107461230805,1981 +3850.0,18.80600617581028,2.7655766990139568,1970,-15.49572903168254,2.7655766990139568,1970,17.186657450630786,2.7655766990139568,1970,24.367672980979194,140.51223966130866,1970 +3950.0,18.462530713161403,2.6995547287630597,1919,-15.725321474283433,2.6995547287630597,1919,21.851072137228922,2.6995547287630597,1919,24.25182005136909,139.57755326433252,1919 +4050.0,18.571402618671385,2.6613528980361414,2471,-16.69469096984127,2.6613528980361414,2471,20.776284404168983,2.6613528980361414,2471,24.9721785554103,138.04616459971962,2471 +4150.0,18.02083237023241,2.564783489936962,1868,-16.844470152554514,2.564783489936962,1868,25.128243621918866,2.564783489936962,1868,24.667520630098117,136.93243788330233,1868 +4250.0,18.28131508410447,1.94419012171801,1272,-17.40297429368847,1.94419012171801,1272,24.22940381066704,1.94419012171801,1272,25.240245550926943,136.41000595768844,1272 +4350.0,17.86990682506331,2.606975835552351,1814,-17.331238656807884,2.606975835552351,1814,25.320554358945504,2.606975835552351,1814,24.893882849320157,135.87670453424928,1814 +4450.0,17.58164463205114,2.836287948780604,1767,-17.84630330686492,2.836287948780604,1767,25.108803537892133,2.836287948780604,1767,25.05204122797882,134.5719892375117,1767 +4550.0,17.177972633723453,2.7959541017613296,560,-18.14603975818714,2.7959541017613296,560,19.62340321528097,2.7959541017613296,560,24.9872267911159,133.43018170932427,560 +4650.0,17.781929074458937,1.873225610091872,586,-18.56591104743029,1.873225610091872,586,19.93955039735806,1.873225610091872,586,25.707781985814766,133.76438615343318,586 +4750.0,16.039572147713503,3.943981599887484,1015,-17.46297117359046,3.943981599887484,1015,27.081255241255427,3.943981599887484,1015,23.711247054749318,132.56717757396234,1015 +4850.0,14.919629753442495,5.094923344944932,932,-16.659384967678008,5.094923344944932,932,29.27038989534523,5.094923344944932,932,22.3635967474175,131.84664113249022,932 4950.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_wind_vel_h_u_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_wind_vel_h_u_hres100.png index 8cffafc..d5086bb 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_wind_vel_h_u_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_wind_vel_h_u_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_wind_vel_h_v_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_wind_vel_h_v_hres100.png index 074f615..d1c330f 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_wind_vel_h_v_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_wind_vel_h_v_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_wind_vel_v_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_wind_vel_v_hres100.png index b98a6cc..7cd6a54 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_wind_vel_v_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114104500_wind_profile_VAD_wind_vel_v_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_WIND_DIRECTION_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_WIND_DIRECTION_hres100.png index 0a79ae4..bbb8a8b 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_WIND_DIRECTION_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_WIND_DIRECTION_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_WIND_SPEED_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_WIND_SPEED_hres100.png index 0e9205c..0618735 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_WIND_SPEED_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_WIND_SPEED_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_WIND_hres100.csv b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_WIND_hres100.csv index 223c898..d42a07a 100644 --- a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_WIND_hres100.csv +++ b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_WIND_hres100.csv @@ -15,44 +15,44 @@ Altitude [m MSL],u_wind,std_u_wind,np_u_wind,v_wind,std_v_wind,np_v_wind,w_wind, 650.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 750.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 850.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 -950.0,0.11471244223727946,2.236533644619894,49906,0.012345682106861173,2.236533644619894,49906,0.02113023471166714,1.779446146317819,7819,0.1153748684537705,186.14269268114313,49906 -1050.0,13.568802179497904,2.703091183704042,56698,1.0703262859084341,2.703091183704042,56698,-8.97493425336599,1.4485731850698491,10663,13.61095114033746,184.51023286709284,56698 -1150.0,14.286070624744013,2.9316658922250065,53544,0.5374018822173136,2.9316658922250065,53544,-17.239572544072303,1.3757434149406627,8574,14.296174826791415,182.15429065918326,53544 -1250.0,15.975224346250522,3.612084686990629,50979,0.02255441549570209,3.612084686990629,50979,-22.757139614366487,1.0741261245529807,10665,15.975240267823636,180.08089225732658,50979 -1350.0,17.445007978193626,2.065784469810818,29305,-0.7122580877344149,2.065784469810818,29305,-16.602520600811687,0.9822618748015864,9262,17.459542231764907,177.6619827971581,29305 -1450.0,18.098969549487645,2.3783136431374863,34537,-1.5558735881689931,2.3783136431374863,34537,-10.880890675486027,0.974721651677101,10657,18.16572160349384,175.08666135260884,34537 -1550.0,18.885026243342093,1.4310235481502578,17137,-2.8328240688040385,1.4310235481502578,17137,-1.5403631384742114,0.9095277959263418,9151,19.096311382476852,171.46902629603898,17137 -1650.0,18.739817469363334,1.674908373286952,17714,-3.751099866976166,1.674908373286952,17714,9.11430381758739,1.2255654425335203,9884,19.11155433231645,168.68084738257136,17714 -1750.0,18.259579846643867,1.7034577585447153,15880,-5.317948653503766,1.7034577585447153,15880,17.247717519464565,1.2154729362182606,8341,19.01822373559806,163.76224471151238,15880 -1850.0,17.750620221729704,1.447230242109893,12223,-6.741653513017969,1.447230242109893,12223,28.518887489230256,1.12439020376313,8308,18.9877436875914,159.2033132979929,12223 -1950.0,16.986981551157854,1.188603698118137,11104,-8.026666409892107,1.188603698118137,11104,37.259999031136815,1.188603698118137,11104,18.787892800286773,154.70838981134443,11104 -2050.0,16.051792863849865,0.9103743108090482,8422,-8.699805119758324,0.9103743108090482,8422,51.76886694028124,0.9103743108090482,8422,18.25778363508875,151.54304285222577,8422 -2150.0,15.754514544218512,0.7946951651559631,9962,-9.066105935175774,0.7946951651559631,9962,55.08508169245153,0.7946951651559631,9962,18.17688106776908,150.08125931663847,9962 -2250.0,15.287749698835574,0.8727785504955253,9858,-9.930823176940951,0.8727785504955253,9858,34.2240406227535,0.8727785504955253,9858,18.23009983038806,146.99250768141167,9858 -2350.0,15.005603383997224,0.8495235949264107,7693,-10.248519714623797,0.8495235949264107,7693,23.652641770656846,0.8495235949264107,7693,18.171414068774656,145.66772429908508,7693 -2450.0,14.971260981542668,1.0551616024863857,11320,-10.445570685318478,1.0551616024863857,11320,16.017965778262308,1.0551616024863857,11320,18.255097981644653,145.0962047790977,11320 -2550.0,14.69879101973802,1.1113686649392334,6405,-10.869502352469992,1.1113686649392334,6405,2.864865064999015,1.1113686649392334,6405,18.281152557546303,143.51771355590273,6405 -2650.0,14.7146088527822,1.126117231224994,4202,-11.228028898167159,1.126117231224994,4202,-7.252829654883459,1.126117231224994,4202,18.50914224453562,142.65444309154105,4202 -2750.0,14.857658893548464,1.0972258222324078,3519,-11.506704753393786,1.0972258222324078,3519,-9.159942848124667,1.0972258222324078,3519,18.792399582778536,142.24354868736498,3519 -2850.0,15.615441205949205,1.114154092713031,4164,-11.397969233752354,1.114154092713031,4164,-11.814581088491517,1.114154092713031,4164,19.33276252143034,143.87367449561162,4164 -2950.0,16.556597930830968,1.1481823187119429,4851,-11.496586043337867,1.1481823187119429,4851,-10.057588585327085,1.1481823187119429,4851,20.156696795235753,145.22462341956083,4851 -3050.0,17.669989276305884,1.143650779784552,4788,-11.856048220449974,1.143650779784552,4788,-5.4325304042099765,1.143650779784552,4788,21.278966150412476,146.13953929387029,4788 -3150.0,18.500737947674974,1.1350714103525517,3343,-12.558369627189947,1.1350714103525517,3343,0.46893671087397976,1.1350714103525517,3343,22.36045510050428,145.83119357508613,3343 -3250.0,18.347770876912474,1.238745692045309,1312,-12.503228678540735,1.238745692045309,1312,-1.6157499270256104,1.238745692045309,1312,22.20295979232411,145.72722720202574,1312 -3350.0,19.130961916735888,1.560032849476135,2690,-13.621024093830739,1.560032849476135,2690,6.154060336753552,1.560032849476135,2690,23.484590718688633,144.5495727343956,2690 -3450.0,19.192926509579582,1.8632054848124027,3257,-14.263400814884653,1.8632054848124027,3257,7.649560677725353,1.8632054848124027,3257,23.91261237941549,143.38177272800112,3257 -3550.0,19.450648616601992,1.8633563424186372,2624,-15.09517173412162,1.8633563424186372,2624,9.097532523454568,1.8633563424186372,2624,24.620965482473373,142.18583748270214,2624 -3650.0,19.165322550659475,2.0752589878409955,2592,-15.75453769197105,2.0752589878409955,2592,11.849561211417695,2.0752589878409955,2592,24.809575698881936,140.57864895159778,2592 -3750.0,18.86076022919331,2.3680097564225897,1881,-15.42149815246154,2.3680097564225897,1881,13.530754455704239,2.3680097564225897,1881,24.362899697890946,140.7288547472506,1881 -3850.0,18.142507705896577,2.4644792061523617,1849,-15.89127613410781,2.4644792061523617,1849,22.142000042545913,2.4644792061523617,1849,24.11811027068624,138.7844289637125,1849 -3950.0,18.24688689295388,2.107291694867647,1235,-17.145871656925284,2.107291694867647,1235,21.24075221924493,2.107291694867647,1235,25.038566176201183,136.7818104932181,1235 -4050.0,18.201688080167724,2.1901329790355843,2426,-16.76568193143711,2.1901329790355843,2426,23.399807060237404,2.1901329790355843,2426,24.7465056036976,137.35164626122804,2426 -4150.0,18.03306200400449,2.275117599207462,1819,-17.27224565387945,2.275117599207462,1819,22.695253417356067,2.275117599207462,1819,24.97041840194569,136.23451182946746,1819 -4250.0,18.103349093050635,2.196011061205918,1224,-17.581366035994712,2.196011061205918,1224,20.70439613432025,2.196011061205918,1224,25.235603422079798,135.83804209273586,1224 -4350.0,17.960143280442633,2.1945717102368696,1839,-17.791727954893837,2.1945717102368696,1839,19.946343606098274,2.1945717102368696,1839,25.28067108039222,135.2698996066887,1839 -4450.0,17.719801910986135,2.0524455543875013,1788,-17.990445139731943,2.0524455543875013,1788,20.00205224129942,2.0524455543875013,1788,25.25168303480567,134.56577119583605,1788 -4550.0,15.801411371794703,2.8839426662624588,547,-17.914480729308853,2.8839426662624588,547,19.18186745329351,2.8839426662624588,547,23.887511823994167,131.41380355305807,547 -4650.0,14.57269698751778,3.625354950460323,513,-18.078054197565876,3.625354950460323,513,22.424000015471744,3.625354950460323,513,23.220239901003154,128.87224414681125,513 -4750.0,16.02270983689368,3.003339639754057,469,-17.886572984591425,3.003339639754057,469,25.37168659999213,3.003339639754057,469,24.013677845144944,131.85383680652515,469 -4850.0,12.555893990106664,4.837466819137955,449,-17.64592800377337,4.837466819137955,449,27.95256910752746,4.837466819137955,449,21.65708311396412,125.43361046151162,449 -4950.0,11.460513907226693,5.093925735268239,845,-14.64649945568819,5.093925735268239,845,33.61256435174181,5.093925735268239,845,18.59740103679035,128.04227768237084,845 +950.0,0.11471246215545013,2.2365335592858973,49906,0.012345693352936463,2.2365335592858973,49906,0.021130235724491665,1.7794461328622277,7819,0.11537488946096684,186.14269717550184,49906 +1050.0,13.568801951239248,2.703091107705618,56698,1.0703273885653475,2.703091107705618,56698,-8.974933738056265,1.448572994526065,10663,13.610950999495486,184.51023756995178,56698 +1150.0,14.286070506251198,2.9316659021351845,53544,0.5374031007244224,2.9316659021351845,53544,-17.239571611021976,1.3757432058411494,8574,14.296174754186818,182.15429555707937,53544 +1250.0,15.975224316470365,3.61208475095828,50979,0.022555714718806585,3.61208475095828,50979,-22.757138642128712,1.0741260227234013,10665,15.975240239877852,180.08089691718362,50979 +1350.0,17.44500796091952,2.0657845105443333,29305,-0.7122567800784789,2.0657845105443333,29305,-16.60251959690629,0.9822618209875349,9262,17.4595421611597,177.66198708251787,29305 +1450.0,18.18015170462209,2.313564608204639,30493,-1.5749467732846967,2.313564608204639,30493,-10.880890126385824,0.9744460224896703,10657,18.248243020678824,175.04882698899883,30493 +1550.0,18.769135871264105,1.781608579760254,21181,-2.7655908412188683,1.781608579760254,21181,-1.5403649707052876,0.9098268922865211,9151,18.971793643591177,171.61790801953134,21181 +1650.0,18.739817640350406,1.6749083459202017,17714,-3.7510986356684177,1.6749083459202017,17714,9.114301042950956,1.2255653841499807,9884,19.111554258304103,168.68085110280072,17714 +1750.0,18.25958017926542,1.7034577353253266,15880,-5.317947627580286,1.7034577353253266,15880,17.247712736098332,1.2154728530546144,8341,19.018223768078588,163.76224795920285,15880 +1850.0,17.750620662161047,1.447230161873397,12223,-6.741652511991301,1.447230161873397,12223,28.518880729116525,1.1243900571153091,8308,18.987743743909576,159.20331659366846,12223 +1950.0,16.986982188092945,1.1886035428488975,11104,-8.026665590661048,1.1886035428488975,11104,37.259989070264865,1.1886035428488975,11104,18.787893026172174,154.70839290004812,11104 +2050.0,16.05179350689921,0.9103740463353527,8422,-8.699804035586585,0.9103740463353527,8422,51.768861804615476,0.9103740463353527,8422,18.257783683835786,151.5430468050131,8422 +2150.0,15.754515250679255,0.7946949188932962,9962,-9.066104928053422,0.7946949188932962,9962,55.08507505456895,0.7946949188932962,9962,18.176881177758734,150.08126317883847,9962 +2250.0,15.298195329142294,0.8759809919823575,9173,-9.940337342961833,0.8759809919823575,9173,34.67788437057824,0.8759809919823575,9173,18.244042502155946,146.98532113591375,9173 +2350.0,15.017804710916646,0.8478397414847377,8378,-10.21304741773986,0.8478397414847377,8378,24.045917263085013,0.8478397414847377,8378,18.161519647106434,145.7818450558105,8378 +2450.0,14.971261801938283,1.0551614787951065,11320,-10.44556971631624,1.0551614787951065,11320,16.017961306123265,1.0551614787951065,11320,18.255098099999334,145.09620874669628,11320 +2550.0,14.698791819932985,1.1113686133865532,6405,-10.86950136671452,1.1113686133865532,6405,2.8648612249355976,1.1113686133865532,6405,18.281152614830873,143.51771753113556,6405 +2650.0,14.69047177678356,1.1173047040618729,3531,-11.229203153329934,1.1173047040618729,3531,-6.761521333205196,1.1173047040618729,3531,18.490672364282194,142.60618012564598,3531 +2750.0,14.85826194392184,1.1094377258273282,4190,-11.468888807773354,1.1094377258273282,4190,-9.305094329893533,1.1094377258273282,4190,18.76974582884022,142.3359415398869,4190 +2850.0,15.615441959336703,1.1141542561370277,4164,-11.397968191073039,1.1141542561370277,4164,-11.814585738480583,1.1141542561370277,4164,19.332762515225962,143.87367830796248,4164 +2950.0,16.5565986317836,1.1481824476101459,4851,-11.496584972083447,1.1481824476101459,4851,-10.057593052838282,1.1481824476101459,4851,20.156696759993032,145.2246270571831,4851 +3050.0,17.669990137925947,1.1436508541043964,4788,-11.85604705066093,1.1436508541043964,4788,-5.432533347708179,1.1436508541043964,4788,21.278966214125298,146.13954320207398,4788 +3150.0,17.709413039827243,1.1417973411245046,1324,-11.945674210425981,1.1417973411245046,1324,-6.826478516528134,1.1417973411245046,1324,21.361705047978724,145.99883418445864,1324 +3250.0,18.7031484547936,1.1744071545160477,3331,-12.731397028016083,1.1744071545160477,3331,2.1611965174052394,1.1744071545160477,3331,22.625123920257874,145.7565382378159,3331 +3350.0,19.13096289499871,1.5600327858644683,2690,-13.621022833063186,1.5600327858644683,2690,6.15405728716053,1.5600327858644683,2690,23.48459078435573,144.54957662436573,2690 +3450.0,19.192927695009974,1.8632054183617006,3257,-14.263399680577827,1.8632054183617006,3257,7.649556634205046,1.8632054183617006,3257,23.912612654283272,143.38177660363823,3257 +3550.0,19.45064986452723,1.8633561871840447,2624,-15.09517063543608,1.8633561871840447,2624,9.097528177431844,1.8633561871840447,2624,24.620965794732033,142.18584128304425,2624 +3650.0,19.165323771574855,2.075258837169329,2592,-15.75453664338488,2.075258837169329,2592,11.84955726428524,2.075258837169329,2592,24.809575976163902,140.5786526128016,2592 +3750.0,18.86076168656439,2.3680096196483187,1881,-15.421497234416881,2.3680096196483187,1881,13.530749586671623,2.3680096196483187,1881,24.36290024501399,140.72885858818725,1881 +3850.0,18.142509036569244,2.464479222817468,1849,-15.891275247501301,2.464479222817468,1849,22.141995527669998,2.464479222817468,1849,24.118110687486368,138.78443263099933,1849 +3950.0,18.246888235637016,2.1072915269498425,1235,-17.145870564003076,2.1072915269498425,1235,21.24074822758408,2.1072915269498425,1235,25.038566406273656,136.78181441973453,1235 +4050.0,18.20168953910055,2.190132894505488,2426,-16.765681050576468,2.190132894505488,2426,23.399802569807463,2.190132894505488,2426,24.746506079999683,137.35165004980811,2426 +4150.0,18.033063524992578,2.2751174950986326,1819,-17.27224477105561,2.2751174950986326,1819,22.69524883206593,2.2751174950986326,1819,24.970418889711794,136.2345157064134,1819 +4250.0,18.103350720884553,2.196010958872384,1224,-17.581365328145065,2.196010958872384,1224,20.70439142718187,2.196010958872384,1224,25.23560409669348,135.83804582053088,1224 +4350.0,17.960144760865997,2.1945715439490763,1839,-17.79172709073974,2.1945715439490763,1839,19.946339114755546,2.1945715439490763,1839,25.280671523965196,135.26990335936168,1839 +4450.0,17.719803407013988,2.0524455324600837,1788,-17.990444366792026,2.0524455324600837,1788,20.00204805679363,2.0524455324600837,1788,25.251683533932216,134.56577484489458,1788 +4550.0,15.801412554600232,2.88394266178488,547,-17.91447971118103,2.88394266178488,547,19.1818635046343,2.88394266178488,547,23.88751184286456,131.41380729609511,547 +4650.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 +4750.0,15.400075031257888,3.3407742265577913,982,-17.96879445799439,3.3407742265577913,982,24.10594347623795,3.3407742265577913,982,23.665161846943338,130.59807995305758,982 +4850.0,12.555895156984363,4.837466731738944,449,-17.64592721721276,4.837466731738944,449,27.952565516479392,4.837466731738944,449,21.657083149592268,125.43361418325873,449 +4950.0,11.460515200194662,5.093925773426689,845,-14.646499312762217,5.093925773426689,845,33.61256041585599,5.093925773426689,845,18.597401721010304,128.04228109090502,845 diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_wind_vel_h_u_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_wind_vel_h_u_hres100.png index fd69b9a..7ce5130 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_wind_vel_h_u_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_wind_vel_h_u_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_wind_vel_h_v_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_wind_vel_h_v_hres100.png index 0bc0f7f..3888828 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_wind_vel_h_v_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_wind_vel_h_v_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_wind_vel_v_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_wind_vel_v_hres100.png index a395b2d..4303649 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_wind_vel_v_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114110000_wind_profile_VAD_wind_vel_v_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_WIND_DIRECTION_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_WIND_DIRECTION_hres100.png index 1ed33d9..e75d2f3 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_WIND_DIRECTION_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_WIND_DIRECTION_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_WIND_SPEED_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_WIND_SPEED_hres100.png index 3bb8f08..d89a564 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_WIND_SPEED_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_WIND_SPEED_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_WIND_hres100.csv b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_WIND_hres100.csv index 9eb5023..57208e7 100644 --- a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_WIND_hres100.csv +++ b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_WIND_hres100.csv @@ -15,44 +15,44 @@ Altitude [m MSL],u_wind,std_u_wind,np_u_wind,v_wind,std_v_wind,np_v_wind,w_wind, 650.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 750.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 850.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 -950.0,0.09155606431580479,2.2604870992625843,49927,0.009633833538766673,2.2604870992625843,49927,0.019967312177879136,1.5351702309170903,7747,0.09206152106962197,186.00674871946177,49927 -1050.0,12.906759151144115,2.829581466340868,56833,0.8973870675605596,2.829581466340868,56833,-11.26177404404168,2.0511541812555465,10684,12.9379185085804,183.97728645917587,56833 -1150.0,13.520011870710494,3.017514517542304,53520,0.37265366508928804,3.017514517542304,53520,-18.289114364058115,1.5668536215881201,8397,13.52514664387256,181.57885050763412,53520 -1250.0,15.313634959527917,3.6433665494348424,51070,-0.06240459330075454,3.6433665494348424,51070,-23.233202048925488,1.18801567319587,10519,15.313762111478049,179.7665152633067,51070 -1350.0,16.81177084939055,2.215382112627154,29118,-0.7324353004790357,2.215382112627154,29118,-14.971962301586192,1.2143490125199676,9255,16.82771822208245,177.50538292651666,29118 -1450.0,17.480502728900998,2.4233883286360327,34419,-1.4995970391590077,2.4233883286360327,34419,-11.667253565389382,1.111533382154156,10575,17.544707661712966,175.09678100399083,34419 -1550.0,18.30554269540224,1.4464316096800032,17317,-2.5849271918733407,1.4464316096800032,17317,-0.9503509350975567,1.0959832242809067,9136,18.487150725854985,171.96240111786358,17317 -1650.0,18.329128836286486,1.6212305776586302,17906,-3.6567200793473282,1.6212305776586302,17906,7.576524774938157,1.3092471685862122,9944,18.690333481131116,168.7174392208565,17906 -1750.0,18.054762161640696,1.7883143327753446,16181,-5.29209722103015,1.7883143327753446,16181,14.606538197493713,1.415760785505083,8387,18.814375613085,163.66341888575883,16181 -1850.0,17.568039037480307,1.5576620873449232,12265,-6.537240192058692,1.5576620873449232,12265,27.14061098418891,1.2808938593833998,8311,18.74490610675603,159.58927083152014,12265 -1950.0,16.92251230705682,1.5511281628524352,11033,-7.918336937063407,1.5511281628524352,11033,33.60702799563659,1.5511281628524352,11033,18.683454783078858,154.92429125527337,11033 -2050.0,16.103922766357044,1.3036523035286578,8383,-8.756790206536548,1.3036523035286578,8383,41.477874661536504,1.3036523035286578,8383,18.330785667452638,151.46408848296414,8383 -2150.0,15.735704648921482,0.9750473377215666,9897,-8.932755177704458,0.9750473377215666,9897,48.29807875898383,0.9750473377215666,9897,18.09437801812748,150.41753603345506,9897 -2250.0,15.28102430451329,0.9289052037879914,9796,-9.728764816970852,0.9289052037879914,9796,33.54626010412763,0.9289052037879914,9796,18.11514749205912,147.5168623413666,9796 -2350.0,14.99815567180317,0.9081006613922507,7721,-9.915591482357016,0.9081006613922507,7721,27.161845094685418,0.9081006613922507,7721,17.979533586849037,146.53048314172418,7721 -2450.0,14.840955798410267,1.122630295480858,11252,-10.132811595106343,1.122630295480858,11252,17.546291014909187,1.122630295480858,11252,17.970193093906612,145.6763001636564,11252 -2550.0,14.625284063362189,1.208267138940385,6353,-10.584758317233703,1.208267138940385,6353,1.8115159240397474,1.208267138940385,6353,18.053698861127714,144.1056087364471,6353 -2650.0,14.489717193446111,1.2532164122491725,4171,-11.080354115130405,1.2532164122491725,4171,-9.768073729152713,1.2532164122491725,4171,18.240782649402277,142.59468792267455,4171 -2750.0,14.566396845838407,1.2307086753325565,3511,-11.579820255194662,1.2307086753325565,3511,-10.66987804589548,1.2307086753325565,3511,18.608389350319055,141.51642185929822,3511 -2850.0,15.15238902693181,1.23175641273253,4106,-11.63146810872842,1.23175641273253,4106,-13.325714867780906,1.23175641273253,4106,19.101987948584036,142.48897971992952,4106 -2950.0,15.970049370830942,1.229123877528141,4713,-11.863691646044732,1.229123877528141,4713,-12.62000121819868,1.229123877528141,4713,19.894462957798314,143.39240177720131,4713 -3050.0,16.798210276477384,1.3001361286394524,4681,-12.456611336215499,1.3001361286394524,4681,-7.475719604270593,1.3001361286394524,4681,20.912843768227287,143.4414401216468,4681 -3150.0,17.893388888396967,1.4080355264427615,3262,-13.567699072198018,1.4080355264427615,3262,3.061497034609457,1.4080355264427615,3262,22.45564125170179,142.82870155795706,3262 -3250.0,17.556335582290362,1.7457977927711625,1310,-13.540219412677251,1.7457977927711625,1310,3.273091339219294,1.7457977927711625,1310,22.171207924275045,142.3590078154272,1310 -3350.0,18.16325643927096,1.766570472687296,2642,-14.481280264892105,1.766570472687296,2642,8.369141620547149,1.766570472687296,2642,23.22953642647807,141.43519237018495,2642 -3450.0,18.524792306655165,1.986773827209695,3285,-15.156085970058092,1.986773827209695,3285,10.835218251579745,1.986773827209695,3285,23.934804614546202,140.71163488635628,3285 -3550.0,18.189161884173654,2.649611070373824,2616,-15.335991017466743,2.649611070373824,2616,13.393441288813827,2.649611070373824,2616,23.7915579678275,139.86445736665704,2616 -3650.0,18.65754430354818,2.4167033786887306,2562,-16.160915539238758,2.4167033786887306,2562,14.30596798457267,2.4167033786887306,2562,24.683580585183986,139.10132695235077,2562 -3750.0,17.95429989746658,2.564445624151739,1930,-16.25642437023698,2.564445624151739,1930,20.49793311757617,2.564445624151739,1930,24.220409123575998,137.84125372364954,1930 -3850.0,18.089179594889398,2.602445637207364,1871,-16.527239040885895,2.602445637207364,1871,21.206762636903868,2.602445637207364,1871,24.50240903933215,137.58351225747066,1871 -3950.0,18.169169443865833,2.7316724687512752,1208,-16.79706214034962,2.7316724687512752,1208,16.22453344381313,2.7316724687512752,1208,24.743888433847143,137.24718646945053,1208 -4050.0,18.66151796639262,2.5045630593210664,1817,-17.262561413825292,2.5045630593210664,1817,16.339579497124134,2.5045630593210664,1817,25.421413795776278,137.23008708592013,1817 -4150.0,17.856453996465753,2.6974928584015285,1813,-17.16299942484096,2.6974928584015285,1813,20.234096869534135,2.6974928584015285,1813,24.767347427308177,136.1344217101839,1813 -4250.0,18.21966337517507,2.3639275032609017,1184,-17.67931507281803,2.3639275032609017,1184,19.896392817845406,2.3639275032609017,1184,25.387286482581526,135.86234597118207,1184 -4350.0,18.0799594806307,2.427882310836991,1709,-17.390123697657593,2.427882310836991,1709,16.357768435546504,2.427882310836991,1709,25.085879235958224,136.1141698367854,1709 -4450.0,18.160399057466677,1.9138287297906167,1675,-17.59388037245143,1.9138287297906167,1675,16.11319737235231,1.9138287297906167,1675,25.285266866034224,135.90776304903525,1675 -4550.0,16.55156075340419,2.636782681598928,513,-17.43350189318668,2.636782681598928,513,16.501822350984742,2.636782681598928,513,24.03915871309504,133.5134596697781,513 -4650.0,16.37409190987662,3.3748055703673443,990,-16.521400144896823,3.3748055703673443,990,17.53623870277135,3.3748055703673443,990,23.26085872492423,134.74342734488226,990 -4750.0,17.28162460522917,3.8161828648153673,495,-14.640331254016449,3.8161828648153673,495,15.703890447786211,3.8161828648153673,495,22.649367501618958,139.73000506887436,495 -4850.0,16.037741041113893,3.882183074273822,900,-14.850425526989524,3.882183074273822,900,21.438256050242508,3.882183074273822,900,21.857362055712283,137.2013184879596,900 -4950.0,13.611485959085952,5.312898366172981,922,-10.722420900345249,5.312898366172981,922,37.22470858027084,5.312898366172981,922,17.327517421100882,141.77079848908355,922 +950.0,0.09155607898472376,2.2604870141051387,49927,0.009633842358214581,2.2604870141051387,49927,0.01996731280967314,1.5351702009150734,7747,0.09206153658091909,186.0067532228794,49927 +1050.0,12.906758961042879,2.8295814028898656,56833,0.897388128364166,2.8295814028898656,56833,-11.261773364357028,2.05115403952957,10684,12.937918392515451,183.97729120404037,56833 +1150.0,13.520011729677133,3.01751452432373,53520,0.3726547978924865,3.01751452432373,53520,-18.289113226894816,1.566853462062844,8397,13.525146534104522,181.57885532110095,53520 +1250.0,15.313634899727633,3.6433666000282074,51070,-0.06240338498762727,3.6433666000282074,51070,-23.233200161471455,1.1880156027325282,10519,15.313762046754352,179.76651978320882,51070 +1350.0,16.811770888651722,2.215382150743823,29118,-0.7324340664765405,2.215382150743823,29118,-14.971960627866011,1.2143489653416601,9255,16.82771820759585,177.50538712994106,29118 +1450.0,17.58202214778721,2.402815834328745,30444,-1.5252334546733586,2.402815834328745,30444,-11.66725315940998,1.1112166451518415,10575,17.64805484739139,175.0420260365311,30444 +1550.0,18.154310768463567,1.7146125104542786,21292,-2.5006616484787605,1.7146125104542786,21292,-0.9503516932925349,1.0963442846239166,9136,18.325728038965455,172.1571589942268,21292 +1650.0,18.32912909957811,1.6212305875885844,17906,-3.6567189703711045,1.6212305875885844,17906,7.576523039336417,1.309247201541953,9944,18.690333522365858,168.71744271266948,17906 +1750.0,18.054762649071957,1.7883142772835257,16181,-5.292096111199273,1.7883142772835257,16181,14.6065345872183,1.415760750662752,8387,18.814375768664085,163.6634225466188,16181 +1850.0,17.56803957645156,1.5576620082400154,12265,-6.537239191914756,1.5576620082400154,12265,27.140604854856576,1.2808937353550403,8311,18.74490626309117,159.58927427116853,12265 +1950.0,16.922512957180224,1.5511280115456216,11033,-7.918335928098703,1.5511280115456216,11033,33.60702154996717,1.5511280115456216,11033,18.683454944312395,154.92429490275936,11033 +2050.0,16.103923379694116,1.3036521106617949,8383,-8.75678917874418,1.3036521106617949,8383,41.47786825838073,1.3036521106617949,8383,18.33078571529409,151.4640922210359,8383 +2150.0,15.735705335195416,0.9750471412857455,9897,-8.932754122715254,0.9750471412857455,9897,48.29807339118804,0.9750471412857455,9897,18.09437809412039,150.4175400114102,9897 +2250.0,15.283315003044658,0.9041203717320806,9115,-9.735353871521442,0.9041203717320806,9115,33.72558515839216,0.9041203717320806,9115,18.120618987386646,147.50317768288863,9115 +2350.0,15.008266094647572,0.9364990045094976,8402,-9.899162310518951,0.9364990045094976,8402,27.236403765811065,0.9364990045094976,8402,17.978917253765502,146.59192751407602,8402 +2450.0,14.84095658140287,1.1226301838979535,11252,-10.132810617849247,1.1226301838979535,11252,17.546286271054985,1.1226301838979535,11252,17.97019318950922,145.67630414462383,11252 +2550.0,14.62528482576351,1.2082670514375753,6353,-10.584757311835084,1.2082670514375753,6353,1.8115120339421524,1.2082670514375753,6353,18.053698889290104,144.10561273986542,6353 +2650.0,14.48776547996494,1.2419184986133998,3508,-11.086715450038795,1.2419184986133998,3508,-9.404446302705114,1.2419184986133998,3508,18.243097545992367,142.57509399931126,3508 +2750.0,14.557828868409336,1.2438712997886125,4174,-11.509038150380764,1.2438712997886125,4174,-10.836337463119836,1.2438712997886125,4174,18.557702996567546,141.6710271394166,4174 +2850.0,15.152389766605792,1.2317565221976956,4106,-11.631467089091025,1.2317565221976956,4106,-13.325719513745494,1.2317565221976956,4106,19.101987914448788,142.4889834968917,4106 +2950.0,15.970050048640966,1.2291239605677107,4713,-11.863690634358473,1.2291239605677107,4713,-12.62000694901437,1.2291239605677107,4713,19.89446289860227,143.39240528018257,4713 +3050.0,16.79821120982,1.3001361782604963,4681,-12.456610211008,1.3001361782604963,4681,-7.475723875501505,1.3001361782604963,4681,20.912843847710217,143.44144412101468,4681 +3150.0,16.977127169230112,1.5792738756931375,1266,-12.861899383532585,1.5792738756931375,1266,-1.19024444410609,1.5792738756931375,1266,21.299091592655476,142.85237111543205,1266 +3250.0,18.062838839016415,1.4861978454442437,3306,-13.746814140429278,1.4861978454442437,3306,4.2194242871314955,1.4861978454442437,3306,22.698921691036034,142.72686900327304,3306 +3350.0,18.163257648296195,1.7665703736335567,2642,-14.4812792135643,1.7665703736335567,2642,8.369137749803313,1.7665703736335567,2642,23.22953671642204,141.43519625676268,2642 +3450.0,18.524793533316508,1.986773710185231,3285,-15.156084892895585,1.986773710185231,3285,10.835213963193688,1.986773710185231,3285,23.93480488185903,140.71163874147382,3285 +3550.0,18.18916315946377,2.6496109711582405,2616,-15.335990042608636,2.6496109711582405,2616,13.393437037683624,2.6496109711582405,2616,23.7915583144229,139.86446114121094,2616 +3650.0,18.657545573553023,2.4167031692598164,2562,-16.160914430953582,2.4167031692598164,2562,14.305963533312037,2.4167031692598164,2562,24.68358081952073,139.10133082696072,2562 +3750.0,17.95430139021886,2.564445436750107,1930,-16.256423572127705,2.564445436750107,1930,20.49792816415937,2.564445436750107,1930,24.220409694454883,137.8412574933378,1930 +3850.0,18.08918084971801,2.6024455382732596,1871,-16.527238019491048,2.6024455382732596,1871,21.206758914412653,2.6024455382732596,1871,24.502409276777563,137.5835159999361,1871 +3950.0,18.169170774978134,2.7316723110897496,1208,-16.79706112988396,2.7316723110897496,1208,16.224529844870958,2.7316723110897496,1208,24.743888725327274,137.24719027988246,1208 +4050.0,18.66151949800233,2.504562901967397,1817,-17.26256060603787,2.504562901967397,1817,16.339575413351866,2.504562901967397,1817,25.42141437157759,137.2300907665173,1817 +4150.0,17.856455370489424,2.69749271100198,1813,-17.162998509989425,2.69749271100198,1813,20.234092660488503,2.69749271100198,1813,24.767347783971132,136.13442543870366,1813 +4250.0,18.219664906120126,2.363927375308369,1184,-17.679314240841897,2.363927375308369,1184,19.896388388214756,2.363927375308369,1184,25.38728700191772,135.86234972482876,1184 +4350.0,18.079960838534824,2.4278822175767765,1709,-17.390122746204426,2.4278822175767765,1709,16.357764294262893,2.4278822175767765,1709,25.08587955506064,136.11417355297783,1709 +4450.0,18.160400495594594,1.9138287761520443,1675,-17.59387949201447,1.9138287761520443,1675,16.113193721344658,1.9138287761520443,1675,25.28526728630567,135.90776674941665,1675 +4550.0,16.551561525490094,2.6367827235270256,513,-17.433500742116934,2.6367827235270256,513,16.501820835782528,2.6367827235270256,513,24.03915840992516,133.51346289329507,513 +4650.0,17.886000242438907,3.418097916709044,503,-15.607457615211674,3.418097916709044,503,12.067591060763668,3.418097916709044,503,23.73819154618046,138.89180588603256,503 +4750.0,15.934664377468257,3.5830985001334072,982,-16.20571702676001,3.5830985001334072,982,19.758367525464028,3.5830985001334072,982,22.727489812427045,134.51681330502697,982 +4850.0,16.037742358224026,3.882183000968463,900,-14.850425041855145,3.882183000968463,900,21.438251746721537,3.882183000968463,900,21.857362692523807,137.20132176685314,900 +4950.0,13.61148692986573,5.312898542872258,922,-10.722420338926936,5.312898542872258,922,37.22470573471472,5.312898542872258,922,17.327517836278215,141.7708019337527,922 diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_wind_vel_h_u_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_wind_vel_h_u_hres100.png index a403173..24fc17b 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_wind_vel_h_u_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_wind_vel_h_u_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_wind_vel_h_v_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_wind_vel_h_v_hres100.png index 0c6ad6d..d733283 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_wind_vel_h_v_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_wind_vel_h_v_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_wind_vel_v_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_wind_vel_v_hres100.png index 889020c..560f7d6 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_wind_vel_v_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114111500_wind_profile_VAD_wind_vel_v_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_WIND_DIRECTION_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_WIND_DIRECTION_hres100.png index ecd99e2..b57e1fc 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_WIND_DIRECTION_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_WIND_DIRECTION_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_WIND_SPEED_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_WIND_SPEED_hres100.png index 7edc2c8..6cfc94e 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_WIND_SPEED_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_WIND_SPEED_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_WIND_hres100.csv b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_WIND_hres100.csv index 8f3e407..c632214 100644 --- a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_WIND_hres100.csv +++ b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_WIND_hres100.csv @@ -15,44 +15,44 @@ Altitude [m MSL],u_wind,std_u_wind,np_u_wind,v_wind,std_v_wind,np_v_wind,w_wind, 650.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 750.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 850.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 -950.0,0.0758972023690912,2.2476773412922526,50215,0.006802075669648792,2.2476773412922526,50215,0.01116761601792597,1.7783880947984718,7777,0.07620140130516244,185.1212924787689,50215 -1050.0,11.75167991531446,2.6794286496629462,57203,0.6446548543259468,2.6794286496629462,57203,-17.257952934728586,1.3975518008723908,10703,11.76934835550428,183.1398931758087,57203 -1150.0,12.881308460158346,3.001240445156144,54190,0.21384182393684684,3.001240445156144,54190,-22.020413071021963,1.5188808264618594,8530,12.883083325485853,180.95107641300484,54190 -1250.0,14.365284136435015,3.6493058404073278,51800,-0.1471274267935157,3.6493058404073278,51800,-24.073795253991626,1.4156042913244,10586,14.366037546944753,179.41320437560785,51800 -1350.0,16.105147678309255,2.3627013416634575,29055,-0.7720756499483898,2.3627013416634575,29055,-16.444714725814173,1.3783942282699893,9174,16.123643587892694,177.25535988199258,29055 -1450.0,16.834782136732237,2.435851638060673,34142,-1.4600227912691497,2.435851638060673,34142,-12.108344533858988,1.1635261334136655,10553,16.897974912464043,175.04333632490085,34142 -1550.0,17.72032344867122,1.5722627593035747,17158,-2.4830712553135226,1.5722627593035747,17158,0.711630566528162,1.2238418701583194,9124,17.89344868896131,172.02333076365625,17158 -1650.0,17.79329197952552,1.7171230307264482,17930,-3.67894723589329,1.7171230307264482,17930,11.621958761017323,1.3729359422095981,9914,18.16964205022031,168.31811460092257,17930 -1750.0,17.50198807812782,1.7183907530184175,16378,-5.127185752888447,1.7183907530184175,16378,19.065232538447056,1.4366850460198206,8332,18.237533288017616,163.67211911418028,16378 -1850.0,17.13040757862883,1.4048388211486291,12327,-6.517105870260555,1.4048388211486291,12327,29.322144677978965,1.1822955980732406,8403,18.328216845457952,159.17114330192788,12327 -1950.0,16.450422485082175,1.5857297813994795,11031,-7.855133210586264,1.5857297813994795,11031,32.69032058651806,1.5857297813994795,11031,18.229632955541163,154.47536446947095,11031 -2050.0,15.83118790071525,1.1779502276254132,8374,-8.636396763621082,1.1779502276254132,8374,40.60643311198057,1.1779502276254132,8374,18.03368679461961,151.3861839031681,8374 -2150.0,15.607707756809035,0.9867819917694584,9890,-8.756117781458538,0.9867819917694584,9890,46.41840579303606,0.9867819917694584,9890,17.896092870365063,150.7070339527562,9890 -2250.0,15.080661590039247,1.0842799457655705,9875,-9.426572843083052,1.0842799457655705,9875,29.04598512679596,1.0842799457655705,9875,17.7844490934984,147.99144947509743,9875 -2350.0,14.864049620639383,1.017429531693701,7797,-9.71115015368902,1.017429531693701,7797,25.18389967954059,1.017429531693701,7797,17.755179763447174,146.8421542753419,7797 -2450.0,14.728740852894164,1.0364753167990708,11336,-9.962858884761081,1.0364753167990708,11336,15.957315959759754,1.0364753167990708,11336,17.781854916441542,145.92467586276678,11336 -2550.0,14.454530065418966,1.1427678303118263,6329,-10.487339973872679,1.1427678303118263,6329,4.383222467484494,1.1427678303118263,6329,17.8582680890306,144.03761270438284,6329 -2650.0,14.226886522169416,1.5391464785962763,4026,-11.13627407692162,1.5391464785962763,4026,-5.805491958851568,1.5391464785962763,4026,18.06712208490888,141.94749074222798,4026 -2750.0,14.306964753672982,1.1888596540496563,3407,-12.068142160421917,1.1888596540496563,3407,-7.896615224315702,1.1888596540496563,3407,18.717085661688735,139.85185994430358,3407 -2850.0,14.985235709385897,1.41642151895353,4002,-12.345033285036946,1.41642151895353,4002,-10.43790856798078,1.41642151895353,4002,19.415384005332584,140.51785649724962,4002 -2950.0,15.822265301281018,1.2929410384279987,4527,-12.373482454001135,1.2929410384279987,4527,-16.919143304984924,1.2929410384279987,4527,20.085993809209324,141.97353418167998,4527 -3050.0,16.602257870609744,1.4729080315018062,4531,-13.016427002313627,1.4729080315018062,4531,-11.014133042003577,1.4729080315018062,4531,21.09650061760913,141.90300498472175,4531 -3150.0,17.40475191774681,1.8024675369123306,3240,-13.98451145569244,1.8024675369123306,3240,-2.0798572436498626,1.8024675369123306,3240,22.326933286340612,141.2185362786017,3240 -3250.0,17.242880174919364,2.0345821596401996,1310,-14.966612846811465,2.0345821596401996,1310,6.595843266715619,2.0345821596401996,1310,22.83235460553662,139.0424118874341,1310 -3350.0,17.97459517190957,2.0627339036850634,2578,-15.065275125115319,2.0627339036850634,2578,7.244216805463831,2.0627339036850634,2578,23.45311463728119,140.03219075477006,2578 -3450.0,18.00346133995899,2.022062155905936,3209,-15.540561991293862,2.022062155905936,3209,12.433146890088981,2.022062155905936,3209,23.78305462350548,139.19928688975932,3209 -3550.0,18.566523453585877,2.2813610181026673,2575,-16.119768540282685,2.2813610181026673,2575,13.560048146099758,2.2813610181026673,2575,24.587857388248405,139.03493413308297,2575 -3650.0,18.59792371384958,2.359477369912103,2527,-16.294808013216826,2.359477369912103,2527,14.268016461049143,2.359477369912103,2527,24.726575473643006,138.77636446156876,2527 -3750.0,18.22368496244976,2.3523278565847754,1857,-16.44265002910883,2.3523278565847754,1857,19.716707524877897,2.3523278565847754,1857,24.54513054742977,137.94107069567767,1857 -3850.0,18.377767486648676,2.2572991270567275,1885,-16.699108006886284,2.2572991270567275,1885,17.139754783163514,2.2572991270567275,1885,24.831482960527644,137.73988994826206,1885 -3950.0,18.25737516666588,2.2712954774667344,1845,-16.704596985974117,2.2712954774667344,1845,17.533949205405207,2.2712954774667344,1845,24.746218063376947,137.5430261043652,1845 -4050.0,18.175023281029816,2.0561582341764058,2375,-16.92538130152699,2.0561582341764058,2375,20.79477958062059,2.0561582341764058,2375,24.835458591861258,137.03897888262725,2375 -4150.0,17.856162674920462,2.1931728892925744,1185,-16.763726922458332,2.1931728892925744,1185,15.957365298566446,2.1931728892925744,1185,24.49214334851029,136.80737709719781,1185 -4250.0,16.877706220394128,3.078111954014575,552,-15.965191797278312,3.078111954014575,552,22.98275936078801,3.078111954014575,552,23.232397990431668,136.59150930639433,552 -4350.0,17.325691312877506,3.655426599177093,1749,-15.984572039309587,3.655426599177093,1749,23.62221842540992,3.655426599177093,1749,23.572995625269964,137.3055655449716,1749 -4450.0,17.32991908141587,3.4874950280297194,1657,-15.75124438332928,3.4874950280297194,1657,21.673906638281384,3.4874950280297194,1657,23.41853528707088,137.7321538729644,1657 -4550.0,17.795904362188434,2.011371943979417,527,-16.292799645907408,2.011371943979417,527,9.727301127637183,2.011371943979417,527,24.127775122663877,137.5247603068792,527 -4650.0,11.174751966137949,5.438925106107097,1050,-10.36412852508118,5.438925106107097,1050,56.663551899610795,5.438925106107097,1050,15.241070880653542,137.15532984166205,1050 -4750.0,10.119535020611368,5.119217000955558,529,-7.644992331670117,5.119217000955558,529,73.53753602766896,5.119217000955558,529,12.682700689706227,142.93009347307856,529 -4850.0,8.105772622816396,4.931846859478858,934,-6.731893956287812,4.931846859478858,934,58.900552093611296,4.931846859478858,934,10.53669521489087,140.290160267474,934 -4950.0,10.021760017243501,5.615456333419368,484,-8.165803020038648,5.615456333419368,484,63.09773662236921,5.615456333419368,484,12.92733587423537,140.82660148691022,484 +950.0,0.07589720345811063,2.247677294122936,50215,0.006802082012839389,2.247677294122936,50215,0.011167616837007814,1.7783880754123311,7777,0.07620140295605608,185.12129715607685,50215 +1050.0,11.751679683074999,2.6794286247029486,57203,0.6446558266909995,2.6794286247029486,57203,-17.2579520943225,1.397551691536612,10703,11.769348176873873,183.1398979643168,57203 +1150.0,12.881308270713921,3.001240474721687,54190,0.21384289202625148,3.001240474721687,54190,-22.020412703298668,1.518880747689694,8530,12.883083153796417,180.9510811765192,54190 +1250.0,14.36528397033236,3.6493058985441023,51800,-0.14712626898105433,3.6493058985441023,51800,-24.073794291019702,1.415604289338642,10586,14.366037368993307,179.41320898626145,51800 +1350.0,16.105147478364973,2.3627014161055087,29055,-0.7720743893212182,2.3627014161055087,29055,-16.4447144367284,1.3783942830855942,9174,16.123643327813085,177.25536432250232,29055 +1450.0,16.90830349046143,2.394386838720259,30212,-1.4733604229870516,2.394386838720259,30212,-12.108345372886825,1.1631939953599966,10553,16.972375139077464,175.01992381137487,30212 +1550.0,17.593200751653796,1.8449866117058797,21088,-2.41466076162683,1.8449866117058797,21088,0.7116291549371404,1.2242456729965752,9124,17.75813332762574,172.18500143348058,21088 +1650.0,17.793292004088144,1.717123046954975,17930,-3.6789458663297117,1.717123046954975,17930,11.621956557365005,1.3729360077226325,9914,18.169641796968136,168.31811884590462,17930 +1750.0,17.501988328138605,1.7183907378892287,16378,-5.127184510814876,1.7183907378892287,16378,19.06523040896245,1.436685015514647,8332,18.237533178756383,163.67212307976507,16378 +1850.0,17.130407969222528,1.4048387138975826,12327,-6.517104727202723,1.4048387138975826,12327,29.3221406917587,1.1822954585247847,8403,18.32821680407919,159.17114707588217,12327 +1950.0,16.450423098197504,1.5857296181559226,11031,-7.855132239646116,1.5857296181559226,11031,32.69031508328114,1.5857296181559226,11031,18.22963309043925,154.4753680536482,11031 +2050.0,15.831188548974497,1.177949940528863,8374,-8.636395728431557,1.177949940528863,8374,40.606429497500436,1.177949940528863,8374,18.03368686794944,151.38618777679392,8374 +2150.0,15.607708464257373,0.9867817109837037,9890,-8.756116725030441,0.9867817109837037,9890,46.41840065805212,0.9867817109837037,9890,17.896092970467297,150.7070380106921,9890 +2250.0,15.098623767706524,1.091990916775552,9192,-9.408787136578196,1.091990916775552,9192,29.407345974108786,1.091990916775552,9192,17.790270235726933,148.070684929682,9192 +2350.0,14.865787756697703,1.0140451036693008,8480,-9.703455632387708,1.0140451036693008,8480,25.176589058472654,1.0140451036693008,8480,17.752427913862938,146.8660127452958,8480 +2450.0,14.728741618318912,1.0364751418511045,11336,-9.962857896827664,1.0364751418511045,11336,15.957311360220157,1.0364751418511045,11336,17.781854996922593,145.92467988130454,11336 +2550.0,14.454530807985773,1.1427677293017082,6329,-10.487339010320193,1.1427677293017082,6329,4.38321784595036,1.1427677293017082,6329,17.85826812421612,144.0376166056776,6329 +2650.0,14.224666611110221,1.3185100401844236,3384,-11.169041912743998,1.3185100401844236,3384,-5.819709742570472,1.3185100401844236,3384,18.085591984943875,141.86141133482442,3384 +2750.0,14.305521604007886,1.446320790006808,4049,-12.003577873428407,1.446320790006808,4049,-7.800075394387335,1.446320790006808,4049,18.674416460125236,140.0004231265951,4049 +2850.0,14.985236649198313,1.4164215840843224,4002,-12.345032344817113,1.4164215840843224,4002,-10.437913242026339,1.4164215840843224,4002,19.41538413287404,140.51786040223095,4002 +2950.0,15.822266240089315,1.2929411004793594,4527,-12.373481516799671,1.2929411004793594,4527,-16.919149165395016,1.2929411004793594,4527,20.085993971393428,141.9735379372788,4527 +3050.0,16.602258748400626,1.4729080603614535,4531,-13.016425949486136,1.4729080603614535,4531,-11.014138640543953,1.4729080603614535,4531,21.096500658813092,141.90300870585287,4531 +3150.0,16.7340026026744,1.6525831825492832,1290,-14.24583879583013,1.6525831825492832,1290,-2.9921188472793494,1.6525831825492832,1290,21.976595871587858,139.59188699891862,1290 +3250.0,17.661547356333113,1.9523577727109163,3260,-14.23270928045513,1.9523577727109163,3260,1.6402724418793857,1.9523577727109163,3260,22.68259836266451,141.1360982663988,3260 +3350.0,17.974596493672088,2.062733752302684,2578,-15.065274164778115,2.062733752302684,2578,7.244212604227421,2.062733752302684,2578,23.45311503340782,140.03219462703802,2578 +3450.0,18.003462677231152,2.022062066358365,3209,-15.540561155325854,2.022062066358365,3209,12.433142582019526,2.022062066358365,3209,23.78305508955647,139.19929051938456,3209 +3550.0,18.566524853901296,2.2813608681682043,2575,-16.11976756535712,2.2813608681682043,2575,13.560043602757782,2.2813608681682043,2575,24.58785780647989,139.03493798782526,2575 +3650.0,18.59792505368155,2.35947720068594,2527,-16.294807026242978,2.35947720068594,2527,14.26801163723097,2.35947720068594,2527,24.726575830972905,138.77636822765916,2527 +3750.0,18.2236864716652,2.3523277861081526,1857,-16.44264920858589,2.3523277861081526,1857,19.716702415989282,2.3523277861081526,1857,24.54513111829235,137.94107447775693,1857 +3850.0,18.377768758114517,2.2572990619421036,1885,-16.69910695539658,2.2572990619421036,1885,17.13975063783855,2.2572990619421036,1885,24.831483194414794,137.73989371683115,1885 +3950.0,18.257376506999304,2.2712953897627175,1845,-16.704595965311388,2.2712953897627175,1845,17.533945255276862,2.2712953897627175,1845,24.74621836326972,137.54302994273385,1845 +4050.0,18.175024783007288,2.05615813679731,2375,-16.925380396775083,2.05615813679731,2375,20.794775402358187,2.05615813679731,2375,24.8354590744457,137.0389827715901,2375 +4150.0,17.85616371120324,2.1931727916581383,1185,-16.763725836350723,2.1931727916581383,1185,15.957362148136628,2.1931727916581383,1185,24.49214336062943,136.80738060885085,1185 +4250.0,16.877707847275946,3.0781117744750506,552,-15.965191319817963,3.0781117744750506,552,22.982754412440546,3.0781117744750506,552,23.232398844208724,136.59151291900312,552 +4350.0,17.325692636030116,3.655426676181878,1749,-15.984571152488028,3.655426676181878,1749,23.62221427356343,3.655426676181878,1749,23.572995996418033,137.3055693099483,1749 +4450.0,17.329920228673128,3.487495103656554,1657,-15.751243447959428,3.487495103656554,1657,21.6739029530677,3.487495103656554,1657,23.418535506923973,137.73215745435553,1657 +4550.0,17.79590528623379,2.0113716705392273,527,-16.29279840517696,2.0113716705392273,527,9.727297597229125,2.0113716705392273,527,24.127774966381395,137.52476396176593,527 +4650.0,10.579065154785619,5.1933330807052585,564,-8.626481720447018,5.1933330807052585,564,71.51521827956395,5.1933330807052585,564,13.650377519409703,140.8051825283911,564 +4750.0,10.922742270824813,5.410521584630602,1015,-9.835529808351204,5.410521584630602,1015,57.51873015225317,5.410521584630602,1015,14.698433431009859,137.99812141759062,1015 +4850.0,8.105772870118207,4.931847000340097,934,-6.731893373677127,4.931847000340097,934,58.900551351609906,4.931847000340097,934,10.536695032907726,140.29016356381726,934 +4950.0,10.02176052903101,5.61545654709358,484,-8.165802514174068,5.61545654709358,484,63.09773552067582,5.61545654709358,484,12.92733595145324,140.8266046578675,484 diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_wind_vel_h_u_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_wind_vel_h_u_hres100.png index d3c3f47..d33aa3c 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_wind_vel_h_u_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_wind_vel_h_u_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_wind_vel_h_v_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_wind_vel_h_v_hres100.png index 360181f..c4cdf25 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_wind_vel_h_v_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_wind_vel_h_v_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_wind_vel_v_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_wind_vel_v_hres100.png index da0d28a..4cbc52f 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_wind_vel_v_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114113000_wind_profile_VAD_wind_vel_v_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_WIND_DIRECTION_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_WIND_DIRECTION_hres100.png index 12ec958..d728aaf 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_WIND_DIRECTION_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_WIND_DIRECTION_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_WIND_SPEED_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_WIND_SPEED_hres100.png index 9cdc24c..f1a0e3f 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_WIND_SPEED_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_WIND_SPEED_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_WIND_hres100.csv b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_WIND_hres100.csv index d11677b..c4fc507 100644 --- a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_WIND_hres100.csv +++ b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_WIND_hres100.csv @@ -15,42 +15,42 @@ Altitude [m MSL],u_wind,std_u_wind,np_u_wind,v_wind,std_v_wind,np_v_wind,w_wind, 650.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 750.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 850.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 -950.0,0.09257309839773778,1.9869413825044806,50617,0.0036099039512189858,1.9869413825044806,50617,0.04100197315360878,1.1651416433033177,7843,0.09264345607485867,182.23312735535808,50617 -1050.0,10.879994080624698,2.6502776174799347,57095,0.4895420166209926,2.6502776174799347,57095,-23.376357283879404,1.5192770911237603,10697,10.891001908936836,182.5762684975047,57095 -1150.0,12.132259585528146,2.956614075866432,53838,0.286067129927402,2.956614075866432,53838,-22.143940214753666,1.4689359433989055,8586,12.135631712171579,181.35072964443114,53838 -1250.0,13.685069360526294,3.6913775784311302,51850,0.02543724502825331,3.6913775784311302,51850,-19.441778641973233,1.24074155499241,10723,13.685093001359185,180.10649891978485,51850 -1350.0,15.324822850088333,2.428308469469645,29282,-0.594913751299619,2.428308469469645,29282,-12.638063105651925,1.2868403878153034,9254,15.336365858901349,177.77687871410183,29282 -1450.0,16.129775564376605,2.9945586966804485,34581,-1.0809451097866496,2.9945586966804485,34581,-5.7016527378074855,1.2246794811116084,10659,16.165955031718116,176.16602690707123,34581 -1550.0,16.98511812061354,1.4454811275343329,17372,-2.1719788176801345,1.4454811275343329,17372,4.267166659963686,1.0990685786994507,9197,17.123426338079817,172.7128276290896,17372 -1650.0,17.130982958006634,1.676095118748301,17748,-3.3324110314773807,1.676095118748301,17748,16.832054965878353,1.291168694671517,9948,17.452092722370743,168.9919906924003,17748 -1750.0,16.950667284168517,1.9684097584339857,16212,-4.900906565251229,1.9684097584339857,16212,22.733521721543124,1.199866523480035,8406,17.644942803531652,163.87395641533408,16212 -1850.0,16.66197320939546,1.3209385550348807,12258,-6.375133836617899,1.3209385550348807,12258,31.95801497658987,0.9847253671054688,8400,17.839946262962858,159.06236077326184,12258 -1950.0,16.183417737919193,1.3951059690015388,10962,-7.702840961510037,1.3951059690015388,10962,34.58399566441051,1.3951059690015388,10962,17.923079215311034,154.54689653866876,10962 -2050.0,15.45253936725291,1.048514261475309,8316,-8.724548654142406,1.048514261475309,8316,38.34399400083086,1.048514261475309,8316,17.745385938744725,150.55080094077582,8316 -2150.0,15.120257667743864,0.9213972897389665,9668,-8.92511715242938,0.9213972897389665,9668,41.779941119180634,0.9213972897389665,9668,17.55790158656655,149.44768891173806,9668 -2250.0,14.604852045265513,1.2168009933412551,9480,-9.49782337203248,1.2168009933412551,9480,28.48013373850297,1.2168009933412551,9480,17.421548498064766,146.96325635173082,9480 -2350.0,14.34375827882059,1.1000207575387104,7471,-9.879456044085584,1.1000207575387104,7471,19.748854000414433,1.1000207575387104,7471,17.416861177842964,145.44235075503573,7471 -2450.0,14.517041615716408,1.089339335055838,10740,-10.041204666820766,1.089339335055838,10740,14.608856052375938,1.089339335055838,10740,17.651353728069278,145.329012329646,10740 -2550.0,14.260277985645667,1.1178960129351803,6146,-10.75570753723302,1.1178960129351803,6146,3.7769890221578235,1.1178960129351803,6146,17.861712483812454,142.97484985594897,6146 -2650.0,14.254071646432267,1.3547392655818506,3915,-11.42590499707484,1.3547392655818506,3915,-3.676870265634348,1.3547392655818506,3915,18.26827478181243,141.28472573158416,3915 -2750.0,14.450892552449265,1.039422313169046,3367,-12.188269301604867,1.039422313169046,3367,-7.511428711070031,1.039422313169046,3367,18.904555115920534,139.85482099093363,3367 -2850.0,15.137441422453179,1.0459341810355403,3972,-12.280803493246825,1.0459341810355403,3972,-12.60983232880587,1.0459341810355403,3972,19.492569539646247,140.94804294344732,3972 -2950.0,15.722905786879261,1.277355160724356,3969,-12.47565652493486,1.277355160724356,3969,-15.804789407023835,1.277355160724356,3969,20.071167681807434,141.5690490450334,3969 -3050.0,16.158801443036136,1.8943291338925492,4554,-12.872224855228225,1.8943291338925492,4554,-13.54540730099779,1.8943291338925492,4554,20.659163506759466,141.45890466877705,4554 -3150.0,17.878695090174215,2.5674888643107536,1863,-13.78359147526796,2.5674888643107536,1863,-5.021325651749406,2.5674888643107536,1863,22.57509982446366,142.3695504327892,1863 -3250.0,16.091182497438123,2.5185161761305914,563,-14.271328140950923,2.5185161761305914,563,10.246244406881805,2.5185161761305914,563,21.508067348614954,138.4300647938108,563 -3350.0,17.035847443892496,2.3015826037611506,2462,-14.770826371643896,2.3015826037611506,2462,9.220447477737698,2.3015826037611506,2462,22.547669720679103,139.07327850646854,2462 -3450.0,17.70889340548145,2.3121204791025174,2433,-15.302079751085111,2.3121204791025174,2433,12.714850447429935,2.3121204791025174,2433,23.404242144433418,139.17002826132838,2433 -3550.0,17.569243791185897,2.692950975451027,1856,-15.995836697935319,2.692950975451027,1856,18.98734867074823,2.692950975451027,1856,23.760158228874204,137.6838500099095,1856 -3650.0,17.894527893104517,2.913523739074629,1217,-16.032710647002265,2.913523739074629,1217,18.47336959163469,2.913523739074629,1217,24.026276016220145,138.14105675322824,1217 -3750.0,17.580694787315096,2.5932644834176704,1669,-16.486392752590138,2.5932644834176704,1669,25.324701158323954,2.5932644834176704,1669,24.101493215097374,136.83982081506804,1669 -3850.0,15.783130747505304,3.169493549804032,517,-15.967501428998148,3.169493549804032,517,40.108932599952695,3.169493549804032,517,22.451465833613298,134.6672966029161,517 -3950.0,16.775147131346646,4.894783570156337,414,-12.938815808491622,4.894783570156337,414,5.224835030034451,4.894783570156337,414,21.18533728323437,142.35668776329874,414 -4050.0,12.447457919431027,5.971513805159912,385,-3.9598906611622673,5.971513805159912,385,9.208432020479366,5.971513805159912,385,13.062156893268673,162.35265178872982,385 -4150.0,16.622491764919552,4.74137686367817,956,-15.33470905928114,4.74137686367817,956,20.31042202785423,4.74137686367817,956,22.615493238212103,137.30760556103567,956 -4250.0,17.94275050629217,2.1540707630504348,573,-17.039757451260822,2.1540707630504348,573,20.57006276786474,2.1540707630504348,573,24.744608094064585,136.47863054221895,573 -4350.0,16.43058774443179,4.504615591422532,1465,-15.60214493186389,4.504615591422532,1465,27.10360517186482,4.504615591422532,1465,22.65813628925288,136.48147517236862,1465 -4450.0,10.424318595439555,5.303495371669517,419,-10.67792164919356,5.303495371669517,419,58.13867122813017,5.303495371669517,419,14.922614681266264,134.3114624318677,419 +950.0,0.09257309811590052,1.9869413492808434,50617,0.0036099114640342185,1.9869413492808434,50617,0.041001973337131806,1.1651416183016592,7843,0.0926434560859768,182.23313200495704,50617 +1050.0,10.879993846237587,2.6502776046357317,57095,0.4895428851236066,2.6502776046357317,57095,-23.37635653207791,1.5192770063357297,10697,10.891001713825176,182.57627311736258,57095 +1150.0,12.132259305964954,2.9566141124244147,53838,0.28606810360435,2.9566141124244147,53838,-22.14393904282332,1.4689359342225103,8586,12.135631455638105,181.3507342712738,53838 +1250.0,13.685069108462239,3.6913776383699184,51850,0.025438309855963948,3.6913776383699184,51850,-19.441777570765588,1.2407416433665754,10723,13.685092751274862,180.10650337988417,51850 +1350.0,15.324822676461897,2.428308554666405,29282,-0.5949125284672987,2.428308554666405,29282,-12.638063592304773,1.2868404312002655,9254,15.33636563797069,177.7768832539324,29282 +1450.0,16.20913781737063,2.9559202526951625,30570,-1.1034483549561205,2.9559202526951625,30570,-5.7016537439454655,1.224333315520866,10659,16.24665341092036,176.10555846102562,30570 +1550.0,16.873512624332832,1.9256712824755753,21383,-2.105216572315961,1.9256712824755753,21383,4.267165385370092,1.0994282986425685,9197,17.00433371525839,172.88826557101282,21383 +1650.0,17.130983010446652,1.676095146332403,17748,-3.3324097281751714,1.676095146332403,17748,16.832052762197875,1.29116875103777,9948,17.452092524985318,168.9919949253295,17748 +1750.0,16.950667662351247,1.9684098165712276,16212,-4.900905455580335,1.9684098165712276,16212,22.733518411468786,1.1998664741475746,8406,17.644942858621487,163.87396021790744,16212 +1850.0,16.66197370029247,1.3209385277605235,12258,-6.3751328024202865,1.3209385277605235,12258,31.958008790490457,0.9847252227297083,8400,17.83994635187374,159.06236443882915,12258 +1950.0,16.183418418955277,1.3951058533224565,10962,-7.7028400650164075,1.3951058533224565,10962,34.58398733005226,1.3951058533224565,10962,17.923079444955963,154.54690006203492,10962 +2050.0,15.452539987598511,1.0485140741302248,8316,-8.72454774507522,1.0485140741302248,8316,38.3439869676628,1.0485140741302248,8316,17.745386031992318,150.55080448145316,8316 +2150.0,15.12025833257711,0.9213971280797899,9668,-8.925116268616335,0.9213971280797899,9668,41.77993368949219,0.9213971280797899,9668,17.55790170983388,149.4476924982444,9668 +2250.0,14.61650377073656,1.0767682644859446,8829,-9.508165118912181,1.0767682644859446,8829,28.3838222441195,1.0767682644859446,8829,17.436954619670672,146.9556414678788,8829 +2350.0,14.333882515918756,1.2573239990780243,8122,-9.861161153853987,1.2573239990780243,8122,19.9996073880191,1.2573239990780243,8122,17.398353004880672,145.47352058361423,8122 +2450.0,14.517042377211192,1.0893391457083992,10740,-10.041203752406776,1.0893391457083992,10740,14.608850569539113,1.0893391457083992,10740,17.651353834170724,145.3290161768674,10740 +2550.0,14.260278698304578,1.1178959157108335,6146,-10.755706586802567,1.1178959157108335,6146,3.776984335138962,1.1178959157108335,6146,17.861712480462433,142.97485366653888,6146 +2650.0,14.26775535972883,1.1453988434436662,3315,-11.443358145369189,1.1453988434436662,3315,-3.581273331814619,1.1453988434436662,3315,18.28986846995511,141.26887586251817,3315 +2750.0,14.430619455686704,1.2774670010375015,3967,-12.143377657399565,1.2774670010375015,3967,-7.45919280532179,1.2774670010375015,3967,18.86012722133853,139.91936236150528,3967 +2850.0,15.137442296833083,1.0459341959285229,3972,-12.280802525584065,1.0459341959285229,3972,-12.609837233235195,1.0459341959285229,3972,19.492569609016233,140.94804677151114,3972 +2950.0,15.722906579571623,1.277355171918426,3969,-12.475655458579734,1.277355171918426,3969,-15.804794702444626,1.277355171918426,3969,20.07116763995376,141.56905283613264,3969 +3050.0,16.158802315818303,1.8943290865804194,4554,-12.872223711125217,1.8943290865804194,4554,-13.545412378253172,1.8943290865804194,4554,20.65916347655319,141.45890865879574,4554 +3150.0,15.890060601485846,3.5702580889497226,557,-11.625066269444348,3.5702580889497226,557,-3.9513667801266696,3.5702580889497226,557,19.68847865346293,143.81103733113582,557 +3250.0,17.739952315238828,2.164366100018899,1869,-14.050051914393944,2.164366100018899,1869,-2.489321013580887,2.164366100018899,1869,22.629844607157874,141.6207568682203,1869 +3350.0,17.035848749891688,2.3015825051048404,2462,-14.770825516996043,2.3015825051048404,2462,9.22044225291315,2.3015825051048404,2462,22.547670147550225,139.073282321361,2462 +3450.0,17.708894839293457,2.312120375104093,2433,-15.302079107245621,2.312120375104093,2433,12.714844628695605,2.312120375104093,2433,23.40424280837894,139.17003174891482,2433 +3550.0,17.569245209240442,2.692950897106529,1856,-15.995835844979752,2.692950897106529,1856,18.987342965255763,2.692950897106529,1856,23.76015870321487,137.68385383291755,1856 +3650.0,17.894529209512108,2.9135235546904195,1217,-16.032709655723444,2.9135235546904195,1217,18.473365486855815,2.9135235546904195,1217,24.026276335187895,138.1410606086704,1217 +3750.0,17.580696320001387,2.5932644948589427,1669,-16.486392081065315,2.5932644948589427,1669,25.32469536306743,2.5932644948589427,1669,24.101493873756528,136.8398244719266,1669 +3850.0,15.783132220782933,3.169493462492829,517,-15.967500955371824,3.169493462492829,517,40.108927694797764,3.169493462492829,517,22.451466532467684,134.66730012656862,517 +3950.0,16.775148182268328,4.894783491827577,414,-12.93881514575705,4.894783491827577,414,5.224829239044239,4.894783491827577,414,21.185337710622704,142.3566909184134,414 +4050.0,12.447457799008916,5.971513943048275,385,-3.9598896696679526,5.971513943048275,385,9.208431321462504,5.971513943048275,385,13.062156477934677,162.35265577301618,385 +4150.0,16.622493174649346,4.7413768820082245,956,-15.334708504786192,4.7413768820082245,956,20.31041853366901,4.7413768820082245,956,22.615493898388024,137.30760901527808,956 +4250.0,17.94275199122515,2.1540707084242725,573,-17.039756691162335,2.1540707084242725,573,20.570058717925924,2.1540707084242725,573,24.744608647392784,136.47863418615123,573 +4350.0,16.430589243941956,4.504615713380653,1465,-15.602144397574026,4.504615713380653,1465,27.103600359699396,4.504615713380653,1465,22.658137008719223,136.48147876310045,1465 +4450.0,10.424318864659348,5.303495552664611,419,-10.677920953611409,5.303495552664611,419,58.138671739131695,5.303495552664611,419,14.922614371606148,134.31146503716266,419 4550.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 4650.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 4750.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_wind_vel_h_u_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_wind_vel_h_u_hres100.png index f2271eb..debc81f 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_wind_vel_h_u_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_wind_vel_h_u_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_wind_vel_h_v_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_wind_vel_h_v_hres100.png index 53e1e04..d96848e 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_wind_vel_h_v_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_wind_vel_h_v_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_wind_vel_v_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_wind_vel_v_hres100.png index 2c668e4..d8bf210 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_wind_vel_v_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114114500_wind_profile_VAD_wind_vel_v_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_WIND_DIRECTION_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_WIND_DIRECTION_hres100.png index 7b1a794..b7fac84 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_WIND_DIRECTION_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_WIND_DIRECTION_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_WIND_SPEED_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_WIND_SPEED_hres100.png index db3953a..2f182f8 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_WIND_SPEED_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_WIND_SPEED_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_WIND_hres100.csv b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_WIND_hres100.csv index 321309d..5ed9438 100644 --- a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_WIND_hres100.csv +++ b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_WIND_hres100.csv @@ -15,44 +15,44 @@ Altitude [m MSL],u_wind,std_u_wind,np_u_wind,v_wind,std_v_wind,np_v_wind,w_wind, 650.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 750.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 850.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 -950.0,0.15590622990686287,1.9596684381037555,50848,0.0013468452667692783,1.9596684381037555,50848,0.09740913504175878,1.0803578482021585,7885,0.15591204737269088,180.4949553965919,50848 -1050.0,10.597830237514223,2.7857743313853827,57379,0.29023658189893625,2.7857743313853827,57379,-19.695058267247585,1.1795129993420086,10729,10.601803762409638,181.56873390876024,57379 -1150.0,11.754013334037795,3.117180195173446,53980,0.3310432979079751,3.117180195173446,53980,-17.270962171328744,1.3651917950582106,8572,11.75867420765743,181.61326778426456,53980 -1250.0,13.50045673025178,3.6470595051643855,51652,0.04102878756766409,3.6470595051643855,51652,-14.732088077087807,1.1068984009590583,10717,13.500519074717456,180.1741251556134,51652 -1350.0,15.17756192540907,2.5020631530315196,29221,-0.5426703650063991,2.5020631530315196,29221,-10.295096175631171,1.0175975969354307,9265,15.18726035612359,177.95227440350726,29221 -1450.0,16.03315063866935,2.6606915208855213,34309,-1.3062369614503175,2.6606915208855213,34309,-3.55200268801141,1.1682114028646526,10579,16.08627285612557,175.34234195714777,34309 -1550.0,16.740967792637107,1.5088092602716152,17399,-2.3816322319529792,1.5088092602716152,17399,4.188264791335221,1.0607343076735896,9257,16.90952911001339,171.90322143461034,17399 -1650.0,16.831002374074917,1.6461600363531046,17906,-3.597816774716492,1.6461600363531046,17906,14.363384559178002,1.3449371252392954,10010,17.21124418688396,167.93397417160907,17906 -1750.0,16.602733370486288,1.7693121236724387,16522,-4.98117691270786,1.7693121236724387,16522,19.582374160103857,1.2936267775066213,8428,17.33386508563952,163.29962580769717,16522 -1850.0,16.39332621278582,1.4794971281267686,12312,-6.42387959782333,1.4794971281267686,12312,27.304106499564334,1.1659266716829875,8292,17.607026251077762,158.601801796683,12312 -1950.0,15.885815866578946,1.884042637050407,10954,-7.915824821262074,1.884042637050407,10954,26.768921193895462,1.884042637050407,10954,17.74878667255202,153.5131471851489,10954 -2050.0,15.148416292181913,1.1540439787725896,8337,-8.467209827837756,1.1540439787725896,8337,34.94796260206766,1.1540439787725896,8337,17.35419714161029,150.79698507974985,8337 -2150.0,14.830779069119735,0.868339197090789,9929,-8.664201149333895,0.868339197090789,9929,40.52773803862038,0.868339197090789,9929,17.17615758408029,149.70635465334936,9929 -2250.0,14.395279024838766,0.9004348848768374,9778,-9.456037807826858,0.9004348848768374,9778,26.561849701405574,0.9004348848768374,9778,17.22326070249225,146.69970275350295,9778 -2350.0,14.26983591385188,0.8706750818642514,7749,-9.816248014388615,0.8706750818642514,7749,22.995127574810546,0.8706750818642514,7749,17.320131122143543,145.47584134010958,7749 -2450.0,14.221537936318136,0.9917806974773719,11202,-9.929414265480533,0.9917806974773719,11202,19.461323692286832,0.9917806974773719,11202,17.344895760126786,145.0774267739748,11202 -2550.0,14.058421263058404,0.926315294773501,6291,-10.842904894737124,0.926315294773501,6291,8.86346435101551,0.926315294773501,6291,17.75409234418721,142.3579061598556,6291 -2650.0,14.007859865155805,0.9675714248097216,4068,-11.706374479946072,0.9675714248097216,4068,1.4683050682411485,0.9675714248097216,4068,18.25539212031819,140.1144813329915,4068 -2750.0,14.378922336002933,0.8855742405460738,3407,-12.420408844935523,0.8855742405460738,3407,-3.7153528363851014,0.8855742405460738,3407,19.000525345899167,139.1797842937688,3407 -2850.0,15.020874872039624,0.9693090062796507,3984,-12.26285356217483,0.9693090062796507,3984,-9.328134519938839,0.9693090062796507,3984,19.390829260472984,140.77223175419826,3984 -2950.0,15.596748823589332,1.1591862501679073,4657,-12.484908220472764,1.1591862501679073,4657,-12.182206474082813,1.1591862501679073,4657,19.97827588005941,141.323375302146,4657 -3050.0,16.213264637430317,1.1996388255542063,4501,-12.872625353048278,1.1996388255542063,4501,-11.177498137016135,1.1996388255542063,4501,20.702039360490303,141.55195674378433,4501 -3150.0,16.589132080057993,1.582150678497013,3075,-13.324268449207164,1.582150678497013,3075,-4.8194028352370575,1.582150678497013,3075,21.277580522139885,141.22882653229246,3075 -3250.0,16.648221632098306,1.8465454566158706,1166,-13.839703790944654,1.8465454566158706,1166,1.79588912885036,1.8465454566158706,1166,21.649496172718518,140.26317703187047,1166 -3350.0,17.984405424578615,1.9060956053571736,1851,-14.496168422322594,1.9060956053571736,1851,5.912811877347196,1.9060956053571736,1851,23.099301664854618,141.12976113719714,1851 -3450.0,18.092446429540697,1.6950883604263844,3013,-15.309998311879436,1.6950883604263844,3013,13.064336112870166,1.6950883604263844,3013,23.700900111927208,139.7617866833737,3013 -3550.0,18.53989918704908,1.2535360299690332,1819,-15.962433809391962,1.2535360299690332,1819,15.682719600239126,1.2535360299690332,1819,24.46481463214391,139.27229337877318,1819 -3650.0,18.50001690646526,1.2184094657593418,1234,-15.990989547117929,1.2184094657593418,1234,16.88944590924336,1.2184094657593418,1234,24.453269152314487,139.16061810193676,1234 -3750.0,18.30697605287481,1.5800042074544687,1228,-16.211812172220853,1.5800042074544687,1228,20.0244346477287,1.5800042074544687,1228,24.453388847108695,138.4733825555465,1228 -3850.0,18.49854373434265,1.006408457148857,615,-16.39816374052623,1.006408457148857,615,15.46502209134346,1.006408457148857,615,24.720353847639334,138.44439096218827,615 -3950.0,18.54821994195948,1.7461868795416549,1734,-16.23328692207485,1.7461868795416549,1734,13.252397427772054,1.7461868795416549,1734,24.648652444093365,138.80778679240015,1734 -4050.0,18.1146768262795,2.3946580117022283,1130,-16.049593356401104,2.3946580117022283,1130,13.828387868658858,2.3946580117022283,1130,24.20187933666272,138.45907521646555,1130 -4150.0,17.432155003346967,4.29820675402271,1050,-15.520516812210289,4.29820675402271,1050,14.699454486622741,4.29820675402271,1050,23.34023286470846,138.32010044189263,1050 -4250.0,17.782386684355018,2.7514710953808517,1087,-15.374166497078686,2.7514710953808517,1087,18.65949261029459,2.7514710953808517,1087,23.506983466021822,139.15420093515152,1087 -4350.0,17.86756954846476,3.2294675747791133,1051,-14.95809673961653,3.2294675747791133,1051,21.346731368355993,3.2294675747791133,1051,23.30224666509545,140.06512264384816,1051 -4450.0,18.452979412835603,2.409477137949465,525,-16.15722820788998,2.409477137949465,525,17.127265941762392,2.409477137949465,525,24.526892843822882,138.79496269847672,525 -4550.0,17.260802624776574,2.856800683568672,463,-15.785770096013032,2.856800683568672,463,9.239680909358917,2.856800683568672,463,23.39072133936175,137.55569863908272,463 -4650.0,9.535069532071068,5.364879918662983,910,-8.10965867571766,5.364879918662983,910,56.39681590451988,5.364879918662983,910,12.517352548285627,139.6185499037884,910 -4750.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 +950.0,0.15590623034527937,1.9596684090108545,50848,0.0013468576980557342,1.9596684090108545,50848,0.09740914145857803,1.080357817242279,7885,0.1559120479184791,180.49495996337612,50848 +1050.0,10.59783006755795,2.785774322095709,57379,0.29023741429655076,2.785774322095709,57379,-19.695058111760794,1.1795129037805767,10729,10.60180361530494,181.56873843078117,57379 +1150.0,11.754013109322518,3.1171802290954718,53980,0.3310442379201015,3.1171802290954718,53980,-17.270961340565847,1.3651917738179113,8572,11.75867400949553,181.6132723936157,53980 +1250.0,13.500456508435665,3.6470595630641602,51652,0.041029869566955694,3.6470595630641602,51652,-14.732087842439073,1.106898477896934,10717,13.500518856190661,180.17412975042424,51652 +1350.0,15.177561761125514,2.5020632136422702,29221,-0.542669161186601,2.5020632136422702,29221,-10.295096400359789,1.017597686900275,9265,15.187260148930168,177.95227892001722,29221 +1450.0,16.098829833126505,2.6371445949015233,30307,-1.3132517050999197,2.6371445949015233,30307,-3.552003402777709,1.1678786859399881,10579,16.15230485215382,175.33645960567918,30307 +1550.0,16.647227045635546,1.8306383676207936,21401,-2.3286784913628895,1.8306383676207936,21401,4.1882637966367815,1.061079173518591,9257,16.80931027214013,172.03691573927438,21401 +1650.0,16.831002519064313,1.6461600234330878,17906,-3.5978155580284445,1.6461600234330878,17906,14.363382131080977,1.3449370977219473,10010,17.211244074335266,167.93397823334516,17906 +1750.0,16.602733740686606,1.7693120837866085,16522,-4.981175832749413,1.7693120837866085,16522,19.58237063707189,1.2936266917933832,8428,17.33386512988088,163.2996295784913,16522 +1850.0,16.393326656144513,1.479497029165437,12312,-6.423878638207449,1.479497029165437,12312,27.304100801184738,1.165926467886017,8292,17.607026313761114,158.6018052305368,12312 +1950.0,15.885816571481952,1.884042503951596,10954,-7.915823965531574,1.884042503951596,10954,26.768914987308573,1.884042503951596,10954,17.748786921816787,153.51315067249442,10954 +2050.0,15.14841691842473,1.1540437593719306,8337,-8.467208880178369,1.1540437593719306,8337,34.947957047716514,1.1540437593719306,8337,17.354197225887113,150.79698881960184,8337 +2150.0,14.830779772738898,0.868338878383336,9929,-8.664200189957025,0.868338878383336,9929,40.52773243101667,0.868338878383336,9929,17.176157707681092,149.70635860058175,9929 +2250.0,14.406787443104598,0.9017636590274869,9063,-9.454813840208168,0.9017636590274869,9063,26.716630436684827,0.9017636590274869,9063,17.232209062792506,146.7241124544438,9063 +2350.0,14.267567197468876,0.8717582650868835,8464,-9.789741911688113,0.8717582650868835,8464,23.109511700709604,0.8717582650868835,8464,17.303251730000135,145.5438954134587,8464 +2450.0,14.221538795194556,0.9917804029571191,11202,-9.92941326103876,0.9917804029571191,11202,19.46132014232699,0.9917804029571191,11202,17.344895889330562,145.07743111866404,11202 +2550.0,14.058422149713142,0.9263150659193624,6291,-10.842903804009017,0.9263150659193624,6291,8.863461149063063,0.9263150659193624,6291,17.754092380139806,142.3579106946586,6291 +2650.0,14.007027770912407,0.9607920249629642,3413,-11.710317569845916,0.9607920249629642,3413,1.9889533310801835,0.9607920249629642,3413,18.257282507584566,140.1033116201925,3413 +2750.0,14.333924227481754,0.9053879329858385,4062,-12.329540213019763,0.9053879329858385,4062,-3.4791397391961763,0.9053879329858385,4062,18.90711362486775,139.29903429099045,4062 +2850.0,15.020875710310898,0.9693090718534206,3984,-12.262852572264066,0.9693090718534206,3984,-9.328139222911197,0.9693090718534206,3984,19.390829283805562,140.77223558640802,3984 +2950.0,15.596749796030178,1.1591862857387643,4657,-12.484907224096869,1.1591862857387643,4657,-12.182211180737731,1.1591862857387643,4657,19.978276016570437,141.32337927579334,4657 +3050.0,16.213265775808225,1.199638691567507,4501,-12.872624381815061,1.199638691567507,4501,-11.177502725704215,1.199638691567507,4501,20.70203964811907,141.5519608080398,4501 +3150.0,16.04534199461259,1.4444446056355331,1204,-13.126634869495946,1.4444446056355331,1204,-7.44460699872309,1.4444446056355331,1204,20.730690840421722,140.71352841154945,1204 +3250.0,16.910021868563053,1.7367926754501422,3037,-13.594197656960302,1.7367926754501422,3037,-1.3056694288042043,1.7367926754501422,3037,21.69679814008937,141.2037229696446,3037 +3350.0,17.98440667402061,1.9060954175433698,1851,-14.49616738630126,1.9060954175433698,1851,5.912807798208336,1.9060954175433698,1851,23.09930198746753,141.12976508281923,1851 +3450.0,18.092447816182794,1.695088163973065,3013,-15.309997414904213,1.695088163973065,3013,13.064331551534195,1.695088163973065,3013,23.700900591025466,139.7617905040225,3013 +3550.0,18.539900770085698,1.253535763908079,1819,-15.962433024805897,1.253535763908079,1819,15.682714857438802,1.253535763908079,1819,24.46481531988415,139.2722971902068,1819 +3650.0,18.500018474304248,1.218409343132913,1234,-15.99098875242163,1.218409343132913,1234,16.889440681099778,1.218409343132913,1234,24.453269818772164,139.16062191293904,1234 +3750.0,18.30697754979526,1.580004114403003,1228,-16.211811418230337,1.580004114403003,1228,20.024430586802637,1.580004114403003,1228,24.453389467903445,138.47338620341944,1228 +3850.0,18.498545278516357,1.0064087055606188,615,-16.39816293460462,1.0064087055606188,615,15.465017760839178,1.0064087055606188,615,24.720354468558103,138.44439473411435,615 +3950.0,18.54822137893634,1.7461869380050612,1734,-16.233286001377394,1.7461869380050612,1734,13.252392920633715,1.7461869380050612,1734,24.648652919065302,138.80779060272766,1734 +4050.0,18.114678280577575,2.394658134464799,1130,-16.049592469753264,2.394658134464799,1130,13.828383558530907,2.394658134464799,1130,24.20187983719425,138.4590790707633,1130 +4150.0,17.432156450474228,4.298206892627186,1050,-15.52051599234285,4.298206892627186,1050,14.699450497282598,4.298206892627186,1050,23.340233400340715,138.32010430730492,1050 +4250.0,17.78238828299203,2.75147100022703,1087,-15.374165643953363,2.75147100022703,1087,18.659488493637244,2.75147100022703,1087,23.50698411738112,139.15420505657792,1087 +4350.0,17.86757116691809,3.2294674606569695,1051,-14.958095969349277,3.2294674606569695,1051,21.346726382048693,3.2294674606569695,1051,23.302247411637055,140.06512665055936,1051 +4450.0,18.45298106991063,2.409477058393084,525,-16.157227434136843,2.409477058393084,525,17.127259442204437,2.409477058393084,525,24.526893580820715,138.79496660841275,525 +4550.0,17.26080373204019,2.856800649292775,463,-15.785769030150089,2.856800649292775,463,9.239676131227222,2.856800649292775,463,23.390721437126693,137.5557023961363,463 +4650.0,10.322618008877097,5.283467425959045,479,-8.756404885796064,5.283467425959045,479,65.11971322900095,5.283467425959045,479,13.536287123180674,139.6929361149965,479 +4750.0,8.602219790252496,5.460307428716549,431,-7.343587015598227,5.460307428716549,431,46.06454775968972,5.460307428716549,431,11.31045779690082,139.51310748007734,431 4850.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 4950.0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0,-9999.0,-9999.0,0 diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_wind_vel_h_u_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_wind_vel_h_u_hres100.png index e1f8436..e07b827 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_wind_vel_h_u_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_wind_vel_h_u_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_wind_vel_h_v_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_wind_vel_h_v_hres100.png index 01062ef..4be377d 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_wind_vel_h_v_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_wind_vel_h_v_hres100.png differ diff --git a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_wind_vel_v_hres100.png b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_wind_vel_v_hres100.png index 3a51322..07529c6 100644 Binary files a/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_wind_vel_v_hres100.png and b/pyrad_outputs/07_VAD/2021-01-14/VAD/profile/20210114120000_wind_profile_VAD_wind_vel_v_hres100.png differ diff --git a/pyrad_outputs/08_DDA/2023-11-27/dda/U_ALONG_RW_32/20231127174011_lonlat_DDA_wind_vel_h_u_lon-lat1_8.54-47.48_lon-lat2_8.45-47.54.png b/pyrad_outputs/08_DDA/2023-11-27/dda/U_ALONG_RW_32/20231127174011_lonlat_DDA_wind_vel_h_u_lon-lat1_8.54-47.48_lon-lat2_8.45-47.54.png index dfeb623..5c49daf 100644 Binary files a/pyrad_outputs/08_DDA/2023-11-27/dda/U_ALONG_RW_32/20231127174011_lonlat_DDA_wind_vel_h_u_lon-lat1_8.54-47.48_lon-lat2_8.45-47.54.png and b/pyrad_outputs/08_DDA/2023-11-27/dda/U_ALONG_RW_32/20231127174011_lonlat_DDA_wind_vel_h_u_lon-lat1_8.54-47.48_lon-lat2_8.45-47.54.png differ diff --git a/pyrad_outputs/08_DDA/2023-11-27/dda/V_ALONG_RW_32/20231127174011_lonlat_DDA_wind_vel_h_v_lon-lat1_8.54-47.48_lon-lat2_8.45-47.54.png b/pyrad_outputs/08_DDA/2023-11-27/dda/V_ALONG_RW_32/20231127174011_lonlat_DDA_wind_vel_h_v_lon-lat1_8.54-47.48_lon-lat2_8.45-47.54.png index 686e9f8..37845f3 100644 Binary files a/pyrad_outputs/08_DDA/2023-11-27/dda/V_ALONG_RW_32/20231127174011_lonlat_DDA_wind_vel_h_v_lon-lat1_8.54-47.48_lon-lat2_8.45-47.54.png and b/pyrad_outputs/08_DDA/2023-11-27/dda/V_ALONG_RW_32/20231127174011_lonlat_DDA_wind_vel_h_v_lon-lat1_8.54-47.48_lon-lat2_8.45-47.54.png differ diff --git a/pyrad_outputs/08_DDA/2023-11-27/dda/W_ALONG_RW_32/20231127174011_lonlat_DDA_wind_vel_v_lon-lat1_8.54-47.48_lon-lat2_8.45-47.54.png b/pyrad_outputs/08_DDA/2023-11-27/dda/W_ALONG_RW_32/20231127174011_lonlat_DDA_wind_vel_v_lon-lat1_8.54-47.48_lon-lat2_8.45-47.54.png index 84fc358..aaca1d0 100644 Binary files a/pyrad_outputs/08_DDA/2023-11-27/dda/W_ALONG_RW_32/20231127174011_lonlat_DDA_wind_vel_v_lon-lat1_8.54-47.48_lon-lat2_8.45-47.54.png and b/pyrad_outputs/08_DDA/2023-11-27/dda/W_ALONG_RW_32/20231127174011_lonlat_DDA_wind_vel_v_lon-lat1_8.54-47.48_lon-lat2_8.45-47.54.png differ diff --git a/pyrad_outputs/08_DDA/2023-11-27/dda/wind_map_1000/20231127174011_dda_map_DDA_dBZc_l0.png b/pyrad_outputs/08_DDA/2023-11-27/dda/wind_map_1000/20231127174011_dda_map_DDA_dBZc_l0.png index 5c5323d..703f39a 100644 Binary files a/pyrad_outputs/08_DDA/2023-11-27/dda/wind_map_1000/20231127174011_dda_map_DDA_dBZc_l0.png and b/pyrad_outputs/08_DDA/2023-11-27/dda/wind_map_1000/20231127174011_dda_map_DDA_dBZc_l0.png differ diff --git a/pyrad_outputs/08_DDA/2023-11-27/dda/wind_map_2000/20231127174011_dda_map_DDA_dBZc_l5.png b/pyrad_outputs/08_DDA/2023-11-27/dda/wind_map_2000/20231127174011_dda_map_DDA_dBZc_l5.png index 97cab70..b6287b2 100644 Binary files a/pyrad_outputs/08_DDA/2023-11-27/dda/wind_map_2000/20231127174011_dda_map_DDA_dBZc_l5.png and b/pyrad_outputs/08_DDA/2023-11-27/dda/wind_map_2000/20231127174011_dda_map_DDA_dBZc_l5.png differ diff --git a/pyrad_outputs/08_DDA/2023-11-27/dda/wind_map_3000/20231127174011_dda_map_DDA_dBZc_l10.png b/pyrad_outputs/08_DDA/2023-11-27/dda/wind_map_3000/20231127174011_dda_map_DDA_dBZc_l10.png index a88c199..2010123 100644 Binary files a/pyrad_outputs/08_DDA/2023-11-27/dda/wind_map_3000/20231127174011_dda_map_DDA_dBZc_l10.png and b/pyrad_outputs/08_DDA/2023-11-27/dda/wind_map_3000/20231127174011_dda_map_DDA_dBZc_l10.png differ diff --git a/pyrad_outputs/08_DDA/2023-11-27/dealV/DEALV/20231127174011_ppi_RAW_dealV_el1.6.png b/pyrad_outputs/08_DDA/2023-11-27/dealV/DEALV/20231127174011_ppi_RAW_dealV_el1.6.png index 4454223..2ebf2d4 100644 Binary files a/pyrad_outputs/08_DDA/2023-11-27/dealV/DEALV/20231127174011_ppi_RAW_dealV_el1.6.png and b/pyrad_outputs/08_DDA/2023-11-27/dealV/DEALV/20231127174011_ppi_RAW_dealV_el1.6.png differ diff --git a/pyrad_outputs/08_DDA/2023-11-27/dealV2/DEALV/20231127174011_ppi_RAW_Vc_el3.7.png b/pyrad_outputs/08_DDA/2023-11-27/dealV2/DEALV/20231127174011_ppi_RAW_Vc_el3.7.png index e82152e..625f98e 100644 Binary files a/pyrad_outputs/08_DDA/2023-11-27/dealV2/DEALV/20231127174011_ppi_RAW_Vc_el3.7.png and b/pyrad_outputs/08_DDA/2023-11-27/dealV2/DEALV/20231127174011_ppi_RAW_Vc_el3.7.png differ diff --git a/pyrad_outputs/09_QVP/2020-05-16/EVP/TIME_HEIGHT_KDP/20200516200500_time-range_EVP_KDP_ang90.0.png b/pyrad_outputs/09_QVP/2020-05-16/EVP/TIME_HEIGHT_KDP/20200516200500_time-range_EVP_KDP_ang90.0.png deleted file mode 100644 index 5148250..0000000 Binary files a/pyrad_outputs/09_QVP/2020-05-16/EVP/TIME_HEIGHT_KDP/20200516200500_time-range_EVP_KDP_ang90.0.png and /dev/null differ diff --git a/pyrad_outputs/09_QVP/2020-05-16/EVP/TIME_HEIGHT_RhoHV/20200516200500_time-range_EVP_RhoHV_ang90.0.png b/pyrad_outputs/09_QVP/2020-05-16/EVP/TIME_HEIGHT_RhoHV/20200516200500_time-range_EVP_RhoHV_ang90.0.png deleted file mode 100644 index b18f2c8..0000000 Binary files a/pyrad_outputs/09_QVP/2020-05-16/EVP/TIME_HEIGHT_RhoHV/20200516200500_time-range_EVP_RhoHV_ang90.0.png and /dev/null differ diff --git a/pyrad_outputs/09_QVP/2020-05-16/EVP/TIME_HEIGHT_ZDR/20200516200500_time-range_EVP_ZDR_ang90.0.png b/pyrad_outputs/09_QVP/2020-05-16/EVP/TIME_HEIGHT_ZDR/20200516200500_time-range_EVP_ZDR_ang90.0.png deleted file mode 100644 index 8b107d9..0000000 Binary files a/pyrad_outputs/09_QVP/2020-05-16/EVP/TIME_HEIGHT_ZDR/20200516200500_time-range_EVP_ZDR_ang90.0.png and /dev/null differ diff --git a/pyrad_outputs/09_QVP/2020-05-16/EVP/TIME_HEIGHT_dBZ/20200516200500_time-range_EVP_dBZ_ang90.0.png b/pyrad_outputs/09_QVP/2020-05-16/EVP/TIME_HEIGHT_dBZ/20200516200500_time-range_EVP_dBZ_ang90.0.png deleted file mode 100644 index 6937a2a..0000000 Binary files a/pyrad_outputs/09_QVP/2020-05-16/EVP/TIME_HEIGHT_dBZ/20200516200500_time-range_EVP_dBZ_ang90.0.png and /dev/null differ diff --git a/pyrad_outputs/09_QVP/2020-05-16/SVP/TIME_HEIGHT_KDP/20200516200500_time-range_SVP_KDP_ang0.4.png b/pyrad_outputs/09_QVP/2020-05-16/SVP/TIME_HEIGHT_KDP/20200516200500_time-range_SVP_KDP_ang0.4.png deleted file mode 100644 index 8ae4bd3..0000000 Binary files a/pyrad_outputs/09_QVP/2020-05-16/SVP/TIME_HEIGHT_KDP/20200516200500_time-range_SVP_KDP_ang0.4.png and /dev/null differ diff --git a/pyrad_outputs/09_QVP/2020-05-16/SVP/TIME_HEIGHT_RhoHV/20200516200500_time-range_SVP_RhoHV_ang0.4.png b/pyrad_outputs/09_QVP/2020-05-16/SVP/TIME_HEIGHT_RhoHV/20200516200500_time-range_SVP_RhoHV_ang0.4.png deleted file mode 100644 index fcfc90b..0000000 Binary files a/pyrad_outputs/09_QVP/2020-05-16/SVP/TIME_HEIGHT_RhoHV/20200516200500_time-range_SVP_RhoHV_ang0.4.png and /dev/null differ diff --git a/pyrad_outputs/09_QVP/2020-05-16/SVP/TIME_HEIGHT_ZDR/20200516200500_time-range_SVP_ZDR_ang0.4.png b/pyrad_outputs/09_QVP/2020-05-16/SVP/TIME_HEIGHT_ZDR/20200516200500_time-range_SVP_ZDR_ang0.4.png deleted file mode 100644 index 08ac4ee..0000000 Binary files a/pyrad_outputs/09_QVP/2020-05-16/SVP/TIME_HEIGHT_ZDR/20200516200500_time-range_SVP_ZDR_ang0.4.png and /dev/null differ diff --git a/pyrad_outputs/09_QVP/2020-05-16/SVP/TIME_HEIGHT_dBZ/20200516200500_time-range_SVP_dBZ_ang0.4.png b/pyrad_outputs/09_QVP/2020-05-16/SVP/TIME_HEIGHT_dBZ/20200516200500_time-range_SVP_dBZ_ang0.4.png deleted file mode 100644 index 7ecea3c..0000000 Binary files a/pyrad_outputs/09_QVP/2020-05-16/SVP/TIME_HEIGHT_dBZ/20200516200500_time-range_SVP_dBZ_ang0.4.png and /dev/null differ diff --git a/pyrad_outputs/09_QVP/2020-05-16/VP/TIME_HEIGHT_KDP/20200516200500_time-range_TIME_HEIGHT_KDP_ang90.0.png b/pyrad_outputs/09_QVP/2020-05-16/VP/TIME_HEIGHT_KDP/20200516200500_time-range_TIME_HEIGHT_KDP_ang90.0.png deleted file mode 100644 index e02bfc4..0000000 Binary files a/pyrad_outputs/09_QVP/2020-05-16/VP/TIME_HEIGHT_KDP/20200516200500_time-range_TIME_HEIGHT_KDP_ang90.0.png and /dev/null differ diff --git a/pyrad_outputs/09_QVP/2020-05-16/VP/TIME_HEIGHT_RhoHV/20200516200500_time-range_TIME_HEIGHT_RhoHV_ang90.0.png b/pyrad_outputs/09_QVP/2020-05-16/VP/TIME_HEIGHT_RhoHV/20200516200500_time-range_TIME_HEIGHT_RhoHV_ang90.0.png deleted file mode 100644 index 60d8b3a..0000000 Binary files a/pyrad_outputs/09_QVP/2020-05-16/VP/TIME_HEIGHT_RhoHV/20200516200500_time-range_TIME_HEIGHT_RhoHV_ang90.0.png and /dev/null differ diff --git a/pyrad_outputs/09_QVP/2020-05-16/VP/TIME_HEIGHT_ZDR/20200516200500_time-range_TIME_HEIGHT_ZDR_ang90.0.png b/pyrad_outputs/09_QVP/2020-05-16/VP/TIME_HEIGHT_ZDR/20200516200500_time-range_TIME_HEIGHT_ZDR_ang90.0.png deleted file mode 100644 index f22c543..0000000 Binary files a/pyrad_outputs/09_QVP/2020-05-16/VP/TIME_HEIGHT_ZDR/20200516200500_time-range_TIME_HEIGHT_ZDR_ang90.0.png and /dev/null differ diff --git a/pyrad_outputs/09_QVP/2020-05-16/VP/TIME_HEIGHT_dBZ/20200516200500_time-range_TIME_HEIGHT_dBZ_ang90.0.png b/pyrad_outputs/09_QVP/2020-05-16/VP/TIME_HEIGHT_dBZ/20200516200500_time-range_TIME_HEIGHT_dBZ_ang90.0.png deleted file mode 100644 index 18c18d5..0000000 Binary files a/pyrad_outputs/09_QVP/2020-05-16/VP/TIME_HEIGHT_dBZ/20200516200500_time-range_TIME_HEIGHT_dBZ_ang90.0.png and /dev/null differ diff --git a/pyrad_outputs/09_QVP/2020-05-16/rQVP/TIME_HEIGHT_KDP/20200516200500_time-range_rQVP_KDP_ang90.0.png b/pyrad_outputs/09_QVP/2020-05-16/rQVP/TIME_HEIGHT_KDP/20200516200500_time-range_rQVP_KDP_ang90.0.png deleted file mode 100644 index 80b4ff5..0000000 Binary files a/pyrad_outputs/09_QVP/2020-05-16/rQVP/TIME_HEIGHT_KDP/20200516200500_time-range_rQVP_KDP_ang90.0.png and /dev/null differ diff --git a/pyrad_outputs/09_QVP/2020-05-16/rQVP/TIME_HEIGHT_RhoHV/20200516200500_time-range_rQVP_RhoHV_ang90.0.png b/pyrad_outputs/09_QVP/2020-05-16/rQVP/TIME_HEIGHT_RhoHV/20200516200500_time-range_rQVP_RhoHV_ang90.0.png deleted file mode 100644 index ca2b219..0000000 Binary files a/pyrad_outputs/09_QVP/2020-05-16/rQVP/TIME_HEIGHT_RhoHV/20200516200500_time-range_rQVP_RhoHV_ang90.0.png and /dev/null differ diff --git a/pyrad_outputs/09_QVP/2020-05-16/rQVP/TIME_HEIGHT_ZDR/20200516200500_time-range_rQVP_ZDR_ang90.0.png b/pyrad_outputs/09_QVP/2020-05-16/rQVP/TIME_HEIGHT_ZDR/20200516200500_time-range_rQVP_ZDR_ang90.0.png deleted file mode 100644 index 69d543a..0000000 Binary files a/pyrad_outputs/09_QVP/2020-05-16/rQVP/TIME_HEIGHT_ZDR/20200516200500_time-range_rQVP_ZDR_ang90.0.png and /dev/null differ diff --git a/pyrad_outputs/09_QVP/2020-05-16/rQVP/TIME_HEIGHT_dBZ/20200516200500_time-range_rQVP_dBZ_ang90.0.png b/pyrad_outputs/09_QVP/2020-05-16/rQVP/TIME_HEIGHT_dBZ/20200516200500_time-range_rQVP_dBZ_ang90.0.png deleted file mode 100644 index 380a30c..0000000 Binary files a/pyrad_outputs/09_QVP/2020-05-16/rQVP/TIME_HEIGHT_dBZ/20200516200500_time-range_rQVP_dBZ_ang90.0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_dBZ_clutter_el1.0.png b/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_dBZ_clutter_el1.0.png deleted file mode 100644 index c7318de..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_dBZ_clutter_el1.0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_dBZ_clutter_el1.8.png b/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_dBZ_clutter_el1.8.png deleted file mode 100644 index 0d23309..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_dBZ_clutter_el1.8.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_dBZ_clutter_el2.7.png b/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_dBZ_clutter_el2.7.png deleted file mode 100644 index 650f8c7..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_dBZ_clutter_el2.7.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_dBm_clutter_el1.0.png b/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_dBm_clutter_el1.0.png deleted file mode 100644 index f22b297..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_dBm_clutter_el1.0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_dBm_clutter_el1.8.png b/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_dBm_clutter_el1.8.png deleted file mode 100644 index e043980..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_dBm_clutter_el1.8.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_dBm_clutter_el2.7.png b/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_dBm_clutter_el2.7.png deleted file mode 100644 index 941a79a..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_dBm_clutter_el2.7.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_visibility_polar_el1.0.png b/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_visibility_polar_el1.0.png deleted file mode 100644 index 6966601..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_visibility_polar_el1.0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_visibility_polar_el1.8.png b/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_visibility_polar_el1.8.png deleted file mode 100644 index 1e75217..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_visibility_polar_el1.8.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_visibility_polar_el2.7.png b/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_visibility_polar_el2.7.png deleted file mode 100644 index 6015e94..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/ppi_GECSX_visibility_polar_el2.7.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_bent_terrain_altitude_l0.png b/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_bent_terrain_altitude_l0.png deleted file mode 100644 index b025bca..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_bent_terrain_altitude_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_effective_area_l0.png b/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_effective_area_l0.png deleted file mode 100644 index 0489a5f..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_effective_area_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_elevation_angle_l0.png b/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_elevation_angle_l0.png deleted file mode 100644 index cede098..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_elevation_angle_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_incident_angle_l0.png b/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_incident_angle_l0.png deleted file mode 100644 index fd84ea2..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_incident_angle_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_min_vis_altitude_l0.png b/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_min_vis_altitude_l0.png deleted file mode 100644 index a949f11..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_min_vis_altitude_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_min_vis_elevation_l0.png b/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_min_vis_elevation_l0.png deleted file mode 100644 index 5c817de..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_min_vis_elevation_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_sigma_0_l0.png b/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_sigma_0_l0.png deleted file mode 100644 index e37019a..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_sigma_0_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_terrain_altitude_l0.png b/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_terrain_altitude_l0.png deleted file mode 100644 index 12aaff0..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_terrain_altitude_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_terrain_aspect_l0.png b/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_terrain_aspect_l0.png deleted file mode 100644 index 8170278..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_terrain_aspect_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_terrain_slope_l0.png b/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_terrain_slope_l0.png deleted file mode 100644 index c66ecac..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_terrain_slope_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_visibility_l0.png b/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_visibility_l0.png deleted file mode 100644 index b1e8b70..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ALL_FIGURES/surface_GECSX_visibility_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ASPECT/surface_GECSX_terrain_aspect_l0.png b/pyrad_outputs/10_visibility/gecsx/ASPECT/surface_GECSX_terrain_aspect_l0.png deleted file mode 100644 index 8170278..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ASPECT/surface_GECSX_terrain_aspect_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/BENTTERRAIN/surface_GECSX_bent_terrain_altitude_l0.png b/pyrad_outputs/10_visibility/gecsx/BENTTERRAIN/surface_GECSX_bent_terrain_altitude_l0.png deleted file mode 100644 index b025bca..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/BENTTERRAIN/surface_GECSX_bent_terrain_altitude_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/DBMCLUTTER001/ppi_GECSX_dBm_clutter_el1.0.png b/pyrad_outputs/10_visibility/gecsx/DBMCLUTTER001/ppi_GECSX_dBm_clutter_el1.0.png deleted file mode 100644 index f22b297..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/DBMCLUTTER001/ppi_GECSX_dBm_clutter_el1.0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/DBMCLUTTER002/ppi_GECSX_dBm_clutter_el1.8.png b/pyrad_outputs/10_visibility/gecsx/DBMCLUTTER002/ppi_GECSX_dBm_clutter_el1.8.png deleted file mode 100644 index e043980..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/DBMCLUTTER002/ppi_GECSX_dBm_clutter_el1.8.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/DBMCLUTTER003/ppi_GECSX_dBm_clutter_el2.7.png b/pyrad_outputs/10_visibility/gecsx/DBMCLUTTER003/ppi_GECSX_dBm_clutter_el2.7.png deleted file mode 100644 index 941a79a..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/DBMCLUTTER003/ppi_GECSX_dBm_clutter_el2.7.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/DBZCLUTTER001/ppi_GECSX_dBZ_clutter_el1.0.png b/pyrad_outputs/10_visibility/gecsx/DBZCLUTTER001/ppi_GECSX_dBZ_clutter_el1.0.png deleted file mode 100644 index c7318de..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/DBZCLUTTER001/ppi_GECSX_dBZ_clutter_el1.0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/DBZCLUTTER002/ppi_GECSX_dBZ_clutter_el1.8.png b/pyrad_outputs/10_visibility/gecsx/DBZCLUTTER002/ppi_GECSX_dBZ_clutter_el1.8.png deleted file mode 100644 index 0d23309..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/DBZCLUTTER002/ppi_GECSX_dBZ_clutter_el1.8.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/DBZCLUTTER003/ppi_GECSX_dBZ_clutter_el2.7.png b/pyrad_outputs/10_visibility/gecsx/DBZCLUTTER003/ppi_GECSX_dBZ_clutter_el2.7.png deleted file mode 100644 index 650f8c7..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/DBZCLUTTER003/ppi_GECSX_dBZ_clutter_el2.7.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/EFFAREA/surface_GECSX_effective_area_l0.png b/pyrad_outputs/10_visibility/gecsx/EFFAREA/surface_GECSX_effective_area_l0.png deleted file mode 100644 index 0489a5f..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/EFFAREA/surface_GECSX_effective_area_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/ELEVANGLE/surface_GECSX_elevation_angle_l0.png b/pyrad_outputs/10_visibility/gecsx/ELEVANGLE/surface_GECSX_elevation_angle_l0.png deleted file mode 100644 index cede098..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/ELEVANGLE/surface_GECSX_elevation_angle_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/INCIDANGLE/surface_GECSX_incident_angle_l0.png b/pyrad_outputs/10_visibility/gecsx/INCIDANGLE/surface_GECSX_incident_angle_l0.png deleted file mode 100644 index fd84ea2..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/INCIDANGLE/surface_GECSX_incident_angle_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/MINVISALT/surface_GECSX_min_vis_altitude_l0.png b/pyrad_outputs/10_visibility/gecsx/MINVISALT/surface_GECSX_min_vis_altitude_l0.png deleted file mode 100644 index a949f11..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/MINVISALT/surface_GECSX_min_vis_altitude_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/MINVISEL/surface_GECSX_min_vis_elevation_l0.png b/pyrad_outputs/10_visibility/gecsx/MINVISEL/surface_GECSX_min_vis_elevation_l0.png deleted file mode 100644 index 5c817de..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/MINVISEL/surface_GECSX_min_vis_elevation_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/SIGMA0/surface_GECSX_sigma_0_l0.png b/pyrad_outputs/10_visibility/gecsx/SIGMA0/surface_GECSX_sigma_0_l0.png deleted file mode 100644 index e37019a..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/SIGMA0/surface_GECSX_sigma_0_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/SLOPE/surface_GECSX_terrain_slope_l0.png b/pyrad_outputs/10_visibility/gecsx/SLOPE/surface_GECSX_terrain_slope_l0.png deleted file mode 100644 index c66ecac..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/SLOPE/surface_GECSX_terrain_slope_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/TERRAIN/surface_GECSX_terrain_altitude_l0.png b/pyrad_outputs/10_visibility/gecsx/TERRAIN/surface_GECSX_terrain_altitude_l0.png deleted file mode 100644 index 12aaff0..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/TERRAIN/surface_GECSX_terrain_altitude_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/VISIB001/ppi_GECSX_visibility_polar_el1.0.png b/pyrad_outputs/10_visibility/gecsx/VISIB001/ppi_GECSX_visibility_polar_el1.0.png deleted file mode 100644 index 6966601..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/VISIB001/ppi_GECSX_visibility_polar_el1.0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/VISIB002/ppi_GECSX_visibility_polar_el1.8.png b/pyrad_outputs/10_visibility/gecsx/VISIB002/ppi_GECSX_visibility_polar_el1.8.png deleted file mode 100644 index 1e75217..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/VISIB002/ppi_GECSX_visibility_polar_el1.8.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/VISIB003/ppi_GECSX_visibility_polar_el2.7.png b/pyrad_outputs/10_visibility/gecsx/VISIB003/ppi_GECSX_visibility_polar_el2.7.png deleted file mode 100644 index 6015e94..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/VISIB003/ppi_GECSX_visibility_polar_el2.7.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility/gecsx/VISIBILITY_CART/surface_GECSX_visibility_l0.png b/pyrad_outputs/10_visibility/gecsx/VISIBILITY_CART/surface_GECSX_visibility_l0.png deleted file mode 100644 index b1e8b70..0000000 Binary files a/pyrad_outputs/10_visibility/gecsx/VISIBILITY_CART/surface_GECSX_visibility_l0.png and /dev/null differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBZ_clutter_el1.0.png b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBZ_clutter_el1.0.png index 7f44b0d..34fd867 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBZ_clutter_el1.0.png and b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBZ_clutter_el1.0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBZ_clutter_el1.8.png b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBZ_clutter_el1.8.png index e2fc9b1..49200f3 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBZ_clutter_el1.8.png and b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBZ_clutter_el1.8.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBZ_clutter_el2.7.png b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBZ_clutter_el2.7.png index 5ddce25..bf6d42d 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBZ_clutter_el2.7.png and b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBZ_clutter_el2.7.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBm_clutter_el1.0.png b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBm_clutter_el1.0.png index 1d27e1e..bd6c58f 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBm_clutter_el1.0.png and b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBm_clutter_el1.0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBm_clutter_el1.8.png b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBm_clutter_el1.8.png index 3a30835..93d5936 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBm_clutter_el1.8.png and b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBm_clutter_el1.8.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBm_clutter_el2.7.png b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBm_clutter_el2.7.png index 5994637..cd5f5c8 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBm_clutter_el2.7.png and b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_dBm_clutter_el2.7.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_visibility_polar_el1.0.png b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_visibility_polar_el1.0.png index 044f0ed..1965e20 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_visibility_polar_el1.0.png and b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_visibility_polar_el1.0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_visibility_polar_el1.8.png b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_visibility_polar_el1.8.png index 7276894..d83621e 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_visibility_polar_el1.8.png and b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_visibility_polar_el1.8.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_visibility_polar_el2.7.png b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_visibility_polar_el2.7.png index 4ab6ac7..1c63c75 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_visibility_polar_el2.7.png and b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/ppi_GECSX_visibility_polar_el2.7.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_bent_terrain_altitude_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_bent_terrain_altitude_l0.png index 2327160..cd2bbdf 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_bent_terrain_altitude_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_bent_terrain_altitude_l0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_effective_area_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_effective_area_l0.png index 30cc985..b063a09 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_effective_area_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_effective_area_l0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_elevation_angle_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_elevation_angle_l0.png index 0f76b83..5996613 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_elevation_angle_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_elevation_angle_l0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_incident_angle_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_incident_angle_l0.png index fd9b786..4b2966e 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_incident_angle_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_incident_angle_l0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_min_vis_altitude_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_min_vis_altitude_l0.png index b218ab3..c7b6bb4 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_min_vis_altitude_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_min_vis_altitude_l0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_min_vis_elevation_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_min_vis_elevation_l0.png index a339fb2..a443c1d 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_min_vis_elevation_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_min_vis_elevation_l0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_sigma_0_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_sigma_0_l0.png index 1b086e6..856cc47 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_sigma_0_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_sigma_0_l0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_terrain_altitude_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_terrain_altitude_l0.png index a113eb7..a16a708 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_terrain_altitude_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_terrain_altitude_l0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_terrain_aspect_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_terrain_aspect_l0.png index 908a50b..ac8ad0d 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_terrain_aspect_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_terrain_aspect_l0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_terrain_slope_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_terrain_slope_l0.png index 564103b..8f5394a 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_terrain_slope_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_terrain_slope_l0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_visibility_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_visibility_l0.png index 84a8e83..b51c8dd 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_visibility_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/ALL_FIGURES/surface_GECSX_visibility_l0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ASPECT/surface_GECSX_terrain_aspect_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/ASPECT/surface_GECSX_terrain_aspect_l0.png index 908a50b..ac8ad0d 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ASPECT/surface_GECSX_terrain_aspect_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/ASPECT/surface_GECSX_terrain_aspect_l0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/BENTTERRAIN/surface_GECSX_bent_terrain_altitude_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/BENTTERRAIN/surface_GECSX_bent_terrain_altitude_l0.png index 2327160..cd2bbdf 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/BENTTERRAIN/surface_GECSX_bent_terrain_altitude_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/BENTTERRAIN/surface_GECSX_bent_terrain_altitude_l0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/DBMCLUTTER001/ppi_GECSX_dBm_clutter_el1.0.png b/pyrad_outputs/10_visibility_norad/gecsx/DBMCLUTTER001/ppi_GECSX_dBm_clutter_el1.0.png index 1d27e1e..bd6c58f 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/DBMCLUTTER001/ppi_GECSX_dBm_clutter_el1.0.png and b/pyrad_outputs/10_visibility_norad/gecsx/DBMCLUTTER001/ppi_GECSX_dBm_clutter_el1.0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/DBMCLUTTER002/ppi_GECSX_dBm_clutter_el1.8.png b/pyrad_outputs/10_visibility_norad/gecsx/DBMCLUTTER002/ppi_GECSX_dBm_clutter_el1.8.png index 3a30835..93d5936 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/DBMCLUTTER002/ppi_GECSX_dBm_clutter_el1.8.png and b/pyrad_outputs/10_visibility_norad/gecsx/DBMCLUTTER002/ppi_GECSX_dBm_clutter_el1.8.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/DBMCLUTTER003/ppi_GECSX_dBm_clutter_el2.7.png b/pyrad_outputs/10_visibility_norad/gecsx/DBMCLUTTER003/ppi_GECSX_dBm_clutter_el2.7.png index 5994637..cd5f5c8 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/DBMCLUTTER003/ppi_GECSX_dBm_clutter_el2.7.png and b/pyrad_outputs/10_visibility_norad/gecsx/DBMCLUTTER003/ppi_GECSX_dBm_clutter_el2.7.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/DBZCLUTTER001/ppi_GECSX_dBZ_clutter_el1.0.png b/pyrad_outputs/10_visibility_norad/gecsx/DBZCLUTTER001/ppi_GECSX_dBZ_clutter_el1.0.png index 7f44b0d..34fd867 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/DBZCLUTTER001/ppi_GECSX_dBZ_clutter_el1.0.png and b/pyrad_outputs/10_visibility_norad/gecsx/DBZCLUTTER001/ppi_GECSX_dBZ_clutter_el1.0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/DBZCLUTTER002/ppi_GECSX_dBZ_clutter_el1.8.png b/pyrad_outputs/10_visibility_norad/gecsx/DBZCLUTTER002/ppi_GECSX_dBZ_clutter_el1.8.png index e2fc9b1..49200f3 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/DBZCLUTTER002/ppi_GECSX_dBZ_clutter_el1.8.png and b/pyrad_outputs/10_visibility_norad/gecsx/DBZCLUTTER002/ppi_GECSX_dBZ_clutter_el1.8.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/DBZCLUTTER003/ppi_GECSX_dBZ_clutter_el2.7.png b/pyrad_outputs/10_visibility_norad/gecsx/DBZCLUTTER003/ppi_GECSX_dBZ_clutter_el2.7.png index 5ddce25..bf6d42d 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/DBZCLUTTER003/ppi_GECSX_dBZ_clutter_el2.7.png and b/pyrad_outputs/10_visibility_norad/gecsx/DBZCLUTTER003/ppi_GECSX_dBZ_clutter_el2.7.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/EFFAREA/surface_GECSX_effective_area_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/EFFAREA/surface_GECSX_effective_area_l0.png index 30cc985..b063a09 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/EFFAREA/surface_GECSX_effective_area_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/EFFAREA/surface_GECSX_effective_area_l0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/ELEVANGLE/surface_GECSX_elevation_angle_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/ELEVANGLE/surface_GECSX_elevation_angle_l0.png index 0f76b83..5996613 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/ELEVANGLE/surface_GECSX_elevation_angle_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/ELEVANGLE/surface_GECSX_elevation_angle_l0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/INCIDANGLE/surface_GECSX_incident_angle_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/INCIDANGLE/surface_GECSX_incident_angle_l0.png index fd9b786..4b2966e 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/INCIDANGLE/surface_GECSX_incident_angle_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/INCIDANGLE/surface_GECSX_incident_angle_l0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/MINVISALT/surface_GECSX_min_vis_altitude_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/MINVISALT/surface_GECSX_min_vis_altitude_l0.png index b218ab3..c7b6bb4 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/MINVISALT/surface_GECSX_min_vis_altitude_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/MINVISALT/surface_GECSX_min_vis_altitude_l0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/MINVISEL/surface_GECSX_min_vis_elevation_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/MINVISEL/surface_GECSX_min_vis_elevation_l0.png index a339fb2..a443c1d 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/MINVISEL/surface_GECSX_min_vis_elevation_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/MINVISEL/surface_GECSX_min_vis_elevation_l0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/SIGMA0/surface_GECSX_sigma_0_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/SIGMA0/surface_GECSX_sigma_0_l0.png index 1b086e6..856cc47 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/SIGMA0/surface_GECSX_sigma_0_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/SIGMA0/surface_GECSX_sigma_0_l0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/SLOPE/surface_GECSX_terrain_slope_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/SLOPE/surface_GECSX_terrain_slope_l0.png index 564103b..8f5394a 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/SLOPE/surface_GECSX_terrain_slope_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/SLOPE/surface_GECSX_terrain_slope_l0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/TERRAIN/surface_GECSX_terrain_altitude_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/TERRAIN/surface_GECSX_terrain_altitude_l0.png index a113eb7..a16a708 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/TERRAIN/surface_GECSX_terrain_altitude_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/TERRAIN/surface_GECSX_terrain_altitude_l0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/VISIB001/ppi_GECSX_visibility_polar_el1.0.png b/pyrad_outputs/10_visibility_norad/gecsx/VISIB001/ppi_GECSX_visibility_polar_el1.0.png index 044f0ed..1965e20 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/VISIB001/ppi_GECSX_visibility_polar_el1.0.png and b/pyrad_outputs/10_visibility_norad/gecsx/VISIB001/ppi_GECSX_visibility_polar_el1.0.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/VISIB002/ppi_GECSX_visibility_polar_el1.8.png b/pyrad_outputs/10_visibility_norad/gecsx/VISIB002/ppi_GECSX_visibility_polar_el1.8.png index 7276894..d83621e 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/VISIB002/ppi_GECSX_visibility_polar_el1.8.png and b/pyrad_outputs/10_visibility_norad/gecsx/VISIB002/ppi_GECSX_visibility_polar_el1.8.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/VISIB003/ppi_GECSX_visibility_polar_el2.7.png b/pyrad_outputs/10_visibility_norad/gecsx/VISIB003/ppi_GECSX_visibility_polar_el2.7.png index 4ab6ac7..1c63c75 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/VISIB003/ppi_GECSX_visibility_polar_el2.7.png and b/pyrad_outputs/10_visibility_norad/gecsx/VISIB003/ppi_GECSX_visibility_polar_el2.7.png differ diff --git a/pyrad_outputs/10_visibility_norad/gecsx/VISIBILITY_CART/surface_GECSX_visibility_l0.png b/pyrad_outputs/10_visibility_norad/gecsx/VISIBILITY_CART/surface_GECSX_visibility_l0.png index 84a8e83..b51c8dd 100644 Binary files a/pyrad_outputs/10_visibility_norad/gecsx/VISIBILITY_CART/surface_GECSX_visibility_l0.png and b/pyrad_outputs/10_visibility_norad/gecsx/VISIBILITY_CART/surface_GECSX_visibility_l0.png differ